. * * This software is licensed under the terms of the MIT license. * https://opensource.org/licenses/MIT */ namespace Pterodactyl\Console\Commands\User; use Illuminate\Console\Command; use Pterodactyl\Contracts\Repository\UserRepositoryInterface; class DisableTwoFactorCommand extends Command { /** * @var string */ protected $description = 'Disable two-factor authentication for a specific user in the Panel.'; /** * @var \Pterodactyl\Contracts\Repository\UserRepositoryInterface */ protected $repository; /** * @var string */ protected $signature = 'p:user:disable2fa {--email= : The email of the user to disable 2-Factor for.}'; /** * DisableTwoFactorCommand constructor. */ public function __construct(UserRepositoryInterface $repository) { parent::__construct(); $this->repository = $repository; } /** * Handle command execution process. * * @throws \Pterodactyl\Exceptions\Model\DataValidationException * @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException */ public function handle() { if ($this->input->isInteractive()) { $this->output->warning(trans('command/messages.user.2fa_help_text')); } $email = $this->option('email') ?? $this->ask(trans('command/messages.user.ask_email')); $user = $this->repository->setColumns(['id', 'email'])->findFirstWhere([['email', '=', $email]]); $this->repository->withoutFreshModel()->update($user->id, [ 'use_totp' => false, 'totp_secret' => null, ]); $this->info(trans('command/messages.user.2fa_disabled', ['email' => $user->email])); } }