forked from anuko/timetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpassword_reset.php
More file actions
119 lines (105 loc) · 4.39 KB
/
password_reset.php
File metadata and controls
119 lines (105 loc) · 4.39 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?php
// +----------------------------------------------------------------------+
// | Anuko Time Tracker
// +----------------------------------------------------------------------+
// | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
// +----------------------------------------------------------------------+
// | LIBERAL FREEWARE LICENSE: This source code document may be used
// | by anyone for any purpose, and freely redistributed alone or in
// | combination with other software, provided that the license is obeyed.
// |
// | There are only two ways to violate the license:
// |
// | 1. To redistribute this code in source form, with the copyright
// | notice or license removed or altered. (Distributing in compiled
// | forms without embedded copyright notices is permitted).
// |
// | 2. To redistribute modified versions of this code in *any* form
// | that bears insufficient indications that the modifications are
// | not the work of the original author(s).
// |
// | This license applies to this document only, not any other software
// | that it may be combined with.
// |
// +----------------------------------------------------------------------+
// | Contributors:
// | https://www.anuko.com/time_tracker/credits.htm
// +----------------------------------------------------------------------+
require_once('initialize.php');
import('form.Form');
import('ttUser');
import('ttUserHelper');
if ($auth->isPasswordExternal()) {
header('Location: login.php');
exit();
}
$cl_login = $request->getParameter('login');
$form = new Form('resetPasswordForm');
$form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'login','style'=>'width: 300px;','value'=>$cl_login));
$form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->get('button.reset_password')));
if ($request->isPost()) {
// Validate user input.
if (!ttValidString($cl_login)) $err->add($i18n->get('error.field'), $i18n->get('label.login'));
if ($err->no()) {
if (!ttUserHelper::getUserByLogin($cl_login)) {
// User with a specified login was not found.
// In this case, if login looks like email, try finding user by email.
if (ttValidEmail($cl_login)) {
$login = ttUserHelper::getUserByEmail($cl_login);
if ($login)
$cl_login = $login;
else
$err->add($i18n->get('error.no_login'));
} else
$err->add($i18n->get('error.no_login'));
}
}
if ($err->no()) {
$user = new ttUser($cl_login); // Note: reusing $user from initialize.php here.
// Prepare and save a temporary reference for user.
$temp_ref = md5(uniqid());
ttUserHelper::saveTmpRef($temp_ref, $user->id);
$user_i18n = null;
if ($user->lang != $i18n->lang) {
$user_i18n = new I18n();
$user_i18n->load($user->lang);
} else
$user_i18n = &$i18n;
// Where do we email to?
$receiver = null;
if ($user->email)
$receiver = $user->email;
else {
if (ttValidEmail($cl_login))
$receiver = $cl_login;
else
$err->add($i18n->get('error.no_email'));
}
if ($receiver) {
import('mail.Mailer');
$sender = new Mailer();
$sender->setCharSet(CHARSET);
$sender->setSender(SENDER);
$sender->setReceiver("$receiver");
if ((!empty($_SERVER['HTTPS']) && ($_SERVER['HTTPS'] !== 'off')) || ($_SERVER['SERVER_PORT'] == 443))
$secure_connection = true;
if($secure_connection)
$http = 'https';
else
$http = 'http';
$cl_subject = $user_i18n->get('form.reset_password.email_subject');
if (APP_NAME)
$pass_edit_url = $http.'://'.$_SERVER['HTTP_HOST'].'/'.APP_NAME.'/password_change.php?ref='.$temp_ref;
else
$pass_edit_url = $http.'://'.$_SERVER['HTTP_HOST'].'/password_change.php?ref='.$temp_ref;
$sender->setMailMode(MAIL_MODE);
$res = $sender->send($cl_subject, sprintf($user_i18n->get('form.reset_password.email_body'), $_SERVER['REMOTE_ADDR'], $pass_edit_url));
$smarty->assign('result_message', $res ? $i18n->get('form.reset_password.message') : $i18n->get('error.mail_send'));
}
}
} // isPost
$smarty->assign('forms', array($form->getName()=>$form->toArray()));
$smarty->assign('onload', 'onLoad="document.resetPasswordForm.login.focus()"');
$smarty->assign('title', $i18n->get('title.reset_password'));
$smarty->assign('content_page_name', 'password_reset.tpl');
$smarty->display('index.tpl');