dolibarr 21.0.4
passwordforgotten.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2007-2011 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2008-2012 Regis Houssin <regis.houssin@inodbox.com>
4 * Copyright (C) 2008-2011 Juanjo Menent <jmenent@2byte.es>
5 * Copyright (C) 2014 Teddy Andreotti <125155@supinfo.com>
6 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
7 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 */
22
28define("NOLOGIN", 1); // This means this output page does not require to be logged.
29
30// Load Dolibarr environment
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';
35if (isModEnabled('ldap')) {
36 require_once DOL_DOCUMENT_ROOT.'/core/class/ldap.class.php';
37}
38
47// Load translation files required by page
48$langs->loadLangs(array('errors', 'users', 'companies', 'ldap', 'other'));
49
50// Security check
51if (getDolGlobalString('MAIN_SECURITY_DISABLEFORGETPASSLINK')) {
52 header("Location: ".DOL_URL_ROOT.'/');
53 exit;
54}
55
56$action = GETPOST('action', 'aZ09');
57$mode = $dolibarr_main_authentication;
58if (!$mode) {
59 $mode = 'http';
60}
61
62$username = GETPOST('username', 'alphanohtml');
63$passworduidhash = GETPOST('passworduidhash', 'alpha');
64$setnewpassword = GETPOST('setnewpassword', 'aZ09');
65
66$conf->entity = (GETPOSTINT('entity') ? GETPOSTINT('entity') : 1);
67
68// Instantiate hooks of thirdparty module only if not already define
69$hookmanager->initHooks(array('passwordforgottenpage'));
70
71
72if (GETPOST('dol_hide_leftmenu', 'alpha') || !empty($_SESSION['dol_hide_leftmenu'])) {
73 $conf->dol_hide_leftmenu = 1;
74}
75if (GETPOST('dol_hide_topmenu', 'alpha') || !empty($_SESSION['dol_hide_topmenu'])) {
76 $conf->dol_hide_topmenu = 1;
77}
78if (GETPOST('dol_optimize_smallscreen', 'alpha') || !empty($_SESSION['dol_optimize_smallscreen'])) {
79 $conf->dol_optimize_smallscreen = 1;
80}
81if (GETPOST('dol_no_mouse_hover', 'alpha') || !empty($_SESSION['dol_no_mouse_hover'])) {
82 $conf->dol_no_mouse_hover = 1;
83}
84if (GETPOST('dol_use_jmobile', 'alpha') || !empty($_SESSION['dol_use_jmobile'])) {
85 $conf->dol_use_jmobile = 1;
86}
87
88
89/*
90 * Actions
91 */
92
93$parameters = array('username' => $username);
94$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
95if ($reshook < 0) {
96 $message = $hookmanager->error;
97} else {
98 $message = '';
99}
100
101if (empty($reshook)) {
102 // Validate new password
103 if ($action == 'validatenewpassword' && $username && $passworduidhash) { // Test on permission not required here. Security is managed by $passworduihash
104 $edituser = new User($db);
105 $result = $edituser->fetch(0, $username, '', 0, $conf->entity);
106 if ($result < 0) {
107 $message = '<div class="error">'.dol_escape_htmltag($langs->trans("ErrorTechnicalError")).'</div>';
108 } else {
109 global $conf;
110
111 //print $edituser->pass_temp.'-'.$edituser->id.'-'.$conf->file->instance_unique_id.' '.$passworduidhash;
112 if ($edituser->pass_temp && dol_verifyHash($edituser->pass_temp.'-'.$edituser->id.'-'.$conf->file->instance_unique_id, $passworduidhash)) {
113 // Clear session
114 unset($_SESSION['dol_login']);
115 $_SESSION['dol_loginmesg'] = '<!-- warning -->'.$langs->transnoentitiesnoconv('NewPasswordValidated'); // Save message for the session page
116
117 $newpassword = $edituser->setPassword($user, $edituser->pass_temp, 0);
118 dol_syslog("passwordforgotten.php new password for user->id=".$edituser->id." validated in database");
119
120 header("Location: ".DOL_URL_ROOT.'/?username='.urlencode($edituser->login));
121 exit;
122 } else {
123 $langs->load("errors");
124 $message = '<div class="error">'.$langs->trans("ErrorFailedToValidatePasswordReset").'</div>';
125 }
126 }
127 }
128
129 // Action to set a temporary password and send email for reset
130 if ($action == 'buildnewpassword' && $username) { // Test on permission not required here. This action is done anonymously.
131 $sessionkey = 'dol_antispam_value';
132 $ok = (array_key_exists($sessionkey, $_SESSION) && (strtolower($_SESSION[$sessionkey]) == strtolower(GETPOST('code'))));
133
134 // Verify code
135 if (!$ok) {
136 dol_syslog('Bad value for code, password reset refused', LOG_NOTICE);
137
138 $message = '<div class="error">'.$langs->trans("ErrorBadValueForCode").'</div>';
139 } else {
140 $isanemail = preg_match('/@/', $username);
141
142 $edituser = new User($db);
143 $result = $edituser->fetch(0, $username, '', 1, $conf->entity);
144 if ($result == 0 && $isanemail) {
145 $result = $edituser->fetch(0, '', '', 1, $conf->entity, $username);
146 }
147
148 // If the user does not have the right to change his own password
149 if ($result > 0) {
150 $edituser->loadRights('user');
151 if (!$edituser->hasRight('user', 'self', 'password')) {
152 $result = 0;
153 $edituser->error = 'USERNOTALLOWEDTOCHANGEPASS';
154 }
155 }
156
157 // Set the message to show (must be the same if login/email exists or not to avoid to guess them.
158 $messagewarning = '<div class="warning paddingtopbottom'.(!getDolGlobalString('MAIN_LOGIN_BACKGROUND') ? '' : ' backgroundsemitransparent boxshadow').'">';
159 if (!$isanemail) {
160 $messagewarning .= $langs->trans("IfLoginExistPasswordRequestSent");
161 } else {
162 $messagewarning .= $langs->trans("IfEmailExistPasswordRequestSent");
163 }
164 $messagewarning .= '</div>';
165
166 if ($result <= 0 && ($edituser->error == 'USERNOTFOUND' || $edituser->error == 'USERNOTALLOWEDTOCHANGEPASS')) {
167 usleep(20000); // add delay to simulate setPassword() and send_password() actions delay (0.02s)
168 $message .= $messagewarning;
169 $username = '';
170 } else {
171 if (empty($edituser->email)) {
172 usleep(20000); // add delay to simulate setPassword() and send_password() actions delay (0.02s)
173 $message .= $messagewarning;
174 } else {
175 $newpassword = $edituser->setPassword($user, '', 1);
176 if (is_int($newpassword) && $newpassword < 0) {
177 // Technical failure
178 $message = '<div class="error">'.$langs->trans("ErrorFailedToChangePassword").'</div>';
179 } else {
180 // Success to set temporary password, send email
181 if ($edituser->send_password($user, $newpassword, 1) > 0) {
182 $message .= $messagewarning;
183 $username = '';
184 } else {
185 // Technical failure
186 $message .= '<div class="error">'.$edituser->error.'</div>';
187 }
188 }
189 }
190 }
191 }
192 }
193}
194
195
196/*
197 * View
198 */
199
200$dol_url_root = DOL_URL_ROOT;
201
202$appli = constant('DOL_APPLICATION_TITLE');
203$applicustom = getDolGlobalString('MAIN_APPLICATION_TITLE');
204if ($applicustom) {
205 $appli = (preg_match('/^\+/', $applicustom) ? $appli : '').$applicustom;
206} else {
207 $appli .= " ".DOL_VERSION;
208}
209
210// Title
211$title = $appli; // $title is used in .tpl file
212
213// Select templates dir
214$template_dir = '';
215if (!empty($conf->modules_parts['tpl'])) { // Using this feature slow down application
216 $dirtpls = array_merge($conf->modules_parts['tpl'], array('/core/tpl/'));
217 foreach ($dirtpls as $reldir) {
218 $tmp = dol_buildpath($reldir.'passwordforgotten.tpl.php');
219 if (file_exists($tmp)) {
220 $template_dir = preg_replace('/passwordforgotten\.tpl\.php$/', '', $tmp);
221 break;
222 }
223 }
224} elseif (file_exists(DOL_DOCUMENT_ROOT."/theme/".$conf->theme."/tpl/passwordforgotten.tpl.php")) {
225 $template_dir = DOL_DOCUMENT_ROOT."/theme/".$conf->theme."/tpl/";
226} else {
227 $template_dir = DOL_DOCUMENT_ROOT."/core/tpl/";
228}
229
230if (!$username) {
231 $focus_element = 'username';
232} else {
233 $focus_element = 'password';
234}
235
236// Show logo (search in order: small company logo, large company logo, theme logo, common logo)
237$width = 0;
238$rowspan = 2;
239$urllogo = DOL_URL_ROOT.'/theme/common/login_logo.png';
240if (!empty($mysoc->logo_small) && is_readable($conf->mycompany->dir_output.'/logos/thumbs/'.$mysoc->logo_small)) {
241 $urllogo = DOL_URL_ROOT.'/viewimage.php?cache=1&amp;modulepart=mycompany&amp;file='.urlencode('logos/thumbs/'.$mysoc->logo_small);
242} elseif (!empty($mysoc->logo_small) && is_readable($conf->mycompany->dir_output.'/logos/'.$mysoc->logo)) {
243 $urllogo = DOL_URL_ROOT.'/viewimage.php?cache=1&amp;modulepart=mycompany&amp;file='.urlencode('logos/'.$mysoc->logo);
244 $width = 128;
245} elseif (is_readable(DOL_DOCUMENT_ROOT.'/theme/'.$conf->theme.'/img/dolibarr_logo.svg')) {
246 $urllogo = DOL_URL_ROOT.'/theme/'.$conf->theme.'/img/dolibarr_logo.svg';
247} elseif (is_readable(DOL_DOCUMENT_ROOT.'/theme/dolibarr_logo.svg')) {
248 $urllogo = DOL_URL_ROOT.'/theme/dolibarr_logo.svg';
249}
250
251// Send password button enabled ?
252$disabled = 'disabled';
253if (preg_match('/dolibarr/i', $mode)) {
254 $disabled = '';
255}
256if (getDolGlobalString('MAIN_SECURITY_ENABLE_SENDPASSWORD')) {
257 $disabled = ''; // To force button enabled
258}
259
260// Security graphical code
261$captcha = '';
262if (!$disabled) {
263 $captcha = getDolGlobalString('MAIN_SECURITY_ENABLECAPTCHA_HANDLER', 'standard');
264}
265
266// Execute hook getPasswordForgottenPageOptions (for table)
267$parameters = array('entity' => GETPOSTINT('entity'));
268$hookmanager->executeHooks('getPasswordForgottenPageOptions', $parameters); // Note that $action and $object may have been modified by some hooks
269if (is_array($hookmanager->resArray) && !empty($hookmanager->resArray)) {
270 $morelogincontent = $hookmanager->resArray; // (deprecated) For compatibility
271} else {
272 $morelogincontent = $hookmanager->resPrint;
273}
274
275// Execute hook getPasswordForgottenPageExtraOptions (eg for js)
276$parameters = array('entity' => GETPOSTINT('entity'));
277$reshook = $hookmanager->executeHooks('getPasswordForgottenPageExtraOptions', $parameters); // Note that $action and $object may have been modified by some hooks.
278$moreloginextracontent = $hookmanager->resPrint;
279
280if (empty($setnewpassword)) {
281 include $template_dir.'passwordforgotten.tpl.php'; // To use native PHP
282} else {
283 include $template_dir.'passwordreset.tpl.php'; // To use native PHP
284}
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:66
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.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79
dol_verifyHash($chain, $hash, $type='0')
Compute a hash and compare it to the given one For backward compatibility reasons,...