93 lines
3.9 KiB
PHP
93 lines
3.9 KiB
PHP
<?php
|
|
require_once("config.php");
|
|
require_once("mail_templates.php");
|
|
require_once("database.php");
|
|
|
|
$sql = "SELECT id, first_name, last_name, username, email, state, note, verify_token, admin_token FROM registrations "
|
|
."WHERE state = ". RegisterState::PendingEmailSend
|
|
. " OR state = " . RegisterState::PendingAdminSend
|
|
. " OR state = " . RegisterState::PendingRegistration
|
|
. " OR state = " . RegisterState::PendingSendRegistrationMail
|
|
. " OR state = " . RegisterState::RegistrationDeclined
|
|
. " OR state = " . RegisterState::AllDone . ";";
|
|
foreach ($mx_db->query($sql) as $row) {
|
|
$first_name = $row["first_name"];
|
|
$last_name = $row["last_name"];
|
|
$username = $row["username"];
|
|
$email = $row["email"];
|
|
$state = $row["state"];
|
|
|
|
try {
|
|
switch ($state) {
|
|
case RegisterState::PendingEmailSend:
|
|
$verify_url = $config["webroot"] . "/verify.php?t=" . $row["verify_token"];
|
|
$success = send_mail_pending_verification(
|
|
$config["homeserver"],
|
|
$row["first_name"] . " " . $row["last_name"],
|
|
$row["email"],
|
|
$row["verify_url"]);
|
|
|
|
if ($success) {
|
|
$mx_db->setRegistrationStateById(RegisterState::PendingEmailVerify, $row["id"]);
|
|
} else {
|
|
throw new Exception("Could not send mail to ".$row["first_name"]." ".$row["last_name"]."(".$row["id"].")");
|
|
}
|
|
break;
|
|
case RegisterState::PendingAdminSend:
|
|
require_once("MatrixConnection.php");
|
|
$adminUrl = $config["webroot"] . "/verify_admin.php?t=" . $row["admin_token"];
|
|
$mxConn = new MatrixConnection($config["homeserver"], $config["access_token"]);
|
|
$mxMsg = new MatrixMessage();
|
|
$mxMsg->set_body($first_name . ' ' . $last_name . " möchte sich registrieren und hat folgende Notiz hinterlassen:\r\n"
|
|
. $row["note"] . "\r\n"
|
|
. "Zum Bearbeiten hier klicken:\r\n" . $adminUrl);
|
|
$mxMsg->set_formatted_body($first_name . ' ' . $last_name . " möchte sich registrieren und hat folgende Notiz hinterlassen:<br />"
|
|
. $row["note"] . "<br />"
|
|
. "Zum Bearbeiten <a href=\"". $adminUrl . "\">hier</a> klicken");
|
|
$mxMsg->set_type("m.text");
|
|
$response = $mxConn->send($config["register_room"], $mxMsg);
|
|
|
|
if ($response) {
|
|
$mx_db->setRegistrationStateById(RegisterState::PendingAdminVerify, $row["id"]);
|
|
|
|
send_mail_pending_approval($config["homeserver"], $first_name . " " . $last_name, $email);
|
|
} else {
|
|
throw new Exception("Could not send notification for ".$row["first_name"]." ".$row["last_name"]."(".$row["id"].") to admins.");
|
|
}
|
|
break;
|
|
case RegisterState::PendingRegistration:
|
|
// Registration got accepted but registration failed
|
|
|
|
$password = addUser($row["first_name"], $row["last_name"], $row["username"], $row["email"]);
|
|
if ($password != NULL) {
|
|
// send registration_success
|
|
$res = send_mail_registration_success($config["homeserver"], $first_name . " " . $last_name, $email, $username, $password, $config["howToURL"]);
|
|
if ($res) {
|
|
$mx_db->setRegistrationStateById(RegisterState::AllDone, $row["id"]);
|
|
} else {
|
|
$mx_db->setRegistrationStateById(RegisterState::PendingSendRegistrationMail, $row["id"]);
|
|
}
|
|
} else {
|
|
send_mail_registration_allowed_but_failed($config["homeserver"], $first_name . " " . $last_name, $email);
|
|
$mxMsg = new MatrixMessage();
|
|
$mxMsg->set_type("m.text");
|
|
$mxMsg->set_body("Fehler beim Registrieren von " . $first_name . " " . $last_name . ".");
|
|
$mxConn->send($config["register_room"], $mxMsg);
|
|
throw new Exception($language["REGISTRATION_FAILED"]);
|
|
}
|
|
break;
|
|
case RegisterState::PendingSendRegistrationMail:
|
|
print ("Error: Unhandled state: PendingSendRegistrationMail for " . $first_name . " " . $last_name . " (" . $username . ")\n");
|
|
break;
|
|
case RegisterState::RegistrationDeclined:
|
|
case RegisterState::AllDone:
|
|
// do reqular cleanup
|
|
break;
|
|
}
|
|
} catch (Exception $e) {
|
|
print("Error while handling cron for " . $first_name . " " . $last_name . " (" . $username . ")\n");
|
|
print($e->getMessage());
|
|
}
|
|
}
|
|
?>
|