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;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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',
|
|
|
|
];
|
|
|
|
|
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(
|
2021-04-07 10:06:50 +02:00
|
|
|
[
|
|
|
|
'headers' => $headers,
|
|
|
|
]);
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
nlog('method name must be a string');
|
2021-07-03 05:47:15 +02:00
|
|
|
nlog($subscription->webhook_configuration['post_purchase_rest_method']);
|
2021-07-04 08:37:31 +02:00
|
|
|
nlog($subscription->webhook_configuration['post_purchase_url']);
|
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
|
|
|
]);
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
return array_merge($body, json_decode($response->getBody(), true));
|
|
|
|
} 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
|
|
|
}
|