koel/app/Services/SongStorages/S3CompatibleStorage.php
2024-07-06 17:45:02 +02:00

69 lines
1.9 KiB
PHP

<?php
namespace App\Services\SongStorages;
use App\Enums\SongStorageType;
use App\Models\Song;
use App\Models\User;
use App\Services\FileScanner;
use App\Services\SongStorages\Concerns\DeletesUsingFilesystem;
use Illuminate\Http\UploadedFile;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\File;
use Illuminate\Support\Facades\Storage;
class S3CompatibleStorage extends CloudStorage
{
use DeletesUsingFilesystem;
public function __construct(protected FileScanner $scanner, private readonly string $bucket)
{
parent::__construct($scanner);
}
public function storeUploadedFile(UploadedFile $file, User $uploader): Song
{
self::assertSupported();
return DB::transaction(function () use ($file, $uploader): Song {
$result = $this->scanUploadedFile($this->scanner, $file, $uploader);
$song = $this->scanner->getSong();
$key = $this->generateStorageKey($file->getClientOriginalName(), $uploader);
Storage::disk('s3')->put($key, File::get($result->path));
$song->update([
'path' => "s3://$this->bucket/$key",
'storage' => SongStorageType::S3,
]);
File::delete($result->path);
return $song;
});
}
public function getSongPresignedUrl(Song $song): string
{
self::assertSupported();
return Storage::disk('s3')->temporaryUrl($song->storage_metadata->getPath(), now()->addHour());
}
public function delete(Song $song, bool $backup = false): void
{
self::assertSupported();
$this->deleteUsingFileSystem(Storage::disk('s3'), $song, $backup);
}
public function testSetup(): void
{
Storage::disk('s3')->put('test.txt', 'Koel test file');
Storage::disk('s3')->delete('test.txt');
}
protected function getStorageType(): SongStorageType
{
return SongStorageType::S3;
}
}