77 lines
1.8 KiB
PHP
77 lines
1.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* PHP version 5.4
|
|
*
|
|
* API client class
|
|
*
|
|
* @category RetailCrm
|
|
* @package RetailCrm
|
|
* @author RetailCrm <integration@retailcrm.ru>
|
|
* @license https://opensource.org/licenses/MIT MIT License
|
|
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
|
*/
|
|
|
|
namespace RetailCrm;
|
|
|
|
use RetailCrm\Client\ApiVersion3;
|
|
use RetailCrm\Client\ApiVersion4;
|
|
use RetailCrm\Client\ApiVersion5;
|
|
|
|
/**
|
|
* PHP version 5.4
|
|
*
|
|
* API client class
|
|
*
|
|
* @category RetailCrm
|
|
* @package RetailCrm
|
|
* @author RetailCrm <integration@retailcrm.ru>
|
|
* @license https://opensource.org/licenses/MIT MIT License
|
|
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
|
*/
|
|
class ApiClient
|
|
{
|
|
public $request;
|
|
public $version;
|
|
|
|
const V3 = 'v3';
|
|
const V4 = 'v4';
|
|
const V5 = 'v5';
|
|
|
|
/**
|
|
* Init version based client
|
|
*
|
|
* @param string $url api url
|
|
* @param string $apiKey api key
|
|
* @param string $version api version
|
|
* @param string $site site code
|
|
* @param bool $debug debug mode
|
|
*/
|
|
public function __construct($url, $apiKey, $version = self::V5, $site = null, $debug = false)
|
|
{
|
|
$this->version = $version;
|
|
|
|
switch ($version) {
|
|
case self::V4:
|
|
$this->request = new ApiVersion4($url, $apiKey, $version, $site, $debug);
|
|
break;
|
|
case self::V3:
|
|
$this->request = new ApiVersion3($url, $apiKey, $version, $site, $debug);
|
|
break;
|
|
default:
|
|
$this->request = new ApiVersion5($url, $apiKey, $version, $site, $debug);
|
|
break;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get API version
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getVersion()
|
|
{
|
|
return $this->version;
|
|
}
|
|
}
|