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

77 lines
2.4 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
*
2024-04-12 06:15:41 +02:00
* @copyright Copyright (c) 2024. 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\Exception\ClientException;
2023-02-16 02:36:09 +01:00
use GuzzleHttp\RequestOptions;
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',
];
2024-04-14 23:57:24 +02:00
if (!isset($subscription->webhook_configuration['post_purchase_url']) && !isset($subscription->webhook_configuration['post_purchase_rest_method'])) {
return [];
2023-02-16 02:36:09 +01:00
}
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(
2023-02-16 02:36:09 +01:00
[
'headers' => $headers,
]
);
2021-04-07 10:06:50 +02:00
$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
]);
2024-06-14 09:09:44 +02:00
if($response_body = json_decode($response->getBody(), true)) {
2024-04-06 01:07:54 +02:00
return array_merge($body, $response_body);
2024-06-14 09:09:44 +02:00
}
2024-04-06 01:07:54 +02:00
return array_merge($body, ['message' => 'Success', 'status_code' => 200]);
} catch (ClientException $e) {
$message = $e->getMessage();
2024-01-14 05:05:00 +01:00
$error = json_decode($e->getResponse()->getBody()->getContents());
2023-02-16 02:36:09 +01:00
if (is_null($error)) {
nlog("empty response");
nlog($e->getMessage());
}
2023-02-16 02:36:09 +01:00
if ($error && property_exists($error, 'message')) {
$message = $error->message;
2023-02-16 02:36:09 +01:00
}
return array_merge($body, ['message' => $message, 'status_code' => 500]);
2023-02-16 02:36:09 +01:00
} 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
}