mirror of
https://github.com/koel/koel
synced 2024-12-01 00:09:17 +00:00
44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Services\SongStorage;
|
|
|
|
use App\Exceptions\SongUploadFailedException;
|
|
use App\Models\User;
|
|
use App\Services\FileScanner;
|
|
use App\Values\ScanConfiguration;
|
|
use App\Values\ScanResult;
|
|
use Illuminate\Http\UploadedFile;
|
|
use Illuminate\Support\Facades\File;
|
|
use Illuminate\Support\Str;
|
|
use Symfony\Component\Uid\Ulid;
|
|
|
|
abstract class CloudStorage implements SongStorage
|
|
{
|
|
public function __construct(protected FileScanner $scanner)
|
|
{
|
|
}
|
|
|
|
protected function scanUploadedFile(UploadedFile $file, User $uploader): ScanResult
|
|
{
|
|
// Can't scan the uploaded file directly, as it apparently causes some misbehavior during idv3 tag reading.
|
|
// Instead, we copy the file to the tmp directory and scan it from there.
|
|
$tmpDir = sys_get_temp_dir() . DIRECTORY_SEPARATOR . Str::uuid();
|
|
File::makeDirectory($tmpDir);
|
|
$tmpFile = $file->move($tmpDir, $file->getClientOriginalName());
|
|
|
|
$result = $this->scanner->setFile($tmpFile)
|
|
->scan(ScanConfiguration::make(
|
|
owner: $uploader,
|
|
makePublic: $uploader->preferences->makeUploadsPublic
|
|
));
|
|
|
|
throw_if($result->isError(), new SongUploadFailedException($result->error));
|
|
|
|
return $result;
|
|
}
|
|
|
|
protected function generateStorageKey(string $filename, User $uploader): string
|
|
{
|
|
return sprintf('%s__%s__%s', $uploader->id, Str::lower(Ulid::generate()), $filename);
|
|
}
|
|
}
|