2020-12-14 23:59:41 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-12-14 23:59:41 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-12-14 23:59:41 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Import;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
|
|
|
|
class ImportRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2024-01-14 05:05:00 +01:00
|
|
|
public function authorize(): bool
|
2020-12-14 23:59:41 +01:00
|
|
|
{
|
2023-11-20 05:31:40 +01:00
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
|
|
|
return $user->isAdmin();
|
2020-12-14 23:59:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
2020-12-16 12:52:40 +01:00
|
|
|
return [
|
2022-06-21 11:57:17 +02:00
|
|
|
'import_type' => 'required',
|
2021-02-13 01:20:15 +01:00
|
|
|
'files' => 'required_without:hash|array|min:1|max:6',
|
2021-02-17 00:15:42 +01:00
|
|
|
'hash' => 'nullable|string',
|
2021-02-13 01:20:15 +01:00
|
|
|
'column_map' => 'required_with:hash|array',
|
|
|
|
'skip_header' => 'required_with:hash|boolean',
|
2022-06-21 11:57:17 +02:00
|
|
|
'files.*' => 'file|mimes:csv,txt',
|
2023-12-09 02:04:55 +01:00
|
|
|
'bank_integration_id' => 'bail|required_with:column_map.bank_transaction|min:2'
|
2020-12-16 12:52:40 +01:00
|
|
|
];
|
2020-12-14 23:59:41 +01:00
|
|
|
}
|
2023-12-12 07:27:55 +01:00
|
|
|
|
|
|
|
public function prepareForValidation()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2024-01-14 05:05:00 +01:00
|
|
|
if(!isset($input['column_map']['bank_transaction']) && array_key_exists('bank_integration_id', $input)) {
|
2023-12-12 07:27:55 +01:00
|
|
|
unset($input['bank_integration_id']);
|
2024-01-14 05:05:00 +01:00
|
|
|
}
|
2023-12-12 07:27:55 +01:00
|
|
|
|
|
|
|
$this->replace($input);
|
|
|
|
}
|
2020-12-14 23:59:41 +01:00
|
|
|
}
|