koel/app/Services/SongStorages/SongStorage.php

26 lines
627 B
PHP
Raw Normal View History

<?php
namespace App\Services\SongStorages;
use App\Exceptions\KoelPlusRequiredException;
use App\Models\Song;
use App\Models\User;
use Illuminate\Http\UploadedFile;
abstract class SongStorage
{
public function __construct()
{
throw_unless(
$this->supported(),
new KoelPlusRequiredException('The storage driver is only supported in Koel Plus.')
);
}
abstract public function storeUploadedFile(UploadedFile $file, User $uploader): Song;
abstract public function delete(Song $song, bool $backup = false): void;
abstract protected function supported(): bool;
}