mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-25 15:55:22 +00:00
Add user:2fa command to easily disable 2FA for given account
This commit is contained in:
parent
457d5454f8
commit
c6408fd79d
1 changed files with 55 additions and 0 deletions
55
app/Console/Commands/UserToggle2FA.php
Normal file
55
app/Console/Commands/UserToggle2FA.php
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Console\Commands;
|
||||||
|
|
||||||
|
use Illuminate\Console\Command;
|
||||||
|
use Illuminate\Contracts\Console\PromptsForMissingInput;
|
||||||
|
use App\User;
|
||||||
|
|
||||||
|
class UserToggle2FA extends Command implements PromptsForMissingInput
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* The name and signature of the console command.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $signature = 'user:2fa {username}';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The console command description.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $description = 'Disable two factor authentication for given username';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prompt for missing input arguments using the returned questions.
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
protected function promptForMissingArgumentsUsing()
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'username' => 'Which username should we disable 2FA for?',
|
||||||
|
];
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Execute the console command.
|
||||||
|
*/
|
||||||
|
public function handle()
|
||||||
|
{
|
||||||
|
$user = User::whereUsername($this->argument('username'))->first();
|
||||||
|
|
||||||
|
if(!$user->{'2fa_enabled'}) {
|
||||||
|
$this->info('User did not have 2FA enabled!');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$user->{'2fa_enabled'} = false;
|
||||||
|
$user->{'2fa_secret'} = null;
|
||||||
|
$user->{'2fa_backup_codes'} = null;
|
||||||
|
$user->save();
|
||||||
|
|
||||||
|
$this->info('Successfully disabled 2FA on this account!');
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue