2022-04-07 04:17:02 +02: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)
|
2022-04-07 04:17:02 +02:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Report;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
|
2022-04-27 07:41:52 +02:00
|
|
|
class GenericReportRequest extends Request
|
2022-04-07 04:17:02 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->isAdmin();
|
|
|
|
}
|
2022-04-27 07:17:45 +02:00
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
2022-11-21 22:11:17 +01: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 02:35:56 +02:00
|
|
|
'report_keys' => 'present|array',
|
2022-05-20 12:05:23 +02:00
|
|
|
'send_email' => 'required|bool',
|
2023-04-24 06:55:56 +02:00
|
|
|
'status' => 'sometimes|string|nullable|in:all,draft,sent,viewed,paid,unpaid,overdue',
|
2022-04-27 07:17:45 +02:00
|
|
|
];
|
|
|
|
}
|
2022-05-21 02:37:30 +02:00
|
|
|
|
|
|
|
public function prepareForValidation()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2023-02-07 10:10:47 +01:00
|
|
|
if (! array_key_exists('date_range', $input) || $input['date_range'] == '') {
|
2022-05-26 08:57:37 +02:00
|
|
|
$input['date_range'] = 'all';
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2022-05-21 02:37:30 +02:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! array_key_exists('report_keys', $input)) {
|
2022-05-21 02:37:30 +02:00
|
|
|
$input['report_keys'] = [];
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2022-05-21 02:37:30 +02:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! array_key_exists('send_email', $input)) {
|
2022-05-27 09:01:15 +02:00
|
|
|
$input['send_email'] = true;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2022-05-27 09:01:15 +02:00
|
|
|
|
2022-11-26 02:48:42 +01:00
|
|
|
if (array_key_exists('date_range', $input) && $input['date_range'] != 'custom') {
|
|
|
|
$input['start_date'] = null;
|
|
|
|
$input['end_date'] = null;
|
|
|
|
}
|
|
|
|
|
2022-05-21 02:37:30 +02:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
2022-04-07 04:17:02 +02:00
|
|
|
}
|