mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 00:03:16 +00:00
Update app:hashtag-related-generate command, add existing confirmation
This commit is contained in:
parent
d62a60a4ee
commit
e5e3be0598
1 changed files with 11 additions and 0 deletions
|
@ -9,6 +9,7 @@ use App\Models\HashtagRelated;
|
||||||
use App\Services\HashtagRelatedService;
|
use App\Services\HashtagRelatedService;
|
||||||
use Illuminate\Contracts\Console\PromptsForMissingInput;
|
use Illuminate\Contracts\Console\PromptsForMissingInput;
|
||||||
use function Laravel\Prompts\multiselect;
|
use function Laravel\Prompts\multiselect;
|
||||||
|
use function Laravel\Prompts\confirm;
|
||||||
|
|
||||||
class HashtagRelatedGenerate extends Command implements PromptsForMissingInput
|
class HashtagRelatedGenerate extends Command implements PromptsForMissingInput
|
||||||
{
|
{
|
||||||
|
@ -50,6 +51,16 @@ class HashtagRelatedGenerate extends Command implements PromptsForMissingInput
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$exists = HashtagRelated::whereHashtagId($hashtag->id)->exists();
|
||||||
|
|
||||||
|
if($exists) {
|
||||||
|
$confirmed = confirm('Found existing related tags, do you want to regenerate them?');
|
||||||
|
if(!$confirmed) {
|
||||||
|
$this->error('Aborting...');
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$this->info('Looking up #' . $tag . '...');
|
$this->info('Looking up #' . $tag . '...');
|
||||||
|
|
||||||
$tags = StatusHashtag::whereHashtagId($hashtag->id)->count();
|
$tags = StatusHashtag::whereHashtagId($hashtag->id)->count();
|
||||||
|
|
Loading…
Reference in a new issue