mirror of
https://github.com/koel/koel
synced 2024-12-01 08:19:18 +00:00
86 lines
2.9 KiB
PHP
86 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Requests\API\DeleteSongsRequest;
|
|
use App\Http\Requests\API\SongListRequest;
|
|
use App\Http\Requests\API\SongUpdateRequest;
|
|
use App\Http\Resources\AlbumResource;
|
|
use App\Http\Resources\ArtistResource;
|
|
use App\Http\Resources\SongResource;
|
|
use App\Models\Song;
|
|
use App\Models\User;
|
|
use App\Repositories\AlbumRepository;
|
|
use App\Repositories\ArtistRepository;
|
|
use App\Repositories\SongRepository;
|
|
use App\Services\LibraryManager;
|
|
use App\Services\SongService;
|
|
use App\Values\SongUpdateData;
|
|
use Illuminate\Contracts\Auth\Authenticatable;
|
|
|
|
class SongController extends Controller
|
|
{
|
|
/** @param User $user */
|
|
public function __construct(
|
|
private SongService $songService,
|
|
private SongRepository $songRepository,
|
|
private AlbumRepository $albumRepository,
|
|
private ArtistRepository $artistRepository,
|
|
private LibraryManager $libraryManager,
|
|
private ?Authenticatable $user
|
|
) {
|
|
}
|
|
|
|
public function index(SongListRequest $request)
|
|
{
|
|
return SongResource::collection(
|
|
$this->songRepository->getForListing(
|
|
sortColumn: $request->sort ?: 'songs.title',
|
|
sortDirection: $request->order ?: 'asc',
|
|
ownSongsOnly: $request->boolean('own_songs_only'),
|
|
scopedUser: $this->user
|
|
)
|
|
);
|
|
}
|
|
|
|
public function show(Song $song)
|
|
{
|
|
$this->authorize('access', $song);
|
|
|
|
return SongResource::make($this->songRepository->getOne($song->id, $this->user));
|
|
}
|
|
|
|
public function update(SongUpdateRequest $request)
|
|
{
|
|
// Don't use SongRepository::findMany() because it'd be already catered to the current user.
|
|
Song::query()->findMany($request->songs)->each(fn (Song $song) => $this->authorize('edit', $song));
|
|
|
|
$updatedSongs = $this->songService->updateSongs($request->songs, SongUpdateData::fromRequest($request));
|
|
$albums = $this->albumRepository->getMany($updatedSongs->pluck('album_id')->toArray());
|
|
|
|
$artists = $this->artistRepository->getMany(
|
|
array_merge(
|
|
$updatedSongs->pluck('artist_id')->all(),
|
|
$updatedSongs->pluck('album_artist_id')->all()
|
|
)
|
|
);
|
|
|
|
return response()->json([
|
|
'songs' => SongResource::collection($updatedSongs),
|
|
'albums' => AlbumResource::collection($albums),
|
|
'artists' => ArtistResource::collection($artists),
|
|
'removed' => $this->libraryManager->prune(),
|
|
]);
|
|
}
|
|
|
|
public function destroy(DeleteSongsRequest $request)
|
|
{
|
|
// Don't use SongRepository::findMany() because it'd be already catered to the current user.
|
|
Song::query()->findMany($request->songs)->each(fn (Song $song) => $this->authorize('delete', $song));
|
|
|
|
$this->songService->deleteSongs($request->songs);
|
|
|
|
return response()->noContent();
|
|
}
|
|
}
|