]> git.wh0rd.org - tt-rss.git/blob - backend.php
fix pubsubhubbub challenge response
[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 != "pubsub") {
64
65 header("Content-Type: text/plain");
66 print json_encode(array("error" => array("code" => 6)));
67 return;
68 }
69
70 $purge_intervals = array(
71 0 => __("Use default"),
72 -1 => __("Never purge"),
73 5 => __("1 week old"),
74 14 => __("2 weeks old"),
75 31 => __("1 month old"),
76 60 => __("2 months old"),
77 90 => __("3 months old"));
78
79 $update_intervals = array(
80 0 => __("Default interval"),
81 -1 => __("Disable updates"),
82 15 => __("Each 15 minutes"),
83 30 => __("Each 30 minutes"),
84 60 => __("Hourly"),
85 240 => __("Each 4 hours"),
86 720 => __("Each 12 hours"),
87 1440 => __("Daily"),
88 10080 => __("Weekly"));
89
90 $update_intervals_nodefault = array(
91 -1 => __("Disable updates"),
92 15 => __("Each 15 minutes"),
93 30 => __("Each 30 minutes"),
94 60 => __("Hourly"),
95 240 => __("Each 4 hours"),
96 720 => __("Each 12 hours"),
97 1440 => __("Daily"),
98 10080 => __("Weekly"));
99
100 $update_methods = array(
101 0 => __("Default"),
102 1 => __("Magpie"),
103 2 => __("SimplePie"),
104 3 => __("Twitter OAuth"));
105
106 if (DEFAULT_UPDATE_METHOD == "1") {
107 $update_methods[0] .= ' (SimplePie)';
108 } else {
109 $update_methods[0] .= ' (Magpie)';
110 }
111
112 $access_level_names = array(
113 0 => __("User"),
114 5 => __("Power User"),
115 10 => __("Administrator"));
116
117 require_once "modules/pref-prefs.php";
118 require_once "modules/popup-dialog.php";
119 require_once "modules/help.php";
120 require_once "modules/pref-feeds.php";
121 require_once "modules/pref-filters.php";
122 require_once "modules/pref-labels.php";
123 require_once "modules/pref-users.php";
124
125 $error = sanity_check($link);
126
127 if ($error['code'] != 0) {
128 print json_encode(array("error" => $error));
129 return;
130 }
131
132 switch($op) { // Select action according to $op value.
133 case "rpc":
134 // Handle remote procedure calls.
135 handle_rpc_request($link);
136 break; // rpc
137
138 case "feeds":
139 $subop = $_REQUEST["subop"];
140 $root = (bool)$_REQUEST["root"];
141
142 switch($subop) {
143 case "catchupAll":
144 db_query($link, "UPDATE ttrss_user_entries SET
145 last_read = NOW(),unread = false WHERE owner_uid = " . $_SESSION["uid"]);
146 ccache_zero_all($link, $_SESSION["uid"]);
147
148 break;
149
150 case "collapse":
151 $cat_id = db_escape_string($_REQUEST["cid"]);
152 $mode = (int) db_escape_string($_REQUEST['mode']);
153 toggle_collapse_cat($link, $cat_id, $mode);
154 return;
155 break;
156 }
157
158 if (!$root) {
159 print json_encode(outputFeedList($link));
160 } else {
161
162 $feeds = outputFeedList($link, false);
163
164 $root = array();
165 $root['id'] = 'root';
166 $root['name'] = __('Feeds');
167 $root['items'] = $feeds['items'];
168
169 $fl = array();
170 $fl['identifier'] = 'id';
171 $fl['label'] = 'name';
172 $fl['items'] = array($root);
173
174 print json_encode($fl);
175 }
176
177 break; // feeds
178
179 case "la":
180 $id = db_escape_string($_REQUEST['id']);
181
182 $result = db_query($link, "SELECT link FROM ttrss_entries, ttrss_user_entries
183 WHERE id = '$id' AND id = ref_id AND owner_uid = '".$_SESSION['uid']."'");
184
185 if (db_num_rows($result) == 1) {
186 $article_url = db_fetch_result($result, 0, 'link');
187 $article_url = str_replace("\n", "", $article_url);
188
189 header("Location: $article_url");
190 return;
191
192 } else {
193 print_error(__("Article not found."));
194 }
195 break;
196
197 case "view":
198
199 $id = db_escape_string($_REQUEST["id"]);
200 $cids = split(",", db_escape_string($_REQUEST["cids"]));
201 $mode = db_escape_string($_REQUEST["mode"]);
202 $omode = db_escape_string($_REQUEST["omode"]);
203
204 // in prefetch mode we only output requested cids, main article
205 // just gets marked as read (it already exists in client cache)
206
207 $articles = array();
208
209 if ($mode == "") {
210 array_push($articles, format_article($link, $id, false));
211 } else if ($mode == "zoom") {
212 array_push($articles, format_article($link, $id, false, true, true));
213 } else {
214 catchupArticleById($link, $id, 0);
215 }
216
217 if (!$_SESSION["bw_limit"]) {
218 foreach ($cids as $cid) {
219 if ($cid) {
220 array_push($articles, format_article($link, $cid, false, false));
221 }
222 }
223 }
224
225 print json_encode($articles);
226
227 break; // view
228
229 case "viewfeed":
230
231 $timing_info = getmicrotime();
232
233 $reply = array();
234
235 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("0", $timing_info);
236
237 $omode = db_escape_string($_REQUEST["omode"]);
238
239 $feed = db_escape_string($_REQUEST["feed"]);
240 $subop = db_escape_string($_REQUEST["subop"]);
241 $view_mode = db_escape_string($_REQUEST["view_mode"]);
242 $limit = (int) get_pref($link, "DEFAULT_ARTICLE_LIMIT");
243 @$cat_view = db_escape_string($_REQUEST["cat"]);
244 @$next_unread_feed = db_escape_string($_REQUEST["nuf"]);
245 @$offset = db_escape_string($_REQUEST["skip"]);
246 @$vgroup_last_feed = db_escape_string($_REQUEST["vgrlf"]);
247 $order_by = db_escape_string($_REQUEST["order_by"]);
248
249 /* Feed -5 is a special case: it is used to display auxiliary information
250 * when there's nothing to load - e.g. no stuff in fresh feed */
251
252 if ($feed == -5) {
253 print json_encode(generate_dashboard_feed($link));
254 return;
255 }
256
257 $result = false;
258
259 if ($feed < -10) {
260 $label_feed = -11-$feed;
261 $result = db_query($link, "SELECT id FROM ttrss_labels2 WHERE
262 id = '$label_feed' AND owner_uid = " . $_SESSION['uid']);
263 } else if (!$cat_view && $feed > 0) {
264 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
265 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
266 } else if ($cat_view && $feed > 0) {
267 $result = db_query($link, "SELECT id FROM ttrss_feed_categories WHERE
268 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
269 }
270
271 if ($result && db_num_rows($result) == 0) {
272 print json_encode(generate_error_feed($link, __("Feed not found.")));
273 return;
274 }
275
276 /* Updating a label ccache means recalculating all of the caches
277 * so for performance reasons we don't do that here */
278
279 if ($feed >= 0) {
280 ccache_update($link, $feed, $_SESSION["uid"], $cat_view);
281 }
282
283 set_pref($link, "_DEFAULT_VIEW_MODE", $view_mode);
284 set_pref($link, "_DEFAULT_VIEW_LIMIT", $limit);
285 set_pref($link, "_DEFAULT_VIEW_ORDER_BY", $order_by);
286
287 if (!$cat_view && preg_match("/^[0-9][0-9]*$/", $feed)) {
288 db_query($link, "UPDATE ttrss_feeds SET last_viewed = NOW()
289 WHERE id = '$feed' AND owner_uid = ".$_SESSION["uid"]);
290 }
291
292 $reply['headlines'] = array();
293
294 if (!$next_unread_feed)
295 $reply['headlines']['id'] = $feed;
296 else
297 $reply['headlines']['id'] = $next_unread_feed;
298
299 $reply['headlines']['is_cat'] = (bool) $cat_view;
300
301 $override_order = false;
302
303 if (get_pref($link, "SORT_HEADLINES_BY_FEED_DATE", $owner_uid)) {
304 $date_sort_field = "updated";
305 } else {
306 $date_sort_field = "date_entered";
307 }
308
309 switch ($order_by) {
310 case "date":
311 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
312 $override_order = "$date_sort_field";
313 } else {
314 $override_order = "$date_sort_field DESC";
315 }
316 break;
317
318 case "title":
319 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
320 $override_order = "title DESC, $date_sort_field";
321 } else {
322 $override_order = "title, $date_sort_field DESC";
323 }
324 break;
325
326 case "score":
327 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
328 $override_order = "score, $date_sort_field";
329 } else {
330 $override_order = "score DESC, $date_sort_field DESC";
331 }
332 break;
333 }
334
335 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("04", $timing_info);
336
337 $ret = format_headlines_list($link, $feed, $subop,
338 $view_mode, $limit, $cat_view, $next_unread_feed, $offset,
339 $vgroup_last_feed, $override_order);
340
341 $topmost_article_ids = $ret[0];
342 $headlines_count = $ret[1];
343 $returned_feed = $ret[2];
344 $disable_cache = $ret[3];
345 $vgroup_last_feed = $ret[4];
346
347 $reply['headlines']['content'] = $ret[5];
348 $reply['headlines']['toolbar'] = $ret[6];
349
350 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("05", $timing_info);
351
352 $headlines_unread = ccache_find($link, $returned_feed, $_SESSION["uid"],
353 $cat_view, true);
354
355 if ($headlines_unread == -1) {
356 $headlines_unread = getFeedUnread($link, $returned_feed, $cat_view);
357 }
358
359 $reply['headlines-info'] = array("count" => (int) $headlines_count,
360 "vgroup_last_feed" => $vgroup_last_feed,
361 "unread" => (int) $headlines_unread,
362 "disable_cache" => (bool) $disable_cache);
363
364 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("20", $timing_info);
365
366 if (is_array($topmost_article_ids) && !get_pref($link, 'COMBINED_DISPLAY_MODE') && !$_SESSION["bw_limit"]) {
367 $articles = array();
368
369 foreach ($topmost_article_ids as $id) {
370 array_push($articles, format_article($link, $id, $feed, false));
371 }
372
373 $reply['articles'] = $articles;
374 }
375
376 if ($subop) {
377 $reply['counters'] = getAllCounters($link, $omode, $feed);
378 }
379
380 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("30", $timing_info);
381
382 $reply['runtime-info'] = make_runtime_info($link);
383
384 print json_encode($reply);
385
386 break; // viewfeed
387
388 case "pref-feeds":
389 module_pref_feeds($link);
390 break; // pref-feeds
391
392 case "pref-filters":
393 module_pref_filters($link);
394 break; // pref-filters
395
396 case "pref-labels":
397 module_pref_labels($link);
398 break; // pref-labels
399
400 case "pref-prefs":
401 module_pref_prefs($link);
402 break; // pref-prefs
403
404 case "pref-users":
405 module_pref_users($link);
406 break; // prefs-users
407
408 case "help":
409 module_help($link);
410 break; // help
411
412 case "dlg":
413 module_popup_dialog($link);
414 break; // dlg
415
416 case "pref-pub-items":
417 module_pref_pub_items($link);
418 break; // pref-pub-items
419
420 case "globalUpdateFeeds":
421 // Update all feeds needing a update.
422 update_daemon_common($link, 0, true, true);
423 break; // globalUpdateFeeds
424
425 case "pref-feed-browser":
426 module_pref_feed_browser($link);
427 break; // pref-feed-browser
428
429 case "rss":
430 $feed = db_escape_string($_REQUEST["id"]);
431 $key = db_escape_string($_REQUEST["key"]);
432 $is_cat = $_REQUEST["is_cat"] != false;
433 $limit = (int)db_escape_string($_REQUEST["limit"]);
434
435 $search = db_escape_string($_REQUEST["q"]);
436 $match_on = db_escape_string($_REQUEST["m"]);
437 $search_mode = db_escape_string($_REQUEST["smode"]);
438 $view_mode = db_escape_string($_REQUEST["view-mode"]);
439
440 if (SINGLE_USER_MODE) {
441 authenticate_user($link, "admin", null);
442 }
443
444 $owner_id = false;
445
446 if ($key) {
447 $result = db_query($link, "SELECT owner_uid FROM
448 ttrss_access_keys WHERE access_key = '$key' AND feed_id = '$feed'");
449
450 if (db_num_rows($result) == 1)
451 $owner_id = db_fetch_result($result, 0, "owner_uid");
452 }
453
454 if ($owner_id) {
455 $_SESSION['uid'] = $owner_id;
456
457 generate_syndicated_feed($link, 0, $feed, $is_cat, $limit,
458 $search, $search_mode, $match_on, $view_mode);
459 } else {
460 header('HTTP/1.1 403 Forbidden');
461 }
462 break; // rss
463
464 case "getUnread":
465 $login = db_escape_string($_REQUEST["login"]);
466 $fresh = $_REQUEST["fresh"] == "1";
467
468 $result = db_query($link, "SELECT id FROM ttrss_users WHERE login = '$login'");
469
470 if (db_num_rows($result) == 1) {
471 $uid = db_fetch_result($result, 0, "id");
472
473 print getGlobalUnread($link, $uid);
474
475 if ($fresh) {
476 print ";";
477 print getFeedArticles($link, -3, false, true, $uid);
478 }
479
480 } else {
481 print "-1;User not found";
482 }
483
484 break; // getUnread
485
486 case "digestTest":
487 print_r(prepare_headlines_digest($link, $_SESSION["uid"]));
488 break; // digestTest
489
490 case "digestSend":
491 send_headlines_digests($link);
492 break; // digestSend
493
494 case "loading":
495 print __("Loading, please wait...") . " " .
496 "<img src='images/indicator_tiny.gif'>";
497
498 case "getProfiles":
499 $login = db_escape_string($_REQUEST["login"]);
500 $password = db_escape_string($_REQUEST["password"]);
501
502 if (authenticate_user($link, $login, $password)) {
503 $result = db_query($link, "SELECT * FROM ttrss_settings_profiles
504 WHERE owner_uid = " . $_SESSION["uid"] . " ORDER BY title");
505
506 print "<select style='width: 100%' name='profile'>";
507
508 print "<option value='0'>" . __("Default profile") . "</option>";
509
510 while ($line = db_fetch_assoc($result)) {
511 $id = $line["id"];
512 $title = $line["title"];
513
514 print "<option value='$id'>$title</option>";
515 }
516
517 print "</select>";
518
519 $_SESSION = array();
520 }
521 break;
522
523 case "pubsub":
524 $mode = db_escape_string($_REQUEST['hub_mode']);
525 $feed_id = db_escape_string($_REQUEST['id']);
526 $feed_url = db_escape_string($_REQUEST['hub_topic']);
527
528 // TODO: implement hub_verifytoken checking
529
530 $result = db_query($link, "SELECT feed_url FROM ttrss_feeds
531 WHERE id = '$feed_id'");
532
533 $check_feed_url = db_fetch_result($result, 0, "feed_url");
534
535 if ($check_feed_url && ($check_feed_url == $feed_url || !$feed_url)) {
536 if ($mode == "subscribe") {
537
538 db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 2
539 WHERE id = '$feed_id'");
540
541 print $_REQUEST['hub_challenge'];
542 return;
543
544 } else if ($mode == "unsubscribe") {
545
546 db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 0
547 WHERE id = '$feed_id'");
548
549 print $_REQUEST['hub_challenge'];
550 return;
551
552 } else if (!$mode) {
553
554 // Received update ping, schedule feed update.
555
556 update_rss_feed($link, $feed_id, true, true);
557
558 }
559 } else {
560 header('HTTP/1.0 404 Not Found');
561 }
562
563 break;
564 } // Select action according to $op value.
565
566 // We close the connection to database.
567 db_close($link);
568 ?>