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

56 lines
1.3 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
*
2022-04-27 13:20:41 +10:00
* @copyright Copyright (c) 2022. 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-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()
{
return [
'start_date' => 'string|date',
'end_date' => 'string|date',
'date_key' => 'string',
2022-05-26 16:57:37 +10:00
'date_range' => 'sometimes|string',
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();
2022-05-26 16:57:37 +10:00
if(!array_key_exists('date_range', $input))
$input['date_range'] = 'all';
2022-05-21 10:37:30 +10:00
if(!array_key_exists('report_keys', $input))
$input['report_keys'] = [];
2022-05-27 17:01:15 +10:00
if(!array_key_exists('send_email', $input))
$input['send_email'] = true;
2022-05-21 10:37:30 +10:00
$this->replace($input);
}
2022-04-07 12:17:02 +10:00
}