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
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. 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;
|
2023-02-16 02:36:09 +01:00
|
|
|
use App\Models\Account;
|
2020-04-09 12:48:04 +02:00
|
|
|
|
2020-07-06 13:22:36 +02:00
|
|
|
class StoreWebhookRequest extends Request
|
2020-04-09 12:48:04 +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
|
2020-04-09 12:48:04 +02:00
|
|
|
{
|
2024-03-07 07:03:09 +01:00
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
|
|
|
return $user->isAdmin() && $user->account->hasFeature(Account::FEATURE_API);
|
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'
|
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();
|
|
|
|
|
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-03-07 07:03:09 +01:00
|
|
|
|
2020-04-09 12:48:04 +02:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
|
|
|
}
|