Sfoglia il codice sorgente

Add Delete Remote Profile command

Daniel Supernault 11 mesi fa
parent
commit
c38bd54792
1 ha cambiato i file con 50 aggiunte e 0 eliminazioni
  1. 50 0
      app/Console/Commands/DeleteRemoteProfile.php

+ 50 - 0
app/Console/Commands/DeleteRemoteProfile.php

@@ -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;
+    }
+}