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;
|
|
|
|
|
2022-12-19 04:57:44 +01:00
|
|
|
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.
|
|
|
|
*/
|
2022-06-21 11:57:17 +02:00
|
|
|
trait SubscriptionHooker
|
2021-04-07 10:06:50 +02:00
|
|
|
{
|
2022-06-21 11:57:17 +02:00
|
|
|
public function sendLoad($subscription, $body)
|
|
|
|
{
|
2021-04-07 10:06:50 +02:00
|
|
|
$headers = [
|
|
|
|
'Content-Type' => 'application/json',
|
|
|
|
'X-Requested-With' => 'XMLHttpRequest',
|
|
|
|
];
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if (!isset($subscription->webhook_configuration['post_purchase_url']) && !isset($subscription->webhook_configuration['post_purchase_rest_method'])) {
|
2023-01-18 06:52:32 +01:00
|
|
|
return [];
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2023-01-18 03:24:08 +01:00
|
|
|
|
2022-06-21 11:57:17 +02: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
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
$client = new \GuzzleHttp\Client(
|
2023-02-16 02:36:09 +01:00
|
|
|
[
|
|
|
|
'headers' => $headers,
|
|
|
|
]
|
|
|
|
);
|
2021-04-07 10:06:50 +02:00
|
|
|
|
2022-06-21 11:57:17 +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 {
|
2022-06-21 11:57:17 +02:00
|
|
|
$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-04-06 01:07:54 +02:00
|
|
|
if($response_body = json_decode($response->getBody(), true))
|
|
|
|
return array_merge($body, $response_body);
|
|
|
|
|
|
|
|
return array_merge($body, ['message' => 'Success', 'status_code' => 200]);
|
|
|
|
|
2022-12-19 04:57:44 +01:00
|
|
|
} catch (ClientException $e) {
|
|
|
|
$message = $e->getMessage();
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2022-12-19 04:57:44 +01:00
|
|
|
$error = json_decode($e->getResponse()->getBody()->getContents());
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if (is_null($error)) {
|
|
|
|
nlog("empty response");
|
2023-01-17 01:39:19 +01:00
|
|
|
nlog($e->getMessage());
|
|
|
|
}
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($error && property_exists($error, 'message')) {
|
2022-12-19 04:57:44 +01:00
|
|
|
$message = $error->message;
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2022-12-19 04:57:44 +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
|
|
|
}
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-04-07 10:06:50 +02:00
|
|
|
}
|