mirror of
https://github.com/koel/koel
synced 2024-12-03 17:29:33 +00:00
31 lines
974 B
PHP
31 lines
974 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API;
|
|
|
|
use App\Http\Requests\API\SongUpdateRequest;
|
|
use App\Models\Song;
|
|
use App\Repositories\AlbumRepository;
|
|
use App\Repositories\ArtistRepository;
|
|
|
|
class SongController extends Controller
|
|
{
|
|
private ArtistRepository $artistRepository;
|
|
private AlbumRepository $albumRepository;
|
|
|
|
public function __construct(ArtistRepository $artistRepository, AlbumRepository $albumRepository)
|
|
{
|
|
$this->artistRepository = $artistRepository;
|
|
$this->albumRepository = $albumRepository;
|
|
}
|
|
|
|
public function update(SongUpdateRequest $request)
|
|
{
|
|
$updatedSongs = Song::updateInfo($request->songs, $request->data);
|
|
|
|
return response()->json([
|
|
'artists' => $this->artistRepository->getByIds($updatedSongs->pluck('artist_id')->all()),
|
|
'albums' => $this->albumRepository->getByIds($updatedSongs->pluck('album_id')->all()),
|
|
'songs' => $updatedSongs,
|
|
]);
|
|
}
|
|
}
|