Redirect after HTTP authentication

Allow to redirect to the previous QUERY_STRING after HTTP authentication.
pull/162/head
nicolas-joubert 11 years ago
parent 3d2320a958
commit 5e3d1026c6

@ -19,12 +19,14 @@
*/ */
class http_authentication extends rcube_plugin class http_authentication extends rcube_plugin
{ {
private $redirect_query;
function init() function init()
{ {
$this->add_hook('startup', array($this, 'startup')); $this->add_hook('startup', array($this, 'startup'));
$this->add_hook('authenticate', array($this, 'authenticate')); $this->add_hook('authenticate', array($this, 'authenticate'));
$this->add_hook('logout_after', array($this, 'logout')); $this->add_hook('logout_after', array($this, 'logout'));
$this->add_hook('login_after', array($this, 'login'));
} }
function startup($args) function startup($args)
@ -34,8 +36,9 @@ class http_authentication extends rcube_plugin
$rcmail->add_shutdown_function(array('http_authentication', 'shutdown')); $rcmail->add_shutdown_function(array('http_authentication', 'shutdown'));
// handle login action // handle login action
if (empty($args['action']) && empty($_SESSION['user_id'])) { if (empty($_SESSION['user_id'])) {
$args['action'] = 'login'; $args['action'] = 'login';
$this->redirect_query = $_SERVER['QUERY_STRING'];
} }
// Set user password in session (see shutdown() method for more info) // Set user password in session (see shutdown() method for more info)
else if (!empty($_SESSION['user_id']) && empty($_SESSION['password']) else if (!empty($_SESSION['user_id']) && empty($_SESSION['password'])
@ -90,5 +93,15 @@ class http_authentication extends rcube_plugin
// We'll set it back on startup (#1486553) // We'll set it back on startup (#1486553)
rcmail::get_instance()->session->remove('password'); rcmail::get_instance()->session->remove('password');
} }
function login($args)
{
// Redirect to the previous QUERY_STRING
if($this->redirect_query){
header('Location: ./?' . $this->redirect_query);
exit;
}
return $args;
}
} }

Loading…
Cancel
Save