Skip to content

Commit

Permalink
Merge pull request #118 from iyzoer/master
Browse files Browse the repository at this point in the history
3.1.3
  • Loading branch information
gwinn authored Oct 25, 2018
2 parents 30a2600 + 0787d4a commit bca86cc
Show file tree
Hide file tree
Showing 5 changed files with 192 additions and 31 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v.3.1.3
* Добавлена активация модуля в маркетплейсе retailCRM

## v.3.1.2
* Добавлен перевод на испанский язык
* Переделан перевод на английский язык
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.2
3.1.3
140 changes: 121 additions & 19 deletions src/upload/admin/controller/extension/module/retailcrm.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,32 @@ public function install()
*/
public function uninstall()
{
$this->uninstall_collector();
$this->load->model('setting/setting');
$this->model_setting_setting->editSetting(
$this->moduleTitle,
array($this->moduleTitle . '_status' => 0)
);
$settings = $this->model_setting_setting->getSetting('retailcrm_setting');

if (!empty($settings)) {
$clientId = $settings['retailcrm_setting_client_id'];

$this->integrationModule(
$this->retailcrm->getApiClient(
$settings['retailcrm_setting_url'],
$settings['retailcrm_setting_key'],
$settings['retailcrm_setting_version']
),
$clientId,
$settings['retailcrm_setting_version'],
false
);

$this->uninstall_collector();
$this->model_setting_setting->editSetting(
$this->moduleTitle,
array($this->moduleTitle . '_status' => 0)
);
}

$this->model_setting_setting->deleteSetting('retailcrm_history');
$this->model_setting_setting->deleteSetting('retailcrm_setting');
$this->deleteEvents();
}

Expand All @@ -66,7 +85,7 @@ public function uninstall()
* @return void
*/
public function install_collector()
{
{
$collector = $this->getCollectorTitle();
$this->loadModels();
$this->load->model('setting/setting');
Expand All @@ -80,7 +99,7 @@ public function install_collector()
* @return void
*/
public function uninstall_collector()
{
{
$collector = $this->getCollectorTitle();
$this->loadModels();
$this->load->model('setting/setting');
Expand Down Expand Up @@ -174,7 +193,7 @@ public function index()
}

$this->model_setting_setting->editSetting(
'retailcrm_history',
'retailcrm_history',
array(
'retailcrm_history_orders' => isset($sinceIdOrders) ? $sinceIdOrders : 1,
'retailcrm_history_customers' => isset($sinceIdCustomers) ? $sinceIdCustomers : 1,
Expand All @@ -184,6 +203,36 @@ public function index()
}
}

$retailcrm_setting = $this->model_setting_setting->getSetting('retailcrm_setting');

if (!$retailcrm_setting) {
$clientId = uniqid();
$api = $this->retailcrm->getApiClient(
$this->request->post[$this->moduleTitle . '_url'],
$this->request->post[$this->moduleTitle . '_apikey'],
$this->request->post[$this->moduleTitle . '_apiversion']
);

$result = $this->integrationModule(
$api,
$clientId,
$this->request->post[$this->moduleTitle . '_apiversion']
);

if ($result === true) {
$this->model_setting_setting->editSetting(
'retailcrm_setting',
array(
'retailcrm_setting_active_in_crm' => true,
'retailcrm_setting_client_id' => $clientId,
'retailcrm_setting_url' => $this->request->post[$this->moduleTitle . '_url'],
'retailcrm_setting_key' => $this->request->post[$this->moduleTitle . '_apikey'],
'retailcrm_setting_version' => $this->request->post[$this->moduleTitle . '_apiversion']
)
);
}
}

$this->session->data['success'] = $this->language->get('text_success');
$redirect = $this->url->link(
'extension/module/retailcrm', $this->tokenTitle . '=' . $this->session->data[$this->tokenTitle],
Expand Down Expand Up @@ -282,7 +331,7 @@ public function index()
->getOrderStatuses();
$_data['payments'] = $this->model_extension_retailcrm_references
->getPaymentTypes();

if ($apiVersion == 'v5') {
$_data['customFields'] = $this->model_extension_retailcrm_references
->getCustomFields();
Expand Down Expand Up @@ -464,7 +513,7 @@ public function icml()
* @return void
*/
public function customer_edit($route, $customer)
{
{
$this->load->model('localisation/country');
$this->load->model('localisation/zone');
$this->load->model('customer/customer');
Expand All @@ -487,7 +536,7 @@ public function customer_edit($route, $customer)
'postcode' => $address['postcode'],
'iso_code_2' => $country['iso_code_2'],
'zone' => $zone['name']
);
);
}

$this->load->model('extension/retailcrm/customer');
Expand Down Expand Up @@ -654,7 +703,7 @@ private function validate()

/**
* Clear retailcrm log file
*
*
* @return void
*/
public function clear_retailcrm()
Expand All @@ -672,7 +721,7 @@ public function clear_retailcrm()

/**
* Clear opencart API log file
*
*
* @return void
*/
public function clear_opencart()
Expand All @@ -690,7 +739,7 @@ public function clear_opencart()

/**
* Method for load models
*
*
* @return void
*/
private function loadModels()
Expand All @@ -716,7 +765,7 @@ private function loadModels()

/**
* Get collector module name
*
*
* @return string
*/
private function getCollectorTitle()
Expand All @@ -732,7 +781,7 @@ private function getCollectorTitle()

/**
* Check file size
*
*
* @return string
*/
private function checkLogFile($file)
Expand All @@ -754,7 +803,7 @@ private function checkLogFile($file)

/**
* Add events to db
*
*
* @return void
*/
private function addEvents()
Expand Down Expand Up @@ -806,7 +855,7 @@ private function addEvents()

/**
* Check events in db
*
*
* @return boolean
*/
private function checkEvents()
Expand All @@ -826,7 +875,7 @@ private function checkEvents()

/**
* Delete events from db
*
*
* @return void
*/
private function deleteEvents()
Expand All @@ -839,4 +888,57 @@ private function deleteEvents()
$this->{'model_' . $this->modelEvent}->deleteEventByCode($this->moduleTitle);
}
}

/**
* Activate/deactivate module in marketplace retailCRM
*
* @param \RetailcrmProxy $apiClient
* @param string $clientId
* @param string $api_version
* @param boolean $active
*
* @return boolean
*/
private function integrationModule($apiClient, $clientId, $api_version, $active = true)
{
$scheme = isset($this->request->server['HTTPS']) ? 'https://' : 'http://';
$logo = 'https://s3.eu-central-1.amazonaws.com/retailcrm-billing/images/5af48736c6a0c-opencart-seeklogo.com.svg';
$integrationCode = 'opencart';
$name = 'Opencart';
$accountUrl = $scheme . $this->request->server['HTTP_HOST'] . '/admin';

if ($api_version == 'v4') {
$configuration = array(
'name' => $name,
'code' => $integrationCode . '-' . $clientId,
'logo' => $logo,
'configurationUrl' => $accountUrl,
'active' => $active
);

$response = $apiClient->marketplaceSettingsEdit($configuration);
} else {
$configuration = array(
'clientId' => $clientId,
'code' => $integrationCode . '-' . $clientId,
'integrationCode' => $integrationCode,
'active' => $active,
'name' => $name,
'logo' => $logo,
'accountUrl' => $accountUrl
);

$response = $apiClient->integrationModulesEdit($configuration);
}

if (!$response) {
return false;
}

if ($response->isSuccessful()) {
return true;
}

return false;
}
}
36 changes: 32 additions & 4 deletions src/upload/system/library/retailcrm/RetailcrmApiClient4.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,20 @@ public function __construct($url, $apiKey, $version = null, $site = null)
if ('/' !== $url[strlen($url) - 1]) {
$url .= '/';
}

$url = $version == null ? $url . 'api' : $url . 'api/' . $version;

$this->client = new RetailcrmHttpClient($url, array('apiKey' => $apiKey));
$this->siteCode = $site;
}

/**
* Returns api versions list
*
*
* @throws \RetailCrm\Exception\InvalidJsonException
* @throws \RetailCrm\Exception\CurlException
* @throws \InvalidArgumentException
*
*
* @return ApiResponse
*/
public function apiVersions()
Expand Down Expand Up @@ -1699,6 +1699,34 @@ public function statisticUpdate()
);
}

/**
* Edit marketplace configuration
*
* @param array $configuration
*
* @throws \RetailCrm\Exception\InvalidJsonException
* @throws \RetailCrm\Exception\CurlException
* @throws \InvalidArgumentException
*
* @return ApiResponse
*/
public function marketplaceSettingsEdit(array $configuration)
{
if (!count($configuration) || empty($configuration['code'])) {
throw new \InvalidArgumentException(
'Parameter `configuration` must contains a data & configuration `code` must be set'
);
}

$code = $configuration['code'];

return $this->client->makeRequest(
"/marketplace/external/setting/$code/edit",
RetailcrmHttpClient::METHOD_POST,
array('configuration' => json_encode($configuration))
);
}

/**
* Return current site
*
Expand Down
Loading

0 comments on commit bca86cc

Please sign in to comment.