]> git.wh0rd.org - tt-rss.git/blob - backend.php
add runtime info to headlines response
[tt-rss.git] / backend.php
1 <?php
2 error_reporting(E_ERROR | E_WARNING | E_PARSE);
3
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
13 require_once "sessions.php";
14 require_once "modules/backend-rpc.php";
15
16 /* if ($_GET["debug"]) {
17 define('DEFAULT_ERROR_LEVEL', E_ALL);
18 } else {
19 define('DEFAULT_ERROR_LEVEL', E_ERROR | E_WARNING | E_PARSE);
20 }
21
22 error_reporting(DEFAULT_ERROR_LEVEL); */
23
24 require_once "sanity_check.php";
25 require_once "config.php";
26
27 require_once "db.php";
28 require_once "db-prefs.php";
29 require_once "functions.php";
30
31 no_cache_incantation();
32
33 if (ENABLE_TRANSLATIONS == true) {
34 startup_gettext();
35 }
36
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
56 $print_exec_time = false;
57
58 if ((!$op || $op == "rpc" || $op == "rss" || $op == "view" ||
59 $op == "digestSend" || $op == "viewfeed" ||
60 $op == "globalUpdateFeeds") && !$_REQUEST["noxml"]) {
61 header("Content-Type: application/xml; charset=utf-8");
62 } else {
63 header("Content-Type: text/html; charset=utf-8");
64 }
65
66 if (!$op) {
67 header("Content-Type: application/xml");
68 print_error_xml(7); exit;
69 }
70
71 if (!($_SESSION["uid"] && validate_session($link)) && $op != "globalUpdateFeeds"
72 && $op != "rss" && $op != "getUnread") {
73
74 if ($op == "rpc") {
75 print_error_xml(6); die;
76 } else {
77 print "
78 <html><body>
79 <p>Error: Not logged in.</p>
80 <script type=\"text/javascript\">
81 if (parent.window != 'undefined') {
82 parent.window.location = \"tt-rss.php\";
83 } else {
84 window.location = \"tt-rss.php\";
85 }
86 </script>
87 </body></html>
88 ";
89 }
90 exit;
91 }
92
93 $purge_intervals = array(
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"));
101
102 $update_intervals = array(
103 0 => __("Use default"),
104 -1 => __("Disable updates"),
105 15 => __("Each 15 minutes"),
106 30 => __("Each 30 minutes"),
107 60 => __("Hourly"),
108 240 => __("Each 4 hours"),
109 720 => __("Each 12 hours"),
110 1440 => __("Daily"),
111 10080 => __("Weekly"));
112
113
114 $access_level_names = array(
115 0 => __("User"),
116 10 => __("Administrator"));
117
118 require_once "modules/pref-prefs.php";
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";
125 require_once "modules/pref-feed-browser.php";
126
127
128 if (!sanity_check($link)) { return; }
129
130 if ($op == "rpc") {
131 handle_rpc_request($link);
132 }
133
134 if ($op == "feeds") {
135
136 $tags = $_GET["tags"];
137
138 $subop = $_GET["subop"];
139
140 if ($subop == "catchupAll") {
141 db_query($link, "UPDATE ttrss_user_entries SET
142 last_read = NOW(),unread = false WHERE owner_uid = " . $_SESSION["uid"]);
143 }
144
145 if ($subop == "collapse") {
146 $cat_id = db_escape_string($_GET["cid"]);
147
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
154 outputFeedList($link, $tags);
155
156 }
157
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"]);
164 $omode = db_escape_string($_GET["omode"]);
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
171 if ($mode == "") {
172 outputArticleXML($link, $id, $feed_id);
173 } else {
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
183 if ($mode != "prefetch_old") {
184 print "<counters>";
185 getAllCounters($link, $omode);
186 print "</counters>";
187 }
188
189 print "</reply>";
190 }
191
192 if ($op == "viewfeed") {
193
194 $print_exec_time = true;
195 $timing_info = getmicrotime();
196
197 print "<reply>";
198
199 if ($_GET["debug"]) $timing_info = print_checkpoint("0", $timing_info);
200
201 $omode = db_escape_string($_GET["omode"]);
202
203 $feed = db_escape_string($_GET["feed"]);
204 $subop = db_escape_string($_GET["subop"]);
205 $view_mode = db_escape_string($_GET["view_mode"]);
206 $limit = db_escape_string($_GET["limit"]);
207 $cat_view = db_escape_string($_GET["cat"]);
208 $next_unread_feed = db_escape_string($_GET["nuf"]);
209 $offset = db_escape_string($_GET["skip"]);
210
211 set_pref($link, "_DEFAULT_VIEW_MODE", $view_mode);
212 set_pref($link, "_DEFAULT_VIEW_LIMIT", $limit);
213
214 print "<headlines id=\"$feed\"><![CDATA[";
215
216 $topmost_article_ids = outputHeadlinesList($link, $feed, $subop,
217 $view_mode, $limit, $cat_view, $next_unread_feed, $offset);
218
219 print "]]></headlines>";
220
221 if ($_GET["debug"]) $timing_info = print_checkpoint("10", $timing_info);
222
223 if (is_array($topmost_article_ids) && !get_pref($link, 'COMBINED_DISPLAY_MODE')) {
224 print "<articles>";
225 foreach ($topmost_article_ids as $id) {
226 outputArticleXML($link, $id, $feed, false);
227 }
228 print "</articles>";
229 }
230
231 if ($_GET["debug"]) $timing_info = print_checkpoint("20", $timing_info);
232
233 print "<counters>";
234 getAllCounters($link, $omode);
235 print "</counters>";
236
237 if ($_GET["debug"]) $timing_info = print_checkpoint("30", $timing_info);
238
239 print_runtime_info($link);
240
241 print "</reply>";
242 }
243
244 if ($op == "pref-feeds") {
245 module_pref_feeds($link);
246 }
247
248 if ($op == "pref-filters") {
249 module_pref_filters($link);
250 }
251
252 if ($op == "pref-labels") {
253 module_pref_labels($link);
254 }
255
256 if ($op == "pref-prefs") {
257 module_pref_prefs($link);
258 }
259
260 if ($op == "pref-users") {
261 module_pref_users($link);
262 }
263
264 if ($op == "help") {
265 module_help($link);
266 }
267
268 if ($op == "dlg") {
269 module_popup_dialog($link);
270 }
271
272 // update feeds of all users, may be used anonymously
273 if ($op == "globalUpdateFeeds") {
274
275 $result = db_query($link, "SELECT id FROM ttrss_users");
276
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 }
282
283 print "<rpc-reply>
284 <message msg=\"All feeds updated\"/>
285 </rpc-reply>";
286
287 }
288
289 if ($op == "user-details") {
290
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>"; */
300
301 $uid = sprintf("%d", $_GET["id"]);
302
303 print "<div id=\"infoBoxTitle\">User details</div>";
304
305 print "<div class='infoBoxContents'>";
306
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'");
314
315 if (db_num_rows($result) == 0) {
316 print "<h1>User not found</h1>";
317 return;
318 }
319
320 # print "<h1>User Details</h1>";
321
322 $login = db_fetch_result($result, 0, "login");
323
324 # print "<h1>$login</h1>";
325
326 print "<table width='100%'>";
327
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");
332
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>";
337
338 $result = db_query($link, "SELECT COUNT(id) as num_feeds FROM ttrss_feeds
339 WHERE owner_uid = '$uid'");
340
341 $num_feeds = db_fetch_result($result, 0, "num_feeds");
342
343 print "<tr><td>Subscribed feeds count</td><td>$num_feeds</td></tr>";
344
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");
349
350 $db_size = round(db_fetch_result($result, 0, "db_size") / 1024);
351
352 print "<tr><td>Approx. used DB size</td><td>$db_size KBytes</td></tr>"; */
353
354 print "</table>";
355
356 print "<h1>Subscribed feeds</h1>";
357
358 $result = db_query($link, "SELECT id,title,site_url FROM ttrss_feeds
359 WHERE owner_uid = '$uid' ORDER BY title");
360
361 print "<ul class=\"userFeedList\">";
362
363 $row_class = "odd";
364
365 while ($line = db_fetch_assoc($result)) {
366
367 $icon_file = ICONS_URL."/".$line["id"].".ico";
368
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 }
374
375 print "<li class=\"$row_class\">$feed_icon&nbsp;<a href=\"".$line["site_url"]."\">".$line["title"]."</a></li>";
376
377 $row_class = toggleEvenOdd($row_class);
378
379 }
380
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>";
388
389 print "</div>";
390
391 print "<div align='center'>
392 <input type='submit' class='button'
393 onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
394
395 // print "</body></html>";
396
397 }
398
399 if ($op == "pref-feed-browser") {
400 module_pref_feed_browser($link);
401 }
402
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
409 $search = db_escape_string($_GET["q"]);
410 $match_on = db_escape_string($_GET["m"]);
411 $search_mode = db_escape_string($_GET["smode"]);
412
413 if (!$_SESSION["uid"] && $user && $pass) {
414 authenticate_user($link, $user, $pass);
415 }
416
417 if ($_SESSION["uid"] ||
418 http_authenticate_user($link)) {
419
420 generate_syndicated_feed($link, $feed, $is_cat,
421 $search, $search_mode, $match_on);
422 }
423 }
424
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
475 if ($op == "getUnread") {
476 $login = db_escape_string($_GET["login"]);
477
478 header("Content-Type: text/plain; charset=utf-8");
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 {
486 print "-1;User not found";
487 }
488
489 $print_exec_time = false;
490 }
491
492 if ($op == "digestTest") {
493 header("Content-Type: text/plain");
494 print_r(prepare_headlines_digest($link, $_SESSION["uid"]));
495 $print_exec_time = false;
496
497 }
498
499 if ($op == "digestSend") {
500 header("Content-Type: text/plain");
501 send_headlines_digests($link);
502 $print_exec_time = false;
503
504 }
505
506 db_close($link);
507 ?>
508
509 <?php if ($print_exec_time) { ?>
510 <!-- <?php echo sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
511 <?php } ?>