1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Http/Requests/Webhook/UpdateWebhookRequest.php

57 lines
1.3 KiB
PHP
Raw Normal View History

<?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)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
2020-07-06 13:22:36 +02:00
namespace App\Http\Requests\Webhook;
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
{
use MakesHash;
use ChecksEntityStatus;
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
2024-01-14 05:05:00 +01:00
public function authorize(): bool
{
2023-01-27 11:38:59 +01:00
return auth()->user()->can('edit', $this->webhook);
}
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',
2023-01-29 06:19:20 +01:00
// 'headers' => 'bail|sometimes|json',
];
}
2022-06-24 03:55:41 +02:00
public function prepareForValidation()
{
$input = $this->all();
2023-02-16 02:36:09 +01:00
if (!isset($input['rest_method'])) {
2023-02-08 12:37:12 +01:00
$input['rest_method'] = 'post';
2023-02-16 02:36:09 +01:00
}
2024-01-14 05:05:00 +01:00
2023-02-16 02:36:09 +01:00
// if(isset($input['headers']) && count($input['headers']) == 0)
2023-10-26 04:57:44 +02:00
// $input['headers'] = null;
2023-01-27 11:38:59 +01:00
$this->replace($input);
}
}