mirror of
https://github.com/koel/koel
synced 2024-12-03 17:29:33 +00:00
37 lines
1 KiB
PHP
37 lines
1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API\MediaInformation;
|
|
|
|
use App\Models\Song;
|
|
use App\Services\MediaInformationService;
|
|
use App\Services\YouTubeService;
|
|
use Illuminate\Http\JsonResponse;
|
|
|
|
class SongController extends Controller
|
|
{
|
|
private $youTubeService;
|
|
|
|
public function __construct(MediaInformationService $mediaInformationService, YouTubeService $youTubeService)
|
|
{
|
|
parent::__construct($mediaInformationService);
|
|
|
|
$this->youTubeService = $youTubeService;
|
|
}
|
|
|
|
/**
|
|
* Get extra information about a song.
|
|
*
|
|
* @param Song $song
|
|
*
|
|
* @return JsonResponse
|
|
*/
|
|
public function show(Song $song)
|
|
{
|
|
return response()->json([
|
|
'lyrics' => $song->lyrics,
|
|
'album_info' => $this->mediaInformationService->getAlbumInformation($song->album),
|
|
'artist_info' => $this->mediaInformationService->getArtistInformation($song->artist),
|
|
'youtube' => $this->youTubeService->searchVideosRelatedToSong($song),
|
|
]);
|
|
}
|
|
}
|