mirror of
https://github.com/koel/koel
synced 2024-12-19 09:03:07 +00:00
28 lines
751 B
PHP
28 lines
751 B
PHP
<?php
|
|
|
|
namespace App\Services\SongStorages;
|
|
|
|
use App\Enums\SongStorageType;
|
|
use App\Exceptions\KoelPlusRequiredException;
|
|
use App\Models\Song;
|
|
use App\Models\User;
|
|
use Illuminate\Http\UploadedFile;
|
|
|
|
abstract class SongStorage
|
|
{
|
|
abstract public function getStorageType(): SongStorageType;
|
|
|
|
abstract public function storeUploadedFile(UploadedFile $file, User $uploader): Song;
|
|
|
|
abstract public function delete(Song $song, bool $backup = false): void;
|
|
|
|
abstract public function testSetup(): void;
|
|
|
|
protected function assertSupported(): void
|
|
{
|
|
throw_unless(
|
|
$this->getStorageType()->supported(),
|
|
new KoelPlusRequiredException('The storage driver is only supported in Koel Plus.')
|
|
);
|
|
}
|
|
}
|