vendor\stkf\bexio-api-php-client\src\Bexio\Client.php line 266

Open in your IDE?
  1. <?php
  2. namespace Bexio;
  3. use Bexio\Auth\OAuth2;
  4. use Curl\Curl;
  5. class Client
  6. {
  7.     const API_URL 'https://api.bexio.com';
  8.     const OAUTH2_AUTH_URL 'https://auth.bexio.com/realms/bexio/protocol/openid-connect/auth';
  9.     const OAUTH2_TOKEN_URI 'https://auth.bexio.com/realms/bexio/protocol/openid-connect/token';
  10.     const OAUTH2_REFRESH_TOKEN_URI 'https://auth.bexio.com/realms/bexio/protocol/openid-connect/token';
  11.     /**
  12.      * @var array $config
  13.      */
  14.     private $config;
  15.     /**
  16.      * @var
  17.      */
  18.     private $accessToken;
  19.     /**
  20.      * @var
  21.      */
  22.     private $auth;
  23.     private $jsonDecodeAssoc false;
  24.     private $requestCallbacks = [];
  25.     private $responseCallbacks = [];
  26.     /**
  27.      * Client constructor.
  28.      *
  29.      * @param array $config
  30.      */
  31.     public function __construct(array $config = array())
  32.     {
  33.         $this->config array_merge(
  34.             [
  35.                 'clientId'     => '',
  36.                 'clientSecret' => '',
  37.                 'redirectUri'  => null,
  38.             ],
  39.             $config
  40.         );
  41.     }
  42.     public function setClientId($clientId)
  43.     {
  44.         $this->config['clientId'] = $clientId;
  45.     }
  46.     public function getClientId()
  47.     {
  48.         return $this->config['clientId'];
  49.     }
  50.     public function setClientSecret($clientId)
  51.     {
  52.         $this->config['clientSecret'] = $clientId;
  53.     }
  54.     public function getClientSecret()
  55.     {
  56.         return $this->config['clientSecret'];
  57.     }
  58.     public function setRedirectUri($redirectUri)
  59.     {
  60.         $this->config['redirectUri'] = $redirectUri;
  61.     }
  62.     public function getRedirectUri()
  63.     {
  64.         return $this->config['redirectUri'];
  65.     }
  66.     /**
  67.      * @param $accessToken
  68.      * @throws \Exception
  69.      */
  70.     public function setAccessToken($accessToken)
  71.     {
  72.         if (is_string($accessToken)) {
  73.             if ($json json_decode($accessTokentrue)) {
  74.                 $accessToken $json;
  75.             } else {
  76.                 $accessToken = [
  77.                     'access_token' => $accessToken,
  78.                 ];
  79.             }
  80.         }
  81.         if ($accessToken == null) {
  82.             throw new \Exception('Invalid json token');
  83.         }
  84.         if (!isset($accessToken['access_token'])) {
  85.             throw new \Exception("Invalid token format");
  86.         }
  87.         $this->accessToken $accessToken;
  88.     }
  89.     public function getAccessToken()
  90.     {
  91.         return $this->accessToken;
  92.     }
  93.     public function isAccessTokenExpired()
  94.     {
  95.         if (!$this->accessToken) {
  96.             return true;
  97.         }
  98.         $created 0;
  99.         $expiresIn 0;
  100.         if (isset($this->accessToken['created'])) {
  101.             $created $this->accessToken['created'];
  102.         }
  103.         if (isset($this->accessToken['expires_in'])) {
  104.             $expiresIn $this->accessToken['expires_in'];
  105.         }
  106.         return ($created + ($expiresIn 30)) < time();
  107.     }
  108.     public function getRefreshToken()
  109.     {
  110.         if (isset($this->accessToken['refresh_token'])) {
  111.             return $this->accessToken['refresh_token'];
  112.         }
  113.         return null;
  114.     }
  115.     public function fetchAuthCode()
  116.     {
  117.         $auth $this->getOAuth2Service();
  118.         $auth->setRedirectUri($this->getRedirectUri());
  119.     }
  120.     public function fetchAccessTokenWithAuthCode($code)
  121.     {
  122.         if (strlen($code) === 0) {
  123.             throw new \Exception("Invalid code");
  124.         }
  125.         $auth $this->getOAuth2Service();
  126.         $auth->setCode($code);
  127.         $auth->setRedirectUri($this->getRedirectUri());
  128.         $credentials $auth->fetchAuthToken();
  129.         if ($credentials && isset($credentials['access_token'])) {
  130.             $credentials['created'] = time();
  131.             $this->setAccessToken($credentials);
  132.         }
  133.         return $credentials;
  134.     }
  135.     public function refreshToken($refreshToken null)
  136.     {
  137.         if ($refreshToken === null) {
  138.             if (!isset($this->accessToken['refresh_token'])) {
  139.                 throw new \Exception('Refresh token must be passed or set as part of the accessToken');
  140.             }
  141.             $refreshToken $this->accessToken['refresh_token'];
  142.         }
  143.         $auth $this->getOAuth2Service();
  144.         $auth->setRefreshToken($refreshToken);
  145.         $credentials $auth->fetchAuthToken();
  146.         if ($credentials && isset($credentials['access_token'])) {
  147.             $credentials['created'] = time();
  148.             if (!isset($credentials['refresh_token'])) {
  149.                 $credentials['refresh_token'] = $refreshToken;
  150.             }
  151.             $this->setAccessToken($credentials);
  152.             return $credentials;
  153.         }
  154.         throw new \Exception('Illegal access token received when token was refreshed');
  155.     }
  156.     /**
  157.      * @return OAuth2
  158.      */
  159.     public function getOAuth2Service()
  160.     {
  161.         if (!isset($this->auth)) {
  162.             $this->auth = new OAuth2(
  163.                 [
  164.                     'clientId'                  => $this->getClientId(),
  165.                     'clientSecret'              => $this->getClientSecret(),
  166.                     'authorizationUri'          => self::OAUTH2_AUTH_URL,
  167.                     'tokenCredentialUri'        => self::OAUTH2_TOKEN_URI,
  168.                     'refreshTokenCredentialUri' => self::OAUTH2_REFRESH_TOKEN_URI,
  169.                     'redirectUri'               => $this->getRedirectUri(),
  170.                     'issuer'                    => $this->config['clientId'],
  171.                 ]
  172.             );
  173.         }
  174.         return $this->auth;
  175.     }
  176.     protected function getRequest()
  177.     {
  178.         $accessToken $this->getAccessToken();
  179.         $curl = new Curl();
  180.         $curl->setHeader('Accept''application/json');
  181.         $curl->setHeader('Authorization''Bearer '.$accessToken['access_token']);
  182.         return $curl;
  183.     }
  184.     public function get($path, array $parameters = [], string $version '2.0')
  185.     {
  186.         return $this->call($path$version$parameters, function ($request$url$parameters) {
  187.             $request->get($url$parameters);
  188.         });
  189.     }
  190.     public function post($path, array $parameters = [], string $version '2.0')
  191.     {
  192.         return $this->call($path$version$parameters, function ($request$url$parameters) {
  193.             $request->post($urljson_encode($parameters));
  194.         });
  195.     }
  196.     public function postWithoutPayload($pathstring $version '2.0')
  197.     {
  198.         return $this->call($path$version, [], function ($request$url$parameters) {
  199.             $request->post($url);
  200.         });
  201.     }
  202.     public function put($path, array $parameters = [], string $version '2.0')
  203.     {
  204.         return $this->call($path$version$parameters, function ($request$url$parameters) {
  205.             $request->put($url$parameters);
  206.         });
  207.     }
  208.     public function delete($path, array $parameters = [], string $version '2.0')
  209.     {
  210.         return $this->call($path$version$parameters, function ($request$url$parameters) {
  211.             $request->delete($url$parameters);
  212.         });
  213.     }
  214.     private function call(string $pathstring $version, array $parameters = [], \Closure $callback)
  215.     {
  216.         $request $this->getRequest();
  217.         $url sprintf("%s/%s/%s"self::API_URL$version$path);
  218.         $this->logRequest($url$parameters);
  219.         $callback($request$url$parameters);
  220.         $this->logResponse($url$request->response);
  221.         if ($request->isError()) {
  222.             throw new \Exception(sprintf('Error on HTTP request to %s: %s'$url$request->response));
  223.         }
  224.         return json_decode($request->response$this->jsonDecodeAssoc);
  225.     }
  226.     public function setJsonDecodeAssoc(bool $jsonDecodeAssoc): self
  227.     {
  228.         $this->jsonDecodeAssoc $jsonDecodeAssoc;
  229.         return $this;
  230.     }
  231.     public function onRequest(\Closure $callback)
  232.     {
  233.         $this->requestCallbacks[] = $callback;
  234.     }
  235.     public function onResponse(\Closure $callback)
  236.     {
  237.         $this->responseCallbacks[] = $callback;
  238.     }
  239.     private function logRequest(string $requestUrl, array $parameters = [])
  240.     {
  241.         foreach ($this->requestCallbacks as $callback) {
  242.             $callback($requestUrl$parameters);
  243.         }
  244.     }
  245.     private function logResponse(string $requestUrlstring $response)
  246.     {
  247.         foreach ($this->responseCallbacks as $callback) {
  248.             $callback($requestUrl$response);
  249.         }
  250.     }
  251. }