]> git.wh0rd.org - tt-rss.git/blame - backend.php
allow onclick editing of categories and drag-reordering of feeds and categories
[tt-rss.git] / backend.php
CommitLineData
1d3a17c7 1<?php
ce885e21
AD
2 /* remove ill effects of magic quotes */
3
5fa17372 4 if (get_magic_quotes_gpc()) {
c0793f64
AD
5 function stripslashes_deep($value) {
6 $value = is_array($value) ?
7 array_map('stripslashes_deep', $value) : stripslashes($value);
8 return $value;
9 }
10
11 $_POST = array_map('stripslashes_deep', $_POST);
12 $_GET = array_map('stripslashes_deep', $_GET);
13 $_COOKIE = array_map('stripslashes_deep', $_COOKIE);
14 $_REQUEST = array_map('stripslashes_deep', $_REQUEST);
ce885e21
AD
15 }
16
fb074239 17 require_once "functions.php";
36bfab86 18 require_once "sessions.php";
c339343b 19 require_once "modules/backend-rpc.php";
657770a0
AD
20 require_once "sanity_check.php";
21 require_once "config.php";
af106b0e
AD
22 require_once "db.php";
23 require_once "db-prefs.php";
657770a0 24
dc56b3b7 25 no_cache_incantation();
8d039718
AD
26
27 if (ENABLE_TRANSLATIONS == true) {
28 startup_gettext();
29 }
dc56b3b7 30
7f0acba7
AD
31 $script_started = getmicrotime();
32
33 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
34
35 if (!$link) {
36 if (DB_TYPE == "mysql") {
37 print mysql_error();
38 }
39 // PG seems to display its own errors just fine by default.
40 return;
41 }
42
f29ba148 43 init_connection($link);
7f0acba7
AD
44
45 $op = $_REQUEST["op"];
d9084cf2 46 $subop = $_REQUEST["subop"];
fac5e7d1 47 $mode = $_REQUEST["mode"];
7f0acba7 48
c339343b 49 $print_exec_time = false;
7e3634d9 50
fac5e7d1
AD
51 if ((!$op || $op == "rpc" || $op == "rss" ||
52 ($op == "view" && $mode != "zoom") ||
13e785e0
AD
53 $op == "digestSend" || $op == "dlg" ||
54 $op == "viewfeed" || $op == "publish" ||
18664970 55 $op == "globalUpdateFeeds") && !$_REQUEST["noxml"]) {
04fedbf5
AD
56 header("Content-Type: application/xml; charset=utf-8");
57
58 if (ENABLE_GZIP_OUTPUT) {
59 ob_start("ob_gzhandler");
60 }
61
9fdf7824
AD
62 } else {
63 if (!$_REQUEST["noxml"]) {
64 header("Content-Type: text/html; charset=utf-8");
65 } else {
66 header("Content-Type: text/plain; charset=utf-8");
67 }
262bd8ea
AD
68 }
69
f3acc32e
AD
70 if (!$op) {
71 header("Content-Type: application/xml");
72 print_error_xml(7); exit;
73 }
9c883208
AD
74
75 if (SINGLE_USER_MODE) {
76 authenticate_user($link, "admin", null);
77 }
78
7f0acba7 79 if (!($_SESSION["uid"] && validate_session($link)) && $op != "globalUpdateFeeds"
d9084cf2 80 && $op != "rss" && $op != "getUnread" && $op != "publish" && $op != "getProfiles") {
262bd8ea 81
2e918d9d 82 if ($op == "rpc" || $op == "viewfeed" || $op == "view") {
af106b0e 83 print_error_xml(6); die;
04269460
AD
84 } else {
85 print "
86 <html><body>
87 <p>Error: Not logged in.</p>
88 <script type=\"text/javascript\">
89 if (parent.window != 'undefined') {
01a87dff 90 parent.window.location = \"tt-rss.php\";
04269460 91 } else {
01a87dff 92 window.location = \"tt-rss.php\";
04269460
AD
93 }
94 </script>
95 </body></html>
96 ";
262bd8ea
AD
97 }
98 exit;
99 }
1c7f75ed 100
ad815c71 101 $purge_intervals = array(
d1db26aa
AD
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"));
ad815c71
AD
109
110 $update_intervals = array(
ecace165 111 0 => __("Default interval"),
d1db26aa 112 -1 => __("Disable updates"),
1e7cbe16 113 15 => __("Each 15 minutes"),
d1db26aa 114 30 => __("Each 30 minutes"),
505f2f0e
AD
115 60 => __("Hourly"),
116 240 => __("Each 4 hours"),
117 720 => __("Each 12 hours"),
118 1440 => __("Daily"),
119 10080 => __("Weekly"));
120
121 $update_intervals_nodefault = array(
122 -1 => __("Disable updates"),
123 15 => __("Each 15 minutes"),
124 30 => __("Each 30 minutes"),
d1db26aa
AD
125 60 => __("Hourly"),
126 240 => __("Each 4 hours"),
127 720 => __("Each 12 hours"),
128 1440 => __("Daily"),
129 10080 => __("Weekly"));
ad815c71 130
16211ddb 131 $update_methods = array(
ecace165 132 0 => __("Default"),
0dd9c0cf
AD
133 1 => __("Magpie"),
134 2 => __("SimplePie"));
16211ddb 135
78a5c296 136 if (DEFAULT_UPDATE_METHOD == "1") {
16211ddb
AD
137 $update_methods[0] .= ' (SimplePie)';
138 } else {
139 $update_methods[0] .= ' (Magpie)';
140 }
141
3c5783b7 142 $access_level_names = array(
d1db26aa 143 0 => __("User"),
a88d37e5 144 5 => __("Power User"),
d1db26aa 145 10 => __("Administrator"));
3c5783b7 146
f27d955a 147 require_once "modules/pref-prefs.php";
ef8be8ea
AD
148 require_once "modules/popup-dialog.php";
149 require_once "modules/help.php";
150 require_once "modules/pref-feeds.php";
151 require_once "modules/pref-filters.php";
152 require_once "modules/pref-labels.php";
153 require_once "modules/pref-users.php";
ef8be8ea 154
b2804af7 155 if (!sanity_check($link)) { return; }
023fe037 156
45004d43
AD
157 switch($op) { // Select action according to $op value.
158 case "rpc":
159 // Handle remote procedure calls.
160 handle_rpc_request($link);
161 break; // rpc
162
163 case "feeds":
b4e75b2a 164 $subop = $_REQUEST["subop"];
1985a5e0 165 $root = (bool)$_REQUEST["root"];
45004d43
AD
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"]);
ad0056a8
AD
171 ccache_zero_all($link, $_SESSION["uid"]);
172
45004d43
AD
173 break;
174
175 case "collapse":
b4e75b2a 176 $cat_id = db_escape_string($_REQUEST["cid"]);
fcf70c51
AD
177 $mode = (int) db_escape_string($_REQUEST['mode']);
178 toggle_collapse_cat($link, $cat_id, $mode);
45004d43
AD
179 return;
180 break;
181 }
c3b81db0 182
1985a5e0
AD
183 if (!$root) {
184 print json_encode(outputFeedList($link));
185 } else {
186
187 $feeds = outputFeedList($link, false);
188
189 $root = array();
190 $root['id'] = 'root';
191 $root['name'] = __('Feeds');
192 $root['items'] = $feeds['items'];
193
194 $fl = array();
195 $fl['identifier'] = 'id';
196 $fl['label'] = 'name';
197 $fl['items'] = array($root);
198
199 print json_encode($fl);
200 }
13e785e0 201
45004d43 202 break; // feeds
1cd17194 203
45004d43 204 case "view":
e097e8be 205
b4e75b2a
AD
206 $id = db_escape_string($_REQUEST["id"]);
207 $cids = split(",", db_escape_string($_REQUEST["cids"]));
208 $mode = db_escape_string($_REQUEST["mode"]);
209 $omode = db_escape_string($_REQUEST["omode"]);
e097e8be 210
8cab2eb9 211 if ($mode != "zoom") print "<reply>";
e097e8be 212
45004d43
AD
213 // in prefetch mode we only output requested cids, main article
214 // just gets marked as read (it already exists in client cache)
e097e8be 215
45004d43 216 if ($mode == "") {
e04c18a2 217 outputArticleXML($link, $id, false);
eedfb635 218 } else if ($mode == "zoom") {
e04c18a2 219 outputArticleXML($link, $id, false, true, true);
45004d43
AD
220 } else {
221 catchupArticleById($link, $id, 0);
222 }
e097e8be 223
a598370d
AD
224 if (!$_SESSION["bw_limit"]) {
225 foreach ($cids as $cid) {
226 if ($cid) {
e04c18a2 227 outputArticleXML($link, $cid, false, false);
a598370d 228 }
45004d43 229 }
e097e8be 230 }
e097e8be 231
5225d420 232 /* if ($mode == "prefetch") {
6a7817c1
AD
233 print "<counters><![CDATA[";
234 print json_encode(getAllCounters($link, $omode));
235 print "]]></counters>";
5225d420 236 } */
5a94a953 237
8cab2eb9 238 if ($mode != "zoom") print "</reply>";
45004d43 239 break; // view
1cd17194 240
45004d43 241 case "viewfeed":
1cd17194 242
45004d43
AD
243 $print_exec_time = true;
244 $timing_info = getmicrotime();
46921916 245
45004d43 246 print "<reply>";
3de0261a 247
b4e75b2a 248 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("0", $timing_info);
46921916 249
b4e75b2a 250 $omode = db_escape_string($_REQUEST["omode"]);
3de0261a 251
b4e75b2a
AD
252 $feed = db_escape_string($_REQUEST["feed"]);
253 $subop = db_escape_string($_REQUEST["subop"]);
254 $view_mode = db_escape_string($_REQUEST["view_mode"]);
6f068202 255 $limit = (int) get_pref($link, "DEFAULT_ARTICLE_LIMIT");
c3fddd05
AD
256 @$cat_view = db_escape_string($_REQUEST["cat"]);
257 @$next_unread_feed = db_escape_string($_REQUEST["nuf"]);
258 @$offset = db_escape_string($_REQUEST["skip"]);
259 @$vgroup_last_feed = db_escape_string($_REQUEST["vgrlf"]);
b4e75b2a 260 $order_by = db_escape_string($_REQUEST["order_by"]);
203de776 261
fe1087fb
AD
262 /* Feed -5 is a special case: it is used to display auxiliary information
263 * when there's nothing to load - e.g. no stuff in fresh feed */
264
265 if ($feed == -5) {
266 generate_dashboard_feed($link);
267 print "</reply>";
268 return;
269 }
270
51e196de
AD
271 /* Updating a label ccache means recalculating all of the caches
272 * so for performance reasons we don't do that here */
273
5225d420
AD
274 if ($feed >= 0) {
275 ccache_update($link, $feed, $_SESSION["uid"], $cat_view);
276 }
0737b95a 277
45004d43
AD
278 set_pref($link, "_DEFAULT_VIEW_MODE", $view_mode);
279 set_pref($link, "_DEFAULT_VIEW_LIMIT", $limit);
7b4d02a8 280 set_pref($link, "_DEFAULT_VIEW_ORDER_BY", $order_by);
40496720 281
45004d43
AD
282 if (!$cat_view && preg_match("/^[0-9][0-9]*$/", $feed)) {
283 db_query($link, "UPDATE ttrss_feeds SET last_viewed = NOW()
284 WHERE id = '$feed' AND owner_uid = ".$_SESSION["uid"]);
285 }
7466dc6a 286
1098687a 287 if (!$next_unread_feed) {
6e4f4ce1 288 print "<headlines id=\"$feed\" is_cat=\"$cat_view\">";
1098687a 289 } else {
6e4f4ce1 290 print "<headlines id=\"$next_unread_feed\" is_cat=\"$cat_view\">";
1098687a 291 }
a5c815d3
AD
292
293 $override_order = false;
294
b3990c92
AD
295 if (get_pref($link, "SORT_HEADLINES_BY_FEED_DATE", $owner_uid)) {
296 $date_sort_field = "updated";
297 } else {
298 $date_sort_field = "date_entered";
299 }
300
a5c815d3
AD
301 switch ($order_by) {
302 case "date":
303 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
b3990c92 304 $override_order = "$date_sort_field";
a5c815d3 305 } else {
b3990c92 306 $override_order = "$date_sort_field DESC";
a5c815d3
AD
307 }
308 break;
c50e2b30 309
a5c815d3 310 case "title":
7b20c977 311 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
b3990c92 312 $override_order = "title DESC, $date_sort_field";
7b20c977 313 } else {
b3990c92 314 $override_order = "title, $date_sort_field DESC";
7b20c977 315 }
a5c815d3 316 break;
d76a3b03 317
a5c815d3 318 case "score":
7b20c977 319 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
b3990c92 320 $override_order = "score, $date_sort_field";
7b20c977 321 } else {
b3990c92 322 $override_order = "score DESC, $date_sort_field DESC";
7b20c977 323 }
a5c815d3
AD
324 break;
325 }
e19c1824 326
905ff52a
AD
327 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("04", $timing_info);
328
a5c815d3
AD
329 $ret = outputHeadlinesList($link, $feed, $subop,
330 $view_mode, $limit, $cat_view, $next_unread_feed, $offset,
331 $vgroup_last_feed, $override_order);
7b4d02a8 332
a5c815d3
AD
333 $topmost_article_ids = $ret[0];
334 $headlines_count = $ret[1];
335 $returned_feed = $ret[2];
336 $disable_cache = $ret[3];
337 $vgroup_last_feed = $ret[4];
7b4d02a8 338
6e4f4ce1 339 print "</headlines>";
46921916 340
905ff52a
AD
341 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("05", $timing_info);
342
ffbe082d
AD
343 //print "<headlines-count value=\"$headlines_count\"/>";
344 //print "<vgroup-last-feed value=\"$vgroup_last_feed\"/>";
081e527d 345
cfcb7d42 346 $headlines_unread = ccache_find($link, $returned_feed, $_SESSION["uid"],
696a6850
AD
347 $cat_view, true);
348
349 if ($headlines_unread == -1) {
350 $headlines_unread = getFeedUnread($link, $returned_feed, $cat_view);
351
352 }
a5c815d3 353
ffbe082d
AD
354 //print "<headlines-unread value=\"$headlines_unread\"/>";
355 //printf("<disable-cache value=\"%d\"/>", $disable_cache);
356
357 print "<headlines-info><![CDATA[";
358
359 $info = array("count" => (int) $headlines_count,
360 "vgroup_last_feed" => $vgroup_last_feed,
361 "unread" => (int) $headlines_unread,
362 "disable_cache" => (bool) $disable_cache);
363
364 print json_encode($info);
365
366 print "]]></headlines-info>";
a5c815d3 367
b4e75b2a 368 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("10", $timing_info);
a5c815d3
AD
369
370 if (is_array($topmost_article_ids) && !get_pref($link, 'COMBINED_DISPLAY_MODE') && !$_SESSION["bw_limit"]) {
371 print "<articles>";
372 foreach ($topmost_article_ids as $id) {
373 outputArticleXML($link, $id, $feed, false);
45004d43 374 }
a5c815d3 375 print "</articles>";
961f4c73 376 }
961f4c73 377
b4e75b2a 378 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("20", $timing_info);
46921916 379
dd25b0c6
AD
380 //if (get_pref($link, 'COMBINED_DISPLAY_MODE') || $subop) {
381 if ($subop) {
5225d420
AD
382 print "<counters><![CDATA[";
383 print json_encode(getAllCounters($link, $omode, $feed));
384 print "]]></counters>";
d36f5607 385 }
98bea1b1 386
b4e75b2a 387 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("30", $timing_info);
46921916 388
45004d43 389 print_runtime_info($link);
03c88bdd 390
45004d43
AD
391 print "</reply>";
392 break; // viewfeed
1cd17194 393
45004d43
AD
394 case "pref-feeds":
395 module_pref_feeds($link);
396 break; // pref-feeds
a7f22b70 397
45004d43
AD
398 case "pref-filters":
399 module_pref_filters($link);
400 break; // pref-filters
a0476535 401
45004d43
AD
402 case "pref-labels":
403 module_pref_labels($link);
404 break; // pref-labels
d0000401 405
45004d43
AD
406 case "pref-prefs":
407 module_pref_prefs($link);
408 break; // pref-prefs
f27d955a 409
45004d43
AD
410 case "pref-users":
411 module_pref_users($link);
412 break; // prefs-users
a0476535 413
45004d43
AD
414 case "help":
415 module_help($link);
416 break; // help
a0476535 417
45004d43
AD
418 case "dlg":
419 module_popup_dialog($link);
420 break; // dlg
a7f22b70 421
45004d43
AD
422 case "pref-pub-items":
423 module_pref_pub_items($link);
424 break; // pref-pub-items
e4f4b46f 425
45004d43
AD
426 case "globalUpdateFeeds":
427 // update feeds of all users, may be used anonymously
e4f4b46f 428
5cbaf873 429 print "<!--";
45004d43 430 // Update all feeds needing a update.
5cbaf873
AD
431 update_daemon_common($link, 0, true, true);
432 print " -->";
a7f22b70 433
45004d43
AD
434 print "<rpc-reply>
435 <message msg=\"All feeds updated\"/>
436 </rpc-reply>";
437 break; // globalUpdateFeeds
e5d758e3 438
45004d43
AD
439 case "pref-feed-browser":
440 module_pref_feed_browser($link);
441 break; // pref-feed-browser
c6232e43 442
45004d43 443 case "rss":
b4e75b2a 444 $feed = db_escape_string($_REQUEST["id"]);
8801fb01 445 $key = db_escape_string($_REQUEST["key"]);
b4e75b2a
AD
446 $is_cat = $_REQUEST["is_cat"] != false;
447 $limit = (int)db_escape_string($_REQUEST["limit"]);
e1eb2147 448
b4e75b2a
AD
449 $search = db_escape_string($_REQUEST["q"]);
450 $match_on = db_escape_string($_REQUEST["m"]);
451 $search_mode = db_escape_string($_REQUEST["smode"]);
2f2bd1b3 452 $view_mode = db_escape_string($_REQUEST["view-mode"]);
18664970 453
b4798282
AD
454 if (SINGLE_USER_MODE) {
455 authenticate_user($link, "admin", null);
456 }
457
8801fb01
AD
458 if ($key && !$_SESSION["uid"]) {
459 $result = db_query($link, "SELECT owner_uid FROM
460 ttrss_access_keys WHERE access_key = '$key' AND feed_id = '$feed'");
461
462 if (db_num_rows($result) == 1)
463 $_SESSION["uid"] = db_fetch_result($result, 0, "owner_uid");
464
45004d43 465 }
18664970 466
135d4251 467 if ($_SESSION["uid"]) {
23d72f39
AD
468 generate_syndicated_feed($link, 0, $feed, $is_cat, $limit,
469 $search, $search_mode, $match_on, $view_mode);
45004d43
AD
470 }
471 break; // rss
18664970 472
45004d43 473 case "getUnread":
b4e75b2a 474 $login = db_escape_string($_REQUEST["login"]);
1f7b77d1 475 $fresh = $_REQUEST["fresh"] == "1";
f3acc32e 476
45004d43 477 header("Content-Type: text/plain; charset=utf-8");
f3acc32e 478
45004d43 479 $result = db_query($link, "SELECT id FROM ttrss_users WHERE login = '$login'");
7e3634d9 480
45004d43
AD
481 if (db_num_rows($result) == 1) {
482 $uid = db_fetch_result($result, 0, "id");
1f7b77d1 483
45004d43 484 print getGlobalUnread($link, $uid);
1f7b77d1
AD
485
486 if ($fresh) {
487 print ";";
488 print getFeedArticles($link, -3, false, true, $uid);
489 }
490
45004d43
AD
491 } else {
492 print "-1;User not found";
493 }
7e3634d9 494
45004d43
AD
495 $print_exec_time = false;
496 break; // getUnread
9cd7c995 497
45004d43
AD
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
448b0abd 503
45004d43
AD
504 case "digestSend":
505 header("Content-Type: text/plain");
506 send_headlines_digests($link);
507 $print_exec_time = false;
508 break; // digestSend
7e3634d9 509
d9084cf2
AD
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();
0456176a 532 }
d9084cf2 533 break;
d9084cf2 534
45004d43 535 } // Select action according to $op value.
f3acc32e 536
45004d43 537 // We close the connection to database.
4b3dff6e 538 db_close($link);
1cd17194 539?>
406d9489 540
7e3634d9 541<?php if ($print_exec_time) { ?>
1d3a17c7 542<!-- <?php echo sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
f3acc32e 543<?php } ?>