mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
27 lines
715 B
PHP
27 lines
715 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API\Podcast;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Resources\SongResource;
|
|
use App\Models\Podcast\Podcast;
|
|
use App\Repositories\SongRepository;
|
|
use App\Services\PodcastService;
|
|
|
|
class PodcastEpisodeController extends Controller
|
|
{
|
|
public function __construct(
|
|
private readonly SongRepository $episodeRepository,
|
|
private readonly PodcastService $podcastService
|
|
) {
|
|
}
|
|
|
|
public function index(Podcast $podcast)
|
|
{
|
|
if (request()->get('refresh')) {
|
|
$this->podcastService->refreshPodcast($podcast);
|
|
}
|
|
|
|
return SongResource::collection($this->episodeRepository->getEpisodesByPodcast($podcast));
|
|
}
|
|
}
|