koel/app/Services/UploadService.php
2020-06-07 22:43:04 +02:00

82 lines
2.4 KiB
PHP

<?php
namespace App\Services;
use App\Exceptions\MediaPathNotSetException;
use App\Exceptions\SongUploadFailedException;
use App\Models\Setting;
use App\Models\Song;
use Illuminate\Http\UploadedFile;
class UploadService
{
private const UPLOAD_DIRECTORY = '__KOEL_UPLOADS__';
private $fileSynchronizer;
public function __construct(FileSynchronizer $fileSynchronizer)
{
$this->fileSynchronizer = $fileSynchronizer;
}
/**
* @throws MediaPathNotSetException
* @throws SongUploadFailedException
*/
public function handleUploadedFile(UploadedFile $file): Song
{
$targetFileName = $this->getTargetFileName($file);
$file->move($this->getUploadDirectory(), $targetFileName);
$targetPathName = $this->getUploadDirectory() . $targetFileName;
$this->fileSynchronizer->setFile($targetPathName);
$result = $this->fileSynchronizer->sync(MediaSyncService::APPLICABLE_TAGS);
if ($result !== FileSynchronizer::SYNC_RESULT_SUCCESS) {
@unlink($targetPathName);
throw new SongUploadFailedException($this->fileSynchronizer->getSyncError());
}
return $this->fileSynchronizer->getSong();
}
/**
* @throws MediaPathNotSetException
*/
private function getUploadDirectory(): string
{
static $uploadDirectory;
if (!$uploadDirectory) {
$mediaPath = Setting::get('media_path');
if (!$mediaPath) {
throw new MediaPathNotSetException();
}
$uploadDirectory = $mediaPath . DIRECTORY_SEPARATOR . self::UPLOAD_DIRECTORY . DIRECTORY_SEPARATOR;
}
return $uploadDirectory;
}
/**
* @throws MediaPathNotSetException
*/
private function getTargetFileName(UploadedFile $file): string
{
// 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.
if (!file_exists($this->getUploadDirectory() . $file->getClientOriginalName())) {
return $file->getClientOriginalName();
}
return $this->getUniqueHash() . '_' . $file->getClientOriginalName();
}
private function getUniqueHash(): string
{
return substr(sha1(uniqid()), 0, 6);
}
}