1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
<?php
/**
* $Horde: horde/scripts/cookie_login.php,v 1.2.2.6 2009/01/06 15:26:19 jan Exp $
*
* Copyright 2005-2009 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Jan Schneider <jan@horde.org>
*/
@define('AUTH_HANDLER', true);
@define('HORDE_BASE', dirname(__FILE__) . '/..');
require_once HORDE_BASE . '/lib/base.php';
$auth = &Auth::singleton($conf['auth']['driver']);
// Check for COOKIE auth.
if (empty($_COOKIE['user']) || empty($_COOKIE['password']) ||
!$auth->authenticate($_COOKIE['user'], array('password' => $_COOKIE['password']))) {
header('Location: ' . Horde::applicationUrl('login.php?logout_reason=' . AUTH_REASON_BADLOGIN, true));
exit;
}
$url = Util::getFormData('url');
if (empty($url)) {
$url = Horde::applicationUrl('index.php', true);
}
header('Location: ' . $url);
|