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(); } }