mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-13 04:51:25 +01:00
308 lines
9.9 KiB
PHP
308 lines
9.9 KiB
PHP
<?php
|
|
/* Copyright (C) 2007 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/**
|
|
\file htdocs/user/passwordforgotten.php
|
|
\brief Page demande nouveau mot de passe
|
|
\version $Id$
|
|
*/
|
|
|
|
// This is to make Dolibarr working with Plesk
|
|
set_include_path($_SERVER['DOCUMENT_ROOT'].'/htdocs');
|
|
|
|
require("../master.inc.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/contact.class.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/lib/ldap.class.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/lib/usergroups.lib.php");
|
|
|
|
// Init session
|
|
$sessionname="DOLSESSID_".$dolibarr_main_db_name;
|
|
session_name($sessionname);
|
|
session_start();
|
|
dolibarr_syslog("Session name=".$sessionname." Session id()=".session_id().", _SESSION['dol_login']=".$_SESSION["dol_login"]);
|
|
|
|
$user->getrights('user');
|
|
|
|
$langs->load("main");
|
|
$langs->load("other");
|
|
$langs->load("users");
|
|
$langs->load("companies");
|
|
$langs->load("ldap");
|
|
|
|
$action=isset($_GET["action"])?$_GET["action"]:$_POST["action"];
|
|
$mode=$dolibarr_main_authentication;
|
|
if (! $mode) $mode='http';
|
|
|
|
if ($conf->global->MAIN_SECURITY_DISABLEFORGETPASSLINK)
|
|
accessforbidden();
|
|
|
|
|
|
/**
|
|
* Actions
|
|
*/
|
|
|
|
// Action modif mot de passe
|
|
if ($_GET["action"] == 'validatenewpassword' && $_GET["username"] && $_GET["passwordmd5"])
|
|
{
|
|
$edituser = new User($db);
|
|
$result=$edituser->fetch($_GET["username"]);
|
|
if ($result < 0)
|
|
{
|
|
$message = '<div class="error">'.$langs->trans("ErrorLoginDoesNotExists",$_GET["username"]).'</div>';
|
|
}
|
|
else
|
|
{
|
|
if (md5($edituser->pass_temp) == $_GET["passwordmd5"])
|
|
{
|
|
$newpassword=$edituser->setPassword($user,$edituser->pass_temp,0);
|
|
dolibarr_syslog("passwordforgotten.php new password for user->id=".$edituser->id." validated in database");
|
|
//session_start();
|
|
//$_SESSION["loginmesg"]=$langs->trans("PasswordChanged");
|
|
header("Location: ".DOL_URL_ROOT.'/');
|
|
exit;
|
|
}
|
|
else
|
|
{
|
|
$message = '<div class="error">'.$langs->trans("ErrorFailedToValidatePassword").'</div>';
|
|
}
|
|
}
|
|
}
|
|
// Action modif mot de passe
|
|
if ($_POST["action"] == 'buildnewpassword' && $_POST["username"])
|
|
{
|
|
require_once DOL_DOCUMENT_ROOT.'/../external-libs/Artichow/Artichow.cfg.php';
|
|
require_once ARTICHOW."/AntiSpam.class.php";
|
|
|
|
// On créé l'objet anti-spam
|
|
$object = new AntiSpam();
|
|
|
|
// Verifie code
|
|
if (! $object->check('dol_antispam_value',$_POST['code'],true))
|
|
{
|
|
$message = '<div class="error">'.$langs->trans("ErrorBadValueForCode").'</div>';
|
|
}
|
|
else
|
|
{
|
|
$edituser = new User($db);
|
|
$result=$edituser->fetch($_POST["username"]);
|
|
if ($result <= 0 && $edituser->error == 'USERNOTFOUND')
|
|
{
|
|
$message = '<div class="error">'.$langs->trans("ErrorLoginDoesNotExists",$_POST["username"]).'</div>';
|
|
$_POST["username"]='';
|
|
}
|
|
else
|
|
{
|
|
if (! $edituser->email)
|
|
{
|
|
$message = '<div class="error">'.$langs->trans("ErrorLoginHasNoEmail").'</div>';
|
|
}
|
|
else
|
|
{
|
|
$newpassword=$edituser->setPassword($user,'',1);
|
|
if ($newpassword < 0)
|
|
{
|
|
// Echec
|
|
$message = '<div class="error">'.$langs->trans("ErrorFailedToChangePassword").'</div>';
|
|
}
|
|
else
|
|
{
|
|
// Succes
|
|
if ($edituser->send_password($user,$newpassword,1) > 0)
|
|
{
|
|
$message = '<div class="ok">'.$langs->trans("PasswordChangeRequestSent",$edituser->login,$edituser->email).'</div>';
|
|
//$message.=$newpassword;
|
|
$_POST["username"]='';
|
|
}
|
|
else
|
|
{
|
|
//$message = '<div class="ok">'.$langs->trans("PasswordChangedTo",$newpassword).'</div>';
|
|
$message.= '<div class="error">'.$edituser->error.'</div>';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
* Affichage page
|
|
*/
|
|
|
|
$conf->css = "theme/".$conf->theme."/".$conf->theme.".css";
|
|
// Si feuille de style en php existe
|
|
if (file_exists(DOL_DOCUMENT_ROOT.'/'.$conf->css.".php")) $conf->css.=".php";
|
|
|
|
header('Cache-Control: Public, must-revalidate');
|
|
|
|
print '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">'."\n";
|
|
|
|
// En tete html
|
|
print "<html>\n";
|
|
print "<head>\n";
|
|
print '<meta name="robots" content="noindex,nofollow">'."\n"; // Evite indexation par robots
|
|
print "<title>Dolibarr Authentification</title>\n";
|
|
print '<link rel="stylesheet" type="text/css" href="'.DOL_URL_ROOT.'/'.$conf->css.'">'."\n";
|
|
print '<style type="text/css">'."\n";
|
|
print '<!--'."\n";
|
|
print '#login {';
|
|
print ' margin-top: 70px;';
|
|
print ' margin-bottom: 30px;';
|
|
print ' text-align: center;';
|
|
print ' font: 12px arial,helvetica;';
|
|
print '}'."\n";
|
|
print '#login table {';
|
|
print ' border: 1px solid #C0C0C0;';
|
|
if (file_exists(DOL_DOCUMENT_ROOT.'/theme/'.$conf->theme.'/img/login_background.png'))
|
|
{
|
|
print 'background: #F0F0F0 url('.DOL_URL_ROOT.'/theme/'.$conf->theme.'/img/login_background.png) repeat-x;';
|
|
}
|
|
else
|
|
{
|
|
print 'background: #F0F0F0 url('.DOL_URL_ROOT.'/theme/login_background.png) repeat-x;';
|
|
}
|
|
print 'font-size: 12px;';
|
|
print '}'."\n";
|
|
print '-->'."\n";
|
|
print '</style>'."\n";
|
|
print '<script language="javascript" type="text/javascript">'."\n";
|
|
print "function donnefocus() {\n";
|
|
if (! $_REQUEST["username"]) print "document.getElementById('username').focus();\n";
|
|
else print "document.getElementById('password').focus();\n";
|
|
print "}\n";
|
|
print '</script>'."\n";
|
|
print '</head>'."\n";
|
|
|
|
// Body
|
|
print '<body class="body" onload="donnefocus();">'."\n";
|
|
|
|
// Form
|
|
print '<form id="login" action="'.$_SERVER["PHP_SELF"].'" method="post" name="login">'."\n";
|
|
print '<input type="hidden" name="action" value="buildnewpassword">'."\n";
|
|
|
|
// Table 1
|
|
print '<table cellpadding="0" cellspacing="0" border="0" align="center" width="450">'."\n";
|
|
if (file_exists(DOL_DOCUMENT_ROOT.'/logo.png'))
|
|
{
|
|
print '<tr><td colspan="3" style="text-align:center;">';
|
|
print '<img src="/logo.png"></td></tr>'."\n";
|
|
}
|
|
else
|
|
{
|
|
print '<tr class="vmenu"><td align="center">Dolibarr '.DOL_VERSION.'</td></tr>'."\n";
|
|
}
|
|
print '</table>'."\n";
|
|
print '<br>'."\n";
|
|
|
|
// Send password button enabled ?
|
|
$disabled='disabled';
|
|
if ($mode == 'dolibarr' || $mode == 'dolibarr_mdb2') $disabled='';
|
|
if ($conf->global->MAIN_SECURITY_ENABLE_SENDPASSWORD) $disabled=''; // To force button enabled
|
|
|
|
// Table 2
|
|
print '<table cellpadding="2" align="center" width="450">'."\n";
|
|
|
|
print '<tr><td colspan="3"> </td></tr>'."\n";
|
|
|
|
print '<tr>';
|
|
print '<td align="left" valign="bottom"><br> <b>'.$langs->trans("Login").'</b> </td>';
|
|
print '<td valign="bottom"><input id="username" type="text" '.$disabled.' name="username" class="flat" size="15" maxlength="25" value="'.(isset($_POST["username"])?$_POST["username"]:'').'" tabindex="1" /></td>';
|
|
|
|
$title='';
|
|
$title.=$langs->trans("SessionName").': '.session_name();
|
|
if ($conf->main_authentication) $title.=", ".$langs->trans("AuthenticationMode").': '.$conf->main_authentication;
|
|
|
|
// Show logo (search in order: small company logo, large company logo, theme logo, common logo)
|
|
$width=0;
|
|
$urllogo=DOL_URL_ROOT.'/theme/login_logo.png';
|
|
if (is_readable($conf->societe->dir_logos.'/thumbs/'.$mysoc->logo_small))
|
|
{
|
|
$urllogo=DOL_URL_ROOT.'/viewimage.php?modulepart=companylogo&file='.urlencode('/thumbs/'.$mysoc->logo_small);
|
|
}
|
|
elseif (is_readable($conf->societe->dir_logos.'/'.$mysoc->logo))
|
|
{
|
|
$urllogo=DOL_URL_ROOT.'/viewimage.php?modulepart=companylogo&file='.urlencode($mysoc->logo);
|
|
$width=96;
|
|
}
|
|
elseif (is_readable(DOL_DOCUMENT_ROOT.'/theme/'.$conf->theme.'/img/login_logo.png'))
|
|
{
|
|
$urllogo=DOL_URL_ROOT.'/theme/'.$conf->theme.'/img/login_logo.png';
|
|
}
|
|
print '<td rowspan="2" align="center"><img title="'.$title.'" src="'.$urllogo.'"';
|
|
if ($width) print ' width="'.$width.'"';
|
|
print '></td>';
|
|
print '</tr>'."\n";
|
|
|
|
|
|
if (function_exists("imagecreatefrompng") && ! $disabled)
|
|
{
|
|
//print "Info session: ".session_name().session_id();print_r($_SESSION);
|
|
print '<tr><td align="left" valign="middle" nowrap="nowrap"> <b>'.$langs->trans("SecurityCode").'</b></td>';
|
|
print '<td valign="top" nowrap="nowrap" align="left" class="e">';
|
|
|
|
print '<table><tr>';
|
|
print '<td><input id="securitycode" class="flat" type="text" size="6" maxlength="5" name="code" tabindex="2"></td>';
|
|
print '<td><img src="'.DOL_URL_ROOT.'/lib/antispamimage.php" border="0" width="128" height="36"></td>';
|
|
print '<td><a href="'.$_SERVER["PHP_SELF"].'">'.img_refresh().'</a></td>';
|
|
print '</tr></table>';
|
|
|
|
print '</td>';
|
|
print '</tr>';
|
|
}
|
|
|
|
print '<tr><td colspan="3"> </td></tr>'."\n";
|
|
|
|
print '<tr><td colspan="3" style="text-align:center;"><br>';
|
|
print '<input id="password" type="submit" '.$disabled.' class="button" name="password" value="'.$langs->trans("SendNewPassword").'" tabindex="4">';
|
|
print '</td></tr>'."\n";
|
|
|
|
print "</table>"."\n";
|
|
|
|
print "</form>"."\n";
|
|
|
|
print '<center>'."\n";
|
|
print '<table width="90%"><tr><td align="center">';
|
|
if (($mode == 'dolibarr' || $mode == 'dolibarr_mdb2') || (! $disabled))
|
|
{
|
|
print '<font style="font-size: 14px;">'.$langs->trans("SendNewPasswordDesc").'</font>'."\n";
|
|
}
|
|
else
|
|
{
|
|
print '<div class="warning" align="center">'.$langs->trans("AuthenticationDoesNotAllowSendNewPassword",$mode).'</div>'."\n";
|
|
}
|
|
print '</td></tr></table><br>';
|
|
|
|
if ($message)
|
|
{
|
|
print '<table width="90%"><tr><td align="center">';
|
|
print $message.'</td></tr></table><br>';
|
|
}
|
|
|
|
print '<br>'."\n";
|
|
print '<a href="'.DOL_URL_ROOT.'/">'.$langs->trans("BackToLoginPage").'</a>';
|
|
print '</center>'."\n";
|
|
|
|
print "<br>";
|
|
print "<br>";
|
|
|
|
|
|
// Fin entete html
|
|
print "\n</body>\n</html>";
|
|
?>
|