invoiceninja/app/Http/Requests/Report/GenericReportRequest.php

66 lines
1.6 KiB
PHP
Raw Normal View History

2022-04-07 12:17:02 +10:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-29 09:21:40 +11:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2022-04-07 12:17:02 +10:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Http\Requests\Report;
use App\Http\Requests\Request;
2022-11-22 08:11:17 +11:00
use Illuminate\Validation\Rule;
2022-04-07 12:17:02 +10:00
2022-04-27 15:41:52 +10:00
class GenericReportRequest extends Request
2022-04-07 12:17:02 +10:00
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize() : bool
{
return auth()->user()->isAdmin();
}
2022-04-27 15:17:45 +10:00
public function rules()
{
2022-11-22 08:11:17 +11:00
2022-04-27 15:17:45 +10:00
return [
2022-11-22 08:11:17 +11:00
'date_range' => 'bail|required|string',
'end_date' => 'bail|required_if:date_range,custom|nullable|date',
'start_date' => 'bail|required_if:date_range,custom|nullable|date',
2022-05-21 10:35:56 +10:00
'report_keys' => 'present|array',
2022-05-20 20:05:23 +10:00
'send_email' => 'required|bool',
2022-04-27 15:17:45 +10:00
];
}
2022-05-21 10:37:30 +10:00
public function prepareForValidation()
{
$input = $this->all();
2023-02-07 20:10:47 +11:00
if (! array_key_exists('date_range', $input) || $input['date_range'] == '') {
2022-05-26 16:57:37 +10:00
$input['date_range'] = 'all';
}
2022-05-21 10:37:30 +10:00
if (! array_key_exists('report_keys', $input)) {
2022-05-21 10:37:30 +10:00
$input['report_keys'] = [];
}
2022-05-21 10:37:30 +10:00
if (! array_key_exists('send_email', $input)) {
2022-05-27 17:01:15 +10:00
$input['send_email'] = true;
}
2022-05-27 17:01:15 +10:00
2022-11-26 12:48:42 +11:00
if (array_key_exists('date_range', $input) && $input['date_range'] != 'custom') {
$input['start_date'] = null;
$input['end_date'] = null;
}
2022-05-21 10:37:30 +10:00
$this->replace($input);
}
2022-04-07 12:17:02 +10:00
}