koel/app/Http/Controllers/API/MediaInformation/ArtistController.php

27 lines
579 B
PHP
Raw Normal View History

<?php
2018-08-18 13:19:40 +00:00
namespace App\Http\Controllers\API\MediaInformation;
use App\Models\Artist;
2017-06-04 01:30:45 +00:00
use Illuminate\Http\JsonResponse;
/**
* @group 5. Media information
*/
2018-08-18 13:19:40 +00:00
class ArtistController extends Controller
{
/**
* Get artist's extra information
*
* Get extra information about an artist via Last.fm.
*
* @responseFile responses/mediaInformation.artist.show.json
*
2017-06-04 01:30:45 +00:00
* @return JsonResponse
*/
2017-08-06 09:43:59 +00:00
public function show(Artist $artist)
{
2018-08-18 13:19:40 +00:00
return response()->json($this->mediaInformationService->getArtistInformation($artist));
}
}