2006-08-19 09:04:45 +02:00
|
|
|
<?php
|
2007-03-04 14:02:47 +01:00
|
|
|
error_reporting(E_ERROR | E_WARNING | E_PARSE);
|
|
|
|
|
2007-05-19 15:47:37 +02:00
|
|
|
/* remove ill effects of magic quotes */
|
|
|
|
|
2010-09-07 11:22:10 +02:00
|
|
|
if (get_magic_quotes_gpc()) {
|
2010-09-04 09:59:33 +02:00
|
|
|
function stripslashes_deep($value) {
|
|
|
|
$value = is_array($value) ?
|
|
|
|
array_map('stripslashes_deep', $value) : stripslashes($value);
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
$_POST = array_map('stripslashes_deep', $_POST);
|
|
|
|
$_GET = array_map('stripslashes_deep', $_GET);
|
|
|
|
$_COOKIE = array_map('stripslashes_deep', $_COOKIE);
|
|
|
|
$_REQUEST = array_map('stripslashes_deep', $_REQUEST);
|
2007-05-19 15:47:37 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
/* if ($_REQUEST["debug"]) {
|
2005-11-23 19:08:01 +01:00
|
|
|
define('DEFAULT_ERROR_LEVEL', E_ALL);
|
|
|
|
} else {
|
|
|
|
define('DEFAULT_ERROR_LEVEL', E_ERROR | E_WARNING | E_PARSE);
|
|
|
|
}
|
2006-03-21 08:09:18 +01:00
|
|
|
|
|
|
|
error_reporting(DEFAULT_ERROR_LEVEL); */
|
2005-11-23 19:08:01 +01:00
|
|
|
|
2006-03-27 18:08:51 +02:00
|
|
|
require_once "sanity_check.php";
|
|
|
|
require_once "config.php";
|
2006-03-31 07:18:55 +02:00
|
|
|
|
|
|
|
require_once "db.php";
|
|
|
|
require_once "db-prefs.php";
|
|
|
|
require_once "functions.php";
|
2006-03-27 18:08:51 +02:00
|
|
|
|
2007-03-02 12:34:34 +01:00
|
|
|
no_cache_incantation();
|
2007-05-19 06:46:29 +02:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2008-11-10 06:29:19 +01:00
|
|
|
init_connection($link);
|
2007-03-02 11:48:46 +01:00
|
|
|
|
|
|
|
$op = $_REQUEST["op"];
|
2010-01-13 16:31:51 +01:00
|
|
|
$subop = $_REQUEST["subop"];
|
2008-12-16 10:24:48 +01:00
|
|
|
$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
|
|
|
|
2008-12-16 10:24:48 +01: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");
|
|
|
|
}
|
|
|
|
|
2007-08-23 11:37:39 +02:00
|
|
|
} else {
|
|
|
|
if (!$_REQUEST["noxml"]) {
|
|
|
|
header("Content-Type: text/html; charset=utf-8");
|
|
|
|
} else {
|
|
|
|
header("Content-Type: text/plain; charset=utf-8");
|
|
|
|
}
|
2005-11-19 15:46:23 +01:00
|
|
|
}
|
|
|
|
|
2006-08-20 05:35:47 +02:00
|
|
|
if (!$op) {
|
|
|
|
header("Content-Type: application/xml");
|
|
|
|
print_error_xml(7); exit;
|
|
|
|
}
|
2009-10-27 13:27:09 +01:00
|
|
|
|
|
|
|
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"
|
2010-01-13 16:31:51 +01:00
|
|
|
&& $op != "rss" && $op != "getUnread" && $op != "publish" && $op != "getProfiles") {
|
2005-11-19 15:46:23 +01:00
|
|
|
|
2007-07-12 07:15:22 +02:00
|
|
|
if ($op == "rpc" || $op == "viewfeed" || $op == "view") {
|
2006-03-31 07:18:55 +02:00
|
|
|
print_error_xml(6); die;
|
2006-02-28 12:02:57 +01:00
|
|
|
} 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\";
|
2006-02-28 12:02:57 +01:00
|
|
|
} else {
|
2007-03-01 10:43:54 +01:00
|
|
|
window.location = \"tt-rss.php\";
|
2006-02-28 12:02:57 +01:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body></html>
|
|
|
|
";
|
2005-11-19 15:46:23 +01:00
|
|
|
}
|
|
|
|
exit;
|
|
|
|
}
|
2005-11-18 07:04:32 +01:00
|
|
|
|
2006-03-20 15:30:51 +01:00
|
|
|
$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"));
|
2006-03-20 15:30:51 +01:00
|
|
|
|
|
|
|
$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"),
|
2010-01-20 11:20:20 +01:00
|
|
|
60 => __("Hourly"),
|
|
|
|
240 => __("Each 4 hours"),
|
|
|
|
720 => __("Each 12 hours"),
|
|
|
|
1440 => __("Daily"),
|
|
|
|
10080 => __("Weekly"));
|
|
|
|
|
|
|
|
$update_intervals_nodefault = array(
|
|
|
|
-1 => __("Disable updates"),
|
|
|
|
15 => __("Each 15 minutes"),
|
|
|
|
30 => __("Each 30 minutes"),
|
2007-03-05 09:45:38 +01:00
|
|
|
60 => __("Hourly"),
|
|
|
|
240 => __("Each 4 hours"),
|
|
|
|
720 => __("Each 12 hours"),
|
|
|
|
1440 => __("Daily"),
|
|
|
|
10080 => __("Weekly"));
|
2006-03-20 15:30:51 +01:00
|
|
|
|
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
|
|
|
|
2010-06-30 10:57:11 +02:00
|
|
|
if (DEFAULT_UPDATE_METHOD == "1") {
|
2008-01-25 18:46:01 +01:00
|
|
|
$update_methods[0] .= ' (SimplePie)';
|
|
|
|
} else {
|
|
|
|
$update_methods[0] .= ' (Magpie)';
|
|
|
|
}
|
|
|
|
|
2006-05-20 16:26:00 +02:00
|
|
|
$access_level_names = array(
|
2007-03-05 09:45:38 +01:00
|
|
|
0 => __("User"),
|
2008-04-04 05:46:51 +02:00
|
|
|
5 => __("Power User"),
|
2007-03-05 09:45:38 +01:00
|
|
|
10 => __("Administrator"));
|
2006-05-20 16:26:00 +02:00
|
|
|
|
2006-10-01 12:19:39 +02:00
|
|
|
require_once "modules/pref-prefs.php";
|
2006-10-01 12:05:20 +02:00
|
|
|
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; }
|
2005-12-16 18:35:04 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
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");
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
$tags = $_REQUEST["tags"];
|
2008-01-26 06:33:59 +01:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
$subop = $_REQUEST["subop"];
|
2008-01-26 06:33:59 +01:00
|
|
|
|
|
|
|
switch($subop) {
|
|
|
|
case "catchupAll":
|
|
|
|
db_query($link, "UPDATE ttrss_user_entries SET
|
|
|
|
last_read = NOW(),unread = false WHERE owner_uid = " . $_SESSION["uid"]);
|
2009-01-16 15:07:22 +01:00
|
|
|
ccache_zero_all($link, $_SESSION["uid"]);
|
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case "collapse":
|
2009-12-29 16:49:27 +01:00
|
|
|
$cat_id = db_escape_string($_REQUEST["cid"]);
|
2009-12-24 13:36:02 +01:00
|
|
|
toggle_collapse_cat($link, $cat_id);
|
2008-01-26 06:33:59 +01:00
|
|
|
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":
|
2009-12-29 16:49:27 +01:00
|
|
|
$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;
|
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
}
|
2005-08-23 08:43:20 +02:00
|
|
|
|
2009-02-01 20:14:38 +01:00
|
|
|
$_SESSION["viewfeed:counters_stamp"] = time();
|
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
outputFeedList($link, $tags);
|
|
|
|
break; // feeds
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "view":
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
$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"]);
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
$csync = $_REQUEST["csync"];
|
2008-05-21 06:38:28 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "<reply>";
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
// in prefetch mode we only output requested cids, main article
|
|
|
|
// just gets marked as read (it already exists in client cache)
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
if ($mode == "") {
|
2009-12-28 15:23:01 +01:00
|
|
|
outputArticleXML($link, $id, false);
|
2008-09-05 09:36:57 +02:00
|
|
|
} else if ($mode == "zoom") {
|
2009-12-28 15:23:01 +01:00
|
|
|
outputArticleXML($link, $id, false, true, true);
|
2008-01-26 06:33:59 +01:00
|
|
|
} else {
|
|
|
|
catchupArticleById($link, $id, 0);
|
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2008-06-24 09:43:20 +02:00
|
|
|
if (!$_SESSION["bw_limit"]) {
|
|
|
|
foreach ($cids as $cid) {
|
|
|
|
if ($cid) {
|
2009-12-28 15:23:01 +01:00
|
|
|
outputArticleXML($link, $cid, false, false);
|
2008-06-24 09:43:20 +02:00
|
|
|
}
|
2008-01-26 06:33:59 +01:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
|
|
|
|
2009-01-16 16:37:42 +01:00
|
|
|
// if (get_pref($link, "SYNC_COUNTERS") || ($mode == "prefetch" && $csync)) {
|
2009-01-22 16:14:00 +01:00
|
|
|
|
2009-12-29 14:10:40 +01:00
|
|
|
if (time() - $_SESSION["view:counters_stamp"] > 5 && $mode == "prefetch") {
|
2010-11-04 20:38:03 +01:00
|
|
|
print "<counters><![CDATA[";
|
|
|
|
print json_encode(getAllCounters($link, $omode));
|
|
|
|
print "]]></counters>";
|
2009-01-22 16:14:00 +01:00
|
|
|
$_SESSION["view:counters_stamp"] = time();
|
|
|
|
}
|
2007-05-15 07:41:48 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "</reply>";
|
|
|
|
break; // view
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "viewfeed":
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$print_exec_time = true;
|
|
|
|
$timing_info = getmicrotime();
|
2007-05-18 06:16:33 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "<reply>";
|
2007-05-15 07:59:22 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
if ($_REQUEST["debug"]) $timing_info = print_checkpoint("0", $timing_info);
|
2007-05-18 06:16:33 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
$omode = db_escape_string($_REQUEST["omode"]);
|
2007-05-15 07:59:22 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
$feed = db_escape_string($_REQUEST["feed"]);
|
|
|
|
$subop = db_escape_string($_REQUEST["subop"]);
|
|
|
|
$view_mode = db_escape_string($_REQUEST["view_mode"]);
|
2010-01-04 10:12:31 +01:00
|
|
|
$limit = (int) get_pref($link, "DEFAULT_ARTICLE_LIMIT");
|
2010-11-05 15:16:29 +01:00
|
|
|
@$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"]);
|
2009-12-29 16:49:27 +01:00
|
|
|
$csync = $_REQUEST["csync"];
|
|
|
|
$order_by = db_escape_string($_REQUEST["order_by"]);
|
2007-01-19 10:38:16 +01:00
|
|
|
|
2010-11-04 17:11:54 +01:00
|
|
|
/* Feed -5 is a special case: it is used to display auxiliary information
|
|
|
|
* when there's nothing to load - e.g. no stuff in fresh feed */
|
|
|
|
|
|
|
|
if ($feed == -5) {
|
|
|
|
generate_dashboard_feed($link);
|
|
|
|
print "</reply>";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-17 18:23:12 +01:00
|
|
|
/* Updating a label ccache means recalculating all of the caches
|
|
|
|
* so for performance reasons we don't do that here */
|
|
|
|
|
2009-01-23 14:49:31 +01:00
|
|
|
// 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();
|
2009-01-23 14:49:31 +01:00
|
|
|
// }
|
2009-01-16 16:02:47 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
set_pref($link, "_DEFAULT_VIEW_MODE", $view_mode);
|
|
|
|
set_pref($link, "_DEFAULT_VIEW_LIMIT", $limit);
|
2008-09-09 05:30:12 +02:00
|
|
|
set_pref($link, "_DEFAULT_VIEW_ORDER_BY", $order_by);
|
2007-03-26 07:23:15 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
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"]);
|
|
|
|
}
|
2007-11-22 06:52:48 +01:00
|
|
|
|
2009-01-21 16:34:19 +01:00
|
|
|
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[";
|
|
|
|
}
|
2009-01-16 17:12:28 +01:00
|
|
|
|
|
|
|
$override_order = false;
|
|
|
|
|
|
|
|
switch ($order_by) {
|
|
|
|
case "date":
|
|
|
|
if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
|
2010-10-27 10:06:26 +02:00
|
|
|
$override_order = "date_entered";
|
2009-01-16 17:12:28 +01:00
|
|
|
} else {
|
2010-10-27 10:06:26 +02:00
|
|
|
$override_order = "date_entered DESC";
|
2009-01-16 17:12:28 +01:00
|
|
|
}
|
|
|
|
break;
|
2007-01-26 06:36:19 +01:00
|
|
|
|
2009-01-16 17:12:28 +01:00
|
|
|
case "title":
|
2010-10-18 16:32:26 +02:00
|
|
|
if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
|
2010-10-27 10:06:26 +02:00
|
|
|
$override_order = "title DESC, date_entered";
|
2010-10-18 16:32:26 +02:00
|
|
|
} else {
|
2010-10-27 10:06:26 +02:00
|
|
|
$override_order = "title, date_entered DESC";
|
2010-10-18 16:32:26 +02:00
|
|
|
}
|
2009-01-16 17:12:28 +01:00
|
|
|
break;
|
2005-08-21 15:46:43 +02:00
|
|
|
|
2009-01-16 17:12:28 +01:00
|
|
|
case "score":
|
2010-10-18 16:32:26 +02:00
|
|
|
if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
|
2010-10-27 10:06:26 +02:00
|
|
|
$override_order = "score, date_entered";
|
2010-10-18 16:32:26 +02:00
|
|
|
} else {
|
2010-10-27 10:06:26 +02:00
|
|
|
$override_order = "score DESC, date_entered DESC";
|
2010-10-18 16:32:26 +02:00
|
|
|
}
|
2009-01-16 17:12:28 +01:00
|
|
|
break;
|
|
|
|
}
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2009-01-16 17:12:28 +01:00
|
|
|
$ret = outputHeadlinesList($link, $feed, $subop,
|
|
|
|
$view_mode, $limit, $cat_view, $next_unread_feed, $offset,
|
|
|
|
$vgroup_last_feed, $override_order);
|
2008-09-09 05:30:12 +02:00
|
|
|
|
2009-01-16 17:12:28 +01:00
|
|
|
$topmost_article_ids = $ret[0];
|
|
|
|
$headlines_count = $ret[1];
|
|
|
|
$returned_feed = $ret[2];
|
|
|
|
$disable_cache = $ret[3];
|
|
|
|
$vgroup_last_feed = $ret[4];
|
2008-09-09 05:30:12 +02:00
|
|
|
|
2009-01-16 17:12:28 +01:00
|
|
|
print "]]></headlines>";
|
2007-05-18 06:16:33 +02:00
|
|
|
|
2010-11-06 20:19:08 +01:00
|
|
|
//print "<headlines-count value=\"$headlines_count\"/>";
|
|
|
|
//print "<vgroup-last-feed value=\"$vgroup_last_feed\"/>";
|
2008-05-17 06:42:20 +02:00
|
|
|
|
2009-01-17 17:17:38 +01:00
|
|
|
$headlines_unread = ccache_find($link, $returned_feed, $_SESSION["uid"],
|
2009-01-17 17:21:03 +01:00
|
|
|
$cat_view, true);
|
|
|
|
|
|
|
|
if ($headlines_unread == -1) {
|
|
|
|
$headlines_unread = getFeedUnread($link, $returned_feed, $cat_view);
|
|
|
|
|
|
|
|
}
|
2009-01-16 17:12:28 +01:00
|
|
|
|
2010-11-06 20:19:08 +01:00
|
|
|
//print "<headlines-unread value=\"$headlines_unread\"/>";
|
|
|
|
//printf("<disable-cache value=\"%d\"/>", $disable_cache);
|
|
|
|
|
|
|
|
print "<headlines-info><![CDATA[";
|
|
|
|
|
|
|
|
$info = array("count" => (int) $headlines_count,
|
|
|
|
"vgroup_last_feed" => $vgroup_last_feed,
|
|
|
|
"unread" => (int) $headlines_unread,
|
|
|
|
"disable_cache" => (bool) $disable_cache);
|
|
|
|
|
|
|
|
print json_encode($info);
|
|
|
|
|
|
|
|
print "]]></headlines-info>";
|
2009-01-16 17:12:28 +01:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
if ($_REQUEST["debug"]) $timing_info = print_checkpoint("10", $timing_info);
|
2009-01-16 17:12:28 +01:00
|
|
|
|
|
|
|
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);
|
2008-01-26 06:33:59 +01:00
|
|
|
}
|
2009-01-16 17:12:28 +01:00
|
|
|
print "</articles>";
|
2007-05-15 09:37:10 +02:00
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
if ($_REQUEST["debug"]) $timing_info = print_checkpoint("20", $timing_info);
|
2007-05-18 06:16:33 +02:00
|
|
|
|
2009-01-17 16:01:09 +01:00
|
|
|
if (get_pref($link, 'COMBINED_DISPLAY_MODE') || $subop ||
|
2009-12-29 14:10:40 +01:00
|
|
|
time() - $_SESSION["viewfeed:counters_stamp"] > 5) {
|
2009-01-17 08:15:04 +01:00
|
|
|
if (!$offset) {
|
2010-11-04 20:38:03 +01:00
|
|
|
print "<counters><![CDATA[";
|
|
|
|
print json_encode(getAllCounters($link, $omode, $feed));
|
|
|
|
print "]]></counters>";
|
2009-01-17 16:01:09 +01:00
|
|
|
$_SESSION["viewfeed:counters_stamp"] = time();
|
2009-01-17 08:15:04 +01:00
|
|
|
}
|
2009-01-17 07:16:07 +01:00
|
|
|
}
|
2006-02-24 10:33:09 +01:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
if ($_REQUEST["debug"]) $timing_info = print_checkpoint("30", $timing_info);
|
2007-05-18 06:16:33 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print_runtime_info($link);
|
2007-06-07 10:06:36 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "</reply>";
|
|
|
|
break; // viewfeed
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "pref-feeds":
|
|
|
|
module_pref_feeds($link);
|
|
|
|
break; // pref-feeds
|
2005-12-30 06:29:24 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "pref-filters":
|
|
|
|
module_pref_filters($link);
|
|
|
|
break; // pref-filters
|
2005-12-29 19:25:07 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "pref-labels":
|
|
|
|
module_pref_labels($link);
|
|
|
|
break; // pref-labels
|
2006-08-22 09:17:40 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "pref-prefs":
|
|
|
|
module_pref_prefs($link);
|
|
|
|
break; // pref-prefs
|
2006-10-01 12:19:39 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "pref-users":
|
|
|
|
module_pref_users($link);
|
|
|
|
break; // prefs-users
|
2005-12-29 19:25:07 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "help":
|
|
|
|
module_help($link);
|
|
|
|
break; // help
|
2005-12-29 19:25:07 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "dlg":
|
|
|
|
module_popup_dialog($link);
|
|
|
|
break; // dlg
|
2005-12-30 06:29:24 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "pref-pub-items":
|
|
|
|
module_pref_pub_items($link);
|
|
|
|
break; // pref-pub-items
|
2007-08-09 14:45:30 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "globalUpdateFeeds":
|
|
|
|
// update feeds of all users, may be used anonymously
|
2007-08-09 14:45:30 +02:00
|
|
|
|
2008-05-06 11:27:29 +02:00
|
|
|
print "<!--";
|
2008-01-26 06:33:59 +01:00
|
|
|
// Update all feeds needing a update.
|
2008-05-06 11:27:29 +02:00
|
|
|
update_daemon_common($link, 0, true, true);
|
|
|
|
print " -->";
|
2005-12-30 06:29:24 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print "<rpc-reply>
|
|
|
|
<message msg=\"All feeds updated\"/>
|
|
|
|
</rpc-reply>";
|
|
|
|
break; // globalUpdateFeeds
|
2006-05-18 06:58:31 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "pref-feed-browser":
|
|
|
|
module_pref_feed_browser($link);
|
|
|
|
break; // pref-feed-browser
|
2005-12-30 06:17:23 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "publish":
|
2009-12-29 16:49:27 +01:00
|
|
|
$key = db_escape_string($_REQUEST["key"]);
|
|
|
|
$limit = (int)db_escape_string($_REQUEST["limit"]);
|
2007-08-09 15:09:34 +02:00
|
|
|
|
2008-01-26 06:33:59 +01: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
|
|
|
|
2008-01-26 06:33:59 +01: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
|
|
|
|
2009-01-05 09:09:05 +01:00
|
|
|
generate_syndicated_feed($link, $owner, -2, false, $limit);
|
2007-08-09 15:09:34 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
} else {
|
|
|
|
print "<error>User not found</error>";
|
|
|
|
}
|
|
|
|
break; // publish
|
2006-07-31 13:35:50 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "rss":
|
2009-12-29 16:49:27 +01:00
|
|
|
$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"]);
|
2006-07-31 13:55:15 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
$search = db_escape_string($_REQUEST["q"]);
|
|
|
|
$match_on = db_escape_string($_REQUEST["m"]);
|
|
|
|
$search_mode = db_escape_string($_REQUEST["smode"]);
|
2010-11-03 22:24:18 +01:00
|
|
|
$view_mode = db_escape_string($_REQUEST["view_mode"]);
|
2006-07-31 13:35:50 +02:00
|
|
|
|
2009-02-13 13:13:29 +01:00
|
|
|
if (SINGLE_USER_MODE) {
|
|
|
|
authenticate_user($link, "admin", null);
|
|
|
|
}
|
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
if (!$_SESSION["uid"] && $user && $pass) {
|
|
|
|
authenticate_user($link, $user, $pass);
|
|
|
|
}
|
2006-07-31 13:35:50 +02:00
|
|
|
|
2010-11-03 22:24:18 +01:00
|
|
|
if ($_SESSION["uid"] || http_authenticate_user($link)) {
|
|
|
|
generate_syndicated_feed($link, 0, $feed, $is_cat, $limit,
|
|
|
|
$search, $search_mode, $match_on, $view_mode);
|
2008-01-26 06:33:59 +01:00
|
|
|
}
|
|
|
|
break; // rss
|
2006-07-31 13:35:50 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "getUnread":
|
2009-12-29 16:49:27 +01:00
|
|
|
$login = db_escape_string($_REQUEST["login"]);
|
2010-02-17 14:22:36 +01:00
|
|
|
$fresh = $_REQUEST["fresh"] == "1";
|
2006-08-20 05:35:47 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
header("Content-Type: text/plain; charset=utf-8");
|
2006-08-20 05:35:47 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$result = db_query($link, "SELECT id FROM ttrss_users WHERE login = '$login'");
|
2006-08-20 14:33:37 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
if (db_num_rows($result) == 1) {
|
|
|
|
$uid = db_fetch_result($result, 0, "id");
|
2010-02-17 14:22:36 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
print getGlobalUnread($link, $uid);
|
2010-02-17 14:22:36 +01:00
|
|
|
|
|
|
|
if ($fresh) {
|
|
|
|
print ";";
|
|
|
|
print getFeedArticles($link, -3, false, true, $uid);
|
|
|
|
}
|
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
} else {
|
|
|
|
print "-1;User not found";
|
|
|
|
}
|
2006-08-20 14:33:37 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
$print_exec_time = false;
|
|
|
|
break; // getUnread
|
2006-08-21 08:43:38 +02:00
|
|
|
|
2008-01-26 06:33:59 +01: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
|
|
|
|
2008-01-26 06:33:59 +01: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
|
|
|
|
2010-01-13 16:31:51 +01: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();
|
2010-01-25 21:12:08 +01:00
|
|
|
}
|
2010-01-13 16:31:51 +01:00
|
|
|
break;
|
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
} // Select action according to $op value.
|
2006-08-20 05:35:47 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
// 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
|
|
|
?>
|
2005-10-23 17:48:58 +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) ?> -->
|
2006-08-20 05:35:47 +02:00
|
|
|
<?php } ?>
|