koel/app/Services/SongStorage/CloudStorage.php

53 lines
1.6 KiB
PHP
Raw Normal View History

2024-02-05 11:50:06 +00:00
<?php
namespace App\Services\SongStorage;
use App\Exceptions\SongUploadFailedException;
use App\Facades\License;
2024-02-05 11:50:06 +00:00
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 extends SongStorage
2024-02-05 11:50:06 +00:00
{
public function __construct(protected FileScanner $scanner)
{
parent::__construct();
2024-02-05 11:50:06 +00:00
}
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 . 'koel_tmp';
File::ensureDirectoryExists($tmpDir);
2024-02-05 11:50:06 +00:00
$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);
}
public function supported(): bool
{
return License::isPlus();
}
2024-02-05 11:50:06 +00:00
}