web-base/Core/API/SettingsAPI.class.php

292 lines
9.5 KiB
PHP
Raw Normal View History

2020-06-25 16:54:58 +02:00
<?php
2022-11-18 18:06:46 +01:00
namespace Core\API {
2020-06-25 16:54:58 +02:00
2024-04-22 13:05:35 +02:00
use Core\API\Parameter\IntegerType;
2024-04-23 14:05:29 +02:00
use Core\API\Parameter\StringType;
use Core\Objects\Captcha\CaptchaProvider;
2022-11-18 18:06:46 +01:00
use Core\Objects\Context;
use Core\API\Parameter\ArrayType;
use Core\API\Parameter\Parameter;
2020-06-25 16:54:58 +02:00
2022-06-20 19:52:31 +02:00
abstract class SettingsAPI extends Request {
protected array $predefinedKeys;
2022-06-20 19:52:31 +02:00
public function __construct(Context $context, bool $externalCall = false, array $params = array()) {
parent::__construct($context, $externalCall, $params);
// API parameters should be more configurable, e.g. allow regexes, min/max values for numbers, etc.
$this->predefinedKeys = [
"allowed_extensions" => new ArrayType("allowed_extensions", Parameter::TYPE_STRING),
"mail_contact" => new Parameter("mail_contact", Parameter::TYPE_EMAIL, true, ""),
2024-04-22 13:05:35 +02:00
"trusted_domains" => new ArrayType("trusted_domains", Parameter::TYPE_STRING),
"user_registration_enabled" => new Parameter("user_registration_enabled", Parameter::TYPE_BOOLEAN),
2024-04-24 16:02:16 +02:00
"captcha_provider" => new StringType("captcha_provider", -1, true, "disabled", CaptchaProvider::PROVIDERS),
"mail_enabled" => new Parameter("mail_enabled", Parameter::TYPE_BOOLEAN),
2024-04-23 20:35:58 +02:00
"mail_port" => new IntegerType("mail_port", 1, 65535),
"rate_limiting_enabled" => new Parameter("rate_limiting_enabled", Parameter::TYPE_BOOLEAN),
"redis_port" => new IntegerType("redis_port", 1, 65535),
];
2022-06-20 19:52:31 +02:00
}
2020-06-25 16:54:58 +02:00
}
}
2022-11-18 18:06:46 +01:00
namespace Core\API\Settings {
2020-06-25 16:54:58 +02:00
use Core\API\Parameter\ArrayType;
2022-11-18 18:06:46 +01:00
use Core\API\Parameter\Parameter;
2024-04-22 13:05:35 +02:00
use Core\API\Parameter\RegexType;
2022-11-18 18:06:46 +01:00
use Core\API\Parameter\StringType;
use Core\API\SettingsAPI;
use Core\API\Traits\GpgKeyValidation;
2022-11-18 18:06:46 +01:00
use Core\Configuration\Settings;
use Core\Driver\SQL\Column\Column;
use Core\Driver\SQL\Condition\CondBool;
use Core\Driver\SQL\Condition\CondIn;
use Core\Driver\SQL\Strategy\UpdateStrategy;
use Core\Objects\Context;
use Core\Objects\DatabaseEntity\GpgKey;
2023-01-16 21:47:23 +01:00
use Core\Objects\DatabaseEntity\Group;
2020-06-25 16:54:58 +02:00
class Get extends SettingsAPI {
private ?GpgKey $contactGpgKey;
2022-06-20 19:52:31 +02:00
public function __construct(Context $context, bool $externalCall = false) {
parent::__construct($context, $externalCall, array(
2020-06-27 22:47:12 +02:00
'key' => new StringType('key', -1, true, NULL)
2020-06-25 16:54:58 +02:00
));
$this->contactGpgKey = null;
2020-06-25 16:54:58 +02:00
}
2022-02-21 13:01:03 +01:00
public function _execute(): bool {
2020-06-25 16:54:58 +02:00
$key = $this->getParam("key");
2022-06-20 19:52:31 +02:00
$sql = $this->context->getSQL();
2020-06-25 16:54:58 +02:00
$settings = Settings::getAll($sql, $key, $this->isExternalCall());
2023-01-11 22:05:02 +01:00
if ($settings !== null) {
2020-06-25 16:54:58 +02:00
$this->result["settings"] = $settings;
// TODO: improve this custom key
$gpgKeyId = $this->result["settings"]["mail_contact_gpg_key_id"] ?? null;
$this->contactGpgKey = $gpgKeyId === null ? null : GpgKey::find($sql, $gpgKeyId);
unset($this->result["settings"]["mail_contact_gpg_key_id"]);
$this->result["settings"]["mail_contact_gpg_key"] = $this->contactGpgKey?->jsonSerialize();
2023-01-11 22:05:02 +01:00
} else {
return $this->createError("Error fetching settings: " . $sql->getLastError());
2020-06-25 16:54:58 +02:00
}
return $this->success;
}
2023-01-16 21:47:23 +01:00
public function getContactGpgKey(): ?GpgKey {
return $this->contactGpgKey;
}
2024-04-23 12:14:28 +02:00
public static function getDescription(): string {
return "Allows users to fetch site settings";
}
public static function getDefaultPermittedGroups(): array {
return [Group::ADMIN];
2023-01-16 21:47:23 +01:00
}
2020-06-25 16:54:58 +02:00
}
class Set extends SettingsAPI {
2022-06-20 19:52:31 +02:00
public function __construct(Context $context, bool $externalCall = false) {
parent::__construct($context, $externalCall, array(
'settings' => new ArrayType("settings", Parameter::TYPE_MIXED)
2020-06-25 16:54:58 +02:00
));
}
2022-02-21 13:01:03 +01:00
public function _execute(): bool {
2020-06-25 16:54:58 +02:00
$values = $this->getParam("settings");
if (empty($values)) {
return $this->createError("No values given.");
}
2024-04-22 13:05:35 +02:00
$paramKey = new RegexType('key', "[a-zA-Z_][a-zA-Z_0-9-]*");
$paramValueDefault = new StringType('value', 1024, true, NULL);
2020-06-25 16:54:58 +02:00
2022-06-20 19:52:31 +02:00
$sql = $this->context->getSQL();
$query = $sql->insert("Settings", ["name", "value"]);
2020-06-26 19:31:31 +02:00
$keys = array();
$deleteKeys = array();
2020-06-25 16:54:58 +02:00
foreach ($values as $key => $value) {
$paramValue = $this->predefinedKeys[$key] ?? $paramValueDefault;
2020-06-25 16:54:58 +02:00
if (!$paramKey->parseParam($key)) {
$key = print_r($key, true);
return $this->createError("Invalid Type for key in parameter settings: '$key' (Required: " . $paramKey->getTypeName() . ")");
} else if (!is_null($value) && !$paramValue->parseParam($value)) {
2020-06-25 16:54:58 +02:00
$value = print_r($value, true);
return $this->createError("Invalid Type for value in parameter settings for key '$key': '$value' (Required: " . $paramValue->getTypeName() . ")");
2020-06-25 16:54:58 +02:00
} else {
2020-06-26 19:31:31 +02:00
if (!is_null($paramValue->value)) {
$query->addRow($paramKey->value, json_encode($paramValue->value));
2020-06-26 19:31:31 +02:00
} else {
$deleteKeys[] = $paramKey->value;
}
$keys[] = $paramKey->value;
$paramKey->reset();
$paramValue->reset();
2020-06-25 16:54:58 +02:00
}
}
2020-06-26 19:31:31 +02:00
if ($this->isExternalCall()) {
$column = $this->checkReadonly($keys);
if(!$this->success) {
return false;
} else if($column !== null) {
return $this->createError("Column '$column' is readonly.");
}
}
if (!empty($deleteKeys) && !$this->deleteKeys($deleteKeys)) {
2020-06-26 19:31:31 +02:00
return false;
}
if (count($deleteKeys) !== count($keys)) {
$query->onDuplicateKeyStrategy(new UpdateStrategy(
["name"],
["value" => new Column("value")])
2020-06-26 19:31:31 +02:00
);
$this->success = ($query->execute() !== FALSE);
$this->lastError = $sql->getLastError();
2024-04-05 14:17:50 +02:00
if ($this->success) {
$this->logger->info("The site settings were changed");
}
2020-06-26 19:31:31 +02:00
}
return $this->success;
}
private function checkReadonly(array $keys) {
2022-06-20 19:52:31 +02:00
$sql = $this->context->getSQL();
2020-06-26 19:31:31 +02:00
$res = $sql->select("name")
->from("Settings")
->where(new CondBool("readonly"))
2021-12-08 16:53:43 +01:00
->where(new CondIn(new Column("name"), $keys))
2022-06-08 18:37:08 +02:00
->first()
2020-06-26 19:31:31 +02:00
->execute();
$this->success = ($res !== FALSE);
$this->lastError = $sql->getLastError();
2022-06-08 18:37:08 +02:00
if ($this->success && $res !== null) {
return $res["name"];
2020-06-26 19:31:31 +02:00
}
return null;
}
2023-01-11 22:05:02 +01:00
private function deleteKeys(array $keys): bool {
2022-06-20 19:52:31 +02:00
$sql = $this->context->getSQL();
2020-06-26 19:31:31 +02:00
$res = $sql->delete("Settings")
2021-12-08 16:53:43 +01:00
->where(new CondIn(new Column("name"), $keys))
2020-06-26 19:31:31 +02:00
->execute();
2020-06-25 16:54:58 +02:00
2020-06-26 19:31:31 +02:00
$this->success = ($res !== FALSE);
2020-06-25 16:54:58 +02:00
$this->lastError = $sql->getLastError();
return $this->success;
}
2023-01-16 21:47:23 +01:00
2024-04-23 12:14:28 +02:00
public static function getDescription(): string {
return "Allows users to modify site settings";
}
public static function getDefaultPermittedGroups(): array {
return [Group::ADMIN];
2023-01-16 21:47:23 +01:00
}
2020-06-25 16:54:58 +02:00
}
class ImportGPG extends SettingsAPI {
use GpgKeyValidation;
public function __construct(Context $context, bool $externalCall = false) {
parent::__construct($context, $externalCall, [
"publicKey" => new StringType("publicKey")
]);
$this->forbidMethod("GET");
}
protected function _execute(): bool {
$sql = $this->context->getSQL();
// fix key first, enforce a newline after
$keyString = $this->formatKey($this->getParam("publicKey"));
$keyData = $this->testKey($keyString, null);
if ($keyData === false) {
return false;
}
$res = GpgKey::importKey($keyString);
if (!$res["success"]) {
return $this->createError($res["error"]);
}
// we will auto-confirm this key
$sql = $this->context->getSQL();
$gpgKey = new GpgKey($keyData["fingerprint"], $keyData["algorithm"], $keyData["expires"], true);
if (!$gpgKey->save($sql)) {
return $this->createError("Error creating gpg key: " . $sql->getLastError());
}
$this->success = $sql->insert("Settings", ["name", "value", "private", "readonly"])
->addRow("mail_contact_gpg_key_id", $gpgKey->getId(), false, true)
->onDuplicateKeyStrategy(new UpdateStrategy(
["name"],
["value" => new Column("value")])
)->execute() !== false;
$this->lastError = $sql->getLastError();
$this->result["gpgKey"] = $gpgKey->jsonSerialize();
return $this->success;
}
public static function getDescription(): string {
return "Allows administrators to import a GPG-key to use it as a contact key.";
}
public static function getDefaultPermittedGroups(): array {
return [Group::ADMIN];
}
}
class RemoveGPG extends SettingsAPI {
public function __construct(Context $context, bool $externalCall = false) {
parent::__construct($context, $externalCall);
}
protected function _execute(): bool {
$sql = $this->context->getSQL();
$settings = $this->context->getSettings();
$gpgKey = $settings->getContactGPGKey();
if ($gpgKey === null) {
return $this->createError("No GPG-Key configured yet");
}
$this->success = $sql->update("Settings")
->set("value", NULL)
->whereEq("name", "mail_contact_gpg_key_id")
->execute() !== false;
$this->lastError = $sql->getLastError();
return $this->success;
}
public static function getDescription(): string {
return "Allows administrators to remove the GPG-key used as a contact key.";
}
public static function getDefaultPermittedGroups(): array {
return [Group::ADMIN];
}
}
2020-06-25 16:54:58 +02:00
}