]> git.wh0rd.org - tt-rss.git/blob - backend.php
Extended Actions to include Select by tag (add local modifications, fix
[tt-rss.git] / backend.php
1 <?php
2 /* remove ill effects of magic quotes */
3
4 if (get_magic_quotes_gpc()) {
5 function stripslashes_deep($value) {
6 $value = is_array($value) ?
7 array_map('stripslashes_deep', $value) : stripslashes($value);
8 return $value;
9 }
10
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);
15 }
16
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";
24
25 no_cache_incantation();
26
27 startup_gettext();
28
29 $script_started = getmicrotime();
30
31 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
32
33 if (!$link) {
34 if (DB_TYPE == "mysql") {
35 print mysql_error();
36 }
37 // PG seems to display its own errors just fine by default.
38 return;
39 }
40
41 init_connection($link);
42
43 $op = $_REQUEST["op"];
44 $subop = $_REQUEST["subop"];
45 $mode = $_REQUEST["mode"];
46
47 if ((!$op || $op == "rss" || $op == "dlg") && !$_REQUEST["noxml"]) {
48 header("Content-Type: application/xml; charset=utf-8");
49 } else {
50 header("Content-Type: text/plain; charset=utf-8");
51 }
52
53 if (ENABLE_GZIP_OUTPUT) {
54 ob_start("ob_gzhandler");
55 }
56
57 if (SINGLE_USER_MODE) {
58 authenticate_user($link, "admin", null);
59 }
60
61 if (!($_SESSION["uid"] && validate_session($link)) && $op != "globalUpdateFeeds" &&
62 $op != "rss" && $op != "getUnread" && $op != "getProfiles" &&
63 $op != "fbexport" && $op != "logout" && $op != "pubsub") {
64
65 if ($op == 'pref-feeds' && $_REQUEST['subop'] == 'add') {
66 header("Content-Type: text/html");
67 login_sequence($link);
68 render_login_form($link);
69 } else {
70 header("Content-Type: text/plain");
71 print json_encode(array("error" => array("code" => 6)));
72 }
73 return;
74 }
75
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"));
84
85 $update_intervals = array(
86 0 => __("Default interval"),
87 -1 => __("Disable updates"),
88 15 => __("Each 15 minutes"),
89 30 => __("Each 30 minutes"),
90 60 => __("Hourly"),
91 240 => __("Each 4 hours"),
92 720 => __("Each 12 hours"),
93 1440 => __("Daily"),
94 10080 => __("Weekly"));
95
96 $update_intervals_nodefault = array(
97 -1 => __("Disable updates"),
98 15 => __("Each 15 minutes"),
99 30 => __("Each 30 minutes"),
100 60 => __("Hourly"),
101 240 => __("Each 4 hours"),
102 720 => __("Each 12 hours"),
103 1440 => __("Daily"),
104 10080 => __("Weekly"));
105
106 $update_methods = array(
107 0 => __("Default"),
108 1 => __("Magpie"),
109 2 => __("SimplePie"),
110 3 => __("Twitter OAuth"));
111
112 if (DEFAULT_UPDATE_METHOD == "1") {
113 $update_methods[0] .= ' (SimplePie)';
114 } else {
115 $update_methods[0] .= ' (Magpie)';
116 }
117
118 $access_level_names = array(
119 0 => __("User"),
120 5 => __("Power User"),
121 10 => __("Administrator"));
122
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";
131
132 $error = sanity_check($link);
133
134 if ($error['code'] != 0 && $op != "logout") {
135 print json_encode(array("error" => $error));
136 return;
137 }
138
139 switch($op) { // Select action according to $op value.
140 case "rpc":
141 // Handle remote procedure calls.
142 handle_rpc_request($link);
143 break; // rpc
144
145 case "feeds":
146 $subop = $_REQUEST["subop"];
147 $root = (bool)$_REQUEST["root"];
148
149 switch($subop) {
150 case "catchupAll":
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"]);
154
155 break;
156
157 case "collapse":
158 $cat_id = db_escape_string($_REQUEST["cid"]);
159 $mode = (int) db_escape_string($_REQUEST['mode']);
160 toggle_collapse_cat($link, $cat_id, $mode);
161 return;
162 break;
163 }
164
165 if (!$root) {
166 print json_encode(outputFeedList($link));
167 } else {
168
169 $feeds = outputFeedList($link, false);
170
171 $root = array();
172 $root['id'] = 'root';
173 $root['name'] = __('Feeds');
174 $root['items'] = $feeds['items'];
175
176 $fl = array();
177 $fl['identifier'] = 'id';
178 $fl['label'] = 'name';
179 $fl['items'] = array($root);
180
181 print json_encode($fl);
182 }
183
184 break; // feeds
185
186 case "la":
187 $id = db_escape_string($_REQUEST['id']);
188
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']."'
191 LIMIT 1");
192
193 if (db_num_rows($result) == 1) {
194 $article_url = db_fetch_result($result, 0, 'link');
195 $article_url = str_replace("\n", "", $article_url);
196
197 header("Location: $article_url");
198 return;
199
200 } else {
201 print_error(__("Article not found."));
202 }
203 break;
204
205 case "view":
206
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"]);
211
212 // in prefetch mode we only output requested cids, main article
213 // just gets marked as read (it already exists in client cache)
214
215 $articles = array();
216
217 if ($mode == "") {
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"/>';
225 }
226
227 $article = format_article($link, $id, false);
228 print $article['content'];
229 return;
230 }
231
232 catchupArticleById($link, $id, 0);
233
234 if (!$_SESSION["bw_limit"]) {
235 foreach ($cids as $cid) {
236 if ($cid) {
237 array_push($articles, format_article($link, $cid, false, false));
238 }
239 }
240 }
241
242 print json_encode($articles);
243
244 break; // view
245
246 case "viewfeed":
247
248 $timing_info = getmicrotime();
249
250 $reply = array();
251
252 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("0", $timing_info);
253
254 $omode = db_escape_string($_REQUEST["omode"]);
255
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"]);
265
266 if (is_numeric($feed)) $feed = (int) $feed;
267
268 /* Feed -5 is a special case: it is used to display auxiliary information
269 * when there's nothing to load - e.g. no stuff in fresh feed */
270
271 if ($feed == -5) {
272 print json_encode(generate_dashboard_feed($link));
273 return;
274 }
275
276 $result = false;
277
278 if ($feed < -10) {
279 $label_feed = -11-$feed;
280 $result = db_query($link, "SELECT id FROM ttrss_labels2 WHERE
281 id = '$label_feed' AND owner_uid = " . $_SESSION['uid']);
282 } else if (!$cat_view && is_numeric($feed) && $feed > 0) {
283 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
284 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
285 } else if ($cat_view && is_numeric($feed) && $feed > 0) {
286 $result = db_query($link, "SELECT id FROM ttrss_feed_categories WHERE
287 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
288 }
289
290 if ($result && db_num_rows($result) == 0) {
291 print json_encode(generate_error_feed($link, __("Feed not found.")));
292 return;
293 }
294
295 /* Updating a label ccache means recalculating all of the caches
296 * so for performance reasons we don't do that here */
297
298 if ($feed >= 0) {
299 ccache_update($link, $feed, $_SESSION["uid"], $cat_view);
300 }
301
302 set_pref($link, "_DEFAULT_VIEW_MODE", $view_mode);
303 set_pref($link, "_DEFAULT_VIEW_LIMIT", $limit);
304 set_pref($link, "_DEFAULT_VIEW_ORDER_BY", $order_by);
305
306 if (!$cat_view && preg_match("/^[0-9][0-9]*$/", $feed)) {
307 db_query($link, "UPDATE ttrss_feeds SET last_viewed = NOW()
308 WHERE id = '$feed' AND owner_uid = ".$_SESSION["uid"]);
309 }
310
311 $reply['headlines'] = array();
312
313 if (!$next_unread_feed)
314 $reply['headlines']['id'] = $feed;
315 else
316 $reply['headlines']['id'] = $next_unread_feed;
317
318 $reply['headlines']['is_cat'] = (bool) $cat_view;
319
320 $override_order = false;
321
322 if (get_pref($link, "SORT_HEADLINES_BY_FEED_DATE", $owner_uid)) {
323 $date_sort_field = "updated";
324 } else {
325 $date_sort_field = "date_entered";
326 }
327
328 switch ($order_by) {
329 case "date":
330 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
331 $override_order = "$date_sort_field";
332 } else {
333 $override_order = "$date_sort_field DESC";
334 }
335 break;
336
337 case "title":
338 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
339 $override_order = "title DESC, $date_sort_field";
340 } else {
341 $override_order = "title, $date_sort_field DESC";
342 }
343 break;
344
345 case "score":
346 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
347 $override_order = "score, $date_sort_field";
348 } else {
349 $override_order = "score DESC, $date_sort_field DESC";
350 }
351 break;
352 }
353
354 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("04", $timing_info);
355
356 $ret = format_headlines_list($link, $feed, $subop,
357 $view_mode, $limit, $cat_view, $next_unread_feed, $offset,
358 $vgroup_last_feed, $override_order);
359
360 $topmost_article_ids = $ret[0];
361 $headlines_count = $ret[1];
362 $returned_feed = $ret[2];
363 $disable_cache = $ret[3];
364 $vgroup_last_feed = $ret[4];
365
366 // if ($_REQUEST["debug"]) print_r($ret);
367
368 $reply['headlines']['content'] =& $ret[5]['content'];
369 $reply['headlines']['toolbar'] =& $ret[5]['toolbar'];
370
371 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("05", $timing_info);
372
373 $headlines_unread = ccache_find($link, $returned_feed, $_SESSION["uid"],
374 $cat_view, true);
375
376 if ($headlines_unread == -1) {
377 $headlines_unread = getFeedUnread($link, $returned_feed, $cat_view);
378 }
379
380 $reply['headlines-info'] = array("count" => (int) $headlines_count,
381 "vgroup_last_feed" => $vgroup_last_feed,
382 "unread" => (int) $headlines_unread,
383 "disable_cache" => (bool) $disable_cache);
384
385 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("20", $timing_info);
386
387 if (is_array($topmost_article_ids) && !get_pref($link, 'COMBINED_DISPLAY_MODE') && !$_SESSION["bw_limit"]) {
388 $articles = array();
389
390 foreach ($topmost_article_ids as $id) {
391 array_push($articles, format_article($link, $id, false));
392 }
393
394 $reply['articles'] = $articles;
395 }
396
397 if ($subop) {
398 $reply['counters'] = getAllCounters($link, $omode, $feed);
399 }
400
401 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("30", $timing_info);
402
403 $reply['runtime-info'] = make_runtime_info($link);
404
405 print json_encode($reply);
406
407 break; // viewfeed
408
409 case "pref-feeds":
410 module_pref_feeds($link);
411 break; // pref-feeds
412
413 case "pref-filters":
414 module_pref_filters($link);
415 break; // pref-filters
416
417 case "pref-labels":
418 module_pref_labels($link);
419 break; // pref-labels
420
421 case "pref-prefs":
422 module_pref_prefs($link);
423 break; // pref-prefs
424
425 case "pref-users":
426 module_pref_users($link);
427 break; // prefs-users
428
429 case "help":
430 module_help($link);
431 break; // help
432
433 case "dlg":
434 module_popup_dialog($link);
435 break; // dlg
436
437 case "pref-pub-items":
438 module_pref_pub_items($link);
439 break; // pref-pub-items
440
441 case "globalUpdateFeeds":
442 // Update all feeds needing a update.
443 update_daemon_common($link, 0, true, true);
444 break; // globalUpdateFeeds
445
446 case "pref-feed-browser":
447 module_pref_feed_browser($link);
448 break; // pref-feed-browser
449
450 case "pref-instances":
451 module_pref_instances($link);
452 break; // pref-instances
453
454 case "rss":
455 $feed = db_escape_string($_REQUEST["id"]);
456 $key = db_escape_string($_REQUEST["key"]);
457 $is_cat = $_REQUEST["is_cat"] != false;
458 $limit = (int)db_escape_string($_REQUEST["limit"]);
459
460 $search = db_escape_string($_REQUEST["q"]);
461 $match_on = db_escape_string($_REQUEST["m"]);
462 $search_mode = db_escape_string($_REQUEST["smode"]);
463 $view_mode = db_escape_string($_REQUEST["view-mode"]);
464
465 if (SINGLE_USER_MODE) {
466 authenticate_user($link, "admin", null);
467 }
468
469 $owner_id = false;
470
471 if ($key) {
472 $result = db_query($link, "SELECT owner_uid FROM
473 ttrss_access_keys WHERE access_key = '$key' AND feed_id = '$feed'");
474
475 if (db_num_rows($result) == 1)
476 $owner_id = db_fetch_result($result, 0, "owner_uid");
477 }
478
479 if ($owner_id) {
480 $_SESSION['uid'] = $owner_id;
481
482 generate_syndicated_feed($link, 0, $feed, $is_cat, $limit,
483 $search, $search_mode, $match_on, $view_mode);
484 } else {
485 header('HTTP/1.1 403 Forbidden');
486 }
487 break; // rss
488
489 case "getUnread":
490 $login = db_escape_string($_REQUEST["login"]);
491 $fresh = $_REQUEST["fresh"] == "1";
492
493 $result = db_query($link, "SELECT id FROM ttrss_users WHERE login = '$login'");
494
495 if (db_num_rows($result) == 1) {
496 $uid = db_fetch_result($result, 0, "id");
497
498 print getGlobalUnread($link, $uid);
499
500 if ($fresh) {
501 print ";";
502 print getFeedArticles($link, -3, false, true, $uid);
503 }
504
505 } else {
506 print "-1;User not found";
507 }
508
509 break; // getUnread
510
511 case "digestTest":
512 print_r(prepare_headlines_digest($link, $_SESSION["uid"]));
513 break; // digestTest
514
515 case "digestSend":
516 send_headlines_digests($link);
517 break; // digestSend
518
519 case "loading":
520 header("Content-type: text/html");
521 print __("Loading, please wait...") . " " .
522 "<img src='images/indicator_tiny.gif'>";
523 break; // loading
524
525 case "getProfiles":
526 $login = db_escape_string($_REQUEST["login"]);
527 $password = db_escape_string($_REQUEST["password"]);
528
529 if (authenticate_user($link, $login, $password)) {
530 $result = db_query($link, "SELECT * FROM ttrss_settings_profiles
531 WHERE owner_uid = " . $_SESSION["uid"] . " ORDER BY title");
532
533 print "<select style='width: 100%' name='profile'>";
534
535 print "<option value='0'>" . __("Default profile") . "</option>";
536
537 while ($line = db_fetch_assoc($result)) {
538 $id = $line["id"];
539 $title = $line["title"];
540
541 print "<option value='$id'>$title</option>";
542 }
543
544 print "</select>";
545
546 $_SESSION = array();
547 }
548 break; // getprofiles
549
550 case "pubsub":
551 $mode = db_escape_string($_REQUEST['hub_mode']);
552 $feed_id = (int) db_escape_string($_REQUEST['id']);
553 $feed_url = db_escape_string($_REQUEST['hub_topic']);
554
555 if (!PUBSUBHUBBUB_ENABLED) {
556 header('HTTP/1.0 404 Not Found');
557 echo "404 Not found";
558 return;
559 }
560
561 // TODO: implement hub_verifytoken checking
562
563 $result = db_query($link, "SELECT feed_url FROM ttrss_feeds
564 WHERE id = '$feed_id'");
565
566 if (db_num_rows($result) != 0) {
567
568 $check_feed_url = db_fetch_result($result, 0, "feed_url");
569
570 if ($check_feed_url && ($check_feed_url == $feed_url || !$feed_url)) {
571 if ($mode == "subscribe") {
572
573 db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 2
574 WHERE id = '$feed_id'");
575
576 print $_REQUEST['hub_challenge'];
577 return;
578
579 } else if ($mode == "unsubscribe") {
580
581 db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 0
582 WHERE id = '$feed_id'");
583
584 print $_REQUEST['hub_challenge'];
585 return;
586
587 } else if (!$mode) {
588
589 // Received update ping, schedule feed update.
590 //update_rss_feed($link, $feed_id, true, true);
591
592 db_query($link, "UPDATE ttrss_feeds SET
593 last_update_started = '1970-01-01',
594 last_updated = '1970-01-01' WHERE id = '$feed_id' AND
595 owner_uid = ".$_SESSION["uid"]);
596
597 }
598 } else {
599 header('HTTP/1.0 404 Not Found');
600 echo "404 Not found";
601 }
602 } else {
603 header('HTTP/1.0 404 Not Found');
604 echo "404 Not found";
605 }
606
607 break; // pubsub
608
609 case "logout":
610 logout_user();
611 header("Location: tt-rss.php");
612 break; // logout
613
614 case "fbexport":
615
616 $access_key = db_escape_string($_POST["key"]);
617
618 // TODO: rate limit checking using last_connected
619 $result = db_query($link, "SELECT id FROM ttrss_linked_instances
620 WHERE access_key = '$access_key'");
621
622 if (db_num_rows($result) == 1) {
623
624 $instance_id = db_fetch_result($result, 0, "id");
625
626 $result = db_query($link, "SELECT feed_url, site_url, title, subscribers
627 FROM ttrss_feedbrowser_cache ORDER BY subscribers DESC LIMIT 100");
628
629 $feeds = array();
630
631 while ($line = db_fetch_assoc($result)) {
632 array_push($feeds, $line);
633 }
634
635 db_query($link, "UPDATE ttrss_linked_instances SET
636 last_status_in = 1 WHERE id = '$instance_id'");
637
638 print json_encode(array("feeds" => $feeds));
639 } else {
640 print json_encode(array("error" => array("code" => 6)));
641 }
642 break; // fbexport
643
644 default:
645 header("Content-Type: text/plain");
646 print json_encode(array("error" => array("code" => 7)));
647 break; // fallback
648 } // Select action according to $op value.
649
650 // We close the connection to database.
651 db_close($link);
652 ?>