mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-06 16:36:59 +01:00
184 lines
7.8 KiB
PHP
184 lines
7.8 KiB
PHP
<?php
|
|
/**
|
|
* sysPass
|
|
*
|
|
* @author nuxsmin
|
|
* @link http://syspass.org
|
|
* @copyright 2012-2015 Rubén Domínguez nuxsmin@syspass.org
|
|
*
|
|
* This file is part of sysPass.
|
|
*
|
|
* sysPass is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* sysPass is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
use SP\Request;
|
|
|
|
define('APP_ROOT', '..');
|
|
|
|
require_once APP_ROOT . DIRECTORY_SEPARATOR . 'inc' . DIRECTORY_SEPARATOR . 'Base.php';
|
|
|
|
Request::checkReferer('POST');
|
|
|
|
if (!SP\Init::isLoggedIn()) {
|
|
SP\Util::logout();
|
|
}
|
|
|
|
if (!SP\Request::analyze('itemId', false, true)
|
|
|| !SP\Request::analyze('actionId', false, true)
|
|
) {
|
|
exit();
|
|
}
|
|
|
|
$actionId = SP\Request::analyze('actionId', 0);
|
|
|
|
$tpl = new SP\Template();
|
|
$tpl->assign('itemId', SP\Request::analyze('itemId', 0));
|
|
$tpl->assign('activeTab', SP\Request::analyze('activeTab', 0));
|
|
$tpl->assign('actionId', $actionId);
|
|
$tpl->assign('isView', false);
|
|
|
|
switch ($actionId) {
|
|
case \SP\Controller\ActionsInterface::ACTION_USR_USERS_VIEW:
|
|
$tpl->assign('header', _('Ver Usuario'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_USR);
|
|
$tpl->assign('isView', true);
|
|
$controller = new SP\Controller\UsersMgmtC($tpl);
|
|
$controller->getUser();
|
|
break;
|
|
case \SP\Controller\ActionsInterface::ACTION_USR_USERS_EDIT:
|
|
$tpl->assign('header', _('Editar Usuario'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_USR);
|
|
$controller = new SP\Controller\UsersMgmtC($tpl);
|
|
$controller->getUser();
|
|
break;
|
|
case \SP\Controller\ActionsInterface::ACTION_USR_USERS_NEW:
|
|
$tpl->assign('header', _('Nuevo Usuario'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_USR);
|
|
$controller = new SP\Controller\UsersMgmtC($tpl);
|
|
$controller->getUser();
|
|
break;
|
|
case \SP\Controller\ActionsInterface::ACTION_USR_GROUPS_VIEW:
|
|
$tpl->assign('header', _('Ver Grupo'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_USR);
|
|
$tpl->assign('isView', true);
|
|
$controller = new SP\Controller\UsersMgmtC($tpl);
|
|
$controller->getGroup();
|
|
break;
|
|
case \SP\Controller\ActionsInterface::ACTION_USR_GROUPS_EDIT:
|
|
$tpl->assign('header', _('Editar Grupo'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_USR);
|
|
$controller = new SP\Controller\UsersMgmtC($tpl);
|
|
$controller->getGroup();
|
|
break;
|
|
case \SP\Controller\ActionsInterface::ACTION_USR_GROUPS_NEW:
|
|
$tpl->assign('header', _('Nuevo Grupo'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_USR);
|
|
$controller = new SP\Controller\UsersMgmtC($tpl);
|
|
$controller->getGroup();
|
|
break;
|
|
case \SP\Controller\ActionsInterface::ACTION_USR_PROFILES_VIEW:
|
|
$tpl->assign('header', _('Ver Perfil'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_USR);
|
|
$tpl->assign('isView', true);
|
|
$controller = new SP\Controller\UsersMgmtC($tpl);
|
|
$controller->getProfile();
|
|
break;
|
|
case \SP\Controller\ActionsInterface::ACTION_USR_PROFILES_EDIT:
|
|
$tpl->assign('header', _('Editar Perfil'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_USR);
|
|
$controller = new SP\Controller\UsersMgmtC($tpl);
|
|
$controller->getProfile();
|
|
break;
|
|
case \SP\Controller\ActionsInterface::ACTION_USR_PROFILES_NEW:
|
|
$tpl->assign('header', _('Nuevo Perfil'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_USR);
|
|
$controller = new SP\Controller\UsersMgmtC($tpl);
|
|
$controller->getProfile();
|
|
break;
|
|
case \SP\Controller\ActionsInterface::ACTION_MGM_CUSTOMERS_VIEW:
|
|
$tpl->assign('header', _('Ver Cliente'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_MGM);
|
|
$tpl->assign('isView', true);
|
|
$controller = new SP\Controller\AccountsMgmtC($tpl);
|
|
$controller->getCustomer();
|
|
break;
|
|
case \SP\Controller\ActionsInterface::ACTION_MGM_CUSTOMERS_EDIT:
|
|
$tpl->assign('header', _('Editar Cliente'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_MGM);
|
|
$controller = new SP\Controller\AccountsMgmtC($tpl);
|
|
$controller->getCustomer();
|
|
break;
|
|
case \SP\Controller\ActionsInterface::ACTION_MGM_CUSTOMERS_NEW:
|
|
$tpl->assign('header', _('Nuevo Cliente'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_MGM);
|
|
$controller = new SP\Controller\AccountsMgmtC($tpl);
|
|
$controller->getCustomer();
|
|
break;
|
|
case \SP\Controller\ActionsInterface::ACTION_MGM_CATEGORIES_VIEW:
|
|
$tpl->assign('header', _('Ver Categoría'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_MGM);
|
|
$tpl->assign('isView', true);
|
|
$controller = new SP\Controller\AccountsMgmtC($tpl);
|
|
$controller->getCategory();
|
|
break;
|
|
case \SP\Controller\ActionsInterface::ACTION_MGM_CATEGORIES_EDIT:
|
|
$tpl->assign('header', _('Editar Categoría'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_MGM);
|
|
$controller = new SP\Controller\AccountsMgmtC($tpl);
|
|
$controller->getCategory();
|
|
break;
|
|
case \SP\Controller\ActionsInterface::ACTION_MGM_CATEGORIES_NEW:
|
|
$tpl->assign('header', _('Nueva Categoría'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_MGM);
|
|
$controller = new SP\Controller\AccountsMgmtC($tpl);
|
|
$controller->getCategory();
|
|
break;
|
|
case \SP\Controller\ActionsInterface::ACTION_MGM_APITOKENS_VIEW:
|
|
$tpl->assign('header', _('Ver Autorización'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_USR);
|
|
$tpl->assign('isView', true);
|
|
$controller = new SP\Controller\UsersMgmtC($tpl);
|
|
$controller->getToken();
|
|
break;
|
|
case \SP\Controller\ActionsInterface::ACTION_MGM_APITOKENS_NEW:
|
|
$tpl->assign('header', _('Nueva Autorización'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_USR);
|
|
$controller = new SP\Controller\UsersMgmtC($tpl);
|
|
$controller->getToken();
|
|
break;
|
|
case \SP\Controller\ActionsInterface::ACTION_MGM_APITOKENS_EDIT:
|
|
$tpl->assign('header', _('Editar Autorización'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_USR);
|
|
$controller = new SP\Controller\UsersMgmtC($tpl);
|
|
$controller->getToken();
|
|
break;
|
|
case \SP\Controller\ActionsInterface::ACTION_MGM_CUSTOMFIELDS_NEW:
|
|
$tpl->assign('header', _('Nuevo Campo'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_MGM);
|
|
$controller = new SP\Controller\AccountsMgmtC($tpl);
|
|
$controller->getCustomField();
|
|
break;
|
|
case \SP\Controller\ActionsInterface::ACTION_MGM_CUSTOMFIELDS_EDIT:
|
|
$tpl->assign('header', _('Editar Campo'));
|
|
$tpl->assign('onCloseAction', \SP\Controller\ActionsInterface::ACTION_MGM);
|
|
$controller = new SP\Controller\AccountsMgmtC($tpl);
|
|
$controller->getCustomField();
|
|
break;
|
|
default :
|
|
exit();
|
|
break;
|
|
}
|
|
|
|
$controller->view(); |