1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Jobs/Util/WebhookHandler.php

155 lines
3.9 KiB
PHP
Raw Normal View History

<?php
2020-11-11 01:13:39 +01:00
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-11-11 01:13:39 +01:00
*
* @license https://opensource.org/licenses/AAL
*/
2021-06-10 03:15:21 +02:00
namespace App\Jobs\Util;
2021-01-13 00:12:01 +01:00
use App\Jobs\Util\SystemLogger;
2020-11-25 15:19:52 +01:00
use App\Libraries\MultiDB;
2021-01-13 00:12:01 +01:00
use App\Models\SystemLog;
2020-10-28 11:10:49 +01:00
use App\Models\Webhook;
use App\Transformers\ArraySerializer;
2020-10-28 11:10:49 +01:00
use GuzzleHttp\Client;
use GuzzleHttp\RequestOptions;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use League\Fractal\Manager;
use League\Fractal\Resource\Item;
2020-07-06 13:22:36 +02:00
class WebhookHandler implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
private $entity;
private $event_id;
2020-11-17 00:04:10 +01:00
private $company;
2020-11-22 12:14:49 +01:00
2021-05-31 07:27:26 +02:00
public $tries = 3; //number of retries
2020-11-22 12:14:49 +01:00
2021-05-31 07:27:26 +02:00
public $backoff = 10; //seconds to wait until retry
2020-11-22 12:14:49 +01:00
public $deleteWhenMissingModels = true;
/**
* Create a new job instance.
*
2020-10-28 11:10:49 +01:00
* @param $event_id
* @param $entity
*/
2020-11-17 00:04:10 +01:00
public function __construct($event_id, $entity, $company)
{
$this->event_id = $event_id;
$this->entity = $entity;
2020-11-17 00:04:10 +01:00
$this->company = $company;
}
/**
* Execute the job.
*
2020-10-28 11:10:49 +01:00
* @return bool
*/
2020-11-22 12:14:49 +01:00
public function handle()
2020-11-11 01:13:39 +01:00
{//todo set multidb here
2020-11-17 00:04:10 +01:00
MultiDB::setDb($this->company->db);
2020-11-25 15:19:52 +01:00
if (! $this->company || $this->company->is_disabled) {
2020-08-24 13:53:22 +02:00
return true;
2020-11-25 15:19:52 +01:00
}
2020-11-22 12:14:49 +01:00
2020-11-18 10:35:09 +01:00
$subscriptions = Webhook::where('company_id', $this->company->id)
->where('event_id', $this->event_id)
->get();
2020-11-25 15:19:52 +01:00
if (! $subscriptions || $subscriptions->count() == 0) {
2020-11-22 12:14:49 +01:00
return;
2020-11-25 15:19:52 +01:00
}
2020-11-22 12:14:49 +01:00
$subscriptions->each(function ($subscription) {
$this->process($subscription);
});
}
private function process($subscription)
{
// generate JSON data
$manager = new Manager();
$manager->setSerializer(new ArraySerializer());
2020-08-24 13:53:22 +02:00
$class = sprintf('App\\Transformers\\%sTransformer', class_basename($this->entity));
$transformer = new $class();
$resource = new Item($this->entity, $transformer, $this->entity->getEntityType());
$data = $manager->createData($resource)->toArray();
$this->postData($subscription, $data, []);
}
private function postData($subscription, $data, $headers = [])
{
$base_headers = [
2020-08-24 13:53:22 +02:00
'Content-Length' => strlen(json_encode($data)),
'Accept' => 'application/json',
];
2020-10-28 11:10:49 +01:00
$client = new Client(['headers' => array_merge($base_headers, $headers)]);
2020-08-24 13:53:22 +02:00
2021-01-17 05:37:55 +01:00
try {
$response = $client->post($subscription->target_url, [
RequestOptions::JSON => $data, // or 'json' => [...]
]);
2021-01-17 05:37:55 +01:00
if ($response->getStatusCode() == 410 || $response->getStatusCode() == 200)
$subscription->delete();
SystemLogger::dispatch(
$response,
SystemLog::CATEGORY_WEBHOOK,
SystemLog::EVENT_WEBHOOK_RESPONSE,
SystemLog::TYPE_WEBHOOK_RESPONSE,
$this->company->clients->first(),
$this->company
2021-01-17 05:37:55 +01:00
);
}
2021-01-17 05:37:55 +01:00
catch(\Exception $e){
2021-01-13 00:12:01 +01:00
2021-01-17 05:37:55 +01:00
// nlog($e->getMessage());
SystemLogger::dispatch(
2021-01-13 00:12:01 +01:00
$e->getMessage(),
SystemLog::CATEGORY_WEBHOOK,
SystemLog::EVENT_WEBHOOK_RESPONSE,
SystemLog::TYPE_WEBHOOK_RESPONSE,
$this->company->clients->first(),
$this->company,
2021-01-13 00:12:01 +01:00
);
2021-01-17 05:37:55 +01:00
}
}
public function failed($exception)
{
2020-12-29 22:10:03 +01:00
nlog(print_r($exception->getMessage(), 1));
}
}