]> git.wh0rd.org Git - tt-rss.git/blob - backend.php
possible speedup: bump counters_stamp in backend/feeds
[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
145         if (!sanity_check($link)) { return; }
146
147         switch($op) { // Select action according to $op value.
148                 case "rpc":
149                         // Handle remote procedure calls.
150                         handle_rpc_request($link);
151                 break; // rpc
152
153                 case "feeds":
154                         if (ENABLE_GZIP_OUTPUT) {
155                                 ob_start("ob_gzhandler");
156                         }
157
158                         $tags = $_GET["tags"];
159
160                         $subop = $_GET["subop"];
161
162                         switch($subop) {
163                                 case "catchupAll":
164                                         db_query($link, "UPDATE ttrss_user_entries SET 
165                                                 last_read = NOW(),unread = false WHERE owner_uid = " . $_SESSION["uid"]);
166                                         ccache_zero_all($link, $_SESSION["uid"]);
167
168                                 break;
169
170                                 case "collapse":
171                                         $cat_id = db_escape_string($_GET["cid"]);
172
173                                         db_query($link, "UPDATE ttrss_feed_categories SET
174                                                 collapsed = NOT collapsed WHERE id = '$cat_id' AND owner_uid = " . 
175                                                 $_SESSION["uid"]);
176                                         return;
177                                 break;
178
179                                 case "catsortreset":
180                                         db_query($link, "UPDATE ttrss_feed_categories 
181                                                         SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"]);
182                                         return;
183                                 break;
184
185                                 case "catsort":
186                                         $corder = db_escape_string($_GET["corder"]);
187
188                                         $cats = split(",", $corder);
189
190                                         for ($i = 0; $i < count($cats); $i++) {
191                                                 $cat_id = $cats[$i];
192
193                                                 if ($cat_id > 0) {
194                                                         db_query($link, "UPDATE ttrss_feed_categories 
195                                                                 SET order_id = '$i' WHERE id = '$cat_id' AND
196                                                                 owner_uid = " . $_SESSION["uid"]);
197                                                 }
198                                         }
199
200                                         return;
201                                 break;
202
203                         }
204
205                         $_SESSION["viewfeed:counters_stamp"] = time();
206
207                         outputFeedList($link, $tags);
208                 break; // feeds
209
210                 case "view":
211
212                         $id = db_escape_string($_GET["id"]);
213                         $feed_id = db_escape_string($_GET["feed"]);
214                         $cids = split(",", db_escape_string($_GET["cids"]));
215                         $mode = db_escape_string($_GET["mode"]);
216                         $omode = db_escape_string($_GET["omode"]);
217
218                         $csync = $_GET["csync"];
219
220                         print "<reply>";
221
222                         // in prefetch mode we only output requested cids, main article 
223                         // just gets marked as read (it already exists in client cache)
224
225                         if ($mode == "") {
226                                 outputArticleXML($link, $id, $feed_id);
227                         } else if ($mode == "zoom") {
228                                 outputArticleXML($link, $id, $feed_id, true, true);
229                         } else {
230                                 catchupArticleById($link, $id, 0);
231                                 ccache_update($link, $feed_id, $_SESSION["uid"]);
232                         }
233
234                         if (!$_SESSION["bw_limit"]) {
235                                 foreach ($cids as $cid) {
236                                         if ($cid) {
237                                                 outputArticleXML($link, $cid, $feed_id, false);
238                                         }
239                                 }
240                         }
241
242 //                      if (get_pref($link, "SYNC_COUNTERS") || ($mode == "prefetch" && $csync)) {
243
244                         if (time() - $_SESSION["view:counters_stamp"] > 3 && $mode == "prefetch") {
245                                 print "<counters>";
246                                 getAllCounters($link, $omode);
247                                 print "</counters>";
248                                 $_SESSION["view:counters_stamp"] = time();
249                         }
250
251                         print "</reply>";
252                 break; // view
253
254                 case "viewfeed":
255
256                         $print_exec_time = true;
257                         $timing_info = getmicrotime();
258
259                         print "<reply>";
260
261                         if ($_GET["debug"]) $timing_info = print_checkpoint("0", $timing_info);
262
263                         $omode = db_escape_string($_GET["omode"]);
264
265                         $feed = db_escape_string($_GET["feed"]);
266                         $subop = db_escape_string($_GET["subop"]);
267                         $view_mode = db_escape_string($_GET["view_mode"]);
268                         $limit = db_escape_string($_GET["limit"]);
269                         $cat_view = db_escape_string($_GET["cat"]);
270                         $next_unread_feed = db_escape_string($_GET["nuf"]);
271                         $offset = db_escape_string($_GET["skip"]);
272                         $vgroup_last_feed = db_escape_string($_GET["vgrlf"]);
273                         $csync = $_GET["csync"];
274                         $order_by = db_escape_string($_GET["order_by"]);
275
276                         /* Updating a label ccache means recalculating all of the caches
277                          * so for performance reasons we don't do that here */
278
279 //                      if (time() - $_SESSION["viewfeed:ccache_update_stamp"] > 120) {
280                                 if ($feed >= 0) {
281                                         ccache_update($link, $feed, $_SESSION["uid"], $cat_view);
282                                 }
283                                 $_SESSION["viewfeed:ccache_update_stamp"] = time();
284 //                      }
285
286                         set_pref($link, "_DEFAULT_VIEW_MODE", $view_mode);
287                         set_pref($link, "_DEFAULT_VIEW_LIMIT", $limit);
288                         set_pref($link, "_DEFAULT_VIEW_ORDER_BY", $order_by);
289
290                         if (!$cat_view && preg_match("/^[0-9][0-9]*$/", $feed)) {
291                                 db_query($link, "UPDATE ttrss_feeds SET last_viewed = NOW()
292                                         WHERE id = '$feed' AND owner_uid = ".$_SESSION["uid"]);
293                         }
294
295                         if (!$next_unread_feed) {
296                                 print "<headlines id=\"$feed\" is_cat=\"$cat_view\"><![CDATA[";
297                         } else {
298                                 print "<headlines id=\"$next_unread_feed\" is_cat=\"$cat_view\"><![CDATA[";
299                         }
300                 
301                         $override_order = false;
302
303                         switch ($order_by) {
304                                 case "date":
305                                         if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
306                                                 $override_order = "updated";
307                                         } else {        
308                                                 $override_order = "updated DESC";
309                                         }
310                                         break;
311
312                                 case "title":
313                                         $override_order = "updated DESC";
314                                         break;
315
316                                 case "score":
317                                         $override_order = "score DESC";
318                                         break;
319                         }
320
321                         $ret = outputHeadlinesList($link, $feed, $subop, 
322                                 $view_mode, $limit, $cat_view, $next_unread_feed, $offset, 
323                                 $vgroup_last_feed, $override_order);
324
325                         $topmost_article_ids = $ret[0];
326                         $headlines_count = $ret[1];
327                         $returned_feed = $ret[2];
328                         $disable_cache = $ret[3];
329                         $vgroup_last_feed = $ret[4];
330
331                         print "]]></headlines>";
332
333                         print "<headlines-count value=\"$headlines_count\"/>";
334                         print "<vgroup-last-feed value=\"$vgroup_last_feed\"/>";
335
336                         $headlines_unread = ccache_find($link, $returned_feed, $_SESSION["uid"],
337                                         $cat_view, true);
338
339                         if ($headlines_unread == -1) {
340                                 $headlines_unread = getFeedUnread($link, $returned_feed, $cat_view);
341
342                         }
343
344                         print "<headlines-unread value=\"$headlines_unread\"/>";
345                         printf("<disable-cache value=\"%d\"/>", $disable_cache);
346
347                         if ($_GET["debug"]) $timing_info = print_checkpoint("10", $timing_info);
348
349                         if (is_array($topmost_article_ids) && !get_pref($link, 'COMBINED_DISPLAY_MODE') && !$_SESSION["bw_limit"]) {
350                                 print "<articles>";
351                                 foreach ($topmost_article_ids as $id) {
352                                         outputArticleXML($link, $id, $feed, false);
353                                 }
354                                 print "</articles>";
355                         }
356
357                         if ($_GET["debug"]) $timing_info = print_checkpoint("20", $timing_info);
358
359
360 //                      if (get_pref($link, "SYNC_COUNTERS") ||                         
361 //                                      time() - $_SESSION["get_all_counters_stamp"] > $viewfeed_ctr_interval) {
362 //                              print "<counters>";
363 //                              getAllCounters($link, $omode, $feed);
364 //                              print "</counters>";
365 //                      }
366
367                         if (get_pref($link, 'COMBINED_DISPLAY_MODE') || $subop || 
368                                 time() - $_SESSION["viewfeed:counters_stamp"] > 60) {
369                                 if (!$offset) {
370                                         print "<counters>";
371                                         getAllCounters($link, $omode, $feed);
372                                         print "</counters>";
373                                         $_SESSION["viewfeed:counters_stamp"] = time();
374                                 }
375                         }
376
377                         if ($_GET["debug"]) $timing_info = print_checkpoint("30", $timing_info);
378
379                         print_runtime_info($link);
380
381                         print "</reply>";
382                 break; // viewfeed
383
384                 case "pref-feeds":
385                         module_pref_feeds($link);
386                 break; // pref-feeds
387
388                 case "pref-filters":
389                         module_pref_filters($link);
390                 break; // pref-filters
391
392                 case "pref-labels":
393                         module_pref_labels($link);
394                 break; // pref-labels
395
396                 case "pref-prefs":
397                         module_pref_prefs($link);
398                 break; // pref-prefs
399
400                 case "pref-users":
401                         module_pref_users($link);
402                 break; // prefs-users
403
404                 case "help":
405                         module_help($link);
406                 break; // help
407
408                 case "dlg":
409                         module_popup_dialog($link);
410                 break; // dlg
411
412                 case "pref-pub-items":
413                         module_pref_pub_items($link);
414                 break; // pref-pub-items
415
416                 case "globalUpdateFeeds":
417                         // update feeds of all users, may be used anonymously
418
419                         print "<!--";
420                         // Update all feeds needing a update.
421                         update_daemon_common($link, 0, true, true);
422                         print " -->";
423
424                         print "<rpc-reply>
425                                 <message msg=\"All feeds updated\"/>
426                         </rpc-reply>";
427                 break; // globalUpdateFeeds
428
429                 case "pref-feed-browser":
430                         module_pref_feed_browser($link);
431                 break; // pref-feed-browser
432
433                 case "publish":
434                         $key = db_escape_string($_GET["key"]);
435                         $limit = (int)db_escape_string($_GET["limit"]);
436
437                         $result = db_query($link, "SELECT login, owner_uid 
438                                 FROM ttrss_user_prefs, ttrss_users WHERE
439                                 pref_name = '_PREFS_PUBLISH_KEY' AND 
440                                 value = '$key' AND 
441                                 ttrss_users.id = owner_uid");
442
443                         if (db_num_rows($result) == 1) {
444                                 $owner = db_fetch_result($result, 0, "owner_uid");
445                                 $login = db_fetch_result($result, 0, "login");
446
447                                 generate_syndicated_feed($link, $owner, -2, false, $limit);
448
449                         } else {
450                                 print "<error>User not found</error>";
451                         }
452                 break; // publish
453
454                 case "rss":
455                         $feed = db_escape_string($_GET["id"]);
456                         $user = db_escape_string($_GET["user"]);
457                         $pass = db_escape_string($_GET["pass"]);
458                         $is_cat = $_GET["is_cat"] != false;
459                         $limit = (int)db_escape_string($_GET["limit"]);
460
461                         $search = db_escape_string($_GET["q"]);
462                         $match_on = db_escape_string($_GET["m"]);
463                         $search_mode = db_escape_string($_GET["smode"]);
464
465                         if (!$_SESSION["uid"] && $user && $pass) {
466                                 authenticate_user($link, $user, $pass);
467                         }
468
469                         if ($_SESSION["uid"] ||
470                                 http_authenticate_user($link)) {
471
472                                         generate_syndicated_feed($link, 0, $feed, $is_cat, $limit,
473                                                 $search, $search_mode, $match_on);
474                         }
475                 break; // rss
476
477                 case "getUnread":
478                         $login = db_escape_string($_GET["login"]);
479
480                         header("Content-Type: text/plain; charset=utf-8");
481
482                         $result = db_query($link, "SELECT id FROM ttrss_users WHERE login = '$login'");
483
484                         if (db_num_rows($result) == 1) {
485                                 $uid = db_fetch_result($result, 0, "id");
486                                 print getGlobalUnread($link, $uid);
487                         } else {
488                                 print "-1;User not found";
489                         }
490
491                         $print_exec_time = false;
492                 break; // getUnread
493
494                 case "digestTest":
495                         header("Content-Type: text/plain");
496                         print_r(prepare_headlines_digest($link, $_SESSION["uid"]));
497                         $print_exec_time = false;
498                 break; // digestTest
499
500                 case "digestSend":
501                         header("Content-Type: text/plain");
502                         send_headlines_digests($link);
503                         $print_exec_time = false;
504                 break; // digestSend
505
506         } // Select action according to $op value.
507
508         // We close the connection to database.
509         db_close($link);
510 ?>
511
512 <?php if ($print_exec_time) { ?>
513 <!-- <?php echo sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
514 <?php } ?>