mirror of
https://github.com/koel/koel
synced 2024-12-30 06:23:05 +00:00
28 lines
715 B
PHP
28 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));
|
||
|
}
|
||
|
}
|