implement prefs UI based on new prefs class and a few more things

master
Andrew Dolgov 3 years ago
parent e858e979e9
commit bd2314170d

@ -21,8 +21,8 @@ class Digest
while ($line = $res->fetch()) { while ($line = $res->fetch()) {
if (@get_pref('DIGEST_ENABLE', $line['id'], false)) { if (get_pref('DIGEST_ENABLE', $line['id'])) {
$preferred_ts = strtotime(get_pref('DIGEST_PREFERRED_TIME', $line['id'], '00:00')); $preferred_ts = strtotime(get_pref('DIGEST_PREFERRED_TIME', $line['id']));
// try to send digests within 2 hours of preferred time // try to send digests within 2 hours of preferred time
if ($preferred_ts && time() >= $preferred_ts && if ($preferred_ts && time() >= $preferred_ts &&
@ -31,7 +31,7 @@ class Digest
Debug::log("Sending digest for UID:" . $line['id'] . " - " . $line["email"]); Debug::log("Sending digest for UID:" . $line['id'] . " - " . $line["email"]);
$do_catchup = get_pref('DIGEST_CATCHUP', $line['id'], false); $do_catchup = get_pref('DIGEST_CATCHUP', $line['id']);
global $tz_offset; global $tz_offset;

@ -153,7 +153,7 @@ class OPML extends Handler_Protected {
if ($include_settings) { if ($include_settings) {
$out .= "<outline text=\"tt-rss-prefs\" schema-version=\"".SCHEMA_VERSION."\">"; $out .= "<outline text=\"tt-rss-prefs\" schema-version=\"".SCHEMA_VERSION."\">";
$sth = $this->pdo->prepare("SELECT pref_name, value FROM ttrss_user_prefs WHERE $sth = $this->pdo->prepare("SELECT pref_name, value FROM ttrss_user_prefs2 WHERE
profile IS NULL AND owner_uid = ? ORDER BY pref_name"); profile IS NULL AND owner_uid = ? ORDER BY pref_name");
$sth->execute([$owner_uid]); $sth->execute([$owner_uid]);

@ -185,7 +185,7 @@ class Pref_Prefs extends Handler_Protected {
if (get_pref('DIGEST_PREFERRED_TIME') != $value) { if (get_pref('DIGEST_PREFERRED_TIME') != $value) {
$sth = $this->pdo->prepare("UPDATE ttrss_users SET $sth = $this->pdo->prepare("UPDATE ttrss_users SET
last_digest_sent = NULL WHERE id = ?"); last_digest_sent = NULL WHERE id = ?");
$sth->execute([$_SESSION['uid']]); $sth->execute([$_SESSION['uid']]);
} }
@ -205,7 +205,9 @@ class Pref_Prefs extends Handler_Protected {
break; break;
} }
set_pref($pref_name, $value); if (Prefs::is_valid($pref_name)) {
Prefs::set($pref_name, $value, $_SESSION["uid"], $_SESSION["profile"] ?? null);
}
} }
if ($need_reload) { if ($need_reload) {
@ -260,17 +262,9 @@ class Pref_Prefs extends Handler_Protected {
} }
function resetconfig() { function resetconfig() {
Prefs::reset($_SESSION["uid"], $_SESSION["profile"]);
$_SESSION["prefs_op_result"] = "reset-to-defaults"; print "PREFS_NEED_RELOAD";
$sth = $this->pdo->prepare("DELETE FROM ttrss_user_prefs
WHERE (profile = :profile OR (:profile IS NULL AND profile IS NULL))
AND owner_uid = :uid");
$sth->execute([":profile" => $_SESSION['profile'], ":uid" => $_SESSION['uid']]);
$this->_init_user_prefs($_SESSION["uid"], $_SESSION["profile"]);
echo __("Your preferences are now set to default values.");
} }
private function index_auth_personal() { private function index_auth_personal() {
@ -568,14 +562,11 @@ class Pref_Prefs extends Handler_Protected {
if ($profile) { if ($profile) {
print_notice(__("Some preferences are only available in default profile.")); print_notice(__("Some preferences are only available in default profile."));
$this->_init_user_prefs($_SESSION["uid"], $profile);
} else {
$this->_init_user_prefs($_SESSION["uid"]);
} }
$prefs_available = []; $prefs_available = [];
$sth = $this->pdo->prepare("SELECT DISTINCT /*$sth = $this->pdo->prepare("SELECT DISTINCT
ttrss_user_prefs.pref_name,value,type_name, ttrss_user_prefs.pref_name,value,type_name,
ttrss_prefs_sections.order_id, ttrss_prefs_sections.order_id,
def_value,section_id def_value,section_id
@ -586,17 +577,17 @@ class Pref_Prefs extends Handler_Protected {
ttrss_user_prefs.pref_name = ttrss_prefs.pref_name AND ttrss_user_prefs.pref_name = ttrss_prefs.pref_name AND
owner_uid = :uid owner_uid = :uid
ORDER BY ttrss_prefs_sections.order_id,pref_name"); ORDER BY ttrss_prefs_sections.order_id,pref_name");
$sth->execute([":uid" => $_SESSION['uid'], ":profile" => $profile]); $sth->execute([":uid" => $_SESSION['uid'], ":profile" => $profile]);*/
$listed_boolean_prefs = []; $listed_boolean_prefs = [];
while ($line = $sth->fetch()) { foreach (Prefs::get_all($_SESSION["uid"], $profile) as $line) {
if (in_array($line["pref_name"], $this->pref_blacklist)) { if (in_array($line["pref_name"], $this->pref_blacklist)) {
continue; continue;
} }
if ($profile && in_array($line["pref_name"], $this->profile_blacklist)) { if ($profile && in_array($line["pref_name"], Prefs::_PROFILE_BLACKLIST)) {
continue; continue;
} }
@ -607,7 +598,7 @@ class Pref_Prefs extends Handler_Protected {
continue; continue;
$prefs_available[$pref_name] = [ $prefs_available[$pref_name] = [
'type_name' => $line["type_name"], 'type_hint' => $line['type_hint'],
'value' => $line['value'], 'value' => $line['value'],
'help_text' => $this->_get_help_text($pref_name), 'help_text' => $this->_get_help_text($pref_name),
'short_desc' => $short_desc 'short_desc' => $short_desc
@ -640,7 +631,7 @@ class Pref_Prefs extends Handler_Protected {
print "</label>"; print "</label>";
$value = $item['value']; $value = $item['value'];
$type_name = $item['type_name']; $type_hint = $item['type_hint'];
if ($pref_name == "USER_LANGUAGE") { if ($pref_name == "USER_LANGUAGE") {
print \Controls\select_hash($pref_name, $value, get_translations(), print \Controls\select_hash($pref_name, $value, get_translations(),
@ -701,7 +692,7 @@ class Pref_Prefs extends Handler_Protected {
print \Controls\select_tag($pref_name, $value, Pref_Feeds::get_ts_languages()); print \Controls\select_tag($pref_name, $value, Pref_Feeds::get_ts_languages());
} else if ($type_name == "bool") { } else if ($type_hint == Config::T_BOOL) {
array_push($listed_boolean_prefs, $pref_name); array_push($listed_boolean_prefs, $pref_name);
@ -726,7 +717,7 @@ class Pref_Prefs extends Handler_Protected {
$attributes = ["required" => true]; $attributes = ["required" => true];
} }
if ($type_name == 'integer') if ($type_hint == Config::T_INT)
print \Controls\number_spinner_tag($pref_name, $value, $attributes); print \Controls\number_spinner_tag($pref_name, $value, $attributes);
else else
print \Controls\input_tag($pref_name, $value, "text", $attributes); print \Controls\input_tag($pref_name, $value, "text", $attributes);
@ -757,7 +748,7 @@ class Pref_Prefs extends Handler_Protected {
$item['help_text'] .= ". " . T_sprintf("Current server time: %s", date("H:i")); $item['help_text'] .= ". " . T_sprintf("Current server time: %s", date("H:i"));
} else { } else {
$regexp = ($type_name == 'integer') ? 'regexp="^\d*$"' : ''; $regexp = ($type_hint == Config::T_INT) ? 'regexp="^\d*$"' : '';
print "<input dojoType=\"dijit.form.ValidationTextBox\" $regexp name=\"$pref_name\" value=\"$value\">"; print "<input dojoType=\"dijit.form.ValidationTextBox\" $regexp name=\"$pref_name\" value=\"$value\">";
} }
@ -1370,8 +1361,6 @@ class Pref_Prefs extends Handler_Protected {
static function _init_user_prefs($uid, $profile = false) { static function _init_user_prefs($uid, $profile = false) {
Prefs::initialize($uid, $profile);
if (get_schema_version() < 63) $profile_qpart = ""; if (get_schema_version() < 63) $profile_qpart = "";
$pdo = Db::pdo(); $pdo = Db::pdo();

@ -114,7 +114,7 @@ class Prefs {
Prefs::_PREFS_MIGRATED => [ false, Config::T_BOOL ], Prefs::_PREFS_MIGRATED => [ false, Config::T_BOOL ],
]; ];
private const _PROFILE_BLACKLIST = [ const _PROFILE_BLACKLIST = [
Prefs::ALLOW_DUPLICATE_POSTS, Prefs::ALLOW_DUPLICATE_POSTS,
Prefs::PURGE_OLD_DAYS, Prefs::PURGE_OLD_DAYS,
Prefs::PURGE_UNREAD_ARTICLES, Prefs::PURGE_UNREAD_ARTICLES,
@ -143,18 +143,73 @@ class Prefs {
return self::$instance; return self::$instance;
} }
static function is_valid(string $pref_name) {
return isset(self::_DEFAULTS[$pref_name]);
}
function __construct() { function __construct() {
$this->pdo = Db::pdo(); $this->pdo = Db::pdo();
/*$ref = new ReflectionClass(get_class($this)); if (!empty($_SESSION["uid"])) {
$owner_uid = (int) $_SESSION["uid"];
$profile_id = $_SESSION["profile"] ?? null;
$this->migrate($owner_uid, $profile_id);
$this->cache_all($owner_uid, $profile_id);
};
}
static function get_all(int $owner_uid, int $profile_id = null) {
return self::get_instance()->_get_all($owner_uid, $profile_id);
}
private function _get_all(int $owner_uid, int $profile_id = null) {
$rv = [];
$ref = new ReflectionClass(get_class($this));
foreach ($ref->getConstants() as $const => $cvalue) { foreach ($ref->getConstants() as $const => $cvalue) {
if (isset($this::_DEFAULTS[$const])) { if (isset($this::_DEFAULTS[$const])) {
list ($defval, $deftype) = $this::_DEFAULTS[$const]; list ($def_val, $type_hint) = $this::_DEFAULTS[$const];
$this->cache[$cvalue] = [ Config::cast_to($defval, $deftype), $deftype ]; array_push($rv, [
"pref_name" => $const,
"value" => $this->_get($const, $owner_uid, $profile_id),
"type_hint" => $type_hint,
]);
} }
}*/ }
return $rv;
}
private function cache_all(int $owner_uid, $profile_id = null) {
if (!$profile_id) $profile_id = null;
// fill cache with defaults
$ref = new ReflectionClass(get_class($this));
foreach ($ref->getConstants() as $const => $cvalue) {
if (isset($this::_DEFAULTS[$const])) {
list ($def_val, $type_hint) = $this::_DEFAULTS[$const];
$this->_set_cache($const, $def_val, $owner_uid, $profile_id);
}
}
// fill in any overrides from the database
$sth = $this->pdo->prepare("SELECT pref_name, value FROM ttrss_user_prefs2
WHERE owner_uid = :uid AND
(profile = :profile OR (:profile IS NULL AND profile IS NULL))");
$sth->execute(["uid" => $owner_uid, "profile" => $profile_id]);
while ($row = $sth->fetch()) {
$this->_set_cache($row["pref_name"], $row["value"], $owner_uid, $profile_id);
}
}
static function get(string $pref_name, int $owner_uid, int $profile_id = null) {
return self::get_instance()->_get($pref_name, $owner_uid, $profile_id);
} }
private function _get(string $pref_name, int $owner_uid, int $profile_id = null) { private function _get(string $pref_name, int $owner_uid, int $profile_id = null) {
@ -184,6 +239,8 @@ class Prefs {
return $def_val; return $def_val;
} }
} }
} else {
user_error("Attempt to get invalid preference key: $pref_name (UID: $owner_uid, profile: $profile_id)", E_USER_WARNING);
} }
return null; return null;
@ -204,13 +261,38 @@ class Prefs {
$this->cache[$cache_key] = $value; $this->cache[$cache_key] = $value;
} }
private function _set(string $pref_name, $value, int $owner_uid, int $profile_id = null) { static function set(string $pref_name, $value, int $owner_uid, int $profile_id = null, bool $strip_tags = true) {
return self::get_instance()->_set($pref_name, $value, $owner_uid, $profile_id);
}
private function _delete(string $pref_name, int $owner_uid, int $profile_id = null) {
$sth = $this->pdo->prepare("DELETE FROM ttrss_user_prefs2
WHERE pref_name = :name AND owner_uid = :uid AND
(profile = :profile OR (:profile IS NULL AND profile IS NULL))");
return $sth->execute(["uid" => $owner_uid, "profile" => $profile_id, "name" => $pref_name ]);
}
private function _set(string $pref_name, $value, int $owner_uid, int $profile_id = null, bool $strip_tags = true) {
if (!$profile_id) $profile_id = null; if (!$profile_id) $profile_id = null;
if ($profile_id && in_array($pref_name, self::_PROFILE_BLACKLIST)) if ($profile_id && in_array($pref_name, self::_PROFILE_BLACKLIST))
return false; return false;
if (isset(self::_DEFAULTS[$pref_name])) { if (isset(self::_DEFAULTS[$pref_name])) {
list ($def_val, $type_hint) = self::_DEFAULTS[$pref_name];
if ($strip_tags)
$value = trim(strip_tags($value));
$value = Config::cast_to($value, $type_hint);
// is this a good idea or not? probably not (user-set value remains user-set even if its at default)
//if ($value == $def_val)
// return $this->_delete($pref_name, $owner_uid, $profile_id);
if ($value == $this->_get($pref_name, $owner_uid, $profile_id))
return false;
$this->_set_cache($pref_name, $value, $owner_uid, $profile_id); $this->_set_cache($pref_name, $value, $owner_uid, $profile_id);
@ -237,6 +319,8 @@ class Prefs {
return $sth->execute(["uid" => $owner_uid, "profile" => $profile_id, "name" => $pref_name, "value" => $value ]); return $sth->execute(["uid" => $owner_uid, "profile" => $profile_id, "name" => $pref_name, "value" => $value ]);
} }
} }
} else {
user_error("Attempt to set invalid preference key: $pref_name (UID: $owner_uid, profile: $profile_id)", E_USER_WARNING);
} }
return false; return false;
@ -271,9 +355,13 @@ class Prefs {
} }
} }
static function initialize(int $owner_uid, int $profile_id = null) { static function reset(int $owner_uid, int $profile_id = null) {
$instance = self::get_instance(); if (!$profile_id) $profile_id = null;
$sth = Db::pdo()->prepare("DELETE FROM ttrss_user_prefs2
WHERE owner_uid = :uid AND pref_name != :mig_key AND
(profile = :profile OR (:profile IS NULL AND profile IS NULL))");
$instance->migrate($owner_uid, $profile_id); $sth->execute(["uid" => $owner_uid, "mig_key" => self::_PREFS_MIGRATED, "profile" => $profile_id]);
} }
} }

@ -91,7 +91,6 @@ class RPC extends Handler_Protected {
else else
$label_ids = array_map("intval", clean($_REQUEST["label_ids"] ?? [])); $label_ids = array_map("intval", clean($_REQUEST["label_ids"] ?? []));
// @phpstan-ignore-next-line
$counters = is_array($feed_ids) ? Counters::get_conditional($feed_ids, $label_ids) : Counters::get_all(); $counters = is_array($feed_ids) ? Counters::get_conditional($feed_ids, $label_ids) : Counters::get_all();
$reply = [ $reply = [
@ -394,7 +393,7 @@ class RPC extends Handler_Protected {
$params["is_default_pw"] = Pref_Prefs::isdefaultpassword(); $params["is_default_pw"] = Pref_Prefs::isdefaultpassword();
$params["label_base_index"] = LABEL_BASE_INDEX; $params["label_base_index"] = LABEL_BASE_INDEX;
$theme = get_pref( "USER_CSS_THEME", false, false); $theme = get_pref("USER_CSS_THEME", false);
$params["theme"] = theme_exists($theme) ? $theme : ""; $params["theme"] = theme_exists($theme) ? $theme : "";
$params["plugins"] = implode(", ", PluginHost::getInstance()->get_plugin_names()); $params["plugins"] = implode(", ", PluginHost::getInstance()->get_plugin_names());

@ -43,8 +43,6 @@ class UserHelper {
$_SESSION["user_agent"] = sha1($_SERVER['HTTP_USER_AGENT']); $_SESSION["user_agent"] = sha1($_SERVER['HTTP_USER_AGENT']);
$_SESSION["pwd_hash"] = $row["pwd_hash"]; $_SESSION["pwd_hash"] = $row["pwd_hash"];
Pref_Prefs::_init_user_prefs($_SESSION["uid"]);
return true; return true;
} }
@ -66,8 +64,6 @@ class UserHelper {
$_SESSION["ip_address"] = UserHelper::get_user_ip(); $_SESSION["ip_address"] = UserHelper::get_user_ip();
Pref_Prefs::_init_user_prefs($_SESSION["uid"]);
return true; return true;
} }
} }

@ -42,12 +42,14 @@
define('SUBSTRING_FOR_DATE', 'SUBSTRING'); define('SUBSTRING_FOR_DATE', 'SUBSTRING');
} }
function get_pref($pref_name, $user_id = false, $die_on_error = false) { function get_pref(string $pref_name, int $owner_uid = null) {
return Db_Prefs::get()->read($pref_name, $user_id, $die_on_error); return Prefs::get($pref_name, $owner_uid ? $owner_uid : $_SESSION["uid"]);
//return Db_Prefs::get()->read($pref_name, $user_id, $die_on_error);
} }
function set_pref($pref_name, $value, $user_id = false, $strip_tags = true) { function set_pref(string $pref_name, $value, int $owner_uid = null, bool $strip_tags = true) {
return Db_Prefs::get()->write($pref_name, $value, $user_id, $strip_tags); return Prefs::set($pref_name, $value, $owner_uid ? $owner_uid : $_SESSION["uid"], $_SESSION["profile"] ?? null, $strip_tags);
//return Db_Prefs::get()->write($pref_name, $value, $user_id, $strip_tags);
} }
function get_translations() { function get_translations() {

@ -21,7 +21,7 @@ class Auth_Remote extends Auth_Base {
$cert_serial = get_ssl_certificate_id(); $cert_serial = get_ssl_certificate_id();
if ($cert_serial) { if ($cert_serial) {
$sth = $this->pdo->prepare("SELECT login FROM ttrss_user_prefs, ttrss_users $sth = $this->pdo->prepare("SELECT login FROM ttrss_user_prefs2, ttrss_users
WHERE pref_name = 'SSL_CERT_SERIAL' AND value = ? AND WHERE pref_name = 'SSL_CERT_SERIAL' AND value = ? AND
owner_uid = ttrss_users.id"); owner_uid = ttrss_users.id");
$sth->execute([$cert_serial]); $sth->execute([$cert_serial]);

Loading…
Cancel
Save