]> git.wh0rd.org - tt-rss.git/blame - functions.php
properly unmark updated articles when reading
[tt-rss.git] / functions.php
CommitLineData
1d3a17c7 1<?php
f1a80dae 2
894ebcf5 3/* if ($_GET["debug"]) {
cce28758
AD
4 define('DEFAULT_ERROR_LEVEL', E_ALL);
5 } else {
6 define('DEFAULT_ERROR_LEVEL', E_ERROR | E_WARNING | E_PARSE);
894ebcf5 7 } */
cce28758 8
1025ad87
AD
9 require_once "accept-to-gettext.php";
10 require_once "gettext/gettext.inc";
11
40d13c28 12 require_once 'config.php';
cc17c205 13
aba609e0
AD
14 function startup_gettext() {
15
16 # Get locale from Accept-Language header
17 $lang = al2gt(array("en_US", "ru_RU"), "text/html");
18
19 if ($lang) {
20 _setlocale(LC_MESSAGES, $lang);
21 _bindtextdomain("messages", "locale");
22 _textdomain("messages");
23 _bind_textdomain_codeset("messages", "UTF-8");
24 }
25 }
26
cc17c205
AD
27 if (ENABLE_TRANSLATIONS == true) {
28 startup_gettext();
29 }
30
b619ff15 31 require_once 'db-prefs.php';
5bc0bd27 32 require_once 'compat.php';
af106b0e 33 require_once 'errors.php';
8911ac8b 34 require_once 'version.php';
40d13c28 35
49f9c923 36 define('MAGPIE_USER_AGENT_EXT', ' (Tiny Tiny RSS/' . VERSION . ')');
a3ee2a38
AD
37 define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');
38
49f9c923
AD
39 require_once "magpierss/rss_fetch.inc";
40 require_once 'magpierss/rss_utils.inc';
41
6f9e33e4
AD
42 function _debug($msg) {
43 $ts = strftime("%H:%M:%S", time());
44 print "[$ts] $msg\n";
45 }
46
ad507f85
AD
47 function purge_feed($link, $feed_id, $purge_interval, $debug = false) {
48
49 $rows = -1;
4c193675 50
fefa6ca3 51 if (DB_TYPE == "pgsql") {
44e241cb 52/* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
fefa6ca3 53 marked = false AND feed_id = '$feed_id' AND
35d8cf43 54 (SELECT date_entered FROM ttrss_entries WHERE
44e241cb
AD
55 id = ref_id) < NOW() - INTERVAL '$purge_interval days'"); */
56
6e7f8d26
AD
57 $pg_version = get_pgsql_version($link);
58
59 if (preg_match("/^7\./", $pg_version) || preg_match("/^8\.0/", $pg_version)) {
1e59ae35
AD
60
61 $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
62 ttrss_entries.id = ref_id AND
63 marked = false AND
64 feed_id = '$feed_id' AND
65 ttrss_entries.date_entered < NOW() - INTERVAL '$purge_interval days'");
66
67 } else {
68
69 $result = db_query($link, "DELETE FROM ttrss_user_entries
70 USING ttrss_entries
71 WHERE ttrss_entries.id = ref_id AND
72 marked = false AND
73 feed_id = '$feed_id' AND
fc774155 74 ttrss_entries.date_entered < NOW() - INTERVAL '$purge_interval days'");
1e59ae35 75 }
ad507f85
AD
76
77 $rows = pg_affected_rows($result);
78
fefa6ca3 79 } else {
1e59ae35 80
30f1746f 81/* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
fefa6ca3 82 marked = false AND feed_id = '$feed_id' AND
35d8cf43 83 (SELECT date_entered FROM ttrss_entries WHERE
30f1746f
AD
84 id = ref_id) < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)"); */
85
86 $result = db_query($link, "DELETE FROM ttrss_user_entries
87 USING ttrss_user_entries, ttrss_entries
88 WHERE ttrss_entries.id = ref_id AND
89 marked = false AND
90 feed_id = '$feed_id' AND
91 ttrss_entries.date_entered < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)");
92
ad507f85
AD
93 $rows = mysql_affected_rows($link);
94
95 }
96
97 if ($debug) {
6f9e33e4 98 _debug("Purged feed $feed_id ($purge_interval): deleted $rows articles");
fefa6ca3
AD
99 }
100 }
101
44e241cb
AD
102 function global_purge_old_posts($link, $do_output = false, $limit = false) {
103
894ebcf5 104 $random_qpart = sql_random_function();
fefa6ca3 105
44e241cb
AD
106 if ($limit) {
107 $limit_qpart = "LIMIT $limit";
108 } else {
109 $limit_qpart = "";
110 }
111
fefa6ca3 112 $result = db_query($link,
44e241cb
AD
113 "SELECT id,purge_interval,owner_uid FROM ttrss_feeds
114 ORDER BY $random_qpart $limit_qpart");
fefa6ca3
AD
115
116 while ($line = db_fetch_assoc($result)) {
117
118 $feed_id = $line["id"];
119 $purge_interval = $line["purge_interval"];
120 $owner_uid = $line["owner_uid"];
121
122 if ($purge_interval == 0) {
123
124 $tmp_result = db_query($link,
125 "SELECT value FROM ttrss_user_prefs WHERE
126 pref_name = 'PURGE_OLD_DAYS' AND owner_uid = '$owner_uid'");
127
128 if (db_num_rows($tmp_result) != 0) {
129 $purge_interval = db_fetch_result($tmp_result, 0, "value");
130 }
131 }
132
133 if ($do_output) {
ad507f85 134// print "Feed $feed_id: purge interval = $purge_interval\n";
fefa6ca3
AD
135 }
136
137 if ($purge_interval > 0) {
ad507f85 138 purge_feed($link, $feed_id, $purge_interval, $do_output);
fefa6ca3
AD
139 }
140 }
141
71604ca4
AD
142 // purge orphaned posts in main content table
143 db_query($link, "DELETE FROM ttrss_entries WHERE
144 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
145
fefa6ca3
AD
146 }
147
b6eefba5 148 function purge_old_posts($link) {
5d73494a 149
f1a80dae
AD
150 $user_id = $_SESSION["uid"];
151
152 $result = db_query($link, "SELECT id,purge_interval FROM ttrss_feeds
153 WHERE owner_uid = '$user_id'");
5d73494a
AD
154
155 while ($line = db_fetch_assoc($result)) {
156
157 $feed_id = $line["id"];
158 $purge_interval = $line["purge_interval"];
159
b619ff15 160 if ($purge_interval == 0) $purge_interval = get_pref($link, 'PURGE_OLD_DAYS');
5d73494a 161
140aae81 162 if ($purge_interval > 0) {
fefa6ca3 163 purge_feed($link, $feed_id, $purge_interval);
5d73494a
AD
164 }
165 }
71604ca4
AD
166
167 // purge orphaned posts in main content table
168 db_query($link, "DELETE FROM ttrss_entries WHERE
169 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
c3a8d71a
AD
170 }
171
1f2b01ed 172 function update_all_feeds($link, $fetch, $user_id = false, $force_daemon = false) {
40d13c28 173
4769ddaf 174 if (WEB_DEMO_MODE) return;
b0b4abcf 175
a2770077
AD
176 if (!$user_id) {
177 $user_id = $_SESSION["uid"];
178 purge_old_posts($link);
179 }
180
25af8dad 181// db_query($link, "BEGIN");
b82af8c3 182
cbd8650d
AD
183 if (MAX_UPDATE_TIME > 0) {
184 if (DB_TYPE == "mysql") {
185 $q_order = "RAND()";
186 } else {
187 $q_order = "RANDOM()";
188 }
189 } else {
190 $q_order = "last_updated DESC";
191 }
192
d148926e 193 $result = db_query($link, "SELECT feed_url,id,
798f722b 194 SUBSTRING(last_updated,1,19) AS last_updated,
5c563acd 195 update_interval FROM ttrss_feeds WHERE owner_uid = '$user_id'
cbd8650d
AD
196 ORDER BY $q_order");
197
198 $upd_start = time();
40d13c28 199
b6eefba5 200 while ($line = db_fetch_assoc($result)) {
d148926e
AD
201 $upd_intl = $line["update_interval"];
202
b619ff15 203 if (!$upd_intl || $upd_intl == 0) {
e289ca71 204 $upd_intl = get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $user_id, false);
b619ff15 205 }
d148926e 206
c1e202b7
AD
207 if ($upd_intl < 0) {
208 // Updates for this feed are disabled
209 continue;
210 }
211
93d40f50
AD
212 if ($fetch || (!$line["last_updated"] ||
213 time() - strtotime($line["last_updated"]) > ($upd_intl * 60))) {
c5142cca 214
cbd8650d
AD
215// print "<!-- feed: ".$line["feed_url"]." -->";
216
1f2b01ed 217 update_rss_feed($link, $line["feed_url"], $line["id"], $force_daemon);
cbd8650d
AD
218
219 $upd_elapsed = time() - $upd_start;
220
221 if (MAX_UPDATE_TIME > 0 && $upd_elapsed > MAX_UPDATE_TIME) {
222 return;
223 }
d148926e 224 }
40d13c28
AD
225 }
226
25af8dad 227// db_query($link, "COMMIT");
b82af8c3 228
40d13c28
AD
229 }
230
4065b60b
AD
231 function fetch_file_contents($url) {
232 if (USE_CURL_FOR_ICONS) {
233 $tmpfile = tempnam(TMP_DIRECTORY, "ttrss-tmp");
234
235 $ch = curl_init($url);
236 $fp = fopen($tmpfile, "w");
237
238 if ($fp) {
239 curl_setopt($ch, CURLOPT_FILE, $fp);
dd966fed
AD
240 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);
241 curl_setopt($ch, CURLOPT_TIMEOUT, 45);
4065b60b
AD
242 curl_exec($ch);
243 curl_close($ch);
244 fclose($fp);
245 }
246
247 $contents = file_get_contents($tmpfile);
248 unlink($tmpfile);
249
250 return $contents;
251
252 } else {
253 return file_get_contents($url);
254 }
255
256 }
78800912 257
4065b60b
AD
258 // adapted from wordpress favicon plugin by Jeff Minard (http://thecodepro.com/)
259 // http://dev.wp-plugins.org/file/favatars/trunk/favatars.php
78800912 260
4065b60b 261 function get_favicon_url($url) {
99331724 262
4065b60b 263 if ($html = @fetch_file_contents($url)) {
78800912 264
4065b60b
AD
265 if ( preg_match('/<link[^>]+rel="(?:shortcut )?icon"[^>]+?href="([^"]+?)"/si', $html, $matches)) {
266 // Attempt to grab a favicon link from their webpage url
267 $linkUrl = html_entity_decode($matches[1]);
c798704b 268
4065b60b
AD
269 if (substr($linkUrl, 0, 1) == '/') {
270 $urlParts = parse_url($url);
271 $faviconURL = $urlParts['scheme'].'://'.$urlParts['host'].$linkUrl;
272 } else if (substr($linkUrl, 0, 7) == 'http://') {
273 $faviconURL = $linkUrl;
274 } else if (substr($url, -1, 1) == '/') {
275 $faviconURL = $url.$linkUrl;
276 } else {
277 $faviconURL = $url.'/'.$linkUrl;
e695fdc8 278 }
717f5e64 279
c798704b 280 } else {
4065b60b
AD
281 // If unsuccessful, attempt to "guess" the favicon location
282 $urlParts = parse_url($url);
283 $faviconURL = $urlParts['scheme'].'://'.$urlParts['host'].'/favicon.ico';
284 }
285 }
c798704b 286
4065b60b
AD
287 // Run a test to see if what we have attempted to get actually exists.
288 if(USE_CURL_FOR_ICONS || url_validate($faviconURL)) {
289 return $faviconURL;
290 } else {
291 return false;
292 }
293 }
294
295 function url_validate($link) {
296
297 $url_parts = @parse_url($link);
298
299 if ( empty( $url_parts["host"] ) )
300 return false;
301
302 if ( !empty( $url_parts["path"] ) ) {
303 $documentpath = $url_parts["path"];
304 } else {
305 $documentpath = "/";
306 }
307
308 if ( !empty( $url_parts["query"] ) )
309 $documentpath .= "?" . $url_parts["query"];
310
311 $host = $url_parts["host"];
312 $port = $url_parts["port"];
313
314 if ( empty($port) )
315 $port = "80";
316
317 $socket = @fsockopen( $host, $port, $errno, $errstr, 30 );
318
319 if ( !$socket )
320 return false;
c798704b 321
4065b60b
AD
322 fwrite ($socket, "HEAD ".$documentpath." HTTP/1.0\r\nHost: $host\r\n\r\n");
323
324 $http_response = fgets( $socket, 22 );
325
326 $responses = "/(200 OK)|(30[0-9] Moved)/";
327 if ( preg_match($responses, $http_response) ) {
328 fclose($socket);
329 return true;
330 } else {
331 return false;
332 }
333
334 }
335
336 function check_feed_favicon($site_url, $feed, $link) {
337 $favicon_url = get_favicon_url($site_url);
338
339# print "FAVICON [$site_url]: $favicon_url\n";
340
341 error_reporting(0);
342
343 $icon_file = ICONS_DIR . "/$feed.ico";
344
345 if ($favicon_url && !file_exists($icon_file)) {
346 $contents = fetch_file_contents($favicon_url);
347
348 $fp = fopen($icon_file, "w");
78800912 349
4065b60b
AD
350 if ($fp) {
351 fwrite($fp, $contents);
352 fclose($fp);
353 chmod($icon_file, 0644);
354 }
78800912 355 }
4065b60b
AD
356
357 error_reporting(DEFAULT_ERROR_LEVEL);
358
78800912
AD
359 }
360
ddb68b81 361 function update_rss_feed($link, $feed_url, $feed, $ignore_daemon = false) {
40d13c28 362
ddb68b81 363 if (DAEMON_REFRESH_ONLY && !$_GET["daemon"] && !$ignore_daemon) {
21cfcdf2
AD
364 return;
365 }
366
219bd8fc 367 if (defined('DAEMON_EXTENDED_DEBUG')) {
34e420fb 368 _debug("update_rss_feed: start");
219bd8fc
AD
369 }
370
47c6c988 371 $result = db_query($link, "SELECT update_interval,auth_login,auth_pass
a88c1f36
AD
372 FROM ttrss_feeds WHERE id = '$feed'");
373
ff25e639
AD
374 $auth_login = db_unescape_string(db_fetch_result($result, 0, "auth_login"));
375 $auth_pass = db_unescape_string(db_fetch_result($result, 0, "auth_pass"));
47c6c988 376
a88c1f36
AD
377 $update_interval = db_fetch_result($result, 0, "update_interval");
378
379 if ($update_interval < 0) { return; }
380
ab3d0b99
AD
381 $feed = db_escape_string($feed);
382
47c6c988
AD
383 $fetch_url = $feed_url;
384
385 if ($auth_login && $auth_pass) {
386 $url_parts = array();
387 preg_match("/(^[^:]*):\/\/(.*)/", $fetch_url, $url_parts);
388
389 if ($url_parts[1] && $url_parts[2]) {
390 $fetch_url = $url_parts[1] . "://$auth_login:$auth_pass@" . $url_parts[2];
391 }
392
393 }
ab3d0b99 394
219bd8fc 395 if (defined('DAEMON_EXTENDED_DEBUG')) {
34e420fb 396 _debug("update_rss_feed: fetching...");
219bd8fc
AD
397 }
398
399 if (!defined('DAEMON_EXTENDED_DEBUG')) {
400 error_reporting(0);
401 }
402
49f9c923 403 $rss = fetch_rss($fetch_url);
219bd8fc
AD
404
405 if (defined('DAEMON_EXTENDED_DEBUG')) {
34e420fb 406 _debug("update_rss_feed: fetch done, parsing...");
219bd8fc
AD
407 } else {
408 error_reporting (DEFAULT_ERROR_LEVEL);
409 }
410
b6eefba5 411 $feed = db_escape_string($feed);
dcee8f61 412
49f9c923 413 if ($rss) {
50b62214
AD
414
415 if (defined('DAEMON_EXTENDED_DEBUG')) {
416 _debug("update_rss_feed: processing feed data...");
417 }
418
44e241cb 419// db_query($link, "BEGIN");
dd8c76a9 420
a88c1f36 421 $result = db_query($link, "SELECT title,icon_url,site_url,owner_uid
f324892e 422 FROM ttrss_feeds WHERE id = '$feed'");
331900c6 423
b6eefba5
AD
424 $registered_title = db_fetch_result($result, 0, "title");
425 $orig_icon_url = db_fetch_result($result, 0, "icon_url");
f324892e 426 $orig_site_url = db_fetch_result($result, 0, "site_url");
331900c6 427
7fed1940
AD
428 $owner_uid = db_fetch_result($result, 0, "owner_uid");
429
8d0ec6fd 430 if (get_pref($link, 'ENABLE_FEED_ICONS', $owner_uid, false)) {
50b62214
AD
431 if (defined('DAEMON_EXTENDED_DEBUG')) {
432 _debug("update_rss_feed: checking favicon...");
433 }
4065b60b 434 check_feed_favicon($rss->channel["link"], $feed, $link);
a2770077
AD
435 }
436
746b249f 437 if (!$registered_title || $registered_title == "[Unknown]") {
7c5a308d 438
49f9c923 439 $feed_title = db_escape_string($rss->channel["title"]);
7c5a308d 440
f324892e
AD
441 db_query($link, "UPDATE ttrss_feeds SET
442 title = '$feed_title' WHERE id = '$feed'");
443 }
444
49f9c923
AD
445 $site_url = $rss->channel["link"];
446 // weird, weird Magpie
447 if (!$site_url) $site_url = db_escape_string($rss->channel["link_"]);
147f7691
AD
448
449 if ($site_url && $orig_site_url != db_escape_string($site_url)) {
f324892e
AD
450 db_query($link, "UPDATE ttrss_feeds SET
451 site_url = '$site_url' WHERE id = '$feed'");
331900c6 452 }
40d13c28 453
b7f4bda2
AD
454// print "I: " . $rss->channel["image"]["url"];
455
49f9c923 456 $icon_url = $rss->image["url"];
b7f4bda2 457
147f7691 458 if ($icon_url && !$orig_icon_url != db_escape_string($icon_url)) {
b6eefba5
AD
459 $icon_url = db_escape_string($icon_url);
460 db_query($link, "UPDATE ttrss_feeds SET icon_url = '$icon_url' WHERE id = '$feed'");
b7f4bda2
AD
461 }
462
50b62214
AD
463 if (defined('DAEMON_EXTENDED_DEBUG')) {
464 _debug("update_rss_feed: loading filters...");
465 }
e6155a06
AD
466
467 $filters = array();
468
4b3dff6e 469 $result = db_query($link, "SELECT reg_exp,
db42b934 470 ttrss_filter_types.name AS name,
073ca0e6 471 ttrss_filter_actions.name AS action,
c2d9322b 472 inverse,
073ca0e6 473 action_param
db42b934 474 FROM ttrss_filters,ttrss_filter_types,ttrss_filter_actions WHERE
e8b79d16 475 enabled = true AND
db42b934
AD
476 owner_uid = $owner_uid AND
477 ttrss_filter_types.id = filter_type AND
478 ttrss_filter_actions.id = action_id AND
f8382011 479 (feed_id IS NULL OR feed_id = '$feed') ORDER BY reg_exp");
e6155a06 480
b6eefba5 481 while ($line = db_fetch_assoc($result)) {
e6155a06 482 if (!$filters[$line["name"]]) $filters[$line["name"]] = array();
19c9cb11
AD
483
484 $filter["reg_exp"] = $line["reg_exp"];
485 $filter["action"] = $line["action"];
073ca0e6 486 $filter["action_param"] = $line["action_param"];
c2d9322b 487 $filter["inverse"] = sql_bool_to_bool($line["inverse"]);
073ca0e6 488
19c9cb11 489 array_push($filters[$line["name"]], $filter);
e6155a06
AD
490 }
491
49f9c923 492 $iterator = $rss->items;
7c5a308d 493
49f9c923
AD
494 if (!$iterator || !is_array($iterator)) $iterator = $rss->entries;
495 if (!$iterator || !is_array($iterator)) $iterator = $rss;
c22789da
AD
496
497 if (!is_array($iterator)) {
39541e74 498 /* db_query($link, "UPDATE ttrss_feeds
75bd0669 499 SET last_error = 'Parse error: can\'t find any articles.'
77f0a2a7
AD
500 WHERE id = '$feed'"); */
501
502 // clear any errors and mark feed as updated if fetched okay
503 // even if it's blank
504
505 db_query($link, "UPDATE ttrss_feeds
506 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
507
508 return; // no articles
c22789da 509 }
ddb68b81 510
50b62214
AD
511 if (defined('DAEMON_EXTENDED_DEBUG')) {
512 _debug("update_rss_feed: processing articles...");
513 }
514
ddb68b81 515 foreach ($iterator as $item) {
7c5a308d 516
be832a1a 517 $entry_guid = $item["id"];
34e420fb 518
be832a1a
AD
519 if (!$entry_guid) $entry_guid = $item["guid"];
520 if (!$entry_guid) $entry_guid = $item["link"];
521 if (!$entry_guid) $entry_guid = make_guid_from_title($item["title"]);
522
34e420fb
AD
523 if (defined('DAEMON_EXTENDED_DEBUG')) {
524 _debug("update_rss_feed: guid $entry_guid");
525 }
526
be832a1a
AD
527 if (!$entry_guid) continue;
528
529 $entry_timestamp = "";
530
531 $rss_2_date = $item['pubdate'];
532 $rss_1_date = $item['dc']['date'];
533 $atom_date = $item['issued'];
534 if (!$atom_date) $atom_date = $item['updated'];
535
536 if ($atom_date != "") $entry_timestamp = parse_w3cdtf($atom_date);
537 if ($rss_1_date != "") $entry_timestamp = parse_w3cdtf($rss_1_date);
538 if ($rss_2_date != "") $entry_timestamp = strtotime($rss_2_date);
b82af8c3 539
2e930846 540 if ($entry_timestamp == "" || $entry_timestamp == -1 || !$entry_timestamp) {
be832a1a
AD
541 $entry_timestamp = time();
542 $no_orig_date = 'true';
543 } else {
544 $no_orig_date = 'false';
545 }
546
547 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
548
549 $entry_title = trim(strip_tags($item["title"]));
550
551 // strange Magpie workaround
552 $entry_link = $item["link_"];
553 if (!$entry_link) $entry_link = $item["link"];
554
555 if (!$entry_title) continue;
1f64b1be 556# if (!$entry_link) continue;
7d3ab0dd 557
be832a1a 558 $entry_link = strip_tags($entry_link);
7d3ab0dd 559
be832a1a 560 $entry_content = $item["content:escaped"];
bbb416e5 561
be832a1a
AD
562 if (!$entry_content) $entry_content = $item["content:encoded"];
563 if (!$entry_content) $entry_content = $item["content"];
564 if (!$entry_content) $entry_content = $item["atom_content"];
565 if (!$entry_content) $entry_content = $item["summary"];
566 if (!$entry_content) $entry_content = $item["description"];
bbb416e5 567
be832a1a 568// if (!$entry_content) continue;
bbb416e5 569
be832a1a
AD
570 // WTF
571 if (is_array($entry_content)) {
572 $entry_content = $entry_content["encoded"];
573 if (!$entry_content) $entry_content = $entry_content["escaped"];
574 }
575
576// print_r($item);
577// print_r(htmlspecialchars($entry_content));
578// print "<br>";
579
580 $entry_content_unescaped = $entry_content;
581 $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
582
583 $entry_comments = strip_tags($item["comments"]);
584
585 $entry_author = db_escape_string(strip_tags($item['dc']['creator']));
586
83f114c8 587 if ($item['author']) {
83f114c8 588
4d6e9157
AD
589 if (is_array($item['author'])) {
590
591 if (!$entry_author) {
592 $entry_author = db_escape_string(strip_tags($item['author']['name']));
593 }
594
595 if (!$entry_author) {
596 $entry_author = db_escape_string(strip_tags($item['author']['email']));
597 }
83f114c8
AD
598 }
599
600 if (!$entry_author) {
601 $entry_author = db_escape_string(strip_tags($item['author']));
602 }
be832a1a
AD
603 }
604
83f114c8
AD
605 if (preg_match('/^[\t\n\r ]*$/', $entry_author)) $entry_author = '';
606
be832a1a
AD
607 $entry_guid = db_escape_string(strip_tags($entry_guid));
608
609 $result = db_query($link, "SELECT id FROM ttrss_entries
610 WHERE guid = '$entry_guid'");
611
612 $entry_content = db_escape_string($entry_content);
613 $entry_title = db_escape_string($entry_title);
614 $entry_link = db_escape_string($entry_link);
615 $entry_comments = db_escape_string($entry_comments);
616
617 $num_comments = db_escape_string($item["slash"]["comments"]);
618
619 if (!$num_comments) $num_comments = 0;
620
ef063748 621/* $dc_subject = $item['dc']['subject'];
be832a1a
AD
622
623 $subject_tags = false;
624
625 if (is_array($dc_subject)) {
626 $subject_tags = $dc_subject;
627 } else if ($dc_subject) {
628 $subject_tags = array($dc_subject);
ef063748 629 } */
8add756a 630
d48d160c 631 # sanitize content
183ad07b
AD
632
633 $entry_content = sanitize_rss($entry_content);
d48d160c 634
34e420fb
AD
635 if (defined('DAEMON_EXTENDED_DEBUG')) {
636 _debug("update_rss_feed: done collecting data [TITLE:$entry_title]");
637 }
638
44e241cb
AD
639 db_query($link, "BEGIN");
640
4c193675
AD
641 if (db_num_rows($result) == 0) {
642
34e420fb
AD
643 if (defined('DAEMON_EXTENDED_DEBUG')) {
644 _debug("update_rss_feed: base guid not found");
645 }
646
4c193675
AD
647 // base post entry does not exist, create it
648
4c193675
AD
649 $result = db_query($link,
650 "INSERT INTO ttrss_entries
651 (title,
652 guid,
653 link,
654 updated,
655 content,
656 content_hash,
657 no_orig_date,
658 date_entered,
11b0dce2 659 comments,
b6104dee
AD
660 num_comments,
661 author)
4c193675
AD
662 VALUES
663 ('$entry_title',
664 '$entry_guid',
665 '$entry_link',
666 '$entry_timestamp_fmt',
667 '$entry_content',
668 '$content_hash',
669 $no_orig_date,
670 NOW(),
11b0dce2 671 '$entry_comments',
b6104dee
AD
672 '$num_comments',
673 '$entry_author')");
8926aab8
AD
674 } else {
675 // we keep encountering the entry in feeds, so we need to
676 // update date_entered column so that we don't get horrible
677 // dupes when the entry gets purged and reinserted again e.g.
678 // in the case of SLOW SLOW OMG SLOW updating feeds
679
680 $base_entry_id = db_fetch_result($result, 0, "id");
681
682 db_query($link, "UPDATE ttrss_entries SET date_entered = NOW()
683 WHERE id = '$base_entry_id'");
4c193675
AD
684 }
685
686 // now it should exist, if not - bad luck then
687
6385315d
AD
688 $result = db_query($link, "SELECT
689 id,content_hash,no_orig_date,title,
8926aab8 690 substring(date_entered,1,19) as date_entered,
11b0dce2
AD
691 substring(updated,1,19) as updated,
692 num_comments
6385315d
AD
693 FROM
694 ttrss_entries
695 WHERE guid = '$entry_guid'");
4c193675
AD
696
697 if (db_num_rows($result) == 1) {
698
34e420fb 699 if (defined('DAEMON_EXTENDED_DEBUG')) {
7ca91eb3 700 _debug("update_rss_feed: base guid found, checking for user record");
34e420fb
AD
701 }
702
11b0dce2
AD
703 // this will be used below in update handler
704 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
705 $orig_title = db_fetch_result($result, 0, "title");
706 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
8926aab8
AD
707 $orig_date_entered = strtotime(db_fetch_result($result,
708 0, "date_entered"));
6385315d 709
11b0dce2 710 $ref_id = db_fetch_result($result, 0, "id");
4c193675 711
11b0dce2 712 // check for user post link to main table
4c193675 713
11b0dce2 714 // do we allow duplicate posts with same GUID in different feeds?
8d0ec6fd 715 if (get_pref($link, "ALLOW_DUPLICATE_POSTS", $owner_uid, false)) {
11b0dce2
AD
716 $dupcheck_qpart = "AND feed_id = '$feed'";
717 } else {
718 $dupcheck_qpart = "";
719 }
71604ca4 720
11b0dce2 721// error_reporting(0);
19c9cb11 722
f8382011
AD
723 $article_filters = get_article_filters($filters, $entry_title,
724 $entry_content, $entry_link);
19c9cb11 725
7ca91eb3
AD
726 if (defined('DAEMON_EXTENDED_DEBUG')) {
727 _debug("update_rss_feed: article filters: ");
728 if (count($article_filters) != 0) {
729 print_r($article_filters);
730 }
731 }
732
f8382011 733 if (find_article_filter($article_filters, "filter")) {
11b0dce2
AD
734 continue;
735 }
19c9cb11 736
11b0dce2 737// error_reporting (DEFAULT_ERROR_LEVEL);
3a933f22 738
11b0dce2
AD
739 $result = db_query($link,
740 "SELECT ref_id FROM ttrss_user_entries WHERE
741 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
742 $dupcheck_qpart");
7ca91eb3 743
11b0dce2
AD
744 // okay it doesn't exist - create user entry
745 if (db_num_rows($result) == 0) {
746
7ca91eb3
AD
747 if (defined('DAEMON_EXTENDED_DEBUG')) {
748 _debug("update_rss_feed: user record not found, creating...");
749 }
750
f8382011 751 if (!find_article_filter($article_filters, 'catchup')) {
11b0dce2
AD
752 $unread = 'true';
753 $last_read_qpart = 'NULL';
754 } else {
755 $unread = 'false';
756 $last_read_qpart = 'NOW()';
757 }
dd7d3187 758
f8382011 759 if (find_article_filter($article_filters, 'mark')) {
dd7d3187
AD
760 $marked = 'true';
761 } else {
762 $marked = 'false';
763 }
19c9cb11 764
11b0dce2
AD
765 $result = db_query($link,
766 "INSERT INTO ttrss_user_entries
dd7d3187 767 (ref_id, owner_uid, feed_id, unread, last_read, marked)
11b0dce2 768 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
dd7d3187 769 $last_read_qpart, $marked)");
11b0dce2
AD
770 }
771
6385315d
AD
772 $post_needs_update = false;
773
8d0ec6fd 774 if (get_pref($link, "UPDATE_POST_ON_CHECKSUM_CHANGE", $owner_uid, false) &&
6385315d
AD
775 ($content_hash != $orig_content_hash)) {
776 $post_needs_update = true;
777 }
778
779 if ($orig_title != $entry_title) {
780 $post_needs_update = true;
781 }
782
11b0dce2
AD
783 if ($orig_num_comments != $num_comments) {
784 $post_needs_update = true;
785 }
786
6385315d
AD
787// this doesn't seem to be very reliable
788//
789// if ($orig_timestamp != $entry_timestamp && !$orig_no_orig_date) {
790// $post_needs_update = true;
791// }
792
793 // if post needs update, update it and mark all user entries
1c73bc0c 794 // linking to this post as updated
6385315d
AD
795 if ($post_needs_update) {
796
7ca91eb3
AD
797 if (defined('DAEMON_EXTENDED_DEBUG')) {
798 _debug("update_rss_feed: post $entry_guid needs update...");
799 }
800
6385315d
AD
801// print "<!-- post $orig_title needs update : $post_needs_update -->";
802
6385315d 803 db_query($link, "UPDATE ttrss_entries
11b0dce2
AD
804 SET title = '$entry_title', content = '$entry_content',
805 num_comments = '$num_comments'
6385315d
AD
806 WHERE id = '$ref_id'");
807
8d0ec6fd 808 if (get_pref($link, "MARK_UNREAD_ON_UPDATE", $owner_uid, false)) {
4919fb42
AD
809 db_query($link, "UPDATE ttrss_user_entries
810 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
811 } else {
812 db_query($link, "UPDATE ttrss_user_entries
813 SET last_read = null WHERE ref_id = '$ref_id' AND unread = false");
814 }
6385315d
AD
815
816 }
4c193675
AD
817 }
818
44e241cb
AD
819 db_query($link, "COMMIT");
820
34e420fb
AD
821 if (defined('DAEMON_EXTENDED_DEBUG')) {
822 _debug("update_rss_feed: looking for tags...");
823 }
824
eb36b4eb 825 /* taaaags */
40e1a95b 826 // <a href="..." rel="tag">Xorg</a>, //
eb36b4eb 827
05732aa0 828 $entry_tags = null;
eb36b4eb 829
40e1a95b 830 preg_match_all("/<a.*?rel=['\"]tag['\"].*?>([^<]+)<\/a>/i",
ee2c3050
AD
831 $entry_content_unescaped, $entry_tags);
832
833// print "<br>$entry_title : $entry_content_unescaped<br>";
834// print_r($entry_tags);
372ced8b 835// print "<br>";
eb36b4eb
AD
836
837 $entry_tags = $entry_tags[1];
838
073ca0e6
AD
839 # check for manual tags
840
f8382011
AD
841 $tag_filter = find_article_filter($article_filters, "tag");
842
843 if ($tag_filter) {
073ca0e6 844
f8382011 845 $manual_tags = trim_array(split(",", $tag_filter[1]));
073ca0e6 846
f8382011 847 foreach ($manual_tags as $tag) {
be832a1a
AD
848 if (tag_is_valid($tag)) {
849 array_push($entry_tags, $tag);
850 }
851 }
852 }
853
ef063748 854/* if ($subject_tags) {
be832a1a
AD
855 foreach ($subject_tags as $tag) {
856 if (tag_is_valid($tag)) {
073ca0e6
AD
857 array_push($entry_tags, $tag);
858 }
859 }
ef063748 860 } */
073ca0e6 861
eb36b4eb
AD
862 if (count($entry_tags) > 0) {
863
44e241cb
AD
864 db_query($link, "BEGIN");
865
05732aa0
AD
866 $result = db_query($link, "SELECT id,int_id
867 FROM ttrss_entries,ttrss_user_entries
25da6909 868 WHERE guid = '$entry_guid'
05732aa0 869 AND feed_id = '$feed' AND ref_id = id
7fed1940 870 AND owner_uid = '$owner_uid'");
eb36b4eb 871
fe99ab12 872 if (db_num_rows($result) == 1) {
eb36b4eb 873
fe99ab12
AD
874 $entry_id = db_fetch_result($result, 0, "id");
875 $entry_int_id = db_fetch_result($result, 0, "int_id");
876
877 foreach ($entry_tags as $tag) {
ef063748 878 $tag = db_escape_string(mb_strtolower(strip_tags($tag)));
31483fc1
AD
879
880 $tag = str_replace("+", " ", $tag);
fe99ab12 881 $tag = str_replace("technorati tag: ", "", $tag);
ef063748
AD
882
883 if (!tag_is_valid($tag)) continue;
884
fe99ab12
AD
885 $result = db_query($link, "SELECT id FROM ttrss_tags
886 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
887 owner_uid = '$owner_uid' LIMIT 1");
888
889 // print db_fetch_result($result, 0, "id");
890
891 if ($result && db_num_rows($result) == 0) {
892
893 // print "tagging $entry_id as $tag<br>";
894
895 db_query($link, "INSERT INTO ttrss_tags
896 (owner_uid,tag_name,post_int_id)
897 VALUES ('$owner_uid','$tag', '$entry_int_id')");
898 }
899 }
eb36b4eb 900 }
44e241cb 901 db_query($link, "COMMIT");
05732aa0 902 }
4c193675 903 }
40d13c28 904
ab3d0b99
AD
905 db_query($link, "UPDATE ttrss_feeds
906 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
eb36b4eb 907
44e241cb 908// db_query($link, "COMMIT");
dd8c76a9 909
ab3d0b99
AD
910 } else {
911 $error_msg = db_escape_string(magpie_error());
912 db_query($link,
aa5f9f5f
AD
913 "UPDATE ttrss_feeds SET last_error = '$error_msg',
914 last_updated = NOW() WHERE id = '$feed'");
40d13c28
AD
915 }
916
219bd8fc 917 if (defined('DAEMON_EXTENDED_DEBUG')) {
34e420fb 918 _debug("update_rss_feed: done");
219bd8fc
AD
919 }
920
40d13c28
AD
921 }
922
f175937c 923 function print_select($id, $default, $values, $attributes = "") {
79f3553b 924 print "<select name=\"$id\" id=\"$id\" $attributes>";
a0d53889
AD
925 foreach ($values as $v) {
926 if ($v == $default)
927 $sel = " selected";
928 else
929 $sel = "";
930
931 print "<option$sel>$v</option>";
932 }
933 print "</select>";
934 }
40d13c28 935
79f3553b
AD
936 function print_select_hash($id, $default, $values, $attributes = "") {
937 print "<select name=\"$id\" id='$id' $attributes>";
673d54ca
AD
938 foreach (array_keys($values) as $v) {
939 if ($v == $default)
940 $sel = "selected";
941 else
942 $sel = "";
943
944 print "<option $sel value=\"$v\">".$values[$v]."</option>";
945 }
946
947 print "</select>";
948 }
949
f8382011 950 function get_article_filters($filters, $title, $content, $link) {
240054f1 951 $matches = array();
c2d9322b 952
240054f1
AD
953 if ($filters["title"]) {
954 foreach ($filters["title"] as $filter) {
c2d9322b
AD
955 $reg_exp = $filter["reg_exp"];
956 $inverse = $filter["inverse"];
957 if ((!$inverse && preg_match("/$reg_exp/i", $title)) ||
958 ($inverse && !preg_match("/$reg_exp/i", $title))) {
959
240054f1
AD
960 array_push($matches, array($filter["action"], $filter["action_param"]));
961 }
962 }
963 }
964
965 if ($filters["content"]) {
966 foreach ($filters["content"] as $filter) {
c2d9322b
AD
967 $reg_exp = $filter["reg_exp"];
968 $inverse = $filter["inverse"];
969
970 if ((!$inverse && preg_match("/$reg_exp/i", $content)) ||
971 ($inverse && !preg_match("/$reg_exp/i", $content))) {
972
240054f1
AD
973 array_push($matches, array($filter["action"], $filter["action_param"]));
974 }
975 }
976 }
977
978 if ($filters["both"]) {
979 foreach ($filters["both"] as $filter) {
980 $reg_exp = $filter["reg_exp"];
c2d9322b
AD
981 $inverse = $filter["inverse"];
982
983 if ($inverse) {
984 if (!preg_match("/$reg_exp/i", $title) || !preg_match("/$reg_exp/i", $content)) {
985 array_push($matches, array($filter["action"], $filter["action_param"]));
986 }
987 } else {
988 if (preg_match("/$reg_exp/i", $title) || preg_match("/$reg_exp/i", $content)) {
989 array_push($matches, array($filter["action"], $filter["action_param"]));
990 }
240054f1
AD
991 }
992 }
993 }
994
995 if ($filters["link"]) {
996 $reg_exp = $filter["reg_exp"];
997 foreach ($filters["link"] as $filter) {
998 $reg_exp = $filter["reg_exp"];
c2d9322b
AD
999 $inverse = $filter["inverse"];
1000
1001 if ((!$inverse && preg_match("/$reg_exp/i", $link)) ||
1002 ($inverse && !preg_match("/$reg_exp/i", $link))) {
1003
240054f1
AD
1004 array_push($matches, array($filter["action"], $filter["action_param"]));
1005 }
1006 }
1007 }
1008
1009 return $matches;
1010 }
1011
f8382011
AD
1012 function find_article_filter($filters, $filter_name) {
1013 foreach ($filters as $f) {
1014 if ($f[0] == $filter_name) {
1015 return $f;
1016 };
1017 }
1018 return false;
1019 }
1020
9323147e 1021 function printFeedEntry($feed_id, $class, $feed_title, $unread, $icon_file, $link,
fb1fb4ab 1022 $rtl_content = false, $last_updated = false, $last_error = false) {
254e0e4b
AD
1023
1024 if (file_exists($icon_file) && filesize($icon_file) > 0) {
023fe037 1025 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"$icon_file\">";
254e0e4b 1026 } else {
023fe037 1027 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"images/blank_icon.gif\">";
254e0e4b
AD
1028 }
1029
9323147e
AD
1030 if ($rtl_content) {
1031 $rtl_tag = "dir=\"rtl\"";
1032 } else {
1033 $rtl_tag = "dir=\"ltr\"";
1034 }
1035
78d5212c
AD
1036 $error_notify_msg = "";
1037
fb1fb4ab
AD
1038 if ($last_error) {
1039 $link_title = "Error: $last_error ($last_updated)";
78d5212c 1040 $error_notify_msg = "(Error)";
ad780e9c 1041 } else if ($last_updated) {
fb1fb4ab
AD
1042 $link_title = "Updated: $last_updated";
1043 }
1044
7210613a 1045 $feed = "<a title=\"$link_title\" id=\"FEEDL-$feed_id\"
c50e2b30 1046 href=\"javascript:viewfeed('$feed_id', '', false, '', false, 0);\">$feed_title</a>";
254e0e4b
AD
1047
1048 print "<li id=\"FEEDR-$feed_id\" class=\"$class\">";
b619ff15 1049 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
254e0e4b
AD
1050 print "$feed_icon";
1051 }
1052
9323147e 1053 print "<span $rtl_tag id=\"FEEDN-$feed_id\">$feed</span>";
254e0e4b
AD
1054
1055 if ($unread != 0) {
1056 $fctr_class = "";
1057 } else {
1058 $fctr_class = "class=\"invisible\"";
1059 }
1060
9323147e 1061 print " <span $rtl_tag $fctr_class id=\"FEEDCTR-$feed_id\">
254e0e4b 1062 (<span id=\"FEEDU-$feed_id\">$unread</span>)</span>";
78d5212c
AD
1063
1064 if (get_pref($link, "EXTENDED_FEEDLIST")) {
1065 print "<div class=\"feedExtInfo\">
1066 <span id=\"FLUPD-$feed_id\">$last_updated $error_notify_msg</span></div>";
1067 }
1068
254e0e4b
AD
1069 print "</li>";
1070
1071 }
1072
406d9489
AD
1073 function getmicrotime() {
1074 list($usec, $sec) = explode(" ",microtime());
1075 return ((float)$usec + (float)$sec);
1076 }
1077
77e96719
AD
1078 function print_radio($id, $default, $values, $attributes = "") {
1079 foreach ($values as $v) {
1080
1081 if ($v == $default)
5da169d9 1082 $sel = "checked";
77e96719 1083 else
5da169d9
AD
1084 $sel = "";
1085
1086 if ($v == "Yes") {
1087 $sel .= " value=\"1\"";
1088 } else {
1089 $sel .= " value=\"0\"";
1090 }
77e96719 1091
69654950
AD
1092 print "<input class=\"noborder\"
1093 type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
77e96719
AD
1094
1095 }
1096 }
1097
ff485f1d
AD
1098 function initialize_user_prefs($link, $uid) {
1099
1100 $uid = db_escape_string($uid);
1101
1102 db_query($link, "BEGIN");
1103
1104 $result = db_query($link, "SELECT pref_name,def_value FROM ttrss_prefs");
1105
1106 $u_result = db_query($link, "SELECT pref_name
1107 FROM ttrss_user_prefs WHERE owner_uid = '$uid'");
1108
1109 $active_prefs = array();
1110
1111 while ($line = db_fetch_assoc($u_result)) {
1112 array_push($active_prefs, $line["pref_name"]);
1113 }
1114
1115 while ($line = db_fetch_assoc($result)) {
1116 if (array_search($line["pref_name"], $active_prefs) === FALSE) {
1117// print "adding " . $line["pref_name"] . "<br>";
1118
1119 db_query($link, "INSERT INTO ttrss_user_prefs
1120 (owner_uid,pref_name,value) VALUES
1121 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."')");
1122
1123 }
1124 }
1125
1126 db_query($link, "COMMIT");
1127
1128 }
956c7629
AD
1129
1130 function lookup_user_id($link, $user) {
1131
1132 $result = db_query($link, "SELECT id FROM ttrss_users WHERE
1133 login = '$login'");
1134
1135 if (db_num_rows($result) == 1) {
1136 return db_fetch_result($result, 0, "id");
1137 } else {
1138 return false;
1139 }
1140 }
1141
18664970
AD
1142 function http_authenticate_user($link) {
1143
1144 if (!$_SERVER["PHP_AUTH_USER"]) {
1145
1146 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
1147 header('HTTP/1.0 401 Unauthorized');
1148 exit;
1149
1150 } else {
1151 $auth_result = authenticate_user($link,
1152 $_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"]);
1153
1154 if (!$auth_result) {
1155 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
1156 header('HTTP/1.0 401 Unauthorized');
1157 exit;
1158 }
1159 }
1160
1161 return true;
1162 }
1163
461766f3 1164 function authenticate_user($link, $login, $password, $force_auth = false) {
c8437f35 1165
131b01b3 1166 if (!SINGLE_USER_MODE) {
c8437f35 1167
131b01b3 1168 $pwd_hash = 'SHA1:' . sha1($password);
461766f3
AD
1169
1170 if ($force_auth && defined('_DEBUG_USER_SWITCH')) {
1171 $query = "SELECT id,login,access_level
1172 FROM ttrss_users WHERE
1173 login = '$login'";
1174 } else {
1175 $query = "SELECT id,login,access_level
1176 FROM ttrss_users WHERE
1177 login = '$login' AND pwd_hash = '$pwd_hash'";
1178 }
1179
1180 $result = db_query($link, $query);
131b01b3
AD
1181
1182 if (db_num_rows($result) == 1) {
1183 $_SESSION["uid"] = db_fetch_result($result, 0, "id");
1184 $_SESSION["name"] = db_fetch_result($result, 0, "login");
1185 $_SESSION["access_level"] = db_fetch_result($result, 0, "access_level");
1186
1187 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
1188 $_SESSION["uid"]);
1189
1190 $user_theme = get_user_theme_path($link);
1191
1192 $_SESSION["theme"] = $user_theme;
1193 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1194
1195 initialize_user_prefs($link, $_SESSION["uid"]);
1196
1197 return true;
1198 }
1199
1200 return false;
503eb349 1201
131b01b3 1202 } else {
503eb349 1203
131b01b3
AD
1204 $_SESSION["uid"] = 1;
1205 $_SESSION["name"] = "admin";
f557cd78 1206
0bbba72d
AD
1207 $user_theme = get_user_theme_path($link);
1208
1209 $_SESSION["theme"] = $user_theme;
1210 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1211
1212 initialize_user_prefs($link, $_SESSION["uid"]);
1213
c8437f35
AD
1214 return true;
1215 }
c8437f35
AD
1216 }
1217
e6cb77a0
AD
1218 function make_password($length = 8) {
1219
1220 $password = "";
798f722b
AD
1221 $possible = "0123456789abcdfghjkmnpqrstvwxyzABCDFGHJKMNPQRSTVWXYZ";
1222
1223 $i = 0;
e6cb77a0
AD
1224
1225 while ($i < $length) {
1226 $char = substr($possible, mt_rand(0, strlen($possible)-1), 1);
1227
1228 if (!strstr($password, $char)) {
1229 $password .= $char;
1230 $i++;
1231 }
1232 }
1233 return $password;
1234 }
1235
1236 // this is called after user is created to initialize default feeds, labels
1237 // or whatever else
1238
1239 // user preferences are checked on every login, not here
1240
1241 function initialize_user($link, $uid) {
1242
1243 db_query($link, "insert into ttrss_labels (owner_uid,sql_exp,description)
1244 values ('$uid','unread = true', 'Unread articles')");
1245
1246 db_query($link, "insert into ttrss_labels (owner_uid,sql_exp,description)
1247 values ('$uid','last_read is null and unread = false', 'Updated articles')");
1248
1249 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
74bff337 1250 values ('$uid', 'Tiny Tiny RSS: New Releases',
628fcd2c 1251 'http://tt-rss.spb.ru/releases.rss')");
3b0feb9b 1252
cd2cd415
AD
1253 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
1254 values ('$uid', 'Tiny Tiny RSS: Forum',
1255 'http://tt-rss.spb.ru/forum/rss.php')");
3b0feb9b 1256 }
e6cb77a0 1257
b8aa49bc 1258 function logout_user() {
5ccc1cf5
AD
1259 session_destroy();
1260 if (isset($_COOKIE[session_name()])) {
1261 setcookie(session_name(), '', time()-42000, '/');
1262 }
b8aa49bc
AD
1263 }
1264
75836f33 1265 function get_script_urlpath() {
87a79fa4 1266 return preg_replace('/\/[^\/]*$/', "", $_SERVER["REQUEST_URI"]);
75836f33
AD
1267 }
1268
916f788a 1269 function validate_session($link) {
a2e9b457 1270 if (SESSION_CHECK_ADDRESS && $_SESSION["uid"]) {
916f788a
AD
1271 if ($_SESSION["ip_address"]) {
1272 if ($_SESSION["ip_address"] != $_SERVER["REMOTE_ADDR"]) {
7f0acba7 1273 $_SESSION["login_error_msg"] = "Session failed to validate (incorrect IP)";
916f788a
AD
1274 return false;
1275 }
1276 }
1277 }
d620cfe7 1278
a885f0ec 1279/* if ($_SESSION["cookie_lifetime"] && $_SESSION["uid"]) {
d620cfe7 1280
8e849206 1281 //print_r($_SESSION);
d620cfe7
AD
1282
1283 if (time() > $_SESSION["cookie_lifetime"]) {
1284 return false;
1285 }
a885f0ec
AD
1286 } */
1287
916f788a
AD
1288 return true;
1289 }
1290
793185a9 1291 function login_sequence($link, $mobile = false) {
b8aa49bc 1292 if (!SINGLE_USER_MODE) {
75836f33 1293
461766f3
AD
1294 if (defined('_DEBUG_USER_SWITCH') && $_SESSION["uid"]) {
1295 $swu = db_escape_string($_REQUEST["swu"]);
1296 if ($swu) {
1297 $_SESSION["prefs_cache"] = false;
1298 return authenticate_user($link, $swu, null, true);
1299 }
1300 }
1301
7f0acba7 1302 $login_action = $_POST["login_action"];
a885f0ec 1303
01a87dff 1304 # try to authenticate user if called from login form
7f0acba7 1305 if ($login_action == "do_login") {
01a87dff
AD
1306 $login = $_POST["login"];
1307 $password = $_POST["password"];
d620cfe7 1308 $remember_me = $_POST["remember_me"];
f557cd78 1309
01a87dff
AD
1310 if (authenticate_user($link, $login, $password)) {
1311 $_POST["password"] = "";
d620cfe7 1312
d620cfe7
AD
1313 header("Location: " . $_SERVER["REQUEST_URI"]);
1314 exit;
1315
01a87dff 1316 return;
7f0acba7
AD
1317 } else {
1318 $_SESSION["login_error_msg"] = "Incorrect username or password";
01a87dff
AD
1319 }
1320 }
1321
1df0f48b
AD
1322// print session_id();
1323// print_r($_SESSION);
7f0acba7
AD
1324
1325 if (!$_SESSION["uid"] || !validate_session($link)) {
793185a9 1326 render_login_form($link, $mobile);
01a87dff 1327 exit;
d3687e7a
AD
1328 } else {
1329 /* bump login timestamp */
1330 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
1331 $_SESSION["uid"]);
b8aa49bc 1332 }
d620cfe7 1333
b8aa49bc 1334 } else {
0bbba72d 1335 return authenticate_user($link, "admin", null);
b8aa49bc
AD
1336 }
1337 }
3547842a
AD
1338
1339 function truncate_string($str, $max_len) {
12db369c
AD
1340 if (mb_strlen($str, "utf-8") > $max_len - 3) {
1341 return mb_substr($str, 0, $max_len, "utf-8") . "...";
3547842a
AD
1342 } else {
1343 return $str;
1344 }
1345 }
54a60e1a
AD
1346
1347 function get_user_theme_path($link) {
798f722b
AD
1348 $result = db_query($link, "SELECT theme_path
1349 FROM
1350 ttrss_themes,ttrss_users
1351 WHERE ttrss_themes.id = theme_id AND ttrss_users.id = " . $_SESSION["uid"]);
54a60e1a
AD
1352 if (db_num_rows($result) != 0) {
1353 return db_fetch_result($result, 0, "theme_path");
1354 } else {
1355 return null;
1356 }
1357 }
be773442
AD
1358
1359 function smart_date_time($timestamp) {
1360 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
1361 return date("G:i", $timestamp);
f26450f1 1362 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
1363 return date("M d, G:i", $timestamp);
1364 } else {
7d7e0509 1365 return date("Y/m/d, G:i", $timestamp);
be773442
AD
1366 }
1367 }
1368
1369 function smart_date($timestamp) {
1370 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
1371 return "Today";
f26450f1 1372 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
1373 return date("D m", $timestamp);
1374 } else {
b02111c2 1375 return date("Y/m/d", $timestamp);
be773442
AD
1376 }
1377 }
a654a595
AD
1378
1379 function sql_bool_to_string($s) {
1380 if ($s == "t" || $s == "1") {
1381 return "true";
1382 } else {
1383 return "false";
1384 }
1385 }
e3c99f3b
AD
1386
1387 function sql_bool_to_bool($s) {
1388 if ($s == "t" || $s == "1") {
1389 return true;
1390 } else {
1391 return false;
1392 }
1393 }
0ea4fb50 1394
e3c99f3b 1395
0ea4fb50
AD
1396 function toggleEvenOdd($a) {
1397 if ($a == "even")
1398 return "odd";
1399 else
1400 return "even";
1401 }
6043fb7e
AD
1402
1403 function sanity_check($link) {
9cbca41f 1404
aec3ce39
AD
1405 error_reporting(0);
1406
6043fb7e
AD
1407 $error_code = 0;
1408 $result = db_query($link, "SELECT schema_version FROM ttrss_version");
1409 $schema_version = db_fetch_result($result, 0, "schema_version");
1410
1411 if ($schema_version != SCHEMA_VERSION) {
1412 $error_code = 5;
1413 }
1414
aec3ce39
AD
1415 if (DB_TYPE == "mysql") {
1416 $result = db_query($link, "SELECT true", false);
1417 if (db_num_rows($result) != 1) {
1418 $error_code = 10;
1419 }
1420 }
1421
1422 error_reporting (DEFAULT_ERROR_LEVEL);
1423
6043fb7e 1424 if ($error_code != 0) {
aec3ce39 1425 print_error_xml($error_code);
6043fb7e
AD
1426 return false;
1427 } else {
1428 return true;
4220d6b0 1429 }
6043fb7e
AD
1430 }
1431
27981ca3
AD
1432 function file_is_locked($filename) {
1433 error_reporting(0);
1434 $fp = fopen($filename, "r");
1435 error_reporting(DEFAULT_ERROR_LEVEL);
1436 if ($fp) {
1437 if (flock($fp, LOCK_EX | LOCK_NB)) {
1438 flock($fp, LOCK_UN);
1439 fclose($fp);
1440 return false;
1441 }
1442 fclose($fp);
1443 return true;
1444 }
1445 return false;
1446 }
1447
fcb4c0c9
AD
1448 function make_lockfile($filename) {
1449 $fp = fopen($filename, "w");
1450
1451 if (flock($fp, LOCK_EX | LOCK_NB)) {
1452 return $fp;
1453 } else {
1454 return false;
1455 }
1456 }
1457
894ebcf5
AD
1458 function sql_random_function() {
1459 if (DB_TYPE == "mysql") {
1460 return "RAND()";
1461 } else {
1462 return "RANDOM()";
1463 }
1464 }
1465
23aa0d16 1466 function catchup_feed($link, $feed, $cat_view) {
88040f57
AD
1467
1468 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
23aa0d16
AD
1469
1470 if ($cat_view) {
1471
1472 if ($feed > 0) {
1473 $cat_qpart = "cat_id = '$feed'";
1474 } else {
1475 $cat_qpart = "cat_id IS NULL";
1476 }
1477
1478 $tmp_result = db_query($link, "SELECT id
1479 FROM ttrss_feeds WHERE $cat_qpart AND owner_uid = " .
1480 $_SESSION["uid"]);
1481
1482 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1483
1484 $tmp_feed = $tmp_line["id"];
1485
1486 db_query($link, "UPDATE ttrss_user_entries
1487 SET unread = false,last_read = NOW()
1488 WHERE feed_id = '$tmp_feed' AND owner_uid = " . $_SESSION["uid"]);
1489 }
1490
1491 } else if ($feed > 0) {
1492
1493 $tmp_result = db_query($link, "SELECT id
1494 FROM ttrss_feeds WHERE parent_feed = '$feed'
1495 ORDER BY cat_id,title");
1496
1497 $parent_ids = array();
1498
1499 if (db_num_rows($tmp_result) > 0) {
1500 while ($p = db_fetch_assoc($tmp_result)) {
1501 array_push($parent_ids, "feed_id = " . $p["id"]);
1502 }
1503
1504 $children_qpart = implode(" OR ", $parent_ids);
1505
1506 db_query($link, "UPDATE ttrss_user_entries
1507 SET unread = false,last_read = NOW()
1508 WHERE (feed_id = '$feed' OR $children_qpart)
1509 AND owner_uid = " . $_SESSION["uid"]);
1510
1511 } else {
1512 db_query($link, "UPDATE ttrss_user_entries
1513 SET unread = false,last_read = NOW()
1514 WHERE feed_id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
1515 }
1516
1517 } else if ($feed < 0 && $feed > -10) { // special, like starred
1518
1519 if ($feed == -1) {
1520 db_query($link, "UPDATE ttrss_user_entries
1521 SET unread = false,last_read = NOW()
1522 WHERE marked = true AND owner_uid = ".$_SESSION["uid"]);
1523 }
1524
1525 } else if ($feed < -10) { // label
1526
1527 // TODO make this more efficient
1528
1529 $label_id = -$feed - 11;
1530
1531 $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
1532 WHERE id = '$label_id'");
1533
1534 if ($tmp_result) {
1535 $sql_exp = db_fetch_result($tmp_result, 0, "sql_exp");
1536
1537 db_query($link, "BEGIN");
1538
1539 $tmp2_result = db_query($link,
1540 "SELECT
1541 int_id
1542 FROM
88040f57 1543 ttrss_user_entries,ttrss_entries,ttrss_feeds
23aa0d16 1544 WHERE
88040f57
AD
1545 ref_id = ttrss_entries.id AND
1546 ttrss_user_entries.feed_id = ttrss_feeds.id AND
23aa0d16 1547 $sql_exp AND
88040f57 1548 ttrss_user_entries.owner_uid = " . $_SESSION["uid"]);
23aa0d16
AD
1549
1550 while ($tmp_line = db_fetch_assoc($tmp2_result)) {
1551 db_query($link, "UPDATE
1552 ttrss_user_entries
1553 SET
1554 unread = false, last_read = NOW()
1555 WHERE
1556 int_id = " . $tmp_line["int_id"]);
1557 }
1558
1559 db_query($link, "COMMIT");
1560
1561/* db_query($link, "UPDATE ttrss_user_entries,ttrss_entries
1562 SET unread = false,last_read = NOW()
1563 WHERE $sql_exp
1564 AND ref_id = id
1565 AND owner_uid = ".$_SESSION["uid"]); */
1566 }
1567 }
1568 } else { // tag
1569 db_query($link, "BEGIN");
1570
1571 $tag_name = db_escape_string($feed);
1572
1573 $result = db_query($link, "SELECT post_int_id FROM ttrss_tags
1574 WHERE tag_name = '$tag_name' AND owner_uid = " . $_SESSION["uid"]);
1575
1576 while ($line = db_fetch_assoc($result)) {
1577 db_query($link, "UPDATE ttrss_user_entries SET
1578 unread = false, last_read = NOW()
1579 WHERE int_id = " . $line["post_int_id"]);
1580 }
1581 db_query($link, "COMMIT");
1582 }
1583 }
1584
1585 function update_generic_feed($link, $feed, $cat_view) {
1586 if ($cat_view) {
1587
1588 if ($feed > 0) {
1589 $cat_qpart = "cat_id = '$feed'";
1590 } else {
1591 $cat_qpart = "cat_id IS NULL";
1592 }
1593
1594 $tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
1595 WHERE $cat_qpart AND owner_uid = " . $_SESSION["uid"]);
1596
1597 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1598 $feed_url = $tmp_line["feed_url"];
1599 update_rss_feed($link, $feed_url, $feed, ENABLE_UPDATE_DAEMON);
1600 }
1601
1602 } else {
1603 $tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
1604 WHERE id = '$feed'");
1605 $feed_url = db_fetch_result($tmp_result, 0, "feed_url");
1606 update_rss_feed($link, $feed_url, $feed, ENABLE_UPDATE_DAEMON);
1607 }
1608 }
a9cb1f83 1609
cf4d339c
AD
1610 function getAllCounters($link, $omode = "tflc") {
1611/* getLabelCounters($link);
a9cb1f83
AD
1612 getFeedCounters($link);
1613 getTagCounters($link);
1614 getGlobalCounters($link);
1615 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1616 getCategoryCounters($link);
cf4d339c
AD
1617 } */
1618
1619 if (!$omode) $omode = "tflc";
1620
1621 getGlobalCounters($link);
1622
1623 if (strchr($omode, "l")) getLabelCounters($link);
1624 if (strchr($omode, "f")) getFeedCounters($link);
1625 if (strchr($omode, "t")) getTagCounters($link);
1626 if (strchr($omode, "c")) {
1627 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1628 getCategoryCounters($link);
1629 }
a9cb1f83
AD
1630 }
1631 }
1632
1633 function getCategoryCounters($link) {
1634 $result = db_query($link, "SELECT cat_id,SUM((SELECT COUNT(int_id)
1635 FROM ttrss_user_entries WHERE feed_id = ttrss_feeds.id
1636 AND unread = true)) AS unread FROM ttrss_feeds
1637 WHERE
cfb02131 1638 hidden = false AND owner_uid = ".$_SESSION["uid"]." GROUP BY cat_id");
a9cb1f83
AD
1639
1640 while ($line = db_fetch_assoc($result)) {
1641 $line["cat_id"] = sprintf("%d", $line["cat_id"]);
1642 print "<counter type=\"category\" id=\"".$line["cat_id"]."\" counter=\"".
1643 $line["unread"]."\"/>";
1644 }
1645 }
1646
f295c368
AD
1647 function getCategoryUnread($link, $cat) {
1648
18664970
AD
1649 if ($cat != 0) {
1650 $cat_query = "cat_id = '$cat'";
1651 } else {
1652 $cat_query = "cat_id IS NULL";
1653 }
1654
1655 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE $cat_query
cfb02131 1656 AND hidden = false
f295c368
AD
1657 AND owner_uid = " . $_SESSION["uid"]);
1658
1659 $cat_feeds = array();
1660 while ($line = db_fetch_assoc($result)) {
1661 array_push($cat_feeds, "feed_id = " . $line["id"]);
1662 }
1663
18664970
AD
1664 if (count($cat_feeds) == 0) return 0;
1665
f295c368
AD
1666 $match_part = implode(" OR ", $cat_feeds);
1667
1668 $result = db_query($link, "SELECT COUNT(int_id) AS unread
1669 FROM ttrss_user_entries
4919fb42 1670 WHERE unread = true AND ($match_part) AND owner_uid = " . $_SESSION["uid"]);
f295c368
AD
1671
1672 $unread = 0;
1673
1674 # this needs to be rewritten
1675 while ($line = db_fetch_assoc($result)) {
1676 $unread += $line["unread"];
1677 }
1678
1679 return $unread;
1680
1681 }
1682
1683 function getFeedUnread($link, $feed, $is_cat = false) {
a9cb1f83 1684 $n_feed = sprintf("%d", $feed);
f295c368
AD
1685
1686 if ($is_cat) {
831ff047 1687 return getCategoryUnread($link, $n_feed);
f295c368 1688 } else if ($n_feed == -1) {
a9cb1f83 1689 $match_part = "marked = true";
4919fb42 1690 } else if ($n_feed > 0) {
831ff047 1691
e8b8485f
AD
1692 $result = db_query($link, "SELECT id FROM ttrss_feeds
1693 WHERE parent_feed = '$n_feed'
318260cc 1694 AND hidden = false
4919fb42 1695 AND owner_uid = " . $_SESSION["uid"]);
831ff047
AD
1696
1697 if (db_num_rows($result) > 0) {
4919fb42 1698
831ff047
AD
1699 $linked_feeds = array();
1700 while ($line = db_fetch_assoc($result)) {
1701 array_push($linked_feeds, "feed_id = " . $line["id"]);
1702 }
e8b8485f
AD
1703
1704 array_push($linked_feeds, "feed_id = $n_feed");
831ff047
AD
1705
1706 $match_part = implode(" OR ", $linked_feeds);
1707
4919fb42 1708 $result = db_query($link, "SELECT COUNT(int_id) AS unread
318260cc 1709 FROM ttrss_user_entries
e8b8485f
AD
1710 WHERE unread = true AND ($match_part)
1711 AND owner_uid = " . $_SESSION["uid"]);
4919fb42
AD
1712
1713 $unread = 0;
1714
1715 # this needs to be rewritten
1716 while ($line = db_fetch_assoc($result)) {
1717 $unread += $line["unread"];
1718 }
1719
1720 return $unread;
1721
831ff047
AD
1722 } else {
1723 $match_part = "feed_id = '$n_feed'";
1724 }
a9cb1f83 1725 } else if ($feed < -10) {
318260cc 1726
a9cb1f83
AD
1727 $label_id = -$feed - 11;
1728
1729 $result = db_query($link, "SELECT sql_exp FROM ttrss_labels WHERE
1730 id = '$label_id' AND owner_uid = " . $_SESSION["uid"]);
1731
1732 $match_part = db_fetch_result($result, 0, "sql_exp");
1733 }
1734
1735 if ($match_part) {
1736
1737 $result = db_query($link, "SELECT count(int_id) AS unread
88040f57
AD
1738 FROM ttrss_user_entries,ttrss_feeds,ttrss_entries WHERE
1739 ttrss_user_entries.feed_id = ttrss_feeds.id AND
1740 ttrss_user_entries.ref_id = ttrss_entries.id AND
cfb02131 1741 ttrss_feeds.hidden = false AND
88040f57 1742 unread = true AND ($match_part) AND ttrss_user_entries.owner_uid = " . $_SESSION["uid"]);
a9cb1f83
AD
1743
1744 } else {
1745
1746 $result = db_query($link, "SELECT COUNT(post_int_id) AS unread
1747 FROM ttrss_tags,ttrss_user_entries
1748 WHERE tag_name = '$feed' AND post_int_id = int_id AND unread = true AND
1749 ttrss_tags.owner_uid = " . $_SESSION["uid"]);
1750 }
1751
1752 $unread = db_fetch_result($result, 0, "unread");
cfb02131 1753
a9cb1f83
AD
1754 return $unread;
1755 }
1756
1757 /* FIXME this needs reworking */
1758
f3acc32e
AD
1759 function getGlobalUnread($link, $user_id = false) {
1760
1761 if (!$user_id) {
1762 $user_id = $_SESSION["uid"];
1763 }
1764
3831db41 1765 $result = db_query($link, "SELECT count(ttrss_entries.id) as c_id FROM ttrss_entries,ttrss_user_entries,ttrss_feeds
a9cb1f83 1766 WHERE unread = true AND
3831db41 1767 ttrss_user_entries.feed_id = ttrss_feeds.id AND
a9cb1f83 1768 ttrss_user_entries.ref_id = ttrss_entries.id AND
3831db41 1769 hidden = false AND
f3acc32e 1770 ttrss_user_entries.owner_uid = '$user_id'");
a9cb1f83
AD
1771 $c_id = db_fetch_result($result, 0, "c_id");
1772 return $c_id;
1773 }
1774
1775 function getGlobalCounters($link, $global_unread = -1) {
1776 if ($global_unread == -1) {
1777 $global_unread = getGlobalUnread($link);
1778 }
7bf7e4d3
AD
1779 print "<counter type=\"global\" id='global-unread'
1780 counter='$global_unread'/>";
1781
1782 $result = db_query($link, "SELECT COUNT(id) AS fn FROM
1783 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
1784
1785 $subscribed_feeds = db_fetch_result($result, 0, "fn");
1786
1787 print "<counter type=\"global\" id='subscribed-feeds'
1788 counter='$subscribed_feeds'/>";
1789
a9cb1f83
AD
1790 }
1791
1792 function getTagCounters($link, $smart_mode = SMART_RPC_COUNTERS) {
1793
1794 if ($smart_mode) {
1795 if (!$_SESSION["tctr_last_value"]) {
1796 $_SESSION["tctr_last_value"] = array();
1797 }
1798 }
1799
1800 $old_counters = $_SESSION["tctr_last_value"];
1801
1802 $tctrs_modified = false;
1803
1804/* $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
1805 FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
1806 ttrss_user_entries.ref_id = ttrss_entries.id AND
1807 ttrss_tags.owner_uid = ".$_SESSION["uid"]." AND
1808 post_int_id = ttrss_user_entries.int_id AND unread = true GROUP BY tag_name
1809 UNION
1810 select tag_name,0 as count FROM ttrss_tags
1811 WHERE ttrss_tags.owner_uid = ".$_SESSION["uid"]); */
1812
1813 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
1814 FROM ttrss_user_entries WHERE int_id = post_int_id
1815 AND unread = true)) AS count FROM ttrss_tags
22e00732 1816 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name ORDER BY tag_name");
a9cb1f83
AD
1817
1818 $tags = array();
1819
1820 while ($line = db_fetch_assoc($result)) {
1821 $tags[$line["tag_name"]] += $line["count"];
1822 }
1823
1824 foreach (array_keys($tags) as $tag) {
1825 $unread = $tags[$tag];
1826
1827 $tag = htmlspecialchars($tag);
1828
1829 if (!$smart_mode || $old_counters[$tag] != $unread) {
1830 $old_counters[$tag] = $unread;
1831 $tctrs_modified = true;
1832 print "<counter type=\"tag\" id=\"$tag\" counter=\"$unread\"/>";
1833 }
1834
1835 }
1836
1837 if ($smart_mode && $tctrs_modified) {
1838 $_SESSION["tctr_last_value"] = $old_counters;
1839 }
1840
1841 }
1842
ef393de7 1843 function getLabelCounters($link, $smart_mode = SMART_RPC_COUNTERS, $ret_mode = false) {
a9cb1f83
AD
1844
1845 if ($smart_mode) {
1846 if (!$_SESSION["lctr_last_value"]) {
1847 $_SESSION["lctr_last_value"] = array();
1848 }
1849 }
1850
ef393de7
AD
1851 $ret_arr = array();
1852
a9cb1f83
AD
1853 $old_counters = $_SESSION["lctr_last_value"];
1854 $lctrs_modified = false;
1855
88040f57 1856 $result = db_query($link, "SELECT count(ttrss_entries.id) as count FROM ttrss_entries,ttrss_user_entries,ttrss_feeds
a9cb1f83 1857 WHERE marked = true AND ttrss_user_entries.ref_id = ttrss_entries.id AND
88040f57
AD
1858 ttrss_user_entries.feed_id = ttrss_feeds.id AND
1859 unread = true AND ttrss_user_entries.owner_uid = ".$_SESSION["uid"]);
a9cb1f83
AD
1860
1861 $count = db_fetch_result($result, 0, "count");
1862
ef393de7
AD
1863 if (!$ret_mode) {
1864 print "<counter type=\"label\" id=\"-1\" counter=\"$count\"/>";
1865 } else {
1866 $ret_arr["-1"]["counter"] = $count;
1867 $ret_arr["-1"]["description"] = "Starred";
1868 }
a9cb1f83
AD
1869
1870 $result = db_query($link, "SELECT owner_uid,id,sql_exp,description FROM
1871 ttrss_labels WHERE owner_uid = ".$_SESSION["uid"]." ORDER by description");
1872
1873 while ($line = db_fetch_assoc($result)) {
1874
1875 $id = -$line["id"] - 11;
1876
ef393de7
AD
1877 $label_name = $line["description"];
1878
a9cb1f83
AD
1879 error_reporting (0);
1880
88040f57 1881 $tmp_result = db_query($link, "SELECT count(ttrss_entries.id) as count FROM ttrss_user_entries,ttrss_entries,ttrss_feeds
a9cb1f83 1882 WHERE (" . $line["sql_exp"] . ") AND unread = true AND
cfb02131 1883 ttrss_feeds.hidden = false AND
88040f57 1884 ttrss_user_entries.feed_id = ttrss_feeds.id AND
a9cb1f83 1885 ttrss_user_entries.ref_id = ttrss_entries.id AND
88040f57 1886 ttrss_user_entries.owner_uid = ".$_SESSION["uid"]);
a9cb1f83
AD
1887
1888 $count = db_fetch_result($tmp_result, 0, "count");
1889
1890 if (!$smart_mode || $old_counters[$id] != $count) {
1891 $old_counters[$id] = $count;
1892 $lctrs_modified = true;
ef393de7
AD
1893 if (!$ret_mode) {
1894 print "<counter type=\"label\" id=\"$id\" counter=\"$count\"/>";
1895 } else {
1896 $ret_arr[$id]["counter"] = $count;
1897 $ret_arr[$id]["description"] = $label_name;
1898 }
a9cb1f83
AD
1899 }
1900
1901 error_reporting (DEFAULT_ERROR_LEVEL);
1902 }
1903
1904 if ($smart_mode && $lctrs_modified) {
1905 $_SESSION["lctr_last_value"] = $old_counters;
1906 }
ef393de7
AD
1907
1908 return $ret_arr;
a9cb1f83
AD
1909 }
1910
1911/* function getFeedCounter($link, $id) {
1912
1913 $result = db_query($link, "SELECT
1914 count(id) as count,last_error
1915 FROM ttrss_entries,ttrss_user_entries,ttrss_feeds
1916 WHERE feed_id = '$id' AND unread = true
1917 AND ttrss_user_entries.feed_id = ttrss_feeds.id
1918 AND ttrss_user_entries.ref_id = ttrss_entries.id");
1919
1920 $count = db_fetch_result($result, 0, "count");
1921 $last_error = htmlspecialchars(db_fetch_result($result, 0, "last_error"));
1922
1923 print "<counter type=\"feed\" id=\"$id\" counter=\"$count\" error=\"$last_error\"/>";
1924 } */
1925
1926 function getFeedCounters($link, $smart_mode = SMART_RPC_COUNTERS) {
1927
1928 if ($smart_mode) {
1929 if (!$_SESSION["fctr_last_value"]) {
1930 $_SESSION["fctr_last_value"] = array();
1931 }
1932 }
1933
1934 $old_counters = $_SESSION["fctr_last_value"];
1935
1936 $result = db_query($link, "SELECT id,last_error,parent_feed,
fb1fb4ab 1937 SUBSTRING(last_updated,1,19) AS last_updated,
a9cb1f83
AD
1938 (SELECT count(id)
1939 FROM ttrss_entries,ttrss_user_entries
1940 WHERE feed_id = ttrss_feeds.id AND
1941 ttrss_user_entries.ref_id = ttrss_entries.id
1942 AND unread = true AND owner_uid = ".$_SESSION["uid"].") as count
1943 FROM ttrss_feeds WHERE owner_uid = ".$_SESSION["uid"] . "
1944 AND parent_feed IS NULL");
1945
1946 $fctrs_modified = false;
1947
fb1fb4ab
AD
1948 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
1949
a9cb1f83
AD
1950 while ($line = db_fetch_assoc($result)) {
1951
1952 $id = $line["id"];
1953 $count = $line["count"];
1954 $last_error = htmlspecialchars($line["last_error"]);
fb1fb4ab
AD
1955
1956 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
1957 $last_updated = smart_date_time(strtotime($line["last_updated"]));
1958 } else {
1959 $last_updated = date($short_date, strtotime($line["last_updated"]));
1960 }
1961
a9cb1f83
AD
1962 $has_img = is_file(ICONS_DIR . "/$id.ico");
1963
1964 $tmp_result = db_query($link,
1965 "SELECT id,COUNT(unread) AS unread
1966 FROM ttrss_feeds LEFT JOIN ttrss_user_entries
1967 ON (ttrss_feeds.id = ttrss_user_entries.feed_id)
1968 WHERE parent_feed = '$id' AND unread = true GROUP BY ttrss_feeds.id");
1969
1970 if (db_num_rows($tmp_result) > 0) {
1971 while ($l = db_fetch_assoc($tmp_result)) {
1972 $count += $l["unread"];
1973 }
1974 }
1975
1976 if (!$smart_mode || $old_counters[$id] != $count) {
1977 $old_counters[$id] = $count;
1978 $fctrs_modified = true;
1979
1980 if ($last_error) {
1981 $error_part = "error=\"$last_error\"";
1982 } else {
1983 $error_part = "";
1984 }
1985
1986 if ($has_img) {
1987 $has_img_part = "hi=\"$has_img\"";
1988 } else {
1989 $has_img_part = "";
1990 }
1991
fb1fb4ab 1992 print "<counter type=\"feed\" id=\"$id\" counter=\"$count\" $has_img_part $error_part updated=\"$last_updated\"/>";
a9cb1f83
AD
1993 }
1994 }
1995
1996 if ($smart_mode && $fctrs_modified) {
1997 $_SESSION["fctr_last_value"] = $old_counters;
1998 }
1999 }
2000
1b758780 2001 function get_script_dt_add() {
34e420fb 2002 if (strpos(VERSION, ".99") === false) {
1b758780
AD
2003 return VERSION;
2004 } else {
2005 return time();
2006 }
2007 }
2008
6e7f8d26
AD
2009 function get_pgsql_version($link) {
2010 $result = db_query($link, "SELECT version() AS version");
2011 $version = split(" ", db_fetch_result($result, 0, "version"));
2012 return $version[1];
2013 }
2014
af106b0e
AD
2015 function print_error_xml($code, $add_msg = "") {
2016 global $ERRORS;
2017
2018 $error_msg = $ERRORS[$code];
2019
2020 if ($add_msg) {
2021 $error_msg = "$error_msg; $add_msg";
2022 }
2023
4c2abbc1 2024 print "<rpc-reply>";
af106b0e 2025 print "<error error-code=\"$code\" error-msg=\"$error_msg\"/>";
4c2abbc1 2026 print "</rpc-reply>";
af106b0e 2027 }
956c7629 2028
f27de515
AD
2029 function subscribe_to_feed($link, $feed_link, $cat_id = 0,
2030 $auth_login = '', $auth_pass = '') {
bb0f29a4 2031
b3dfe8ba 2032 # check for feed:http://url
c91c2249
AD
2033 $feed_link = trim(preg_replace("/^feed:/", "", $feed_link));
2034
b3dfe8ba 2035 # check for feed://URL
e2d84cdb 2036 if (strpos($feed_link, "//") === 0) {
b3dfe8ba
AD
2037 $feed_link = "http:$feed_link";
2038 }
2039
c91c2249 2040 if ($feed_link == "") return;
bb0f29a4 2041
956c7629
AD
2042 if ($cat_id == "0" || !$cat_id) {
2043 $cat_qpart = "NULL";
2044 } else {
2045 $cat_qpart = "'$cat_id'";
2046 }
2047
2048 $result = db_query($link,
2049 "SELECT id FROM ttrss_feeds
2050 WHERE feed_url = '$feed_link' AND owner_uid = ".$_SESSION["uid"]);
2051
2052 if (db_num_rows($result) == 0) {
2053
2054 $result = db_query($link,
f27de515
AD
2055 "INSERT INTO ttrss_feeds
2056 (owner_uid,feed_url,title,cat_id, auth_login,auth_pass)
956c7629 2057 VALUES ('".$_SESSION["uid"]."', '$feed_link',
f27de515 2058 '[Unknown]', $cat_qpart, '$auth_login', '$auth_pass')");
956c7629
AD
2059
2060 $result = db_query($link,
2061 "SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_link'
f27de515 2062 AND owner_uid = " . $_SESSION["uid"]);
956c7629
AD
2063
2064 $feed_id = db_fetch_result($result, 0, "id");
2065
2066 if ($feed_id) {
2067 update_rss_feed($link, $feed_link, $feed_id, true);
2068 }
2069
2070 return true;
2071 } else {
2072 return false;
2073 }
2074 }
2075
673d54ca
AD
2076 function print_feed_select($link, $id, $default_id = "",
2077 $attributes = "", $include_all_feeds = true) {
2078
79f3553b 2079 print "<select id=\"$id\" name=\"$id\" $attributes>";
673d54ca 2080 if ($include_all_feeds) {
79f3553b 2081 print "<option value=\"0\">All feeds</option>";
673d54ca
AD
2082 }
2083
2084 $result = db_query($link, "SELECT id,title FROM ttrss_feeds
2085 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
2086
2087 if (db_num_rows($result) > 0 && $include_all_feeds) {
2088 print "<option disabled>--------</option>";
2089 }
2090
2091 while ($line = db_fetch_assoc($result)) {
2092 if ($line["id"] == $default_id) {
2093 $is_selected = "selected";
2094 } else {
2095 $is_selected = "";
2096 }
79f3553b 2097 printf("<option $is_selected value='%d'>%s</option>",
07164479 2098 $line["id"], htmlspecialchars(db_unescape_string($line["title"])));
673d54ca
AD
2099 }
2100
2101 print "</select>";
2102 }
2103
2104 function print_feed_cat_select($link, $id, $default_id = "",
2105 $attributes = "", $include_all_cats = true) {
2106
79f3553b 2107 print "<select id=\"$id\" name=\"$id\" $attributes>";
673d54ca
AD
2108
2109 if ($include_all_cats) {
d1db26aa 2110 print "<option value=\"0\">".__('Uncategorized')."</option>";
673d54ca
AD
2111 }
2112
2113 $result = db_query($link, "SELECT id,title FROM ttrss_feed_categories
2114 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
2115
2116 if (db_num_rows($result) > 0 && $include_all_cats) {
2117 print "<option disabled>--------</option>";
2118 }
2119
2120 while ($line = db_fetch_assoc($result)) {
2121 if ($line["id"] == $default_id) {
2122 $is_selected = "selected";
2123 } else {
2124 $is_selected = "";
2125 }
14f69488 2126 printf("<option $is_selected value='%d'>%s</option>",
07164479 2127 $line["id"], htmlspecialchars(db_unescape_string($line["title"])));
673d54ca
AD
2128 }
2129
2130 print "</select>";
2131 }
2132
14f69488
AD
2133 function checkbox_to_sql_bool($val) {
2134 return ($val == "on") ? "true" : "false";
2135 }
86b682ce
AD
2136
2137 function getFeedCatTitle($link, $id) {
2138 if ($id == -1) {
d1db26aa 2139 return __("Special");
86b682ce 2140 } else if ($id < -10) {
d1db26aa 2141 return __("Labels");
86b682ce
AD
2142 } else if ($id > 0) {
2143 $result = db_query($link, "SELECT ttrss_feed_categories.title
2144 FROM ttrss_feeds, ttrss_feed_categories WHERE ttrss_feeds.id = '$id' AND
2145 cat_id = ttrss_feed_categories.id");
2146 if (db_num_rows($result) == 1) {
2147 return db_fetch_result($result, 0, "title");
2148 } else {
d1db26aa 2149 return __("Uncategorized");
86b682ce
AD
2150 }
2151 } else {
2152 return "getFeedCatTitle($id) failed";
2153 }
2154
2155 }
2156
2157 function getFeedTitle($link, $id) {
2158 if ($id == -1) {
d1db26aa 2159 return __("Starred articles");
86b682ce
AD
2160 } else if ($id < -10) {
2161 $label_id = -10 - $id;
2162 $result = db_query($link, "SELECT description FROM ttrss_labels WHERE id = '$label_id'");
2163 if (db_num_rows($result) == 1) {
2164 return db_fetch_result($result, 0, "description");
2165 } else {
2166 return "Unknown label ($label_id)";
2167 }
2168
2169 } else if ($id > 0) {
2170 $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$id'");
2171 if (db_num_rows($result) == 1) {
2172 return db_fetch_result($result, 0, "title");
2173 } else {
2174 return "Unknown feed ($id)";
2175 }
2176 } else {
2177 return "getFeedTitle($id) failed";
2178 }
2179
2180 }
3dd46f19
AD
2181
2182 function get_session_cookie_name() {
2183 return ((!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid" : TTRSS_SESSION_NAME);
2184 }
3ac2b520
AD
2185
2186 function print_init_params($link) {
2187 print "<init-params>";
2188 if ($_SESSION["stored-params"]) {
2189 foreach (array_keys($_SESSION["stored-params"]) as $key) {
5f57b06d
AD
2190 if ($key) {
2191 $value = htmlspecialchars($_SESSION["stored-params"][$key]);
2192 print "<param key=\"$key\" value=\"$value\"/>";
2193 }
3ac2b520
AD
2194 }
2195 }
2196
2197 print "<param key=\"daemon_enabled\" value=\"" . ENABLE_UPDATE_DAEMON . "\"/>";
2198 print "<param key=\"feeds_frame_refresh\" value=\"" . FEEDS_FRAME_REFRESH . "\"/>";
0d51e25d 2199 print "<param key=\"daemon_refresh_only\" value=\"" . DAEMON_REFRESH_ONLY . "\"/>";
3ac2b520
AD
2200
2201 print "<param key=\"on_catchup_show_next_feed\" value=\"" .
2202 get_pref($link, "ON_CATCHUP_SHOW_NEXT_FEED") . "\"/>";
2203
e8bd0da9 2204 print "<param key=\"hide_read_feeds\" value=\"" .
465ff90b 2205 (int) get_pref($link, "HIDE_READ_FEEDS") . "\"/>";
e8bd0da9 2206
c9268ed5 2207 print "<param key=\"feeds_sort_by_unread\" value=\"" .
465ff90b 2208 (int) get_pref($link, "FEEDS_SORT_BY_UNREAD") . "\"/>";
c9268ed5 2209
f6d6e22f 2210 print "<param key=\"confirm_feed_catchup\" value=\"" .
465ff90b 2211 (int) get_pref($link, "CONFIRM_FEED_CATCHUP") . "\"/>";
f6d6e22f 2212
ac7bcd71 2213 print "<param key=\"cdm_auto_catchup\" value=\"" .
465ff90b 2214 (int) get_pref($link, "CDM_AUTO_CATCHUP") . "\"/>";
ac7bcd71 2215
8e9c121b
AD
2216 print "<param key=\"icons_url\" value=\"" . ICONS_URL . "\"/>";
2217
be0801a1
AD
2218 print "<param key=\"cookie_lifetime\" value=\"" . SESSION_COOKIE_LIFETIME . "\"/>";
2219
40496720
AD
2220 print "<param key=\"default_view_mode\" value=\"" .
2221 get_pref($link, "_DEFAULT_VIEW_MODE") . "\"/>";
2222
2223 print "<param key=\"default_view_limit\" value=\"" .
465ff90b 2224 (int) get_pref($link, "_DEFAULT_VIEW_LIMIT") . "\"/>";
40496720 2225
fe8d2059
AD
2226 print "<param key=\"prefs_active_tab\" value=\"" .
2227 get_pref($link, "_PREFS_ACTIVE_TAB") . "\"/>";
2228
465ff90b
AD
2229 print "<param key=\"infobox_disable_overlay\" value=\"" .
2230 get_pref($link, "_INFOBOX_DISABLE_OVERLAY") . "\"/>";
2231
3ac2b520
AD
2232 print "</init-params>";
2233 }
f54f515f
AD
2234
2235 function print_runtime_info($link) {
2236 print "<runtime-info>";
71ad883b
AD
2237 if (ENABLE_UPDATE_DAEMON) {
2238 print "<param key=\"daemon_is_running\" value=\"".
2239 sprintf("%d", file_is_locked("update_daemon.lock")) . "\"/>";
2240 }
d9fa39f1
AD
2241 if (CHECK_FOR_NEW_VERSION && $_SESSION["access_level"] >= 10) {
2242
2243 if ($_SESSION["last_version_check"] + 600 < time()) {
2244 $new_version_details = check_for_update($link);
2245
2246 print "<param key=\"new_version_available\" value=\"".
2247 sprintf("%d", $new_version_details != ""). "\"/>";
2248
2249 $_SESSION["last_version_check"] = time();
2250 }
2251 }
2252
f54f515f
AD
2253 print "</runtime-info>";
2254 }
ef393de7 2255
88040f57 2256 function getSearchSql($search, $match_on) {
ef393de7 2257
88040f57 2258 $search_query_part = "";
e20c9d88 2259
88040f57
AD
2260 $keywords = split(" ", $search);
2261 $query_keywords = array();
e20c9d88 2262
88040f57 2263 if ($match_on == "both") {
e20c9d88 2264
88040f57
AD
2265 foreach ($keywords as $k) {
2266 array_push($query_keywords, "(UPPER(ttrss_entries.title) LIKE UPPER('%$k%')
2267 OR UPPER(ttrss_entries.content) LIKE UPPER('%$k%'))");
2268 }
e20c9d88 2269
88040f57 2270 $search_query_part = implode("AND", $query_keywords) . " AND ";
e20c9d88 2271
88040f57 2272 } else if ($match_on == "title") {
e20c9d88 2273
88040f57
AD
2274 foreach ($keywords as $k) {
2275 array_push($query_keywords, "(UPPER(ttrss_entries.title) LIKE UPPER('%$k%'))");
2276 }
e20c9d88 2277
88040f57 2278 $search_query_part = implode("AND", $query_keywords) . " AND ";
e20c9d88 2279
88040f57
AD
2280 } else if ($match_on == "content") {
2281
2282 foreach ($keywords as $k) {
2283 array_push($query_keywords, "(UPPER(ttrss_entries.content) LIKE UPPER('%$k%'))");
2284 }
2285 }
2286
2287 $search_query_part = implode("AND", $query_keywords);
2288
2289 return $search_query_part;
2290 }
2291
c1a0b534
AD
2292 function queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view, $search, $search_mode, $match_on, $override_order = false, $offset = 0) {
2293
88040f57
AD
2294 if ($search) {
2295
2296 $search_query_part = getSearchSql($search, $match_on);
2297 $search_query_part .= " AND ";
e20c9d88 2298
ef393de7
AD
2299 } else {
2300 $search_query_part = "";
2301 }
2302
2303 $view_query_part = "";
2304
2305 if ($view_mode == "adaptive") {
2306 if ($search) {
2307 $view_query_part = " ";
2308 } else if ($feed != -1) {
f295c368 2309 $unread = getFeedUnread($link, $feed, $cat_view);
ef393de7
AD
2310 if ($unread > 0) {
2311 $view_query_part = " unread = true AND ";
2312 }
2313 }
2314 }
2315
2316 if ($view_mode == "marked") {
2317 $view_query_part = " marked = true AND ";
2318 }
2319
2320 if ($view_mode == "unread") {
2321 $view_query_part = " unread = true AND ";
2322 }
2323
2324 if ($limit > 0) {
2325 $limit_query_part = "LIMIT " . $limit;
2326 }
2327
2328 $vfeed_query_part = "";
2329
2330 // override query strategy and enable feed display when searching globally
2331 if ($search && $search_mode == "all_feeds") {
2332 $query_strategy_part = "ttrss_entries.id > 0";
2333 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2334 } else if (preg_match("/^-?[0-9][0-9]*$/", $feed) == false) {
2335 $query_strategy_part = "ttrss_entries.id > 0";
2336 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
2337 id = feed_id) as feed_title,";
2338 } else if ($feed >= 0 && $search && $search_mode == "this_cat") {
2339
2340 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
0a6c4846
AD
2341
2342 $tmp_result = false;
2343
2344 if ($cat_view) {
2345 $tmp_result = db_query($link, "SELECT id
2346 FROM ttrss_feeds WHERE cat_id = '$feed'");
2347 } else {
2348 $tmp_result = db_query($link, "SELECT id
2349 FROM ttrss_feeds WHERE cat_id = (SELECT cat_id FROM ttrss_feeds
2350 WHERE id = '$feed') AND id != '$feed'");
2351 }
ef393de7
AD
2352
2353 $cat_siblings = array();
2354
2355 if (db_num_rows($tmp_result) > 0) {
2356 while ($p = db_fetch_assoc($tmp_result)) {
2357 array_push($cat_siblings, "feed_id = " . $p["id"]);
2358 }
2359
2360 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
2361 $feed, implode(" OR ", $cat_siblings));
2362
2363 } else {
2364 $query_strategy_part = "ttrss_entries.id > 0";
2365 }
2366
2367 } else if ($feed >= 0) {
2368
2369 if ($cat_view) {
5c365f60 2370
ef393de7
AD
2371 if ($feed > 0) {
2372 $query_strategy_part = "cat_id = '$feed'";
2373 } else {
2374 $query_strategy_part = "cat_id IS NULL";
2375 }
2376
2377 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
5c365f60 2378
ef393de7
AD
2379 } else {
2380 $tmp_result = db_query($link, "SELECT id
2381 FROM ttrss_feeds WHERE parent_feed = '$feed'
2382 ORDER BY cat_id,title");
2383
2384 $parent_ids = array();
2385
2386 if (db_num_rows($tmp_result) > 0) {
2387 while ($p = db_fetch_assoc($tmp_result)) {
2388 array_push($parent_ids, "feed_id = " . $p["id"]);
2389 }
2390
2391 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
2392 $feed, implode(" OR ", $parent_ids));
2393
2394 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2395 } else {
2396 $query_strategy_part = "feed_id = '$feed'";
2397 }
2398 }
2399 } else if ($feed == -1) { // starred virtual feed
2400 $query_strategy_part = "marked = true";
2401 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2402 } else if ($feed <= -10) { // labels
2403 $label_id = -$feed - 11;
2404
2405 $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
2406 WHERE id = '$label_id'");
2407
2408 $query_strategy_part = db_fetch_result($tmp_result, 0, "sql_exp");
3de0261a
AD
2409
2410 if (!$query_strategy_part) {
2411 return false;
2412 }
2413
ef393de7
AD
2414 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2415 } else {
2416 $query_strategy_part = "id > 0"; // dumb
2417 }
d6e5706d
AD
2418
2419 if (get_pref($link, 'REVERSE_HEADLINES')) {
2420 $order_by = "updated";
2421 } else {
2422 $order_by = "updated DESC";
2423 }
e939722a
AD
2424
2425 if ($override_order) {
2426 $order_by = $override_order;
2427 }
ef393de7
AD
2428
2429 $feed_title = "";
2430
2431 if ($search && $search_mode == "all_feeds") {
d1db26aa 2432 $feed_title = __("Global search results")." ($search)";
ef393de7 2433 } else if ($search && preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
d1db26aa 2434 $feed_title = __("Tag search results")." ($search, $feed)";
ef393de7
AD
2435 } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
2436 $feed_title = $feed;
2437 } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) != false && $feed >= 0) {
2438
2439 if ($cat_view) {
5c365f60 2440
ef393de7
AD
2441 if ($feed != 0) {
2442 $result = db_query($link, "SELECT title FROM ttrss_feed_categories
2443 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
2444 $feed_title = db_fetch_result($result, 0, "title");
2445 } else {
d1db26aa 2446 $feed_title = __("Uncategorized");
ef393de7 2447 }
e1eb2147
AD
2448
2449 if ($search) {
d1db26aa 2450 $feed_title = __("Category search results")." ($search, $feed_title)";
e1eb2147
AD
2451 }
2452
ef393de7
AD
2453 } else {
2454
2455 $result = db_query($link, "SELECT title,site_url,last_error FROM ttrss_feeds
2456 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
2457
2458 $feed_title = db_fetch_result($result, 0, "title");
2459 $feed_site_url = db_fetch_result($result, 0, "site_url");
2460 $last_error = db_fetch_result($result, 0, "last_error");
e1eb2147
AD
2461
2462 if ($search) {
d1db26aa 2463 $feed_title = __("Feed search results") . " ($search, $feed_title)";
e1eb2147 2464 }
ef393de7
AD
2465 }
2466
2467 } else if ($feed == -1) {
d1db26aa 2468 $feed_title = __("Starred articles");
ef393de7
AD
2469 } else if ($feed < -10) {
2470 $label_id = -$feed - 11;
2471 $result = db_query($link, "SELECT description FROM ttrss_labels
2472 WHERE id = '$label_id'");
2473 $feed_title = db_fetch_result($result, 0, "description");
88040f57
AD
2474
2475 if ($search) {
d1db26aa 2476 $feed_title = __("Label search results") . " ($search, $feed_title)";
88040f57 2477 }
ef393de7
AD
2478 } else {
2479 $feed_title = "?";
2480 }
2481
2482 $feed_title = db_unescape_string($feed_title);
2483
2484 if ($feed < -10) error_reporting (0);
2485
2486 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
2487
2488 if ($feed >= 0) {
2489 $feed_kind = "Feeds";
2490 } else {
2491 $feed_kind = "Labels";
2492 }
2493
2494 $content_query_part = "content as content_preview,";
203de776 2495
95a82c08
AD
2496 if ($limit_query_part) {
2497 $offset_query_part = "OFFSET $offset";
2498 }
2499
ef393de7 2500 $query = "SELECT
1f64b1be 2501 guid,
ef393de7
AD
2502 ttrss_entries.id,ttrss_entries.title,
2503 SUBSTRING(updated,1,16) as updated,
2504 unread,feed_id,marked,link,last_read,
2505 SUBSTRING(last_read,1,19) as last_read_noms,
2506 $vfeed_query_part
2507 $content_query_part
d4b4b9de
AD
2508 SUBSTRING(updated,1,19) as updated_noms,
2509 author
ef393de7
AD
2510 FROM
2511 ttrss_entries,ttrss_user_entries,ttrss_feeds
2512 WHERE
cfb02131 2513 ttrss_feeds.hidden = false AND
ef393de7
AD
2514 ttrss_user_entries.feed_id = ttrss_feeds.id AND
2515 ttrss_user_entries.ref_id = ttrss_entries.id AND
2516 ttrss_user_entries.owner_uid = '".$_SESSION["uid"]."' AND
2517 $search_query_part
2518 $view_query_part
2519 $query_strategy_part ORDER BY $order_by
95a82c08 2520 $limit_query_part $offset_query_part";
ef393de7
AD
2521
2522 $result = db_query($link, $query);
2523
2524 if ($_GET["debug"]) print $query;
2525
2526 } else {
2527 // browsing by tag
2528
2529 $feed_kind = "Tags";
2530
2531 $result = db_query($link, "SELECT
1f64b1be 2532 guid,
ef393de7
AD
2533 ttrss_entries.id as id,title,
2534 SUBSTRING(updated,1,16) as updated,
2535 unread,feed_id,
2536 marked,link,last_read,
2537 SUBSTRING(last_read,1,19) as last_read_noms,
2538 $vfeed_query_part
2539 $content_query_part
2540 SUBSTRING(updated,1,19) as updated_noms
2541 FROM
2542 ttrss_entries,ttrss_user_entries,ttrss_tags
2543 WHERE
2544 ref_id = ttrss_entries.id AND
2545 ttrss_user_entries.owner_uid = '".$_SESSION["uid"]."' AND
2546 post_int_id = int_id AND tag_name = '$feed' AND
2547 $view_query_part
2548 $search_query_part
2549 $query_strategy_part ORDER BY $order_by
2550 $limit_query_part");
2551 }
2552
c7188969 2553 return array($result, $feed_title, $feed_site_url, $last_error);
ef393de7
AD
2554
2555 }
2556
e1eb2147 2557 function generate_syndicated_feed($link, $feed, $is_cat,
3baeeeca 2558 $search, $search_mode, $match_on) {
18664970
AD
2559
2560 $qfh_ret = queryFeedHeadlines($link, $feed,
e939722a 2561 30, false, $is_cat, $search, $search_mode, $match_on, "updated DESC");
18664970
AD
2562
2563 $result = $qfh_ret[0];
59e2aab4 2564 $feed_title = htmlspecialchars($qfh_ret[1]);
18664970
AD
2565 $feed_site_url = $qfh_ret[2];
2566 $last_error = $qfh_ret[3];
2567
3baeeeca
AD
2568 print "<rss version=\"2.0\">
2569 <channel>
2570 <title>$feed_title</title>
2571 <link>$feed_site_url</link>
2572 <generator>Tiny Tiny RSS v".VERSION."</generator>";
2573
2574 while ($line = db_fetch_assoc($result)) {
2575 print "<item>";
2576 print "<id>" . htmlspecialchars($line["guid"]) . "</id>";
2577 print "<link>" . htmlspecialchars($line["link"]) . "</link>";
2578
2579 $rfc822_date = date('r', strtotime($line["updated"]));
2580
2581 print "<pubDate>$rfc822_date</pubDate>";
2582
2583 print "<title>" .
2584 htmlspecialchars($line["title"]) . "</title>";
2585
2586 print "<description>" .
2587 htmlspecialchars($line["content_preview"]) . "</description>";
2588
2589 print "</item>";
2590 }
2591
2592 print "</channel></rss>";
18664970
AD
2593
2594 }
2595
0a6c4846
AD
2596 function getCategoryTitle($link, $cat_id) {
2597
2598 $result = db_query($link, "SELECT title FROM ttrss_feed_categories WHERE
2599 id = '$cat_id'");
2600
2601 if (db_num_rows($result) == 1) {
2602 return db_fetch_result($result, 0, "title");
2603 } else {
2604 return "Uncategorized";
2605 }
2606 }
2607
183ad07b 2608 function sanitize_rss($str) {
60452879 2609 $res = $str;
183ad07b
AD
2610
2611 $res = preg_replace('/<script.*?>/i',
60452879 2612 "<p class=\"scriptWarn\">Disabled script: ", $res);
183ad07b 2613
60452879
AD
2614 $res = preg_replace('/<\/script.*?>/i', "</p>", $res);
2615
8511f62f 2616/* $res = preg_replace('/<embed.*?>/i', "", $res);
183ad07b 2617
a262b161
AD
2618 $res = preg_replace('/<object.*?>.*?<\/object>/i',
2619 "<p class=\"objectWarn\">(Disabled html object
8511f62f 2620 - flash or other embedded content)</p>", $res); */
a262b161 2621
183ad07b
AD
2622 return $res;
2623 }
b72c3ef8 2624
9cd7c995
AD
2625 function send_headlines_digests($link, $limit = 100) {
2626
1ddba275
AD
2627 if (!DIGEST_ENABLE) return false;
2628
9cd7c995 2629 $user_limit = DIGEST_EMAIL_LIMIT;
5430c959 2630 $days = 1;
9cd7c995
AD
2631
2632 print "Sending digests, batch of max $user_limit users, days = $days, headline limit = $limit\n\n";
2633
2634 if (DB_TYPE == "pgsql") {
2635 $interval_query = "last_digest_sent < NOW() - INTERVAL '$days days'";
2636 } else if (DB_TYPE == "mysql") {
2637 $interval_query = "last_digest_sent < DATE_SUB(NOW(), INTERVAL $days DAY)";
2638 }
2639
2640 $result = db_query($link, "SELECT id,email FROM ttrss_users
2641 WHERE email != '' AND (last_digest_sent IS NULL OR $interval_query)");
2642
2643 while ($line = db_fetch_assoc($result)) {
2644 if (get_pref($link, 'DIGEST_ENABLE', $line['id'], false)) {
2645 print "Sending digest for UID:" . $line['id'] . " - " . $line["email"] . " ... ";
2646
2647 $tuple = prepare_headlines_digest($link, $line["id"], $days, $limit);
2648 $digest = $tuple[0];
2649 $headlines_count = $tuple[1];
2650
2651 if ($headlines_count > 0) {
2652 $rc = mail($line["login"] . " <" . $line["email"] . ">",
2653 "[tt-rss] New headlines for last 24 hours", $digest,
3ab3c1f0
AD
2654 "From: " . MAIL_FROM . "\n".
2655 "Content-Type: text/plain; charset=\"utf-8\"\n".
2656 "Content-Transfer-Encoding: 8bit\n");
9cd7c995
AD
2657 print "RC=$rc\n";
2658 db_query($link, "UPDATE ttrss_users SET last_digest_sent = NOW()
2659 WHERE id = " . $line["id"]);
2660 } else {
2661 print "No headlines\n";
2662 }
2663 }
2664 }
2665
2666// $digest = prepare_headlines_digest($link, $user_id, $days, $limit);
2667
2668 }
2669
7e3634d9 2670 function prepare_headlines_digest($link, $user_id, $days = 1, $limit = 100) {
d1db26aa 2671 $tmp = __("New headlines for last 24 hours, as of ") . date("Y/m/d H:m") . "\n";
7e3634d9
AD
2672 $tmp .= "=======================================================\n\n";
2673
2674 if (DB_TYPE == "pgsql") {
9cd7c995 2675 $interval_query = "ttrss_entries.date_entered > NOW() - INTERVAL '$days days'";
7e3634d9
AD
2676 } else if (DB_TYPE == "mysql") {
2677 $interval_query = "ttrss_entries.date_entered > DATE_SUB(NOW(), INTERVAL $days DAY)";
2678 }
2679
2680 $result = db_query($link, "SELECT ttrss_entries.title,
2681 ttrss_feeds.title AS feed_title,
2682 date_entered,
2683 link,
2684 SUBSTRING(last_updated,1,19) AS last_updated
2685 FROM
2686 ttrss_user_entries,ttrss_entries,ttrss_feeds
2687 WHERE
2688 ref_id = ttrss_entries.id AND feed_id = ttrss_feeds.id
3dd9183c 2689 AND include_in_digest = true
7e3634d9 2690 AND $interval_query
448b0abd 2691 AND ttrss_user_entries.owner_uid = $user_id
7e3634d9
AD
2692 AND unread = true ORDER BY ttrss_feeds.title, date_entered DESC
2693 LIMIT $limit");
2694
2695 $cur_feed_title = "";
2696
9cd7c995
AD
2697 $headlines_count = db_num_rows($result);
2698
7e3634d9
AD
2699 while ($line = db_fetch_assoc($result)) {
2700 $updated = smart_date_time(strtotime($line["last_updated"]));
2701 $feed_title = $line["feed_title"];
2702
2703 if ($cur_feed_title != $feed_title) {
2704 $cur_feed_title = $feed_title;
2705
2706 $tmp .= "$feed_title\n\n";
2707 }
2708
2709 $tmp .= " * " . trim($line["title"]) . " - $updated\n";
2710 $tmp .= " " . trim($line["link"]) . "\n";
2711 $tmp .= "\n";
2712 }
2713
2714 $tmp .= "--- \n";
d1db26aa 2715 $tmp .= __("You have been sent this email because you have enabled daily digests in Tiny Tiny RSS at ") .
dfe6f833 2716 DIGEST_HOSTNAME . "\n".
d1db26aa 2717 __("To unsubscribe, visit your configuration options or contact instance owner.\n");
7e3634d9
AD
2718
2719
9cd7c995 2720 return array($tmp, $headlines_count);
7e3634d9
AD
2721 }
2722
d9fa39f1 2723 function check_for_update($link, $brief_fmt = true) {
b72c3ef8
AD
2724 $releases_feed = "http://tt-rss.spb.ru/releases.rss";
2725
2726 if (!CHECK_FOR_NEW_VERSION || $_SESSION["access_level"] < 10) {
2727 return;
2728 }
2729
2730 error_reporting(0);
2731 $rss = fetch_rss($releases_feed);
2732 error_reporting (DEFAULT_ERROR_LEVEL);
2733
2734 if ($rss) {
2735
2736 $items = $rss->items;
2737
2738 if (!$items || !is_array($items)) $items = $rss->entries;
2739 if (!$items || !is_array($items)) $items = $rss;
2740
da412ad3 2741 if (!is_array($items) || count($items) == 0) {
b72c3ef8 2742 return;
da412ad3 2743 }
b72c3ef8 2744
a41d2c65 2745 $latest_item = $items[0];
b72c3ef8 2746
a41d2c65 2747 $latest_version = trim(preg_replace("/(Milestone)|(completed)/", "", $latest_item["title"]));
b72c3ef8 2748
48e1a342
AD
2749 $release_url = sanitize_rss($latest_item["link"]);
2750 $content = sanitize_rss($latest_item["description"]);
2751
a41d2c65 2752 if (version_compare(VERSION, $latest_version) == -1) {
d9fa39f1 2753 if ($brief_fmt) {
0d32b41e 2754 return format_notice("<a href=\"javascript:showBlockElement('milestoneDetails')\">
d9fa39f1 2755 New version of Tiny-Tiny RSS ($latest_version) is available (click for details)</a>
0d32b41e 2756 <div id=\"milestoneDetails\">$content</div>");
d9fa39f1 2757 } else {
92625568
AD
2758 return "New version of Tiny-Tiny RSS ($latest_version) is available:
2759 <div class='milestoneDetails'>$content</div>
2760 Visit <a target=\"_new\" href=\"http://tt-rss.spb.ru/\">official site</a> for
2761 download and update information.";
d9fa39f1
AD
2762 }
2763
da412ad3 2764 }
b72c3ef8
AD
2765 }
2766 }
472782e8 2767
18eddb2c
AD
2768 function markArticlesById($link, $ids, $cmode) {
2769
2770 $tmp_ids = array();
2771
2772 foreach ($ids as $id) {
2773 array_push($tmp_ids, "ref_id = '$id'");
2774 }
2775
2776 $ids_qpart = join(" OR ", $tmp_ids);
2777
2778 if ($cmode == 0) {
2779 db_query($link, "UPDATE ttrss_user_entries SET
2780 marked = false,last_read = NOW()
2781 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
2782 } else if ($cmode == 1) {
2783 db_query($link, "UPDATE ttrss_user_entries SET
2784 marked = true
2785 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
2786 } else {
2787 db_query($link, "UPDATE ttrss_user_entries SET
2788 marked = NOT marked,last_read = NOW()
2789 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
2790 }
2791 }
2792
472782e8
AD
2793 function catchupArticlesById($link, $ids, $cmode) {
2794
2795 $tmp_ids = array();
2796
2797 foreach ($ids as $id) {
2798 array_push($tmp_ids, "ref_id = '$id'");
2799 }
2800
2801 $ids_qpart = join(" OR ", $tmp_ids);
2802
2803 if ($cmode == 0) {
2804 db_query($link, "UPDATE ttrss_user_entries SET
2805 unread = false,last_read = NOW()
2806 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
2807 } else if ($cmode == 1) {
2808 db_query($link, "UPDATE ttrss_user_entries SET
2809 unread = true
2810 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
2811 } else {
2812 db_query($link, "UPDATE ttrss_user_entries SET
2813 unread = NOT unread,last_read = NOW()
2814 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
2815 }
2816 }
2817
e097e8be
AD
2818 function catchupArticleById($link, $id, $cmode) {
2819
2820 if ($cmode == 0) {
2821 db_query($link, "UPDATE ttrss_user_entries SET
2822 unread = false,last_read = NOW()
2823 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
2824 } else if ($cmode == 1) {
2825 db_query($link, "UPDATE ttrss_user_entries SET
2826 unread = true
2827 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
2828 } else {
2829 db_query($link, "UPDATE ttrss_user_entries SET
2830 unread = NOT unread,last_read = NOW()
2831 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
2832 }
2833 }
2834
a262b161
AD
2835 function escape_for_form($s) {
2836 return htmlspecialchars(db_unescape_string($s));
2837 }
2838
1f64b1be
AD
2839 function make_guid_from_title($title) {
2840 return preg_replace("/[ \"\',.:;]/", "-",
2841 mb_strtolower(strip_tags($title)));
2842 }
2843
11befbb2
AD
2844 function print_headline_subtoolbar($link, $feed_site_url, $feed_title,
2845 $bottom = false, $rtl_content = false, $feed_id = 0,
2846 $is_cat = false, $search = false, $match_on = false,
95a82c08 2847 $search_mode = false, $offset = 0, $limit = 0) {
11befbb2 2848
e6c115b2
AD
2849 $user_page_offset = $offset + 1;
2850
11befbb2
AD
2851 if (!$bottom) {
2852 $class = "headlinesSubToolbar";
2853 $tid = "headlineActionsTop";
2854 } else {
2855 $class = "headlinesSubToolbar";
2856 $tid = "headlineActionsBottom";
2857 }
2858
2859 print "<table class=\"$class\" id=\"$tid\"
2860 width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tr>";
2861
2862 if ($rtl_content) {
2863 $rtl_cpart = "RTL";
2864 } else {
2865 $rtl_cpart = "";
2866 }
2867
e6c115b2
AD
2868 $page_prev_link = "javascript:viewFeedGoPage(-1)";
2869 $page_next_link = "javascript:viewFeedGoPage(1)";
2870 $page_first_link = "javascript:viewFeedGoPage(0)";
203de776 2871
eb28b131
AD
2872 $catchup_page_link = "javascript:catchupPage()";
2873 $catchup_feed_link = "javascript:catchupCurrentFeed()";
c6008b62 2874
11befbb2
AD
2875 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
2876
c6008b62
AD
2877 $sel_all_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, '', true)";
2878 $sel_unread_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true)";
2879 $sel_none_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false)";
11befbb2 2880
c6008b62
AD
2881 $tog_unread_link = "javascript:selectionToggleUnread()";
2882 $tog_marked_link = "javascript:selectionToggleMarked()";
11befbb2 2883
c6008b62 2884 } else {
11befbb2 2885
c6008b62
AD
2886 $sel_all_link = "javascript:cdmSelectArticles('all')";
2887 $sel_unread_link = "javascript:cdmSelectArticles('unread')";
2888 $sel_none_link = "javascript:cdmSelectArticles('none')";
2889
2890 $tog_unread_link = "javascript:selectionToggleUnread(true)";
2891 $tog_marked_link = "javascript:selectionToggleMarked(true)";
2892
2893 }
2894
2dd2c13b 2895 if (!strstr($_SESSION["client.userAgent"], "MSIE")) {
c6008b62 2896
2dd2c13b
AD
2897 print "<td class=\"headlineActions$rtl_cpart\">
2898 <ul class=\"headlineDropdownMenu\">
2899 <li class=\"top2\">
3692e98f 2900 ".__('Select:')."
1025ad87
AD
2901 <a href=\"$sel_all_link\">".__('All')."</a>,
2902 <a href=\"$sel_unread_link\">".__('Unread')."</a>,
2903 <a href=\"$sel_none_link\">".__('None')."</a></li>
2dd2c13b 2904 <li class=\"vsep\">&nbsp;</li>
9cc600d1
AD
2905 <li class=\"top\">Toggle<ul>
2906 <li onclick=\"$tog_unread_link\">".__('Unread')."</li>
2907 <li onclick=\"$tog_marked_link\">".__('Starred')."</li></ul></li>
2dd2c13b 2908 <li class=\"vsep\">&nbsp;</li>
1025ad87
AD
2909 <li class=\"top\"><a href=\"$catchup_page_link\">".__('Mark as read')."</a><ul>
2910 <li onclick=\"$catchup_page_link\">".__('This page')."</li>
2911 <li onclick=\"$catchup_feed_link\">".__('Entire feed')."</li></ul></li>
2912 <li class=\"vsep\">&nbsp;</li>";
95a82c08
AD
2913
2914 if ($limit != 0) {
2915 print "
1025ad87
AD
2916 <li class=\"top\"><a href=\"$page_next_link\">".__('Next page')."</a><ul>
2917 <li onclick=\"$page_prev_link\">".__('Previous page')."</li>
2918 <li onclick=\"$page_first_link\">".__('First page')."</li></ul></li>
95a82c08
AD
2919 </ul>";
2920 }
2921
2922 print "
2dd2c13b
AD
2923 </td>";
2924
2925 } else {
e6c115b2
AD
2926 // old style subtoolbar:
2927
2dd2c13b 2928 print "<td class=\"headlineActions$rtl_cpart\">".
d1db26aa 2929 __('Select:')."
1025ad87
AD
2930 <a href=\"$sel_all_link\">".__('All')."</a>,
2931 <a href=\"$sel_unread_link\">".__('Unread')."</a>,
2932 <a href=\"$sel_none_link\">".__('None')."</a>
2dd2c13b 2933 &nbsp;&nbsp;".
1025ad87
AD
2934 __('Toggle:')." <a href=\"$tog_unread_link\">".__('Unread')."</a>,
2935 <a href=\"$tog_marked_link\">".__('Starred')."</a>
2dd2c13b 2936 &nbsp;&nbsp;".
d1db26aa 2937 __('Mark as read:')."
1025ad87
AD
2938 <a href=\"#\" onclick=\"$catchup_page_link\">".__('Page')."</a>,
2939 <a href=\"#\" onclick=\"$catchup_feed_link\">".__('Feed')."</a>";
2dd2c13b
AD
2940 print "</td>";
2941
2942 }
c6008b62
AD
2943
2944 if ($search && $feed_id >= 0 && get_pref($link, 'ENABLE_LABELS') && GLOBAL_ENABLE_LABELS) {
2945 print "<td class=\"headlineActions$rtl_cpart\">
2946 <a href=\"javascript:labelFromSearch('$search', '$search_mode',
2947 '$match_on', '$feed_id', '$is_cat');\">
d1db26aa 2948 ".__('Convert to Label')."</a></td>";
11befbb2
AD
2949 }
2950
2951 print "<td class=\"headlineTitle$rtl_cpart\">";
2952
2953 if ($feed_site_url) {
2954 if (!$bottom) {
2955 $target = "target=\"_blank\"";
2956 }
2957 print "<a $target href=\"$feed_site_url\">$feed_title</a>";
2958 } else {
2959 print $feed_title;
2960 }
2961
2962 if ($search) {
2963 $search_q = "&q=$search&m=$match_on&smode=$search_mode";
2964 }
2965
e6c115b2
AD
2966 if ($user_page_offset > 1) {
2967 print " [$user_page_offset] ";
2968 }
2969
11befbb2 2970 if (!$bottom) {
e6c115b2 2971 print "
11befbb2
AD
2972 <a target=\"_new\"
2973 href=\"backend.php?op=rss&id=$feed_id&is_cat=$is_cat$search_q\">
2974 <img class=\"noborder\"
1025ad87 2975 alt=\"".__('Generated feed')."\" src=\"images/feed-icon-12x12.png\">
11befbb2
AD
2976 </a>";
2977 }
2978
2979 print "</td>";
2980 print "</tr></table>";
2981
2982 }
2983
f407c086
AD
2984 function outputFeedList($link, $tags = false) {
2985
3bd9a780 2986 print "<ul class=\"feedList\" id=\"feedList\">";
f407c086
AD
2987
2988 $owner_uid = $_SESSION["uid"];
2989
cf4d339c 2990 /* virtual feeds */
f407c086 2991
cf4d339c 2992 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3bd9a780
AD
2993 print "<li class=\"feedCat\">".__('Special')."</li>";
2994 print "<li id=\"feedCatHolder\" class=\"feedCatHolder\"><ul class=\"feedCatList\">";
cf4d339c 2995 }
f407c086 2996
cf4d339c 2997 $num_starred = getFeedUnread($link, -1);
f407c086 2998
cf4d339c 2999 $class = "virt";
f407c086 3000
cf4d339c 3001 if ($num_starred > 0) $class .= "Unread";
f407c086 3002
d1db26aa 3003 printFeedEntry(-1, $class, __("Starred articles"), $num_starred,
cf4d339c 3004 "images/mark_set.png", $link);
f407c086 3005
cf4d339c 3006 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3bd9a780 3007 print "</ul>";
cf4d339c 3008 }
f407c086 3009
cf4d339c 3010 if (!$tags) {
f407c086
AD
3011
3012 if (GLOBAL_ENABLE_LABELS && get_pref($link, 'ENABLE_LABELS')) {
3013
3014 $result = db_query($link, "SELECT id,sql_exp,description FROM
3015 ttrss_labels WHERE owner_uid = '$owner_uid' ORDER by description");
3016
3017 if (db_num_rows($result) > 0) {
3018 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3bd9a780
AD
3019 print "<li class=\"feedCat\">".__('Labels')."</li>";
3020 print "<li id=\"feedCatHolder\" class=\"feedCatHolder\"><ul class=\"feedCatList\">";
f407c086 3021 } else {
3bd9a780 3022 print "<li><hr></li>";
f407c086
AD
3023 }
3024 }
3025
3026 while ($line = db_fetch_assoc($result)) {
3027
3028 error_reporting (0);
3029
3030 $label_id = -$line['id'] - 11;
3031 $count = getFeedUnread($link, $label_id);
3032
3033 $class = "label";
3034
3035 if ($count > 0) {
3036 $class .= "Unread";
3037 }
3038
3039 error_reporting (DEFAULT_ERROR_LEVEL);
3040
3041 printFeedEntry($label_id,
3042 $class, db_unescape_string($line["description"]),
3043 $count, "images/label.png", $link);
3044
3045 }
3046
3047 if (db_num_rows($result) > 0) {
3048 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3049 print "</ul>";
3050 }
3051 }
3052
3053 }
3054
3055 if (!get_pref($link, 'ENABLE_FEED_CATS')) {
3bd9a780 3056 print "<li><hr></li>";
f407c086
AD
3057 }
3058
3059 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3060 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
3061 $order_by_qpart = "category,unread DESC,title";
3062 } else {
3063 $order_by_qpart = "category,title";
3064 }
3065 } else {
3066 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
3067 $order_by_qpart = "unread DESC,title";
3068 } else {
3069 $order_by_qpart = "title";
3070 }
3071 }
3072
3073 $result = db_query($link, "SELECT ttrss_feeds.*,
3074 SUBSTRING(last_updated,1,19) AS last_updated_noms,
3075 (SELECT COUNT(id) FROM ttrss_entries,ttrss_user_entries
3076 WHERE feed_id = ttrss_feeds.id AND unread = true
3077 AND ttrss_user_entries.ref_id = ttrss_entries.id
3078 AND owner_uid = '$owner_uid') as unread,
3079 cat_id,last_error,
3080 ttrss_feed_categories.title AS category,
3081 ttrss_feed_categories.collapsed
3082 FROM ttrss_feeds LEFT JOIN ttrss_feed_categories
3083 ON (ttrss_feed_categories.id = cat_id)
3084 WHERE
3085 ttrss_feeds.hidden = false AND
3086 ttrss_feeds.owner_uid = '$owner_uid' AND parent_feed IS NULL
3087 ORDER BY $order_by_qpart");
3088
3089 $actid = $_GET["actid"];
3090
3091 /* real feeds */
3092
3093 $lnum = 0;
3094
3095 $total_unread = 0;
3096
3097 $category = "";
3098
3099 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
3100
3101 while ($line = db_fetch_assoc($result)) {
3102
3103 $feed = db_unescape_string($line["title"]);
3104 $feed_id = $line["id"];
3105
3106 $subop = $_GET["subop"];
3107
3108 $unread = $line["unread"];
3109
3110 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
3111 $last_updated = smart_date_time(strtotime($line["last_updated_noms"]));
3112 } else {
3113 $last_updated = date($short_date, strtotime($line["last_updated_noms"]));
3114 }
3115
3116 $rtl_content = sql_bool_to_bool($line["rtl_content"]);
3117
3118 if ($rtl_content) {
3119 $rtl_tag = "dir=\"RTL\"";
3120 } else {
3121 $rtl_tag = "";
3122 }
3123
3124 $tmp_result = db_query($link,
3125 "SELECT id,COUNT(unread) AS unread
3126 FROM ttrss_feeds LEFT JOIN ttrss_user_entries
3127 ON (ttrss_feeds.id = ttrss_user_entries.feed_id)
3128 WHERE parent_feed = '$feed_id' AND unread = true
3129 GROUP BY ttrss_feeds.id");
3130
3131 if (db_num_rows($tmp_result) > 0) {
3132 while ($l = db_fetch_assoc($tmp_result)) {
3133 $unread += $l["unread"];
3134 }
3135 }
3136
3137 $cat_id = $line["cat_id"];
3138
3139 $tmp_category = $line["category"];
3140
3141 if (!$tmp_category) {
d1db26aa 3142 $tmp_category = __("Uncategorized");
f407c086
AD
3143 }
3144
3145 // $class = ($lnum % 2) ? "even" : "odd";
3146
3147 if ($line["last_error"]) {
3148 $class = "error";
3149 } else {
3150 $class = "feed";
3151 }
3152
3153 if ($unread > 0) $class .= "Unread";
3154
3155 if ($actid == $feed_id) {
3156 $class .= "Selected";
3157 }
3158
3159 $total_unread += $unread;
3160
3161 if ($category != $tmp_category && get_pref($link, 'ENABLE_FEED_CATS')) {
3162
3163 if ($category) {
3164 print "</ul></li>";
3165 }
3166
3167 $category = $tmp_category;
3168
3169 $collapsed = $line["collapsed"];
3170
3171 // workaround for NULL category
d1db26aa 3172 if ($category == __("Uncategorized")) {
f407c086
AD
3173 if ($_COOKIE["ttrss_vf_uclps"] == 1) {
3174 $collapsed = "t";
3175 }
3176 }
3177
3178 if ($collapsed == "t" || $collapsed == "1") {
3179 $holder_class = "invisible";
3180 $ellipsis = "...";
3181 } else {
be5b75da 3182 $holder_class = "feedCatHolder";
f407c086
AD
3183 $ellipsis = "";
3184 }
3185
3186 $cat_id = sprintf("%d", $cat_id);
3187
3188 $cat_unread = getCategoryUnread($link, $cat_id);
67dabe1a
AD
3189
3190 $catctr_class = ($cat_unread > 0) ? "catCtrHasUnread" : "catCtrNoUnread";
3191
3bd9a780 3192 print "<li class=\"feedCat\" id=\"FCAT-$cat_id\">
439bbe63 3193 <a id=\"FCATN-$cat_id\" href=\"javascript:toggleCollapseCat($cat_id)\">$tmp_category</a>
7210613a 3194 <a href=\"#\" onclick=\"javascript:viewCategory($cat_id)\" id=\"FCAP-$cat_id\">
67dabe1a
AD
3195 <span id=\"FCATCTR-$cat_id\" title=\"Click to browse category\"
3196 class=\"$catctr_class\">($cat_unread)</span> $ellipsis
3bd9a780 3197 </a></li>";
f407c086
AD
3198
3199 // !!! NO SPACE before <ul...feedCatList - breaks firstChild DOM function
3200 // -> keyboard navigation, etc.
3bd9a780 3201 print "<li id=\"feedCatHolder\" class=\"$holder_class\"><ul class=\"feedCatList\" id=\"FCATLIST-$cat_id\">";
f407c086
AD
3202 }
3203
3204 printFeedEntry($feed_id, $class, $feed, $unread,
99e37e09 3205 ICONS_DIR."/$feed_id.ico", $link, $rtl_content,
f407c086
AD
3206 $last_updated, $line["last_error"]);
3207
3208 ++$lnum;
3209 }
3210
3211 if (db_num_rows($result) == 0) {
3bd9a780 3212 print "<li>".__('No feeds to display.')."</li>";
f407c086
AD
3213 }
3214
3215 } else {
3216
3217 // tags
3218
3219/* $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
3220 FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
3221 post_int_id = ttrss_user_entries.int_id AND
3222 unread = true AND ref_id = ttrss_entries.id
3223 AND ttrss_tags.owner_uid = '$owner_uid' GROUP BY tag_name
3224 UNION
3225 select tag_name,0 as count FROM ttrss_tags WHERE owner_uid = '$owner_uid'
3226 ORDER BY tag_name"); */
3227
3228 if (get_pref($link, 'ENABLE_FEED_CATS')) {
d1db26aa 3229 print "<li class=\"feedCat\">".__('Tags')."</li>";
f407c086
AD
3230 print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">";
3231 }
3232
3233 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
3234 FROM ttrss_user_entries WHERE int_id = post_int_id
3235 AND unread = true)) AS count FROM ttrss_tags
22e00732 3236 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name ORDER BY tag_name");
f407c086
AD
3237
3238 $tags = array();
3239
3240 while ($line = db_fetch_assoc($result)) {
3241 $tags[$line["tag_name"]] += $line["count"];
3242 }
3243
3244 foreach (array_keys($tags) as $tag) {
3245
3246 $unread = $tags[$tag];
3247
3248 $class = "tag";
3249
3250 if ($unread > 0) {
3251 $class .= "Unread";
3252 }
3253
3254 printFeedEntry($tag, $class, $tag, $unread, "images/tag.png", $link);
3255
3256 }
3257
3258 if (db_num_rows($result) == 0) {
3259 print "<li>No tags to display.</li>";
3260 }
3261
3262 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3bd9a780 3263 print "</ul>";
f407c086
AD
3264 }
3265
3266 }
3267
3268 print "</ul>";
3269
3270 }
3271
0b126ac2
AD
3272 function get_article_tags($link, $id) {
3273
3274 $a_id = db_escape_string($id);
3275
3276 $tmp_result = db_query($link, "SELECT DISTINCT tag_name FROM
3277 ttrss_tags WHERE post_int_id = (SELECT int_id FROM ttrss_user_entries WHERE
93135102 3278 ref_id = '$a_id' AND owner_uid = '".$_SESSION["uid"]."' LIMIT 1) ORDER BY tag_name");
0b126ac2
AD
3279
3280 $tags = array();
3281
3282 while ($tmp_line = db_fetch_assoc($tmp_result)) {
3283 array_push($tags, $tmp_line["tag_name"]);
3284 }
3285
3286 return $tags;
3287 }
3288
d62a3b63
AD
3289 function trim_value(&$value) {
3290 $value = trim($value);
3291 }
3292
3293 function trim_array($array) {
3294 $tmp = $array;
3295 array_walk($tmp, 'trim_value');
3296 return $tmp;
3297 }
3298
be832a1a 3299 function tag_is_valid($tag) {
ef063748
AD
3300 if ($tag == '') return false;
3301 if (preg_match("/^[0-9]*$/", $tag)) return false;
3302
3303 $tag = iconv("utf-8", "utf-8", $tag);
3304 if (!$tag) return false;
3305
3306 return true;
be832a1a
AD
3307 }
3308
793185a9
AD
3309 function render_login_form($link, $mobile = false) {
3310 if (!$mobile) {
3311 require_once "login_form.php";
3312 } else {
3313 require_once "mobile/login_form.php";
3314 }
01a87dff
AD
3315 }
3316
dc56b3b7
AD
3317 // from http://developer.apple.com/internet/safari/faq.html
3318 function no_cache_incantation() {
3319 header("Expires: Mon, 22 Dec 1980 00:00:00 GMT"); // Happy birthday to me :)
3320 header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified
3321 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); // HTTP/1.1
3322 header("Cache-Control: post-check=0, pre-check=0", false);
3323 header("Pragma: no-cache"); // HTTP/1.0
3324 }
3325
42395d28
AD
3326 function format_warning($msg, $id = "") {
3327 return "<div class=\"warning\" id=\"$id\">
0d32b41e
AD
3328 <img src=\"images/sign_excl.png\">$msg</div>";
3329 }
3330
3331 function format_notice($msg) {
3332 return "<div class=\"notice\">
3333 <img src=\"images/sign_info.png\">$msg</div>";
3334 }
3335
68d2f95e
AD
3336 function format_error($msg) {
3337 return "<div class=\"error\">
3338 <img src=\"images/sign_excl.png\">$msg</div>";
3339 }
3340
4dccf1ed
AD
3341 function print_notice($msg) {
3342 return print format_notice($msg);
3343 }
3344
3345 function print_warning($msg) {
3346 return print format_warning($msg);
3347 }
3348
68d2f95e
AD
3349 function print_error($msg) {
3350 return print format_error($msg);
3351 }
3352
3353
4dccf1ed
AD
3354 function T_sprintf() {
3355 $args = func_get_args();
3356 return vsprintf(__(array_shift($args)), $args);
3357 }
3358
3de0261a
AD
3359 function outputArticleXML($link, $id, $feed_id, $mark_as_read = true) {
3360
3361 print "<article id='$id'><![CDATA[";
3362
3363 $result = db_query($link, "SELECT rtl_content FROM ttrss_feeds
3364 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
3365
3366 if (db_num_rows($result) == 1) {
3367 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
3368 } else {
3369 $rtl_content = false;
3370 }
3371
3372 if ($rtl_content) {
3373 $rtl_tag = "dir=\"RTL\"";
3374 $rtl_class = "RTL";
3375 } else {
3376 $rtl_tag = "";
3377 $rtl_class = "";
3378 }
3379
3380 if ($mark_as_read) {
3381 $result = db_query($link, "UPDATE ttrss_user_entries
3382 SET unread = false,last_read = NOW()
3383 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
3384 }
3385
3386 $result = db_query($link, "SELECT title,link,content,feed_id,comments,int_id,
3387 SUBSTRING(updated,1,16) as updated,
3388 (SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url,
3389 num_comments,
3390 author
3391 FROM ttrss_entries,ttrss_user_entries
3392 WHERE id = '$id' AND ref_id = id AND owner_uid = " . $_SESSION["uid"]);
3393
3394 if ($result) {
3395
3396 $link_target = "";
3397
3398 if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW')) {
3399 $link_target = "target=\"_new\"";
3400 }
3401
3402 $line = db_fetch_assoc($result);
3403
3404 if ($line["icon_url"]) {
3405 $feed_icon = "<img class=\"feedIcon\" src=\"" . $line["icon_url"] . "\">";
3406 } else {
3407 $feed_icon = "&nbsp;";
3408 }
3409
3410/* if ($line["comments"] && $line["link"] != $line["comments"]) {
3411 $entry_comments = "(<a href=\"".$line["comments"]."\">Comments</a>)";
3412 } else {
3413 $entry_comments = "";
3414 } */
3415
3416 $num_comments = $line["num_comments"];
3417 $entry_comments = "";
3418
3419 if ($num_comments > 0) {
3420 if ($line["comments"]) {
3421 $comments_url = $line["comments"];
3422 } else {
3423 $comments_url = $line["link"];
3424 }
3425 $entry_comments = "<a $link_target href=\"$comments_url\">$num_comments comments</a>";
3426 } else {
3427 if ($line["comments"] && $line["link"] != $line["comments"]) {
3428 $entry_comments = "<a $link_target href=\"".$line["comments"]."\">comments</a>";
3429 }
3430 }
3431
3432 print "<div class=\"postReply\">";
3433
3434 print "<div class=\"postHeader\">";
3435
3436 $entry_author = $line["author"];
3437
3438 if ($entry_author) {
3439 $entry_author = __(" - by ") . $entry_author;
3440 }
3441
3442 $parsed_updated = date(get_pref($link, 'LONG_DATE_FORMAT'),
3443 strtotime($line["updated"]));
3444
3445 print "<div class=\"postDate$rtl_class\">$parsed_updated</div>";
3446
3447 if ($line["link"]) {
3448 print "<div clear='both'><a $link_target href=\"" . $line["link"] . "\">" .
3449 $line["title"] . "</a>$entry_author</div>";
3450 } else {
3451 print "<div clear='both'>" . $line["title"] . "$entry_author</div>";
3452 }
3453
3454 $tmp_result = db_query($link, "SELECT DISTINCT tag_name FROM
3455 ttrss_tags WHERE post_int_id = " . $line["int_id"] . "
3456 ORDER BY tag_name");
3457
3458 $tags_str = "";
3459 $f_tags_str = "";
3460
3461 $num_tags = 0;
3462
3463 while ($tmp_line = db_fetch_assoc($tmp_result)) {
3464 $num_tags++;
3465 $tag = $tmp_line["tag_name"];
3466 $tag_str = "<a href=\"javascript:viewfeed('$tag')\">$tag</a>, ";
3467
3468 if ($num_tags == 6) {
3469 $tags_str .= "<a href=\"javascript:showBlockElement('allEntryTags')\">...</a>";
3470 } else if ($num_tags < 6) {
3471 $tags_str .= $tag_str;
3472 }
3473 $f_tags_str .= $tag_str;
3474 }
3475
3476 $tags_str = preg_replace("/, $/", "", $tags_str);
3477 $f_tags_str = preg_replace("/, $/", "", $f_tags_str);
3478
3479 if (!$entry_comments) $entry_comments = "&nbsp;"; # placeholder
3480
3481 if (!$tags_str) $tags_str = '<span class="tagList">'.__('no tags').'</span>';
3482
3483 print "<div style='float : right'>$tags_str
3484 <a title=\"Edit tags for this article\"
3485 href=\"javascript:editArticleTags($id, $feed_id)\">(+)</a></div>
3486 <div clear='both'>$entry_comments</div>";
3487
3488 print "</div>";
3489
3490 print "<div class=\"postIcon\">" . $feed_icon . "</div>";
3491 print "<div class=\"postContent\">";
3492
3493 if (db_num_rows($tmp_result) > 0) {
3494 print "<div id=\"allEntryTags\">".__('Tags:')."$f_tags_str</div>";
3495 }
3496
3497 if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW')) {
3498 $line["content"] = preg_replace("/href=/i", "target=\"_new\" href=", $line["content"]);
3499 }
3500
3501 $line["content"] = sanitize_rss($line["content"]);
3502
3503 print $line["content"] . "</div>";
3504
3505 print "</div>";
3506
3507 }
3508
3509 print "]]></article>";
3510
3511 }
3512
3513 function outputHeadlinesList($link, $feed, $subop, $view_mode, $limit, $cat_view,
3514 $next_unread_feed, $offset) {
3515
3516 if (!$offset) $offset = 0;
3517
3518 if ($subop == "undefined") $subop = "";
3519
3520 if ($subop == "CatchupSelected") {
3521 $ids = split(",", db_escape_string($_GET["ids"]));
3522 $cmode = sprintf("%d", $_GET["cmode"]);
3523
3524 catchupArticlesById($link, $ids, $cmode);
3525 }
3526
3527 if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0) {
3528 update_generic_feed($link, $feed, $cat_view);
3529 }
3530
3531 if ($subop == "MarkAllRead") {
3532 catchup_feed($link, $feed, $cat_view);
3533
3534 if (get_pref($link, 'ON_CATCHUP_SHOW_NEXT_FEED')) {
3535 if ($next_unread_feed) {
3536 $feed = $next_unread_feed;
3537 }
3538 }
3539 }
3540
3541 if ($feed_id > 0) {
3542 $result = db_query($link,
3543 "SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
3544
3545 if (db_num_rows($result) == 0) {
3546 print "<div align='center'>".__('Feed not found.')."</div>";
3547 return;
3548 }
3549 }
3550
3551 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
3552
3553 $result = db_query($link, "SELECT rtl_content FROM ttrss_feeds
3554 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
3555
3556 if (db_num_rows($result) == 1) {
3557 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
3558 } else {
3559 $rtl_content = false;
3560 }
3561
3562 if ($rtl_content) {
3563 $rtl_tag = "dir=\"RTL\"";
3564 } else {
3565 $rtl_tag = "";
3566 }
3567 } else {
3568 $rtl_tag = "";
3569 $rtl_content = false;
3570 }
3571
3572 $script_dt_add = get_script_dt_add();
3573
3574 /// START /////////////////////////////////////////////////////////////////////////////////
3575
3576 $search = db_escape_string($_GET["query"]);
3577 $search_mode = db_escape_string($_GET["search_mode"]);
3578 $match_on = db_escape_string($_GET["match_on"]);
3579
3580 if (!$match_on) {
3581 $match_on = "both";
3582 }
3583
3584 $real_offset = $offset * $limit;
3585
3586 $qfh_ret = queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view,
3587 $search, $search_mode, $match_on, false, $real_offset);
3588
3589 $result = $qfh_ret[0];
3590 $feed_title = $qfh_ret[1];
3591 $feed_site_url = $qfh_ret[2];
3592 $last_error = $qfh_ret[3];
3593
3594 /// STOP //////////////////////////////////////////////////////////////////////////////////
3595
3596 print "<div id=\"headlinesContainer\" $rtl_tag>";
3597
3598 if (!$result) {
3599 print "<div align='center'>".__("Could not display feed (query failed). Please check label match syntax or local configuration.")."</div>";
3600 return;
3601 }
3602
3603 print_headline_subtoolbar($link, $feed_site_url, $feed_title, false,
3604 $rtl_content, $feed, $cat_view, $search, $match_on, $search_mode,
3605 $offset, $limit);
3606
3607 print "<div id=\"headlinesInnerContainer\">";
3608
3609 if (db_num_rows($result) > 0) {
3610
3611# print "\{$offset}";
3612
3613 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
3614 print "<table class=\"headlinesList\" id=\"headlinesList\"
3615 cellspacing=\"0\">";
3616 }
3617
3618 $lnum = 0;
3619
3620 error_reporting (DEFAULT_ERROR_LEVEL);
3621
3622 $num_unread = 0;
3623
3624 while ($line = db_fetch_assoc($result)) {
3625
3626 $class = ($lnum % 2) ? "even" : "odd";
3627
3628 $id = $line["id"];
3629 $feed_id = $line["feed_id"];
3630
3631 if ($line["last_read"] == "" &&
3632 ($line["unread"] != "t" && $line["unread"] != "1")) {
3633
3634 $update_pic = "<img id='FUPDPIC-$id' src=\"images/updated.png\"
3635 alt=\"Updated\">";
3636 } else {
3637 $update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.gif\"
3638 alt=\"Updated\">";
3639 }
3640
3641 if ($line["unread"] == "t" || $line["unread"] == "1") {
3642 $class .= "Unread";
3643 ++$num_unread;
3644 $is_unread = true;
3645 } else {
3646 $is_unread = false;
3647 }
3648
3649 if ($line["marked"] == "t" || $line["marked"] == "1") {
3650 $marked_pic = "<img id=\"FMARKPIC-$id\" src=\"images/mark_set.png\"
3651 class=\"markedPic\"
3652 alt=\"Reset mark\" onclick='javascript:toggleMark($id)'>";
3653 } else {
3654 $marked_pic = "<img id=\"FMARKPIC-$id\" src=\"images/mark_unset.png\"
3655 class=\"markedPic\"
3656 alt=\"Set mark\" onclick='javascript:toggleMark($id)'>";
3657 }
3658
3659# $content_link = "<a target=\"_new\" href=\"".$line["link"]."\">" .
3660# $line["title"] . "</a>";
3661
3662 $content_link = "<a href=\"javascript:view($id,$feed_id);\">" .
3663 $line["title"] . "</a>";
3664
3665# $content_link = "<a href=\"javascript:viewContentUrl('".$line["link"]."');\">" .
3666# $line["title"] . "</a>";
3667
3668 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
3669 $updated_fmt = smart_date_time(strtotime($line["updated"]));
3670 } else {
3671 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
3672 $updated_fmt = date($short_date, strtotime($line["updated"]));
3673 }
3674
3675 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
3676 $content_preview = truncate_string(strip_tags($line["content_preview"]),
3677 100);
3678 }
3679
3680 $entry_author = $line["author"];
3681
3682 if ($entry_author) {
3683 $entry_author = " - by $entry_author";
3684 }
3685
3686 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
3687
3688 print "<tr class='$class' id='RROW-$id'>";
3689
3690 print "<td class='hlUpdatePic'>$update_pic</td>";
3691
3692 print "<td class='hlSelectRow'>
3693 <input type=\"checkbox\" onclick=\"toggleSelectRow(this)\"
3694 class=\"feedCheckBox\" id=\"RCHK-$id\">
3695 </td>";
3696
3697 print "<td class='hlMarkedPic'>$marked_pic</td>";
3698
3699 if ($line["feed_title"]) {
3700 print "<td class='hlContent'>$content_link</td>";
3701 print "<td class='hlFeed'>
3702 <a href=\"javascript:viewfeed($feed_id, '', false)\">".
3703 $line["feed_title"]."</a>&nbsp;</td>";
3704 } else {
3705 print "<td class='hlContent' valign='middle'>";
3706
3707 print "<a href=\"javascript:view($id,$feed_id);\">" .
3708 $line["title"];
3709
3710 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
3711 if ($content_preview) {
3712 print "<span class=\"contentPreview\"> - $content_preview</span>";
3713 }
3714 }
3715
3716 print "</a>";
3717 print "</td>";
3718 }
3719
3720 print "<td class=\"hlUpdated\"><nobr>$updated_fmt&nbsp;</nobr></td>";
3721
3722 print "</tr>";
3723
3724 } else {
3725
3726 if ($is_unread) {
3727 $add_class = "Unread";
3728 } else {
3729 $add_class = "";
3730 }
3731
3732 print "<div class=\"cdmArticle$add_class\" id=\"RROW-$id\">";
3733
3734 print "<div class=\"cdmHeader\">";
3735
3736 print "<div class=\"articleUpdated\">$updated_fmt</div>";
3737
3738 print "<a class=\"title\"
3739 onclick=\"javascript:toggleUnread($id, 0)\"
3740 target=\"new\" href=\"".$line["link"]."\">".$line["title"]."</a>";
3741
3742 print $entry_author;
3743
3744 if ($line["feed_title"]) {
3745 print "&nbsp;(<a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a>)";
3746 }
3747
3748 print "</div>";
3749
3750 print "<div class=\"cdmContent\">" . $line["content_preview"] . "</div><br clear=\"all\">";
3751
3752 print "<div class=\"cdmFooter\">";
3753
3754 print "$marked_pic";
3755
3756 print "<input type=\"checkbox\" onclick=\"toggleSelectRowById(this,
3757 'RROW-$id')\" class=\"feedCheckBox\" id=\"RCHK-$id\">";
3758
3759 $tags = get_article_tags($link, $id);
3760
3761 $tags_str = "";
3762
3763 foreach ($tags as $tag) {
3764 $num_tags++;
3765 $tags_str .= "<a href=\"javascript:viewfeed('$tag')\">$tag</a>, ";
3766 }
3767
3768 $tags_str = preg_replace("/, $/", "", $tags_str);
3769
3770 if ($tags_str == "") $tags_str = "no tags";
3771
3772 print " $tags_str <a title=\"Edit tags for this article\"
3773 href=\"javascript:editArticleTags($id, $feed_id, true)\">(+)</a>";
3774
3775 print "</div>";
3776
3777# print "<div align=\"center\"><a class=\"cdmToggleLink\"
3778# href=\"javascript:toggleUnread($id)\">
3779# Toggle unread</a></div>";
3780
3781 print "</div>";
3782
3783 }
3784
3785 ++$lnum;
3786 }
3787
3788 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
3789 print "</table>";
3790 }
3791
3792// print_headline_subtoolbar($link,
3793// "javascript:catchupPage()", "Mark page as read", true, $rtl_content);
3794
3795
3796 } else {
3797 print "<div class='whiteBox'>".__('No articles found.')."</div>";
3798 }
3799
3800 print "</div>";
3801
3802 print "</div>";
3803
3804
3805 }
40d13c28 3806?>