You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
3.1 KiB
PHP
105 lines
3.1 KiB
PHP
<?php
|
|
/**
|
|
* Postfix Admin
|
|
*
|
|
* LICENSE
|
|
* This source file is subject to the GPL license that is bundled with
|
|
* this package in the file LICENSE.TXT.
|
|
*
|
|
* Further details on the project are available at :
|
|
* http://www.postfixadmin.com or http://postfixadmin.sf.net
|
|
*
|
|
* @version $Id$
|
|
* @license GNU GPL v2 or later.
|
|
*
|
|
* File: login.php
|
|
* Authenticates a user, and populates their $_SESSION as appropriate.
|
|
* Template File: login.tpl
|
|
*
|
|
* Template Variables:
|
|
*
|
|
* tMessage
|
|
*
|
|
* Form POST \ GET Variables:
|
|
*
|
|
* fUsername
|
|
* fPassword
|
|
* lang
|
|
*/
|
|
|
|
require_once('common.php');
|
|
|
|
# force user to delete setup.php (allows creation of superadmins!)
|
|
if($CONF['configured'] !== true) {
|
|
print "Installation not yet configured; please edit config.inc.php";
|
|
exit;
|
|
}
|
|
|
|
$smarty->assign ('language_selector', language_selector(), false);
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] == "GET")
|
|
{
|
|
$smarty->assign ('smarty_template', 'login');
|
|
$smarty->display ('index.tpl');
|
|
}
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] == "POST")
|
|
{
|
|
$fUsername = '';
|
|
$fPassword = '';
|
|
if (isset ($_POST['fUsername'])) $fUsername = escape_string ($_POST['fUsername']);
|
|
if (isset ($_POST['fPassword'])) $fPassword = escape_string ($_POST['fPassword']);
|
|
$lang = safepost('lang');
|
|
|
|
if ( $lang != check_language(0) ) { # only set cookie if language selection was changed
|
|
setcookie('lang', $lang, time() + 60*60*24*30); # language cookie, lifetime 30 days
|
|
# (language preference cookie is processed even if username and/or password are invalid)
|
|
}
|
|
|
|
$result = db_query ("SELECT password FROM $table_admin WHERE username='$fUsername' AND active='1'");
|
|
if ($result['rows'] == 1)
|
|
{
|
|
$row = db_array ($result['result']);
|
|
$password = pacrypt ($fPassword, $row['password']);
|
|
$result = db_query ("SELECT * FROM $table_admin WHERE username='$fUsername' AND password='$password' AND active='1'");
|
|
if ($result['rows'] != 1)
|
|
{
|
|
$error = 1;
|
|
$tMessage = '<span class="error_msg">' . $PALANG['pLogin_failed'] . '</span>';
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$error = 1;
|
|
$tMessage = '<span class="error_msg">' . $PALANG['pLogin_failed'] . '</span>';
|
|
}
|
|
|
|
if ($error != 1)
|
|
{
|
|
session_regenerate_id();
|
|
$_SESSION['sessid'] = array();
|
|
$_SESSION['sessid']['username'] = $fUsername;
|
|
$_SESSION['sessid']['roles'] = array();
|
|
$_SESSION['sessid']['roles'][] = 'admin';
|
|
|
|
// they've logged in, so see if they are a domain admin, as well.
|
|
$result = db_query ("SELECT * FROM $table_domain_admins WHERE username='$fUsername' AND domain='ALL' AND active='1'");
|
|
if ($result['rows'] == 1)
|
|
{
|
|
$_SESSION['sessid']['roles'][] = 'global-admin';
|
|
# header("Location: admin/list-admin.php");
|
|
# exit(0);
|
|
}
|
|
header("Location: main.php");
|
|
exit(0);
|
|
}
|
|
|
|
$smarty->assign ('tMessage', $tMessage, false);
|
|
|
|
$smarty->assign ('smarty_template', 'login');
|
|
$smarty->display ('index.tpl');
|
|
}
|
|
|
|
/* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */
|
|
?>
|