Add Delete Remote Profile command

This commit is contained in:
Daniel Supernault 2024-07-18 23:06:57 -06:00
parent a9f24f85da
commit c38bd54792
No known key found for this signature in database
GPG key ID: 23740873EE6F76A1

View file

@ -0,0 +1,50 @@
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use App\Profile;
use App\Jobs\DeletePipeline\DeleteRemoteProfilePipeline;
use function Laravel\Prompts\search;
use function Laravel\Prompts\confirm;
class DeleteRemoteProfile extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'app:delete-remote-profile';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Delete remote profile';
/**
* Execute the console command.
*/
public function handle()
{
$id = search(
'Search for the account',
fn (string $value) => strlen($value) > 2
? Profile::whereNotNull('domain')->where('username', 'like', $value . '%')->pluck('username', 'id')->all()
: []
);
$profile = Profile::whereNotNull('domain')->find($id);
if(!$profile) {
$this->error('Could not find profile.');
exit;
}
$confirmed = confirm('Are you sure you want to delete ' . $profile->username . '\'s account? This action cannot be reversed.');
DeleteRemoteProfilePipeline::dispatch($profile)->onQueue('delete');
$this->info('Dispatched delete job, it may take a few minutes...');
exit;
}
}