koel/app/Http/Controllers/API/ObjectStorage/S3/SongController.php
2018-08-24 17:27:19 +02:00

78 lines
2.3 KiB
PHP

<?php
namespace App\Http\Controllers\API\ObjectStorage\S3;
use App\Events\LibraryChanged;
use App\Http\Requests\API\ObjectStorage\S3\PutSongRequest;
use App\Http\Requests\API\ObjectStorage\S3\RemoveSongRequest;
use App\Models\Album;
use App\Models\Artist;
use App\Models\Song;
use App\Services\MediaMetadataService;
use App\Services\MediaSyncService;
use Exception;
use Illuminate\Http\JsonResponse;
class SongController extends Controller
{
private $mediaMetadataService;
private $mediaSyncService;
public function __construct(MediaMetadataService $mediaMetadataService, MediaSyncService $mediaSyncService)
{
$this->mediaMetadataService = $mediaMetadataService;
$this->mediaSyncService = $mediaSyncService;
}
/**
* Store a new song or update an existing one with data from AWS.
*
* @return JsonResponse
*/
public function put(PutSongRequest $request)
{
$path = "s3://{$request->bucket}/{$request->key}";
$tags = $request->tags;
$artist = Artist::get(array_get($tags, 'artist'));
$compilation = (bool) trim(array_get($tags, 'albumartist'));
$album = Album::get($artist, array_get($tags, 'album'), $compilation);
if ($cover = array_get($tags, 'cover')) {
$this->mediaMetadataService->writeAlbumCover($album, base64_decode($cover['data']), $cover['extension']);
}
$song = Song::updateOrCreate(['id' => $this->mediaSyncService->getFileHash($path)], [
'path' => $path,
'album_id' => $album->id,
'artist_id' => $artist->id,
'title' => trim(array_get($tags, 'title', '')),
'length' => array_get($tags, 'duration', 0) ?: 0,
'track' => (int) array_get($tags, 'track'),
'lyrics' => array_get($tags, 'lyrics', '') ?: '',
'mtime' => time(),
]);
event(new LibraryChanged());
return response()->json($song);
}
/**
* Remove a song whose info matches with data sent from AWS.
*
* @throws Exception
*
* @return JsonResponse
*/
public function remove(RemoveSongRequest $request)
{
$song = Song::byPath("s3://{$request->bucket}/{$request->key}");
abort_unless((bool) $song, 404);
$song->delete();
event(new LibraryChanged());
return response()->json();
}
}