]> git.wh0rd.org - tt-rss.git/blob - backend.php
properly unmark updated articles when reading
[tt-rss.git] / backend.php
1 <?php
2 error_reporting(E_ERROR | E_WARNING | E_PARSE);
3
4 require_once "sessions.php";
5 require_once "modules/backend-rpc.php";
6
7 /* if ($_GET["debug"]) {
8 define('DEFAULT_ERROR_LEVEL', E_ALL);
9 } else {
10 define('DEFAULT_ERROR_LEVEL', E_ERROR | E_WARNING | E_PARSE);
11 }
12
13 error_reporting(DEFAULT_ERROR_LEVEL); */
14
15 require_once "sanity_check.php";
16 require_once "config.php";
17
18 require_once "db.php";
19 require_once "db-prefs.php";
20 require_once "functions.php";
21
22 no_cache_incantation();
23 startup_gettext();
24
25 $script_started = getmicrotime();
26
27 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
28
29 if (!$link) {
30 if (DB_TYPE == "mysql") {
31 print mysql_error();
32 }
33 // PG seems to display its own errors just fine by default.
34 return;
35 }
36
37 if (DB_TYPE == "pgsql") {
38 pg_query("set client_encoding = 'UTF-8'");
39 pg_set_client_encoding("UNICODE");
40 }
41
42 $op = $_REQUEST["op"];
43
44 $print_exec_time = false;
45
46 if ((!$op || $op == "rpc" || $op == "rss" || $op == "view" ||
47 $op == "digestSend" || $op == "viewfeed" ||
48 $op == "globalUpdateFeeds") && !$_REQUEST["noxml"]) {
49 header("Content-Type: application/xml; charset=utf-8");
50 } else {
51 header("Content-Type: text/html; charset=utf-8");
52 }
53
54 if (!$op) {
55 header("Content-Type: application/xml");
56 print_error_xml(7); exit;
57 }
58
59 if (!($_SESSION["uid"] && validate_session($link)) && $op != "globalUpdateFeeds"
60 && $op != "rss" && $op != "getUnread") {
61
62 if ($op == "rpc") {
63 print_error_xml(6); die;
64 } else {
65 print "
66 <html><body>
67 <p>Error: Not logged in.</p>
68 <script type=\"text/javascript\">
69 if (parent.window != 'undefined') {
70 parent.window.location = \"tt-rss.php\";
71 } else {
72 window.location = \"tt-rss.php\";
73 }
74 </script>
75 </body></html>
76 ";
77 }
78 exit;
79 }
80
81 $purge_intervals = array(
82 0 => __("Use default"),
83 -1 => __("Never purge"),
84 5 => __("1 week old"),
85 14 => __("2 weeks old"),
86 31 => __("1 month old"),
87 60 => __("2 months old"),
88 90 => __("3 months old"));
89
90 $update_intervals = array(
91 0 => __("Use default"),
92 -1 => __("Disable updates"),
93 30 => __("Each 30 minutes"),
94 60 => __("Hourly"),
95 240 => __("Each 4 hours"),
96 720 => __("Each 12 hours"),
97 1440 => __("Daily"),
98 10080 => __("Weekly"));
99
100
101 $access_level_names = array(
102 0 => __("User"),
103 10 => __("Administrator"));
104
105 require_once "modules/pref-prefs.php";
106 require_once "modules/popup-dialog.php";
107 require_once "modules/help.php";
108 require_once "modules/pref-feeds.php";
109 require_once "modules/pref-filters.php";
110 require_once "modules/pref-labels.php";
111 require_once "modules/pref-users.php";
112 require_once "modules/pref-feed-browser.php";
113
114
115 if (!sanity_check($link)) { return; }
116
117 if ($op == "rpc") {
118 handle_rpc_request($link);
119 }
120
121 if ($op == "feeds") {
122
123 $tags = $_GET["tags"];
124
125 $subop = $_GET["subop"];
126
127 if ($subop == "catchupAll") {
128 db_query($link, "UPDATE ttrss_user_entries SET
129 last_read = NOW(),unread = false WHERE owner_uid = " . $_SESSION["uid"]);
130 }
131
132 if ($subop == "collapse") {
133 $cat_id = db_escape_string($_GET["cid"]);
134
135 db_query($link, "UPDATE ttrss_feed_categories SET
136 collapsed = NOT collapsed WHERE id = '$cat_id' AND owner_uid = " .
137 $_SESSION["uid"]);
138 return;
139 }
140
141 outputFeedList($link, $tags);
142
143 }
144
145 if ($op == "view") {
146
147 $id = db_escape_string($_GET["id"]);
148 $feed_id = db_escape_string($_GET["feed"]);
149 $cids = split(",", db_escape_string($_GET["cids"]));
150 $mode = db_escape_string($_GET["mode"]);
151 $omode = db_escape_string($_GET["omode"]);
152
153 print "<reply>";
154
155 // in prefetch mode we only output requested cids, main article
156 // just gets marked as read (it already exists in client cache)
157
158 if ($mode == "") {
159 outputArticleXML($link, $id, $feed_id);
160 } else {
161 catchupArticleById($link, $id, 0);
162 }
163
164 foreach ($cids as $cid) {
165 if ($cid) {
166 outputArticleXML($link, $cid, $feed_id, false);
167 }
168 }
169
170 if ($mode != "prefetch_old") {
171 print "<counters>";
172 getAllCounters($link, $omode);
173 print "</counters>";
174 }
175
176 print "</reply>";
177 }
178
179 if ($op == "viewfeed") {
180
181 print "<reply>";
182
183 $omode = db_escape_string($_GET["omode"]);
184
185 $feed = db_escape_string($_GET["feed"]);
186 $subop = db_escape_string($_GET["subop"]);
187 $view_mode = db_escape_string($_GET["view_mode"]);
188 $limit = db_escape_string($_GET["limit"]);
189 $cat_view = db_escape_string($_GET["cat"]);
190 $next_unread_feed = db_escape_string($_GET["nuf"]);
191 $offset = db_escape_string($_GET["skip"]);
192
193 set_pref($link, "_DEFAULT_VIEW_MODE", $view_mode);
194 set_pref($link, "_DEFAULT_VIEW_LIMIT", $limit);
195
196 print "<headlines id=\"$feed\"><![CDATA[";
197
198 outputHeadlinesList($link, $feed, $subop, $view_mode, $limit, $cat_view,
199 $next_unread_feed, $offset);
200
201 print "]]></headlines>";
202
203 print "<counters>";
204 getAllCounters($link, $omode);
205 print "</counters>";
206
207 print "</reply>";
208 }
209
210 if ($op == "pref-feeds") {
211 module_pref_feeds($link);
212 }
213
214 if ($op == "pref-filters") {
215 module_pref_filters($link);
216 }
217
218 if ($op == "pref-labels") {
219 module_pref_labels($link);
220 }
221
222 if ($op == "pref-prefs") {
223 module_pref_prefs($link);
224 }
225
226 if ($op == "pref-users") {
227 module_pref_users($link);
228 }
229
230 if ($op == "help") {
231 module_help($link);
232 }
233
234 if ($op == "dlg") {
235 module_popup_dialog($link);
236 }
237
238 // update feeds of all users, may be used anonymously
239 if ($op == "globalUpdateFeeds") {
240
241 $result = db_query($link, "SELECT id FROM ttrss_users");
242
243 while ($line = db_fetch_assoc($result)) {
244 $user_id = $line["id"];
245 // print "<!-- updating feeds of uid $user_id -->";
246 update_all_feeds($link, false, $user_id);
247 }
248
249 print "<rpc-reply>
250 <message msg=\"All feeds updated\"/>
251 </rpc-reply>";
252
253 }
254
255 if ($op == "user-details") {
256
257 if (WEB_DEMO_MODE || $_SESSION["access_level"] < 10) {
258 return;
259 }
260
261 /* print "<html><head>
262 <title>Tiny Tiny RSS : User Details</title>
263 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
264 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
265 </head><body>"; */
266
267 $uid = sprintf("%d", $_GET["id"]);
268
269 print "<div id=\"infoBoxTitle\">User details</div>";
270
271 print "<div class='infoBoxContents'>";
272
273 $result = db_query($link, "SELECT login,
274 SUBSTRING(last_login,1,16) AS last_login,
275 access_level,
276 (SELECT COUNT(int_id) FROM ttrss_user_entries
277 WHERE owner_uid = id) AS stored_articles
278 FROM ttrss_users
279 WHERE id = '$uid'");
280
281 if (db_num_rows($result) == 0) {
282 print "<h1>User not found</h1>";
283 return;
284 }
285
286 # print "<h1>User Details</h1>";
287
288 $login = db_fetch_result($result, 0, "login");
289
290 # print "<h1>$login</h1>";
291
292 print "<table width='100%'>";
293
294 $last_login = date(get_pref($link, 'LONG_DATE_FORMAT'),
295 strtotime(db_fetch_result($result, 0, "last_login")));
296 $access_level = db_fetch_result($result, 0, "access_level");
297 $stored_articles = db_fetch_result($result, 0, "stored_articles");
298
299 # print "<tr><td>Username</td><td>$login</td></tr>";
300 # print "<tr><td>Access level</td><td>$access_level</td></tr>";
301 print "<tr><td>Last logged in</td><td>$last_login</td></tr>";
302 print "<tr><td>Stored articles</td><td>$stored_articles</td></tr>";
303
304 $result = db_query($link, "SELECT COUNT(id) as num_feeds FROM ttrss_feeds
305 WHERE owner_uid = '$uid'");
306
307 $num_feeds = db_fetch_result($result, 0, "num_feeds");
308
309 print "<tr><td>Subscribed feeds count</td><td>$num_feeds</td></tr>";
310
311 /* $result = db_query($link, "SELECT
312 SUM(LENGTH(content)+LENGTH(title)+LENGTH(link)+LENGTH(guid)) AS db_size
313 FROM ttrss_user_entries,ttrss_entries
314 WHERE owner_uid = '$uid' AND ref_id = id");
315
316 $db_size = round(db_fetch_result($result, 0, "db_size") / 1024);
317
318 print "<tr><td>Approx. used DB size</td><td>$db_size KBytes</td></tr>"; */
319
320 print "</table>";
321
322 print "<h1>Subscribed feeds</h1>";
323
324 $result = db_query($link, "SELECT id,title,site_url FROM ttrss_feeds
325 WHERE owner_uid = '$uid' ORDER BY title");
326
327 print "<ul class=\"userFeedList\">";
328
329 $row_class = "odd";
330
331 while ($line = db_fetch_assoc($result)) {
332
333 $icon_file = ICONS_URL."/".$line["id"].".ico";
334
335 if (file_exists($icon_file) && filesize($icon_file) > 0) {
336 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"$icon_file\">";
337 } else {
338 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
339 }
340
341 print "<li class=\"$row_class\">$feed_icon&nbsp;<a href=\"".$line["site_url"]."\">".$line["title"]."</a></li>";
342
343 $row_class = toggleEvenOdd($row_class);
344
345 }
346
347 if (db_num_rows($result) < $num_feeds) {
348 // FIXME - add link to show ALL subscribed feeds here somewhere
349 print "<li><img
350 class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">&nbsp;...</li>";
351 }
352
353 print "</ul>";
354
355 print "</div>";
356
357 print "<div align='center'>
358 <input type='submit' class='button'
359 onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
360
361 // print "</body></html>";
362
363 }
364
365 if ($op == "pref-feed-browser") {
366 module_pref_feed_browser($link);
367 }
368
369 if ($op == "rss") {
370 $feed = db_escape_string($_GET["id"]);
371 $user = db_escape_string($_GET["user"]);
372 $pass = db_escape_string($_GET["pass"]);
373 $is_cat = $_GET["is_cat"] != false;
374
375 $search = db_escape_string($_GET["q"]);
376 $match_on = db_escape_string($_GET["m"]);
377 $search_mode = db_escape_string($_GET["smode"]);
378
379 if (!$_SESSION["uid"] && $user && $pass) {
380 authenticate_user($link, $user, $pass);
381 }
382
383 if ($_SESSION["uid"] ||
384 http_authenticate_user($link)) {
385
386 generate_syndicated_feed($link, $feed, $is_cat,
387 $search, $search_mode, $match_on);
388 }
389 }
390
391 if ($op == "labelFromSearch") {
392 $search = db_escape_string($_GET["search"]);
393 $search_mode = db_escape_string($_GET["smode"]);
394 $match_on = db_escape_string($_GET["match"]);
395 $is_cat = db_escape_string($_GET["is_cat"]);
396 $title = db_escape_string($_GET["title"]);
397 $feed = sprintf("%d", $_GET["feed"]);
398
399 $label_qparts = array();
400
401 $search_expr = getSearchSql($search, $match_on);
402
403 if ($is_cat) {
404 if ($feed != 0) {
405 $search_expr .= " AND ttrss_feeds.cat_id = $feed ";
406 } else {
407 $search_expr .= " AND ttrss_feeds.cat_id IS NULL ";
408 }
409 } else {
410 if ($search_mode == "all_feeds") {
411 // NOOP
412 } else if ($search_mode == "this_cat") {
413
414 $tmp_result = db_query($link, "SELECT cat_id
415 FROM ttrss_feeds WHERE id = '$feed'");
416
417 $cat_id = db_fetch_result($tmp_result, 0, "cat_id");
418
419 if ($cat_id > 0) {
420 $search_expr .= " AND ttrss_feeds.cat_id = $cat_id ";
421 } else {
422 $search_expr .= " AND ttrss_feeds.cat_id IS NULL ";
423 }
424 } else {
425 $search_expr .= " AND ttrss_feeds.id = $feed ";
426 }
427
428 }
429
430 $search_expr = db_escape_string($search_expr);
431
432 print $search_expr;
433
434 if ($title) {
435 $result = db_query($link,
436 "INSERT INTO ttrss_labels (sql_exp,description,owner_uid)
437 VALUES ('$search_expr', '$title', '".$_SESSION["uid"]."')");
438 }
439 }
440
441 if ($op == "getUnread") {
442 $login = db_escape_string($_GET["login"]);
443
444 header("Content-Type: text/plain; charset=utf-8");
445
446 $result = db_query($link, "SELECT id FROM ttrss_users WHERE login = '$login'");
447
448 if (db_num_rows($result) == 1) {
449 $uid = db_fetch_result($result, 0, "id");
450 print getGlobalUnread($link, $uid);
451 } else {
452 print "-1;User not found";
453 }
454
455 $print_exec_time = false;
456 }
457
458 if ($op == "digestTest") {
459 header("Content-Type: text/plain");
460 print_r(prepare_headlines_digest($link, $_SESSION["uid"]));
461 $print_exec_time = false;
462
463 }
464
465 if ($op == "digestSend") {
466 header("Content-Type: text/plain");
467 send_headlines_digests($link);
468 $print_exec_time = false;
469
470 }
471
472 db_close($link);
473 ?>
474
475 <?php if ($print_exec_time) { ?>
476 <!-- <?php echo sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
477 <?php } ?>