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";
|
|
|
|
|
2012-01-30 13:34:45 +01:00
|
|
|
if (!defined('DISABLE_SESSIONS') && !defined('PREFS_NO_CACHE')) {
|
2006-02-11 14:52:17 +01:00
|
|
|
if (!$_SESSION["prefs_cache"])
|
|
|
|
$_SESSION["prefs_cache"] = array();
|
|
|
|
}
|
2005-12-29 15:10:03 +01:00
|
|
|
|
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);
|
2007-10-30 07:35:16 +01:00
|
|
|
$prefs_cache = true;
|
2010-11-05 15:16:29 +01:00
|
|
|
$profile = false;
|
2005-11-16 17:57:08 +01:00
|
|
|
|
2005-11-21 08:11:21 +01:00
|
|
|
if (!$user_id) {
|
|
|
|
$user_id = $_SESSION["uid"];
|
2010-11-05 15:16:29 +01:00
|
|
|
@$profile = $_SESSION["profile"];
|
2005-11-21 08:11:21 +01:00
|
|
|
} else {
|
|
|
|
$user_id = sprintf("%d", $user_id);
|
2011-11-10 21:55:02 +01:00
|
|
|
//$prefs_cache = false;
|
2005-12-29 15:10:03 +01:00
|
|
|
}
|
2006-04-20 07:16:28 +02:00
|
|
|
|
2012-01-30 13:34:45 +01:00
|
|
|
if ($prefs_cache && !defined('DISABLE_SESSIONS') && !defined('PREFS_NO_CACHE')) {
|
2011-08-04 17:38:25 +02:00
|
|
|
if ($_SESSION["prefs_cache"] && @$_SESSION["prefs_cache"][$pref_name]) {
|
|
|
|
$tuple = $_SESSION["prefs_cache"][$pref_name];
|
|
|
|
return convert_pref_type($tuple["value"], $tuple["type"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-13 16:31:51 +01:00
|
|
|
if ($profile) {
|
2010-01-13 19:30:17 +01:00
|
|
|
$profile_qpart = "profile = '$profile' AND";
|
2010-01-13 16:31:51 +01:00
|
|
|
} else {
|
2010-01-13 19:30:17 +01:00
|
|
|
$profile_qpart = "profile IS NULL AND";
|
2010-01-13 16:31:51 +01:00
|
|
|
}
|
|
|
|
|
2010-01-13 19:30:17 +01:00
|
|
|
if (get_schema_version($link) < 63) $profile_qpart = "";
|
2010-01-13 16:31:51 +01:00
|
|
|
|
2011-08-04 17:38:25 +02:00
|
|
|
$result = db_query($link, "SELECT
|
|
|
|
value,ttrss_prefs_types.type_name as type_name
|
|
|
|
FROM
|
2005-11-18 06:17:17 +01:00
|
|
|
ttrss_user_prefs,ttrss_prefs,ttrss_prefs_types
|
2011-08-04 17:38:25 +02:00
|
|
|
WHERE
|
2010-01-13 19:30:17 +01:00
|
|
|
$profile_qpart
|
2011-08-04 17:38:25 +02:00
|
|
|
ttrss_user_prefs.pref_name = '$pref_name' AND
|
2005-11-18 06:17:17 +01:00
|
|
|
ttrss_prefs_types.id = type_id AND
|
2005-11-21 08:11:21 +01:00
|
|
|
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");
|
|
|
|
|
2011-11-11 07:01:56 +01:00
|
|
|
if (!defined('DISABLE_SESSIONS')) {
|
|
|
|
if ($user_id == $_SESSION["uid"]) {
|
2006-04-20 07:16:28 +02:00
|
|
|
$_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);
|
2011-08-04 17:38:25 +02: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) {
|
2011-08-04 17:38:25 +02:00
|
|
|
if ($type_name == "bool") {
|
|
|
|
return $value == "true";
|
|
|
|
} else if ($type_name == "integer") {
|
|
|
|
return sprintf("%d", $value);
|
2005-12-29 15:21:34 +01:00
|
|
|
} else {
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
}
|
2006-01-05 16:12:40 +01:00
|
|
|
|
2011-11-11 07:01:56 +01:00
|
|
|
function set_pref($link, $pref_name, $value, $user_id = false) {
|
|
|
|
$pref_name = db_escape_string($pref_name);
|
2006-01-05 16:12:40 +01:00
|
|
|
$value = db_escape_string($value);
|
|
|
|
|
2010-01-13 16:31:51 +01:00
|
|
|
if (!$user_id) {
|
|
|
|
$user_id = $_SESSION["uid"];
|
2010-11-05 15:16:29 +01:00
|
|
|
@$profile = $_SESSION["profile"];
|
2010-01-13 16:31:51 +01:00
|
|
|
} 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'";
|
2010-01-13 16:31:51 +01:00
|
|
|
} else {
|
2010-01-13 19:33:31 +01:00
|
|
|
$profile_qpart = "AND profile IS NULL";
|
2010-01-13 16:31:51 +01:00
|
|
|
}
|
|
|
|
|
2010-01-13 19:30:17 +01:00
|
|
|
if (get_schema_version($link) < 63) $profile_qpart = "";
|
|
|
|
|
2011-11-11 07:01:56 +01:00
|
|
|
$type_name = "";
|
|
|
|
$current_value = "";
|
2010-01-11 12:06:19 +01:00
|
|
|
|
2012-01-30 13:34:45 +01:00
|
|
|
if (!defined('DISABLE_SESSIONS') && !defined('PREFS_NO_CACHE')) {
|
2011-11-11 07:01:56 +01:00
|
|
|
if ($_SESSION["prefs_cache"] && @$_SESSION["prefs_cache"][$pref_name]) {
|
|
|
|
$type_name = $_SESSION["prefs_cache"][$pref_name]["type"];
|
|
|
|
$current_value = $_SESSION["prefs_cache"][$pref_name]["value"];
|
|
|
|
}
|
|
|
|
}
|
2010-01-11 12:06:19 +01:00
|
|
|
|
2011-11-11 07:01:56 +01:00
|
|
|
if (!$type_name) {
|
|
|
|
$result = db_query($link, "SELECT type_name
|
|
|
|
FROM ttrss_prefs,ttrss_prefs_types
|
|
|
|
WHERE pref_name = '$pref_name' AND type_id = ttrss_prefs_types.id");
|
|
|
|
|
|
|
|
if (db_num_rows($result) > 0)
|
|
|
|
$type_name = db_fetch_result($result, 0, "type_name");
|
|
|
|
} else if ($current_value == $value) {
|
|
|
|
return;
|
|
|
|
}
|
2010-01-11 12:06:19 +01:00
|
|
|
|
2011-11-11 07:01:56 +01:00
|
|
|
if ($type_name) {
|
2010-01-11 12:06:19 +01:00
|
|
|
if ($type_name == "bool") {
|
|
|
|
if ($value == "1" || $value == "true") {
|
|
|
|
$value = "true";
|
|
|
|
} else {
|
|
|
|
$value = "false";
|
|
|
|
}
|
|
|
|
} else if ($type_name == "integer") {
|
|
|
|
$value = sprintf("%d", $value);
|
|
|
|
}
|
|
|
|
|
2011-11-11 07:01:56 +01:00
|
|
|
if ($pref_name == 'DEFAULT_ARTICLE_LIMIT' && $value == 0) {
|
2010-01-11 12:06:19 +01:00
|
|
|
$value = 30;
|
|
|
|
}
|
|
|
|
|
2011-11-11 07:01:56 +01:00
|
|
|
if ($pref_name == 'USER_TIMEZONE' && $value == '') {
|
2010-11-12 16:51:46 +01:00
|
|
|
$value = 'UTC';
|
|
|
|
}
|
|
|
|
|
2011-08-04 17:38:25 +02:00
|
|
|
db_query($link, "UPDATE ttrss_user_prefs SET
|
2011-11-11 07:01:56 +01:00
|
|
|
value = '$value' WHERE pref_name = '$pref_name'
|
2010-01-13 19:30:17 +01:00
|
|
|
$profile_qpart
|
2010-01-11 12:06:19 +01:00
|
|
|
AND owner_uid = " . $_SESSION["uid"]);
|
2006-01-05 16:12:40 +01:00
|
|
|
|
2011-11-11 07:01:56 +01:00
|
|
|
if (!defined('DISABLE_SESSIONS')) {
|
|
|
|
if ($user_id == $_SESSION["uid"]) {
|
2011-11-10 21:55:02 +01:00
|
|
|
$_SESSION["prefs_cache"][$pref_name]["type"] = $type_name;
|
|
|
|
$_SESSION["prefs_cache"][$pref_name]["value"] = $value;
|
|
|
|
}
|
|
|
|
}
|
2010-01-11 12:06:19 +01:00
|
|
|
}
|
2006-01-05 16:12:40 +01:00
|
|
|
}
|
2005-11-16 17:57:08 +01:00
|
|
|
?>
|