]> git.wh0rd.org Git - tt-rss.git/blob - backend.php
71a9522583bcc803d83f39d1dc34d2897e24c4af
[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         init_connection($link);
50
51         $op = $_REQUEST["op"];
52         $mode = $_REQUEST["mode"];
53
54         $print_exec_time = false;
55
56         if ((!$op || $op == "rpc" || $op == "rss" || 
57                         ($op == "view" && $mode != "zoom") || 
58                         $op == "digestSend" || $op == "viewfeed" || $op == "publish" ||
59                         $op == "globalUpdateFeeds") && !$_REQUEST["noxml"]) {
60                                 header("Content-Type: application/xml; charset=utf-8");
61
62                                 if (ENABLE_GZIP_OUTPUT) {
63                                         ob_start("ob_gzhandler");
64                                 }
65                                 
66                 } else {
67                 if (!$_REQUEST["noxml"]) {
68                         header("Content-Type: text/html; charset=utf-8");
69                 } else {
70                         header("Content-Type: text/plain; charset=utf-8");
71                 }
72         }
73
74         if (!$op) {
75                 header("Content-Type: application/xml");
76                 print_error_xml(7); exit;
77         }
78         
79         if (!($_SESSION["uid"] && validate_session($link)) && $op != "globalUpdateFeeds" 
80                         && $op != "rss" && $op != "getUnread" && $op != "publish") {
81
82                 if ($op == "rpc" || $op == "viewfeed" || $op == "view") {
83                         print_error_xml(6); die;
84                 } else {
85                         print "
86                         <html><body>
87                                 <p>Error: Not logged in.</p>
88                                 <script type=\"text/javascript\">
89                                         if (parent.window != 'undefined') {
90                                                 parent.window.location = \"tt-rss.php\";                
91                                         } else {
92                                                 window.location = \"tt-rss.php\";
93                                         }
94                                 </script>
95                         </body></html>
96                         ";
97                 }
98                 exit;
99         }
100
101         $purge_intervals = array(
102                 0  => __("Use default"),
103                 -1 => __("Never purge"),
104                 5  => __("1 week old"),
105                 14 => __("2 weeks old"),
106                 31 => __("1 month old"),
107                 60 => __("2 months old"),
108                 90 => __("3 months old"));
109
110         $update_intervals = array(
111                 0   => __("Default interval"),
112                 -1  => __("Disable updates"),
113                 15  => __("Each 15 minutes"),
114                 30  => __("Each 30 minutes"),
115                 60  => __("Hourly"),
116                 240 => __("Each 4 hours"),
117                 720 => __("Each 12 hours"),
118                 1440 => __("Daily"),
119                 10080 => __("Weekly"));
120
121         $update_methods = array(
122                 0   => __("Default"),
123                 1   => __("Magpie"),
124                 2   => __("SimplePie"));
125
126         if (ENABLE_SIMPLEPIE) {
127                 $update_methods[0] .= ' (SimplePie)';
128         } else {
129                 $update_methods[0] .= ' (Magpie)';
130         }
131
132         $access_level_names = array(
133                 0 => __("User"), 
134                 5 => __("Power 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                         if (ENABLE_GZIP_OUTPUT) {
156                                 ob_start("ob_gzhandler");
157                         }
158
159                         $tags = $_GET["tags"];
160
161                         $subop = $_GET["subop"];
162
163                         switch($subop) {
164                                 case "catchupAll":
165                                         db_query($link, "UPDATE ttrss_user_entries SET 
166                                                 last_read = NOW(),unread = false WHERE owner_uid = " . $_SESSION["uid"]);
167                                         ccache_zero_all($link, $_SESSION["uid"]);
168
169                                 break;
170
171                                 case "collapse":
172                                         $cat_id = db_escape_string($_GET["cid"]);
173
174                                         db_query($link, "UPDATE ttrss_feed_categories SET
175                                                 collapsed = NOT collapsed WHERE id = '$cat_id' AND owner_uid = " . 
176                                                 $_SESSION["uid"]);
177                                         return;
178                                 break;
179
180                                 case "catsortreset":
181                                         db_query($link, "UPDATE ttrss_feed_categories 
182                                                         SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"]);
183                                         return;
184                                 break;
185
186                                 case "catsort":
187                                         $corder = db_escape_string($_GET["corder"]);
188
189                                         $cats = split(",", $corder);
190
191                                         for ($i = 0; $i < count($cats); $i++) {
192                                                 $cat_id = $cats[$i];
193
194                                                 if ($cat_id > 0) {
195                                                         db_query($link, "UPDATE ttrss_feed_categories 
196                                                                 SET order_id = '$i' WHERE id = '$cat_id' AND
197                                                                 owner_uid = " . $_SESSION["uid"]);
198                                                 }
199                                         }
200
201                                         return;
202                                 break;
203
204                         }
205
206                         outputFeedList($link, $tags);
207                 break; // feeds
208
209                 case "view":
210
211                         $id = db_escape_string($_GET["id"]);
212                         $feed_id = db_escape_string($_GET["feed"]);
213                         $cids = split(",", db_escape_string($_GET["cids"]));
214                         $mode = db_escape_string($_GET["mode"]);
215                         $omode = db_escape_string($_GET["omode"]);
216
217                         $csync = $_GET["csync"];
218
219                         print "<reply>";
220
221                         // in prefetch mode we only output requested cids, main article 
222                         // just gets marked as read (it already exists in client cache)
223
224                         if ($mode == "") {
225                                 outputArticleXML($link, $id, $feed_id);
226                         } else if ($mode == "zoom") {
227                                 outputArticleXML($link, $id, $feed_id, true, true);
228                         } else {
229                                 catchupArticleById($link, $id, 0);
230                                 ccache_update($link, $feed_id, $_SESSION["uid"]);
231                         }
232
233                         if (!$_SESSION["bw_limit"]) {
234                                 foreach ($cids as $cid) {
235                                         if ($cid) {
236                                                 outputArticleXML($link, $cid, $feed_id, false);
237                                         }
238                                 }
239                         }
240
241
242                         if (get_pref($link, "SYNC_COUNTERS") || ($mode == "prefetch" && $csync)) {
243                                 print "<counters>";
244                                 getAllCounters($link, $omode);
245                                 print "</counters>";
246                         }
247
248                         print "</reply>";
249                 break; // view
250
251                 case "viewfeed":
252
253                         $print_exec_time = true;
254                         $timing_info = getmicrotime();
255
256                         print "<reply>";
257
258                         if ($_GET["debug"]) $timing_info = print_checkpoint("0", $timing_info);
259
260                         $omode = db_escape_string($_GET["omode"]);
261
262                         $feed = db_escape_string($_GET["feed"]);
263                         $subop = db_escape_string($_GET["subop"]);
264                         $view_mode = db_escape_string($_GET["view_mode"]);
265                         $limit = db_escape_string($_GET["limit"]);
266                         $cat_view = db_escape_string($_GET["cat"]);
267                         $next_unread_feed = db_escape_string($_GET["nuf"]);
268                         $offset = db_escape_string($_GET["skip"]);
269                         $vgroup_last_feed = db_escape_string($_GET["vgrlf"]);
270                         $csync = $_GET["csync"];
271                         $order_by = db_escape_string($_GET["order_by"]);
272
273                         ccache_update($link, $feed, $_SESSION["uid"]);
274
275                         set_pref($link, "_DEFAULT_VIEW_MODE", $view_mode);
276                         set_pref($link, "_DEFAULT_VIEW_LIMIT", $limit);
277                         set_pref($link, "_DEFAULT_VIEW_ORDER_BY", $order_by);
278
279                         if (!$cat_view && preg_match("/^[0-9][0-9]*$/", $feed)) {
280                                 db_query($link, "UPDATE ttrss_feeds SET last_viewed = NOW()
281                                         WHERE id = '$feed' AND owner_uid = ".$_SESSION["uid"]);
282                         }
283
284                         print "<headlines id=\"$feed\"><![CDATA[";
285
286                         if ($feed == -4) {
287
288                                 generate_dashboard_feed($link);
289
290                         } else {
291                                 
292                                 $override_order = false;
293
294                                 switch ($order_by) {
295                                         case "date":
296                                                 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
297                                                         $override_order = "updated";
298                                                 } else {        
299                                                         $override_order = "updated DESC";
300                                                 }
301                                                 break;
302
303                                         case "title":
304                                                 $override_order = "updated DESC";
305                                                 break;
306
307                                         case "score":
308                                                 $override_order = "score DESC";
309                                                 break;
310                                 }
311
312                                 $ret = outputHeadlinesList($link, $feed, $subop, 
313                                         $view_mode, $limit, $cat_view, $next_unread_feed, $offset, 
314                                         $vgroup_last_feed, $override_order);
315         
316                                 $topmost_article_ids = $ret[0];
317                                 $headlines_count = $ret[1];
318                                 $returned_feed = $ret[2];
319                                 $disable_cache = $ret[3];
320                                 $vgroup_last_feed = $ret[4];
321         
322                                 print "]]></headlines>";
323         
324                                 print "<headlines-count value=\"$headlines_count\"/>";
325                                 print "<vgroup-last-feed value=\"$vgroup_last_feed\"/>";
326
327                                 $headlines_unread = ccache_find($link, $returned_feed, $_SESSION["uid"]);
328         
329                                 print "<headlines-unread value=\"$headlines_unread\"/>";
330                                 printf("<disable-cache value=\"%d\"/>", $disable_cache);
331         
332                                 if ($_GET["debug"]) $timing_info = print_checkpoint("10", $timing_info);
333         
334                                 if (is_array($topmost_article_ids) && !get_pref($link, 'COMBINED_DISPLAY_MODE') && !$_SESSION["bw_limit"]) {
335                                         print "<articles>";
336                                         foreach ($topmost_article_ids as $id) {
337                                                 outputArticleXML($link, $id, $feed, false);
338                                         }
339                                         print "</articles>";
340                                 }
341                         }
342
343                         if ($_GET["debug"]) $timing_info = print_checkpoint("20", $timing_info);
344
345                         $viewfeed_ctr_interval = 300;
346
347                         if ($csync || $_SESSION["bw_limit"]) {
348                                 $viewfeed_ctr_interval = 60;
349                         }
350
351                         if (get_pref($link, "SYNC_COUNTERS") ||                         
352                                         time() - $_SESSION["get_all_counters_stamp"] > $viewfeed_ctr_interval) {
353                                 print "<counters>";
354                                 getAllCounters($link, $omode, $feed);
355                                 print "</counters>";
356                         }
357
358                         if ($_GET["debug"]) $timing_info = print_checkpoint("30", $timing_info);
359
360                         print_runtime_info($link);
361
362                         print "</reply>";
363                 break; // viewfeed
364
365                 case "pref-feeds":
366                         module_pref_feeds($link);
367                 break; // pref-feeds
368
369                 case "pref-filters":
370                         module_pref_filters($link);
371                 break; // pref-filters
372
373                 case "pref-labels":
374                         module_pref_labels($link);
375                 break; // pref-labels
376
377                 case "pref-prefs":
378                         module_pref_prefs($link);
379                 break; // pref-prefs
380
381                 case "pref-users":
382                         module_pref_users($link);
383                 break; // prefs-users
384
385                 case "help":
386                         module_help($link);
387                 break; // help
388
389                 case "dlg":
390                         module_popup_dialog($link);
391                 break; // dlg
392
393                 case "pref-pub-items":
394                         module_pref_pub_items($link);
395                 break; // pref-pub-items
396
397                 case "globalUpdateFeeds":
398                         // update feeds of all users, may be used anonymously
399
400                         print "<!--";
401                         // Update all feeds needing a update.
402                         update_daemon_common($link, 0, true, true);
403                         print " -->";
404
405                         // FIXME : old feed update way. To be removed.
406                         //$result = db_query($link, "SELECT id FROM ttrss_users");
407
408                         //while ($line = db_fetch_assoc($result)) {
409                         //      $user_id = $line["id"];
410                         //      print "<!-- updating feeds of uid $user_id -->";
411                         //      update_all_feeds($link, false, $user_id);
412                         //}
413
414                         print "<rpc-reply>
415                                 <message msg=\"All feeds updated\"/>
416                         </rpc-reply>";
417                 break; // globalUpdateFeeds
418
419                 case "pref-feed-browser":
420                         module_pref_feed_browser($link);
421                 break; // pref-feed-browser
422
423                 case "publish":
424                         $key = db_escape_string($_GET["key"]);
425                         $limit = (int)db_escape_string($_GET["limit"]);
426
427                         $result = db_query($link, "SELECT login, owner_uid 
428                                 FROM ttrss_user_prefs, ttrss_users WHERE
429                                 pref_name = '_PREFS_PUBLISH_KEY' AND 
430                                 value = '$key' AND 
431                                 ttrss_users.id = owner_uid");
432
433                         if (db_num_rows($result) == 1) {
434                                 $owner = db_fetch_result($result, 0, "owner_uid");
435                                 $login = db_fetch_result($result, 0, "login");
436
437                                 generate_syndicated_feed($link, $owner, -2, false, $limit);
438
439                         } else {
440                                 print "<error>User not found</error>";
441                         }
442                 break; // publish
443
444                 case "rss":
445                         $feed = db_escape_string($_GET["id"]);
446                         $user = db_escape_string($_GET["user"]);
447                         $pass = db_escape_string($_GET["pass"]);
448                         $is_cat = $_GET["is_cat"] != false;
449                         $limit = (int)db_escape_string($_GET["limit"]);
450
451                         $search = db_escape_string($_GET["q"]);
452                         $match_on = db_escape_string($_GET["m"]);
453                         $search_mode = db_escape_string($_GET["smode"]);
454
455                         if (!$_SESSION["uid"] && $user && $pass) {
456                                 authenticate_user($link, $user, $pass);
457                         }
458
459                         if ($_SESSION["uid"] ||
460                                 http_authenticate_user($link)) {
461
462                                         generate_syndicated_feed($link, 0, $feed, $is_cat, $limit,
463                                                 $search, $search_mode, $match_on);
464                         }
465                 break; // rss
466
467                 case "labelFromSearch":
468                         $search = db_escape_string($_GET["search"]);
469                         $search_mode = db_escape_string($_GET["smode"]);
470                         $match_on = db_escape_string($_GET["match"]);
471                         $is_cat = db_escape_string($_GET["is_cat"]);
472                         $title = db_escape_string($_GET["title"]);
473                         $feed = sprintf("%d", $_GET["feed"]);
474
475                         $label_qparts = array();
476
477                         $search_expr = getSearchSql($search, $match_on);
478
479                         if ($is_cat) {
480                                 if ($feed != 0) {
481                                         $search_expr .= " AND ttrss_feeds.cat_id = $feed ";
482                                 } else {
483                                         $search_expr .= " AND ttrss_feeds.cat_id IS NULL ";
484                                 }
485                         } else {
486                                 if ($search_mode == "all_feeds") {
487                                         // NOOP
488                                 } else if ($search_mode == "this_cat") {
489
490                                         $tmp_result = db_query($link, "SELECT cat_id
491                                                 FROM ttrss_feeds WHERE id = '$feed'");
492
493                                         $cat_id = db_fetch_result($tmp_result, 0, "cat_id");
494
495                                         if ($cat_id > 0) {
496                                                 $search_expr .= " AND ttrss_feeds.cat_id = $cat_id ";
497                                         } else {
498                                                 $search_expr .= " AND ttrss_feeds.cat_id IS NULL ";
499                                         }
500                                 } else {
501                                         $search_expr .= " AND ttrss_feeds.id = $feed ";
502                                 }
503
504                         }
505
506                         $search_expr = db_escape_string($search_expr);
507
508                         print $search_expr;
509
510                         if ($title) {
511                                 $result = db_query($link,
512                                         "INSERT INTO ttrss_labels (sql_exp,description,owner_uid) 
513                                         VALUES ('$search_expr', '$title', '".$_SESSION["uid"]."')");
514                         }
515                 break; // labelFromSearch
516
517                 case "getUnread":
518                         $login = db_escape_string($_GET["login"]);
519
520                         header("Content-Type: text/plain; charset=utf-8");
521
522                         $result = db_query($link, "SELECT id FROM ttrss_users WHERE login = '$login'");
523
524                         if (db_num_rows($result) == 1) {
525                                 $uid = db_fetch_result($result, 0, "id");
526                                 print getGlobalUnread($link, $uid);
527                         } else {
528                                 print "-1;User not found";
529                         }
530
531                         $print_exec_time = false;
532                 break; // getUnread
533
534                 case "digestTest":
535                         header("Content-Type: text/plain");
536                         print_r(prepare_headlines_digest($link, $_SESSION["uid"]));
537                         $print_exec_time = false;
538                 break; // digestTest
539
540                 case "digestSend":
541                         header("Content-Type: text/plain");
542                         send_headlines_digests($link);
543                         $print_exec_time = false;
544                 break; // digestSend
545
546         } // Select action according to $op value.
547
548         // We close the connection to database.
549         db_close($link);
550 ?>
551
552 <?php if ($print_exec_time) { ?>
553 <!-- <?php echo sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
554 <?php } ?>