2022-05-19 00:33:00 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests\TaskScheduler;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
|
|
|
|
class CreateScheduledTaskRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize(): bool
|
|
|
|
{
|
|
|
|
return auth()->user()->isAdmin();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'paused' => 'sometimes|bool',
|
|
|
|
'repeat_every' => 'required|string|in:DAY,WEEK,MONTH,3MONTHS,YEAR',
|
|
|
|
'start_from' => 'sometimes|string',
|
|
|
|
'job' => 'required',
|
|
|
|
];
|
|
|
|
}
|
2022-05-27 09:01:15 +02:00
|
|
|
|
|
|
|
public function prepareForValidation()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! array_key_exists('start_from', $input)) {
|
2022-05-27 09:01:15 +02:00
|
|
|
$input['start_from'] = now();
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2022-05-27 09:01:15 +02:00
|
|
|
|
|
|
|
$this->replace($input);
|
|
|
|
}
|
2022-05-19 00:33:00 +02:00
|
|
|
}
|