1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 01:41:34 +02:00
invoiceninja/app/Http/Requests/Report/GenericReportRequest.php

71 lines
1.9 KiB
PHP
Raw Normal View History

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
*/
2024-01-14 05:05:00 +01:00
public function authorize(): bool
2022-04-07 04:17:02 +02:00
{
/** @var \App\Models\User $user */
$user = auth()->user();
return $user->isAdmin() || $user->hasPermission('view_reports');
2024-01-14 05:05:00 +01:00
2022-04-07 04:17:02 +02:00
}
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',
'document_email_attachment' => 'sometimes|bool'
2023-06-30 10:26:28 +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-05-21 02:37:30 +02:00
if (! array_key_exists('report_keys', $input)) {
2022-05-21 02:37:30 +02:00
$input['report_keys'] = [];
}
2022-05-21 02:37:30 +02:00
if (! array_key_exists('send_email', $input)) {
2022-05-27 09:01:15 +02:00
$input['send_email'] = true;
}
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;
}
$input['user_id'] = auth()->user()->id;
2022-05-21 02:37:30 +02:00
$this->replace($input);
}
2022-04-07 04:17:02 +02:00
}