koel/app/Console/Commands/ImportSearchableEntitiesCommand.php
2021-01-05 17:52:16 +01:00

35 lines
765 B
PHP

<?php
namespace App\Console\Commands;
use App\Models\Album;
use App\Models\Artist;
use App\Models\Playlist;
use App\Models\Song;
use Illuminate\Console\Command;
class ImportSearchableEntitiesCommand extends Command
{
private const SEARCHABLE_ENTITIES = [
Song::class,
Album::class,
Artist::class,
Playlist::class,
];
protected $signature = 'koel:search:import';
protected $description = 'Import all searchable entities with Scout';
public function handle(): int
{
foreach (self::SEARCHABLE_ENTITIES as $entity) {
if (!class_exists($entity)) {
continue;
}
$this->call('scout:import', ['model' => $entity]);
}
return 0;
}
}