Merge branch 'ent-6472-graficas-con-phantomjs-y-saml' into 'develop'
SAML with pandora sessions See merge request artica/pandorafms!3533
This commit is contained in:
commit
b0ccfc89b1
|
@ -457,7 +457,12 @@ if ($login_screen == 'logout') {
|
|||
echo '<div class="content_message_alert">';
|
||||
echo '<div class="text_message_alert">';
|
||||
echo '<h1>'.__('Logged out').'</h1>';
|
||||
echo '<p>'.__('Your session has ended. Please close your browser window to close this %s session.', get_product_name()).'</p>';
|
||||
if (empty($config['logout_msg']) === true) {
|
||||
echo '<p>'.__('Your session has ended. Please close your browser window to close this %s session.', get_product_name()).'</p>';
|
||||
} else {
|
||||
echo '<p>'.__($config['logout_msg']).'</p>';
|
||||
}
|
||||
|
||||
echo '</div>';
|
||||
echo '<div class="button_message_alert">';
|
||||
html_print_submit_button('Ok', 'hide-login-logout', false);
|
||||
|
|
|
@ -239,8 +239,7 @@ function process_user_login_remote($login, $pass, $api=false)
|
|||
|
||||
// Unknown authentication method
|
||||
default:
|
||||
$config['auth_error'] = 'User not found in database
|
||||
or incorrect password';
|
||||
$config['auth_error'] = 'User not found in database or incorrect password';
|
||||
return false;
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -64,14 +64,23 @@ function pandora_session_close()
|
|||
function pandora_session_read($session_id)
|
||||
{
|
||||
$session_id = addslashes($session_id);
|
||||
$session_data = db_get_value(
|
||||
'data',
|
||||
'tsessions_php',
|
||||
'id_session',
|
||||
$session_id
|
||||
|
||||
// Do not use SQL cache here.
|
||||
$session_data = db_get_all_rows_sql(
|
||||
sprintf(
|
||||
'SELECT data
|
||||
FROM `tsessions_php` WHERE id_session="%s"',
|
||||
$session_id
|
||||
),
|
||||
false,
|
||||
false
|
||||
);
|
||||
|
||||
if (!empty($session_data)) {
|
||||
if (is_array($session_data) === true) {
|
||||
$session_data = $session_data[0]['data'];
|
||||
}
|
||||
|
||||
if (empty($session_data) === false) {
|
||||
return $session_data;
|
||||
} else {
|
||||
return '';
|
||||
|
@ -90,7 +99,6 @@ function pandora_session_read($session_id)
|
|||
function pandora_session_write($session_id, $data)
|
||||
{
|
||||
$session_id = addslashes($session_id);
|
||||
|
||||
if (is_ajax()) {
|
||||
// Avoid session upadte while processing ajax responses - notifications.
|
||||
if (get_parameter('check_new_notifications', false)) {
|
||||
|
@ -101,18 +109,22 @@ function pandora_session_write($session_id, $data)
|
|||
$values = [];
|
||||
$values['last_active'] = time();
|
||||
|
||||
if (!empty($data)) {
|
||||
if (empty($data) === false) {
|
||||
$values['data'] = addslashes($data);
|
||||
}
|
||||
|
||||
$session_exists = (bool) db_get_value(
|
||||
'COUNT(id_session)',
|
||||
'tsessions_php',
|
||||
'id_session',
|
||||
$session_id
|
||||
// Do not use SQL cache here.
|
||||
$session_exists = db_get_all_rows_sql(
|
||||
sprintf(
|
||||
'SELECT id_session
|
||||
FROM `tsessions_php` WHERE id_session="%s"',
|
||||
$session_id
|
||||
),
|
||||
false,
|
||||
false
|
||||
);
|
||||
|
||||
if (!$session_exists) {
|
||||
if ($session_exists === false) {
|
||||
$values['id_session'] = $session_id;
|
||||
$retval_write = db_process_sql_insert('tsessions_php', $values);
|
||||
} else {
|
||||
|
@ -198,11 +210,69 @@ function pandora_session_gc($max_lifetime=300)
|
|||
}
|
||||
|
||||
|
||||
$result_handler = session_set_save_handler(
|
||||
'pandora_session_open',
|
||||
'pandora_session_close',
|
||||
'pandora_session_read',
|
||||
'pandora_session_write',
|
||||
'pandora_session_destroy',
|
||||
'pandora_session_gc'
|
||||
);
|
||||
/**
|
||||
* Enables custom session handlers.
|
||||
*
|
||||
* @return boolean Context changed or not.
|
||||
*/
|
||||
function enable_session_handlers()
|
||||
{
|
||||
global $config;
|
||||
|
||||
if ($config['_using_pandora_sessionhandlers'] !== true) {
|
||||
if (session_status() !== PHP_SESSION_NONE) {
|
||||
// Close previous version.
|
||||
session_write_close();
|
||||
}
|
||||
|
||||
$sesion_handler = session_set_save_handler(
|
||||
'pandora_session_open',
|
||||
'pandora_session_close',
|
||||
'pandora_session_read',
|
||||
'pandora_session_write',
|
||||
'pandora_session_destroy',
|
||||
'pandora_session_gc'
|
||||
);
|
||||
|
||||
session_start();
|
||||
|
||||
// Restore previous session.
|
||||
$config['_using_pandora_sessionhandlers'] = true;
|
||||
return $sesion_handler;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Disables custom session handlers.
|
||||
*
|
||||
* @param string|null $id_session Force swap to target session.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function disable_session_handlers($id_session=null)
|
||||
{
|
||||
global $config;
|
||||
|
||||
if (session_status() !== PHP_SESSION_NONE) {
|
||||
// Close previous version.
|
||||
session_write_close();
|
||||
}
|
||||
|
||||
$ss = new SessionHandler();
|
||||
session_set_save_handler($ss, true);
|
||||
|
||||
if ($id_session !== null) {
|
||||
session_id($id_session);
|
||||
}
|
||||
|
||||
session_start();
|
||||
|
||||
$config['_using_pandora_sessionhandlers'] = false;
|
||||
}
|
||||
|
||||
|
||||
// Always enable session handler.
|
||||
$result_handler = enable_session_handlers();
|
||||
|
|
|
@ -222,7 +222,7 @@ echo '<head>'."\n";
|
|||
ob_start('ui_process_page_head');
|
||||
|
||||
// Enterprise main.
|
||||
enterprise_include('index.php');
|
||||
enterprise_include_once('index.php');
|
||||
|
||||
echo '<script type="text/javascript">';
|
||||
echo 'var dispositivo = navigator.userAgent.toLowerCase();';
|
||||
|
@ -273,6 +273,7 @@ if (strlen($search) > 0) {
|
|||
}
|
||||
|
||||
// Login process.
|
||||
enterprise_include_once('include/auth/saml.php');
|
||||
if (! isset($config['id_user'])) {
|
||||
// Clear error messages.
|
||||
unset($_COOKIE['errormsg']);
|
||||
|
@ -395,24 +396,33 @@ if (! isset($config['id_user'])) {
|
|||
$nick_in_db = $_SESSION['prepared_login_da']['id_user'];
|
||||
$expired_pass = false;
|
||||
} else if (($config['auth'] == 'saml') && ($login_button_saml)) {
|
||||
$saml_configured = include_once $config['homedir'].'/'.ENTERPRISE_DIR.'/include/auth/saml.php';
|
||||
|
||||
if (!$saml_configured) {
|
||||
include_once 'general/noaccesssaml.php';
|
||||
}
|
||||
|
||||
$saml_user_id = saml_process_user_login();
|
||||
|
||||
$saml_user_id = enterprise_hook('saml_process_user_login');
|
||||
if (!$saml_user_id) {
|
||||
include_once 'general/noaccesssaml.php';
|
||||
}
|
||||
$login_failed = true;
|
||||
include_once 'general/login_page.php';
|
||||
while (@ob_end_flush()) {
|
||||
// Dumping...
|
||||
continue;
|
||||
}
|
||||
|
||||
exit('</html>');
|
||||
}
|
||||
|
||||
$nick_in_db = $saml_user_id;
|
||||
if (!$nick_in_db) {
|
||||
include_once $config['saml_path'].'simplesamlphp/lib/_autoload.php';
|
||||
$as = new SimpleSAML_Auth_Simple($config['saml_source']);
|
||||
$as->logout();
|
||||
if ($config['auth'] === 'saml') {
|
||||
enterprise_hook('saml_logout');
|
||||
}
|
||||
|
||||
if (session_status() !== PHP_SESSION_NONE) {
|
||||
$_SESSION = [];
|
||||
session_destroy();
|
||||
header_remove('Set-Cookie');
|
||||
setcookie(session_name(), $_COOKIE[session_name()], (time() - 4800), '/');
|
||||
}
|
||||
|
||||
// Process logout.
|
||||
include 'general/logoff.php';
|
||||
}
|
||||
} else {
|
||||
// process_user_login is a virtual function which should be defined in each auth file.
|
||||
|
@ -735,7 +745,7 @@ if (! isset($config['id_user'])) {
|
|||
|
||||
exit('</html>');
|
||||
}
|
||||
} else {
|
||||
} else if (isset($_GET['bye']) === false) {
|
||||
// There is no user connected.
|
||||
if ($config['enterprise_installed']) {
|
||||
enterprise_include_once('include/functions_reset_pass.php');
|
||||
|
@ -953,6 +963,10 @@ if (! isset($config['id_user'])) {
|
|||
}
|
||||
|
||||
exit('</html>');
|
||||
} else {
|
||||
if ($config['auth'] === 'saml') {
|
||||
enterprise_hook('saml_login_status_verifier');
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -964,19 +978,19 @@ if (file_exists(ENTERPRISE_DIR.'/load_enterprise.php')) {
|
|||
|
||||
// Log off.
|
||||
if (isset($_GET['bye'])) {
|
||||
include 'general/logoff.php';
|
||||
$iduser = $_SESSION['id_usuario'];
|
||||
|
||||
if ($config['auth'] === 'saml') {
|
||||
enterprise_hook('saml_logout');
|
||||
}
|
||||
|
||||
$_SESSION = [];
|
||||
session_destroy();
|
||||
header_remove('Set-Cookie');
|
||||
setcookie(session_name(), $_COOKIE[session_name()], (time() - 4800), '/');
|
||||
|
||||
if ($config['auth'] == 'saml') {
|
||||
include_once $config['saml_path'].'simplesamlphp/lib/_autoload.php';
|
||||
$as = new SimpleSAML_Auth_Simple('PandoraFMS');
|
||||
$as->logout();
|
||||
}
|
||||
// Process logout.
|
||||
include 'general/logoff.php';
|
||||
|
||||
while (@ob_end_flush()) {
|
||||
// Dumping...
|
||||
|
|
Loading…
Reference in New Issue