] * @since [v1.0] * @todo Switch to using the AssetFileRequest form request validator. */ public function store(UploadFileRequest $request, $accessoryId = null) : RedirectResponse { if (config('app.lock_passwords')) { return redirect()->route('accessories.show', ['accessory'=>$accessoryId])->with('error', trans('general.feature_disabled')); } $accessory = Accessory::find($accessoryId); if (isset($accessory->id)) { $this->authorize('accessories.files', $accessory); if ($request->hasFile('file')) { if (! Storage::exists('private_uploads/accessories')) { Storage::makeDirectory('private_uploads/accessories', 775); } foreach ($request->file('file') as $file) { $file_name = $request->handleFile('private_uploads/accessories/', 'accessory-'.$accessory->id, $file); //Log the upload to the log $accessory->logUpload($file_name, e($request->input('notes'))); } return redirect()->route('accessories.show', $accessory->id)->with('success', trans('general.file_upload_success')); } return redirect()->route('accessories.show', $accessory->id)->with('error', trans('general.no_files_uploaded')); } // Prepare the error message return redirect()->route('accessories.index') ->with('error', trans('general.file_does_not_exist')); } /** * Deletes the selected accessory file. * * @author [A. Gianotto] [] * @since [v1.0] * @param int $accessoryId * @param int $fileId */ public function destroy($accessoryId = null, $fileId = null) : RedirectResponse { $accessory = Accessory::find($accessoryId); // the asset is valid if (isset($accessory->id)) { $this->authorize('update', $accessory); $log = Actionlog::find($fileId); // Remove the file if one exists if (Storage::exists('accessories/'.$log->filename)) { try { Storage::delete('accessories/'.$log->filename); } catch (\Exception $e) { Log::debug($e); } } $log->delete(); return redirect()->back() ->with('success', trans('admin/hardware/message.deletefile.success')); } // Redirect to the licence management page return redirect()->route('accessories.index')->with('error', trans('general.file_does_not_exist')); } /** * Allows the selected file to be viewed. * * @author [A. Gianotto] [] * @since [v1.4] * @param int $accessoryId * @param int $fileId */ public function show($accessoryId = null, $fileId = null) : View | RedirectResponse | Response | BinaryFileResponse | StreamedResponse { // the accessory is valid if ($accessory = Accessory::find($accessoryId)) { $this->authorize('view', $accessory); $this->authorize('accessories.files', $accessory); if ($log = Actionlog::whereNotNull('filename')->where('item_id', $accessory->id)->find($fileId)) { $file = 'private_uploads/accessories/'.$log->filename; try { return StorageHelper::showOrDownloadFile($file, $log->filename); } catch (\Exception $e) { return redirect()->route('accessories.show', ['accessory' => $accessory])->with('error', trans('general.file_not_found')); } } return redirect()->route('accessories.show', ['accessory' => $accessory])->with('error', trans('general.log_record_not_found')); } return redirect()->route('accessories.index')->with('error', trans('general.file_not_found')); } }