1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Utils/Traits/SubscriptionHooker.php

61 lines
1.7 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
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
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.
*/
trait SubscriptionHooker
{
public function sendLoad($subscription, $body)
{
$headers = [
'Content-Type' => 'application/json',
'X-Requested-With' => 'XMLHttpRequest',
];
if(count($subscription->webhook_configuration['post_purchase_headers']) >= 1)
$headers = array_merge($headers, $subscription->webhook_configuration['post_purchase_headers']);
$client = new \GuzzleHttp\Client(
[
'headers' => $headers,
]);
2021-07-03 05:47:15 +02:00
nlog("method name must be a string");
nlog($subscription->webhook_configuration['post_purchase_rest_method']);
2021-07-04 08:37:31 +02:00
nlog($subscription->webhook_configuration['post_purchase_url']);
$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 {
2021-07-04 08:37:31 +02:00
$response = $client->{$post_purchase_rest_method}($post_purchase_url,[
2021-04-07 10:06:50 +02:00
RequestOptions::JSON => ['body' => $body], RequestOptions::ALLOW_REDIRECTS => false
]);
2021-06-04 00:30:21 +02:00
return array_merge($body, json_decode($response->getBody(),true));
2021-04-07 10:06:50 +02:00
}
catch(\Exception $e)
{
2021-06-04 00:16:18 +02:00
2021-06-04 00:30:21 +02:00
return array_merge($body, ['message' => $e->getMessage(), 'status_code' => 500]);
2021-06-04 00:16:18 +02:00
2021-04-07 10:06:50 +02:00
}
}
}