2022-09-13 13:14:49 +00:00
|
|
|
<?php
|
|
|
|
namespace Misuzu;
|
|
|
|
|
2023-07-18 21:48:44 +00:00
|
|
|
use Misuzu\Config\DbConfig;
|
2022-09-13 13:14:49 +00:00
|
|
|
|
2023-08-02 22:12:47 +00:00
|
|
|
if(!$msz->isLoggedIn() || !perms_check_user(MSZ_PERMS_GENERAL, $msz->getActiveUser()->getId(), MSZ_PERM_GENERAL_MANAGE_CONFIG)) {
|
2022-09-13 13:14:49 +00:00
|
|
|
echo render_error(403);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-07-18 21:48:44 +00:00
|
|
|
$isNew = true;
|
2022-09-13 13:14:49 +00:00
|
|
|
$sName = (string)filter_input(INPUT_GET, 'name');
|
|
|
|
$sType = (string)filter_input(INPUT_GET, 'type');
|
2023-07-18 21:48:44 +00:00
|
|
|
$sValue = null;
|
|
|
|
$loadValueInfo = fn() => $cfg->getValueInfo($sName);
|
2022-09-13 13:14:49 +00:00
|
|
|
|
2023-07-18 21:48:44 +00:00
|
|
|
if(!empty($sName)) {
|
|
|
|
$sInfo = $loadValueInfo();
|
|
|
|
if($sInfo !== null) {
|
|
|
|
$isNew = false;
|
|
|
|
$sName = $sInfo->getName();
|
|
|
|
$sType = $sInfo->getType();
|
|
|
|
$sValue = $sInfo->getValue();
|
2022-09-13 13:14:49 +00:00
|
|
|
}
|
2023-07-18 21:48:44 +00:00
|
|
|
}
|
2022-09-13 13:14:49 +00:00
|
|
|
|
2023-07-18 21:48:44 +00:00
|
|
|
while($_SERVER['REQUEST_METHOD'] === 'POST' && CSRF::validateRequest()) {
|
|
|
|
if($isNew) {
|
|
|
|
$sName = trim((string)filter_input(INPUT_POST, 'conf_name'));
|
|
|
|
if(!DbConfig::validateName($sName)) {
|
|
|
|
echo 'Name contains invalid characters.';
|
|
|
|
break;
|
|
|
|
}
|
2022-09-13 13:14:49 +00:00
|
|
|
|
2023-07-18 21:48:44 +00:00
|
|
|
$sType = trim((string)filter_input(INPUT_POST, 'conf_type'));
|
|
|
|
if(!in_array($sType, ['string', 'int', 'float', 'bool', 'array'])) {
|
|
|
|
echo 'Invalid type specified.';
|
|
|
|
break;
|
|
|
|
}
|
2022-09-13 13:14:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if($sType === 'array') {
|
2023-07-18 21:48:44 +00:00
|
|
|
$applyFunc = $cfg->setArray(...);
|
|
|
|
$sValue = [];
|
|
|
|
$sRaw = filter_input(INPUT_POST, 'conf_value', FILTER_DEFAULT, FILTER_REQUIRE_ARRAY);
|
|
|
|
foreach($sRaw as $rValue) {
|
|
|
|
if(strpos($rValue, ':') === 1) {
|
|
|
|
$rType = $rValue[0];
|
|
|
|
$rValue = substr($rValue, 2);
|
|
|
|
$sValue[] = match($rType) {
|
|
|
|
's' => $rValue,
|
|
|
|
'i' => (int)$rValue,
|
|
|
|
'd' => (float)$rValue,
|
|
|
|
'f' => (float)$rValue,
|
|
|
|
'b' => $rValue !== 'false' && $rValue !== '0' && $rValue !== '',
|
|
|
|
default => '',
|
|
|
|
};
|
|
|
|
} else
|
|
|
|
$sValue[] = $rValue;
|
2022-09-13 13:14:49 +00:00
|
|
|
}
|
2023-07-18 21:48:44 +00:00
|
|
|
} elseif($sType === 'bool') {
|
2022-09-13 13:14:49 +00:00
|
|
|
$sValue = !empty($_POST['conf_value']);
|
2023-07-18 21:48:44 +00:00
|
|
|
$applyFunc = $cfg->setBoolean(...);
|
2022-09-13 13:14:49 +00:00
|
|
|
} else {
|
2023-07-18 21:48:44 +00:00
|
|
|
$sValue = filter_input(INPUT_POST, 'conf_value');
|
|
|
|
if($sType === 'int') {
|
|
|
|
$applyFunc = $cfg->setInteger(...);
|
2023-01-01 19:06:01 +00:00
|
|
|
$sValue = (int)$sValue;
|
2023-07-18 21:48:44 +00:00
|
|
|
} elseif($sType === 'float') {
|
|
|
|
$applyFunc = $cfg->setFloat(...);
|
|
|
|
$sValue = (float)$sValue;
|
|
|
|
} else
|
|
|
|
$applyFunc = $cfg->setString(...);
|
2022-09-13 13:14:49 +00:00
|
|
|
}
|
|
|
|
|
2023-07-18 21:48:44 +00:00
|
|
|
$msz->createAuditLog($isNew ? 'CONFIG_CREATE' : 'CONFIG_UPDATE', [$sName]);
|
|
|
|
$applyFunc($sName, $sValue);
|
2022-09-13 13:14:49 +00:00
|
|
|
url_redirect('manage-general-settings');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-07-18 21:48:44 +00:00
|
|
|
if($sType === 'array' && !empty($sValue))
|
|
|
|
foreach($sValue as $key => $value)
|
|
|
|
$sValue[$key] = gettype($value)[0] . ':' . $value;
|
2022-09-13 13:14:49 +00:00
|
|
|
|
|
|
|
Template::render('manage.general.setting', [
|
2023-07-18 21:48:44 +00:00
|
|
|
'config_new' => $isNew,
|
|
|
|
'config_name' => $sName,
|
|
|
|
'config_type' => $sType,
|
|
|
|
'config_value' => $sValue,
|
2022-09-13 13:14:49 +00:00
|
|
|
]);
|