]> git.wh0rd.org - tt-rss.git/blob - backend.php
initial work on dashboard
[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 } else {
53 if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
54 db_query($link, "SET NAMES " . MYSQL_CHARSET);
55 // db_query($link, "SET CHARACTER SET " . MYSQL_CHARSET);
56 }
57 }
58
59 $op = $_REQUEST["op"];
60
61 $print_exec_time = false;
62
63 if ((!$op || $op == "rpc" || $op == "rss" || $op == "view" ||
64 $op == "digestSend" || $op == "viewfeed" || $op == "publish" ||
65 $op == "globalUpdateFeeds") && !$_REQUEST["noxml"]) {
66 header("Content-Type: application/xml; charset=utf-8");
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 }
73 }
74
75 if (!$op) {
76 header("Content-Type: application/xml");
77 print_error_xml(7); exit;
78 }
79
80 if (!($_SESSION["uid"] && validate_session($link)) && $op != "globalUpdateFeeds"
81 && $op != "rss" && $op != "getUnread" && $op != "publish") {
82
83 if ($op == "rpc" || $op == "viewfeed" || $op == "view") {
84 print_error_xml(6); die;
85 } else {
86 print "
87 <html><body>
88 <p>Error: Not logged in.</p>
89 <script type=\"text/javascript\">
90 if (parent.window != 'undefined') {
91 parent.window.location = \"tt-rss.php\";
92 } else {
93 window.location = \"tt-rss.php\";
94 }
95 </script>
96 </body></html>
97 ";
98 }
99 exit;
100 }
101
102 $purge_intervals = array(
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"));
110
111 $update_intervals = array(
112 0 => __("Use default"),
113 -1 => __("Disable updates"),
114 15 => __("Each 15 minutes"),
115 30 => __("Each 30 minutes"),
116 60 => __("Hourly"),
117 240 => __("Each 4 hours"),
118 720 => __("Each 12 hours"),
119 1440 => __("Daily"),
120 10080 => __("Weekly"));
121
122 $update_methods = array(
123 0 => __("Use default"),
124 1 => __("Magpie"),
125 2 => __("SimplePie"));
126
127 if (ENABLE_SIMPLEPIE) {
128 $update_methods[0] .= ' (SimplePie)';
129 } else {
130 $update_methods[0] .= ' (Magpie)';
131 }
132
133 $access_level_names = array(
134 0 => __("User"),
135 10 => __("Administrator"));
136
137 require_once "modules/pref-prefs.php";
138 require_once "modules/popup-dialog.php";
139 require_once "modules/help.php";
140 require_once "modules/pref-feeds.php";
141 require_once "modules/pref-filters.php";
142 require_once "modules/pref-labels.php";
143 require_once "modules/pref-users.php";
144 require_once "modules/pref-feed-browser.php";
145
146 if (!sanity_check($link)) { return; }
147
148 switch($op) { // Select action according to $op value.
149 case "rpc":
150 // Handle remote procedure calls.
151 handle_rpc_request($link);
152 break; // rpc
153
154 case "feeds":
155 $tags = $_GET["tags"];
156
157 $subop = $_GET["subop"];
158
159 switch($subop) {
160 case "catchupAll":
161 db_query($link, "UPDATE ttrss_user_entries SET
162 last_read = NOW(),unread = false WHERE owner_uid = " . $_SESSION["uid"]);
163 break;
164
165 case "collapse":
166 $cat_id = db_escape_string($_GET["cid"]);
167
168 db_query($link, "UPDATE ttrss_feed_categories SET
169 collapsed = NOT collapsed WHERE id = '$cat_id' AND owner_uid = " .
170 $_SESSION["uid"]);
171 return;
172 break;
173 }
174
175 outputFeedList($link, $tags);
176 break; // feeds
177
178 case "view":
179
180 $id = db_escape_string($_GET["id"]);
181 $feed_id = db_escape_string($_GET["feed"]);
182 $cids = split(",", db_escape_string($_GET["cids"]));
183 $mode = db_escape_string($_GET["mode"]);
184 $omode = db_escape_string($_GET["omode"]);
185
186 print "<reply>";
187
188 // in prefetch mode we only output requested cids, main article
189 // just gets marked as read (it already exists in client cache)
190
191 if ($mode == "") {
192 outputArticleXML($link, $id, $feed_id);
193 } else {
194 catchupArticleById($link, $id, 0);
195 }
196
197 foreach ($cids as $cid) {
198 if ($cid) {
199 outputArticleXML($link, $cid, $feed_id, false);
200 }
201 }
202
203 if ($mode != "prefetch_old") {
204 print "<counters>";
205 getAllCounters($link, $omode);
206 print "</counters>";
207 }
208
209 print "</reply>";
210 break; // view
211
212 case "viewfeed":
213
214 $print_exec_time = true;
215 $timing_info = getmicrotime();
216
217 print "<reply>";
218
219 if ($_GET["debug"]) $timing_info = print_checkpoint("0", $timing_info);
220
221 $omode = db_escape_string($_GET["omode"]);
222
223 $feed = db_escape_string($_GET["feed"]);
224 $subop = db_escape_string($_GET["subop"]);
225 $view_mode = db_escape_string($_GET["view_mode"]);
226 $limit = db_escape_string($_GET["limit"]);
227 $cat_view = db_escape_string($_GET["cat"]);
228 $next_unread_feed = db_escape_string($_GET["nuf"]);
229 $offset = db_escape_string($_GET["skip"]);
230
231 set_pref($link, "_DEFAULT_VIEW_MODE", $view_mode);
232 set_pref($link, "_DEFAULT_VIEW_LIMIT", $limit);
233
234 if (!$cat_view && preg_match("/^[0-9][0-9]*$/", $feed)) {
235 db_query($link, "UPDATE ttrss_feeds SET last_viewed = NOW()
236 WHERE id = '$feed' AND owner_uid = ".$_SESSION["uid"]);
237 }
238
239 print "<headlines id=\"$feed\"><![CDATA[";
240
241 if ($feed == -4) {
242
243 print "<div id=\"headlinesContainer\">";
244
245 print "PLACEHOLDER";
246
247 print "</div>";
248
249 print "]]></headlines>";
250 print "<headlines-count value=\"0\"/>";
251 print "<headlines-unread value=\"0\"/>";
252 print "<disable-cache value=\"0\"/>";
253
254 print "<articles>";
255 print "</articles>";
256
257 } else {
258
259 $ret = outputHeadlinesList($link, $feed, $subop,
260 $view_mode, $limit, $cat_view, $next_unread_feed, $offset);
261
262 $topmost_article_ids = $ret[0];
263 $headlines_count = $ret[1];
264 $returned_feed = $ret[2];
265 $disable_cache = $ret[3];
266
267 print "]]></headlines>";
268
269 print "<headlines-count value=\"$headlines_count\"/>";
270
271 $headlines_unread = getFeedUnread($link, $returned_feed);
272
273 print "<headlines-unread value=\"$headlines_unread\"/>";
274 printf("<disable-cache value=\"%d\"/>", $disable_cache);
275
276 if ($_GET["debug"]) $timing_info = print_checkpoint("10", $timing_info);
277
278 if (is_array($topmost_article_ids) && !get_pref($link, 'COMBINED_DISPLAY_MODE')) {
279 print "<articles>";
280 foreach ($topmost_article_ids as $id) {
281 outputArticleXML($link, $id, $feed, false);
282 }
283 print "</articles>";
284 }
285 }
286
287 if ($_GET["debug"]) $timing_info = print_checkpoint("20", $timing_info);
288
289 print "<counters>";
290 getAllCounters($link, $omode, $feed);
291 print "</counters>";
292
293 if ($_GET["debug"]) $timing_info = print_checkpoint("30", $timing_info);
294
295 print_runtime_info($link);
296
297 print "</reply>";
298 break; // viewfeed
299
300 case "pref-feeds":
301 module_pref_feeds($link);
302 break; // pref-feeds
303
304 case "pref-filters":
305 module_pref_filters($link);
306 break; // pref-filters
307
308 case "pref-labels":
309 module_pref_labels($link);
310 break; // pref-labels
311
312 case "pref-prefs":
313 module_pref_prefs($link);
314 break; // pref-prefs
315
316 case "pref-users":
317 module_pref_users($link);
318 break; // prefs-users
319
320 case "help":
321 module_help($link);
322 break; // help
323
324 case "dlg":
325 module_popup_dialog($link);
326 break; // dlg
327
328 case "pref-pub-items":
329 module_pref_pub_items($link);
330 break; // pref-pub-items
331
332 case "globalUpdateFeeds":
333 // update feeds of all users, may be used anonymously
334
335 // Update all feeds needing a update.
336 update_daemon_common($link, 0, true, false);
337
338 // FIXME : old feed update way. To be removed.
339 //$result = db_query($link, "SELECT id FROM ttrss_users");
340
341 //while ($line = db_fetch_assoc($result)) {
342 // $user_id = $line["id"];
343 // print "<!-- updating feeds of uid $user_id -->";
344 // update_all_feeds($link, false, $user_id);
345 //}
346
347 print "<rpc-reply>
348 <message msg=\"All feeds updated\"/>
349 </rpc-reply>";
350 break; // globalUpdateFeeds
351
352 case "user-details":
353
354 if (WEB_DEMO_MODE || $_SESSION["access_level"] < 10) {
355 return;
356 }
357
358 /*
359 print "<html><head>
360 <title>Tiny Tiny RSS : User Details</title>
361 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
362 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
363 </head><body>";
364 */
365
366 $uid = sprintf("%d", $_GET["id"]);
367
368 print "<div id=\"infoBoxTitle\">User details</div>";
369
370 print "<div class='infoBoxContents'>";
371
372 $result = db_query($link, "SELECT login,
373 SUBSTRING(last_login,1,16) AS last_login,
374 access_level,
375 (SELECT COUNT(int_id) FROM ttrss_user_entries
376 WHERE owner_uid = id) AS stored_articles,
377 SUBSTRING(created,1,16) AS created
378 FROM ttrss_users
379 WHERE id = '$uid'");
380
381 if (db_num_rows($result) == 0) {
382 print "<h1>User not found</h1>";
383 return;
384 }
385
386 // print "<h1>User Details</h1>";
387
388 $login = db_fetch_result($result, 0, "login");
389
390 // print "<h1>$login</h1>";
391
392 print "<table width='100%'>";
393
394 $last_login = date(get_pref($link, 'LONG_DATE_FORMAT'),
395 strtotime(db_fetch_result($result, 0, "last_login")));
396
397 $created = date(get_pref($link, 'LONG_DATE_FORMAT'),
398 strtotime(db_fetch_result($result, 0, "created")));
399
400 $access_level = db_fetch_result($result, 0, "access_level");
401 $stored_articles = db_fetch_result($result, 0, "stored_articles");
402
403 // print "<tr><td>Username</td><td>$login</td></tr>";
404 // print "<tr><td>Access level</td><td>$access_level</td></tr>";
405 print "<tr><td>".__('Registered')."</td><td>$created</td></tr>";
406 print "<tr><td>".__('Last logged in')."</td><td>$last_login</td></tr>";
407 print "<tr><td>".__('Stored articles')."</td><td>$stored_articles</td></tr>";
408
409 $result = db_query($link, "SELECT COUNT(id) as num_feeds FROM ttrss_feeds
410 WHERE owner_uid = '$uid'");
411
412 $num_feeds = db_fetch_result($result, 0, "num_feeds");
413
414 print "<tr><td>".__('Subscribed feeds count')."</td><td>$num_feeds</td></tr>";
415
416 /*
417 $result = db_query($link, "SELECT
418 SUM(LENGTH(content)+LENGTH(title)+LENGTH(link)+LENGTH(guid)) AS db_size
419 FROM ttrss_user_entries,ttrss_entries
420 WHERE owner_uid = '$uid' AND ref_id = id");
421
422 $db_size = round(db_fetch_result($result, 0, "db_size") / 1024);
423
424 print "<tr><td>Approx. used DB size</td><td>$db_size KBytes</td></tr>";
425 */
426
427 print "</table>";
428
429 print "<h1>".__('Subscribed feeds')."</h1>";
430
431 $result = db_query($link, "SELECT id,title,site_url FROM ttrss_feeds
432 WHERE owner_uid = '$uid' ORDER BY title");
433
434 print "<ul class=\"userFeedList\">";
435
436 $row_class = "odd";
437
438 while ($line = db_fetch_assoc($result)) {
439
440 $icon_file = ICONS_URL."/".$line["id"].".ico";
441
442 if (file_exists($icon_file) && filesize($icon_file) > 0) {
443 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"$icon_file\">";
444 } else {
445 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
446 }
447
448 print "<li class=\"$row_class\">$feed_icon&nbsp;<a href=\"".$line["site_url"]."\">".$line["title"]."</a></li>";
449
450 $row_class = toggleEvenOdd($row_class);
451
452 }
453
454 if (db_num_rows($result) < $num_feeds) {
455 // FIXME - add link to show ALL subscribed feeds here somewhere
456 print "<li><img
457 class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">&nbsp;...</li>";
458 }
459
460 print "</ul>";
461
462 print "</div>";
463
464 print "<div align='center'>
465 <input type='submit' class='button'
466 onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
467
468 // print "</body></html>";
469
470 break; // user-details
471
472 case "pref-feed-browser":
473 module_pref_feed_browser($link);
474 break; // pref-feed-browser
475
476 case "publish":
477 $key = db_escape_string($_GET["key"]);
478
479 $result = db_query($link, "SELECT login, owner_uid
480 FROM ttrss_user_prefs, ttrss_users WHERE
481 pref_name = '_PREFS_PUBLISH_KEY' AND
482 value = '$key' AND
483 ttrss_users.id = owner_uid");
484
485 if (db_num_rows($result) == 1) {
486 $owner = db_fetch_result($result, 0, "owner_uid");
487 $login = db_fetch_result($result, 0, "login");
488
489 generate_syndicated_feed($link, $owner, -2, false);
490
491 } else {
492 print "<error>User not found</error>";
493 }
494 break; // publish
495
496 case "rss":
497 $feed = db_escape_string($_GET["id"]);
498 $user = db_escape_string($_GET["user"]);
499 $pass = db_escape_string($_GET["pass"]);
500 $is_cat = $_GET["is_cat"] != false;
501
502 $search = db_escape_string($_GET["q"]);
503 $match_on = db_escape_string($_GET["m"]);
504 $search_mode = db_escape_string($_GET["smode"]);
505
506 if (!$_SESSION["uid"] && $user && $pass) {
507 authenticate_user($link, $user, $pass);
508 }
509
510 if ($_SESSION["uid"] ||
511 http_authenticate_user($link)) {
512
513 generate_syndicated_feed($link, 0, $feed, $is_cat,
514 $search, $search_mode, $match_on);
515 }
516 break; // rss
517
518 case "labelFromSearch":
519 $search = db_escape_string($_GET["search"]);
520 $search_mode = db_escape_string($_GET["smode"]);
521 $match_on = db_escape_string($_GET["match"]);
522 $is_cat = db_escape_string($_GET["is_cat"]);
523 $title = db_escape_string($_GET["title"]);
524 $feed = sprintf("%d", $_GET["feed"]);
525
526 $label_qparts = array();
527
528 $search_expr = getSearchSql($search, $match_on);
529
530 if ($is_cat) {
531 if ($feed != 0) {
532 $search_expr .= " AND ttrss_feeds.cat_id = $feed ";
533 } else {
534 $search_expr .= " AND ttrss_feeds.cat_id IS NULL ";
535 }
536 } else {
537 if ($search_mode == "all_feeds") {
538 // NOOP
539 } else if ($search_mode == "this_cat") {
540
541 $tmp_result = db_query($link, "SELECT cat_id
542 FROM ttrss_feeds WHERE id = '$feed'");
543
544 $cat_id = db_fetch_result($tmp_result, 0, "cat_id");
545
546 if ($cat_id > 0) {
547 $search_expr .= " AND ttrss_feeds.cat_id = $cat_id ";
548 } else {
549 $search_expr .= " AND ttrss_feeds.cat_id IS NULL ";
550 }
551 } else {
552 $search_expr .= " AND ttrss_feeds.id = $feed ";
553 }
554
555 }
556
557 $search_expr = db_escape_string($search_expr);
558
559 print $search_expr;
560
561 if ($title) {
562 $result = db_query($link,
563 "INSERT INTO ttrss_labels (sql_exp,description,owner_uid)
564 VALUES ('$search_expr', '$title', '".$_SESSION["uid"]."')");
565 }
566 break; // labelFromSearch
567
568 case "getUnread":
569 $login = db_escape_string($_GET["login"]);
570
571 header("Content-Type: text/plain; charset=utf-8");
572
573 $result = db_query($link, "SELECT id FROM ttrss_users WHERE login = '$login'");
574
575 if (db_num_rows($result) == 1) {
576 $uid = db_fetch_result($result, 0, "id");
577 print getGlobalUnread($link, $uid);
578 } else {
579 print "-1;User not found";
580 }
581
582 $print_exec_time = false;
583 break; // getUnread
584
585 case "digestTest":
586 header("Content-Type: text/plain");
587 print_r(prepare_headlines_digest($link, $_SESSION["uid"]));
588 $print_exec_time = false;
589 break; // digestTest
590
591 case "digestSend":
592 header("Content-Type: text/plain");
593 send_headlines_digests($link);
594 $print_exec_time = false;
595 break; // digestSend
596
597 } // Select action according to $op value.
598
599 // We close the connection to database.
600 db_close($link);
601 ?>
602
603 <?php if ($print_exec_time) { ?>
604 <!-- <?php echo sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
605 <?php } ?>