ttrss/backend.php

545 lines
14 KiB
PHP
Raw Normal View History

2006-08-19 09:04:45 +02:00
<?php
error_reporting(E_ERROR | E_WARNING | E_PARSE);
2007-05-19 15:47:37 +02:00
/* remove ill effects of magic quotes */
if (get_magic_quotes_gpc()) {
$_REQUEST = array_map('stripslashes', $_REQUEST);
2007-05-19 15:47:37 +02:00
$_POST = array_map('stripslashes', $_POST);
$_REQUEST = array_map('stripslashes', $_REQUEST);
$_COOKIE = array_map('stripslashes', $_COOKIE);
}
2006-03-02 09:10:43 +01:00
require_once "sessions.php";
2006-10-01 12:57:50 +02:00
require_once "modules/backend-rpc.php";
2007-03-02 12:34:34 +01:00
/* if ($_REQUEST["debug"]) {
define('DEFAULT_ERROR_LEVEL', E_ALL);
} else {
define('DEFAULT_ERROR_LEVEL', E_ERROR | E_WARNING | E_PARSE);
}
error_reporting(DEFAULT_ERROR_LEVEL); */
require_once "sanity_check.php";
require_once "config.php";
require_once "db.php";
require_once "db-prefs.php";
require_once "functions.php";
2007-03-02 12:34:34 +01:00
no_cache_incantation();
if (ENABLE_TRANSLATIONS == true) {
startup_gettext();
}
2007-03-02 12:34:34 +01:00
2007-03-02 11:48:46 +01:00
$script_started = getmicrotime();
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
if (!$link) {
if (DB_TYPE == "mysql") {
print mysql_error();
}
// PG seems to display its own errors just fine by default.
return;
}
init_connection($link);
2007-03-02 11:48:46 +01:00
$op = $_REQUEST["op"];
$subop = $_REQUEST["subop"];
$mode = $_REQUEST["mode"];
2007-03-02 11:48:46 +01:00
2006-10-01 12:57:50 +02:00
$print_exec_time = false;
2006-08-20 14:33:37 +02:00
if ((!$op || $op == "rpc" || $op == "rss" ||
($op == "view" && $mode != "zoom") ||
2007-08-09 15:09:34 +02:00
$op == "digestSend" || $op == "viewfeed" || $op == "publish" ||
2006-07-31 13:35:50 +02:00
$op == "globalUpdateFeeds") && !$_REQUEST["noxml"]) {
2008-05-20 08:01:19 +02:00
header("Content-Type: application/xml; charset=utf-8");
if (ENABLE_GZIP_OUTPUT) {
ob_start("ob_gzhandler");
}
} else {
if (!$_REQUEST["noxml"]) {
header("Content-Type: text/html; charset=utf-8");
} else {
header("Content-Type: text/plain; charset=utf-8");
}
}
if (!$op) {
header("Content-Type: application/xml");
print_error_xml(7); exit;
}
if (SINGLE_USER_MODE) {
authenticate_user($link, "admin", null);
}
2007-03-02 11:48:46 +01:00
if (!($_SESSION["uid"] && validate_session($link)) && $op != "globalUpdateFeeds"
&& $op != "rss" && $op != "getUnread" && $op != "publish" && $op != "getProfiles") {
if ($op == "rpc" || $op == "viewfeed" || $op == "view") {
print_error_xml(6); die;
} else {
print "
<html><body>
<p>Error: Not logged in.</p>
<script type=\"text/javascript\">
if (parent.window != 'undefined') {
2007-03-01 10:43:54 +01:00
parent.window.location = \"tt-rss.php\";
} else {
2007-03-01 10:43:54 +01:00
window.location = \"tt-rss.php\";
}
</script>
</body></html>
";
}
exit;
}
$purge_intervals = array(
2007-03-05 09:45:38 +01:00
0 => __("Use default"),
-1 => __("Never purge"),
5 => __("1 week old"),
14 => __("2 weeks old"),
31 => __("1 month old"),
60 => __("2 months old"),
90 => __("3 months old"));
$update_intervals = array(
2008-08-06 09:51:28 +02:00
0 => __("Default interval"),
2007-03-05 09:45:38 +01:00
-1 => __("Disable updates"),
2007-06-01 02:55:53 +02:00
15 => __("Each 15 minutes"),
2007-03-05 09:45:38 +01:00
30 => __("Each 30 minutes"),
60 => __("Hourly"),
240 => __("Each 4 hours"),
720 => __("Each 12 hours"),
1440 => __("Daily"),
10080 => __("Weekly"));
2008-01-25 18:46:01 +01:00
$update_methods = array(
2008-08-06 09:51:28 +02:00
0 => __("Default"),
2008-01-25 17:42:09 +01:00
1 => __("Magpie"),
2 => __("SimplePie"));
2008-01-25 18:46:01 +01:00
if (ENABLE_SIMPLEPIE) {
$update_methods[0] .= ' (SimplePie)';
} else {
$update_methods[0] .= ' (Magpie)';
}
$access_level_names = array(
2007-03-05 09:45:38 +01:00
0 => __("User"),
5 => __("Power User"),
2007-03-05 09:45:38 +01:00
10 => __("Administrator"));
2006-10-01 12:19:39 +02:00
require_once "modules/pref-prefs.php";
require_once "modules/popup-dialog.php";
require_once "modules/help.php";
require_once "modules/pref-feeds.php";
require_once "modules/pref-filters.php";
require_once "modules/pref-labels.php";
require_once "modules/pref-users.php";
2005-12-22 13:53:28 +01:00
if (!sanity_check($link)) { return; }
switch($op) { // Select action according to $op value.
case "rpc":
// Handle remote procedure calls.
handle_rpc_request($link);
break; // rpc
case "feeds":
2008-05-20 08:48:54 +02:00
if (ENABLE_GZIP_OUTPUT) {
ob_start("ob_gzhandler");
}
$tags = $_REQUEST["tags"];
$subop = $_REQUEST["subop"];
switch($subop) {
case "catchupAll":
db_query($link, "UPDATE ttrss_user_entries SET
last_read = NOW(),unread = false WHERE owner_uid = " . $_SESSION["uid"]);
ccache_zero_all($link, $_SESSION["uid"]);
break;
case "collapse":
$cat_id = db_escape_string($_REQUEST["cid"]);
2009-12-24 13:36:02 +01:00
toggle_collapse_cat($link, $cat_id);
return;
break;
2008-08-29 10:01:53 +02:00
case "catsortreset":
db_query($link, "UPDATE ttrss_feed_categories
SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"]);
return;
break;
case "catsort":
$corder = db_escape_string($_REQUEST["corder"]);
2008-08-29 10:01:53 +02:00
$cats = split(",", $corder);
for ($i = 0; $i < count($cats); $i++) {
$cat_id = $cats[$i];
if ($cat_id > 0) {
db_query($link, "UPDATE ttrss_feed_categories
SET order_id = '$i' WHERE id = '$cat_id' AND
owner_uid = " . $_SESSION["uid"]);
}
}
return;
break;
}
$_SESSION["viewfeed:counters_stamp"] = time();
outputFeedList($link, $tags);
break; // feeds
2005-08-21 12:13:10 +02:00
case "view":
$id = db_escape_string($_REQUEST["id"]);
$cids = split(",", db_escape_string($_REQUEST["cids"]));
$mode = db_escape_string($_REQUEST["mode"]);
$omode = db_escape_string($_REQUEST["omode"]);
$csync = $_REQUEST["csync"];
print "<reply>";
// in prefetch mode we only output requested cids, main article
// just gets marked as read (it already exists in client cache)
if ($mode == "") {
outputArticleXML($link, $id, false);
} else if ($mode == "zoom") {
outputArticleXML($link, $id, false, true, true);
} else {
catchupArticleById($link, $id, 0);
}
if (!$_SESSION["bw_limit"]) {
foreach ($cids as $cid) {
if ($cid) {
outputArticleXML($link, $cid, false, false);
}
}
}
2009-01-16 16:37:42 +01:00
// if (get_pref($link, "SYNC_COUNTERS") || ($mode == "prefetch" && $csync)) {
if (time() - $_SESSION["view:counters_stamp"] > 5 && $mode == "prefetch") {
print "<counters>";
getAllCounters($link, $omode);
print "</counters>";
$_SESSION["view:counters_stamp"] = time();
}
2007-05-15 07:41:48 +02:00
print "</reply>";
break; // view
2005-08-21 12:13:10 +02:00
case "viewfeed":
2005-08-21 12:13:10 +02:00
$print_exec_time = true;
$timing_info = getmicrotime();
print "<reply>";
if ($_REQUEST["debug"]) $timing_info = print_checkpoint("0", $timing_info);
$omode = db_escape_string($_REQUEST["omode"]);
$feed = db_escape_string($_REQUEST["feed"]);
$subop = db_escape_string($_REQUEST["subop"]);
$view_mode = db_escape_string($_REQUEST["view_mode"]);
$limit = (int) get_pref($link, "DEFAULT_ARTICLE_LIMIT");
$cat_view = db_escape_string($_REQUEST["cat"]);
$next_unread_feed = db_escape_string($_REQUEST["nuf"]);
$offset = db_escape_string($_REQUEST["skip"]);
$vgroup_last_feed = db_escape_string($_REQUEST["vgrlf"]);
$csync = $_REQUEST["csync"];
$order_by = db_escape_string($_REQUEST["order_by"]);
/* Updating a label ccache means recalculating all of the caches
* so for performance reasons we don't do that here */
// if (time() - $_SESSION["viewfeed:ccache_update_stamp"] > 120) {
2009-01-17 18:27:37 +01:00
if ($feed >= 0) {
ccache_update($link, $feed, $_SESSION["uid"], $cat_view);
}
$_SESSION["viewfeed:ccache_update_stamp"] = time();
// }
set_pref($link, "_DEFAULT_VIEW_MODE", $view_mode);
set_pref($link, "_DEFAULT_VIEW_LIMIT", $limit);
set_pref($link, "_DEFAULT_VIEW_ORDER_BY", $order_by);
if (!$cat_view && preg_match("/^[0-9][0-9]*$/", $feed)) {
db_query($link, "UPDATE ttrss_feeds SET last_viewed = NOW()
WHERE id = '$feed' AND owner_uid = ".$_SESSION["uid"]);
}
if (!$next_unread_feed) {
print "<headlines id=\"$feed\" is_cat=\"$cat_view\"><![CDATA[";
} else {
print "<headlines id=\"$next_unread_feed\" is_cat=\"$cat_view\"><![CDATA[";
}
$override_order = false;
switch ($order_by) {
case "date":
if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
$override_order = "updated";
} else {
$override_order = "updated DESC";
}
break;
2007-01-26 06:36:19 +01:00
case "title":
$override_order = "updated DESC";
break;
2005-08-21 15:46:43 +02:00
case "score":
$override_order = "score DESC";
break;
}
2007-11-21 09:23:34 +01:00
$ret = outputHeadlinesList($link, $feed, $subop,
$view_mode, $limit, $cat_view, $next_unread_feed, $offset,
$vgroup_last_feed, $override_order);
$topmost_article_ids = $ret[0];
$headlines_count = $ret[1];
$returned_feed = $ret[2];
$disable_cache = $ret[3];
$vgroup_last_feed = $ret[4];
print "]]></headlines>";
print "<headlines-count value=\"$headlines_count\"/>";
print "<vgroup-last-feed value=\"$vgroup_last_feed\"/>";
2009-01-17 17:17:38 +01:00
$headlines_unread = ccache_find($link, $returned_feed, $_SESSION["uid"],
$cat_view, true);
if ($headlines_unread == -1) {
$headlines_unread = getFeedUnread($link, $returned_feed, $cat_view);
}
print "<headlines-unread value=\"$headlines_unread\"/>";
printf("<disable-cache value=\"%d\"/>", $disable_cache);
if ($_REQUEST["debug"]) $timing_info = print_checkpoint("10", $timing_info);
if (is_array($topmost_article_ids) && !get_pref($link, 'COMBINED_DISPLAY_MODE') && !$_SESSION["bw_limit"]) {
print "<articles>";
foreach ($topmost_article_ids as $id) {
outputArticleXML($link, $id, $feed, false);
}
print "</articles>";
}
if ($_REQUEST["debug"]) $timing_info = print_checkpoint("20", $timing_info);
2009-01-16 16:37:42 +01:00
// if (get_pref($link, "SYNC_COUNTERS") ||
// time() - $_SESSION["get_all_counters_stamp"] > $viewfeed_ctr_interval) {
// print "<counters>";
// getAllCounters($link, $omode, $feed);
// print "</counters>";
// }
if (get_pref($link, 'COMBINED_DISPLAY_MODE') || $subop ||
time() - $_SESSION["viewfeed:counters_stamp"] > 5) {
if (!$offset) {
print "<counters>";
getAllCounters($link, $omode, $feed);
print "</counters>";
$_SESSION["viewfeed:counters_stamp"] = time();
}
}
if ($_REQUEST["debug"]) $timing_info = print_checkpoint("30", $timing_info);
print_runtime_info($link);
2007-06-07 10:06:36 +02:00
print "</reply>";
break; // viewfeed
2005-08-21 12:13:10 +02:00
case "pref-feeds":
module_pref_feeds($link);
break; // pref-feeds
2005-12-30 06:29:24 +01:00
case "pref-filters":
module_pref_filters($link);
break; // pref-filters
2005-12-29 19:25:07 +01:00
case "pref-labels":
module_pref_labels($link);
break; // pref-labels
case "pref-prefs":
module_pref_prefs($link);
break; // pref-prefs
2006-10-01 12:19:39 +02:00
case "pref-users":
module_pref_users($link);
break; // prefs-users
2005-12-29 19:25:07 +01:00
case "help":
module_help($link);
break; // help
2005-12-29 19:25:07 +01:00
case "dlg":
module_popup_dialog($link);
break; // dlg
2005-12-30 06:29:24 +01:00
case "pref-pub-items":
module_pref_pub_items($link);
break; // pref-pub-items
2007-08-09 14:45:30 +02:00
case "globalUpdateFeeds":
// update feeds of all users, may be used anonymously
2007-08-09 14:45:30 +02:00
print "<!--";
// Update all feeds needing a update.
update_daemon_common($link, 0, true, true);
print " -->";
2005-12-30 06:29:24 +01:00
print "<rpc-reply>
<message msg=\"All feeds updated\"/>
</rpc-reply>";
break; // globalUpdateFeeds
case "pref-feed-browser":
module_pref_feed_browser($link);
break; // pref-feed-browser
2005-12-30 06:17:23 +01:00
case "publish":
$key = db_escape_string($_REQUEST["key"]);
$limit = (int)db_escape_string($_REQUEST["limit"]);
2007-08-09 15:09:34 +02:00
$result = db_query($link, "SELECT login, owner_uid
FROM ttrss_user_prefs, ttrss_users WHERE
pref_name = '_PREFS_PUBLISH_KEY' AND
value = '$key' AND
ttrss_users.id = owner_uid");
2007-08-09 15:09:34 +02:00
if (db_num_rows($result) == 1) {
$owner = db_fetch_result($result, 0, "owner_uid");
$login = db_fetch_result($result, 0, "login");
2007-08-09 15:09:34 +02:00
generate_syndicated_feed($link, $owner, -2, false, $limit);
2007-08-09 15:09:34 +02:00
} else {
print "<error>User not found</error>";
}
break; // publish
2006-07-31 13:35:50 +02:00
case "rss":
$feed = db_escape_string($_REQUEST["id"]);
$user = db_escape_string($_REQUEST["user"]);
$pass = db_escape_string($_REQUEST["pass"]);
$is_cat = $_REQUEST["is_cat"] != false;
$limit = (int)db_escape_string($_REQUEST["limit"]);
$search = db_escape_string($_REQUEST["q"]);
$match_on = db_escape_string($_REQUEST["m"]);
$search_mode = db_escape_string($_REQUEST["smode"]);
2006-07-31 13:35:50 +02:00
if (SINGLE_USER_MODE) {
authenticate_user($link, "admin", null);
}
if (!$_SESSION["uid"] && $user && $pass) {
authenticate_user($link, $user, $pass);
}
2006-07-31 13:35:50 +02:00
if ($_SESSION["uid"] ||
http_authenticate_user($link)) {
2007-08-09 15:09:34 +02:00
generate_syndicated_feed($link, 0, $feed, $is_cat, $limit,
$search, $search_mode, $match_on);
}
break; // rss
2006-07-31 13:35:50 +02:00
case "getUnread":
$login = db_escape_string($_REQUEST["login"]);
header("Content-Type: text/plain; charset=utf-8");
$result = db_query($link, "SELECT id FROM ttrss_users WHERE login = '$login'");
2006-08-20 14:33:37 +02:00
if (db_num_rows($result) == 1) {
$uid = db_fetch_result($result, 0, "id");
print getGlobalUnread($link, $uid);
} else {
print "-1;User not found";
}
2006-08-20 14:33:37 +02:00
$print_exec_time = false;
break; // getUnread
2006-08-21 08:43:38 +02:00
case "digestTest":
header("Content-Type: text/plain");
print_r(prepare_headlines_digest($link, $_SESSION["uid"]));
$print_exec_time = false;
break; // digestTest
2006-08-21 06:03:26 +02:00
case "digestSend":
header("Content-Type: text/plain");
send_headlines_digests($link);
$print_exec_time = false;
break; // digestSend
2006-08-20 14:33:37 +02:00
case "getProfiles":
$login = db_escape_string($_REQUEST["login"]);
$password = db_escape_string($_REQUEST["password"]);
if (authenticate_user($link, $login, $password)) {
$result = db_query($link, "SELECT * FROM ttrss_settings_profiles
WHERE owner_uid = " . $_SESSION["uid"] . " ORDER BY title");
print "<select style='width: 100%' name='profile'>";
print "<option value='0'>" . __("Default profile") . "</option>";
while ($line = db_fetch_assoc($result)) {
$id = $line["id"];
$title = $line["title"];
print "<option value='$id'>$title</option>";
}
print "</select>";
$_SESSION = array();
break;
}
} // Select action according to $op value.
// We close the connection to database.
2005-09-07 14:42:49 +02:00
db_close($link);
2005-08-21 12:13:10 +02:00
?>
2006-08-20 14:33:37 +02:00
<?php if ($print_exec_time) { ?>
2006-08-19 09:04:45 +02:00
<!-- <?php echo sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
<?php } ?>