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