31require
'../main.inc.php';
32require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/lib/usergroups.lib.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
36 require_once DOL_DOCUMENT_ROOT.
'/core/class/ldap.class.php';
50$langs->loadLangs(array(
'errors',
'users',
'companies',
'ldap',
'other'));
54 header(
"Location: ".DOL_URL_ROOT.
'/');
58$action =
GETPOST(
'action',
'aZ09');
59$mode = $dolibarr_main_authentication;
64$username =
GETPOST(
'username',
'alphanohtml');
65$passworduidhash =
GETPOST(
'passworduidhash',
'alpha');
66$setnewpassword =
GETPOST(
'setnewpassword',
'aZ09');
71$hookmanager->initHooks(array(
'passwordforgottenpage'));
74if (
GETPOST(
'dol_hide_leftmenu',
'alpha') || !empty($_SESSION[
'dol_hide_leftmenu'])) {
75 $conf->dol_hide_leftmenu = 1;
77if (
GETPOST(
'dol_hide_topmenu',
'alpha') || !empty($_SESSION[
'dol_hide_topmenu'])) {
78 $conf->dol_hide_topmenu = 1;
80if (
GETPOST(
'dol_optimize_smallscreen',
'alpha') || !empty($_SESSION[
'dol_optimize_smallscreen'])) {
81 $conf->dol_optimize_smallscreen = 1;
83if (
GETPOST(
'dol_no_mouse_hover',
'alpha') || !empty($_SESSION[
'dol_no_mouse_hover'])) {
84 $conf->dol_no_mouse_hover = 1;
86if (
GETPOST(
'dol_use_jmobile',
'alpha') || !empty($_SESSION[
'dol_use_jmobile'])) {
87 $conf->dol_use_jmobile = 1;
95$parameters = array(
'username' => $username);
96$reshook = $hookmanager->executeHooks(
'doActions', $parameters,
$object, $action);
98 $message = $hookmanager->error;
103if (empty($reshook)) {
105 if ($action ==
'validatenewpassword' && $username && $passworduidhash) {
107 $result = $edituser->fetch(0, $username,
'', 0,
$conf->entity);
109 $message =
'<div class="error">'.dol_escape_htmltag($langs->trans(
"ErrorTechnicalError")).
'</div>';
114 if ($edituser->pass_temp &&
dol_verifyHash($edituser->pass_temp.
'-'.$edituser->id.
'-'.
$conf->file->instance_unique_id, $passworduidhash)) {
116 unset($_SESSION[
'dol_login']);
117 $_SESSION[
'dol_loginmesg'] =
'<!-- warning -->'.$langs->transnoentitiesnoconv(
'NewPasswordValidated');
119 $newpassword = $edituser->setPassword($user, $edituser->pass_temp, 0);
120 dol_syslog(
"passwordforgotten.php new password for user->id=".$edituser->id.
" validated in database");
122 header(
"Location: ".DOL_URL_ROOT.
'/?username='.urlencode($edituser->login));
125 $langs->load(
"errors");
126 $message =
'<div class="error">'.$langs->trans(
"ErrorFailedToValidatePasswordReset").
'</div>';
132 if ($action ==
'buildnewpassword' && $username) {
133 $sessionkey =
'dol_antispam_value';
134 $ok = (array_key_exists($sessionkey, $_SESSION) && (strtolower($_SESSION[$sessionkey]) == strtolower(
GETPOST(
'code'))));
138 dol_syslog(
'Bad value for code, password reset refused', LOG_NOTICE);
140 $message =
'<div class="error">'.$langs->trans(
"ErrorBadValueForCode").
'</div>';
142 $isanemail = preg_match(
'/@/', $username);
145 $result = $edituser->fetch(0, $username,
'', 1,
$conf->entity);
146 if ($result == 0 && $isanemail) {
147 $result = $edituser->fetch(0,
'',
'', 1,
$conf->entity, $username);
152 $edituser->loadRights(
'user');
153 if (!$edituser->hasRight(
'user',
'self',
'password')) {
155 $edituser->error =
'USERNOTALLOWEDTOCHANGEPASS';
160 $messagewarning =
'<div class="warning paddingtopbottom'.(!
getDolGlobalString(
'MAIN_LOGIN_BACKGROUND') ?
'' :
' backgroundsemitransparent boxshadow').
'">';
162 $messagewarning .= $langs->trans(
"IfLoginExistPasswordRequestSent");
164 $messagewarning .= $langs->trans(
"IfEmailExistPasswordRequestSent");
166 $messagewarning .=
'</div>';
168 if ($result <= 0 && ($edituser->error ==
'USERNOTFOUND' || $edituser->error ==
'USERNOTALLOWEDTOCHANGEPASS')) {
170 $message .= $messagewarning;
173 if (empty($edituser->email)) {
175 $message .= $messagewarning;
177 $newpassword = $edituser->setPassword($user,
'', 1);
178 if (is_int($newpassword) && $newpassword < 0) {
180 $message =
'<div class="error">'.$langs->trans(
"ErrorFailedToChangePassword").
'</div>';
183 if ($edituser->send_password($user, $newpassword, 1) > 0) {
184 $message .= $messagewarning;
188 $message .=
'<div class="error">'.$edituser->error.
'</div>';
202$dol_url_root = DOL_URL_ROOT;
204$appli = constant(
'DOL_APPLICATION_TITLE');
207 $appli = (preg_match(
'/^\+/', $applicustom) ? $appli :
'').$applicustom;
209 $appli .=
" ".DOL_VERSION;
217if (!empty(
$conf->modules_parts[
'tpl'])) {
218 $dirtpls = array_merge(
$conf->modules_parts[
'tpl'], array(
'/core/tpl/'));
219 foreach ($dirtpls as $reldir) {
221 if (file_exists($tmp)) {
222 $template_dir = preg_replace(
'/passwordforgotten\.tpl\.php$/',
'', $tmp);
226} elseif (file_exists(DOL_DOCUMENT_ROOT.
"/theme/".
$conf->theme.
"/tpl/passwordforgotten.tpl.php")) {
227 $template_dir = DOL_DOCUMENT_ROOT.
"/theme/".
$conf->theme.
"/tpl/";
229 $template_dir = DOL_DOCUMENT_ROOT.
"/core/tpl/";
233 $focus_element =
'username';
235 $focus_element =
'password';
241$urllogo = DOL_URL_ROOT.
'/theme/common/login_logo.png';
242if (!empty(
$mysoc->logo_small) && is_readable(
$conf->mycompany->dir_output.
'/logos/thumbs/'.
$mysoc->logo_small)) {
243 $urllogo = DOL_URL_ROOT.
'/viewimage.php?cache=1&modulepart=mycompany&file='.urlencode(
'logos/thumbs/'.
$mysoc->logo_small);
244} elseif (!empty(
$mysoc->logo_small) && is_readable(
$conf->mycompany->dir_output.
'/logos/'.
$mysoc->logo)) {
245 $urllogo = DOL_URL_ROOT.
'/viewimage.php?cache=1&modulepart=mycompany&file='.urlencode(
'logos/'.
$mysoc->logo);
247} elseif (is_readable(DOL_DOCUMENT_ROOT.
'/theme/'.
$conf->theme.
'/img/dolibarr_logo.svg')) {
248 $urllogo = DOL_URL_ROOT.
'/theme/'.
$conf->theme.
'/img/dolibarr_logo.svg';
249} elseif (is_readable(DOL_DOCUMENT_ROOT.
'/theme/dolibarr_logo.svg')) {
250 $urllogo = DOL_URL_ROOT.
'/theme/dolibarr_logo.svg';
254$disabled =
'disabled';
255if (preg_match(
'/dolibarr/i', $mode)) {
269$parameters = array(
'entity' =>
GETPOSTINT(
'entity'));
270$hookmanager->executeHooks(
'getPasswordForgottenPageOptions', $parameters);
271if (is_array($hookmanager->resArray) && !empty($hookmanager->resArray)) {
272 $morelogincontent = $hookmanager->resArray;
274 $morelogincontent = $hookmanager->resPrint;
278$parameters = array(
'entity' =>
GETPOSTINT(
'entity'));
279$reshook = $hookmanager->executeHooks(
'getPasswordForgottenPageExtraOptions', $parameters);
280$moreloginextracontent = $hookmanager->resPrint;
282if (empty($setnewpassword)) {
283 include $template_dir.
'passwordforgotten.tpl.php';
285 include $template_dir.
'passwordreset.tpl.php';
if(! $sortfield) if(! $sortorder) $object
Class to manage Dolibarr users.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_verifyHash($chain, $hash, $type='0')
Compute a hash and compare it to the given one For backward compatibility reasons,...