koel/app/Services/SongStorages/S3LambdaStorage.php

97 lines
2.9 KiB
PHP
Raw Normal View History

<?php
namespace App\Services\SongStorages;
2024-04-18 17:20:14 +00:00
use App\Enums\SongStorageType;
use App\Exceptions\MethodNotImplementedException;
2024-02-05 22:47:13 +00:00
use App\Exceptions\SongPathNotFoundException;
use App\Models\Album;
use App\Models\Artist;
use App\Models\Song;
use App\Models\User;
2024-02-05 22:47:13 +00:00
use App\Repositories\SongRepository;
use App\Repositories\UserRepository;
use App\Services\MediaMetadataService;
use Illuminate\Http\UploadedFile;
/**
* The legacy storage implementation for Lambda and S3, to provide backward compatibility.
* In this implementation, the songs are supposed to be uploaded to S3 directly.
*/
final class S3LambdaStorage extends S3CompatibleStorage
{
2024-02-05 22:47:13 +00:00
public function __construct( // @phpcs:ignore
2024-04-18 14:36:28 +00:00
private readonly MediaMetadataService $mediaMetadataService,
private readonly SongRepository $songRepository,
private readonly UserRepository $userRepository
2024-02-05 22:47:13 +00:00
) {
}
public function storeUploadedFile(UploadedFile $file, User $uploader): Song
{
2024-04-04 22:20:42 +00:00
self::assertSupported();
throw new MethodNotImplementedException('Lambda storage does not support uploading.');
}
2024-02-05 22:47:13 +00:00
public function createSongEntry(
string $bucket,
string $key,
string $artistName,
string $albumName,
string $albumArtistName,
?array $cover,
string $title,
float $duration,
int $track,
string $lyrics
): Song {
$user = $this->userRepository->getDefaultAdminUser();
$path = Song::getPathFromS3BucketAndKey($bucket, $key);
$artist = Artist::getOrCreate($artistName);
$albumArtist = $albumArtistName && $albumArtistName !== $artistName
? Artist::getOrCreate($albumArtistName)
: $artist;
$album = Album::getOrCreate($albumArtist, $albumName);
if ($cover) {
2024-03-19 22:48:12 +00:00
$this->mediaMetadataService->writeAlbumCover($album, base64_decode($cover['data'], true));
2024-02-05 22:47:13 +00:00
}
2024-04-24 21:58:19 +00:00
return Song::query()->updateOrCreate(['path' => $path], [
2024-02-05 22:47:13 +00:00
'album_id' => $album->id,
'artist_id' => $artist->id,
'title' => $title,
'length' => $duration,
'track' => $track,
'lyrics' => $lyrics,
'mtime' => time(),
'owner_id' => $user->id,
'is_public' => true,
2024-04-18 17:20:14 +00:00
'storage' => SongStorageType::S3_LAMBDA,
2024-02-05 22:47:13 +00:00
]);
}
public function deleteSongEntry(string $bucket, string $key): void
{
$path = Song::getPathFromS3BucketAndKey($bucket, $key);
$song = $this->songRepository->findOneByPath($path);
throw_unless((bool) $song, SongPathNotFoundException::create($path));
$song->delete();
}
2024-04-26 13:35:26 +00:00
public function delete(Song $song, bool $backup = false): void
{
2024-04-26 13:35:26 +00:00
throw new MethodNotImplementedException('Lambda storage does not support deleting from filesystem.');
}
2024-04-26 13:35:26 +00:00
protected function getStorageType(): SongStorageType
{
2024-04-26 13:35:26 +00:00
return SongStorageType::S3_LAMBDA;
}
}