phpvms/app/Services/FileService.php
2018-08-26 16:40:04 +00:00

55 lines
1.4 KiB
PHP

<?php
namespace App\Services;
use App\Interfaces\Service;
use App\Models\File;
/**
* Class FileService
*/
class FileService extends Service
{
/**
* Save a file to disk and return a File asset
*
* @param \Illuminate\Http\UploadedFile $file
* @param string $folder
* @param array $attrs
*
* @throws \Hashids\HashidsException
*
* @return File
*/
public function saveFile($file, $folder, array $attrs)
{
$attrs = array_merge([
'name' => '',
'description' => '',
'public' => false,
'ref_model' => '',
'ref_model_id' => '',
'disk' => config('filesystems.public_files'),
], $attrs);
$id = File::createNewHashId();
$path_info = pathinfo($file->getClientOriginalName());
// Create the file, add the ID to the front of the file to account
// for any duplicate filenames, but still can be found in an `ls`
$filename = $id.'_'
.str_slug(trim($path_info['filename']))
.'.'.$path_info['extension'];
$file_path = $file->storeAs($folder, $filename, $attrs['disk']);
$asset = new File($attrs);
$asset->id = $id;
$asset->path = $file_path;
$asset->save();
return $asset;
}
}