phpvms/app/Http/Controllers/Admin/FileController.php

135 lines
3.9 KiB
PHP
Raw Normal View History

<?php
namespace App\Http\Controllers\Admin;
use App\Contracts\Controller;
use App\Models\File;
use App\Services\FileService;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rule;
use Laracasts\Flash\Flash;
/**
2018-04-03 02:42:24 +08:00
* Class FileController
*/
2018-04-03 02:42:24 +08:00
class FileController extends Controller
{
private $fileSvc;
public function __construct(FileService $fileSvc)
{
$this->fileSvc = $fileSvc;
}
/**
* Store a newly file
2018-08-27 00:40:04 +08:00
*
* @param Request $request
2018-08-27 00:40:04 +08:00
*
2018-04-03 06:34:58 +08:00
* @throws \Hashids\HashidsException
2018-08-27 00:40:04 +08:00
*
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
*/
public function store(Request $request)
{
$attrs = $request->post();
/*
* Not using a form validation here because when it redirects, it leaves
* the parent forms all blank, even though it goes back to the right place.
*
* The fields are also named file_name and file_description so that if there
* are validation errors, the flash messages doesn't conflict with other
* fields on the page that might have the "name" and "description" fields
*
* Was also going to use the "required_without" rule, but that doesn't appear
* to work properly with a file upload
*/
$validator = Validator::make(
$request->all(),
[
'file_name' => 'required',
'file_description' => 'nullable',
'file' => 'nullable|file',
'url' => 'nullable|url',
/*'file' => [
Rule::requiredIf(function () {
return request()->filled('url') === false;
}),
'file',
],
'url' => [
Rule::requiredIf(function () {
return request()->hasFile('file') === false;
}),
'url',
],*/
],
[
'file.required' => 'File or URL are required',
'url.required' => 'File or URL are required',
]
);
if ($validator->fails()) {
return redirect()
->back()
->withErrors($validator)
->withInput($request->all());
}
if (!$request->hasFile('file') && !$request->filled('url')) {
$validator->errors()->add('url', 'A URL or file must be uploaded!');
return redirect()->back()->withErrors($validator)->withInput($request->all());
}
Log::info('Uploading files', $attrs);
$attrs['name'] = $attrs['file_name'];
$attrs['description'] = $attrs['file_description'];
if ($request->hasFile('file')) {
$file = $request->file('file');
$this->fileSvc->saveFile($file, 'files', $attrs);
}
// Didn't provide a file to upload, just a URL to a file
// Create the model directly and just associate that
elseif ($request->filled('url')) {
$file = new File($attrs);
$file->path = $attrs['url'];
$file->save();
}
Flash::success('Files saved successfully');
return redirect()->back();
}
/**
* Remove the file from storage.
2018-08-27 00:40:04 +08:00
*
* @param $id
2018-08-27 00:40:04 +08:00
*
2018-04-03 06:49:04 +08:00
* @throws \Exception
2018-08-27 00:40:04 +08:00
*
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
*/
public function destroy($id)
{
$file = File::find($id);
if (!$file) {
Flash::error('File doesn\'t exist');
return redirect()->back();
}
$this->fileSvc->removeFile($file);
Flash::success('File deleted successfully.');
return redirect()->back();
}
}