koel/app/Http/Controllers/API/MediaInformation/SongController.php
2018-08-18 15:19:40 +02:00

25 lines
672 B
PHP

<?php
namespace App\Http\Controllers\API\MediaInformation;
use App\Models\Song;
use Illuminate\Http\JsonResponse;
class SongController extends Controller
{
/**
* 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' => $song->getRelatedYouTubeVideos(),
]);
}
}