mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-18 12:33:07 -06:00
47 lines
860 B
PHP
47 lines
860 B
PHP
|
<?php
|
||
|
/**
|
||
|
* ImportUploadRequest.php
|
||
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
||
|
*
|
||
|
* This software may be modified and distributed under the terms
|
||
|
* of the MIT license. See the LICENSE file for details.
|
||
|
*/
|
||
|
|
||
|
declare(strict_types = 1);
|
||
|
|
||
|
namespace FireflyIII\Http\Requests;
|
||
|
|
||
|
use Auth;
|
||
|
|
||
|
/**
|
||
|
* Class ImportUploadRequest
|
||
|
*
|
||
|
*
|
||
|
* @package FireflyIII\Http\Requests
|
||
|
*/
|
||
|
class ImportUploadRequest extends Request
|
||
|
{
|
||
|
/**
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function authorize()
|
||
|
{
|
||
|
// Only allow logged in users
|
||
|
return Auth::check();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return array
|
||
|
*/
|
||
|
public function rules()
|
||
|
{
|
||
|
$types = array_keys(config('firefly.import_formats'));
|
||
|
|
||
|
return [
|
||
|
'import_file' => 'required|file',
|
||
|
'import_file_type' => 'required|in:' . join(',', $types),
|
||
|
];
|
||
|
|
||
|
}
|
||
|
}
|