2020-04-09 20:48:04 +10:00
|
|
|
<?php
|
|
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-04-09 20:48:04 +10:00
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2023-01-29 09:21:40 +11:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-04-09 20:48:04 +10:00
|
|
|
*
|
2021-06-16 16:58:16 +10:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-04-09 20:48:04 +10:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace App\Factory;
|
|
|
|
|
|
2020-07-06 21:22:36 +10:00
|
|
|
use App\Models\Webhook;
|
2020-04-09 20:48:04 +10:00
|
|
|
|
2020-07-06 21:22:36 +10:00
|
|
|
class WebhookFactory
|
2020-04-09 20:48:04 +10:00
|
|
|
{
|
2020-07-06 21:22:36 +10:00
|
|
|
public static function create(int $company_id, int $user_id) :Webhook
|
2020-04-09 20:48:04 +10:00
|
|
|
{
|
2020-07-06 21:22:36 +10:00
|
|
|
$webhook = new Webhook;
|
|
|
|
|
$webhook->company_id = $company_id;
|
|
|
|
|
$webhook->user_id = $user_id;
|
|
|
|
|
$webhook->target_url = '';
|
|
|
|
|
$webhook->event_id = 1;
|
|
|
|
|
$webhook->format = 'JSON';
|
2021-04-06 07:41:51 +10:00
|
|
|
$webhook->rest_method = 'post';
|
|
|
|
|
$webhook->headers = [];
|
2022-06-21 09:57:17 +00:00
|
|
|
|
2020-07-06 21:22:36 +10:00
|
|
|
return $webhook;
|
2020-04-09 20:48:04 +10:00
|
|
|
}
|
|
|
|
|
}
|