git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11808 b9a71923-0436-4b27-9f14-aed3839534dd
235 lines
7.1 KiB
PHP
Executable File
235 lines
7.1 KiB
PHP
Executable File
<?php
|
|
/*
|
|
* 2007-2011 PrestaShop
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Open Software License (OSL 3.0)
|
|
* that is bundled with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* http://opensource.org/licenses/osl-3.0.php
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to http://www.prestashop.com for more information.
|
|
*
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
* @copyright 2007-2011 PrestaShop SA
|
|
* @version Release: $Revision: 7499 $
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*/
|
|
|
|
class AdminWebserviceControllerCore extends AdminController
|
|
{
|
|
/** this will be filled later */
|
|
public $fields_form = array('webservice form');
|
|
|
|
public function __construct()
|
|
{
|
|
$this->table = 'webservice_account';
|
|
$this->className = 'WebserviceKey';
|
|
$this->lang = false;
|
|
$this->edit = true;
|
|
$this->delete = true;
|
|
$this->id_lang_default = Configuration::get('PS_LANG_DEFAULT');
|
|
|
|
$this->fieldsDisplay = array(
|
|
'key' => array(
|
|
'title' => $this->l('Key'),
|
|
'align' => 'center',
|
|
'width' => 32
|
|
),
|
|
'active' => array(
|
|
'title' => $this->l('Enabled'),
|
|
'align' => 'center',
|
|
'active' => 'status',
|
|
'type' => 'bool',
|
|
'orderby' => false,
|
|
'width' => 32
|
|
),
|
|
'description' => array(
|
|
'title' => $this->l('Key description'),
|
|
'align' => 'left',
|
|
'orderby' => false
|
|
)
|
|
);
|
|
|
|
if (file_exists(_PS_ROOT_DIR_.'/.htaccess'))
|
|
$this->options = array(
|
|
'general' => array(
|
|
'title' => $this->l('Configuration'),
|
|
'fields' => array(
|
|
'PS_WEBSERVICE' => array('title' => $this->l('Enable PrestaShop Webservice:'),
|
|
'desc' => $this->l('Before activating the webservice, you must be sure to: ').
|
|
'<ol>
|
|
<li>'.$this->l('be certain URL rewrite is available on this server').'</li>
|
|
<li>'.$this->l('be certain that the 5 methods GET, POST, PUT, DELETE and HEAD are supported by this server').'</li>
|
|
</ol>',
|
|
'cast' => 'intval',
|
|
'type' => 'bool'),
|
|
'PS_WEBSERVICE_CGI_HOST' => array(
|
|
'title' => $this->l('Active mode CGI for PHP:'),
|
|
'desc' => $this->l('Be sure PHP is not configured as an Apache module on your server'),
|
|
'cast' => 'intval',
|
|
'type' => 'bool'
|
|
),
|
|
),
|
|
'submit' => array()
|
|
),
|
|
);
|
|
|
|
parent::__construct();
|
|
}
|
|
|
|
public function renderForm()
|
|
{
|
|
$this->fields_form = array(
|
|
'legend' => array(
|
|
'title' => $this->l('Webservice Accounts:'),
|
|
'image' => '../img/admin/access.png'
|
|
),
|
|
'input' => array(
|
|
array(
|
|
'type' => 'text',
|
|
'label' => $this->l('Key:'),
|
|
'name' => 'key',
|
|
'id' => 'code',
|
|
'size' => 32,
|
|
'required' => true,
|
|
'desc' => $this->l('Webservice account key'),
|
|
),
|
|
array(
|
|
'type' => 'textarea',
|
|
'label' => $this->l('Key description:'),
|
|
'name' => 'description',
|
|
'rows' => 3,
|
|
'cols' => 110,
|
|
'desc' => $this->l('Key description'),
|
|
),
|
|
array(
|
|
'type' => 'radio',
|
|
'label' => $this->l('Status:'),
|
|
'name' => 'active',
|
|
'required' => false,
|
|
'class' => 't',
|
|
'is_bool' => true,
|
|
'values' => array(
|
|
array(
|
|
'id' => 'active_on',
|
|
'value' => 1,
|
|
'label' => $this->l('Enabled')
|
|
),
|
|
array(
|
|
'id' => 'active_off',
|
|
'value' => 0,
|
|
'label' => $this->l('Disabled')
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'type' => 'resources',
|
|
'label' => $this->l('Permissions:'),
|
|
'name' => 'resources',
|
|
)
|
|
)
|
|
);
|
|
|
|
if (Shop::isFeatureActive())
|
|
{
|
|
$this->fields_form['input'][] = array(
|
|
'type' => 'shop',
|
|
'label' => $this->l('Shop association:'),
|
|
'name' => 'checkBoxShopAsso',
|
|
'values' => Shop::getTree()
|
|
);
|
|
}
|
|
|
|
$this->fields_form['submit'] = array(
|
|
'title' => $this->l(' Save '),
|
|
'class' => 'button'
|
|
);
|
|
|
|
if (!($obj = $this->loadObject(true)))
|
|
return;
|
|
|
|
$ressources = WebserviceRequest::getResources();
|
|
$permissions = WebserviceKey::getPermissionForAccount($obj->key);
|
|
|
|
$this->tpl_form_vars = array(
|
|
'ressources' => $ressources,
|
|
'permissions' => $permissions
|
|
);
|
|
|
|
return parent::renderForm();
|
|
}
|
|
|
|
public function initContent()
|
|
{
|
|
if ($this->display != 'add' && $this->display != 'edit')
|
|
$this->checkForWarning();
|
|
|
|
parent::initContent();
|
|
}
|
|
|
|
public function postProcess()
|
|
{
|
|
if (Tools::getValue('key') && strlen(Tools::getValue('key')) < 32)
|
|
$this->_errors[] = Tools::displayError($this->l('Key length must be 32 character long'));
|
|
if (WebserviceKey::keyExists(Tools::getValue('key')) && !Tools::getValue('id_webservice_account'))
|
|
$this->_errors[] = Tools::displayError($this->l('Key already exists'));
|
|
return parent::postProcess();
|
|
}
|
|
|
|
protected function afterAdd($object)
|
|
{
|
|
WebserviceKey::setPermissionForAccount($object->id, Tools::getValue('resources', array()));
|
|
}
|
|
|
|
protected function afterUpdate($object)
|
|
{
|
|
WebserviceKey::setPermissionForAccount($object->id, Tools::getValue('resources', array()));
|
|
}
|
|
|
|
public function checkForWarning()
|
|
{
|
|
if (!file_exists(_PS_ROOT_DIR_.'/.htaccess'))
|
|
$this->warnings[] = $this->l('In order to enable the PrestaShop Webservice,
|
|
please generate the .htaccess file via the "Generators" tab (in the "Tools" tab).');
|
|
if (strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') === false)
|
|
{
|
|
$this->warnings[] = $this->l('To avoid operating problems, please use an Apache server.');
|
|
if (function_exists('apache_get_modules'))
|
|
{
|
|
$apache_modules = apache_get_modules();
|
|
if (!in_array('mod_auth_basic', $apache_modules))
|
|
$this->warnings[] = $this->l('Please activate the Apache module \'mod_auth_basic\' to allow authentication of PrestaShop webservice.');
|
|
if (!in_array('mod_rewrite', $apache_modules))
|
|
$this->warnings[] = $this->l('Please activate the Apache module \'mod_rewrite\' to allow using the PrestaShop webservice.');
|
|
}
|
|
else
|
|
$this->warnings[] = $this->l('We could not check if basic authentication and rewrite extensions are activated.
|
|
Please manually check if they are activated in order to use the PrestaShop webservice.');
|
|
}
|
|
if (!extension_loaded('SimpleXML'))
|
|
$this->warnings[] = $this->l('Please activate the PHP extension \'SimpleXML\' to allow testing of PrestaShop webservice.');
|
|
if (!configuration::get('PS_SSL_ENABLED'))
|
|
$this->warnings[] = $this->l('If possible, it is preferable to use SSL (https) for webservice calls,
|
|
as it avoids the security issues of type "man in the middle".');
|
|
|
|
foreach ($this->_list as $k => $item)
|
|
if ($item['is_module'] && $item['class_name'] && $item['module_name'] &&
|
|
($instance = Module::getInstanceByName($item['module_name'])) &&
|
|
!$instance->useNormalPermissionBehaviour())
|
|
unset($this->_list[$k]);
|
|
|
|
$this->renderList();
|
|
}
|
|
|
|
}
|