mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-05 16:14:11 +01:00
76 lines
2.4 KiB
PHP
76 lines
2.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/>.
|
|
*
|
|
*/
|
|
|
|
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\Common::printJSON(_('La sesión no se ha iniciado o ha caducado'), 10);
|
|
}
|
|
|
|
$sk = SP\Request::analyze('sk', false);
|
|
|
|
if (!$sk || !SP\Common::checkSessionKey($sk)) {
|
|
SP\Common::printJSON(_('CONSULTA INVÁLIDA'));
|
|
}
|
|
|
|
// Variables POST del formulario
|
|
$actionId = SP\Request::analyze('actionId', 0);
|
|
$itemId = SP\Request::analyze('itemId', 0);
|
|
$onCloseAction = SP\Request::analyze('onCloseAction');
|
|
$activeTab = SP\Request::analyze('activeTab', 0);
|
|
|
|
// Acción al cerrar la vista
|
|
$doActionOnClose = "doAction('$onCloseAction','',$activeTab);";
|
|
|
|
if($actionId === SP\Controller\ActionsInterface::ACTION_USR_PREFERENCES_SECURITY){
|
|
// Variables POST del formulario
|
|
$twoFaEnabled = SP\Request::analyze('security_2faenabled', 0, false, 1);
|
|
$pin = SP\Request::analyze('security_pin', 0);
|
|
|
|
$userLogin = \SP\Users::getUserLoginById($itemId);
|
|
$twoFa = new \SP\Auth\Auth2FA($itemId, $userLogin);
|
|
|
|
if(!$twoFa->verifyKey($pin)){
|
|
SP\Common::printJSON(_('Código incorrecto'));
|
|
}
|
|
|
|
$preferences = new \SP\UserPreferences();
|
|
$preferences->setId($itemId);
|
|
$preferences->setUse2Fa(\SP\Util::boolval($twoFaEnabled));
|
|
|
|
if(!$preferences->updatePreferences()){
|
|
SP\Common::printJSON(_('Error al actualizar preferencias'));
|
|
}
|
|
|
|
SP\Common::printJSON(_('Preferencias actualizadas'), 0);
|
|
} else {
|
|
SP\Common::printJSON(_('Acción Inválida'));
|
|
} |