Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/main/lib/service/microservice/ |
Upload File : |
<?php namespace Bitrix\Main\Service\MicroService; use Bitrix\Main\Result; use Bitrix\Main\SystemException; use Bitrix\Main\Web\HttpClient; abstract class JWTSender extends BaseSender { abstract protected function obtainJWToken(); protected function createHttpClient() { $httpClient = new HttpClient( $this->getHttpClientParameters() ); $token = $this->obtainJWToken(); if(!$token) { throw new SystemException('JWT Token must not be empty'); } $httpClient->setHeader('Authorization', 'Bearer ' . $token); return $httpClient; } public function performRequest($action, array $parameters = []): Result { $url = $this->getServiceUrl() . "/api/?action=" . $action; $httpClient = $this->createHttpClient(); $result = $httpClient->query(HttpClient::HTTP_POST, $url, $parameters); return $this->createAnswer( $result, $httpClient->getResult(), $httpClient->getError(), $httpClient->getStatus() ); } }