67 lines
2.7 KiB
PHP
67 lines
2.7 KiB
PHP
<?php
|
|
|
|
|
|
namespace Core\Documents;
|
|
|
|
use Core\Elements\TemplateDocument;
|
|
use Core\Objects\Router\Router;
|
|
|
|
|
|
class Account extends TemplateDocument {
|
|
public function __construct(Router $router, string $templateName) {
|
|
parent::__construct($router, $templateName);
|
|
$this->title = "Account";
|
|
$this->searchable = false;
|
|
$this->enableCSP();
|
|
}
|
|
|
|
private function createError(string $message) {
|
|
$this->parameters["view"]["success"] = false;
|
|
$this->parameters["view"]["message"] = $message;
|
|
}
|
|
|
|
protected function loadParameters() {
|
|
$this->parameters["view"] = ["success" => true];
|
|
if ($this->getTemplateName() === "account/reset_password.twig") {
|
|
if (isset($_GET["token"]) && is_string($_GET["token"]) && !empty($_GET["token"])) {
|
|
$this->parameters["view"]["token"] = $_GET["token"];
|
|
$req = new \Core\API\User\CheckToken($this->getContext());
|
|
$this->parameters["view"]["success"] = $req->execute(array("token" => $_GET["token"]));
|
|
if ($this->parameters["view"]["success"]) {
|
|
if (strcmp($req->getResult()["token"]["type"], "password_reset") !== 0) {
|
|
$this->createError("The given token has a wrong type.");
|
|
}
|
|
} else {
|
|
$this->createError("Error requesting password reset: " . $req->getLastError());
|
|
}
|
|
}
|
|
} else if ($this->getTemplateName() === "account/register.twig") {
|
|
$settings = $this->getSettings();
|
|
if ($this->getUser()) {
|
|
$this->createError("You are already logged in.");
|
|
} else if (!$settings->isRegistrationAllowed()) {
|
|
$this->createError("Registration is not enabled on this website.");
|
|
}
|
|
} else if ($this->getTemplateName() === "account/login.twig" && $this->getUser()) {
|
|
header("Location: /admin");
|
|
exit();
|
|
} else if ($this->getTemplateName() === "account/accept_invite.twig") {
|
|
if (isset($_GET["token"]) && is_string($_GET["token"]) && !empty($_GET["token"])) {
|
|
$this->parameters["view"]["token"] = $_GET["token"];
|
|
$req = new \Core\API\User\CheckToken($this->getContext());
|
|
$this->parameters["view"]["success"] = $req->execute(array("token" => $_GET["token"]));
|
|
if ($this->parameters["view"]["success"]) {
|
|
if (strcmp($req->getResult()["token"]["type"], "invite") !== 0) {
|
|
$this->createError("The given token has a wrong type.");
|
|
} else {
|
|
$this->parameters["view"]["invited_user"] = $req->getResult()["user"];
|
|
}
|
|
} else {
|
|
$this->createError("Error confirming e-mail address: " . $req->getLastError());
|
|
}
|
|
} else {
|
|
$this->createError("The link you visited is no longer valid");
|
|
}
|
|
}
|
|
}
|
|
} |