. */ namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; use Illuminate\Support\Facades\Request; use Poniverse\Ponyfm\Commands\CreateShowSongCommand; use Poniverse\Ponyfm\Commands\DeleteShowSongCommand; use Poniverse\Ponyfm\Commands\RenameShowSongCommand; use Poniverse\Ponyfm\Models\ShowSong; use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase; use Response; class ShowSongsController extends ApiControllerBase { public function getIndex() { $this->authorize('access-admin-area'); $songs = ShowSong::with(['trackCountRelation' => function ($query) { $query->withTrashed(); }]) ->orderBy('title', 'asc') ->select('id', 'title', 'slug') ->get(); return Response::json([ 'showsongs' => $songs->toArray() ], 200); } public function postCreate() { $command = new CreateShowSongCommand(Request::get('title')); return $this->execute($command); } public function putRename($songId) { $command = new RenameShowSongCommand($songId, Request::get('title')); return $this->execute($command); } public function deleteSong($songId) { $command = new DeleteShowSongCommand($songId, Request::get('destination_song_id')); return $this->execute($command); } }