2020-04-09 12:48:04 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-04-09 12:48:04 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-04-09 12:48:04 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-04-09 12:48:04 +02:00
|
|
|
*/
|
|
|
|
|
2020-07-06 13:22:36 +02:00
|
|
|
namespace App\Http\Requests\Webhook;
|
2020-04-09 12:48:04 +02:00
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
use App\Utils\Traits\ChecksEntityStatus;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
|
2020-07-06 13:22:36 +02:00
|
|
|
class UpdateWebhookRequest extends Request
|
2020-04-09 12:48:04 +02:00
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
use ChecksEntityStatus;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-04-09 12:48:04 +02:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
2023-01-27 11:38:59 +01:00
|
|
|
return auth()->user()->can('edit', $this->webhook);
|
2020-04-09 12:48:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
2023-01-27 11:38:59 +01:00
|
|
|
'target_url' => 'bail|required|url',
|
|
|
|
'event_id' => 'bail|required',
|
|
|
|
'rest_method' => 'required|in:post,put',
|
|
|
|
'headers' => 'bail|sometimes|json',
|
2020-04-09 12:48:04 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public function prepareForValidation()
|
2020-04-09 12:48:04 +02:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2023-01-27 11:38:59 +01:00
|
|
|
if(isset($input['headers']) && count($input['headers']) == 0)
|
|
|
|
$input['headers'] = null;
|
|
|
|
|
2020-04-09 12:48:04 +02:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
|
|
|
}
|