blob: 47712cd69b84c3cb1a313181b9fcb4a1e9e3c418 [file] [log] [blame]
matheusfillipeabd513e2021-05-11 03:29:11 -03001<?php
2require_once 'vendor/autoload.php';
Matheus Fillipe301684b2021-05-14 09:09:43 +03003include 'config.php';
matheusfillipeabd513e2021-05-11 03:29:11 -03004include_once 'redis.php';
5include_once 'utils.php';
Matheus Fillipe301684b2021-05-14 09:09:43 +03006include_once 'mail.php';
7include_once 'ldap.php';
Marc Kupietz87a14312023-03-09 20:39:31 +01008include_once 'db_backend.php';
Matheus Fillipe301684b2021-05-14 09:09:43 +03009include_once 'validators.php';
Marc Kupietzd871d882023-03-05 18:34:16 +010010include_once 'User.php';
Marc Kupietzce676312023-03-10 08:29:41 +010011include_once 'invoice.php';
Marc Kupietzd871d882023-03-05 18:34:16 +010012require __DIR__ . '/vendor/autoload.php';
13use Monolog\Level;
14use Monolog\Logger as Logger;
15use Monolog\Handler\StreamHandler;
16use Monolog\Handler\RotatingFileHandler;
17use \User as User;
Marc Kupietz87a14312023-03-09 20:39:31 +010018use \DB as DB;
Marc Kupietz3f6a5982023-03-06 07:04:59 +010019include $TEMPLATE . "strings.php";
Marc Kupietzd871d882023-03-05 18:34:16 +010020$log = new Logger('signup');
21$log->pushHandler(new RotatingFileHandler(__DIR__ . '/logs/signup.log', 0, Logger::DEBUG));
matheusfillipeabd513e2021-05-11 03:29:11 -030022
23if (!$DEBUG) error_reporting(0);
matheusfillipec0ce7fa2021-05-13 05:15:37 -030024else error_reporting(1);
matheusfillipeabd513e2021-05-11 03:29:11 -030025session_start();
26
matheusfillipeabd513e2021-05-11 03:29:11 -030027use Gregwar\Captcha\PhraseBuilder;
28
matheusfillipec0ce7fa2021-05-13 05:15:37 -030029$URI = array_slice(explode("/", explode('?', $_SERVER['REQUEST_URI'], 2)[0]), -1)[0];
matheusfillipef43dd962021-05-13 23:27:01 -030030if (strlen($URI) == 2) {
matheusfillipec0ce7fa2021-05-13 05:15:37 -030031 $GLOBALS["cc"] = $URI;
32 $_SESSION["cc"] = $URI;
33}
34
matheusfillipef43dd962021-05-13 23:27:01 -030035if (isset($_GET["lang"])) {
matheusfillipec0ce7fa2021-05-13 05:15:37 -030036 $GLOBALS["cc"] = $_GET["lang"];
37 $_SESSION["cc"] = $_GET["lang"];
38}
39
40$TEMPLATE = template_path();
41
42
Marc Kupietz3f6a5982023-03-06 07:04:59 +010043function send_welcome_email(User $user)
44{
45 global $SMTP, $SERVICE_ACRONYM, $WELCOME_TEMPLATE, $TEMPLATE;
46 $TEMPLATE = template_path();
47 include $TEMPLATE . "email.php";
48 $url = "";
49
50 send_mail($user->email, $SMTP, (object) [
51 "subject" => $WELCOME_TEMPLATE->subject,
52 "text" => replace_all_user_variables($WELCOME_TEMPLATE->text, $user, $url),
53 "html" => replace_all_user_variables($WELCOME_TEMPLATE->html, $user, $url)
Marc Kupietzce676312023-03-10 08:29:41 +010054 ], $user);
Marc Kupietz3f6a5982023-03-06 07:04:59 +010055}
56
Marc Kupietz0375b7e2023-03-04 18:13:26 +010057function send_confirmation_email(string $mail, object $smtp, string $url, User $user)
matheusfillipef43dd962021-05-13 23:27:01 -030058{
matheusfillipeabd513e2021-05-11 03:29:11 -030059 include 'config.php';
matheusfillipef43dd962021-05-13 23:27:01 -030060 $TEMPLATE = template_path();
Matheus Fillipe301684b2021-05-14 09:09:43 +030061 include $TEMPLATE . "email.php";
matheusfillipef43dd962021-05-13 23:27:01 -030062
63 send_mail($mail, $smtp, (object) [
64 "subject" => $MAIL_TEMPLATE->subject,
Marc Kupietz0375b7e2023-03-04 18:13:26 +010065 "text" => replace_all_user_variables($MAIL_TEMPLATE->text, $user, $url),
66 "html" => replace_all_user_variables($MAIL_TEMPLATE->html, $user, $url)
matheusfillipef43dd962021-05-13 23:27:01 -030067 ]);
68}
69
70function send_recovery_email(string $mail, object $smtp, string $url)
71{
72 include 'config.php';
matheusfillipef43dd962021-05-13 23:27:01 -030073 $TEMPLATE = template_path();
Matheus Fillipe301684b2021-05-14 09:09:43 +030074 include $TEMPLATE . "email.php";
matheusfillipef43dd962021-05-13 23:27:01 -030075
76 send_mail($mail, $smtp, (object) [
77 "subject" => $RECOVERY_EMAIL_TEMPLATE->subject,
78 "text" => str_replace("{{url}}", $url, $RECOVERY_EMAIL_TEMPLATE->text),
79 "html" => str_replace("{{url}}", $url, $RECOVERY_EMAIL_TEMPLATE->html)
80 ]);
81}
82
83function reload_captcha_script()
84{
85 include 'config.php';
Marc Kupietz3f6a5982023-03-06 07:04:59 +010086
87 if ($CAPTCHA_LENGTH > 0) {
88 $TEMPLATE = template_path();
89 include $TEMPLATE . "strings.php";
90 echo '
91 <script>
92 const reload_captcha = async (e) => {
93 var cont = document.getElementById("reload_captcha");
94 cont.innerHTML = "<div class=\'spinner-border text-info\' role=\'status\'><span class=\'sr-only\'>' . $STRINGS->reloading_captcha . '</span></div>";
95 var img = document.getElementById("captcha")
96 var url = "' . $BASE_URL . '/captcha.php?token=' . $_SESSION["captcha_token"] . '"
97 await fetch(url, { cache: "reload", mode: "no-cors" })
98 .then(() => {
99 img.src = url+"&t=" + new Date().getTime();
100 setTimeout( () => {
101 cont.innerHTML = "<button id=\'reload\' class=\'btn btn-outline-info\' type=\'button\'> <span class=\'glyphicon glyphicon-refresh\' aria-hidden=\'true\'></span></button>";
102 bindButton()
103 }, 500);
104 })
105 }
106 function bindButton(){
107 var button = document.getElementById("reload");
108 button.addEventListener("click", reload_captcha)
109 }
110 bindButton()
111 </script>
112 ';
113 }
matheusfillipeabd513e2021-05-11 03:29:11 -0300114}
115
matheusfillipef43dd962021-05-13 23:27:01 -0300116function register_page($error = false)
117{
118 $TEMPLATE = template_path();
119 include 'config.php';
120 if ($error)
121 include $TEMPLATE . 'error.htm';
122 $_SESSION["captcha_token"] = generateRandomString(12);
123 include $TEMPLATE . "register.htm";
124 reload_captcha_script();
125}
matheusfillipeabd513e2021-05-11 03:29:11 -0300126
matheusfillipef43dd962021-05-13 23:27:01 -0300127
Marc Kupietzd871d882023-03-05 18:34:16 +0100128function verify_request(User $user)
matheusfillipef43dd962021-05-13 23:27:01 -0300129{
Marc Kupietz87a14312023-03-09 20:39:31 +0100130 global $log, $CONFERENCE_REGISTRATION, $CAPTCHA_LENGTH;
131
matheusfillipec0ce7fa2021-05-13 05:15:37 -0300132 $TEMPLATE = template_path();
matheusfillipeabd513e2021-05-11 03:29:11 -0300133 unset($_SESSION['captcha_token']);
matheusfillipef43dd962021-05-13 23:27:01 -0300134 include $TEMPLATE . 'strings.php';
matheusfillipeabd513e2021-05-11 03:29:11 -0300135 $password = $_POST["password"];
matheusfillipe47cf90b2021-05-13 03:36:21 -0300136 $error = "";
137
Marc Kupietz87a14312023-03-09 20:39:31 +0100138 if (!$CONFERENCE_REGISTRATION) {
139 $error .= validate_username($user->username);
140 $error .= validate_password($password);
141 }
142 $log->debug("validating request");
Marc Kupietz3417c882023-03-07 12:03:21 +0100143 $error .= validate_name($user->first_name, $FIRST_NAME_VALIDATION_ERROR);
matheusfillipe47cf90b2021-05-13 03:36:21 -0300144 $error .= validate_name($user->last_name, $LAST_NAME_VALIDATION_ERROR);
Marc Kupietz87a14312023-03-09 20:39:31 +0100145 $log->debug("request validated: $error");
matheusfillipe47cf90b2021-05-13 03:36:21 -0300146 $error .= validate_email($user->email);
matheusfillipe47cf90b2021-05-13 03:36:21 -0300147
matheusfillipeabd513e2021-05-11 03:29:11 -0300148
Marc Kupietzd2dfa002023-03-04 14:59:16 +0100149 if ($CAPTCHA_LENGTH > 0 && !(isset($_SESSION['captcha']) && PhraseBuilder::comparePhrases($_SESSION['captcha'], $_POST['captcha']))) {
matheusfillipef43dd962021-05-13 23:27:01 -0300150 $error = $error . $STRINGS->wrong_captcha;
matheusfillipeabd513e2021-05-11 03:29:11 -0300151 }
152 unset($_SESSION["captcha"]);
matheusfillipef43dd962021-05-13 23:27:01 -0300153
matheusfillipeabd513e2021-05-11 03:29:11 -0300154 return $error;
155}
156
Marc Kupietz0375b7e2023-03-04 18:13:26 +0100157
Marc Kupietzd871d882023-03-05 18:34:16 +0100158function approve_request(User $user)
matheusfillipef43dd962021-05-13 23:27:01 -0300159{
Matheus Fillipe301684b2021-05-14 09:09:43 +0300160 include 'config.php';
Marc Kupietz76121272023-03-07 13:05:23 +0100161 global $log, $_SESSION;
Marc Kupietzd871d882023-03-05 18:34:16 +0100162
matheusfillipec0ce7fa2021-05-13 05:15:37 -0300163 $token = generateRandomString();
matheusfillipeabd513e2021-05-11 03:29:11 -0300164 redis_set($token, $user, $MAIL_CONFIRMATION_AWAIT_DELAY);
165 $pending = redis_get("pending");
matheusfillipef43dd962021-05-13 23:27:01 -0300166 if ($pending) {
matheusfillipeabd513e2021-05-11 03:29:11 -0300167 $maillist = $pending->mails;
Marc Kupietz87a14312023-03-09 20:39:31 +0100168 if(is_array($maillist))
169 array_push($maillist, $user->email);
matheusfillipef43dd962021-05-13 23:27:01 -0300170 } else
matheusfillipeabd513e2021-05-11 03:29:11 -0300171 $maillist = [$user->email];
matheusfillipef43dd962021-05-13 23:27:01 -0300172 redis_set("pending", (object)["mails" => $maillist], $MAIL_CONFIRMATION_AWAIT_DELAY);
matheusfillipeabd513e2021-05-11 03:29:11 -0300173
matheusfillipef43dd962021-05-13 23:27:01 -0300174 $url = $BASE_URL . "?type=confirmation&token=" . $token;
matheusfillipeabd513e2021-05-11 03:29:11 -0300175 if (in_array(explode("@", $user->email)[1], $MAIL_HOST_DIRECT_FALLBACK))
176 $smtp = $FALLBACK_SMTP;
177 else
178 $smtp = $SMTP;
Marc Kupietz0375b7e2023-03-04 18:13:26 +0100179 send_confirmation_email($user->email, $smtp, $url, $user);
matheusfillipeabd513e2021-05-11 03:29:11 -0300180 $_SESSION['resend'] = generateRandomString(12);
181 $_SESSION['token'] = $token;
Marc Kupietz3417c882023-03-07 12:03:21 +0100182 $user->backup_in_session();
matheusfillipec0ce7fa2021-05-13 05:15:37 -0300183 $TEMPLATE = template_path();
matheusfillipef43dd962021-05-13 23:27:01 -0300184 include $TEMPLATE . "confirm_your_email.htm";
Marc Kupietz3417c882023-03-07 12:03:21 +0100185 $log->info("Registration process started for " . $user->to_string());
matheusfillipeabd513e2021-05-11 03:29:11 -0300186}
187
Matheus Fillipe301684b2021-05-14 09:09:43 +0300188function recover_form($error = null)
189{
190 $TEMPLATE = template_path();
191 include 'config.php';
192 $_SESSION["captcha_token"] = generateRandomString(12);
193 if ($error)
194 include $TEMPLATE . 'error.htm';
195 include $TEMPLATE . "recover_email_form.htm";
196 reload_captcha_script();
197}
198
199function new_password_form($error = null)
200{
201 $TEMPLATE = template_path();
202 if ($error)
203 include $TEMPLATE . 'error.htm';
204 include $TEMPLATE . "recover_new_password_form.htm";
205}
206
matheusfillipeabd513e2021-05-11 03:29:11 -0300207
208// PAGE
matheusfillipef43dd962021-05-13 23:27:01 -0300209include $TEMPLATE . "header.htm";
matheusfillipeabd513e2021-05-11 03:29:11 -0300210
211if ($_SERVER["REQUEST_METHOD"] == "POST") {
matheusfillipeabd513e2021-05-11 03:29:11 -0300212 if (isset($_POST['type'])) {
213 switch ($_POST['type']) {
214 case "register":
Marc Kupietz3417c882023-03-07 12:03:21 +0100215 $log->info("Registration request from " . array_to_string($_POST));
216 $user = new User();
217 $user->init_from_array($_POST);
218 $log->info("Registration request from " . $user->to_string());
matheusfillipef43dd962021-05-13 23:27:01 -0300219 if (redis_inc_ipdata(getClientIP(), "register", true) > $HOURLY_REGISTRATIONS) {
220 include $TEMPLATE . "registration_limit.htm";
221 } else {
matheusfillipeabd513e2021-05-11 03:29:11 -0300222 $error = verify_request($user);
223 if ($error)
224 register_page($error);
225 else
226 approve_request($user);
227 }
228 break;
matheusfillipe47cf90b2021-05-13 03:36:21 -0300229 case "recover":
Marc Kupietz87a14312023-03-09 20:39:31 +0100230 if ($CONFERENCE_REGISTRATION)
231 break;
matheusfillipef43dd962021-05-13 23:27:01 -0300232 $TEMPLATE = template_path();
233 unset($_SESSION['captcha_token']);
234 include $TEMPLATE . 'strings.php';
235
236 $email = $_POST["email"];
Marc Kupietz87a14312023-03-09 20:39:31 +0100237 if (($CONFERENCE_REGISTRATION & ! (new DB($log))->mail_count($email)) || !ldap_mail_count($email)) {
Matheus Fillipe301684b2021-05-14 09:09:43 +0300238 unset($_POST['email']);
matheusfillipef43dd962021-05-13 23:27:01 -0300239 $error = $error . $STRINGS->recover_email_not_registered;
240 }
241
Marc Kupietzd2dfa002023-03-04 14:59:16 +0100242 if ($CAPTCHA_LENGTH > 0 && !(isset($_SESSION['captcha']) && PhraseBuilder::comparePhrases($_SESSION['captcha'], $_POST['captcha']))) {
matheusfillipef43dd962021-05-13 23:27:01 -0300243 $error = $error . $STRINGS->wrong_captcha;
244 }
245
246 unset($_SESSION["captcha"]);
247 if (redis_inc_ipdata(getClientIP(), "register", true) > $HOURLY_REGISTRATIONS) {
248 include $TEMPLATE . "registration_limit.htm";
249 } else {
250 if ($error) {
Matheus Fillipe301684b2021-05-14 09:09:43 +0300251 recover_form($error);
matheusfillipef43dd962021-05-13 23:27:01 -0300252 } else {
253 include $TEMPLATE . 'strings.php';
254 $token = generateRandomString();
255 redis_set($token, $email, $MAIL_CONFIRMATION_AWAIT_DELAY);
256
257 $url = $BASE_URL . "?type=password_change&token=" . $token;
258 if (in_array(explode("@", $email)[1], $MAIL_HOST_DIRECT_FALLBACK))
259 $smtp = $FALLBACK_SMTP;
260 else
261 $smtp = $SMTP;
matheusfillipef43dd962021-05-13 23:27:01 -0300262 $_SESSION['resend'] = generateRandomString(12);
263 $_SESSION['token'] = $token;
264 $_SESSION['email'] = $email;
265 $_SESSION['recover'] = $email;
266 $TEMPLATE = template_path();
matheusfillipef43dd962021-05-13 23:27:01 -0300267 send_recovery_email($email, $smtp, $url);
Matheus Fillipe301684b2021-05-14 09:09:43 +0300268 include $TEMPLATE . "confirm_your_email.htm";
Marc Kupietzd871d882023-03-05 18:34:16 +0100269 $log->info("Password recovery email sent to " . $email);
matheusfillipef43dd962021-05-13 23:27:01 -0300270 }
271 }
matheusfillipe47cf90b2021-05-13 03:36:21 -0300272 break;
matheusfillipef43dd962021-05-13 23:27:01 -0300273
274 case "password_change":
Marc Kupietz87a14312023-03-09 20:39:31 +0100275 if ($CONFERENCE_REGISTRATION)
276 break;
matheusfillipef43dd962021-05-13 23:27:01 -0300277 $password = $_POST['password'];
278 $error = validate_password($password);
279 if ($error) {
Matheus Fillipe301684b2021-05-14 09:09:43 +0300280 new_password_form($error);
281 } else {
282 $TEMPLATE = template_path();
matheusfillipef43dd962021-05-13 23:27:01 -0300283 include $TEMPLATE . "recover_success.htm";
284 include $TEMPLATE . "email.php";
matheusfillipef43dd962021-05-13 23:27:01 -0300285 $email = $_SESSION["email_change"];
286 if (change_password($email, $password)) {
287 if (in_array(explode("@", $email)[1], $MAIL_HOST_DIRECT_FALLBACK))
288 $smtp = $FALLBACK_SMTP;
289 else
290 $smtp = $SMTP;
291 send_mail($email, $smtp, $PASSWORD_CHANGED_EMAIL_TEMPLATE);
Marc Kupietzd871d882023-03-05 18:34:16 +0100292 $log->info("Password changed for " . $email);
Matheus Fillipe301684b2021-05-14 09:09:43 +0300293 } else {
matheusfillipef43dd962021-05-13 23:27:01 -0300294 include $TEMPLATE . "strings.php";
295 echo $STRINGS->change_password_ldap_error;
296 }
Matheus Fillipe301684b2021-05-14 09:09:43 +0300297 unset($_SESSION["email_change"]);
298 redis_delete($_SESSION['token']);
matheusfillipef43dd962021-05-13 23:27:01 -0300299 }
300 break;
Matheus Fillipe301684b2021-05-14 09:09:43 +0300301 }
matheusfillipeabd513e2021-05-11 03:29:11 -0300302 }
303} elseif (isset($_GET['type'])) {
304 switch ($_GET['type']) {
305 case "confirmation":
matheusfillipef43dd962021-05-13 23:27:01 -0300306 if (!isset($_GET["token"])) {
matheusfillipe47cf90b2021-05-13 03:36:21 -0300307 echo $RUNTIME_ERROR->user_trying_invalid_get;
matheusfillipef43dd962021-05-13 23:27:01 -0300308 } else {
matheusfillipeabd513e2021-05-11 03:29:11 -0300309 $token = $_GET["token"];
Marc Kupietzd871d882023-03-05 18:34:16 +0100310 $user = redis_get_user($token);
matheusfillipef43dd962021-05-13 23:27:01 -0300311 if ($user && gettype($user) == "object") {
Marc Kupietz87a14312023-03-09 20:39:31 +0100312 if (($CONFERENCE_REGISTRATION && (new DB($log))->add_user($user)) || (!$CONFERENCE_REGISTRATION && ldap_add_user($user))) {
matheusfillipeabd513e2021-05-11 03:29:11 -0300313 if ($REDIRECT_TO)
matheusfillipef43dd962021-05-13 23:27:01 -0300314 header("refresh:5;url=" . $REDIRECT_TO);
matheusfillipeabd513e2021-05-11 03:29:11 -0300315
316 $pending = redis_get("pending");
matheusfillipef43dd962021-05-13 23:27:01 -0300317 if ($pending) {
matheusfillipeabd513e2021-05-11 03:29:11 -0300318 $maillist = $pending->mails;
Marc Kupietzce676312023-03-10 08:29:41 +0100319 if (is_array($maillist) && in_array($user->email, $maillist)) {
matheusfillipeabd513e2021-05-11 03:29:11 -0300320 unset($maillist[array_search($user->email, $maillist)]);
matheusfillipef43dd962021-05-13 23:27:01 -0300321 redis_set("pending", (object)["mails" => $maillist], $MAIL_CONFIRMATION_AWAIT_DELAY);
matheusfillipeabd513e2021-05-11 03:29:11 -0300322 }
323 }
324 redis_inc_ipdata(getClientIP(), "register");
Marc Kupietz87a14312023-03-09 20:39:31 +0100325 $log->info("User registration completed: " . $user->to_string());
matheusfillipe47cf90b2021-05-13 03:36:21 -0300326 echo $STRINGS->email_confirmation;
Matheus Fillipe5ad0cd52022-05-05 06:10:41 +0300327 if (isset($POST_REGISTER_HOOK)) $POST_REGISTER_HOOK($user);
matheusfillipef43dd962021-05-13 23:27:01 -0300328 include $TEMPLATE . "mail_confirmed.htm";
329 } else {
Marc Kupietz3417c882023-03-07 12:03:21 +0100330 $log->error("User registration failed for: " . $user->to_string());
matheusfillipe47cf90b2021-05-13 03:36:21 -0300331 echo $STRINGS->email_confirmation;
matheusfillipef43dd962021-05-13 23:27:01 -0300332 include $TEMPLATE . "registration_error.htm";
matheusfillipeabd513e2021-05-11 03:29:11 -0300333 }
334 redis_delete($token);
matheusfillipef43dd962021-05-13 23:27:01 -0300335 } else {
336 include $TEMPLATE . "token_expired.htm";
matheusfillipeabd513e2021-05-11 03:29:11 -0300337 }
338 }
339 break;
340 case "resend":
matheusfillipef43dd962021-05-13 23:27:01 -0300341 if (isset($_GET['token']) && isset($_SESSION['resend']) && $_GET['token'] == $_SESSION['resend']) {
Marc Kupietz76121272023-03-07 13:05:23 +0100342 $log->info("Resending confirmation email to " . $_SESSION['email']);
343 $user = new User();
344 $user->init_from_array($_SESSION);
345 $log->info("Resending confirmation email to " . $user->to_string());
matheusfillipeabd513e2021-05-11 03:29:11 -0300346 $token = $_SESSION['token'];
matheusfillipef43dd962021-05-13 23:27:01 -0300347 $url = $BASE_URL . "?type=confirmation&token=" . $token;
matheusfillipeabd513e2021-05-11 03:29:11 -0300348 $smtp = $FALLBACK_SMTP;
matheusfillipef43dd962021-05-13 23:27:01 -0300349 $address = $_SESSION["email"];
Matheus Fillipe301684b2021-05-14 09:09:43 +0300350 if (isset($_SESSION['recover'])) {
matheusfillipef43dd962021-05-13 23:27:01 -0300351 $url = $BASE_URL . "?type=password_change&token=" . $token;
Marc Kupietz0375b7e2023-03-04 18:13:26 +0100352 send_recovery_email($address, $smtp, $url, $user);
matheusfillipef43dd962021-05-13 23:27:01 -0300353 unset($_SESSION['recover']);
Matheus Fillipe301684b2021-05-14 09:09:43 +0300354 } else
Marc Kupietz0375b7e2023-03-04 18:13:26 +0100355 send_confirmation_email($address, $smtp, $url, $user);
Marc Kupietz76121272023-03-07 13:05:23 +0100356 echo "<div class='alert alert-info' role='alert'> Another email has been sent to ". $_SESSION['email']. " </div>";
matheusfillipeabd513e2021-05-11 03:29:11 -0300357 unset($_SESSION['resend']);
358 unset($_SESSION['token']);
Marc Kupietz0375b7e2023-03-04 18:13:26 +0100359 # unset($_SESSION['email']);
360 } else {
Marc Kupietz76121272023-03-07 13:05:23 +0100361 echo "<div class='alert alert-warning' role='alert'>A second email has already been sent.</div>";
matheusfillipeabd513e2021-05-11 03:29:11 -0300362 }
363 break;
matheusfillipef43dd962021-05-13 23:27:01 -0300364
matheusfillipe47cf90b2021-05-13 03:36:21 -0300365 case "recover":
Matheus Fillipe301684b2021-05-14 09:09:43 +0300366 recover_form();
matheusfillipe47cf90b2021-05-13 03:36:21 -0300367 break;
matheusfillipef43dd962021-05-13 23:27:01 -0300368
369 case "password_change":
370 $TEMPLATE = template_path();
matheusfillipef43dd962021-05-13 23:27:01 -0300371 $token = $_GET["token"];
372 $email = redis_get($token);
373 $_SESSION["email_change"] = $email;
Matheus Fillipe301684b2021-05-14 09:09:43 +0300374 $_SESSION["token"] = $token;
375 if ($email && gettype($email) == "string") {
376 new_password_form();
matheusfillipef43dd962021-05-13 23:27:01 -0300377 } else {
378 include $TEMPLATE . "token_expired.htm";
379 }
matheusfillipe47cf90b2021-05-13 03:36:21 -0300380 break;
matheusfillipeabd513e2021-05-11 03:29:11 -0300381 }
matheusfillipeabd513e2021-05-11 03:29:11 -0300382} else {
383 unset($_SESSION['captcha_token']);
384 register_page();
385}
386
matheusfillipef43dd962021-05-13 23:27:01 -0300387include $TEMPLATE . "bottom.htm";