1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-06 03:02:34 +01:00
invoiceninja/app/Jobs/Util/WebhookHandler.php

102 lines
2.7 KiB
PHP
Raw Normal View History

<?php
namespace App\Jobs\Util;
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;
/**
* Create a new job instance.
*
2020-10-28 11:10:49 +01:00
* @param $event_id
* @param $entity
*/
public function __construct($event_id, $entity)
{
$this->event_id = $event_id;
$this->entity = $entity;
}
/**
* Execute the job.
*
2020-10-28 11:10:49 +01:00
* @return bool
*/
public function handle() :bool
{
if (! $this->entity->company || $this->entity->company->company_users->first()->is_migrating == true) {
2020-08-24 13:53:22 +02:00
return true;
}
2020-10-28 11:10:49 +01:00
$subscriptions = Webhook::where('company_id', $this->entity->company_id)
->where('event_id', $this->event_id)
->get();
if (! $subscriptions || $subscriptions->count() == 0) {
return true;
}
$subscriptions->each(function ($subscription) {
$this->process($subscription);
});
return true;
}
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
$response = $client->post($subscription->target_url, [
RequestOptions::JSON => $data, // or 'json' => [...]
]);
if ($response->getStatusCode() == 410 || $response->getStatusCode() == 200) {
$subscription->delete();
}
}
public function failed($exception)
{
info(print_r($exception->getMessage(), 1));
}
}