mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Login: Add settings to style Reset Password (and related) text links, add (disabled) settings to display domain name field. Theme: Add settings to control login box border size, color, radius and padding. Explicitly defined placeholder text color/opacity (where possible).
274 lines
11 KiB
PHP
274 lines
11 KiB
PHP
<?php
|
|
/*
|
|
FusionPBX
|
|
Version: MPL 1.1
|
|
|
|
The contents of this file are subject to the Mozilla Public License Version
|
|
1.1 (the "License"); you may not use this file except in compliance with
|
|
the License. You may obtain a copy of the License at
|
|
http://www.mozilla.org/MPL/
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
for the specific language governing rights and limitations under the
|
|
License.
|
|
|
|
The Original Code is FusionPBX
|
|
|
|
The Initial Developer of the Original Code is
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
Portions created by the Initial Developer are Copyright (C) 2008-2012
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
Contributor(s):
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
*/
|
|
|
|
//add multi-lingual support
|
|
$language = new text;
|
|
$text = $language->get(null,'core/user_settings');
|
|
|
|
//get action, if any
|
|
if (isset($_REQUEST['action'])) {
|
|
$action = check_str($_REQUEST['action']);
|
|
}
|
|
|
|
//retrieve parse reset key
|
|
if ($action == 'define') {
|
|
$key = $_GET['key'];
|
|
$key_part = explode('|', decrypt($_SESSION['login']['password_reset_key']['text'], $key));
|
|
$username = $key_part[0];
|
|
$domain_uuid = $key_part[1];
|
|
$password_submitted = $key_part[2];
|
|
//get current salt, see if same as submitted salt
|
|
$sql = "select password from v_users where domain_uuid = '".$domain_uuid."' and username = '".$username."'";
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
$prep_statement->execute();
|
|
$result = $prep_statement->fetch(PDO::FETCH_NAMED);
|
|
$password_current = $result['password'];
|
|
unset($prep_statement, $result);
|
|
|
|
//set flag
|
|
$password_reset = ($username != '' && $domain_uuid == $_SESSION['domain_uuid'] && $password_submitted == $password_current) ? true : false;
|
|
}
|
|
|
|
//send password reset link
|
|
if ($action == 'request') {
|
|
if (valid_email($_REQUEST['email'])) {
|
|
$_SESSION["message_delay"] = 2500;
|
|
|
|
$email = check_str($_REQUEST['email']);
|
|
//see if email exists
|
|
$sql = "select ";
|
|
$sql .= "u.username, ";
|
|
$sql .= "u.password ";
|
|
$sql .= "from ";
|
|
$sql .= "v_users as u, ";
|
|
$sql .= "v_contact_emails as e ";
|
|
$sql .= "where ";
|
|
$sql .= "e.domain_uuid = u.domain_uuid ";
|
|
$sql .= "and e.contact_uuid = u.contact_uuid ";
|
|
$sql .= "and e.email_address = '".$email."' ";
|
|
$sql .= "and e.domain_uuid = '".$_SESSION['domain_uuid']."' ";
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
$prep_statement->execute();
|
|
$result = $prep_statement->fetch(PDO::FETCH_NAMED);
|
|
unset($prep_statement);
|
|
|
|
if ($result['username'] != '') {
|
|
//generate reset link
|
|
$key = encrypt($_SESSION['login']['password_reset_key']['text'], $result['username'].'|'.$_SESSION['domain_uuid'].'|'.$result['password']);
|
|
$reset_link = "https://".$_SESSION['domain_name'].PROJECT_PATH."/login.php?action=define&key=".urlencode($key);
|
|
$eml_body = "<a href='".$reset_link."' class='login_link'>".$reset_link."</a>";
|
|
//send reset link
|
|
if (!send_email($email, $text['label-reset_link'], $eml_body)) {
|
|
$_SESSION["message_mood"] = 'negative';
|
|
$_SESSION["message"] = $eml_error;
|
|
}
|
|
else {
|
|
$_SESSION["message"] = $text['message-reset_link_sent'];
|
|
}
|
|
}
|
|
else {
|
|
//not found
|
|
$_SESSION["message_mood"] = 'negative';
|
|
$_SESSION["message"] = $text['message-invalid_email'];
|
|
}
|
|
|
|
}
|
|
else {
|
|
//not found
|
|
$_SESSION["message_mood"] = 'negative';
|
|
$_SESSION["message"] = $text['message-invalid_email'];
|
|
}
|
|
}
|
|
|
|
//reset password
|
|
if ($action == 'reset') {
|
|
$authorized_username = check_str($_REQUEST['au']);
|
|
$username = check_str($_REQUEST['username']);
|
|
$password_new = check_str($_REQUEST['password_new']);
|
|
$password_repeat = check_str($_REQUEST['password_repeat']);
|
|
|
|
if ($username != '' &&
|
|
$authorized_username == md5($_SESSION['login']['password_reset_key']['text'].$username) &&
|
|
$password_new != '' &&
|
|
$password_repeat != '' &&
|
|
$password_new == $password_repeat
|
|
) {
|
|
$salt = generate_password('20', '4');
|
|
$sql = "update v_users set ";
|
|
$sql .= "password = '".md5($salt.$password_new)."', ";
|
|
$sql .= "salt = '".$salt."' ";
|
|
$sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' ";
|
|
$sql .= "and username = '".$username."' ";
|
|
$db->exec(check_sql($sql));
|
|
|
|
$_SESSION["message"] = $text['message-password_reset'];
|
|
$password_reset = false;
|
|
}
|
|
else {
|
|
//not found
|
|
$_SESSION["message_mood"] = 'negative';
|
|
$_SESSION["message"] = $text['message-invalid_username_mismatch_passwords'];
|
|
$password_reset = true;
|
|
}
|
|
}
|
|
|
|
//get the http values and set as variables
|
|
$path = check_str($_GET["path"]);
|
|
$msg = check_str($_GET["msg"]);
|
|
|
|
//set a default login destination
|
|
if (strlen($_SESSION['login']['destination']['url']) == 0) {
|
|
$_SESSION['login']['destination']['url'] = PROJECT_PATH."/core/user_settings/user_dashboard.php";
|
|
}
|
|
|
|
//add the header
|
|
include "resources/header.php";
|
|
|
|
//show the message
|
|
if (strlen($msg) > 0) {
|
|
echo "<br><br>";
|
|
echo "<div align='center'>\n";
|
|
echo "<table width='50%'>\n";
|
|
echo "<tr>\n";
|
|
echo "<th align='left'>Message</th>\n";
|
|
echo "</tr>\n";
|
|
echo "<tr>\n";
|
|
echo "<td class='row_style1'>\n";
|
|
switch ($msg) {
|
|
case "username required":
|
|
echo "<strong>Please provide a username.</strong>";
|
|
break;
|
|
case "incorrect account information":
|
|
echo "<strong>The username or password was incorrect. Please try again.</strong>";
|
|
break;
|
|
case "install complete":
|
|
echo "<br />\n";
|
|
echo "Installation is complete. <br />";
|
|
echo "<br /> ";
|
|
echo "<strong>Getting Started:</strong><br /> ";
|
|
echo "<ul><li>There are two levels of admins 1. superadmin 2. admin.<br />";
|
|
echo "<br />\n";
|
|
echo "username: <strong>superadmin</strong> <br />password: <strong>fusionpbx</strong> <br />\n";
|
|
echo "<br />\n";
|
|
echo "username: <strong>admin</strong> <br />password: <strong>fusionpbx</strong> <br/><br/>\n";
|
|
echo "</li>\n";
|
|
echo "<li>\n";
|
|
echo "The database connection settings have been saved to ".$_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/resources/config.php.<br />\n";
|
|
echo "</li>\n";
|
|
echo "</ul>\n";
|
|
echo "<strong>\n";
|
|
break;
|
|
}
|
|
echo "</td>\n";
|
|
echo "</tr>\n";
|
|
echo "</table>\n";
|
|
echo "</div>\n";
|
|
echo "<br /><br />\n\n";
|
|
}
|
|
|
|
//show the content
|
|
echo "<script>";
|
|
echo " var speed = 350;";
|
|
echo " function toggle_password_reset(hide_id, show_id, focus_id) {";
|
|
echo " if (focus_id == undefined) { focus_id = ''; }";
|
|
echo " $('#'+hide_id).slideToggle(speed, function() {";
|
|
echo " $('#'+show_id).slideToggle(speed, function() {";
|
|
echo " if (focus_id != '') {";
|
|
echo " $('#'+focus_id).focus();";
|
|
echo " }";
|
|
echo " });";
|
|
echo " });";
|
|
echo " }";
|
|
echo "</script>";
|
|
|
|
echo "<br />\n";
|
|
|
|
if (!$password_reset) {
|
|
|
|
echo "<div id='login_form'>\n";
|
|
echo "<form name='login' method='post' action='".$_SESSION['login']['destination']['url']."'>\n";
|
|
echo "<input type='hidden' name='path' value='".$path."'>\n";
|
|
echo "<input type='text' class='formfld' style='text-align: center; min-width: 200px; width: 200px; margin-bottom: 8px;' name='username' id='username' placeholder=\"".$text['label-username']."\"><br />\n";
|
|
echo "<input type='password' class='formfld' style='text-align: center; min-width: 200px; width: 200px; margin-bottom: 8px;' name='password' placeholder=\"".$text['label-password']."\"><br />\n";
|
|
if ($_SESSION['login']['domain_name_visible']['boolean'] == "true") {
|
|
if (count($_SESSION['login']['domain_name']) > 0) {
|
|
echo "<select name='domain_name' class='formfld' style='color: #999999; width: 200px; text-align: center; text-align-last: center; margin-bottom: 8px;' onclick=\"this.style.color='#000000';\" onchange=\"this.style.color='#000000';\">\n";
|
|
echo " <option value='' disabled selected hidden>".$text['label-domain']."</option>\n";
|
|
sort($_SESSION['login']['domain_name']);
|
|
foreach ($_SESSION['login']['domain_name'] as &$row) {
|
|
echo " <option value='$row'>$row</option>\n";
|
|
}
|
|
echo "</select><br />\n";
|
|
}
|
|
else {
|
|
echo "<input type='text' name='domain_name' class='formfld' style='text-align: center; min-width: 200px; width: 200px; margin-bottom: 8px;' placeholder=\"".$text['label-domain']."\"><br />\n";
|
|
}
|
|
}
|
|
echo "<input type='submit' class='btn' style='width: 100px; margin-top: 15px;' value='".$text['button-login']."'>\n";
|
|
if (
|
|
function_exists('mcrypt_encrypt') &&
|
|
$_SESSION['login']['password_reset_key']['text'] != '' &&
|
|
$_SESSION['email']['smtp_host']['var'] != ''
|
|
) {
|
|
echo "<br><br><a class='login_link' onclick=\"toggle_password_reset('login_form','request_form','email');\">".$text['label-reset_password']."</a>";
|
|
}
|
|
echo "</form>";
|
|
echo "<script>document.getElementById('username').focus();</script>";
|
|
echo "</div>";
|
|
|
|
echo "<div id='request_form' style='display: none;'>\n";
|
|
echo "<form name='request' method='post' action=''>\n";
|
|
echo "<input type='hidden' name='action' value='request'>\n";
|
|
echo "<input type='text' class='formfld' style='text-align: center; min-width: 200px; width: 200px; margin-bottom: 8px;' name='email' id='email' placeholder=\"".$text['label-email_address']."\"><br />\n";
|
|
echo "<input type='submit' class='btn' style='width: 100px; margin-top: 15px;' value='".$text['button-reset']."'>\n";
|
|
echo "<br><br><a class='login_link' onclick=\"toggle_password_reset('request_form','login_form','username');\">".$text['label-cancel']."</a>";
|
|
echo "</form>";
|
|
echo "</div>";
|
|
|
|
}
|
|
else {
|
|
|
|
echo "<span id='reset_form'>\n";
|
|
echo "<form name='reset' method='post' action=''>\n";
|
|
echo "<input type='hidden' name='action' value='reset'>\n";
|
|
echo "<input type='hidden' name='au' value='".md5($_SESSION['login']['password_reset_key']['text'].$username)."'>\n";
|
|
echo "<input type='text' class='formfld' style='text-align: center; min-width: 200px; width: 200px; margin-bottom: 8px;' name='username' id='username' placeholder=\"".$text['label-username']."\"><br />\n";
|
|
echo "<input type='password' class='formfld' style='text-align: center; min-width: 200px; width: 200px; margin-bottom: 8px;' name='password_new' autocomplete='off' placeholder=\"".$text['label-new_password']."\"><br />\n";
|
|
echo "<input type='password' class='formfld' style='text-align: center; min-width: 200px; width: 200px; margin-bottom: 8px;' name='password_repeat' autocomplete='off' placeholder=\"".$text['label-repeat_password']."\"><br />\n";
|
|
echo "<input type='submit' class='btn' style='width: 100px; margin-top: 15px;' value='".$text['button-save']."'>\n";
|
|
echo "<br><br><a class='login_link' onclick=\"document.location.href='login.php';\">".$text['label-cancel']."</a>";
|
|
echo "</form>";
|
|
echo "<script>document.getElementById('username').focus();</script>";
|
|
echo "</span>";
|
|
|
|
}
|
|
|
|
//add the footer
|
|
$default_login = true;
|
|
include "resources/footer.php";
|
|
|
|
?>
|