1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-28 12:10:52 +02:00
ttrss/db-prefs.php

138 lines
3.4 KiB
PHP
Raw Normal View History

2006-08-19 09:04:45 +02:00
<?php
2005-11-16 17:57:08 +01:00
require_once "config.php";
require_once "db.php";
2009-12-16 12:36:37 +01:00
if (!defined('DISABLE_SESSIONS')) {
2006-02-11 14:52:17 +01:00
if (!$_SESSION["prefs_cache"])
$_SESSION["prefs_cache"] = array();
}
2007-02-24 18:16:33 +01:00
function get_pref($link, $pref_name, $user_id = false, $die_on_error = false) {
2005-11-16 17:57:08 +01:00
$pref_name = db_escape_string($pref_name);
$prefs_cache = true;
2010-11-05 15:16:29 +01:00
$profile = false;
2005-11-16 17:57:08 +01:00
if (!$user_id) {
$user_id = $_SESSION["uid"];
2010-11-05 15:16:29 +01:00
@$profile = $_SESSION["profile"];
} else {
$user_id = sprintf("%d", $user_id);
$prefs_cache = false;
}
2006-04-20 07:16:28 +02:00
if ($profile) {
2010-01-13 19:30:17 +01:00
$profile_qpart = "profile = '$profile' AND";
} else {
2010-01-13 19:30:17 +01:00
$profile_qpart = "profile IS NULL AND";
}
2010-01-13 19:30:17 +01:00
if (get_schema_version($link) < 63) $profile_qpart = "";
if ($prefs_cache && !defined('DISABLE_SESSIONS') && !SINGLE_USER_MODE) {
2010-11-05 15:16:29 +01:00
if ($_SESSION["prefs_cache"] && @$_SESSION["prefs_cache"][$pref_name]) {
2006-04-20 07:16:28 +02:00
$tuple = $_SESSION["prefs_cache"][$pref_name];
return convert_pref_type($tuple["value"], $tuple["type"]);
}
}
2005-11-16 18:09:27 +01:00
$result = db_query($link, "SELECT
value,ttrss_prefs_types.type_name as type_name
2005-11-18 06:17:17 +01:00
FROM
ttrss_user_prefs,ttrss_prefs,ttrss_prefs_types
WHERE
2010-01-13 19:30:17 +01:00
$profile_qpart
2005-11-18 06:17:17 +01:00
ttrss_user_prefs.pref_name = '$pref_name' AND
ttrss_prefs_types.id = type_id AND
owner_uid = '$user_id' AND
2005-11-18 06:17:17 +01:00
ttrss_user_prefs.pref_name = ttrss_prefs.pref_name");
2005-11-16 17:57:08 +01:00
if (db_num_rows($result) > 0) {
$value = db_fetch_result($result, 0, "value");
2005-11-16 18:09:27 +01:00
$type_name = db_fetch_result($result, 0, "type_name");
if (!defined('DISABLE_SESSIONS') && !SINGLE_USER_MODE) {
2006-04-20 07:16:28 +02:00
if ($user_id = $_SESSION["uid"]) {
$_SESSION["prefs_cache"][$pref_name]["type"] = $type_name;
$_SESSION["prefs_cache"][$pref_name]["value"] = $value;
}
2005-11-16 18:09:27 +01:00
}
2006-04-20 07:16:28 +02:00
2005-12-29 15:21:34 +01:00
return convert_pref_type($value, $type_name);
2005-11-16 18:09:27 +01:00
2005-11-16 17:57:08 +01:00
} else {
2006-05-22 13:35:18 +02:00
if ($die_on_error) {
die("Fatal error, unknown preferences key: $pref_name");
} else {
return null;
}
2005-11-16 17:57:08 +01:00
}
}
2005-12-29 15:21:34 +01:00
function convert_pref_type($value, $type_name) {
if ($type_name == "bool") {
return $value == "true";
} else if ($type_name == "integer") {
return sprintf("%d", $value);
} else {
return $value;
}
}
2010-01-13 16:48:00 +01:00
function set_pref($link, $key, $value, $user_id = false) {
$key = db_escape_string($key);
$value = db_escape_string($value);
if (!$user_id) {
$user_id = $_SESSION["uid"];
2010-11-05 15:16:29 +01:00
@$profile = $_SESSION["profile"];
} else {
$user_id = sprintf("%d", $user_id);
$prefs_cache = false;
}
if ($profile) {
2010-01-13 19:30:17 +01:00
$profile_qpart = "AND profile = '$profile'";
} else {
2010-01-13 19:33:31 +01:00
$profile_qpart = "AND profile IS NULL";
}
2010-01-13 19:30:17 +01:00
if (get_schema_version($link) < 63) $profile_qpart = "";
2010-01-11 12:06:19 +01:00
$result = db_query($link, "SELECT type_name
FROM ttrss_prefs,ttrss_prefs_types
WHERE pref_name = '$key' AND type_id = ttrss_prefs_types.id");
if (db_num_rows($result) > 0) {
$type_name = db_fetch_result($result, 0, "type_name");
if ($type_name == "bool") {
if ($value == "1" || $value == "true") {
$value = "true";
} else {
$value = "false";
}
} else if ($type_name == "integer") {
$value = sprintf("%d", $value);
}
if ($key == 'DEFAULT_ARTICLE_LIMIT' && $value == 0) {
2010-01-11 12:06:19 +01:00
$value = 30;
}
if ($key == 'USER_TIMEZONE' && $value == '') {
$value = 'UTC';
}
2010-01-11 12:06:19 +01:00
db_query($link, "UPDATE ttrss_user_prefs SET
value = '$value' WHERE pref_name = '$key'
2010-01-13 19:30:17 +01:00
$profile_qpart
2010-01-11 12:06:19 +01:00
AND owner_uid = " . $_SESSION["uid"]);
2010-01-11 12:06:19 +01:00
$_SESSION["prefs_cache"] = array();
}
}
2005-11-16 17:57:08 +01:00
?>