fixed media type choices and url for indexing

This commit is contained in:
pushrbx 2024-11-05 09:30:13 +00:00
parent 6c2d2d3e9d
commit 15bd63fdc7
No known key found for this signature in database
GPG Key ID: A16A474BBC2C91D9
3 changed files with 5 additions and 5 deletions

View File

@ -26,7 +26,7 @@ class IncrementalIndexer extends Command
protected function promptForMissingArgumentsUsing(): array protected function promptForMissingArgumentsUsing(): array
{ {
return [ return [
'mediaType' => ['The media type to index.', 'Valid values: anime, manga, character, people'] 'mediaType' => ['The media type to index.', 'Valid values: anime, manga, characters, people']
]; ];
} }
@ -123,7 +123,7 @@ class IncrementalIndexer extends Command
$id = $ids[$index]; $id = $ids[$index];
$url = env('APP_URL') . "/v4/anime/$id"; $url = env('APP_URL') . "/v4/$mediaType/$id";
$this->info("Indexing/Updating " . ($i + 1) . "/$idCount $url [MAL ID: $id]"); $this->info("Indexing/Updating " . ($i + 1) . "/$idCount $url [MAL ID: $id]");
try try
@ -171,7 +171,7 @@ class IncrementalIndexer extends Command
'failed' => $this->option('failed') ?? false 'failed' => $this->option('failed') ?? false
], ],
[ [
'mediaType' => 'required|in:anime,manga,character,people', 'mediaType' => 'required|in:anime,manga,characters,people',
'delay' => 'integer|min:1', 'delay' => 'integer|min:1',
'resume' => 'bool|prohibited_with:failed', 'resume' => 'bool|prohibited_with:failed',
'failed' => 'bool|prohibited_with:resume' 'failed' => 'bool|prohibited_with:resume'

View File

@ -34,7 +34,7 @@ display_help() {
echo "stop Stop Jikan API" echo "stop Stop Jikan API"
echo "validate-prereqs Validate pre-reqs installed (docker, docker-compose)" echo "validate-prereqs Validate pre-reqs installed (docker, docker-compose)"
echo "execute-indexers Execute the indexers, which will scrape and index data from MAL. (Notice: This can take days)" echo "execute-indexers Execute the indexers, which will scrape and index data from MAL. (Notice: This can take days)"
echo "index-incrementally Executes the incremental indexers for each media type. (anime, manga, character, people)" echo "index-incrementally Executes the incremental indexers for each media type. (anime, manga, characters, people)"
echo "" echo ""
} }

View File

@ -39,7 +39,7 @@ start Start Jikan API (mongodb, typesense, redis, jikan-api wor
stop Stop Jikan API stop Stop Jikan API
validate-prereqs Validate pre-reqs installed (docker, docker-compose) validate-prereqs Validate pre-reqs installed (docker, docker-compose)
execute-indexers Execute the indexers, which will scrape and index data from MAL. (Notice: This can take days) execute-indexers Execute the indexers, which will scrape and index data from MAL. (Notice: This can take days)
index-incrementally Executes the incremental indexers for each media type. (anime, manga, character, people) index-incrementally Executes the incremental indexers for each media type. (anime, manga, characters, people)
``` ```
### Running the indexer with the script ### Running the indexer with the script