1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 09:51:35 +02:00
invoiceninja/app/Http/Requests/Webhook/StoreWebhookRequest.php

52 lines
1.2 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;
2023-02-16 02:36:09 +01:00
use App\Models\Account;
2020-07-06 13:22:36 +02:00
class StoreWebhookRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
2024-01-14 05:05:00 +01:00
public function authorize(): bool
{
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);
}
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'
];
}
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-03-07 07:03:09 +01:00
$this->replace($input);
}
}