mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
42 lines
1.1 KiB
PHP
42 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Models\Podcast;
|
|
use App\Services\PodcastService;
|
|
use Illuminate\Console\Command;
|
|
use Illuminate\Support\Facades\Log;
|
|
use Throwable;
|
|
|
|
class SyncPodcastsCommand extends Command
|
|
{
|
|
protected $signature = 'koel:podcasts:sync';
|
|
protected $description = 'Synchronize podcasts.';
|
|
|
|
public function __construct(private readonly PodcastService $podcastService)
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function handle(): int
|
|
{
|
|
Podcast::query()->get()->each(function (Podcast $podcast): void {
|
|
try {
|
|
$this->info("Checking \"$podcast->title\" for new content…");
|
|
|
|
if (!$this->podcastService->isPodcastObsolete($podcast)) {
|
|
$this->warn('└── The podcast feed has not been updated recently, skipping.');
|
|
|
|
return;
|
|
}
|
|
|
|
$this->info('└── Synchronizing episodes…');
|
|
$this->podcastService->refreshPodcast($podcast);
|
|
} catch (Throwable $e) {
|
|
Log::error($e);
|
|
}
|
|
});
|
|
|
|
return self::SUCCESS;
|
|
}
|
|
}
|