Save file asset

This commit is contained in:
Nabeel Shahzad
2018-04-02 17:34:58 -05:00
parent ccfa904300
commit 0f98e729ce
2 changed files with 39 additions and 21 deletions

View File

@@ -3,6 +3,7 @@
namespace App\Services;
use App\Interfaces\Service;
use App\Models\File;
/**
* Class FileService
@@ -11,20 +12,41 @@ use App\Interfaces\Service;
class FileService extends Service
{
/**
* Save a file to disk and return the path
* Save a file to disk and return a File asset
* @param \Illuminate\Http\UploadedFile $file
* @param string $folder
* @param string|null $disk
* @return string
* @param array $attrs
* @return File
* @throws \Hashids\HashidsException
*/
public function saveFile($file, $folder, $disk = null): string
public function saveFile($file, $folder, array $attrs)
{
if (!$disk) {
$disk = config('filesystems.public_files');
}
$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());
$filename = str_slug($path_info['filename']).'.'.$path_info['extension'];
return $file->storeAs($folder, $filename, $disk);
# 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;
}
}