koel/app/Services/SongStorages/CloudStorage.php

43 lines
1.1 KiB
PHP
Raw Normal View History

2024-02-05 11:50:06 +00:00
<?php
namespace App\Services\SongStorages;
2024-02-05 11:50:06 +00:00
use App\Models\Song;
2024-02-05 11:50:06 +00:00
use App\Models\User;
use App\Services\FileScanner;
2024-04-26 13:35:26 +00:00
use App\Services\SongStorages\Concerns\ScansUploadedFile;
2024-02-05 11:50:06 +00:00
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
{
2024-04-26 13:35:26 +00:00
use ScansUploadedFile;
2024-02-05 11:50:06 +00:00
2024-04-26 13:35:26 +00:00
public function __construct(protected FileScanner $scanner)
2024-02-05 11:50:06 +00:00
{
}
public function copyToLocal(Song $song): string
2024-02-05 11:50:06 +00:00
{
2024-04-04 22:20:42 +00:00
self::assertSupported();
$tmpDir = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'koel_tmp';
File::ensureDirectoryExists($tmpDir);
$publicUrl = $this->getSongPresignedUrl($song);
$localPath = $tmpDir . DIRECTORY_SEPARATOR . basename($song->storage_metadata->getPath());
File::copy($publicUrl, $localPath);
return $localPath;
2024-02-05 11:50:06 +00:00
}
protected function generateStorageKey(string $filename, User $uploader): string
{
return sprintf('%s__%s__%s', $uploader->id, Str::lower(Ulid::generate()), $filename);
}
abstract public function getSongPresignedUrl(Song $song): string;
2024-02-05 11:50:06 +00:00
}