2014-11-06 02:44:52 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace RetailCrm;
|
|
|
|
|
|
|
|
use RetailCrm\Http\Client;
|
|
|
|
use RetailCrm\Response\ApiResponse;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* retailCRM API client class
|
|
|
|
*/
|
|
|
|
class ApiClient
|
|
|
|
{
|
|
|
|
const VERSION = 'v3';
|
|
|
|
|
|
|
|
protected $client;
|
|
|
|
|
2014-11-27 11:23:44 +03:00
|
|
|
/**
|
|
|
|
* Site code
|
|
|
|
*/
|
|
|
|
protected $siteCode;
|
|
|
|
|
2014-11-06 02:44:52 +03:00
|
|
|
/**
|
|
|
|
* Client creating
|
|
|
|
*
|
|
|
|
* @param string $url
|
|
|
|
* @param string $apiKey
|
2014-11-27 11:23:44 +03:00
|
|
|
* @param string $siteCode
|
2014-11-10 03:12:50 +03:00
|
|
|
* @return mixed
|
2014-11-06 02:44:52 +03:00
|
|
|
*/
|
2014-11-27 11:23:44 +03:00
|
|
|
public function __construct($url, $apiKey, $site = null)
|
2014-11-06 02:44:52 +03:00
|
|
|
{
|
|
|
|
if ('/' != substr($url, strlen($url) - 1, 1)) {
|
|
|
|
$url .= '/';
|
|
|
|
}
|
|
|
|
|
|
|
|
$url = $url . 'api/' . self::VERSION;
|
|
|
|
|
|
|
|
$this->client = new Client($url, array('apiKey' => $apiKey));
|
2014-11-27 11:23:44 +03:00
|
|
|
$this->siteCode = $site;
|
2014-11-06 02:44:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a order
|
|
|
|
*
|
|
|
|
* @param array $order
|
2014-11-27 11:23:44 +03:00
|
|
|
* @param string $site (default: null)
|
2014-11-06 02:44:52 +03:00
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
2014-11-27 11:23:44 +03:00
|
|
|
public function ordersCreate(array $order, $site = null)
|
2014-11-06 02:44:52 +03:00
|
|
|
{
|
2014-11-06 13:48:07 +03:00
|
|
|
if (!sizeof($order)) {
|
|
|
|
throw new \InvalidArgumentException('Parameter `order` must contains a data');
|
|
|
|
}
|
|
|
|
|
2014-11-27 11:23:44 +03:00
|
|
|
return $this->client->makeRequest("/orders/create", Client::METHOD_POST, $this->fillSite($site, array(
|
2014-11-06 02:44:52 +03:00
|
|
|
'order' => json_encode($order)
|
2014-11-27 11:23:44 +03:00
|
|
|
)));
|
2014-11-06 02:44:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Edit a order
|
|
|
|
*
|
|
|
|
* @param array $order
|
2014-11-27 11:23:44 +03:00
|
|
|
* @param string $site (default: null)
|
2014-11-06 02:44:52 +03:00
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
2014-11-27 11:23:44 +03:00
|
|
|
public function ordersEdit(array $order, $by = 'externalId', $site = null)
|
2014-11-06 02:44:52 +03:00
|
|
|
{
|
2014-11-06 13:48:07 +03:00
|
|
|
if (!sizeof($order)) {
|
|
|
|
throw new \InvalidArgumentException('Parameter `order` must contains a data');
|
|
|
|
}
|
|
|
|
|
2014-11-06 02:44:52 +03:00
|
|
|
$this->checkIdParameter($by);
|
|
|
|
|
|
|
|
if (!isset($order[$by])) {
|
|
|
|
throw new \InvalidArgumentException(sprintf('Order array must contain the "%s" parameter.', $by));
|
|
|
|
}
|
|
|
|
|
2014-11-27 11:23:44 +03:00
|
|
|
return $this->client->makeRequest(
|
|
|
|
"/orders/" . $order[$by] . "/edit",
|
|
|
|
Client::METHOD_POST,
|
|
|
|
$this->fillSite($site, array(
|
|
|
|
'order' => json_encode($order),
|
|
|
|
'by' => $by,
|
|
|
|
))
|
|
|
|
);
|
2014-11-06 02:44:52 +03:00
|
|
|
}
|
|
|
|
|
2014-11-06 13:48:07 +03:00
|
|
|
/**
|
|
|
|
* Upload array of the orders
|
|
|
|
*
|
|
|
|
* @param array $orders
|
2014-11-27 11:23:44 +03:00
|
|
|
* @param string $site (default: null)
|
2014-11-06 13:48:07 +03:00
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
2014-11-27 11:23:44 +03:00
|
|
|
public function ordersUpload(array $orders, $site = null)
|
2014-11-06 13:48:07 +03:00
|
|
|
{
|
|
|
|
if (!sizeof($orders)) {
|
|
|
|
throw new \InvalidArgumentException('Parameter `orders` must contains array of the orders');
|
|
|
|
}
|
|
|
|
|
2014-11-27 11:23:44 +03:00
|
|
|
return $this->client->makeRequest("/orders/upload", Client::METHOD_POST, $this->fillSite($site, array(
|
2014-11-06 13:48:07 +03:00
|
|
|
'orders' => json_encode($orders),
|
2014-11-27 11:23:44 +03:00
|
|
|
)));
|
2014-11-06 13:48:07 +03:00
|
|
|
}
|
|
|
|
|
2014-11-06 02:44:52 +03:00
|
|
|
/**
|
|
|
|
* Get order by id or externalId
|
|
|
|
*
|
|
|
|
* @param string $id
|
|
|
|
* @param string $by (default: 'externalId')
|
2014-11-27 11:23:44 +03:00
|
|
|
* @param string $site (default: null)
|
2014-11-06 02:44:52 +03:00
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
2014-11-27 11:23:44 +03:00
|
|
|
public function ordersGet($id, $by = 'externalId', $site = null)
|
2014-11-06 02:44:52 +03:00
|
|
|
{
|
|
|
|
$this->checkIdParameter($by);
|
|
|
|
|
2014-11-27 11:23:44 +03:00
|
|
|
return $this->client->makeRequest("/orders/$id", Client::METHOD_GET, $this->fillSite($site, array(
|
|
|
|
'by' => $by
|
|
|
|
)));
|
2014-11-06 02:44:52 +03:00
|
|
|
}
|
|
|
|
|
2014-11-06 03:18:39 +03:00
|
|
|
/**
|
|
|
|
* Returns a orders history
|
|
|
|
*
|
|
|
|
* @param \DateTime $startDate (default: null)
|
|
|
|
* @param \DateTime $endDate (default: null)
|
|
|
|
* @param int $limit (default: 100)
|
|
|
|
* @param int $offset (default: 0)
|
2014-11-06 17:19:20 +03:00
|
|
|
* @param bool $skipMyChanges (default: true)
|
2014-11-06 03:18:39 +03:00
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
2014-11-06 17:19:20 +03:00
|
|
|
public function ordersHistory(
|
|
|
|
\DateTime $startDate = null,
|
|
|
|
\DateTime $endDate = null,
|
|
|
|
$limit = 100,
|
|
|
|
$offset = 0,
|
|
|
|
$skipMyChanges = true
|
|
|
|
) {
|
2014-11-06 03:18:39 +03:00
|
|
|
$parameters = array();
|
|
|
|
|
|
|
|
if ($startDate) {
|
|
|
|
$parameters['startDate'] = $startDate->format('Y-m-d H:i:s');
|
|
|
|
}
|
|
|
|
if ($endDate) {
|
|
|
|
$parameters['endDate'] = $endDate->format('Y-m-d H:i:s');
|
|
|
|
}
|
|
|
|
if ($limit) {
|
|
|
|
$parameters['limit'] = (int) $limit;
|
|
|
|
}
|
|
|
|
if ($offset) {
|
|
|
|
$parameters['offset'] = (int) $offset;
|
|
|
|
}
|
2014-11-06 17:19:20 +03:00
|
|
|
if ($skipMyChanges) {
|
|
|
|
$parameters['skipMyChanges'] = (bool) $skipMyChanges;
|
|
|
|
}
|
2014-11-06 03:18:39 +03:00
|
|
|
|
|
|
|
return $this->client->makeRequest('/orders/history', Client::METHOD_GET, $parameters);
|
|
|
|
}
|
|
|
|
|
2014-11-06 03:50:15 +03:00
|
|
|
/**
|
|
|
|
* Returns filtered orders list
|
|
|
|
*
|
2014-11-06 13:48:07 +03:00
|
|
|
* @param array $filter (default: array())
|
|
|
|
* @param int $page (default: null)
|
|
|
|
* @param int $limit (default: null)
|
|
|
|
* @return ApiResponse
|
2014-11-06 03:50:15 +03:00
|
|
|
*/
|
|
|
|
public function ordersList(array $filter = array(), $page = null, $limit = null)
|
|
|
|
{
|
|
|
|
$parameters = array();
|
|
|
|
|
|
|
|
if (sizeof($filter)) {
|
|
|
|
$parameters['filter'] = $filter;
|
|
|
|
}
|
|
|
|
if (null !== $page) {
|
|
|
|
$parameters['page'] = (int) $page;
|
|
|
|
}
|
|
|
|
if (null !== $limit) {
|
|
|
|
$parameters['limit'] = (int) $limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->client->makeRequest('/orders', Client::METHOD_GET, $parameters);
|
|
|
|
}
|
|
|
|
|
2014-11-13 09:37:53 +03:00
|
|
|
/**
|
|
|
|
* Returns statuses of the orders
|
|
|
|
*
|
|
|
|
* @param array $ids (default: array())
|
|
|
|
* @param array $externalIds (default: array())
|
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function ordersStatuses(array $ids = array(), array $externalIds = array())
|
|
|
|
{
|
|
|
|
$parameters = array();
|
|
|
|
|
|
|
|
if (sizeof($ids)) {
|
|
|
|
$parameters['ids'] = $ids;
|
|
|
|
}
|
|
|
|
if (sizeof($externalIds)) {
|
|
|
|
$parameters['externalIds'] = $externalIds;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->client->makeRequest('/orders/statuses', Client::METHOD_GET, $parameters);
|
|
|
|
}
|
|
|
|
|
2014-11-06 13:48:07 +03:00
|
|
|
/**
|
|
|
|
* Save order IDs' (id and externalId) association in the CRM
|
|
|
|
*
|
|
|
|
* @param array $ids
|
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function ordersFixExternalIds(array $ids)
|
|
|
|
{
|
|
|
|
if (!sizeof($ids)) {
|
|
|
|
throw new \InvalidArgumentException('Method parameter must contains at least one IDs pair');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->client->makeRequest("/orders/fix-external-ids", Client::METHOD_POST, array(
|
|
|
|
'orders' => json_encode($ids),
|
|
|
|
));
|
|
|
|
}
|
2015-05-04 18:47:14 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get orders assembly history
|
|
|
|
*
|
|
|
|
* @param array $filter (default: array())
|
|
|
|
* @param int $page (default: null)
|
|
|
|
* @param int $limit (default: null)
|
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function ordersPacksHistory(array $filter = array(), $page = null, $limit = null)
|
|
|
|
{
|
|
|
|
$parameters = array();
|
|
|
|
|
|
|
|
if (sizeof($filter)) {
|
|
|
|
$parameters['filter'] = $filter;
|
|
|
|
}
|
|
|
|
if (null !== $page) {
|
|
|
|
$parameters['page'] = (int) $page;
|
|
|
|
}
|
|
|
|
if (null !== $limit) {
|
|
|
|
$parameters['limit'] = (int) $limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->client->makeRequest('/orders/packs/history', Client::METHOD_GET, $parameters);
|
|
|
|
}
|
2014-11-06 13:48:07 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a customer
|
|
|
|
*
|
|
|
|
* @param array $customer
|
2014-11-27 11:23:44 +03:00
|
|
|
* @param string $site (default: null)
|
2014-11-06 13:48:07 +03:00
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
2014-11-27 11:23:44 +03:00
|
|
|
public function customersCreate(array $customer, $site = null)
|
2014-11-06 13:48:07 +03:00
|
|
|
{
|
|
|
|
if (!sizeof($customer)) {
|
|
|
|
throw new \InvalidArgumentException('Parameter `customer` must contains a data');
|
|
|
|
}
|
|
|
|
|
2014-11-27 11:23:44 +03:00
|
|
|
return $this->client->makeRequest("/customers/create", Client::METHOD_POST, $this->fillSite($site, array(
|
2014-11-06 13:48:07 +03:00
|
|
|
'customer' => json_encode($customer)
|
2014-11-27 11:23:44 +03:00
|
|
|
)));
|
2014-11-06 13:48:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Edit a customer
|
|
|
|
*
|
|
|
|
* @param array $customer
|
2014-11-27 11:23:44 +03:00
|
|
|
* @param string $by (default: 'externalId')
|
|
|
|
* @param string $site (default: null)
|
2014-11-06 13:48:07 +03:00
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
2014-11-27 11:23:44 +03:00
|
|
|
public function customersEdit(array $customer, $by = 'externalId', $site = null)
|
2014-11-06 13:48:07 +03:00
|
|
|
{
|
|
|
|
if (!sizeof($customer)) {
|
|
|
|
throw new \InvalidArgumentException('Parameter `customer` must contains a data');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->checkIdParameter($by);
|
|
|
|
|
|
|
|
if (!isset($customer[$by])) {
|
|
|
|
throw new \InvalidArgumentException(sprintf('Customer array must contain the "%s" parameter.', $by));
|
|
|
|
}
|
|
|
|
|
2014-11-27 11:23:44 +03:00
|
|
|
return $this->client->makeRequest(
|
|
|
|
"/customers/" . $customer[$by] . "/edit",
|
|
|
|
Client::METHOD_POST,
|
|
|
|
$this->fillSite($site, array(
|
|
|
|
'customer' => json_encode($customer),
|
|
|
|
'by' => $by,
|
|
|
|
)
|
2014-11-06 13:48:07 +03:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Upload array of the customers
|
|
|
|
*
|
|
|
|
* @param array $customers
|
2014-11-27 11:23:44 +03:00
|
|
|
* @param string $site (default: null)
|
2014-11-06 13:48:07 +03:00
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
2014-11-27 11:23:44 +03:00
|
|
|
public function customersUpload(array $customers, $site = null)
|
2014-11-06 13:48:07 +03:00
|
|
|
{
|
|
|
|
if (!sizeof($customers)) {
|
|
|
|
throw new \InvalidArgumentException('Parameter `customers` must contains array of the customers');
|
|
|
|
}
|
|
|
|
|
2014-11-27 11:23:44 +03:00
|
|
|
return $this->client->makeRequest("/customers/upload", Client::METHOD_POST, $this->fillSite($site, array(
|
2014-11-06 13:48:07 +03:00
|
|
|
'customers' => json_encode($customers),
|
2014-11-27 11:23:44 +03:00
|
|
|
)));
|
2014-11-06 13:48:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get customer by id or externalId
|
|
|
|
*
|
|
|
|
* @param string $id
|
|
|
|
* @param string $by (default: 'externalId')
|
2014-11-27 11:23:44 +03:00
|
|
|
* @param string $site (default: null)
|
2014-11-06 13:48:07 +03:00
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
2014-11-27 11:23:44 +03:00
|
|
|
public function customersGet($id, $by = 'externalId', $site = null)
|
2014-11-06 13:48:07 +03:00
|
|
|
{
|
|
|
|
$this->checkIdParameter($by);
|
|
|
|
|
2014-11-27 11:23:44 +03:00
|
|
|
return $this->client->makeRequest("/customers/$id", Client::METHOD_GET, $this->fillSite($site, array(
|
|
|
|
'by' => $by
|
|
|
|
)));
|
2014-11-06 13:48:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns filtered customers list
|
|
|
|
*
|
|
|
|
* @param array $filter (default: array())
|
|
|
|
* @param int $page (default: null)
|
|
|
|
* @param int $limit (default: null)
|
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function customersList(array $filter = array(), $page = null, $limit = null)
|
|
|
|
{
|
|
|
|
$parameters = array();
|
|
|
|
|
|
|
|
if (sizeof($filter)) {
|
|
|
|
$parameters['filter'] = $filter;
|
|
|
|
}
|
|
|
|
if (null !== $page) {
|
|
|
|
$parameters['page'] = (int) $page;
|
|
|
|
}
|
|
|
|
if (null !== $limit) {
|
|
|
|
$parameters['limit'] = (int) $limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->client->makeRequest('/customers', Client::METHOD_GET, $parameters);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save customer IDs' (id and externalId) association in the CRM
|
|
|
|
*
|
|
|
|
* @param array $ids
|
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function customersFixExternalIds(array $ids)
|
|
|
|
{
|
|
|
|
if (!sizeof($ids)) {
|
|
|
|
throw new \InvalidArgumentException('Method parameter must contains at least one IDs pair');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->client->makeRequest("/customers/fix-external-ids", Client::METHOD_POST, array(
|
|
|
|
'customers' => json_encode($ids),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2015-05-04 18:47:14 +03:00
|
|
|
/**
|
|
|
|
* Get purchace prices & stock balance
|
|
|
|
*
|
|
|
|
* @param array $filter (default: array())
|
|
|
|
* @param int $page (default: null)
|
|
|
|
* @param int $limit (default: null)
|
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function storeInventories(array $filter = array(), $page = null, $limit = null)
|
|
|
|
{
|
|
|
|
$parameters = array();
|
|
|
|
|
|
|
|
if (sizeof($filter)) {
|
|
|
|
$parameters['filter'] = $filter;
|
|
|
|
}
|
|
|
|
if (null !== $page) {
|
|
|
|
$parameters['page'] = (int) $page;
|
|
|
|
}
|
|
|
|
if (null !== $limit) {
|
|
|
|
$parameters['limit'] = (int) $limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->client->makeRequest('/store/inventories', Client::METHOD_GET, $parameters);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Upload store inventories
|
|
|
|
*
|
|
|
|
* @param array $offers
|
|
|
|
* @param string $site (default: null)
|
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function storeInventoriesUpload(array $offers, $site = null)
|
|
|
|
{
|
|
|
|
if (!sizeof($offers)) {
|
|
|
|
throw new \InvalidArgumentException('Parameter `offers` must contains array of the customers');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->client->makeRequest("/store/inventories/upload", Client::METHOD_POST, $this->fillSite($site, array(
|
|
|
|
'offers' => json_encode($offers),
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
|
2014-11-06 16:39:55 +03:00
|
|
|
/**
|
|
|
|
* Returns deliveryServices list
|
|
|
|
*
|
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function deliveryServicesList()
|
|
|
|
{
|
|
|
|
return $this->client->makeRequest('/reference/delivery-services', Client::METHOD_GET);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns deliveryTypes list
|
|
|
|
*
|
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function deliveryTypesList()
|
|
|
|
{
|
|
|
|
return $this->client->makeRequest('/reference/delivery-types', Client::METHOD_GET);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns orderMethods list
|
|
|
|
*
|
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function orderMethodsList()
|
|
|
|
{
|
|
|
|
return $this->client->makeRequest('/reference/order-methods', Client::METHOD_GET);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns orderTypes list
|
|
|
|
*
|
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function orderTypesList()
|
|
|
|
{
|
|
|
|
return $this->client->makeRequest('/reference/order-types', Client::METHOD_GET);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns paymentStatuses list
|
|
|
|
*
|
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function paymentStatusesList()
|
|
|
|
{
|
|
|
|
return $this->client->makeRequest('/reference/payment-statuses', Client::METHOD_GET);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns paymentTypes list
|
|
|
|
*
|
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function paymentTypesList()
|
|
|
|
{
|
|
|
|
return $this->client->makeRequest('/reference/payment-types', Client::METHOD_GET);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns productStatuses list
|
|
|
|
*
|
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function productStatusesList()
|
|
|
|
{
|
|
|
|
return $this->client->makeRequest('/reference/product-statuses', Client::METHOD_GET);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns statusGroups list
|
|
|
|
*
|
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function statusGroupsList()
|
|
|
|
{
|
|
|
|
return $this->client->makeRequest('/reference/status-groups', Client::METHOD_GET);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns statuses list
|
|
|
|
*
|
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function statusesList()
|
|
|
|
{
|
|
|
|
return $this->client->makeRequest('/reference/statuses', Client::METHOD_GET);
|
|
|
|
}
|
|
|
|
|
2014-11-27 11:23:44 +03:00
|
|
|
/**
|
|
|
|
* Returns sites list
|
|
|
|
*
|
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function sitesList()
|
|
|
|
{
|
|
|
|
return $this->client->makeRequest('/reference/sites', Client::METHOD_GET);
|
|
|
|
}
|
|
|
|
|
2014-11-06 16:39:55 +03:00
|
|
|
/**
|
|
|
|
* Edit deliveryService
|
|
|
|
*
|
2014-11-10 03:12:50 +03:00
|
|
|
* @param array $data delivery service data
|
2014-11-06 16:39:55 +03:00
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function deliveryServicesEdit(array $data)
|
|
|
|
{
|
|
|
|
if (!isset($data['code'])) {
|
|
|
|
throw new \InvalidArgumentException('Data must contain "code" parameter.');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->client->makeRequest(
|
|
|
|
'/reference/delivery-services/' . $data['code'] . '/edit',
|
|
|
|
Client::METHOD_POST,
|
|
|
|
array(
|
|
|
|
'deliveryService' => json_encode($data)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Edit deliveryType
|
|
|
|
*
|
2014-11-10 03:12:50 +03:00
|
|
|
* @param array $data delivery type data
|
2014-11-06 16:39:55 +03:00
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function deliveryTypesEdit(array $data)
|
|
|
|
{
|
|
|
|
if (!isset($data['code'])) {
|
|
|
|
throw new \InvalidArgumentException('Data must contain "code" parameter.');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->client->makeRequest(
|
|
|
|
'/reference/delivery-types/' . $data['code'] . '/edit',
|
|
|
|
Client::METHOD_POST,
|
|
|
|
array(
|
|
|
|
'deliveryType' => json_encode($data)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Edit orderMethod
|
|
|
|
*
|
2014-11-10 03:12:50 +03:00
|
|
|
* @param array $data order method data
|
2014-11-06 16:39:55 +03:00
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function orderMethodsEdit(array $data)
|
|
|
|
{
|
|
|
|
if (!isset($data['code'])) {
|
|
|
|
throw new \InvalidArgumentException('Data must contain "code" parameter.');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->client->makeRequest(
|
|
|
|
'/reference/order-methods/' . $data['code'] . '/edit',
|
|
|
|
Client::METHOD_POST,
|
|
|
|
array(
|
|
|
|
'orderMethod' => json_encode($data)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Edit orderType
|
|
|
|
*
|
2014-11-10 03:12:50 +03:00
|
|
|
* @param array $data order type data
|
2014-11-06 16:39:55 +03:00
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function orderTypesEdit(array $data)
|
|
|
|
{
|
|
|
|
if (!isset($data['code'])) {
|
|
|
|
throw new \InvalidArgumentException('Data must contain "code" parameter.');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->client->makeRequest(
|
|
|
|
'/reference/order-types/' . $data['code'] . '/edit',
|
|
|
|
Client::METHOD_POST,
|
|
|
|
array(
|
|
|
|
'orderType' => json_encode($data)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Edit paymentStatus
|
|
|
|
*
|
2014-11-10 03:12:50 +03:00
|
|
|
* @param array $data payment status data
|
2014-11-06 16:39:55 +03:00
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function paymentStatusesEdit(array $data)
|
|
|
|
{
|
|
|
|
if (!isset($data['code'])) {
|
|
|
|
throw new \InvalidArgumentException('Data must contain "code" parameter.');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->client->makeRequest(
|
|
|
|
'/reference/payment-statuses/' . $data['code'] . '/edit',
|
|
|
|
Client::METHOD_POST,
|
|
|
|
array(
|
|
|
|
'paymentStatus' => json_encode($data)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Edit paymentType
|
|
|
|
*
|
2014-11-10 03:12:50 +03:00
|
|
|
* @param array $data payment type data
|
2014-11-06 16:39:55 +03:00
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function paymentTypesEdit(array $data)
|
|
|
|
{
|
|
|
|
if (!isset($data['code'])) {
|
|
|
|
throw new \InvalidArgumentException('Data must contain "code" parameter.');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->client->makeRequest(
|
|
|
|
'/reference/payment-types/' . $data['code'] . '/edit',
|
|
|
|
Client::METHOD_POST,
|
|
|
|
array(
|
|
|
|
'paymentType' => json_encode($data)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Edit productStatus
|
|
|
|
*
|
2014-11-10 03:12:50 +03:00
|
|
|
* @param array $data product status data
|
2014-11-06 16:39:55 +03:00
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function productStatusesEdit(array $data)
|
|
|
|
{
|
|
|
|
if (!isset($data['code'])) {
|
|
|
|
throw new \InvalidArgumentException('Data must contain "code" parameter.');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->client->makeRequest(
|
|
|
|
'/reference/product-statuses/' . $data['code'] . '/edit',
|
|
|
|
Client::METHOD_POST,
|
|
|
|
array(
|
|
|
|
'productStatus' => json_encode($data)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Edit order status
|
|
|
|
*
|
2014-11-10 03:12:50 +03:00
|
|
|
* @param array $data status data
|
2014-11-06 16:39:55 +03:00
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function statusesEdit(array $data)
|
|
|
|
{
|
|
|
|
if (!isset($data['code'])) {
|
|
|
|
throw new \InvalidArgumentException('Data must contain "code" parameter.');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->client->makeRequest(
|
|
|
|
'/reference/statuses/' . $data['code'] . '/edit',
|
|
|
|
Client::METHOD_POST,
|
|
|
|
array(
|
|
|
|
'status' => json_encode($data)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2014-11-27 11:23:44 +03:00
|
|
|
/**
|
|
|
|
* Edit site
|
|
|
|
*
|
|
|
|
* @param array $data site data
|
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function sitesEdit(array $data)
|
|
|
|
{
|
|
|
|
if (!isset($data['code'])) {
|
|
|
|
throw new \InvalidArgumentException('Data must contain "code" parameter.');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->client->makeRequest(
|
|
|
|
'/reference/sites/' . $data['code'] . '/edit',
|
|
|
|
Client::METHOD_POST,
|
|
|
|
array(
|
|
|
|
'site' => json_encode($data)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2014-11-06 16:39:55 +03:00
|
|
|
/**
|
|
|
|
* Update CRM basic statistic
|
|
|
|
*
|
|
|
|
* @return ApiResponse
|
|
|
|
*/
|
|
|
|
public function statisticUpdate()
|
|
|
|
{
|
|
|
|
return $this->client->makeRequest('/statistic/update', Client::METHOD_GET);
|
|
|
|
}
|
|
|
|
|
2014-11-27 11:23:44 +03:00
|
|
|
/**
|
|
|
|
* Return current site
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getSite()
|
|
|
|
{
|
|
|
|
return $this->siteCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set site
|
|
|
|
*
|
|
|
|
* @param string $site
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setSite($site)
|
|
|
|
{
|
|
|
|
$this->siteCode = $site;
|
|
|
|
}
|
|
|
|
|
2014-11-06 02:44:52 +03:00
|
|
|
/**
|
|
|
|
* Check ID parameter
|
|
|
|
*
|
|
|
|
* @param string $by
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
protected function checkIdParameter($by)
|
|
|
|
{
|
|
|
|
$allowedForBy = array('externalId', 'id');
|
|
|
|
if (!in_array($by, $allowedForBy)) {
|
|
|
|
throw new \InvalidArgumentException(sprintf(
|
|
|
|
'Value "%s" for parameter "by" is not valid. Allowed values are %s.',
|
|
|
|
$by,
|
|
|
|
implode(', ', $allowedForBy)
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2014-11-27 11:23:44 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Fill params by site value
|
|
|
|
*
|
|
|
|
* @param string $site
|
|
|
|
* @param array $params
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function fillSite($site, array $params)
|
|
|
|
{
|
|
|
|
if ($site) {
|
|
|
|
$params['site'] = $site;
|
|
|
|
} elseif ($this->siteCode) {
|
|
|
|
$params['site'] = $this->siteCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $params;
|
|
|
|
}
|
2014-11-10 03:12:50 +03:00
|
|
|
}
|