mirror of
https://github.com/koel/koel
synced 2024-12-11 05:02:27 +00:00
129 lines
3.1 KiB
PHP
129 lines
3.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API;
|
|
|
|
use App\Http\Requests\API\PlaylistStoreRequest;
|
|
use App\Http\Requests\API\PlaylistSyncRequest;
|
|
use App\Models\Playlist;
|
|
use App\Repositories\PlaylistRepository;
|
|
use App\Services\SmartPlaylistService;
|
|
use Exception;
|
|
use Illuminate\Auth\Access\AuthorizationException;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\Request;
|
|
|
|
class PlaylistController extends Controller
|
|
{
|
|
private $playlistRepository;
|
|
private $smartPlaylistService;
|
|
|
|
public function __construct(PlaylistRepository $playlistRepository, SmartPlaylistService $smartPlaylistService)
|
|
{
|
|
$this->playlistRepository = $playlistRepository;
|
|
$this->smartPlaylistService = $smartPlaylistService;
|
|
}
|
|
|
|
/**
|
|
* Gets all playlists by the current user.
|
|
*
|
|
* @return JsonResponse
|
|
*/
|
|
public function index()
|
|
{
|
|
return response()->json($this->playlistRepository->getAllByCurrentUser());
|
|
}
|
|
|
|
/**
|
|
* Create a new playlist.
|
|
*
|
|
* @return JsonResponse
|
|
*/
|
|
public function store(PlaylistStoreRequest $request)
|
|
{
|
|
/** @var Playlist $playlist */
|
|
$playlist = $request->user()->playlists()->create([
|
|
'name' => $request->name,
|
|
'rules' => $request->rules,
|
|
]);
|
|
|
|
$songs = (array) $request->songs;
|
|
|
|
if ($songs) {
|
|
$playlist->songs()->sync($songs);
|
|
}
|
|
|
|
$playlist->songs = $playlist->songs->pluck('id');
|
|
|
|
return response()->json($playlist);
|
|
}
|
|
|
|
/**
|
|
* Rename a playlist.
|
|
*
|
|
* @throws AuthorizationException
|
|
*
|
|
* @return JsonResponse
|
|
*/
|
|
public function update(Request $request, Playlist $playlist)
|
|
{
|
|
$this->authorize('owner', $playlist);
|
|
|
|
$playlist->update($request->only('name'));
|
|
|
|
return response()->json($playlist);
|
|
}
|
|
|
|
/**
|
|
* Sync a playlist with songs.
|
|
* Any songs that are not populated here will be removed from the playlist.
|
|
*
|
|
* @throws AuthorizationException
|
|
*
|
|
* @return JsonResponse
|
|
*/
|
|
public function sync(PlaylistSyncRequest $request, Playlist $playlist)
|
|
{
|
|
$this->authorize('owner', $playlist);
|
|
|
|
abort_if($playlist->is_smart, 403, 'A smart playlist\'s content cannot be updated manually.');
|
|
|
|
$playlist->songs()->sync((array) $request->songs);
|
|
|
|
return response()->json();
|
|
}
|
|
|
|
/**
|
|
* Get a playlist's all songs.
|
|
*
|
|
* @throws AuthorizationException
|
|
*
|
|
* @return JsonResponse
|
|
*/
|
|
public function getSongs(Playlist $playlist)
|
|
{
|
|
$this->authorize('owner', $playlist);
|
|
|
|
return response()->json(
|
|
$playlist->is_smart
|
|
? $this->smartPlaylistService->getSongs($playlist)->pluck('id')
|
|
: $playlist->songs->pluck('id')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Delete a playlist.
|
|
*
|
|
* @throws Exception
|
|
* @throws AuthorizationException
|
|
*
|
|
* @return JsonResponse
|
|
*/
|
|
public function destroy(Playlist $playlist)
|
|
{
|
|
$this->authorize('owner', $playlist);
|
|
|
|
$playlist->delete();
|
|
|
|
return response()->json();
|
|
}
|
|
}
|