koel/app/Services/UploadService.php

84 lines
2.5 KiB
PHP
Raw Normal View History

2020-06-07 20:43:04 +00:00
<?php
namespace App\Services;
use App\Exceptions\MediaPathNotSetException;
use App\Exceptions\SongUploadFailedException;
use App\Models\Setting;
use App\Models\Song;
2024-01-04 11:35:36 +00:00
use App\Models\User;
use App\Values\ScanConfiguration;
2020-06-07 20:43:04 +00:00
use Illuminate\Http\UploadedFile;
use Illuminate\Support\Facades\File;
2024-01-04 11:35:36 +00:00
use Throwable;
2020-06-07 20:43:04 +00:00
2020-12-22 20:11:22 +00:00
use function Functional\memoize;
2020-06-07 20:43:04 +00:00
class UploadService
{
public function __construct(private FileScanner $scanner)
2020-06-07 20:43:04 +00:00
{
}
2024-01-04 11:35:36 +00:00
public function handleUploadedFile(UploadedFile $file, User $uploader): Song
2020-06-07 20:43:04 +00:00
{
2024-01-04 11:35:36 +00:00
$uploadDirectory = $this->getUploadDirectory($uploader);
$targetFileName = $this->getTargetFileName($file, $uploader);
$file->move($uploadDirectory, $targetFileName);
$targetPathName = $uploadDirectory . $targetFileName;
2020-06-07 20:43:04 +00:00
2024-01-04 11:35:36 +00:00
try {
$result = $this->scanner->setFile($targetPathName)->scan(ScanConfiguration::make(owner: $uploader));
2024-01-04 11:35:36 +00:00
} catch (Throwable) {
File::delete($targetPathName);
2024-01-04 11:35:36 +00:00
throw new SongUploadFailedException('Unknown error');
}
2020-06-07 20:43:04 +00:00
2022-07-29 11:08:24 +00:00
if ($result->isError()) {
File::delete($targetPathName);
2022-07-29 11:08:24 +00:00
throw new SongUploadFailedException($result->error);
2020-06-07 20:43:04 +00:00
}
return $this->scanner->getSong();
2020-06-07 20:43:04 +00:00
}
2024-01-04 11:35:36 +00:00
private function getUploadDirectory(User $uploader): string
2020-06-07 20:43:04 +00:00
{
2024-01-04 11:35:36 +00:00
return memoize(static function () use ($uploader): string {
2020-06-07 20:43:04 +00:00
$mediaPath = Setting::get('media_path');
2024-01-04 11:35:36 +00:00
throw_unless((bool) $mediaPath, MediaPathNotSetException::class);
$dir = sprintf(
'%s%s__KOEL_UPLOADS_$%s__%s',
$mediaPath,
DIRECTORY_SEPARATOR,
$uploader->id,
DIRECTORY_SEPARATOR
);
File::ensureDirectoryExists($dir);
2020-06-07 20:43:04 +00:00
2024-01-04 11:35:36 +00:00
return $dir;
});
2020-06-07 20:43:04 +00:00
}
2024-01-04 11:35:36 +00:00
private function getTargetFileName(UploadedFile $file, User $uploader): string
2020-06-07 20:43:04 +00:00
{
// If there's no existing file with the same name in the upload directory, use the original name.
// Otherwise, prefix the original name with a hash.
// The whole point is to keep a readable file name when we can.
2024-01-10 00:47:09 +00:00
if (!File::exists($this->getUploadDirectory($uploader) . $file->getClientOriginalName())) {
2020-06-07 20:43:04 +00:00
return $file->getClientOriginalName();
}
2020-12-22 20:11:22 +00:00
return $this->getUniqueHash() . '_' . $file->getClientOriginalName();
2020-06-07 20:43:04 +00:00
}
private function getUniqueHash(): string
{
return substr(sha1(uniqid()), 0, 6);
}
}