mirror of
https://github.com/retailcrm/opencart-module.git
synced 2025-04-03 21:33:38 +03:00
Fix session for api methods
This commit is contained in:
parent
ab06d10a81
commit
2d1e9f820c
3 changed files with 10 additions and 6 deletions
|
@ -1,3 +1,7 @@
|
|||
## v.2.0.4
|
||||
* Улучшена механика выгрузки изменений из RetailCRM
|
||||
* Улучшена механика выборки и настройки способов доставки
|
||||
|
||||
## v.2.0.3
|
||||
* Улучшена механика выгрузки изменений из RetailCRM
|
||||
* Улучшена механика выборки и настройки способов доставки
|
||||
|
|
|
@ -124,17 +124,17 @@ class ControllerApiRetailcrm extends Controller
|
|||
private function auth()
|
||||
{
|
||||
if (version_compare(VERSION, '2.1.0', '>=')) {
|
||||
if (!isset($this->request->get['token'])
|
||||
|| !$this->request->get['token']
|
||||
if (!isset($this->request->get['key'])
|
||||
|| !$this->request->get['key']
|
||||
) {
|
||||
return array('error' => 'Not found api key');
|
||||
}
|
||||
|
||||
if (isset($this->request->get['token'])
|
||||
&& !empty($this->request->get['token'])
|
||||
if (isset($this->request->get['key'])
|
||||
&& !empty($this->request->get['key'])
|
||||
) {
|
||||
$this->load->model('account/api');
|
||||
$api = $this->model_account_api->getApiByKey($this->request->get['token']);
|
||||
$api = $this->model_account_api->getApiByKey($this->request->get['key']);
|
||||
|
||||
if (!empty($api)) {
|
||||
return $api;
|
||||
|
|
|
@ -44,7 +44,7 @@ class OpencartApiClient {
|
|||
$opencartStoreInfo = $this->model_setting_store->getStore($this->opencartStoreId);
|
||||
|
||||
if (version_compare(VERSION, '2.1.0', '>=') && !empty($this->apiToken)) {
|
||||
$getParams['token'] = $this->apiToken;
|
||||
$getParams['key'] = $this->apiToken;
|
||||
} elseif (is_array($this->apiToken) && isset($this->apiToken['username'])) {
|
||||
$getParams = $this->apiToken;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue