Files
sysPass/inc/SP/Controller/UserPreferencesController.class.php
nuxsmin 5884a410a6 * [DEV] Session methods refactoring.
* [DEV] Items controllers refactoring.
* [DEV] Date picker improvements: language and timezone
* [DEV] Improved internal session user's data handling.
* [DEV] Improved internal account data handling.
* [DEV] Fixed account updating.
* [DEV] Fixed account password view.
2016-11-14 02:33:16 +01:00

138 lines
4.4 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/>.
*
*/
namespace SP\Controller;
defined('APP_ROOT') || die(_('No es posible acceder directamente a este archivo'));
use SP\Auth\Auth2FA;
use SP\Config\Config;
use SP\Core\ActionsInterface;
use SP\Core\Language;
use SP\Core\Session;
use SP\Core\SessionUtil;
use SP\Core\DiFactory;
use SP\Core\Template;
use SP\DataModel\UserPreferencesData;
use SP\Mgmt\Users\UserPreferences;
/**
* Class UsersPrefs encargada de mostrar las preferencias de los usuarios
*
* @package SP\Controller
*/
class UserPreferencesController extends ControllerBase implements ActionsInterface
{
/**
* @var int
*/
private $tabIndex = 0;
/**
* @var UserPreferencesData
*/
private $userPrefs;
/**
* @var int
*/
private $userId;
/**
* Constructor
*
* @param $template Template con instancia de plantilla
*/
public function __construct(Template $template = null)
{
parent::__construct($template);
$this->view->assign('tabs', array());
$this->view->assign('sk', SessionUtil::getSessionKey(true));
$this->userId = Session::getUserData()->getUserId();
$this->userPrefs = UserPreferences::getItem()->getById($this->userId);
}
/**
* Obtener la pestaña de seguridad
*/
public function getSecurityTab()
{
$this->setAction(self::ACTION_USR_PREFERENCES_SECURITY);
$this->view->addTemplate('preferences-security');
$twoFa = new Auth2FA($this->userId, Session::getUserData()->getUserLogin());
if (!$this->userPrefs->isUse2Fa()) {
$this->view->assign('qrCode', $twoFa->getUserQRCode());
}
$this->view->assign('userId', $this->userId);
$this->view->assign('chk2FAEnabled', $this->userPrefs->isUse2Fa());
$this->view->append('tabs', array('title' => _('Seguridad')));
$this->view->assign('tabIndex', $this->getTabIndex(), 'security');
$this->view->assign('actionId', $this->getAction(), 'security');
}
/**
* Obtener el índice actual de las pestañas
*
* @return int
*/
private function getTabIndex()
{
$index = $this->tabIndex;
$this->tabIndex++;
return $index;
}
/**
* Obtener la pestaña de preferencias
*/
public function getPreferencesTab()
{
$this->setAction(self::ACTION_USR_PREFERENCES_GENERAL);
$this->view->addTemplate('preferences-site');
$this->view->assign('userId', $this->userId);
$this->view->assign('langsAvailable', Language::getAvailableLanguages());
$this->view->assign('currentLang', $this->userPrefs->getLang());
$this->view->assign('themesAvailable', DiFactory::getTheme()->getThemesAvailable());
$this->view->assign('currentTheme', $this->userPrefs->getTheme() ?: Config::getConfig()->getSiteTheme());
$this->view->assign('chkAccountLink', $this->userPrefs->isAccountLink() ? 'checked="checked"' : '');
$this->view->assign('resultsPerPage', $this->userPrefs->getResultsPerPage() ? $this->userPrefs->getResultsPerPage() : Config::getConfig()->getAccountCount());
$this->view->assign('chkSortViews', $this->userPrefs->isSortViews() ? 'checked="checked"' : '');
$this->view->assign('chkTopNavbar', $this->userPrefs->isTopNavbar() ? 'checked="checked"' : '');
$this->view->assign('chkOptionalActions', $this->userPrefs->isOptionalActions() ? 'checked="checked"' : '');
$this->view->append('tabs', array('title' => _('Preferencias')));
$this->view->assign('tabIndex', $this->getTabIndex(), 'preferences');
$this->view->assign('actionId', $this->getAction(), 'preferences');
}
}