]> git.wh0rd.org - tt-rss.git/blame - backend.php
headline caching (some more debugging)
[tt-rss.git] / backend.php
CommitLineData
1d3a17c7 1<?php
d65981e2
AD
2 error_reporting(E_ERROR | E_WARNING | E_PARSE);
3
ce885e21
AD
4 /* remove ill effects of magic quotes */
5
6 if (get_magic_quotes_gpc()) {
7 $_GET = array_map('stripslashes', $_GET);
8 $_POST = array_map('stripslashes', $_POST);
9 $_REQUEST = array_map('stripslashes', $_REQUEST);
10 $_COOKIE = array_map('stripslashes', $_COOKIE);
11 }
12
36bfab86 13 require_once "sessions.php";
c339343b 14 require_once "modules/backend-rpc.php";
dc56b3b7 15
894ebcf5 16/* if ($_GET["debug"]) {
cce28758
AD
17 define('DEFAULT_ERROR_LEVEL', E_ALL);
18 } else {
19 define('DEFAULT_ERROR_LEVEL', E_ERROR | E_WARNING | E_PARSE);
20 }
894ebcf5
AD
21
22 error_reporting(DEFAULT_ERROR_LEVEL); */
cce28758 23
657770a0
AD
24 require_once "sanity_check.php";
25 require_once "config.php";
af106b0e
AD
26
27 require_once "db.php";
28 require_once "db-prefs.php";
29 require_once "functions.php";
657770a0 30
dc56b3b7 31 no_cache_incantation();
8d039718
AD
32
33 if (ENABLE_TRANSLATIONS == true) {
34 startup_gettext();
35 }
dc56b3b7 36
7f0acba7
AD
37 $script_started = getmicrotime();
38
39 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
40
41 if (!$link) {
42 if (DB_TYPE == "mysql") {
43 print mysql_error();
44 }
45 // PG seems to display its own errors just fine by default.
46 return;
47 }
48
49 if (DB_TYPE == "pgsql") {
50 pg_query("set client_encoding = 'UTF-8'");
51 pg_set_client_encoding("UNICODE");
70dcff6b 52 } else {
bddc9788
AD
53 if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
54 db_query($link, "SET NAMES " . MYSQL_CHARSET);
75ca1986 55// db_query($link, "SET CHARACTER SET " . MYSQL_CHARSET);
bddc9788 56 }
7f0acba7
AD
57 }
58
59 $op = $_REQUEST["op"];
60
c339343b 61 $print_exec_time = false;
7e3634d9 62
3de0261a 63 if ((!$op || $op == "rpc" || $op == "rss" || $op == "view" ||
945c243e 64 $op == "digestSend" || $op == "viewfeed" || $op == "publish" ||
18664970 65 $op == "globalUpdateFeeds") && !$_REQUEST["noxml"]) {
6002818b 66 header("Content-Type: application/xml; charset=utf-8");
9fdf7824
AD
67 } else {
68 if (!$_REQUEST["noxml"]) {
69 header("Content-Type: text/html; charset=utf-8");
70 } else {
71 header("Content-Type: text/plain; charset=utf-8");
72 }
262bd8ea
AD
73 }
74
f3acc32e
AD
75 if (!$op) {
76 header("Content-Type: application/xml");
77 print_error_xml(7); exit;
78 }
42c32916 79
7f0acba7 80 if (!($_SESSION["uid"] && validate_session($link)) && $op != "globalUpdateFeeds"
945c243e 81 && $op != "rss" && $op != "getUnread" && $op != "publish") {
262bd8ea 82
2e918d9d 83 if ($op == "rpc" || $op == "viewfeed" || $op == "view") {
af106b0e 84 print_error_xml(6); die;
04269460
AD
85 } else {
86 print "
87 <html><body>
88 <p>Error: Not logged in.</p>
89 <script type=\"text/javascript\">
90 if (parent.window != 'undefined') {
01a87dff 91 parent.window.location = \"tt-rss.php\";
04269460 92 } else {
01a87dff 93 window.location = \"tt-rss.php\";
04269460
AD
94 }
95 </script>
96 </body></html>
97 ";
262bd8ea
AD
98 }
99 exit;
100 }
1c7f75ed 101
ad815c71 102 $purge_intervals = array(
d1db26aa
AD
103 0 => __("Use default"),
104 -1 => __("Never purge"),
105 5 => __("1 week old"),
106 14 => __("2 weeks old"),
107 31 => __("1 month old"),
108 60 => __("2 months old"),
109 90 => __("3 months old"));
ad815c71
AD
110
111 $update_intervals = array(
d1db26aa
AD
112 0 => __("Use default"),
113 -1 => __("Disable updates"),
1e7cbe16 114 15 => __("Each 15 minutes"),
d1db26aa
AD
115 30 => __("Each 30 minutes"),
116 60 => __("Hourly"),
117 240 => __("Each 4 hours"),
118 720 => __("Each 12 hours"),
119 1440 => __("Daily"),
120 10080 => __("Weekly"));
ad815c71 121
d20f3544 122
3c5783b7 123 $access_level_names = array(
d1db26aa
AD
124 0 => __("User"),
125 10 => __("Administrator"));
3c5783b7 126
f27d955a 127 require_once "modules/pref-prefs.php";
ef8be8ea
AD
128 require_once "modules/popup-dialog.php";
129 require_once "modules/help.php";
130 require_once "modules/pref-feeds.php";
131 require_once "modules/pref-filters.php";
132 require_once "modules/pref-labels.php";
133 require_once "modules/pref-users.php";
c339343b 134 require_once "modules/pref-feed-browser.php";
ef8be8ea 135
b2804af7 136 if (!sanity_check($link)) { return; }
023fe037 137
c3b81db0 138 if ($op == "rpc") {
01b3e191 139 handle_rpc_request($link);
c3b81db0
AD
140 }
141
142 if ($op == "feeds") {
143
8143ae1f
AD
144 $tags = $_GET["tags"];
145
c3b81db0
AD
146 $subop = $_GET["subop"];
147
148 if ($subop == "catchupAll") {
b018b49b 149 db_query($link, "UPDATE ttrss_user_entries SET
6d15e1ef 150 last_read = NOW(),unread = false WHERE owner_uid = " . $_SESSION["uid"]);
c3b81db0
AD
151 }
152
fe14aeb8
AD
153 if ($subop == "collapse") {
154 $cat_id = db_escape_string($_GET["cid"]);
280ee9a3 155
fe14aeb8
AD
156 db_query($link, "UPDATE ttrss_feed_categories SET
157 collapsed = NOT collapsed WHERE id = '$cat_id' AND owner_uid = " .
158 $_SESSION["uid"]);
159 return;
160 }
161
8143ae1f 162 outputFeedList($link, $tags);
c3b81db0 163
1cd17194
AD
164 }
165
e097e8be
AD
166 if ($op == "view") {
167
168 $id = db_escape_string($_GET["id"]);
169 $feed_id = db_escape_string($_GET["feed"]);
170 $cids = split(",", db_escape_string($_GET["cids"]));
171 $mode = db_escape_string($_GET["mode"]);
5a94a953 172 $omode = db_escape_string($_GET["omode"]);
e097e8be
AD
173
174 print "<reply>";
175
176 // in prefetch mode we only output requested cids, main article
177 // just gets marked as read (it already exists in client cache)
178
addb5836 179 if ($mode == "") {
e097e8be 180 outputArticleXML($link, $id, $feed_id);
53761dda 181 } else {
e097e8be
AD
182 catchupArticleById($link, $id, 0);
183 }
184
185 foreach ($cids as $cid) {
186 if ($cid) {
187 outputArticleXML($link, $cid, $feed_id, false);
188 }
189 }
190
addb5836
AD
191 if ($mode != "prefetch_old") {
192 print "<counters>";
193 getAllCounters($link, $omode);
194 print "</counters>";
195 }
5a94a953 196
e097e8be 197 print "</reply>";
1cd17194
AD
198 }
199
200 if ($op == "viewfeed") {
201
46921916
AD
202 $print_exec_time = true;
203 $timing_info = getmicrotime();
204
3de0261a
AD
205 print "<reply>";
206
46921916
AD
207 if ($_GET["debug"]) $timing_info = print_checkpoint("0", $timing_info);
208
3de0261a
AD
209 $omode = db_escape_string($_GET["omode"]);
210
3c81ae1a 211 $feed = db_escape_string($_GET["feed"]);
3c81ae1a 212 $subop = db_escape_string($_GET["subop"]);
86b682ce 213 $view_mode = db_escape_string($_GET["view_mode"]);
3c81ae1a
AD
214 $limit = db_escape_string($_GET["limit"]);
215 $cat_view = db_escape_string($_GET["cat"]);
e0998414 216 $next_unread_feed = db_escape_string($_GET["nuf"]);
203de776
AD
217 $offset = db_escape_string($_GET["skip"]);
218
40496720
AD
219 set_pref($link, "_DEFAULT_VIEW_MODE", $view_mode);
220 set_pref($link, "_DEFAULT_VIEW_LIMIT", $limit);
221
3de0261a 222 print "<headlines id=\"$feed\"><![CDATA[";
c50e2b30 223
29dfb258 224 $ret = outputHeadlinesList($link, $feed, $subop,
961f4c73 225 $view_mode, $limit, $cat_view, $next_unread_feed, $offset);
d76a3b03 226
29dfb258
AD
227 $topmost_article_ids = $ret[0];
228 $headlines_count = $ret[1];
229
3de0261a 230 print "]]></headlines>";
98bea1b1 231
29dfb258
AD
232 print "<headlines-count value=\"$headlines_count\"/>";
233
e19c1824
AD
234 $headlines_unread = getFeedUnread($link, $feed);
235
236 print "<headlines-unread value=\"$headlines_unread\"/>";
237
46921916
AD
238 if ($_GET["debug"]) $timing_info = print_checkpoint("10", $timing_info);
239
a8f8e30f 240 if (is_array($topmost_article_ids) && !get_pref($link, 'COMBINED_DISPLAY_MODE')) {
961f4c73
AD
241 print "<articles>";
242 foreach ($topmost_article_ids as $id) {
243 outputArticleXML($link, $id, $feed, false);
244 }
245 print "</articles>";
246 }
247
46921916
AD
248 if ($_GET["debug"]) $timing_info = print_checkpoint("20", $timing_info);
249
3de0261a 250 print "<counters>";
4ffa126e 251 getAllCounters($link, $omode, $feed);
3de0261a 252 print "</counters>";
98bea1b1 253
46921916
AD
254 if ($_GET["debug"]) $timing_info = print_checkpoint("30", $timing_info);
255
03c88bdd
AD
256 print_runtime_info($link);
257
3de0261a 258 print "</reply>";
1cd17194
AD
259 }
260
0e091d38 261 if ($op == "pref-feeds") {
ef8be8ea
AD
262 module_pref_feeds($link);
263 }
a7f22b70 264
ef8be8ea
AD
265 if ($op == "pref-filters") {
266 module_pref_filters($link);
267 }
a0476535 268
ef8be8ea
AD
269 if ($op == "pref-labels") {
270 module_pref_labels($link);
271 }
d0000401 272
f27d955a
AD
273 if ($op == "pref-prefs") {
274 module_pref_prefs($link);
275 }
276
277 if ($op == "pref-users") {
278 module_pref_users($link);
ef8be8ea 279 }
a0476535 280
ef8be8ea
AD
281 if ($op == "help") {
282 module_help($link);
283 }
a0476535 284
ef8be8ea
AD
285 if ($op == "dlg") {
286 module_popup_dialog($link);
287 }
a7f22b70 288
e4f4b46f
AD
289 if ($op == "pref-pub-items") {
290 module_pref_pub_items($link);
291 }
292
293
ef8be8ea
AD
294 // update feeds of all users, may be used anonymously
295 if ($op == "globalUpdateFeeds") {
a7f22b70 296
ef8be8ea 297 $result = db_query($link, "SELECT id FROM ttrss_users");
a0476535 298
ef8be8ea
AD
299 while ($line = db_fetch_assoc($result)) {
300 $user_id = $line["id"];
301// print "<!-- updating feeds of uid $user_id -->";
302 update_all_feeds($link, false, $user_id);
303 }
e2f728be 304
ef8be8ea
AD
305 print "<rpc-reply>
306 <message msg=\"All feeds updated\"/>
307 </rpc-reply>";
e5d758e3 308
ef8be8ea 309 }
f9cb39ac 310
ef8be8ea 311 if ($op == "user-details") {
0af33e87 312
ef8be8ea
AD
313 if (WEB_DEMO_MODE || $_SESSION["access_level"] < 10) {
314 return;
315 }
316
317/* print "<html><head>
318 <title>Tiny Tiny RSS : User Details</title>
319 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
320 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
321 </head><body>"; */
0af33e87 322
ef8be8ea 323 $uid = sprintf("%d", $_GET["id"]);
dc932d0a 324
ef8be8ea 325 print "<div id=\"infoBoxTitle\">User details</div>";
dc932d0a 326
ef8be8ea 327 print "<div class='infoBoxContents'>";
f9cb39ac 328
ef8be8ea
AD
329 $result = db_query($link, "SELECT login,
330 SUBSTRING(last_login,1,16) AS last_login,
331 access_level,
332 (SELECT COUNT(int_id) FROM ttrss_user_entries
54a3d3cf
AD
333 WHERE owner_uid = id) AS stored_articles,
334 SUBSTRING(created,1,16) AS created
ef8be8ea
AD
335 FROM ttrss_users
336 WHERE id = '$uid'");
f9cb39ac 337
ef8be8ea
AD
338 if (db_num_rows($result) == 0) {
339 print "<h1>User not found</h1>";
340 return;
341 }
342
343# print "<h1>User Details</h1>";
f9cb39ac 344
ef8be8ea 345 $login = db_fetch_result($result, 0, "login");
b92e6209 346
ef8be8ea 347# print "<h1>$login</h1>";
dc932d0a 348
ef8be8ea 349 print "<table width='100%'>";
dc932d0a 350
ef8be8ea
AD
351 $last_login = date(get_pref($link, 'LONG_DATE_FORMAT'),
352 strtotime(db_fetch_result($result, 0, "last_login")));
54a3d3cf
AD
353
354 $created = date(get_pref($link, 'LONG_DATE_FORMAT'),
355 strtotime(db_fetch_result($result, 0, "created")));
356
ef8be8ea
AD
357 $access_level = db_fetch_result($result, 0, "access_level");
358 $stored_articles = db_fetch_result($result, 0, "stored_articles");
f9cb39ac 359
ef8be8ea
AD
360# print "<tr><td>Username</td><td>$login</td></tr>";
361# print "<tr><td>Access level</td><td>$access_level</td></tr>";
54a3d3cf
AD
362 print "<tr><td>".__('Registered')."</td><td>$created</td></tr>";
363 print "<tr><td>".__('Last logged in')."</td><td>$last_login</td></tr>";
364 print "<tr><td>".__('Stored articles')."</td><td>$stored_articles</td></tr>";
f9cb39ac 365
ef8be8ea
AD
366 $result = db_query($link, "SELECT COUNT(id) as num_feeds FROM ttrss_feeds
367 WHERE owner_uid = '$uid'");
f9cb39ac 368
ef8be8ea 369 $num_feeds = db_fetch_result($result, 0, "num_feeds");
f9cb39ac 370
54a3d3cf 371 print "<tr><td>".__('Subscribed feeds count')."</td><td>$num_feeds</td></tr>";
0ea4fb50 372
ef8be8ea
AD
373/* $result = db_query($link, "SELECT
374 SUM(LENGTH(content)+LENGTH(title)+LENGTH(link)+LENGTH(guid)) AS db_size
375 FROM ttrss_user_entries,ttrss_entries
376 WHERE owner_uid = '$uid' AND ref_id = id");
0ea4fb50 377
ef8be8ea 378 $db_size = round(db_fetch_result($result, 0, "db_size") / 1024);
0ea4fb50 379
ef8be8ea 380 print "<tr><td>Approx. used DB size</td><td>$db_size KBytes</td></tr>"; */
e5d758e3 381
ef8be8ea 382 print "</table>";
e5d758e3 383
54a3d3cf 384 print "<h1>".__('Subscribed feeds')."</h1>";
e5d758e3 385
ef8be8ea
AD
386 $result = db_query($link, "SELECT id,title,site_url FROM ttrss_feeds
387 WHERE owner_uid = '$uid' ORDER BY title");
0ea4fb50 388
ef8be8ea 389 print "<ul class=\"userFeedList\">";
0ea4fb50 390
ef8be8ea 391 $row_class = "odd";
0ea4fb50 392
ef8be8ea 393 while ($line = db_fetch_assoc($result)) {
0ea4fb50 394
ef8be8ea 395 $icon_file = ICONS_URL."/".$line["id"].".ico";
ad815c71 396
ef8be8ea
AD
397 if (file_exists($icon_file) && filesize($icon_file) > 0) {
398 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"$icon_file\">";
399 } else {
400 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
401 }
0ea4fb50 402
ef8be8ea 403 print "<li class=\"$row_class\">$feed_icon&nbsp;<a href=\"".$line["site_url"]."\">".$line["title"]."</a></li>";
0ea4fb50 404
ef8be8ea 405 $row_class = toggleEvenOdd($row_class);
0ea4fb50 406
ef8be8ea 407 }
a283b8d1 408
ef8be8ea
AD
409 if (db_num_rows($result) < $num_feeds) {
410 // FIXME - add link to show ALL subscribed feeds here somewhere
411 print "<li><img
412 class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">&nbsp;...</li>";
413 }
414
415 print "</ul>";
a283b8d1 416
ef8be8ea 417 print "</div>";
0ea4fb50 418
ef8be8ea
AD
419 print "<div align='center'>
420 <input type='submit' class='button'
421 onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
0ea4fb50 422
ef8be8ea 423// print "</body></html>";
0ea4fb50 424
ef8be8ea 425 }
ad815c71 426
ef8be8ea 427 if ($op == "pref-feed-browser") {
f27d955a 428 module_pref_feed_browser($link);
c6232e43
AD
429 }
430
945c243e
AD
431 if ($op == "publish") {
432 $key = db_escape_string($_GET["key"]);
433
434 $result = db_query($link, "SELECT login, owner_uid
435 FROM ttrss_user_prefs, ttrss_users WHERE
436 pref_name = '_PREFS_PUBLISH_KEY' AND
437 value = '$key' AND
438 ttrss_users.id = owner_uid");
439
440 if (db_num_rows($result) == 1) {
441 $owner = db_fetch_result($result, 0, "owner_uid");
442 $login = db_fetch_result($result, 0, "login");
443
c36bf4d5 444 generate_syndicated_feed($link, $owner, -2, false);
945c243e 445
945c243e 446 } else {
c36bf4d5 447 print "<error>User not found</error>";
945c243e
AD
448 }
449
450 }
451
18664970
AD
452 if ($op == "rss") {
453 $feed = db_escape_string($_GET["id"]);
454 $user = db_escape_string($_GET["user"]);
455 $pass = db_escape_string($_GET["pass"]);
456 $is_cat = $_GET["is_cat"] != false;
457
e1eb2147
AD
458 $search = db_escape_string($_GET["q"]);
459 $match_on = db_escape_string($_GET["m"]);
460 $search_mode = db_escape_string($_GET["smode"]);
461
18664970
AD
462 if (!$_SESSION["uid"] && $user && $pass) {
463 authenticate_user($link, $user, $pass);
464 }
465
466 if ($_SESSION["uid"] ||
467 http_authenticate_user($link)) {
468
c36bf4d5 469 generate_syndicated_feed($link, 0, $feed, $is_cat,
e1eb2147 470 $search, $search_mode, $match_on);
18664970 471 }
945c243e 472
18664970
AD
473 }
474
88040f57
AD
475 if ($op == "labelFromSearch") {
476 $search = db_escape_string($_GET["search"]);
477 $search_mode = db_escape_string($_GET["smode"]);
478 $match_on = db_escape_string($_GET["match"]);
479 $is_cat = db_escape_string($_GET["is_cat"]);
480 $title = db_escape_string($_GET["title"]);
481 $feed = sprintf("%d", $_GET["feed"]);
482
483 $label_qparts = array();
484
485 $search_expr = getSearchSql($search, $match_on);
486
487 if ($is_cat) {
488 if ($feed != 0) {
489 $search_expr .= " AND ttrss_feeds.cat_id = $feed ";
490 } else {
491 $search_expr .= " AND ttrss_feeds.cat_id IS NULL ";
492 }
493 } else {
494 if ($search_mode == "all_feeds") {
495 // NOOP
496 } else if ($search_mode == "this_cat") {
497
498 $tmp_result = db_query($link, "SELECT cat_id
499 FROM ttrss_feeds WHERE id = '$feed'");
500
501 $cat_id = db_fetch_result($tmp_result, 0, "cat_id");
502
503 if ($cat_id > 0) {
504 $search_expr .= " AND ttrss_feeds.cat_id = $cat_id ";
505 } else {
506 $search_expr .= " AND ttrss_feeds.cat_id IS NULL ";
507 }
508 } else {
509 $search_expr .= " AND ttrss_feeds.id = $feed ";
510 }
511
512 }
513
514 $search_expr = db_escape_string($search_expr);
515
516 print $search_expr;
517
518 if ($title) {
519 $result = db_query($link,
520 "INSERT INTO ttrss_labels (sql_exp,description,owner_uid)
521 VALUES ('$search_expr', '$title', '".$_SESSION["uid"]."')");
522 }
523 }
524
f3acc32e
AD
525 if ($op == "getUnread") {
526 $login = db_escape_string($_GET["login"]);
527
7e3634d9 528 header("Content-Type: text/plain; charset=utf-8");
f3acc32e
AD
529
530 $result = db_query($link, "SELECT id FROM ttrss_users WHERE login = '$login'");
531
532 if (db_num_rows($result) == 1) {
533 $uid = db_fetch_result($result, 0, "id");
534 print getGlobalUnread($link, $uid);
535 } else {
0599d09e 536 print "-1;User not found";
f3acc32e 537 }
7e3634d9
AD
538
539 $print_exec_time = false;
540 }
541
542 if ($op == "digestTest") {
543 header("Content-Type: text/plain");
9cd7c995
AD
544 print_r(prepare_headlines_digest($link, $_SESSION["uid"]));
545 $print_exec_time = false;
546
547 }
448b0abd 548
9cd7c995
AD
549 if ($op == "digestSend") {
550 header("Content-Type: text/plain");
551 send_headlines_digests($link);
7e3634d9
AD
552 $print_exec_time = false;
553
f3acc32e
AD
554 }
555
4b3dff6e 556 db_close($link);
1cd17194 557?>
406d9489 558
7e3634d9 559<?php if ($print_exec_time) { ?>
1d3a17c7 560<!-- <?php echo sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
f3acc32e 561<?php } ?>