mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-23 16:24:29 +00:00
Add user:delete command
This commit is contained in:
parent
a2641dfc78
commit
cdb4a9b38e
1 changed files with 72 additions and 0 deletions
72
app/Console/Commands/UserDelete.php
Normal file
72
app/Console/Commands/UserDelete.php
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Console\Commands;
|
||||||
|
|
||||||
|
use Illuminate\Console\Command;
|
||||||
|
use App\User;
|
||||||
|
use App\Jobs\DeletePipeline\DeleteAccountPipeline;
|
||||||
|
|
||||||
|
class UserDelete extends Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* The name and signature of the console command.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $signature = 'user:delete {id}';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The console command description.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $description = 'Delete account';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new command instance.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
parent::__construct();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Execute the console command.
|
||||||
|
*
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function handle()
|
||||||
|
{
|
||||||
|
$id = $this->argument('id');
|
||||||
|
$user = User::whereUsername($id)->orWhere('id', $id)->first();
|
||||||
|
if(!$user) {
|
||||||
|
$this->error('Could not find any user with that username or id.');
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if($user->is_admin == true) {
|
||||||
|
$this->error('Cannot delete an admin account from CLI.');
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!$this->confirm('Are you sure you want to delete this account?')) {
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
$confirmation = $this->ask('Enter the username to confirm deletion');
|
||||||
|
|
||||||
|
if($confirmation !== $user->username) {
|
||||||
|
$this->error('Username does not match, exiting...');
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
$profile = $user->profile;
|
||||||
|
$profile->status = $user->status = 'deleted';
|
||||||
|
$profile->save();
|
||||||
|
$user->save();
|
||||||
|
|
||||||
|
DeleteAccountPipeline::dispatchNow($user);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue