Files
panel/app/Console/Commands/User/DisableTwoFactorCommand.php

35 lines
1.0 KiB
PHP
Raw Normal View History

<?php
2024-03-12 22:39:16 -04:00
namespace App\Console\Commands\User;
2024-03-16 19:10:31 -04:00
use App\Models\User;
use Illuminate\Console\Command;
class DisableTwoFactorCommand extends Command
{
protected $description = 'Disable two-factor authentication for a specific user in the Panel.';
protected $signature = 'p:user:disable2fa {--email= : The email of the user to disable 2-Factor for.}';
/**
* Handle command execution process.
*
2024-03-12 22:39:16 -04:00
* @throws \App\Exceptions\Model\DataValidationException
*/
2024-03-19 21:12:27 -04:00
public function handle(): void
{
if ($this->input->isInteractive()) {
$this->output->warning(trans('command/messages.user.2fa_help_text.0') . trans('command/messages.user.2fa_help_text.1'));
}
$email = $this->option('email') ?? $this->ask(trans('command/messages.user.ask_email'));
2024-03-16 19:10:31 -04:00
$user = User::query()->where('email', $email)->firstOrFail();
$user->use_totp = false;
$user->totp_secret = null;
$user->save();
$this->info(trans('command/messages.user.2fa_disabled', ['email' => $user->email]));
}
}