Compare commits
7 Commits
fix_new_ap
...
feature_mu
| Author | SHA1 | Date | |
|---|---|---|---|
| 5eeaa11c0c | |||
| f74a2f74e0 | |||
| 53ccd1c2b3 | |||
| 6d19d869c8 | |||
| 6143a23dd8 | |||
| f808615f22 | |||
| ffce2fc28b |
@@ -14,7 +14,17 @@ $config = [
|
|||||||
// optional: Do you have a place where howTo's are located? If not leave this value out
|
// optional: Do you have a place where howTo's are located? If not leave this value out
|
||||||
"howToURL" => "https://my-url-for-storing-howTos.net",
|
"howToURL" => "https://my-url-for-storing-howTos.net",
|
||||||
|
|
||||||
|
// set the mode of operation. Basically this defines where the data is stored:
|
||||||
|
// - synapse (using the register endpoint - so no further auth config necessary
|
||||||
|
// - local (recommended; using a table in the database to store credentials;
|
||||||
|
// synapse has to be configured to use that)
|
||||||
|
"operationMode" => "local",
|
||||||
|
|
||||||
|
// This setting is only required for operationMode = synapse
|
||||||
|
"registration_shared_secret" => "SOME_SECRET_KEY_FROM_HOMESERVER_CONFIG",
|
||||||
|
|
||||||
// When you want to collect the password on registration set this to true
|
// When you want to collect the password on registration set this to true
|
||||||
|
// only evaluated when operationMode = local
|
||||||
"getPasswordOnRegistration" => false,
|
"getPasswordOnRegistration" => false,
|
||||||
|
|
||||||
// default language: one of [ en-gb | de-de ]
|
// default language: one of [ en-gb | de-de ]
|
||||||
|
|||||||
@@ -241,7 +241,7 @@ class mxDatabase {
|
|||||||
$res = $this->db->query($sql);
|
$res = $this->db->query($sql);
|
||||||
|
|
||||||
if ($res->fetchColumn() > 0) {
|
if ($res->fetchColumn() > 0) {
|
||||||
$sql = "SELECT first_name, last_name, note, email, admin_token FROM registrations "
|
$sql = "SELECT first_name, last_name, note, email, username, admin_token FROM registrations "
|
||||||
. " WHERE verify_token = '" . $verify_token . "'"
|
. " WHERE verify_token = '" . $verify_token . "'"
|
||||||
. " AND state = " . RegisterState::PendingEmailVerify . " LIMIT 1;";
|
. " AND state = " . RegisterState::PendingEmailVerify . " LIMIT 1;";
|
||||||
foreach ($this->db->query($sql) as $row) {
|
foreach ($this->db->query($sql) as $row) {
|
||||||
|
|||||||
@@ -46,5 +46,5 @@ try {
|
|||||||
error_log("failed with error: " . $e->getMessage());
|
error_log("failed with error: " . $e->getMessage());
|
||||||
$response["error"] = $e->getMessage();
|
$response["error"] = $e->getMessage();
|
||||||
}
|
}
|
||||||
print (json_encode($response, JSON_PRETTY_PRINT) . "\n");
|
print (json_encode($response, JSON_PRETTY_PRINT));
|
||||||
?>
|
?>
|
||||||
|
|||||||
@@ -66,5 +66,5 @@ try {
|
|||||||
error_log("ídentity_bulk failed with error: " . $e->getMessage());
|
error_log("ídentity_bulk failed with error: " . $e->getMessage());
|
||||||
$response["error"] = $e->getMessage();
|
$response["error"] = $e->getMessage();
|
||||||
}
|
}
|
||||||
print (json_encode($response, JSON_PRETTY_PRINT) . "\n");
|
print (json_encode($response, JSON_PRETTY_PRINT));
|
||||||
?>
|
?>
|
||||||
|
|||||||
@@ -61,5 +61,5 @@ try {
|
|||||||
"error" => $e->getMessage()
|
"error" => $e->getMessage()
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
print (json_encode($response, JSON_PRETTY_PRINT) . "\n");
|
print (json_encode($response, JSON_PRETTY_PRINT));
|
||||||
?>
|
?>
|
||||||
|
|||||||
@@ -108,5 +108,5 @@ try {
|
|||||||
error_log("Auth failed with error: " . $e->getMessage());
|
error_log("Auth failed with error: " . $e->getMessage());
|
||||||
$response["auth"]["error"] = $e->getMessage();
|
$response["auth"]["error"] = $e->getMessage();
|
||||||
}
|
}
|
||||||
print (json_encode($response, JSON_PRETTY_PRINT) . "\n");
|
print (json_encode($response, JSON_PRETTY_PRINT));
|
||||||
?>
|
?>
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Copyright 2018 Matthias Kesler
|
* Copyright 2018 Matthias Kesler
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
@@ -53,7 +54,8 @@ $language = array(
|
|||||||
"ADMIN_REGISTER_ACCEPTED_BODY" => "Die Registrierungsanfrage wurde akzeptiert. Der Nutzer wurde per Mail informiert.",
|
"ADMIN_REGISTER_ACCEPTED_BODY" => "Die Registrierungsanfrage wurde akzeptiert. Der Nutzer wurde per Mail informiert.",
|
||||||
"ADMIN_REGISTER_DECLINED_BODY" => "Die Registrierungsanfrage wurde angelehnt. Der Nutzer wurde per Mail informiert.",
|
"ADMIN_REGISTER_DECLINED_BODY" => "Die Registrierungsanfrage wurde angelehnt. Der Nutzer wurde per Mail informiert.",
|
||||||
"JUMP_TO_HOMEPAGE" => "Zur Startseite",
|
"JUMP_TO_HOMEPAGE" => "Zur Startseite",
|
||||||
"TOPIC_PLEASE_REGISTER" => "Bitte für @homeserver registrieren<small>2-Schritt-Registrierung</small>",
|
"TOPIC_PLEASE_REGISTER" => "Bitte für @homeserver registrieren",
|
||||||
|
"TOPIC_PLEASE_REGISTER_NOTE" => "2-Schritt-Registrierung",
|
||||||
"NOTE_FOR_REGISTRATION" => "@homeserver ist ein geschlossenes Chat-Netzwerk in dem jeder Nutzer bestätigt werden muss.<br />
|
"NOTE_FOR_REGISTRATION" => "@homeserver ist ein geschlossenes Chat-Netzwerk in dem jeder Nutzer bestätigt werden muss.<br />
|
||||||
Du bekommst eine E-Mail wenn jemand deine Mitgliedschaft bestätigt hat. An diese wird auch dein initiales Passwort gesendet.
|
Du bekommst eine E-Mail wenn jemand deine Mitgliedschaft bestätigt hat. An diese wird auch dein initiales Passwort gesendet.
|
||||||
Hinterlasse also bitte einen Hinweis zu dir (den nur die Administratoren sehen werden).<br />
|
Hinterlasse also bitte einen Hinweis zu dir (den nur die Administratoren sehen werden).<br />
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
function send_mail($receiver, $subject, $body) {
|
function send_mail($receiver, $subject, $body) {
|
||||||
include("config.php");
|
include("../config.php");
|
||||||
$headers = "From: " . $config["register_email"] . "\r\n"
|
$headers = "From: " . $config["register_email"] . "\r\n"
|
||||||
. "Content-Type: text/plain;charset=utf-8";
|
. "Content-Type: text/plain;charset=utf-8";
|
||||||
return mail($receiver, $subject, $body, $headers);
|
return mail($receiver, $subject, $body, $headers);
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
function send_mail($receiver, $subject, $body) {
|
function send_mail($receiver, $subject, $body) {
|
||||||
include("config.php");
|
include("../config.php");
|
||||||
$headers = "From: " . $config["register_email"] . "\r\n"
|
$headers = "From: " . $config["register_email"] . "\r\n"
|
||||||
. "Content-Type: text/plain;charset=utf-8";
|
. "Content-Type: text/plain;charset=utf-8";
|
||||||
return mail($receiver, $subject, $body, $headers);
|
return mail($receiver, $subject, $body, $headers);
|
||||||
|
|||||||
@@ -24,6 +24,7 @@ if (!file_exists($lang_file)) {
|
|||||||
error_log("Mail templates for '" . $lang . "' not found. Fallback to 'de-de'");
|
error_log("Mail templates for '" . $lang . "' not found. Fallback to 'de-de'");
|
||||||
$lang = "de-de";
|
$lang = "de-de";
|
||||||
}
|
}
|
||||||
|
$lang_file = dirname(__FILE__) . "/lang/mail." . $lang . ".php";
|
||||||
require_once($lang_file);
|
require_once($lang_file);
|
||||||
unset($lang_file);
|
unset($lang_file);
|
||||||
?>
|
?>
|
||||||
|
|||||||
@@ -13,6 +13,12 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
// enforce admin via https
|
||||||
|
if (!isset($_SERVER['HTTPS'])) {
|
||||||
|
header('Location: https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'], true, 301);
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
|
||||||
require_once "../language.php";
|
require_once "../language.php";
|
||||||
if (!file_exists("../config.php")) {
|
if (!file_exists("../config.php")) {
|
||||||
print($language["NO_CONFIGURATION"]);
|
print($language["NO_CONFIGURATION"]);
|
||||||
@@ -20,12 +26,18 @@ if (!file_exists("../config.php")) {
|
|||||||
}
|
}
|
||||||
require_once "../config.php";
|
require_once "../config.php";
|
||||||
|
|
||||||
// enforce admin via https
|
// this values will not be used when using the register operation type
|
||||||
if (!isset($_SERVER['HTTPS'])) {
|
$storeFirstLastName = false;
|
||||||
header('Location: https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'], true, 301);
|
if (isset($config["operationMode"]) && $config["operationMode"] === "local") {
|
||||||
exit();
|
$storeFirstLastName = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// currently the case to store the password on our own is the only supported one
|
||||||
|
$storePassword = false;
|
||||||
|
if (isset($config["getPasswordOnRegistration"]) && $config["getPasswordOnRegistration"] &&
|
||||||
|
isset($config["operationMode"]) && $config["operationMode"] === "synapse") {
|
||||||
|
$storePassword = true;
|
||||||
|
}
|
||||||
session_start();
|
session_start();
|
||||||
|
|
||||||
if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
||||||
@@ -53,17 +65,22 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
|||||||
if (!isset($_POST["email"]) || !filter_var($_POST["email"], FILTER_VALIDATE_EMAIL)) {
|
if (!isset($_POST["email"]) || !filter_var($_POST["email"], FILTER_VALIDATE_EMAIL)) {
|
||||||
throw new Exception("EMAIL_INVALID_FORMAT");
|
throw new Exception("EMAIL_INVALID_FORMAT");
|
||||||
}
|
}
|
||||||
if (isset($_POST["first_name"]) && !preg_match("/[A-Z][a-z]+/", $_POST["first_name"])) {
|
if ($storeFirstLastName) {
|
||||||
|
// only require first_name and last_name when we will evaluate them
|
||||||
|
if (!isset($_POST["first_name"]) || !preg_match("/[A-Z][a-z]+/", $_POST["first_name"])) {
|
||||||
throw new Exception("FIRSTNAME_INVALID_FORMAT");
|
throw new Exception("FIRSTNAME_INVALID_FORMAT");
|
||||||
}
|
}
|
||||||
if (isset($_POST["last_name"]) && !preg_match("/[A-Z][a-z]+/", $_POST["last_name"])) {
|
if (!isset($_POST["last_name"]) || !preg_match("/[A-Z][a-z]+/", $_POST["last_name"])) {
|
||||||
throw new Exception("SIRNAME_INVALID_FORMAT");
|
throw new Exception("SIRNAME_INVALID_FORMAT");
|
||||||
}
|
}
|
||||||
|
|
||||||
$first_name = filter_var($_POST["first_name"], FILTER_SANITIZE_STRING);
|
$first_name = filter_var($_POST["first_name"], FILTER_SANITIZE_STRING);
|
||||||
$last_name = filter_var($_POST["last_name"], FILTER_SANITIZE_STRING);
|
$last_name = filter_var($_POST["last_name"], FILTER_SANITIZE_STRING);
|
||||||
|
} else {
|
||||||
|
$first_name = $last_name = "";
|
||||||
|
}
|
||||||
|
|
||||||
$username = filter_var($_POST["username"], FILTER_SANITIZE_STRING);
|
$username = filter_var($_POST["username"], FILTER_SANITIZE_STRING);
|
||||||
if (isset($_POST["password"])) {
|
if ($storePassword && isset($_POST["password"])) {
|
||||||
$password = filter_var($_POST["password"], FILTER_SANITIZE_STRING);
|
$password = filter_var($_POST["password"], FILTER_SANITIZE_STRING);
|
||||||
}
|
}
|
||||||
$note = filter_var($_POST["note"], FILTER_SANITIZE_STRING);
|
$note = filter_var($_POST["note"], FILTER_SANITIZE_STRING);
|
||||||
@@ -81,7 +98,7 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
|||||||
$verify_url = $config["webroot"] . "/verify.php?t=" . $verify_token;
|
$verify_url = $config["webroot"] . "/verify.php?t=" . $verify_token;
|
||||||
require_once "../mail_templates.php";
|
require_once "../mail_templates.php";
|
||||||
$success = send_mail_pending_verification(
|
$success = send_mail_pending_verification(
|
||||||
$config["homeserver"], $first_name . " " . $last_name, $email, $verify_url);
|
$config["homeserver"], $storeFirstLastName ? $first_name . " " . $last_name : $username, $email, $verify_url);
|
||||||
|
|
||||||
$mx_db->setRegistrationStateVerify(
|
$mx_db->setRegistrationStateVerify(
|
||||||
($success ? RegisterState::PendingEmailVerify : RegisterState::PendingEmailSend), $verify_token);
|
($success ? RegisterState::PendingEmailVerify : RegisterState::PendingEmailSend), $verify_token);
|
||||||
@@ -105,7 +122,7 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
|||||||
} else {
|
} else {
|
||||||
$_SESSION["token"] = bin2hex(random_bytes(16));
|
$_SESSION["token"] = bin2hex(random_bytes(16));
|
||||||
?>
|
?>
|
||||||
<title>Registriere dich für <?php echo $config["homeserver"]; ?></title>
|
<title><?php echo strtr($language["TOPIC_PLEASE_REGISTER"], [ "@homeserver" => $config["homeserver"] ]); ?></title>
|
||||||
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet">
|
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet">
|
||||||
<style>
|
<style>
|
||||||
body{
|
body{
|
||||||
@@ -129,10 +146,12 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
|||||||
<div class="col-xs-12 col-sm-8 col-md-4 col-sm-offset-2 col-md-offset-4">
|
<div class="col-xs-12 col-sm-8 col-md-4 col-sm-offset-2 col-md-offset-4">
|
||||||
<div class="panel panel-default">
|
<div class="panel panel-default">
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
<h3 class="panel-title"><?php echo strtr($language["TOPIC_PLEASE_REGISTER"], [ "@homeserver" => $config["homeserver"] ]); ?></h3>
|
<h3 class="panel-title"><?php echo strtr($language["TOPIC_PLEASE_REGISTER"], [ "@homeserver" => $config["homeserver"] ])
|
||||||
|
. "<small>" . $language["TOPIC_PLEASE_REGISTER_NOTE"] . "</small>"; ?></h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
<form name="regForm" role="form" action="index.php" method="post">
|
<form name="regForm" role="form" action="index.php" method="post">
|
||||||
|
<?php if ($storeFirstLastName) { ?>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-6 col-sm-6 col-md-6">
|
<div class="col-xs-6 col-sm-6 col-md-6">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
@@ -147,6 +166,7 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<?php } ?>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<input type="email" name="email" id="email" class="form-control input-sm" placeholder="<?php echo $language["EMAIL_ADDRESS"]; ?>" required>
|
<input type="email" name="email" id="email" class="form-control input-sm" placeholder="<?php echo $language["EMAIL_ADDRESS"]; ?>" required>
|
||||||
@@ -160,7 +180,7 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
|||||||
<input type="text" name="username" id="username" class="form-control input-sm"
|
<input type="text" name="username" id="username" class="form-control input-sm"
|
||||||
placeholder="<?php echo $language["USERNAME"]; ?>" pattern="[a-z1-9]{3,20}" required>
|
placeholder="<?php echo $language["USERNAME"]; ?>" pattern="[a-z1-9]{3,20}" required>
|
||||||
</div>
|
</div>
|
||||||
<?php if (isset($config["getPasswordOnRegistration"]) && $config["getPasswordOnRegistration"]) { ?>
|
<?php if ($storePassword) { ?>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-6 col-sm-6 col-md-6">
|
<div class="col-xs-6 col-sm-6 col-md-6">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
@@ -173,7 +193,7 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<input type="hidden" name="token" id="token" value="<?php echo $_SESSION["token"]; ?>">
|
<input type="hidden" name="token" id="token" value="<?php echo $_SESSION["token"]; ?>">
|
||||||
<input type="submit" value="<?php echo $language["REGISTER"]; ?>" class="btn btn-info btn-block">
|
<input type="submit" value="<?php echo $language["REGISTER"]; ?>" class="btn btn-info btn-block">
|
||||||
|
|
||||||
@@ -189,6 +209,14 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
var user_name = document.getElementById("username");
|
||||||
|
user_name.oninvalid = function (event) {
|
||||||
|
event.target.setCustomValidity("<?php echo $language["USERNAME_LENGTH_INVALID"]; ?>");
|
||||||
|
}
|
||||||
|
user_name.onkeyup = function (event) {
|
||||||
|
event.target.setCustomValidity("");
|
||||||
|
}
|
||||||
|
<?php if ($storeFirstLastName) { ?>
|
||||||
var first_name = document.getElementById("first_name");
|
var first_name = document.getElementById("first_name");
|
||||||
first_name.oninvalid = function (event) {
|
first_name.oninvalid = function (event) {
|
||||||
event.target.setCustomValidity("<?php echo $language["FIRSTNAME_INVALID_FORMAT"]; ?>");
|
event.target.setCustomValidity("<?php echo $language["FIRSTNAME_INVALID_FORMAT"]; ?>");
|
||||||
@@ -203,14 +231,7 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
|||||||
last_name.onkeyup = function (event) {
|
last_name.onkeyup = function (event) {
|
||||||
event.target.setCustomValidity("");
|
event.target.setCustomValidity("");
|
||||||
}
|
}
|
||||||
var user_name = document.getElementById("username");
|
<?php } if ($storePassword) { ?>
|
||||||
user_name.oninvalid = function (event) {
|
|
||||||
event.target.setCustomValidity("<?php echo $language["USERNAME_LENGTH_INVALID"]; ?>");
|
|
||||||
}
|
|
||||||
user_name.onkeyup = function (event) {
|
|
||||||
event.target.setCustomValidity("");
|
|
||||||
}
|
|
||||||
<?php if (isset($config["getPasswordOnRegistration"]) && $config["getPasswordOnRegistration"]) { ?>
|
|
||||||
var password = document.getElementById("password")
|
var password = document.getElementById("password")
|
||||||
, confirm_password = document.getElementById("password_confirm");
|
, confirm_password = document.getElementById("password_confirm");
|
||||||
function validatePassword() {
|
function validatePassword() {
|
||||||
@@ -225,5 +246,4 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
|||||||
<?php } ?>
|
<?php } ?>
|
||||||
</script>
|
</script>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</body>
|
</body></html>
|
||||||
</html>
|
|
||||||
@@ -46,6 +46,7 @@ try {
|
|||||||
}
|
}
|
||||||
$first_name = $user["first_name"];
|
$first_name = $user["first_name"];
|
||||||
$last_name = $user["last_name"];
|
$last_name = $user["last_name"];
|
||||||
|
$username = $user["username"];
|
||||||
$note = $user["note"];
|
$note = $user["note"];
|
||||||
$email = $user["email"];
|
$email = $user["email"];
|
||||||
$admin_token = $user["admin_token"];
|
$admin_token = $user["admin_token"];
|
||||||
@@ -55,13 +56,13 @@ try {
|
|||||||
$mxConn = new MatrixConnection($config["homeserver"], $config["access_token"]);
|
$mxConn = new MatrixConnection($config["homeserver"], $config["access_token"]);
|
||||||
$mxMsg = new MatrixMessage();
|
$mxMsg = new MatrixMessage();
|
||||||
$mxMsg->set_body(strtr($language["MSG_USER_WANTS_REGISTER"], [
|
$mxMsg->set_body(strtr($language["MSG_USER_WANTS_REGISTER"], [
|
||||||
"@name" => $first_name . ' ' . $last_name,
|
"@name" => (strlen($first_name . $last_name) > 0 ? $first_name . " " . $last_name : $username),
|
||||||
"@note" => $note,
|
"@note" => $note,
|
||||||
"@adminUrl" => $adminUrl
|
"@adminUrl" => $adminUrl
|
||||||
]));
|
]));
|
||||||
if (isset($language["MSG_USER_WANTS_REGISTER_FORMATTED"])) {
|
if (isset($language["MSG_USER_WANTS_REGISTER_FORMATTED"])) {
|
||||||
$mxMsg->set_formatted_body(strtr($language["MSG_USER_WANTS_REGISTER_FORMATTED"], [
|
$mxMsg->set_formatted_body(strtr($language["MSG_USER_WANTS_REGISTER_FORMATTED"], [
|
||||||
"@name" => $first_name . ' ' . $last_name,
|
"@name" => (strlen($first_name . $last_name) > 0 ? $first_name . " " . $last_name : $username),
|
||||||
"@note" => $note,
|
"@note" => $note,
|
||||||
"@adminUrl" => $adminUrl
|
"@adminUrl" => $adminUrl
|
||||||
]));
|
]));
|
||||||
|
|||||||
@@ -70,11 +70,30 @@ try {
|
|||||||
require_once("../MatrixConnection.php");
|
require_once("../MatrixConnection.php");
|
||||||
$mxConn = new MatrixConnection($config["homeserver"], $config["access_token"]);
|
$mxConn = new MatrixConnection($config["homeserver"], $config["access_token"]);
|
||||||
|
|
||||||
// generate a password with 8 characters
|
$password = NULL;
|
||||||
|
switch ($config["operationMode"]) {
|
||||||
|
case "synapse":
|
||||||
|
// register with registration_shared_secret
|
||||||
|
// generate a password with 10 characters
|
||||||
|
$password = bin2hex(openssl_random_pseudo_bytes(5));
|
||||||
|
$res = $mxConn->register($username, $password, $config["registration_shared_secret"]);
|
||||||
|
if (!$res) {
|
||||||
|
// something went wrong while registering
|
||||||
|
$password = NULL;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case "local":
|
||||||
|
// register by adding a user to the local database
|
||||||
$password = $mx_db->addUser($first_name, $last_name, $username, $email);
|
$password = $mx_db->addUser($first_name, $last_name, $username, $email);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new Exception("Unknown operationMode");
|
||||||
|
}
|
||||||
if ($password != NULL) {
|
if ($password != NULL) {
|
||||||
// send registration_success
|
// send registration_success
|
||||||
$res = send_mail_registration_success($config["homeserver"], $first_name . " " . $last_name, $email, $username, $password, $config["howToURL"]);
|
$res = send_mail_registration_success(
|
||||||
|
$config["homeserver"], $first_name . " " . $last_name, $email, $username, $password, $config["howToURL"]
|
||||||
|
);
|
||||||
if ($res) {
|
if ($res) {
|
||||||
$mx_db->setRegistrationStateAdmin(RegisterState::AllDone, $token);
|
$mx_db->setRegistrationStateAdmin(RegisterState::AllDone, $token);
|
||||||
} else {
|
} else {
|
||||||
@@ -84,7 +103,9 @@ try {
|
|||||||
send_mail_registration_allowed_but_failed($config["homeserver"], $first_name . " " . $last_name, $email);
|
send_mail_registration_allowed_but_failed($config["homeserver"], $first_name . " " . $last_name, $email);
|
||||||
$mxMsg = new MatrixMessage();
|
$mxMsg = new MatrixMessage();
|
||||||
$mxMsg->set_type("m.text");
|
$mxMsg->set_type("m.text");
|
||||||
$mxMsg->set_body(strtr($language["REGISTRATION_FAILED_FOR"], [ "@name" => $first_name . " " . $last_name]));
|
$mxMsg->set_body(strtr($language["REGISTRATION_FAILED_FOR"], [
|
||||||
|
"@name" => strlen($first_name . $last_name) > 0 ? $first_name . " " . $last_name : $username,
|
||||||
|
]));
|
||||||
$mxConn->send($config["register_room"], $mxMsg);
|
$mxConn->send($config["register_room"], $mxMsg);
|
||||||
throw new Exception("REGISTRATION_FAILED");
|
throw new Exception("REGISTRATION_FAILED");
|
||||||
}
|
}
|
||||||
@@ -95,7 +116,9 @@ try {
|
|||||||
print("<p>" . $language["ADMIN_REGISTER_ACCEPTED_BODY"] . "</p>");
|
print("<p>" . $language["ADMIN_REGISTER_ACCEPTED_BODY"] . "</p>");
|
||||||
} elseif ($action == RegisterState::RegistrationDeclined) {
|
} elseif ($action == RegisterState::RegistrationDeclined) {
|
||||||
$mx_db->setRegistrationStateAdmin(RegisterState::RegistrationDeclined, $token);
|
$mx_db->setRegistrationStateAdmin(RegisterState::RegistrationDeclined, $token);
|
||||||
send_mail_registration_decline($config["homeserver"], $first_name . " " . $last_name, $email, $decline_reason);
|
send_mail_registration_decline(
|
||||||
|
$config["homeserver"], strlen($first_name . $last_name) > 0 ? $first_name . " " . $last_name : $username, $email, $decline_reason
|
||||||
|
);
|
||||||
print("<title>" . $language["ADMIN_VERIFY_SITE_TITLE"] . "</title>");
|
print("<title>" . $language["ADMIN_VERIFY_SITE_TITLE"] . "</title>");
|
||||||
print("</head><body>");
|
print("</head><body>");
|
||||||
print("<h1>" . $language["ADMIN_VERIFY_SITE_TITLE"] . "</h1>");
|
print("<h1>" . $language["ADMIN_VERIFY_SITE_TITLE"] . "</h1>");
|
||||||
@@ -131,6 +154,9 @@ try {
|
|||||||
</div>
|
</div>
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
<form name="appForm" role="form" action="verify_admin.php" method="GET">
|
<form name="appForm" role="form" action="verify_admin.php" method="GET">
|
||||||
|
<?php if (isset($config["operationMode"]) && $config["operationMode"] === "local") {
|
||||||
|
// this values will not be used when using the register operation type
|
||||||
|
?>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-6 col-sm-6 col-md-6">
|
<div class="col-xs-6 col-sm-6 col-md-6">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
@@ -145,7 +171,7 @@ try {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<?php } ?>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<input type="text" id="note" class="form-control input-sm" value="<?php echo $note; ?>" disabled=true>
|
<input type="text" id="note" class="form-control input-sm" value="<?php echo $note; ?>" disabled=true>
|
||||||
</div>
|
</div>
|
||||||
@@ -157,7 +183,6 @@ try {
|
|||||||
<input type="hidden" name="t" id="token" value="<?php echo $token; ?>">
|
<input type="hidden" name="t" id="token" value="<?php echo $token; ?>">
|
||||||
<input type="submit" name="allow" value="<?php echo $language["ACCEPT"]; ?>" class="btn btn-info btn-block">
|
<input type="submit" name="allow" value="<?php echo $language["ACCEPT"]; ?>" class="btn btn-info btn-block">
|
||||||
<input type="submit" name="deny" value="<?php echo $language["DECLINE"]; ?>" class="btn btn-info btn-block">
|
<input type="submit" name="deny" value="<?php echo $language["DECLINE"]; ?>" class="btn btn-info btn-block">
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user