forked from booruguru/UserPie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resend-activation.php
205 lines (164 loc) · 4.94 KB
/
resend-activation.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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<?php
/*
UserPie Version: 1.0
http://userpie.com
*/
require_once("models/config.php");
//Prevent the user visiting the lost password page if he/she is already logged in
if(isUserLoggedIn()) { header("Location: account.php"); die(); }
?>
<?php
/*
Below process a new activation link for a user, as they first activation email may have never arrived.
*/
$errors = array();
$success_message = "";
//Forms posted
//----------------------------------------------------------------------------------------------
if(!empty($_POST) && $emailActivation)
{
$email = $_POST["email"];
$username = $_POST["username"];
//Perform some validation
//Feel free to edit / change as required
if(trim($email) == "")
{
$errors[] = lang("ACCOUNT_SPECIFY_EMAIL");
}
//Check to ensure email is in the correct format / in the db
else if(!isValidemail($email) || !emailExists($email))
{
$errors[] = lang("ACCOUNT_INVALID_EMAIL");
}
if(trim($username) == "")
{
$errors[] = lang("ACCOUNT_SPECIFY_USERNAME");
}
else if(!usernameExists($username))
{
$errors[] = lang("ACCOUNT_INVALID_USERNAME");
}
if(count($errors) == 0)
{
//Check that the username / email are associated to the same account
if(!emailusernameLinked($email,$username))
{
$errors[] = lang("ACCOUNT_USER_OR_EMAIL_INVALID");
}
else
{
$userdetails = fetchUserDetails($username);
//See if the user's account is activation
if($userdetails["active"]==1)
{
$errors[] = lang("ACCOUNT_ALREADY_ACTIVE");
}
else
{
$hours_diff = round((time()-$userdetails["last_activation_request"]) / (3600*$resend_activation_threshold),0);
if($resend_activation_threshold!=0 && $hours_diff <= $resend_activation_threshold)
{
$errors[] = lang("ACCOUNT_LINK_ALREADY_SENT",array($resend_activation_threshold));
}
else
{
//For security create a new activation url;
$new_activation_token = generateactivationtoken();
if(!updatelast_activation_request($new_activation_token,$username,$email))
{
$errors[] = lang("SQL_ERROR");
}
else
{
$mail = new userPieMail();
$activation_url = $websiteUrl."activate-account.php?token=".$new_activation_token;
//Setup our custom hooks
$hooks = array(
"searchStrs" => array("#ACTIVATION-URL","#USERNAME#"),
"subjectStrs" => array($activation_url,$userdetails["username"])
);
if(!$mail->newTemplateMsg("resend-activation.txt",$hooks))
{
$errors[] = lang("MAIL_TEMPLATE_BUILD_ERROR");
}
else
{
if(!$mail->sendMail($userdetails["email"],"Activate your UserPie Account"))
{
$errors[] = lang("MAIL_ERROR");
}
else
{
//Success, user details have been updated in the db now mail this information out.
$success_message = lang("ACCOUNT_NEW_ACTIVATION_SENT");
}
}
}
}
}
}
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Resend Activation email | <?php echo $websiteName; ?> </title>
<?php require_once("head_inc.php"); ?>
</head>
<body>
<div class="modal-ish">
<div class="modal-header">
<h2>Resend Activation E-mail</h2>
</div>
<div class="modal-body">
<?php
if(!empty($_POST) || !empty($_GET["confirm"]) || !empty($_GET["deny"]) && $emailActivation)
{
if(count($errors) > 0)
{
?>
<div id="errors">
<?php errorBlock($errors); ?>
</div>
<?
}
else
{
?>
<div id="success">
<p><?php echo $success_message; ?></p>
</div>
<?
}
}
?>
<?php
if(!$emailActivation)
{
echo lang("FEATURE_DISABLED");
}
else
{
?>
<form name="resendActivation" action="<?php echo $_SERVER['PHP_SELF'] ?>" method="post">
<p>
<label>username:</label>
<input type="text" name="username" />
</p>
<p>
<label>email:</label>
<input type="text" name="email" />
</p>
<p><input type="submit" class="btn btn-primary btn-large" name="activate" id="newfeedform" value="Resend" /></p>
</form>
<? } ?>
</div>
</div>
</form>
</div>
<div class="clear"></div>
<p style="margin-top:30px; text-align:center;"><a href="register.php">Register</a> / <a href="login.php">Login</a> / <a href="forgot-password.php">Forgot Password?</a> / <a href="<?php echo $websiteUrl; ?>">Home Page</a></p>
</body>
</html>