forked from TestLinkOpenSourceTRMS/testlink-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lostPassword.php
89 lines (79 loc) · 2.13 KB
/
lostPassword.php
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
79
80
81
82
83
84
85
86
87
88
89
<?php
/**
* TestLink Open Source Project - http://testlink.sourceforge.net/
* This script is distributed under the GNU General Public License 2 or later.
*
* @internal revisions
* @since 1.9.4
* 20111120 - franciscom - TICKET 4813: doDBConnect() - user feedback improvements
**/
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 = 0;
$gui->page_title = lang_get('page_title_lost_passwd');
$gui->note = lang_get('your_info_for_passwd');
$gui->password_mgmt_feedback = '';
$op = doDBConnect($db,database::ONERROREXIT);
$userID = false;
if ($args->login != "")
{
$userID = tlUser::doesUserExist($db,$args->login);
if (!$userID)
{
$gui->note = lang_get('bad_user');
}
else
{
// need to know if auth method for user allows reset
$user = new tlUser(intval($userID));
$user->readFromDB($db);
if(tlUser::isPasswordMgtExternal($user->authentication,$user->authentication))
{
$gui->external_password_mgmt = 1;
$gui->password_mgmt_feedback = sprintf(lang_get('password_mgmt_feedback'),trim($args->login));
}
}
}
if(!$gui->external_password_mgmt && $userID)
{
echo __LINE__;
$result = resetPassword($db,$userID);
$gui->note = $result['msg'];
if ($result['status'] >= 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['status'] == tlUser::E_EMAILLENGTH)
{
$gui->note = lang_get('mail_empty_address');
}
else if ($note != "")
{
$gui->note = getUserErrorMessage($result['status']);
}
}
$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;
}
?>