1
0
mirror of synced 2024-11-22 21:36:10 +03:00
bitrix-module/intaro.retailcrm/classes/general/RCrmActions.php

419 lines
14 KiB
PHP
Raw Normal View History

2016-09-15 16:42:10 +03:00
<?php
IncludeModuleLangFile(__FILE__);
class RCrmActions
{
public static $MODULE_ID = 'intaro.retailcrm';
public static $CRM_ORDER_FAILED_IDS = 'order_failed_ids';
2017-09-04 11:36:04 +03:00
public static $CRM_API_VERSION = 'api_version';
2016-09-15 16:42:10 +03:00
const CANCEL_PROPERTY_CODE = 'INTAROCRM_IS_CANCELED';
2016-10-04 17:57:39 +03:00
public static function SitesList()
{
2016-09-15 16:42:10 +03:00
$arSites = array();
$rsSites = CSite::GetList($by, $sort, array('ACTIVE' => 'Y'));
2016-10-04 17:57:39 +03:00
while ($ar = $rsSites->Fetch()) {
2016-09-15 16:42:10 +03:00
$arSites[] = $ar;
}
return $arSites;
}
2016-10-04 17:57:39 +03:00
public static function OrderTypesList($arSites)
{
2016-09-15 16:42:10 +03:00
$orderTypesList = array();
2016-10-04 17:57:39 +03:00
foreach ($arSites as $site) {
2016-09-15 16:42:10 +03:00
$personTypes = \Bitrix\Sale\PersonType::load($site['LID']);
$bitrixOrderTypesList = array();
2016-10-04 17:57:39 +03:00
foreach ($personTypes as $personType) {
if (!array_key_exists($personType['ID'], $orderTypesList)) {
2016-09-15 16:42:10 +03:00
$bitrixOrderTypesList[$personType['ID']] = $personType;
}
asort($bitrixOrderTypesList);
}
$orderTypesList = $orderTypesList + $bitrixOrderTypesList;
}
return $orderTypesList;
}
2016-10-04 17:57:39 +03:00
public static function DeliveryList()
{
2016-09-15 16:42:10 +03:00
$bitrixDeliveryTypesList = array();
$arDeliveryServiceAll = \Bitrix\Sale\Delivery\Services\Manager::getActiveList();
$noOrderId = \Bitrix\Sale\Delivery\Services\EmptyDeliveryService::getEmptyDeliveryServiceId();
2017-09-04 11:36:04 +03:00
$groups = array();
2016-10-04 17:57:39 +03:00
foreach ($arDeliveryServiceAll as $arDeliveryService) {
2017-09-04 11:36:04 +03:00
if ($arDeliveryService['CLASS_NAME'] == '\Bitrix\Sale\Delivery\Services\Group') {
$groups[] = $arDeliveryService['ID'];
}
}
foreach ($arDeliveryServiceAll as $arDeliveryService) {
if ((($arDeliveryService['PARENT_ID'] == '0' || $arDeliveryService['PARENT_ID'] == null) ||
in_array($arDeliveryService['PARENT_ID'], $groups)) &&
$arDeliveryService['ID'] != $noOrderId &&
$arDeliveryService['CLASS_NAME'] != '\Bitrix\Sale\Delivery\Services\Group') {
if (in_array($arDeliveryService['PARENT_ID'], $groups)) {
$arDeliveryService['PARENT_ID'] = 0;
}
2016-09-15 16:42:10 +03:00
$bitrixDeliveryTypesList[] = $arDeliveryService;
}
}
2016-09-15 16:42:10 +03:00
return $bitrixDeliveryTypesList;
}
2016-09-15 16:42:10 +03:00
2016-10-04 17:57:39 +03:00
public static function PaymentList()
{
2016-09-15 16:42:10 +03:00
$bitrixPaymentTypesList = array();
$dbPaymentAll = \Bitrix\Sale\PaySystem\Manager::getList(array(
'select' => array('ID', 'NAME'),
'filter' => array('ACTIVE' => 'Y')
));
2016-10-04 17:57:39 +03:00
while ($payment = $dbPaymentAll->fetch()) {
2016-09-15 16:42:10 +03:00
$bitrixPaymentTypesList[] = $payment;
}
return $bitrixPaymentTypesList;
}
2017-09-04 11:36:04 +03:00
2016-10-04 17:57:39 +03:00
public static function StatusesList()
{
2016-09-15 16:42:10 +03:00
$bitrixPaymentStatusesList = array();
2016-10-12 11:40:18 +03:00
$obStatuses = \Bitrix\Sale\Internals\StatusTable::getList(array(
'filter' => array('TYPE' => 'O', '=Bitrix\Sale\Internals\StatusLangTable:STATUS.LID' => LANGUAGE_ID),
2016-10-12 11:40:18 +03:00
'select' => array('ID', "NAME" => 'Bitrix\Sale\Internals\StatusLangTable:STATUS.NAME')
));
while ($arStatus = $obStatuses->fetch()) {
$bitrixPaymentStatusesList[$arStatus['ID']] = array(
'ID' => $arStatus['ID'],
'NAME' => $arStatus['NAME'],
);
2016-09-15 16:42:10 +03:00
}
return $bitrixPaymentStatusesList;
2017-09-04 11:36:04 +03:00
}
2016-10-04 17:57:39 +03:00
public static function OrderPropsList()
{
2016-09-15 16:42:10 +03:00
$bitrixPropsList = array();
$arPropsAll = \Bitrix\Sale\Internals\OrderPropsTable::getList(array(
'select' => array('*')
));
2016-10-04 17:57:39 +03:00
while ($prop = $arPropsAll->Fetch()) {
2016-09-15 16:42:10 +03:00
$bitrixPropsList[$prop['PERSON_TYPE_ID']][] = $prop;
}
return $bitrixPropsList;
}
2017-09-04 11:36:04 +03:00
public static function PricesExportList()
{
$priceId = COption::GetOptionString(self::$MODULE_ID, 'catalog_base_price', 0);
$catalogExportPrices = array();
$dbPriceType = CCatalogGroup::GetList(array(), array('!ID' => $priceId), false, false, array('ID', 'NAME', 'NAME_LANG'));
while ($arPriceType = $dbPriceType->Fetch())
{
$catalogExportPrices[$arPriceType['ID']] = $arPriceType;
}
return $catalogExportPrices;
}
public static function StoresExportList()
{
$catalogExportStores = array();
$dbStores = CCatalogStore::GetList(array(), array("ACTIVE" => "Y"), false, false, array('ID', 'TITLE'));
while ($stores = $dbStores->Fetch()) {
$catalogExportStores[] = $stores;
}
return $catalogExportStores;
}
public static function IblocksExportList()
{
$catalogExportIblocks = array();
$dbIblocks = CIBlock::GetList(array("IBLOCK_TYPE" => "ASC", "NAME" => "ASC"), array('CHECK_PERMISSIONS' => 'Y','MIN_PERMISSION' => 'W'));
while ($iblock = $dbIblocks->Fetch()) {
if ($arCatalog = CCatalog::GetByIDExt($iblock["ID"])) {
if($arCatalog['CATALOG_TYPE'] == "D" || $arCatalog['CATALOG_TYPE'] == "X" || $arCatalog['CATALOG_TYPE'] == "P") {
$catalogExportIblocks[$iblock['ID']] = array(
'ID' => $iblock['ID'],
'IBLOCK_TYPE_ID' => $iblock['IBLOCK_TYPE_ID'],
'LID' => $iblock['LID'],
'CODE' => $iblock['CODE'],
'NAME' => $iblock['NAME'],
);
if ($arCatalog['CATALOG_TYPE'] == "X" || $arCatalog['CATALOG_TYPE'] == "P") {
$iblockOffer = CCatalogSKU::GetInfoByProductIBlock($iblock["ID"]);
$catalogExportIblocks[$iblock['ID']]['SKU'] = $iblockOffer;
}
}
}
}
return $catalogExportIblocks;
}
2016-09-15 16:42:10 +03:00
/**
*
* w+ event in bitrix log
*/
2016-10-04 17:57:39 +03:00
public static function eventLog($auditType, $itemId, $description)
{
2016-09-15 16:42:10 +03:00
CEventLog::Add(array(
"SEVERITY" => "SECURITY",
"AUDIT_TYPE_ID" => $auditType,
"MODULE_ID" => self::$MODULE_ID,
"ITEM_ID" => $itemId,
"DESCRIPTION" => $description,
));
}
/**
*
* Agent function
*
* @return self name
*/
2016-10-04 17:57:39 +03:00
public static function uploadOrdersAgent()
{
2016-09-15 16:42:10 +03:00
RetailCrmOrder::uploadOrders();
$failedIds = unserialize(COption::GetOptionString(self::$MODULE_ID, self::$CRM_ORDER_FAILED_IDS, 0));
if (is_array($failedIds) && !empty($failedIds)) {
RetailCrmOrder::uploadOrders(50, true);
}
2017-09-04 11:36:04 +03:00
return;
2016-09-15 16:42:10 +03:00
}
/**
*
* Agent function
*
* @return self name
*/
2016-10-04 17:57:39 +03:00
public static function orderAgent()
{
if (COption::GetOptionString('main', 'agents_use_crontab', 'N') != 'N') {
2016-09-15 16:42:10 +03:00
define('NO_AGENT_CHECK', true);
}
RetailCrmHistory::customerHistory();
RetailCrmHistory::orderHistory();
self::uploadOrdersAgent();
return 'RCrmActions::orderAgent();';
}
/**
* removes all empty fields from arrays
* working with nested arrs
*
* @param array $arr
* @return array
*/
2016-10-04 17:57:39 +03:00
public static function clearArr($arr)
{
2016-09-15 16:42:10 +03:00
if (is_array($arr) === false) {
return $arr;
}
$result = array();
foreach ($arr as $index => $node ) {
$result[ $index ] = is_array($node) === true ? self::clearArr($node) : trim($node);
if ($result[ $index ] == '' || $result[ $index ] === null || count($result[ $index ]) < 1) {
unset($result[ $index ]);
}
}
return $result;
}
/**
*
* @global $APPLICATION
* @param $str in SITE_CHARSET
* @return $str in utf-8
*/
2016-10-04 17:57:39 +03:00
public static function toJSON($str)
{
2016-09-15 16:42:10 +03:00
global $APPLICATION;
return $APPLICATION->ConvertCharset($str, SITE_CHARSET, 'utf-8');
}
/**
*
* @global $APPLICATION
* @param $str in utf-8
* @return $str in SITE_CHARSET
*/
2016-10-04 17:57:39 +03:00
public static function fromJSON($str)
{
2016-09-15 16:42:10 +03:00
global $APPLICATION;
return $APPLICATION->ConvertCharset($str, 'utf-8', SITE_CHARSET);
}
2016-10-04 17:57:39 +03:00
public static function explodeFIO($fio)
{
2017-09-04 11:36:04 +03:00
$result = array();
2016-12-13 14:01:48 +03:00
$fio = preg_replace('|[\s]+|s', ' ', trim($fio));
2017-09-04 11:36:04 +03:00
if (empty($fio)) {
return $result;
} else {
$newFio = explode(" ", $fio, 3);
}
2016-12-13 14:01:48 +03:00
2016-09-15 16:42:10 +03:00
switch (count($newFio)) {
default:
case 0:
$result['firstName'] = $fio;
break;
case 1:
$result['firstName'] = $newFio[0];
break;
case 2:
$result = array(
'lastName' => $newFio[0],
'firstName' => $newFio[1]
);
break;
case 3:
$result = array(
'lastName' => $newFio[0],
'firstName' => $newFio[1],
'patronymic' => $newFio[2]
);
break;
}
return $result;
}
2016-10-04 17:57:39 +03:00
public static function apiMethod($api, $methodApi, $method, $params, $site = null)
{
switch ($methodApi) {
2017-09-04 11:36:04 +03:00
case 'ordersPaymentDelete':
case 'ordersHistory':
case 'customerHistory':
case 'ordersFixExternalIds':
case 'customersFixExternalIds':
return self::proxy($api, $methodApi, $method, array($params));
case 'orderGet':
return self::proxy($api, 'ordersGet', $method, array($params, 'id', $site));
2016-09-15 16:42:10 +03:00
case 'ordersGet':
case 'ordersEdit':
case 'customersGet':
case 'customersEdit':
2017-09-04 11:36:04 +03:00
return self::proxy($api, $methodApi, $method, array($params, 'externalId', $site));
2017-10-24 11:41:11 +03:00
case 'paymentEditById':
return self::proxy($api, 'ordersPaymentEdit', $method, array($params, 'id', $site));
case 'paymentEditByExternalId':
return self::proxy($api, 'ordersPaymentEdit', $method, array($params, 'externalId', $site));
2016-09-15 16:42:10 +03:00
default:
2017-09-04 11:36:04 +03:00
return self::proxy($api, $methodApi, $method, array($params, $site));
2017-10-24 11:41:11 +03:00
}
2017-09-04 11:36:04 +03:00
}
2017-11-13 11:05:11 +03:00
2017-09-04 11:36:04 +03:00
private function proxy($api, $methodApi, $method, $params) {
$log = new Logger();
$version = COption::GetOptionString(self::$MODULE_ID, self::$CRM_API_VERSION, 0);
try {
$result = call_user_func_array(array($api, $methodApi), $params);
2016-09-15 16:42:10 +03:00
2017-09-04 11:36:04 +03:00
if ($result->getStatusCode() !== 200 && $result->getStatusCode() !== 201) {
if ($methodApi == 'ordersGet' || $methodApi == 'customersGet') {
$log->write(array(
'api' => $version,
'methodApi' => $methodApi,
'errorMsg' => !empty($result['errorMsg']) ? $result['errorMsg'] : '',
'errors' => !empty($result['errors']) ? $result['errors'] : '',
'params' => $params
), 'apiErrors');
} elseif ($methodApi == 'customersUpload' || $methodApi == 'ordersUpload') {
$log->write(array(
'api' => $version,
'methodApi' => $methodApi,
'errorMsg' => !empty($result['errorMsg']) ? $result['errorMsg'] : '',
'errors' => !empty($result['errors']) ? $result['errors'] : '',
'params' => $params
), 'uploadApiErrors');
} else {
self::eventLog(__CLASS__ . '::' . $method, 'RetailCrm\ApiClient::' . $methodApi, !empty($result['errorMsg']) ? $result['errorMsg'] : '');
$log->write(array(
'api' => $version,
'methodApi' => $methodApi,
'errorMsg' => !empty($result['errorMsg']) ? $result['errorMsg'] : '',
'errors' => !empty($result['errors']) ? $result['errors'] : '',
'params' => $params
), 'apiErrors');
2016-09-15 16:42:10 +03:00
}
2017-11-13 11:05:11 +03:00
2017-09-04 11:36:04 +03:00
if (function_exists('retailCrmApiResult')) {
retailCrmApiResult($methodApi, false, $result->getStatusCode());
}
2017-11-13 11:05:11 +03:00
2017-09-04 11:36:04 +03:00
if ($result->getStatusCode() == 460) {
return true;
}
return false;
}
} catch (\RetailCrm\Exception\CurlException $e) {
self::eventLog(
__CLASS__ . '::' . $method, 'RetailCrm\ApiClient::' . $methodApi . '::CurlException',
$e->getCode() . ': ' . $e->getMessage()
);
$log->write(array(
'api' => $version,
'methodApi' => $methodApi,
'errorMsg' => $e->getMessage(),
'errors' => $e->getCode(),
'params' => $params
), 'apiErrors');
if (function_exists('retailCrmApiResult')) {
retailCrmApiResult($methodApi, false, 'CurlException');
}
return false;
} catch (InvalidArgumentException $e) {
self::eventLog(
__CLASS__ . '::' . $method, 'RetailCrm\ApiClient::' . $methodApi . '::InvalidArgumentException',
$e->getCode() . ': ' . $e->getMessage()
);
$log->write(array(
'api' => $version,
'methodApi' => $methodApi,
'errorMsg' => $e->getMessage(),
'errors' => $e->getCode(),
'params' => $params
), 'apiErrors');
if (function_exists('retailCrmApiResult')) {
retailCrmApiResult($methodApi, false, 'ArgumentException');
}
return false;
}
2017-11-13 11:05:11 +03:00
2017-09-04 11:36:04 +03:00
if (function_exists('retailCrmApiResult')) {
retailCrmApiResult($methodApi, true, $result->getStatusCode());
}
2017-11-13 11:05:11 +03:00
2017-09-04 11:36:04 +03:00
return $result;
2016-09-15 16:42:10 +03:00
}
}