1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Utils/Traits/SubscriptionHooker.php

72 lines
2.3 KiB
PHP
Raw Normal View History

2021-04-07 10:06:50 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2021-04-07 10:06:50 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2021-04-07 10:06:50 +02:00
*/
namespace App\Utils\Traits;
use GuzzleHttp\RequestOptions;
use GuzzleHttp\Exception\ClientException;
use GuzzleHttp\Psr7\Message;
2021-04-07 10:06:50 +02:00
/**
* Class SubscriptionHooker.
*/
trait SubscriptionHooker
2021-04-07 10:06:50 +02:00
{
public function sendLoad($subscription, $body)
{
2021-04-07 10:06:50 +02:00
$headers = [
'Content-Type' => 'application/json',
'X-Requested-With' => 'XMLHttpRequest',
];
if(!isset($subscription->webhook_configuration['post_purchase_url']) && !isset($subscription->webhook_configuration['post_purchase_rest_method']))
return;
if (count($subscription->webhook_configuration['post_purchase_headers']) >= 1) {
$headers = array_merge($headers, $subscription->webhook_configuration['post_purchase_headers']);
}
2021-04-07 10:06:50 +02:00
$client = new \GuzzleHttp\Client(
2021-04-07 10:06:50 +02:00
[
'headers' => $headers,
]);
$post_purchase_rest_method = (string) $subscription->webhook_configuration['post_purchase_rest_method'];
$post_purchase_url = (string) $subscription->webhook_configuration['post_purchase_url'];
2021-07-03 05:47:15 +02:00
2021-04-07 10:06:50 +02:00
try {
$response = $client->{$post_purchase_rest_method}($post_purchase_url, [
RequestOptions::JSON => ['body' => $body], RequestOptions::ALLOW_REDIRECTS => false,
2021-04-07 10:06:50 +02:00
]);
return array_merge($body, json_decode($response->getBody(), true));
} catch (ClientException $e) {
$message = $e->getMessage();
$error = json_decode($e->getResponse()->getBody()->getContents());
if(is_null($error)){
nlog("empty response");
nlog($e->getMessage());
}
if($error && property_exists($error, 'message'))
$message = $error->message;
return array_merge($body, ['message' => $message, 'status_code' => 500]);
}
catch (\Exception $e) {
2021-06-04 00:30:21 +02:00
return array_merge($body, ['message' => $e->getMessage(), 'status_code' => 500]);
2021-04-07 10:06:50 +02:00
}
}
2021-04-07 10:06:50 +02:00
}