2020-01-23 21:35:00 +01:00
|
|
|
<?php
|
2020-10-22 08:46:02 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
2020-01-23 21:35:00 +01:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Migration;
|
|
|
|
|
2020-10-22 08:46:02 +02:00
|
|
|
use App\Http\Requests\Request;
|
2020-01-23 21:35:00 +01:00
|
|
|
|
2020-10-22 08:46:02 +02:00
|
|
|
class UploadMigrationFileRequest extends Request
|
2020-01-23 21:35:00 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
2020-09-06 11:38:10 +02: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
|
|
|
}
|
|
|
|
}
|