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
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Factory;
|
|
|
|
|
2020-07-06 13:22:36 +02:00
|
|
|
use App\Models\Webhook;
|
2020-04-09 12:48:04 +02:00
|
|
|
|
2020-07-06 13:22:36 +02:00
|
|
|
class WebhookFactory
|
2020-04-09 12:48:04 +02:00
|
|
|
{
|
2024-01-14 05:05:00 +01:00
|
|
|
public static function create(int $company_id, int $user_id): Webhook
|
2020-04-09 12:48:04 +02:00
|
|
|
{
|
2024-01-14 05:05:00 +01:00
|
|
|
$webhook = new Webhook();
|
2020-07-06 13:22:36 +02:00
|
|
|
$webhook->company_id = $company_id;
|
|
|
|
$webhook->user_id = $user_id;
|
|
|
|
$webhook->target_url = '';
|
|
|
|
$webhook->event_id = 1;
|
|
|
|
$webhook->format = 'JSON';
|
2021-04-05 23:41:51 +02:00
|
|
|
$webhook->rest_method = 'post';
|
|
|
|
$webhook->headers = [];
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-07-06 13:22:36 +02:00
|
|
|
return $webhook;
|
2020-04-09 12:48:04 +02:00
|
|
|
}
|
|
|
|
}
|