2 /* remove ill effects of magic quotes */
4 if (get_magic_quotes_gpc()) {
5 function stripslashes_deep($value) {
6 $value = is_array($value) ?
7 array_map('stripslashes_deep', $value) : stripslashes($value);
11 $_POST = array_map('stripslashes_deep', $_POST);
12 $_GET = array_map('stripslashes_deep', $_GET);
13 $_COOKIE = array_map('stripslashes_deep', $_COOKIE);
14 $_REQUEST = array_map('stripslashes_deep', $_REQUEST);
17 require_once "functions.php";
18 require_once "sessions.php";
19 require_once "modules/backend-rpc.php";
20 require_once "sanity_check.php";
21 require_once "config.php";
22 require_once "db.php";
23 require_once "db-prefs.php";
25 no_cache_incantation();
29 $script_started = getmicrotime();
31 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
34 if (DB_TYPE == "mysql") {
37 // PG seems to display its own errors just fine by default.
41 init_connection($link);
43 $op = $_REQUEST["op"];
44 $subop = $_REQUEST["subop"];
45 $mode = $_REQUEST["mode"];
47 if ((!$op || $op == "rss" || $op == "dlg") && !$_REQUEST["noxml"]) {
48 header("Content-Type: application/xml; charset=utf-8");
50 header("Content-Type: text/plain; charset=utf-8");
53 if (ENABLE_GZIP_OUTPUT) {
54 ob_start("ob_gzhandler");
57 if (SINGLE_USER_MODE) {
58 authenticate_user($link, "admin", null);
61 if (!($_SESSION["uid"] && validate_session($link)) && $op != "globalUpdateFeeds" &&
62 $op != "rss" && $op != "getUnread" && $op != "getProfiles" &&
63 $op != "fbexport" && $op != "logout" && $op != "pubsub") {
65 if ($op == 'pref-feeds' && $_REQUEST['subop'] == 'add') {
66 header("Content-Type: text/html");
67 login_sequence($link);
68 render_login_form($link);
70 header("Content-Type: text/plain");
71 print json_encode(array("error" => array("code" => 6)));
76 $purge_intervals = array(
77 0 => __("Use default"),
78 -1 => __("Never purge"),
79 5 => __("1 week old"),
80 14 => __("2 weeks old"),
81 31 => __("1 month old"),
82 60 => __("2 months old"),
83 90 => __("3 months old"));
85 $update_intervals = array(
86 0 => __("Default interval"),
87 -1 => __("Disable updates"),
88 15 => __("Each 15 minutes"),
89 30 => __("Each 30 minutes"),
91 240 => __("Each 4 hours"),
92 720 => __("Each 12 hours"),
94 10080 => __("Weekly"));
96 $update_intervals_nodefault = array(
97 -1 => __("Disable updates"),
98 15 => __("Each 15 minutes"),
99 30 => __("Each 30 minutes"),
101 240 => __("Each 4 hours"),
102 720 => __("Each 12 hours"),
104 10080 => __("Weekly"));
106 $update_methods = array(
109 2 => __("SimplePie"),
110 3 => __("Twitter OAuth"));
112 if (DEFAULT_UPDATE_METHOD == "1") {
113 $update_methods[0] .= ' (SimplePie)';
115 $update_methods[0] .= ' (Magpie)';
118 $access_level_names = array(
120 5 => __("Power User"),
121 10 => __("Administrator"));
123 require_once "modules/pref-prefs.php";
124 require_once "modules/popup-dialog.php";
125 require_once "modules/help.php";
126 require_once "modules/pref-feeds.php";
127 require_once "modules/pref-filters.php";
128 require_once "modules/pref-labels.php";
129 require_once "modules/pref-users.php";
130 require_once "modules/pref-instances.php";
132 $error = sanity_check($link);
134 if ($error['code'] != 0 && $op != "logout") {
135 print json_encode(array("error" => $error));
139 switch($op) { // Select action according to $op value.
141 // Handle remote procedure calls.
142 handle_rpc_request($link);
146 $subop = $_REQUEST["subop"];
147 $root = (bool)$_REQUEST["root"];
151 db_query($link, "UPDATE ttrss_user_entries SET
152 last_read = NOW(),unread = false WHERE owner_uid = " . $_SESSION["uid"]);
153 ccache_zero_all($link, $_SESSION["uid"]);
158 $cat_id = db_escape_string($_REQUEST["cid"]);
159 $mode = (int) db_escape_string($_REQUEST['mode']);
160 toggle_collapse_cat($link, $cat_id, $mode);
166 print json_encode(outputFeedList($link));
169 $feeds = outputFeedList($link, false);
172 $root['id'] = 'root';
173 $root['name'] = __('Feeds');
174 $root['items'] = $feeds['items'];
177 $fl['identifier'] = 'id';
178 $fl['label'] = 'name';
179 $fl['items'] = array($root);
181 print json_encode($fl);
187 $id = db_escape_string($_REQUEST['id']);
189 $result = db_query($link, "SELECT link FROM ttrss_entries, ttrss_user_entries
190 WHERE id = '$id' AND id = ref_id AND owner_uid = '".$_SESSION['uid']."'
193 if (db_num_rows($result) == 1) {
194 $article_url = db_fetch_result($result, 0, 'link');
195 $article_url = str_replace("\n", "", $article_url);
197 header("Location: $article_url");
201 print_error(__("Article not found."));
207 $id = db_escape_string($_REQUEST["id"]);
208 $cids = explode(",", db_escape_string($_REQUEST["cids"]));
209 $mode = db_escape_string($_REQUEST["mode"]);
210 $omode = db_escape_string($_REQUEST["omode"]);
212 // in prefetch mode we only output requested cids, main article
213 // just gets marked as read (it already exists in client cache)
218 array_push($articles, format_article($link, $id, false));
219 } else if ($mode == "zoom") {
220 array_push($articles, format_article($link, $id, true, true));
221 } else if ($mode == "raw") {
222 if ($_REQUEST['html']) {
223 header("Content-Type: text/html");
224 print '<link rel="stylesheet" type="text/css" href="tt-rss.css"/>';
227 $article = format_article($link, $id, false);
228 print $article['content'];
232 catchupArticleById($link, $id, 0);
234 if (!$_SESSION["bw_limit"]) {
235 foreach ($cids as $cid) {
237 array_push($articles, format_article($link, $cid, false, false));
242 print json_encode($articles);
248 $timing_info = getmicrotime();
252 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("0", $timing_info);
254 $omode = db_escape_string($_REQUEST["omode"]);
256 $feed = db_escape_string($_REQUEST["feed"]);
257 $subop = db_escape_string($_REQUEST["subop"]);
258 $view_mode = db_escape_string($_REQUEST["view_mode"]);
259 $limit = (int) get_pref($link, "DEFAULT_ARTICLE_LIMIT");
260 @$cat_view = db_escape_string($_REQUEST["cat"]);
261 @$next_unread_feed = db_escape_string($_REQUEST["nuf"]);
262 @$offset = db_escape_string($_REQUEST["skip"]);
263 @$vgroup_last_feed = db_escape_string($_REQUEST["vgrlf"]);
264 $order_by = db_escape_string($_REQUEST["order_by"]);
266 /* Feed -5 is a special case: it is used to display auxiliary information
267 * when there's nothing to load - e.g. no stuff in fresh feed */
270 print json_encode(generate_dashboard_feed($link));
277 $label_feed = -11-$feed;
278 $result = db_query($link, "SELECT id FROM ttrss_labels2 WHERE
279 id = '$label_feed' AND owner_uid = " . $_SESSION['uid']);
280 } else if (!$cat_view && $feed > 0) {
281 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
282 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
283 } else if ($cat_view && $feed > 0) {
284 $result = db_query($link, "SELECT id FROM ttrss_feed_categories WHERE
285 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
288 if ($result && db_num_rows($result) == 0) {
289 print json_encode(generate_error_feed($link, __("Feed not found.")));
293 /* Updating a label ccache means recalculating all of the caches
294 * so for performance reasons we don't do that here */
297 ccache_update($link, $feed, $_SESSION["uid"], $cat_view);
300 set_pref($link, "_DEFAULT_VIEW_MODE", $view_mode);
301 set_pref($link, "_DEFAULT_VIEW_LIMIT", $limit);
302 set_pref($link, "_DEFAULT_VIEW_ORDER_BY", $order_by);
304 if (!$cat_view && preg_match("/^[0-9][0-9]*$/", $feed)) {
305 db_query($link, "UPDATE ttrss_feeds SET last_viewed = NOW()
306 WHERE id = '$feed' AND owner_uid = ".$_SESSION["uid"]);
309 $reply['headlines'] = array();
311 if (!$next_unread_feed)
312 $reply['headlines']['id'] = $feed;
314 $reply['headlines']['id'] = $next_unread_feed;
316 $reply['headlines']['is_cat'] = (bool) $cat_view;
318 $override_order = false;
320 if (get_pref($link, "SORT_HEADLINES_BY_FEED_DATE", $owner_uid)) {
321 $date_sort_field = "updated";
323 $date_sort_field = "date_entered";
328 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
329 $override_order = "$date_sort_field";
331 $override_order = "$date_sort_field DESC";
336 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
337 $override_order = "title DESC, $date_sort_field";
339 $override_order = "title, $date_sort_field DESC";
344 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
345 $override_order = "score, $date_sort_field";
347 $override_order = "score DESC, $date_sort_field DESC";
352 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("04", $timing_info);
354 $ret = format_headlines_list($link, $feed, $subop,
355 $view_mode, $limit, $cat_view, $next_unread_feed, $offset,
356 $vgroup_last_feed, $override_order);
358 $topmost_article_ids = $ret[0];
359 $headlines_count = $ret[1];
360 $returned_feed = $ret[2];
361 $disable_cache = $ret[3];
362 $vgroup_last_feed = $ret[4];
364 $reply['headlines']['content'] = $ret[5];
365 $reply['headlines']['toolbar'] = $ret[6];
367 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("05", $timing_info);
369 $headlines_unread = ccache_find($link, $returned_feed, $_SESSION["uid"],
372 if ($headlines_unread == -1) {
373 $headlines_unread = getFeedUnread($link, $returned_feed, $cat_view);
376 $reply['headlines-info'] = array("count" => (int) $headlines_count,
377 "vgroup_last_feed" => $vgroup_last_feed,
378 "unread" => (int) $headlines_unread,
379 "disable_cache" => (bool) $disable_cache);
381 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("20", $timing_info);
383 if (is_array($topmost_article_ids) && !get_pref($link, 'COMBINED_DISPLAY_MODE') && !$_SESSION["bw_limit"]) {
386 foreach ($topmost_article_ids as $id) {
387 array_push($articles, format_article($link, $id, false));
390 $reply['articles'] = $articles;
394 $reply['counters'] = getAllCounters($link, $omode, $feed);
397 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("30", $timing_info);
399 $reply['runtime-info'] = make_runtime_info($link);
401 print json_encode($reply);
406 module_pref_feeds($link);
410 module_pref_filters($link);
411 break; // pref-filters
414 module_pref_labels($link);
415 break; // pref-labels
418 module_pref_prefs($link);
422 module_pref_users($link);
423 break; // prefs-users
430 module_popup_dialog($link);
433 case "pref-pub-items":
434 module_pref_pub_items($link);
435 break; // pref-pub-items
437 case "globalUpdateFeeds":
438 // Update all feeds needing a update.
439 update_daemon_common($link, 0, true, true);
440 break; // globalUpdateFeeds
442 case "pref-feed-browser":
443 module_pref_feed_browser($link);
444 break; // pref-feed-browser
446 case "pref-instances":
447 module_pref_instances($link);
448 break; // pref-instances
451 $feed = db_escape_string($_REQUEST["id"]);
452 $key = db_escape_string($_REQUEST["key"]);
453 $is_cat = $_REQUEST["is_cat"] != false;
454 $limit = (int)db_escape_string($_REQUEST["limit"]);
456 $search = db_escape_string($_REQUEST["q"]);
457 $match_on = db_escape_string($_REQUEST["m"]);
458 $search_mode = db_escape_string($_REQUEST["smode"]);
459 $view_mode = db_escape_string($_REQUEST["view-mode"]);
461 if (SINGLE_USER_MODE) {
462 authenticate_user($link, "admin", null);
468 $result = db_query($link, "SELECT owner_uid FROM
469 ttrss_access_keys WHERE access_key = '$key' AND feed_id = '$feed'");
471 if (db_num_rows($result) == 1)
472 $owner_id = db_fetch_result($result, 0, "owner_uid");
476 $_SESSION['uid'] = $owner_id;
478 generate_syndicated_feed($link, 0, $feed, $is_cat, $limit,
479 $search, $search_mode, $match_on, $view_mode);
481 header('HTTP/1.1 403 Forbidden');
486 $login = db_escape_string($_REQUEST["login"]);
487 $fresh = $_REQUEST["fresh"] == "1";
489 $result = db_query($link, "SELECT id FROM ttrss_users WHERE login = '$login'");
491 if (db_num_rows($result) == 1) {
492 $uid = db_fetch_result($result, 0, "id");
494 print getGlobalUnread($link, $uid);
498 print getFeedArticles($link, -3, false, true, $uid);
502 print "-1;User not found";
508 print_r(prepare_headlines_digest($link, $_SESSION["uid"]));
512 send_headlines_digests($link);
516 header("Content-type: text/html");
517 print __("Loading, please wait...") . " " .
518 "<img src='images/indicator_tiny.gif'>";
522 $login = db_escape_string($_REQUEST["login"]);
523 $password = db_escape_string($_REQUEST["password"]);
525 if (authenticate_user($link, $login, $password)) {
526 $result = db_query($link, "SELECT * FROM ttrss_settings_profiles
527 WHERE owner_uid = " . $_SESSION["uid"] . " ORDER BY title");
529 print "<select style='width: 100%' name='profile'>";
531 print "<option value='0'>" . __("Default profile") . "</option>";
533 while ($line = db_fetch_assoc($result)) {
535 $title = $line["title"];
537 print "<option value='$id'>$title</option>";
544 break; // getprofiles
547 $mode = db_escape_string($_REQUEST['hub_mode']);
548 $feed_id = db_escape_string($_REQUEST['id']);
549 $feed_url = db_escape_string($_REQUEST['hub_topic']);
551 if (!PUBSUBHUBBUB_ENABLED) {
552 header('HTTP/1.0 404 Not Found');
553 echo "404 Not found";
557 // TODO: implement hub_verifytoken checking
559 $result = db_query($link, "SELECT feed_url FROM ttrss_feeds
560 WHERE id = '$feed_id'");
562 if (db_num_rows($result) != 0) {
564 $check_feed_url = db_fetch_result($result, 0, "feed_url");
566 if ($check_feed_url && ($check_feed_url == $feed_url || !$feed_url)) {
567 if ($mode == "subscribe") {
569 db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 2
570 WHERE id = '$feed_id'");
572 print $_REQUEST['hub_challenge'];
575 } else if ($mode == "unsubscribe") {
577 db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 0
578 WHERE id = '$feed_id'");
580 print $_REQUEST['hub_challenge'];
585 // Received update ping, schedule feed update.
587 update_rss_feed($link, $feed_id, true, true);
591 header('HTTP/1.0 404 Not Found');
592 echo "404 Not found";
595 header('HTTP/1.0 404 Not Found');
596 echo "404 Not found";
603 header("Location: tt-rss.php");
608 $access_key = db_escape_string($_POST["key"]);
610 // TODO: rate limit checking using last_connected
611 $result = db_query($link, "SELECT id FROM ttrss_linked_instances
612 WHERE access_key = '$access_key'");
614 if (db_num_rows($result) == 1) {
616 $instance_id = db_fetch_result($result, 0, "id");
618 $result = db_query($link, "SELECT feed_url, site_url, title, subscribers
619 FROM ttrss_feedbrowser_cache ORDER BY subscribers DESC LIMIT 100");
623 while ($line = db_fetch_assoc($result)) {
624 array_push($feeds, $line);
627 db_query($link, "UPDATE ttrss_linked_instances SET
628 last_status_in = 1 WHERE id = '$instance_id'");
630 print json_encode(array("feeds" => $feeds));
632 print json_encode(array("error" => array("code" => 6)));
637 header("Content-Type: text/plain");
638 print json_encode(array("error" => array("code" => 7)));
640 } // Select action according to $op value.
642 // We close the connection to database.