2023-01-13 02:43:38 +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)
|
2023-01-13 02:43:38 +01:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\TaskScheduler;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2023-01-17 12:40:40 +01:00
|
|
|
use App\Http\ValidationRules\Scheduler\ValidClientIds;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
2023-01-13 02:43:38 +01:00
|
|
|
|
|
|
|
class StoreSchedulerRequest extends Request
|
|
|
|
{
|
2023-01-17 12:40:40 +01:00
|
|
|
use MakesHash;
|
2023-01-13 02:43:38 +01:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize(): bool
|
|
|
|
{
|
2023-11-03 05:14:34 +01:00
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
|
|
|
return $user->isAdmin();
|
2023-01-13 02:43:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
$rules = [
|
2023-03-21 21:30:37 +01:00
|
|
|
'name' => 'bail|sometimes|nullable|string',
|
2023-01-13 02:43:38 +01:00
|
|
|
'is_paused' => 'bail|sometimes|boolean',
|
2023-02-17 11:05:01 +01:00
|
|
|
'frequency_id' => 'bail|sometimes|integer|digits_between:1,12',
|
2023-01-17 09:42:34 +01:00
|
|
|
'next_run' => 'bail|required|date:Y-m-d|after_or_equal:today',
|
|
|
|
'next_run_client' => 'bail|sometimes|date:Y-m-d',
|
2023-01-13 02:43:38 +01:00
|
|
|
'template' => 'bail|required|string',
|
|
|
|
'parameters' => 'bail|array',
|
2023-01-17 12:40:40 +01:00
|
|
|
'parameters.clients' => ['bail','sometimes', 'array', new ValidClientIds()],
|
2023-06-13 21:23:54 +02:00
|
|
|
'parameters.date_range' => 'bail|sometimes|string|in:last7_days,last30_days,last365_days,this_month,last_month,this_quarter,last_quarter,this_year,last_year,all_time,custom',
|
2023-02-20 06:47:30 +01:00
|
|
|
'parameters.start_date' => ['bail', 'sometimes', 'date:Y-m-d', 'required_if:parameters.date_rate,custom'],
|
|
|
|
'parameters.end_date' => ['bail', 'sometimes', 'date:Y-m-d', 'required_if:parameters.date_rate,custom', 'after_or_equal:parameters.start_date'],
|
2023-03-18 09:06:32 +01:00
|
|
|
'parameters.entity' => ['bail', 'sometimes', 'string', 'in:invoice,credit,quote,purchase_order'],
|
|
|
|
'parameters.entity_id' => ['bail', 'sometimes', 'string'],
|
2023-11-29 13:23:34 +01:00
|
|
|
'parameters.report_name' => ['bail','sometimes', 'string', 'required_if:template,email_report','in:ar_detailed,ar_summary,client_balance,tax_summary,profitloss,client_sales,user_sales,product_sales,clients,client_contacts,credits,documents,expenses,invoices,invoice_items,quotes,quote_items,recurring_invoices,payments,products,tasks'],
|
2023-04-14 08:44:04 +02:00
|
|
|
'parameters.date_key' => ['bail','sometimes', 'string'],
|
2023-12-04 12:14:20 +01:00
|
|
|
'parameters.status' => ['bail','sometimes', 'string', 'in:all,draft,paid,unpaid,overdue'],
|
2023-01-13 02:43:38 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
return $rules;
|
|
|
|
}
|
2023-01-17 09:42:34 +01:00
|
|
|
|
|
|
|
public function prepareForValidation()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if (array_key_exists('next_run', $input) && is_string($input['next_run'])) {
|
2023-06-25 04:38:15 +02:00
|
|
|
$input['next_run_client'] = $input['next_run'];
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2023-06-06 10:19:47 +02:00
|
|
|
|
2023-10-26 04:57:44 +02:00
|
|
|
if($input['template'] == 'email_record') {
|
2023-06-06 10:19:47 +02:00
|
|
|
$input['frequency_id'] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->replace($input);
|
2023-01-17 09:42:34 +01:00
|
|
|
}
|
2023-01-13 02:43:38 +01:00
|
|
|
}
|