2020-01-23 21:35:00 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Migration;
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
|
|
|
|
class UploadMigrationFileRequest extends FormRequest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
|
|
|
return auth()->user()->isAdmin();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
2020-02-20 21:58:38 +01:00
|
|
|
$rules = [
|
|
|
|
'migration' => [],
|
2020-01-23 21:35:00 +01:00
|
|
|
];
|
2020-02-20 21:58:38 +01:00
|
|
|
|
|
|
|
/** We'll skip mime validation while running tests. */
|
2020-03-21 06:37:30 +01:00
|
|
|
if (app()->environment() !== 'testing') {
|
2020-02-24 22:15:07 +01:00
|
|
|
$rules['migration'] = ['required', 'file', 'mimes:zip'];
|
2020-02-20 21:58:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $rules;
|
2020-01-23 21:35:00 +01:00
|
|
|
}
|
|
|
|
}
|