]> git.wh0rd.org Git - tt-rss.git/blob - backend.php
neon updates; make more icons themeable; misc fixes
[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                 $_REQUEST = array_map('stripslashes', $_REQUEST);
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 ($_REQUEST["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         $subop = $_REQUEST["subop"];
53         $mode = $_REQUEST["mode"];
54
55         $print_exec_time = false;
56
57         if ((!$op || $op == "rpc" || $op == "rss" || 
58                         ($op == "view" && $mode != "zoom") || 
59                         $op == "digestSend" || $op == "viewfeed" || $op == "publish" ||
60                         $op == "globalUpdateFeeds") && !$_REQUEST["noxml"]) {
61                                 header("Content-Type: application/xml; charset=utf-8");
62
63                                 if (ENABLE_GZIP_OUTPUT) {
64                                         ob_start("ob_gzhandler");
65                                 }
66                                 
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 (SINGLE_USER_MODE) {
81                 authenticate_user($link, "admin", null);
82         }
83
84         if (!($_SESSION["uid"] && validate_session($link)) && $op != "globalUpdateFeeds" 
85                 && $op != "rss" && $op != "getUnread" && $op != "publish" && $op != "getProfiles") {
86
87                 if ($op == "rpc" || $op == "viewfeed" || $op == "view") {
88                         print_error_xml(6); die;
89                 } else {
90                         print "
91                         <html><body>
92                                 <p>Error: Not logged in.</p>
93                                 <script type=\"text/javascript\">
94                                         if (parent.window != 'undefined') {
95                                                 parent.window.location = \"tt-rss.php\";                
96                                         } else {
97                                                 window.location = \"tt-rss.php\";
98                                         }
99                                 </script>
100                         </body></html>
101                         ";
102                 }
103                 exit;
104         }
105
106         $purge_intervals = array(
107                 0  => __("Use default"),
108                 -1 => __("Never purge"),
109                 5  => __("1 week old"),
110                 14 => __("2 weeks old"),
111                 31 => __("1 month old"),
112                 60 => __("2 months old"),
113                 90 => __("3 months old"));
114
115         $update_intervals = array(
116                 0   => __("Default interval"),
117                 -1  => __("Disable updates"),
118                 15  => __("Each 15 minutes"),
119                 30  => __("Each 30 minutes"),
120                 60  => __("Hourly"),
121                 240 => __("Each 4 hours"),
122                 720 => __("Each 12 hours"),
123                 1440 => __("Daily"),
124                 10080 => __("Weekly"));
125
126         $update_methods = array(
127                 0   => __("Default"),
128                 1   => __("Magpie"),
129                 2   => __("SimplePie"));
130
131         if (ENABLE_SIMPLEPIE) {
132                 $update_methods[0] .= ' (SimplePie)';
133         } else {
134                 $update_methods[0] .= ' (Magpie)';
135         }
136
137         $access_level_names = array(
138                 0 => __("User"), 
139                 5 => __("Power User"),
140                 10 => __("Administrator"));
141
142         require_once "modules/pref-prefs.php";
143         require_once "modules/popup-dialog.php";
144         require_once "modules/help.php";
145         require_once "modules/pref-feeds.php";
146         require_once "modules/pref-filters.php";
147         require_once "modules/pref-labels.php";
148         require_once "modules/pref-users.php";
149
150         if (!sanity_check($link)) { return; }
151
152         switch($op) { // Select action according to $op value.
153                 case "rpc":
154                         // Handle remote procedure calls.
155                         handle_rpc_request($link);
156                 break; // rpc
157
158                 case "feeds":
159                         if (ENABLE_GZIP_OUTPUT) {
160                                 ob_start("ob_gzhandler");
161                         }
162
163                         $tags = $_REQUEST["tags"];
164
165                         $subop = $_REQUEST["subop"];
166
167                         switch($subop) {
168                                 case "catchupAll":
169                                         db_query($link, "UPDATE ttrss_user_entries SET 
170                                                 last_read = NOW(),unread = false WHERE owner_uid = " . $_SESSION["uid"]);
171                                         ccache_zero_all($link, $_SESSION["uid"]);
172
173                                 break;
174
175                                 case "collapse":
176                                         $cat_id = db_escape_string($_REQUEST["cid"]);
177                                         toggle_collapse_cat($link, $cat_id);
178                                         return;
179                                 break;
180
181                                 case "catsortreset":
182                                         db_query($link, "UPDATE ttrss_feed_categories 
183                                                         SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"]);
184                                         return;
185                                 break;
186
187                                 case "catsort":
188                                         $corder = db_escape_string($_REQUEST["corder"]);
189
190                                         $cats = split(",", $corder);
191
192                                         for ($i = 0; $i < count($cats); $i++) {
193                                                 $cat_id = $cats[$i];
194
195                                                 if ($cat_id > 0) {
196                                                         db_query($link, "UPDATE ttrss_feed_categories 
197                                                                 SET order_id = '$i' WHERE id = '$cat_id' AND
198                                                                 owner_uid = " . $_SESSION["uid"]);
199                                                 }
200                                         }
201
202                                         return;
203                                 break;
204
205                         }
206
207                         $_SESSION["viewfeed:counters_stamp"] = time();
208
209                         outputFeedList($link, $tags);
210                 break; // feeds
211
212                 case "view":
213
214                         $id = db_escape_string($_REQUEST["id"]);
215                         $cids = split(",", db_escape_string($_REQUEST["cids"]));
216                         $mode = db_escape_string($_REQUEST["mode"]);
217                         $omode = db_escape_string($_REQUEST["omode"]);
218
219                         $csync = $_REQUEST["csync"];
220
221                         print "<reply>";
222
223                         // in prefetch mode we only output requested cids, main article 
224                         // just gets marked as read (it already exists in client cache)
225
226                         if ($mode == "") {
227                                 outputArticleXML($link, $id, false);
228                         } else if ($mode == "zoom") {
229                                 outputArticleXML($link, $id, false, true, true);
230                         } else {
231                                 catchupArticleById($link, $id, 0);
232                         }
233
234                         if (!$_SESSION["bw_limit"]) {
235                                 foreach ($cids as $cid) {
236                                         if ($cid) {
237                                                 outputArticleXML($link, $cid, false, false);
238                                         }
239                                 }
240                         }
241
242 //                      if (get_pref($link, "SYNC_COUNTERS") || ($mode == "prefetch" && $csync)) {
243
244                         if (time() - $_SESSION["view:counters_stamp"] > 5 && $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 ($_REQUEST["debug"]) $timing_info = print_checkpoint("0", $timing_info);
262
263                         $omode = db_escape_string($_REQUEST["omode"]);
264
265                         $feed = db_escape_string($_REQUEST["feed"]);
266                         $subop = db_escape_string($_REQUEST["subop"]);
267                         $view_mode = db_escape_string($_REQUEST["view_mode"]);
268                         $limit = (int) get_pref($link, "DEFAULT_ARTICLE_LIMIT");
269                         $cat_view = db_escape_string($_REQUEST["cat"]);
270                         $next_unread_feed = db_escape_string($_REQUEST["nuf"]);
271                         $offset = db_escape_string($_REQUEST["skip"]);
272                         $vgroup_last_feed = db_escape_string($_REQUEST["vgrlf"]);
273                         $csync = $_REQUEST["csync"];
274                         $order_by = db_escape_string($_REQUEST["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 ($_REQUEST["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 ($_REQUEST["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"] > 5) {
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 ($_REQUEST["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($_REQUEST["key"]);
435                         $limit = (int)db_escape_string($_REQUEST["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($_REQUEST["id"]);
456                         $user = db_escape_string($_REQUEST["user"]);
457                         $pass = db_escape_string($_REQUEST["pass"]);
458                         $is_cat = $_REQUEST["is_cat"] != false;
459                         $limit = (int)db_escape_string($_REQUEST["limit"]);
460
461                         $search = db_escape_string($_REQUEST["q"]);
462                         $match_on = db_escape_string($_REQUEST["m"]);
463                         $search_mode = db_escape_string($_REQUEST["smode"]);
464
465                         if (SINGLE_USER_MODE) {
466                                 authenticate_user($link, "admin", null);
467                         }
468
469                         if (!$_SESSION["uid"] && $user && $pass) {
470                                 authenticate_user($link, $user, $pass);
471                         }
472
473                         if ($_SESSION["uid"] ||
474                                 http_authenticate_user($link)) {
475
476                                         generate_syndicated_feed($link, 0, $feed, $is_cat, $limit,
477                                                 $search, $search_mode, $match_on);
478                         }
479                 break; // rss
480
481                 case "getUnread":
482                         $login = db_escape_string($_REQUEST["login"]);
483
484                         header("Content-Type: text/plain; charset=utf-8");
485
486                         $result = db_query($link, "SELECT id FROM ttrss_users WHERE login = '$login'");
487
488                         if (db_num_rows($result) == 1) {
489                                 $uid = db_fetch_result($result, 0, "id");
490                                 print getGlobalUnread($link, $uid);
491                         } else {
492                                 print "-1;User not found";
493                         }
494
495                         $print_exec_time = false;
496                 break; // getUnread
497
498                 case "digestTest":
499                         header("Content-Type: text/plain");
500                         print_r(prepare_headlines_digest($link, $_SESSION["uid"]));
501                         $print_exec_time = false;
502                 break; // digestTest
503
504                 case "digestSend":
505                         header("Content-Type: text/plain");
506                         send_headlines_digests($link);
507                         $print_exec_time = false;
508                 break; // digestSend
509
510                 case "getProfiles":
511                         $login = db_escape_string($_REQUEST["login"]);
512                         $password = db_escape_string($_REQUEST["password"]);
513
514                         if (authenticate_user($link, $login, $password)) {
515                                 $result = db_query($link, "SELECT * FROM ttrss_settings_profiles
516                                         WHERE owner_uid = " . $_SESSION["uid"] . " ORDER BY title");
517
518                                 print "<select style='width: 100%' name='profile'>";
519
520                                 print "<option value='0'>" . __("Default profile") . "</option>";
521
522                                 while ($line = db_fetch_assoc($result)) {
523                                         $id = $line["id"];
524                                         $title = $line["title"];
525
526                                         print "<option value='$id'>$title</option>";
527                                 }
528
529                                 print "</select>";
530
531                                 $_SESSION = array();
532
533                 break;
534                 }
535
536         } // Select action according to $op value.
537
538         // We close the connection to database.
539         db_close($link);
540 ?>
541
542 <?php if ($print_exec_time) { ?>
543 <!-- <?php echo sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
544 <?php } ?>