2006-08-19 09:04:45 +02:00
|
|
|
<?php
|
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) {
|
2011-03-18 10:46:22 +01:00
|
|
|
$value = is_array($value) ?
|
2010-09-04 09:59:33 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2010-11-10 11:14:44 +01:00
|
|
|
require_once "functions.php";
|
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";
|
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";
|
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
|
|
|
|
2011-03-18 17:25:06 +01:00
|
|
|
startup_gettext();
|
2007-03-02 12:34:34 +01:00
|
|
|
|
2007-03-02 11:48:46 +01:00
|
|
|
$script_started = getmicrotime();
|
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
|
2007-03-02 11:48:46 +01:00
|
|
|
|
|
|
|
if (!$link) {
|
|
|
|
if (DB_TYPE == "mysql") {
|
|
|
|
print mysql_error();
|
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
// PG seems to display its own errors just fine by default.
|
2007-03-02 11:48:46 +01:00
|
|
|
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
|
|
|
|
2011-03-18 17:12:38 +01:00
|
|
|
if ((!$op || $op == "rss" || $op == "dlg") && !$_REQUEST["noxml"]) {
|
|
|
|
header("Content-Type: application/xml; charset=utf-8");
|
|
|
|
} else {
|
2007-08-23 11:37:39 +02:00
|
|
|
header("Content-Type: text/plain; charset=utf-8");
|
2005-11-19 15:46:23 +01:00
|
|
|
}
|
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
if (ENABLE_GZIP_OUTPUT) {
|
|
|
|
ob_start("ob_gzhandler");
|
|
|
|
}
|
|
|
|
|
2009-10-27 13:27:09 +01:00
|
|
|
if (SINGLE_USER_MODE) {
|
|
|
|
authenticate_user($link, "admin", null);
|
|
|
|
}
|
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
if (!($_SESSION["uid"] && validate_session($link)) && $op != "globalUpdateFeeds" &&
|
2011-04-01 11:39:58 +02:00
|
|
|
$op != "rss" && $op != "getUnread" && $op != "getProfiles" &&
|
2011-04-20 13:21:00 +02:00
|
|
|
$op != "fbexport" && $op != "logout" && $op != "pubsub") {
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2011-06-14 12:19:47 +02:00
|
|
|
if ($op == 'pref-feeds' && $_REQUEST['subop'] == 'add') {
|
|
|
|
header("Content-Type: text/html");
|
|
|
|
login_sequence($link);
|
|
|
|
render_login_form($link);
|
|
|
|
} else {
|
|
|
|
header("Content-Type: text/plain");
|
|
|
|
print json_encode(array("error" => array("code" => 6)));
|
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
return;
|
2005-11-19 15:46:23 +01:00
|
|
|
}
|
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"),
|
2011-03-18 10:46:22 +01:00
|
|
|
2 => __("SimplePie"),
|
2010-11-22 15:03:31 +01:00
|
|
|
3 => __("Twitter OAuth"));
|
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(
|
2011-03-18 10:46:22 +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";
|
2011-04-20 10:11:24 +02:00
|
|
|
require_once "modules/pref-instances.php";
|
2006-10-01 12:05:20 +02:00
|
|
|
|
2011-03-18 15:39:23 +01:00
|
|
|
$error = sanity_check($link);
|
|
|
|
|
2011-04-20 09:46:16 +02:00
|
|
|
if ($error['code'] != 0 && $op != "logout") {
|
2011-03-18 15:39:23 +01:00
|
|
|
print json_encode(array("error" => $error));
|
|
|
|
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":
|
2009-12-29 16:49:27 +01:00
|
|
|
$subop = $_REQUEST["subop"];
|
2010-11-17 19:13:41 +01:00
|
|
|
$root = (bool)$_REQUEST["root"];
|
2008-01-26 06:33:59 +01:00
|
|
|
|
|
|
|
switch($subop) {
|
|
|
|
case "catchupAll":
|
2011-03-18 10:46:22 +01:00
|
|
|
db_query($link, "UPDATE ttrss_user_entries SET
|
2008-01-26 06:33:59 +01:00
|
|
|
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"]);
|
2010-11-15 19:49:00 +01:00
|
|
|
$mode = (int) db_escape_string($_REQUEST['mode']);
|
|
|
|
toggle_collapse_cat($link, $cat_id, $mode);
|
2008-01-26 06:33:59 +01:00
|
|
|
return;
|
|
|
|
break;
|
|
|
|
}
|
2005-08-23 08:43:20 +02:00
|
|
|
|
2010-11-17 19:13:41 +01:00
|
|
|
if (!$root) {
|
|
|
|
print json_encode(outputFeedList($link));
|
|
|
|
} else {
|
|
|
|
|
|
|
|
$feeds = outputFeedList($link, false);
|
|
|
|
|
|
|
|
$root = array();
|
|
|
|
$root['id'] = 'root';
|
|
|
|
$root['name'] = __('Feeds');
|
|
|
|
$root['items'] = $feeds['items'];
|
|
|
|
|
|
|
|
$fl = array();
|
|
|
|
$fl['identifier'] = 'id';
|
|
|
|
$fl['label'] = 'name';
|
|
|
|
$fl['items'] = array($root);
|
|
|
|
|
|
|
|
print json_encode($fl);
|
|
|
|
}
|
2010-11-15 14:23:42 +01:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
break; // feeds
|
2005-08-21 12:13:10 +02:00
|
|
|
|
2010-11-19 19:05:28 +01:00
|
|
|
case "la":
|
|
|
|
$id = db_escape_string($_REQUEST['id']);
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT link FROM ttrss_entries, ttrss_user_entries
|
2011-05-04 12:56:49 +02:00
|
|
|
WHERE id = '$id' AND id = ref_id AND owner_uid = '".$_SESSION['uid']."'
|
|
|
|
LIMIT 1");
|
2010-11-19 19:05:28 +01:00
|
|
|
|
|
|
|
if (db_num_rows($result) == 1) {
|
|
|
|
$article_url = db_fetch_result($result, 0, 'link');
|
2010-11-21 19:47:38 +01:00
|
|
|
$article_url = str_replace("\n", "", $article_url);
|
2010-11-19 19:05:28 +01:00
|
|
|
|
|
|
|
header("Location: $article_url");
|
|
|
|
return;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
print_error(__("Article not found."));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
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"]);
|
2011-07-31 04:31:40 +02:00
|
|
|
$cids = explode(",", db_escape_string($_REQUEST["cids"]));
|
2009-12-29 16:49:27 +01:00
|
|
|
$mode = db_escape_string($_REQUEST["mode"]);
|
|
|
|
$omode = db_escape_string($_REQUEST["omode"]);
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
// in prefetch mode we only output requested cids, main article
|
2008-01-26 06:33:59 +01:00
|
|
|
// just gets marked as read (it already exists in client cache)
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
$articles = array();
|
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
if ($mode == "") {
|
2011-03-18 10:46:22 +01:00
|
|
|
array_push($articles, format_article($link, $id, false));
|
2008-09-05 09:36:57 +02:00
|
|
|
} else if ($mode == "zoom") {
|
2011-07-31 04:31:40 +02:00
|
|
|
array_push($articles, format_article($link, $id, true, true));
|
2011-04-11 14:41:01 +02:00
|
|
|
} else if ($mode == "raw") {
|
2011-04-19 11:20:59 +02:00
|
|
|
if ($_REQUEST['html']) {
|
|
|
|
header("Content-Type: text/html");
|
|
|
|
print '<link rel="stylesheet" type="text/css" href="tt-rss.css"/>';
|
|
|
|
}
|
2011-04-11 14:41:01 +02:00
|
|
|
|
|
|
|
$article = format_article($link, $id, false);
|
|
|
|
print $article['content'];
|
|
|
|
return;
|
2008-01-26 06:33:59 +01:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2011-08-03 10:32:30 +02:00
|
|
|
catchupArticleById($link, $id, 0);
|
|
|
|
|
2008-06-24 09:43:20 +02:00
|
|
|
if (!$_SESSION["bw_limit"]) {
|
|
|
|
foreach ($cids as $cid) {
|
|
|
|
if ($cid) {
|
2011-03-18 10:46:22 +01:00
|
|
|
array_push($articles, format_article($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
|
|
|
}
|
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
print json_encode($articles);
|
2007-05-15 07:41:48 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
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
|
|
|
$timing_info = getmicrotime();
|
2007-05-18 06:16:33 +02:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
$reply = array();
|
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
|
|
|
$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) {
|
2011-03-18 10:55:45 +01:00
|
|
|
print json_encode(generate_dashboard_feed($link));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = false;
|
|
|
|
|
|
|
|
if ($feed < -10) {
|
2011-03-18 15:22:20 +01:00
|
|
|
$label_feed = -11-$feed;
|
2011-03-18 10:55:45 +01:00
|
|
|
$result = db_query($link, "SELECT id FROM ttrss_labels2 WHERE
|
|
|
|
id = '$label_feed' AND owner_uid = " . $_SESSION['uid']);
|
|
|
|
} else if (!$cat_view && $feed > 0) {
|
|
|
|
$result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
|
|
|
|
id = '$feed' AND owner_uid = " . $_SESSION['uid']);
|
2011-03-18 15:22:20 +01:00
|
|
|
} else if ($cat_view && $feed > 0) {
|
2011-03-18 10:55:45 +01:00
|
|
|
$result = db_query($link, "SELECT id FROM ttrss_feed_categories WHERE
|
|
|
|
id = '$feed' AND owner_uid = " . $_SESSION['uid']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($result && db_num_rows($result) == 0) {
|
|
|
|
print json_encode(generate_error_feed($link, __("Feed not found.")));
|
2010-11-04 17:11:54 +01:00
|
|
|
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 */
|
|
|
|
|
2010-11-10 12:48:35 +01:00
|
|
|
if ($feed >= 0) {
|
|
|
|
ccache_update($link, $feed, $_SESSION["uid"], $cat_view);
|
|
|
|
}
|
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
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
$reply['headlines'] = array();
|
|
|
|
|
|
|
|
if (!$next_unread_feed)
|
|
|
|
$reply['headlines']['id'] = $feed;
|
|
|
|
else
|
|
|
|
$reply['headlines']['id'] = $next_unread_feed;
|
|
|
|
|
|
|
|
$reply['headlines']['is_cat'] = (bool) $cat_view;
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2009-01-16 17:12:28 +01:00
|
|
|
$override_order = false;
|
|
|
|
|
2010-11-10 11:56:42 +01:00
|
|
|
if (get_pref($link, "SORT_HEADLINES_BY_FEED_DATE", $owner_uid)) {
|
|
|
|
$date_sort_field = "updated";
|
|
|
|
} else {
|
|
|
|
$date_sort_field = "date_entered";
|
|
|
|
}
|
|
|
|
|
2009-01-16 17:12:28 +01:00
|
|
|
switch ($order_by) {
|
|
|
|
case "date":
|
|
|
|
if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
|
2010-11-10 11:56:42 +01:00
|
|
|
$override_order = "$date_sort_field";
|
2011-03-18 10:46:22 +01:00
|
|
|
} else {
|
2010-11-10 11:56:42 +01:00
|
|
|
$override_order = "$date_sort_field 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-11-10 11:56:42 +01:00
|
|
|
$override_order = "title DESC, $date_sort_field";
|
2010-10-18 16:32:26 +02:00
|
|
|
} else {
|
2010-11-10 11:56:42 +01:00
|
|
|
$override_order = "title, $date_sort_field 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-11-10 11:56:42 +01:00
|
|
|
$override_order = "score, $date_sort_field";
|
2010-10-18 16:32:26 +02:00
|
|
|
} else {
|
2010-11-10 11:56:42 +01:00
|
|
|
$override_order = "score DESC, $date_sort_field 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
|
|
|
|
2010-11-10 16:50:51 +01:00
|
|
|
if ($_REQUEST["debug"]) $timing_info = print_checkpoint("04", $timing_info);
|
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
$ret = format_headlines_list($link, $feed, $subop,
|
2011-03-18 10:46:22 +01:00
|
|
|
$view_mode, $limit, $cat_view, $next_unread_feed, $offset,
|
2009-01-16 17:12:28 +01:00
|
|
|
$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
|
|
|
|
2011-08-04 17:38:25 +02:00
|
|
|
// if ($_REQUEST["debug"]) print_r($ret);
|
|
|
|
|
|
|
|
$reply['headlines']['content'] =& $ret[5]['content'];
|
|
|
|
$reply['headlines']['toolbar'] =& $ret[5]['toolbar'];
|
2007-05-18 06:16:33 +02:00
|
|
|
|
2010-11-10 16:50:51 +01:00
|
|
|
if ($_REQUEST["debug"]) $timing_info = print_checkpoint("05", $timing_info);
|
|
|
|
|
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
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
$reply['headlines-info'] = array("count" => (int) $headlines_count,
|
2010-11-06 20:19:08 +01:00
|
|
|
"vgroup_last_feed" => $vgroup_last_feed,
|
|
|
|
"unread" => (int) $headlines_unread,
|
|
|
|
"disable_cache" => (bool) $disable_cache);
|
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
if ($_REQUEST["debug"]) $timing_info = print_checkpoint("20", $timing_info);
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
if (is_array($topmost_article_ids) && !get_pref($link, 'COMBINED_DISPLAY_MODE') && !$_SESSION["bw_limit"]) {
|
2011-03-18 10:46:22 +01:00
|
|
|
$articles = array();
|
|
|
|
|
2009-01-16 17:12:28 +01:00
|
|
|
foreach ($topmost_article_ids as $id) {
|
2011-07-31 04:31:40 +02:00
|
|
|
array_push($articles, format_article($link, $id, false));
|
2008-01-26 06:33:59 +01:00
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
$reply['articles'] = $articles;
|
|
|
|
}
|
2007-05-18 06:16:33 +02:00
|
|
|
|
2010-11-11 11:38:29 +01:00
|
|
|
if ($subop) {
|
2011-03-18 10:55:45 +01:00
|
|
|
$reply['counters'] = getAllCounters($link, $omode, $feed);
|
2011-03-18 10:46:22 +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
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
$reply['runtime-info'] = make_runtime_info($link);
|
|
|
|
|
|
|
|
print json_encode($reply);
|
2007-06-07 10:06:36 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
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 all feeds needing a update.
|
2008-05-06 11:27:29 +02:00
|
|
|
update_daemon_common($link, 0, true, true);
|
2008-01-26 06:33:59 +01:00
|
|
|
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
|
|
|
|
2011-04-20 10:11:24 +02:00
|
|
|
case "pref-instances":
|
|
|
|
module_pref_instances($link);
|
|
|
|
break; // pref-instances
|
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "rss":
|
2009-12-29 16:49:27 +01:00
|
|
|
$feed = db_escape_string($_REQUEST["id"]);
|
2010-11-08 11:11:56 +01:00
|
|
|
$key = db_escape_string($_REQUEST["key"]);
|
2009-12-29 16:49:27 +01:00
|
|
|
$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-08 11:34:46 +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);
|
|
|
|
}
|
|
|
|
|
2011-02-09 10:41:35 +01:00
|
|
|
$owner_id = false;
|
2011-02-09 10:37:50 +01:00
|
|
|
|
2011-02-09 10:41:35 +01:00
|
|
|
if ($key) {
|
2010-11-08 11:11:56 +01:00
|
|
|
$result = db_query($link, "SELECT owner_uid FROM
|
|
|
|
ttrss_access_keys WHERE access_key = '$key' AND feed_id = '$feed'");
|
|
|
|
|
|
|
|
if (db_num_rows($result) == 1)
|
2011-02-09 10:41:35 +01:00
|
|
|
$owner_id = db_fetch_result($result, 0, "owner_uid");
|
2008-01-26 06:33:59 +01:00
|
|
|
}
|
2006-07-31 13:35:50 +02:00
|
|
|
|
2011-02-09 10:41:35 +01:00
|
|
|
if ($owner_id) {
|
|
|
|
$_SESSION['uid'] = $owner_id;
|
|
|
|
|
2010-11-03 22:24:18 +01:00
|
|
|
generate_syndicated_feed($link, 0, $feed, $is_cat, $limit,
|
|
|
|
$search, $search_mode, $match_on, $view_mode);
|
2011-02-09 10:37:50 +01:00
|
|
|
} else {
|
|
|
|
header('HTTP/1.1 403 Forbidden');
|
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
|
|
|
$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
|
|
|
break; // getUnread
|
2006-08-21 08:43:38 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "digestTest":
|
|
|
|
print_r(prepare_headlines_digest($link, $_SESSION["uid"]));
|
|
|
|
break; // digestTest
|
2006-08-21 06:03:26 +02:00
|
|
|
|
2008-01-26 06:33:59 +01:00
|
|
|
case "digestSend":
|
|
|
|
send_headlines_digests($link);
|
|
|
|
break; // digestSend
|
2006-08-20 14:33:37 +02:00
|
|
|
|
2010-11-25 10:58:29 +01:00
|
|
|
case "loading":
|
2011-04-13 06:06:20 +02:00
|
|
|
header("Content-type: text/html");
|
2011-03-18 10:46:22 +01:00
|
|
|
print __("Loading, please wait...") . " " .
|
2010-11-25 10:58:29 +01:00
|
|
|
"<img src='images/indicator_tiny.gif'>";
|
2011-04-20 10:11:24 +02:00
|
|
|
break; // loading
|
2010-11-25 10:58:29 +01: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
|
|
|
}
|
2011-04-20 10:11:24 +02:00
|
|
|
break; // getprofiles
|
2010-01-13 16:31:51 +01:00
|
|
|
|
2011-04-01 11:39:58 +02:00
|
|
|
case "pubsub":
|
|
|
|
$mode = db_escape_string($_REQUEST['hub_mode']);
|
|
|
|
$feed_id = db_escape_string($_REQUEST['id']);
|
|
|
|
$feed_url = db_escape_string($_REQUEST['hub_topic']);
|
|
|
|
|
2011-08-04 08:29:08 +02:00
|
|
|
if (!PUBSUBHUBBUB_ENABLED) {
|
|
|
|
header('HTTP/1.0 404 Not Found');
|
|
|
|
echo "404 Not found";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-04-01 11:39:58 +02:00
|
|
|
// TODO: implement hub_verifytoken checking
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT feed_url FROM ttrss_feeds
|
|
|
|
WHERE id = '$feed_id'");
|
|
|
|
|
2011-06-22 13:05:49 +02:00
|
|
|
if (db_num_rows($result) != 0) {
|
2011-04-01 11:39:58 +02:00
|
|
|
|
2011-06-22 13:05:49 +02:00
|
|
|
$check_feed_url = db_fetch_result($result, 0, "feed_url");
|
2011-04-01 11:39:58 +02:00
|
|
|
|
2011-06-22 13:05:49 +02:00
|
|
|
if ($check_feed_url && ($check_feed_url == $feed_url || !$feed_url)) {
|
|
|
|
if ($mode == "subscribe") {
|
2011-04-01 11:39:58 +02:00
|
|
|
|
2011-06-22 13:05:49 +02:00
|
|
|
db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 2
|
|
|
|
WHERE id = '$feed_id'");
|
2011-04-01 19:25:55 +02:00
|
|
|
|
2011-06-22 13:05:49 +02:00
|
|
|
print $_REQUEST['hub_challenge'];
|
|
|
|
return;
|
2011-04-01 11:39:58 +02:00
|
|
|
|
2011-06-22 13:05:49 +02:00
|
|
|
} else if ($mode == "unsubscribe") {
|
2011-04-01 11:39:58 +02:00
|
|
|
|
2011-06-22 13:05:49 +02:00
|
|
|
db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 0
|
|
|
|
WHERE id = '$feed_id'");
|
2011-04-01 19:25:55 +02:00
|
|
|
|
2011-06-22 13:05:49 +02:00
|
|
|
print $_REQUEST['hub_challenge'];
|
|
|
|
return;
|
2006-08-20 05:35:47 +02:00
|
|
|
|
2011-06-22 13:05:49 +02:00
|
|
|
} else if (!$mode) {
|
2011-04-01 11:39:58 +02:00
|
|
|
|
2011-06-22 13:05:49 +02:00
|
|
|
// Received update ping, schedule feed update.
|
2011-04-01 11:39:58 +02:00
|
|
|
|
2011-06-22 13:05:49 +02:00
|
|
|
update_rss_feed($link, $feed_id, true, true);
|
|
|
|
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
header('HTTP/1.0 404 Not Found');
|
|
|
|
echo "404 Not found";
|
2011-04-01 11:39:58 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
header('HTTP/1.0 404 Not Found');
|
2011-06-22 13:05:49 +02:00
|
|
|
echo "404 Not found";
|
2011-04-01 11:39:58 +02:00
|
|
|
}
|
|
|
|
|
2011-04-20 10:11:24 +02:00
|
|
|
break; // pubsub
|
2011-04-19 22:14:37 +02:00
|
|
|
|
|
|
|
case "logout":
|
|
|
|
logout_user();
|
|
|
|
header("Location: tt-rss.php");
|
2011-04-20 10:11:24 +02:00
|
|
|
break; // logout
|
2011-04-19 22:14:37 +02:00
|
|
|
|
2011-04-20 13:21:00 +02:00
|
|
|
case "fbexport":
|
|
|
|
|
2011-04-21 06:46:26 +02:00
|
|
|
$access_key = db_escape_string($_POST["key"]);
|
2011-04-20 13:21:00 +02:00
|
|
|
|
|
|
|
// TODO: rate limit checking using last_connected
|
|
|
|
$result = db_query($link, "SELECT id FROM ttrss_linked_instances
|
|
|
|
WHERE access_key = '$access_key'");
|
|
|
|
|
|
|
|
if (db_num_rows($result) == 1) {
|
|
|
|
|
|
|
|
$instance_id = db_fetch_result($result, 0, "id");
|
|
|
|
|
2011-04-20 18:05:10 +02:00
|
|
|
$result = db_query($link, "SELECT feed_url, site_url, title, subscribers
|
2011-04-20 13:21:00 +02:00
|
|
|
FROM ttrss_feedbrowser_cache ORDER BY subscribers DESC LIMIT 100");
|
|
|
|
|
|
|
|
$feeds = array();
|
|
|
|
|
|
|
|
while ($line = db_fetch_assoc($result)) {
|
|
|
|
array_push($feeds, $line);
|
|
|
|
}
|
|
|
|
|
2011-04-20 14:28:48 +02:00
|
|
|
db_query($link, "UPDATE ttrss_linked_instances SET
|
2011-04-20 13:21:00 +02:00
|
|
|
last_status_in = 1 WHERE id = '$instance_id'");
|
|
|
|
|
|
|
|
print json_encode(array("feeds" => $feeds));
|
|
|
|
} else {
|
|
|
|
print json_encode(array("error" => array("code" => 6)));
|
|
|
|
}
|
|
|
|
break; // fbexport
|
|
|
|
|
2011-04-19 22:14:37 +02:00
|
|
|
default:
|
|
|
|
header("Content-Type: text/plain");
|
|
|
|
print json_encode(array("error" => array("code" => 7)));
|
2011-04-20 10:11:24 +02:00
|
|
|
break; // fallback
|
2011-04-01 11:39:58 +02:00
|
|
|
} // Select action according to $op value.
|
2010-11-25 10:58:29 +01: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
|
|
|
?>
|