web-base/core/Elements/Document.class.php

93 lines
2.2 KiB
PHP
Raw Normal View History

2020-02-09 23:02:19 +01:00
<?php
namespace Elements;
2022-06-01 12:28:50 +02:00
use Configuration\Settings;
2021-12-08 16:53:43 +01:00
use Driver\SQL\SQL;
2022-06-01 12:28:50 +02:00
use Objects\Router\Router;
2020-04-03 15:56:04 +02:00
use Objects\User;
2020-02-09 23:02:19 +01:00
abstract class Document {
2022-06-01 12:28:50 +02:00
protected Router $router;
2020-04-03 15:56:04 +02:00
protected bool $databaseRequired;
2021-12-08 16:53:43 +01:00
private bool $cspEnabled;
private ?string $cspNonce;
2022-02-20 16:53:26 +01:00
private array $cspWhitelist;
private string $domain;
2020-02-09 23:02:19 +01:00
2022-06-01 12:28:50 +02:00
public function __construct(Router $router) {
$this->router = $router;
2021-12-08 16:53:43 +01:00
$this->cspEnabled = false;
$this->cspNonce = null;
2020-04-02 21:39:02 +02:00
$this->databaseRequired = true;
2022-02-20 16:53:26 +01:00
$this->cspWhitelist = [];
2022-06-01 12:28:50 +02:00
$this->domain = $this->getSettings()->getBaseUrl();
}
public function getUser(): User {
return $this->router->getUser();
2020-02-09 23:02:19 +01:00
}
2021-12-08 16:53:43 +01:00
public function getSQL(): ?SQL {
2022-06-01 12:28:50 +02:00
return $this->getUser()->getSQL();
2021-12-08 16:53:43 +01:00
}
2021-04-03 13:05:20 +02:00
2022-06-01 12:28:50 +02:00
public function getSettings(): Settings {
return $this->getUser()->getConfiguration()->getSettings();
2021-12-08 16:53:43 +01:00
}
2020-02-09 23:02:19 +01:00
2021-12-08 16:53:43 +01:00
public function getCSPNonce(): ?string {
return $this->cspNonce;
}
2021-12-08 16:53:43 +01:00
public function isCSPEnabled(): bool {
return $this->cspEnabled;
2020-02-09 23:02:19 +01:00
}
2021-12-08 16:53:43 +01:00
public function enableCSP() {
$this->cspEnabled = true;
$this->cspNonce = generateRandomString(16, "base62");
}
2020-02-09 23:02:19 +01:00
2022-06-01 12:28:50 +02:00
public function getRouter(): Router {
return $this->router;
}
2022-02-20 16:53:26 +01:00
protected function addCSPWhitelist(string $path) {
$this->cspWhitelist[] = $this->domain . $path;
}
2022-05-31 16:14:49 +02:00
public function getCode(array $params = []): string {
2020-04-02 21:39:02 +02:00
if ($this->databaseRequired) {
2022-06-01 12:28:50 +02:00
$sql = $this->getSQL();
2020-02-09 23:02:19 +01:00
if (is_null($sql)) {
die("Database is not configured yet.");
2021-12-08 16:53:43 +01:00
} else if (!$sql->isConnected()) {
2020-02-09 23:02:19 +01:00
die("Database is not connected: " . $sql->getLastError());
}
}
2021-12-08 16:53:43 +01:00
if ($this->cspEnabled) {
2022-02-20 16:53:26 +01:00
$cspWhiteList = implode(" ", $this->cspWhitelist);
$csp = [
"default-src 'self'",
"object-src 'none'",
"base-uri 'self'",
"style-src 'self' 'unsafe-inline'",
"img-src 'self' data:",
"script-src $cspWhiteList 'nonce-$this->cspNonce'"
];
2022-06-01 12:28:50 +02:00
if ($this->getSettings()->isRecaptchaEnabled()) {
2021-12-08 16:53:43 +01:00
$csp[] = "frame-src https://www.google.com/ 'self'";
}
2020-02-09 23:02:19 +01:00
2022-02-20 16:53:26 +01:00
$compiledCSP = implode("; ", $csp);
2021-12-08 16:53:43 +01:00
header("Content-Security-Policy: $compiledCSP;");
}
2020-02-09 23:02:19 +01:00
2021-12-08 16:53:43 +01:00
return "";
}
2020-04-03 15:56:04 +02:00
}