forked from viglesiasce/testlink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlostPassword.php
More file actions
executable file
·78 lines (71 loc) · 1.91 KB
/
lostPassword.php
File metadata and controls
executable file
·78 lines (71 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
/**
* TestLink Open Source Project - http://testlink.sourceforge.net/
* This script is distributed under the GNU General Public License 2 or later.
*
* Filename $RCSfile: lostPassword.php,v $
*
* @version $Revision: 1.39 $
* @modified $Date: 2009/09/28 08:40:21 $ $Author: franciscom $
*
**/
require_once('config.inc.php');
require_once('common.php');
require_once('users.inc.php');
require_once('email_api.php');
$templateCfg = templateConfiguration();
$args = init_args();
$gui = new stdClass();
$gui->external_password_mgmt = tlUser::isPasswordMgtExternal();
$gui->page_title = lang_get('page_title_lost_passwd');
$gui->note = lang_get('your_info_for_passwd');
$op = doDBConnect($db);
if ($op['status'] == 0)
{
$smarty = new TLSmarty();
$smarty->assign('title', lang_get('fatal_page_title'));
$smarty->assign('msg', $op['dbms_msg']);
$smarty->display('fatal_error.tpl');
exit();
}
if ($args->login != "" && !$gui->external_password_mgmt)
{
$userID = tlUser::doesUserExist($db,$args->login);
if (!$userID)
{
$gui->note = lang_get('bad_user');
}
else
{
$result = resetPassword($db,$userID,$gui->note);
if ($result >= tl::OK)
{
$user = new tlUser($userID);
if ($user->readFromDB($db) >= tl::OK)
{
logAuditEvent(TLS("audit_pwd_reset_requested",$user->login),"PWD_RESET",$userID,"users");
}
redirect(TL_BASE_HREF ."login.php?note=lost");
exit();
}
else if ($result == tlUser::E_EMAILLENGTH)
{
$gui->note = lang_get('mail_empty_address');
}
else if ($note != "")
{
$gui->note = getUserErrorMessage($result);
}
}
}
$smarty = new TLSmarty();
$smarty->assign('gui',$gui);
$smarty->display($templateCfg->default_template);
function init_args()
{
$iParams = array("login" => array(tlInputParameter::STRING_N,0,30));
$args = new stdClass();
P_PARAMS($iParams,$args);
return $args;
}
?>