]> git.wh0rd.org - tt-rss.git/blame - functions.php
update_rss_feed: check whether feed id is valid
[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
40d13c28 9 require_once 'config.php';
cc17c205 10
f8c612d4 11 function get_translations() {
6a214f92 12 $tr = array(
019bd5a9 13 "auto" => "Detect automatically",
6a214f92
AD
14 "en_US" => "English",
15 "fr_FR" => "Français",
16 "ru_RU" => "Русский",
17 "zh_CN" => "Simplified Chinese");
f8c612d4
AD
18
19 return $tr;
20 }
21
8d039718 22 if (ENABLE_TRANSLATIONS == true) {
865220a4
AD
23 require_once "accept-to-gettext.php";
24 require_once "gettext/gettext.inc";
aba609e0 25
8d039718
AD
26 function startup_gettext() {
27
28 # Get locale from Accept-Language header
6a214f92 29 $lang = al2gt(array_keys(get_translations()), "text/html");
89cb787e
AD
30
31 if (defined('_TRANSLATION_OVERRIDE_DEFAULT')) {
32 $lang = _TRANSLATION_OVERRIDE_DEFAULT;
33 }
34
672f3f3c 35 if ($_COOKIE["ttrss_lang"] && $_COOKIE["ttrss_lang"] != "auto") {
68659d98
AD
36 $lang = $_COOKIE["ttrss_lang"];
37 }
38
8d039718
AD
39 if ($lang) {
40 _setlocale(LC_MESSAGES, $lang);
41 _bindtextdomain("messages", "locale");
42 _textdomain("messages");
43 _bind_textdomain_codeset("messages", "UTF-8");
44 }
aba609e0 45 }
aba609e0 46
cc17c205 47 startup_gettext();
865220a4
AD
48
49 } else {
50 function __($msg) {
51 return $msg;
52 }
53 function startup_gettext() {
54 // no-op
55 return true;
56 }
cc17c205
AD
57 }
58
b619ff15 59 require_once 'db-prefs.php';
5bc0bd27 60 require_once 'compat.php';
af106b0e 61 require_once 'errors.php';
8911ac8b 62 require_once 'version.php';
40d13c28 63
a8931123
AD
64 require_once 'phpmailer/class.phpmailer.php';
65
49f9c923 66 define('MAGPIE_USER_AGENT_EXT', ' (Tiny Tiny RSS/' . VERSION . ')');
a3ee2a38
AD
67 define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');
68
9fdf7824
AD
69 if (ENABLE_SIMPLEPIE) {
70 require_once "simplepie/simplepie.inc";
71 } else {
72 require_once "magpierss/rss_fetch.inc";
73 require_once 'magpierss/rss_utils.inc';
74 }
49f9c923 75
f738aef1
AD
76 include_once "tw/tw-config.php";
77 include_once "tw/tw.php";
78 include_once TW_SETUP . "paranoya.php";
79
80 $tw_parser = new twParser();
81
6f9e33e4
AD
82 function _debug($msg) {
83 $ts = strftime("%H:%M:%S", time());
84 print "[$ts] $msg\n";
85 }
86
ad507f85
AD
87 function purge_feed($link, $feed_id, $purge_interval, $debug = false) {
88
89 $rows = -1;
4c193675 90
fefa6ca3 91 if (DB_TYPE == "pgsql") {
44e241cb 92/* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
fefa6ca3 93 marked = false AND feed_id = '$feed_id' AND
35d8cf43 94 (SELECT date_entered FROM ttrss_entries WHERE
44e241cb
AD
95 id = ref_id) < NOW() - INTERVAL '$purge_interval days'"); */
96
6e7f8d26
AD
97 $pg_version = get_pgsql_version($link);
98
99 if (preg_match("/^7\./", $pg_version) || preg_match("/^8\.0/", $pg_version)) {
1e59ae35
AD
100
101 $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
102 ttrss_entries.id = ref_id AND
103 marked = false AND
104 feed_id = '$feed_id' AND
105 ttrss_entries.date_entered < NOW() - INTERVAL '$purge_interval days'");
106
107 } else {
108
109 $result = db_query($link, "DELETE FROM ttrss_user_entries
110 USING ttrss_entries
111 WHERE ttrss_entries.id = ref_id AND
112 marked = false AND
113 feed_id = '$feed_id' AND
fc774155 114 ttrss_entries.date_entered < NOW() - INTERVAL '$purge_interval days'");
1e59ae35 115 }
ad507f85
AD
116
117 $rows = pg_affected_rows($result);
118
fefa6ca3 119 } else {
1e59ae35 120
30f1746f 121/* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
fefa6ca3 122 marked = false AND feed_id = '$feed_id' AND
35d8cf43 123 (SELECT date_entered FROM ttrss_entries WHERE
30f1746f
AD
124 id = ref_id) < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)"); */
125
126 $result = db_query($link, "DELETE FROM ttrss_user_entries
127 USING ttrss_user_entries, ttrss_entries
128 WHERE ttrss_entries.id = ref_id AND
129 marked = false AND
130 feed_id = '$feed_id' AND
131 ttrss_entries.date_entered < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)");
132
ad507f85
AD
133 $rows = mysql_affected_rows($link);
134
135 }
136
137 if ($debug) {
6f9e33e4 138 _debug("Purged feed $feed_id ($purge_interval): deleted $rows articles");
fefa6ca3
AD
139 }
140 }
141
44e241cb
AD
142 function global_purge_old_posts($link, $do_output = false, $limit = false) {
143
894ebcf5 144 $random_qpart = sql_random_function();
fefa6ca3 145
44e241cb
AD
146 if ($limit) {
147 $limit_qpart = "LIMIT $limit";
148 } else {
149 $limit_qpart = "";
150 }
151
fefa6ca3 152 $result = db_query($link,
44e241cb
AD
153 "SELECT id,purge_interval,owner_uid FROM ttrss_feeds
154 ORDER BY $random_qpart $limit_qpart");
fefa6ca3
AD
155
156 while ($line = db_fetch_assoc($result)) {
157
158 $feed_id = $line["id"];
159 $purge_interval = $line["purge_interval"];
160 $owner_uid = $line["owner_uid"];
161
162 if ($purge_interval == 0) {
163
164 $tmp_result = db_query($link,
165 "SELECT value FROM ttrss_user_prefs WHERE
166 pref_name = 'PURGE_OLD_DAYS' AND owner_uid = '$owner_uid'");
167
168 if (db_num_rows($tmp_result) != 0) {
169 $purge_interval = db_fetch_result($tmp_result, 0, "value");
170 }
171 }
172
173 if ($do_output) {
ad507f85 174// print "Feed $feed_id: purge interval = $purge_interval\n";
fefa6ca3
AD
175 }
176
177 if ($purge_interval > 0) {
ad507f85 178 purge_feed($link, $feed_id, $purge_interval, $do_output);
fefa6ca3
AD
179 }
180 }
181
71604ca4 182 // purge orphaned posts in main content table
dab52d7b 183 $result = db_query($link, "DELETE FROM ttrss_entries WHERE
71604ca4
AD
184 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
185
dab52d7b
AD
186 if ($do_output) {
187 $rows = db_affected_rows($link, $result);
188 _debug("Purged $rows orphaned posts.");
189 }
190
fefa6ca3
AD
191 }
192
b6eefba5 193 function purge_old_posts($link) {
5d73494a 194
f1a80dae
AD
195 $user_id = $_SESSION["uid"];
196
197 $result = db_query($link, "SELECT id,purge_interval FROM ttrss_feeds
198 WHERE owner_uid = '$user_id'");
5d73494a
AD
199
200 while ($line = db_fetch_assoc($result)) {
201
202 $feed_id = $line["id"];
203 $purge_interval = $line["purge_interval"];
204
b619ff15 205 if ($purge_interval == 0) $purge_interval = get_pref($link, 'PURGE_OLD_DAYS');
5d73494a 206
140aae81 207 if ($purge_interval > 0) {
fefa6ca3 208 purge_feed($link, $feed_id, $purge_interval);
5d73494a
AD
209 }
210 }
71604ca4
AD
211
212 // purge orphaned posts in main content table
213 db_query($link, "DELETE FROM ttrss_entries WHERE
214 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
c3a8d71a
AD
215 }
216
c7d57b66
AD
217 function get_feed_update_interval($link, $feed_id) {
218 $result = db_query($link, "SELECT owner_uid, update_interval FROM
219 ttrss_feeds WHERE id = '$feed_id'");
220
221 if (db_num_rows($result) == 1) {
222 $update_interval = db_fetch_result($result, 0, "update_interval");
223 $owner_uid = db_fetch_result($result, 0, "owner_uid");
224
225 if ($update_interval != 0) {
226 return $update_interval;
227 } else {
228 return get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $owner_uid, false);
229 }
230
231 } else {
232 return -1;
233 }
234 }
235
1f2b01ed 236 function update_all_feeds($link, $fetch, $user_id = false, $force_daemon = false) {
40d13c28 237
4769ddaf 238 if (WEB_DEMO_MODE) return;
b0b4abcf 239
a2770077
AD
240 if (!$user_id) {
241 $user_id = $_SESSION["uid"];
242 purge_old_posts($link);
243 }
244
25af8dad 245// db_query($link, "BEGIN");
b82af8c3 246
cbd8650d
AD
247 if (MAX_UPDATE_TIME > 0) {
248 if (DB_TYPE == "mysql") {
249 $q_order = "RAND()";
250 } else {
251 $q_order = "RANDOM()";
252 }
253 } else {
254 $q_order = "last_updated DESC";
255 }
256
d148926e 257 $result = db_query($link, "SELECT feed_url,id,
798f722b 258 SUBSTRING(last_updated,1,19) AS last_updated,
5c563acd 259 update_interval FROM ttrss_feeds WHERE owner_uid = '$user_id'
cbd8650d
AD
260 ORDER BY $q_order");
261
262 $upd_start = time();
40d13c28 263
b6eefba5 264 while ($line = db_fetch_assoc($result)) {
d148926e
AD
265 $upd_intl = $line["update_interval"];
266
b619ff15 267 if (!$upd_intl || $upd_intl == 0) {
e289ca71 268 $upd_intl = get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $user_id, false);
b619ff15 269 }
d148926e 270
c1e202b7
AD
271 if ($upd_intl < 0) {
272 // Updates for this feed are disabled
273 continue;
274 }
275
93d40f50
AD
276 if ($fetch || (!$line["last_updated"] ||
277 time() - strtotime($line["last_updated"]) > ($upd_intl * 60))) {
c5142cca 278
cbd8650d
AD
279// print "<!-- feed: ".$line["feed_url"]." -->";
280
1f2b01ed 281 update_rss_feed($link, $line["feed_url"], $line["id"], $force_daemon);
cbd8650d
AD
282
283 $upd_elapsed = time() - $upd_start;
284
285 if (MAX_UPDATE_TIME > 0 && $upd_elapsed > MAX_UPDATE_TIME) {
286 return;
287 }
d148926e 288 }
40d13c28
AD
289 }
290
25af8dad 291// db_query($link, "COMMIT");
b82af8c3 292
40d13c28
AD
293 }
294
4065b60b
AD
295 function fetch_file_contents($url) {
296 if (USE_CURL_FOR_ICONS) {
297 $tmpfile = tempnam(TMP_DIRECTORY, "ttrss-tmp");
298
299 $ch = curl_init($url);
300 $fp = fopen($tmpfile, "w");
301
302 if ($fp) {
303 curl_setopt($ch, CURLOPT_FILE, $fp);
dd966fed
AD
304 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);
305 curl_setopt($ch, CURLOPT_TIMEOUT, 45);
4065b60b
AD
306 curl_exec($ch);
307 curl_close($ch);
308 fclose($fp);
309 }
310
311 $contents = file_get_contents($tmpfile);
312 unlink($tmpfile);
313
314 return $contents;
315
316 } else {
317 return file_get_contents($url);
318 }
319
320 }
78800912 321
4065b60b
AD
322 // adapted from wordpress favicon plugin by Jeff Minard (http://thecodepro.com/)
323 // http://dev.wp-plugins.org/file/favatars/trunk/favatars.php
78800912 324
4065b60b 325 function get_favicon_url($url) {
99331724 326
4065b60b 327 if ($html = @fetch_file_contents($url)) {
78800912 328
4065b60b
AD
329 if ( preg_match('/<link[^>]+rel="(?:shortcut )?icon"[^>]+?href="([^"]+?)"/si', $html, $matches)) {
330 // Attempt to grab a favicon link from their webpage url
331 $linkUrl = html_entity_decode($matches[1]);
c798704b 332
4065b60b
AD
333 if (substr($linkUrl, 0, 1) == '/') {
334 $urlParts = parse_url($url);
335 $faviconURL = $urlParts['scheme'].'://'.$urlParts['host'].$linkUrl;
336 } else if (substr($linkUrl, 0, 7) == 'http://') {
337 $faviconURL = $linkUrl;
338 } else if (substr($url, -1, 1) == '/') {
339 $faviconURL = $url.$linkUrl;
340 } else {
341 $faviconURL = $url.'/'.$linkUrl;
e695fdc8 342 }
717f5e64 343
c798704b 344 } else {
4065b60b
AD
345 // If unsuccessful, attempt to "guess" the favicon location
346 $urlParts = parse_url($url);
347 $faviconURL = $urlParts['scheme'].'://'.$urlParts['host'].'/favicon.ico';
348 }
349 }
c798704b 350
4065b60b
AD
351 // Run a test to see if what we have attempted to get actually exists.
352 if(USE_CURL_FOR_ICONS || url_validate($faviconURL)) {
353 return $faviconURL;
354 } else {
355 return false;
356 }
357 }
358
359 function url_validate($link) {
360
361 $url_parts = @parse_url($link);
362
363 if ( empty( $url_parts["host"] ) )
364 return false;
365
366 if ( !empty( $url_parts["path"] ) ) {
367 $documentpath = $url_parts["path"];
368 } else {
369 $documentpath = "/";
370 }
371
372 if ( !empty( $url_parts["query"] ) )
373 $documentpath .= "?" . $url_parts["query"];
374
375 $host = $url_parts["host"];
376 $port = $url_parts["port"];
377
378 if ( empty($port) )
379 $port = "80";
380
381 $socket = @fsockopen( $host, $port, $errno, $errstr, 30 );
382
383 if ( !$socket )
384 return false;
c798704b 385
4065b60b
AD
386 fwrite ($socket, "HEAD ".$documentpath." HTTP/1.0\r\nHost: $host\r\n\r\n");
387
388 $http_response = fgets( $socket, 22 );
389
390 $responses = "/(200 OK)|(30[0-9] Moved)/";
391 if ( preg_match($responses, $http_response) ) {
392 fclose($socket);
393 return true;
394 } else {
395 return false;
396 }
397
398 }
399
400 function check_feed_favicon($site_url, $feed, $link) {
401 $favicon_url = get_favicon_url($site_url);
402
403# print "FAVICON [$site_url]: $favicon_url\n";
404
405 error_reporting(0);
406
407 $icon_file = ICONS_DIR . "/$feed.ico";
408
409 if ($favicon_url && !file_exists($icon_file)) {
410 $contents = fetch_file_contents($favicon_url);
411
412 $fp = fopen($icon_file, "w");
78800912 413
4065b60b
AD
414 if ($fp) {
415 fwrite($fp, $contents);
416 fclose($fp);
417 chmod($icon_file, 0644);
418 }
78800912 419 }
4065b60b
AD
420
421 error_reporting(DEFAULT_ERROR_LEVEL);
422
78800912
AD
423 }
424
ddb68b81 425 function update_rss_feed($link, $feed_url, $feed, $ignore_daemon = false) {
40d13c28 426
ddb68b81 427 if (DAEMON_REFRESH_ONLY && !$_GET["daemon"] && !$ignore_daemon) {
21cfcdf2
AD
428 return;
429 }
430
4bc64807 431 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
34e420fb 432 _debug("update_rss_feed: start");
219bd8fc
AD
433 }
434
5370d37f 435 $result = db_query($link, "SELECT id,update_interval,auth_login,auth_pass,cache_images
a88c1f36
AD
436 FROM ttrss_feeds WHERE id = '$feed'");
437
5370d37f
AD
438 if (db_num_rows($result) == 0) {
439 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
440 _debug("update_rss_feed: feed $feed [$feed_url] NOT FOUND");
441 }
442 return;
443 }
444
47439031
AD
445 $auth_login = db_fetch_result($result, 0, "auth_login");
446 $auth_pass = db_fetch_result($result, 0, "auth_pass");
47c6c988 447
a88c1f36 448 $update_interval = db_fetch_result($result, 0, "update_interval");
bc0f0785 449 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
a88c1f36
AD
450
451 if ($update_interval < 0) { return; }
452
ab3d0b99
AD
453 $feed = db_escape_string($feed);
454
47c6c988
AD
455 $fetch_url = $feed_url;
456
457 if ($auth_login && $auth_pass) {
458 $url_parts = array();
459 preg_match("/(^[^:]*):\/\/(.*)/", $fetch_url, $url_parts);
460
461 if ($url_parts[1] && $url_parts[2]) {
462 $fetch_url = $url_parts[1] . "://$auth_login:$auth_pass@" . $url_parts[2];
463 }
464
465 }
ab3d0b99 466
4bc64807 467 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
ca872b9d 468 _debug("update_rss_feed: fetching [$fetch_url]...");
219bd8fc
AD
469 }
470
9fdf7824 471 if (!defined('DAEMON_EXTENDED_DEBUG') && !$_GET['xdebug']) {
219bd8fc
AD
472 error_reporting(0);
473 }
474
9fdf7824
AD
475 if (!ENABLE_SIMPLEPIE) {
476 $rss = fetch_rss($fetch_url);
477 } else {
c7d57b66
AD
478 if (!is_dir(SIMPLEPIE_CACHE_DIR)) {
479 mkdir(SIMPLEPIE_CACHE_DIR);
480 }
481
ca872b9d
AD
482 $rss = new SimplePie();
483 $rss->set_useragent(SIMPLEPIE_USERAGENT . MAGPIE_USER_AGENT_EXT);
03a577bf 484 $rss->set_timeout(MAGPIE_FETCH_TIME_OUT);
ca872b9d
AD
485 $rss->set_feed_url($fetch_url);
486 $rss->set_output_encoding('UTF-8');
c7d57b66 487
bc0f0785
AD
488 if (SIMPLEPIE_CACHE_IMAGES && $cache_images) {
489 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
490 _debug("enabling image cache");
491 }
492
dab52d7b 493 $rss->set_image_handler('./image.php', 'i');
bc0f0785 494 }
dab52d7b 495
c7d57b66
AD
496 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
497 _debug("feed update interval (sec): " .
498 get_feed_update_interval($link, $feed)*60);
499 }
500
501 if (is_dir(SIMPLEPIE_CACHE_DIR)) {
502 $rss->set_cache_location(SIMPLEPIE_CACHE_DIR);
503 $rss->set_cache_duration(get_feed_update_interval($link, $feed) * 60);
504 }
505
9fdf7824 506 $rss->init();
9fdf7824
AD
507 }
508
509// print_r($rss);
219bd8fc 510
4bc64807 511 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
34e420fb 512 _debug("update_rss_feed: fetch done, parsing...");
219bd8fc
AD
513 } else {
514 error_reporting (DEFAULT_ERROR_LEVEL);
515 }
516
b6eefba5 517 $feed = db_escape_string($feed);
dcee8f61 518
ca872b9d
AD
519 if (ENABLE_SIMPLEPIE) {
520 $fetch_ok = !$rss->error();
521 } else {
522 $fetch_ok = !!$rss;
523 }
524
525 if ($fetch_ok) {
50b62214 526
4bc64807 527 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
50b62214
AD
528 _debug("update_rss_feed: processing feed data...");
529 }
530
44e241cb 531// db_query($link, "BEGIN");
dd8c76a9 532
a88c1f36 533 $result = db_query($link, "SELECT title,icon_url,site_url,owner_uid
f324892e 534 FROM ttrss_feeds WHERE id = '$feed'");
331900c6 535
b6eefba5
AD
536 $registered_title = db_fetch_result($result, 0, "title");
537 $orig_icon_url = db_fetch_result($result, 0, "icon_url");
f324892e 538 $orig_site_url = db_fetch_result($result, 0, "site_url");
331900c6 539
7fed1940
AD
540 $owner_uid = db_fetch_result($result, 0, "owner_uid");
541
9fdf7824
AD
542 if (ENABLE_SIMPLEPIE) {
543 $site_url = $rss->get_link();
544 } else {
545 $site_url = $rss->channel["link"];
546 }
547
8d0ec6fd 548 if (get_pref($link, 'ENABLE_FEED_ICONS', $owner_uid, false)) {
4bc64807 549 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
50b62214
AD
550 _debug("update_rss_feed: checking favicon...");
551 }
9fdf7824
AD
552
553 check_feed_favicon($site_url, $feed, $link);
a2770077
AD
554 }
555
746b249f 556 if (!$registered_title || $registered_title == "[Unknown]") {
4bc64807 557
fb486a33 558 if (ENABLE_SIMPLEPIE) {
c2f8aac4 559 $feed_title = db_escape_string($rss->get_title());
fb486a33
AD
560 } else {
561 $feed_title = db_escape_string($rss->channel["title"]);
562 }
4bc64807
AD
563
564 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
565 _debug("update_rss_feed: registering title: $feed_title");
566 }
7c5a308d 567
f324892e
AD
568 db_query($link, "UPDATE ttrss_feeds SET
569 title = '$feed_title' WHERE id = '$feed'");
570 }
571
49f9c923 572 // weird, weird Magpie
9fdf7824
AD
573 if (!ENABLE_SIMPLEPIE) {
574 if (!$site_url) $site_url = db_escape_string($rss->channel["link_"]);
575 }
147f7691
AD
576
577 if ($site_url && $orig_site_url != db_escape_string($site_url)) {
f324892e
AD
578 db_query($link, "UPDATE ttrss_feeds SET
579 site_url = '$site_url' WHERE id = '$feed'");
331900c6 580 }
40d13c28 581
b7f4bda2
AD
582// print "I: " . $rss->channel["image"]["url"];
583
9fdf7824
AD
584 if (!ENABLE_SIMPLEPIE) {
585 $icon_url = $rss->image["url"];
586 } else {
587 $icon_url = $rss->get_image_url();
588 }
b7f4bda2 589
147f7691 590 if ($icon_url && !$orig_icon_url != db_escape_string($icon_url)) {
b6eefba5
AD
591 $icon_url = db_escape_string($icon_url);
592 db_query($link, "UPDATE ttrss_feeds SET icon_url = '$icon_url' WHERE id = '$feed'");
b7f4bda2
AD
593 }
594
51e456d6 595 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
50b62214
AD
596 _debug("update_rss_feed: loading filters...");
597 }
e6155a06
AD
598
599 $filters = array();
600
4b3dff6e 601 $result = db_query($link, "SELECT reg_exp,
db42b934 602 ttrss_filter_types.name AS name,
073ca0e6 603 ttrss_filter_actions.name AS action,
c2d9322b 604 inverse,
073ca0e6 605 action_param
db42b934 606 FROM ttrss_filters,ttrss_filter_types,ttrss_filter_actions WHERE
e8b79d16 607 enabled = true AND
db42b934
AD
608 owner_uid = $owner_uid AND
609 ttrss_filter_types.id = filter_type AND
610 ttrss_filter_actions.id = action_id AND
f8382011 611 (feed_id IS NULL OR feed_id = '$feed') ORDER BY reg_exp");
e6155a06 612
b6eefba5 613 while ($line = db_fetch_assoc($result)) {
e6155a06 614 if (!$filters[$line["name"]]) $filters[$line["name"]] = array();
19c9cb11
AD
615
616 $filter["reg_exp"] = $line["reg_exp"];
617 $filter["action"] = $line["action"];
073ca0e6 618 $filter["action_param"] = $line["action_param"];
c2d9322b 619 $filter["inverse"] = sql_bool_to_bool($line["inverse"]);
073ca0e6 620
19c9cb11 621 array_push($filters[$line["name"]], $filter);
e6155a06
AD
622 }
623
9fdf7824
AD
624 if (ENABLE_SIMPLEPIE) {
625 $iterator = $rss->get_items();
626 } else {
627 $iterator = $rss->items;
628 if (!$iterator || !is_array($iterator)) $iterator = $rss->entries;
629 if (!$iterator || !is_array($iterator)) $iterator = $rss;
630 }
c22789da
AD
631
632 if (!is_array($iterator)) {
39541e74 633 /* db_query($link, "UPDATE ttrss_feeds
75bd0669 634 SET last_error = 'Parse error: can\'t find any articles.'
77f0a2a7
AD
635 WHERE id = '$feed'"); */
636
637 // clear any errors and mark feed as updated if fetched okay
638 // even if it's blank
639
51e456d6 640 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
844012bc
AD
641 _debug("update_rss_feed: entry iterator is not an array, no articles?");
642 }
643
77f0a2a7
AD
644 db_query($link, "UPDATE ttrss_feeds
645 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
646
647 return; // no articles
c22789da 648 }
ddb68b81 649
51e456d6 650 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
50b62214
AD
651 _debug("update_rss_feed: processing articles...");
652 }
653
ddb68b81 654 foreach ($iterator as $item) {
7c5a308d 655
9fdf7824
AD
656 if (ENABLE_SIMPLEPIE) {
657 $entry_guid = $item->get_id();
658 if (!$entry_guid) $entry_guid = $item->get_link();
659 if (!$entry_guid) $entry_guid = make_guid_from_title($item->get_title());
660
661 } else {
662
663 $entry_guid = $item["id"];
34e420fb 664
9fdf7824
AD
665 if (!$entry_guid) $entry_guid = $item["guid"];
666 if (!$entry_guid) $entry_guid = $item["link"];
667 if (!$entry_guid) $entry_guid = make_guid_from_title($item["title"]);
668 }
be832a1a 669
9fdf7824 670 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
34e420fb
AD
671 _debug("update_rss_feed: guid $entry_guid");
672 }
673
be832a1a
AD
674 if (!$entry_guid) continue;
675
676 $entry_timestamp = "";
677
9fdf7824
AD
678 if (ENABLE_SIMPLEPIE) {
679 $entry_timestamp = strtotime($item->get_date());
680 } else {
681 $rss_2_date = $item['pubdate'];
682 $rss_1_date = $item['dc']['date'];
683 $atom_date = $item['issued'];
684 if (!$atom_date) $atom_date = $item['updated'];
be832a1a 685
9fdf7824
AD
686 if ($atom_date != "") $entry_timestamp = parse_w3cdtf($atom_date);
687 if ($rss_1_date != "") $entry_timestamp = parse_w3cdtf($rss_1_date);
688 if ($rss_2_date != "") $entry_timestamp = strtotime($rss_2_date);
689 }
9bb36aa0
AD
690
691 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
692 _debug("update_rss_feed: date $entry_timestamp");
693 }
694
2e930846 695 if ($entry_timestamp == "" || $entry_timestamp == -1 || !$entry_timestamp) {
be832a1a
AD
696 $entry_timestamp = time();
697 $no_orig_date = 'true';
698 } else {
699 $no_orig_date = 'false';
700 }
701
702 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
703
9fdf7824
AD
704 if (ENABLE_SIMPLEPIE) {
705 $entry_title = $item->get_title();
706 } else {
707 $entry_title = trim(strip_tags($item["title"]));
708 }
be832a1a 709
9fdf7824
AD
710 if (ENABLE_SIMPLEPIE) {
711 $entry_link = $item->get_link();
712 } else {
713 // strange Magpie workaround
714 $entry_link = $item["link_"];
715 if (!$entry_link) $entry_link = $item["link"];
716 }
be832a1a 717
9bb36aa0
AD
718 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
719 _debug("update_rss_feed: title $entry_title");
720 }
721
722 if (!$entry_title) $entry_title = date("Y-m-d H:i:s", $entry_timestamp);;
7d3ab0dd 723
be832a1a 724 $entry_link = strip_tags($entry_link);
7d3ab0dd 725
9fdf7824
AD
726 if (ENABLE_SIMPLEPIE) {
727 $entry_content = $item->get_description();
728 } else {
729 $entry_content = $item["content:escaped"];
730
731 if (!$entry_content) $entry_content = $item["content:encoded"];
732 if (!$entry_content) $entry_content = $item["content"];
733 if (!$entry_content) $entry_content = $item["atom_content"];
734 if (!$entry_content) $entry_content = $item["summary"];
735 if (!$entry_content) $entry_content = $item["description"];
736
737 // WTF
738 if (is_array($entry_content)) {
739 $entry_content = $entry_content["encoded"];
740 if (!$entry_content) $entry_content = $entry_content["escaped"];
741 }
be832a1a
AD
742 }
743
744// print_r($item);
745// print_r(htmlspecialchars($entry_content));
746// print "<br>";
747
748 $entry_content_unescaped = $entry_content;
be832a1a 749
9fdf7824
AD
750 if (ENABLE_SIMPLEPIE) {
751 $entry_comments = strip_tags($item->data["comments"]);
30cf38dd
AD
752 if ($item->get_author()) {
753 $entry_author = $item->get_author()->get_name();
754 }
9fdf7824
AD
755 } else {
756 $entry_comments = strip_tags($item["comments"]);
757
758 $entry_author = db_escape_string(strip_tags($item['dc']['creator']));
4d6e9157 759
9fdf7824
AD
760 if ($item['author']) {
761
762 if (is_array($item['author'])) {
763
764 if (!$entry_author) {
765 $entry_author = db_escape_string(strip_tags($item['author']['name']));
766 }
767
768 if (!$entry_author) {
769 $entry_author = db_escape_string(strip_tags($item['author']['email']));
770 }
4d6e9157 771 }
9fdf7824 772
4d6e9157 773 if (!$entry_author) {
9fdf7824 774 $entry_author = db_escape_string(strip_tags($item['author']));
4d6e9157 775 }
83f114c8 776 }
be832a1a
AD
777 }
778
83f114c8
AD
779 if (preg_match('/^[\t\n\r ]*$/', $entry_author)) $entry_author = '';
780
be832a1a
AD
781 $entry_guid = db_escape_string(strip_tags($entry_guid));
782
783 $result = db_query($link, "SELECT id FROM ttrss_entries
784 WHERE guid = '$entry_guid'");
785
786 $entry_content = db_escape_string($entry_content);
7e43ad58
AD
787
788 $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
789
be832a1a
AD
790 $entry_title = db_escape_string($entry_title);
791 $entry_link = db_escape_string($entry_link);
2544f36b
AD
792 $entry_comments = mb_substr(db_escape_string($entry_comments), 0, 250);
793 $entry_author = mb_substr($entry_author, 0, 250);
be832a1a 794
9fdf7824
AD
795 if (ENABLE_SIMPLEPIE) {
796 $num_comments = 0; #FIXME#
797 } else {
798 $num_comments = db_escape_string($item["slash"]["comments"]);
799 }
be832a1a
AD
800
801 if (!$num_comments) $num_comments = 0;
802
fefef828 803 // parse <category> entries into tags
be832a1a 804
9fdf7824 805 if (ENABLE_SIMPLEPIE) {
be832a1a 806
fefef828 807 $additional_tags = array();
9fdf7824
AD
808 $additional_tags_src = $item->get_categories();
809
a702e931
AD
810 if (is_array($additional_tags_src)) {
811 foreach ($additional_tags_src as $tobj) {
812 array_push($additional_tags, $tobj->get_term());
813 }
fefef828 814 }
fefef828 815
6af621c7
AD
816 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
817 _debug("update_rss_feed: category tags:");
818 print_r($additional_tags);
819 }
820
9fdf7824 821 } else {
fefef828 822
9fdf7824 823 $t_ctr = $item['category#'];
fefef828 824
9fdf7824
AD
825 $additional_tags = false;
826
827 if ($t_ctr == 0) {
828 $additional_tags = false;
829 } else if ($t_ctr == 1) {
830 $additional_tags = array($item['category']);
831 } else {
832 $additional_tags = array();
833 for ($i = 0; $i <= $t_ctr; $i++ ) {
834 if ($item["category#$i"]) {
835 array_push($additional_tags, $item["category#$i"]);
836 }
837 }
838 }
839
840 // parse <dc:subject> elements
841
842 $t_ctr = $item['dc']['subject#'];
843
844 if ($t_ctr == 1) {
845 $additional_tags = array($item['dc']['subject']);
846 } else if ($t_ctr > 1) {
847 $additional_tags = array();
848 for ($i = 0; $i <= $t_ctr; $i++ ) {
849 if ($item['dc']["subject#$i"]) {
850 array_push($additional_tags, $item['dc']["subject#$i"]);
851 }
fefef828
AD
852 }
853 }
854 }
8add756a 855
d48d160c 856 # sanitize content
183ad07b 857
007a38d4 858// $entry_content = sanitize_rss($entry_content);
d48d160c 859
9fdf7824 860 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
34e420fb
AD
861 _debug("update_rss_feed: done collecting data [TITLE:$entry_title]");
862 }
863
44e241cb
AD
864 db_query($link, "BEGIN");
865
4c193675
AD
866 if (db_num_rows($result) == 0) {
867
9fdf7824 868 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
34e420fb
AD
869 _debug("update_rss_feed: base guid not found");
870 }
871
4c193675
AD
872 // base post entry does not exist, create it
873
4c193675
AD
874 $result = db_query($link,
875 "INSERT INTO ttrss_entries
876 (title,
877 guid,
878 link,
879 updated,
880 content,
881 content_hash,
882 no_orig_date,
883 date_entered,
11b0dce2 884 comments,
b6104dee
AD
885 num_comments,
886 author)
4c193675
AD
887 VALUES
888 ('$entry_title',
889 '$entry_guid',
890 '$entry_link',
891 '$entry_timestamp_fmt',
892 '$entry_content',
893 '$content_hash',
894 $no_orig_date,
895 NOW(),
11b0dce2 896 '$entry_comments',
b6104dee
AD
897 '$num_comments',
898 '$entry_author')");
8926aab8
AD
899 } else {
900 // we keep encountering the entry in feeds, so we need to
901 // update date_entered column so that we don't get horrible
902 // dupes when the entry gets purged and reinserted again e.g.
903 // in the case of SLOW SLOW OMG SLOW updating feeds
904
905 $base_entry_id = db_fetch_result($result, 0, "id");
906
907 db_query($link, "UPDATE ttrss_entries SET date_entered = NOW()
908 WHERE id = '$base_entry_id'");
4c193675
AD
909 }
910
911 // now it should exist, if not - bad luck then
912
6385315d
AD
913 $result = db_query($link, "SELECT
914 id,content_hash,no_orig_date,title,
8926aab8 915 substring(date_entered,1,19) as date_entered,
11b0dce2
AD
916 substring(updated,1,19) as updated,
917 num_comments
6385315d
AD
918 FROM
919 ttrss_entries
920 WHERE guid = '$entry_guid'");
4c193675
AD
921
922 if (db_num_rows($result) == 1) {
923
9fdf7824 924 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
7ca91eb3 925 _debug("update_rss_feed: base guid found, checking for user record");
34e420fb
AD
926 }
927
11b0dce2
AD
928 // this will be used below in update handler
929 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
930 $orig_title = db_fetch_result($result, 0, "title");
931 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
8926aab8
AD
932 $orig_date_entered = strtotime(db_fetch_result($result,
933 0, "date_entered"));
6385315d 934
11b0dce2 935 $ref_id = db_fetch_result($result, 0, "id");
4c193675 936
11b0dce2 937 // check for user post link to main table
4c193675 938
11b0dce2 939 // do we allow duplicate posts with same GUID in different feeds?
8d0ec6fd 940 if (get_pref($link, "ALLOW_DUPLICATE_POSTS", $owner_uid, false)) {
11b0dce2
AD
941 $dupcheck_qpart = "AND feed_id = '$feed'";
942 } else {
943 $dupcheck_qpart = "";
944 }
71604ca4 945
11b0dce2 946// error_reporting(0);
19c9cb11 947
f8382011
AD
948 $article_filters = get_article_filters($filters, $entry_title,
949 $entry_content, $entry_link);
19c9cb11 950
9fdf7824 951 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
7ca91eb3
AD
952 _debug("update_rss_feed: article filters: ");
953 if (count($article_filters) != 0) {
954 print_r($article_filters);
955 }
956 }
957
f8382011 958 if (find_article_filter($article_filters, "filter")) {
11b0dce2
AD
959 continue;
960 }
19c9cb11 961
11b0dce2 962// error_reporting (DEFAULT_ERROR_LEVEL);
3a933f22 963
11b0dce2
AD
964 $result = db_query($link,
965 "SELECT ref_id FROM ttrss_user_entries WHERE
966 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
967 $dupcheck_qpart");
7ca91eb3 968
11b0dce2
AD
969 // okay it doesn't exist - create user entry
970 if (db_num_rows($result) == 0) {
971
9fdf7824 972 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
7ca91eb3
AD
973 _debug("update_rss_feed: user record not found, creating...");
974 }
975
f8382011 976 if (!find_article_filter($article_filters, 'catchup')) {
11b0dce2
AD
977 $unread = 'true';
978 $last_read_qpart = 'NULL';
979 } else {
980 $unread = 'false';
981 $last_read_qpart = 'NOW()';
982 }
dd7d3187 983
f8382011 984 if (find_article_filter($article_filters, 'mark')) {
dd7d3187
AD
985 $marked = 'true';
986 } else {
987 $marked = 'false';
988 }
a36c0dfe
AD
989
990 if (find_article_filter($article_filters, 'publish')) {
991 $published = 'true';
992 } else {
993 $published = 'false';
994 }
995
11b0dce2
AD
996 $result = db_query($link,
997 "INSERT INTO ttrss_user_entries
a36c0dfe 998 (ref_id, owner_uid, feed_id, unread, last_read, marked, published)
11b0dce2 999 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
a36c0dfe 1000 $last_read_qpart, $marked, $published)");
11b0dce2
AD
1001 }
1002
6385315d
AD
1003 $post_needs_update = false;
1004
8d0ec6fd 1005 if (get_pref($link, "UPDATE_POST_ON_CHECKSUM_CHANGE", $owner_uid, false) &&
6385315d 1006 ($content_hash != $orig_content_hash)) {
7e43ad58 1007// print "<!-- [$entry_title] $content_hash vs $orig_content_hash -->";
6385315d
AD
1008 $post_needs_update = true;
1009 }
1010
7e43ad58 1011 if (db_escape_string($orig_title) != $entry_title) {
6385315d
AD
1012 $post_needs_update = true;
1013 }
1014
11b0dce2
AD
1015 if ($orig_num_comments != $num_comments) {
1016 $post_needs_update = true;
1017 }
1018
6385315d
AD
1019// this doesn't seem to be very reliable
1020//
1021// if ($orig_timestamp != $entry_timestamp && !$orig_no_orig_date) {
1022// $post_needs_update = true;
1023// }
1024
1025 // if post needs update, update it and mark all user entries
1c73bc0c 1026 // linking to this post as updated
6385315d
AD
1027 if ($post_needs_update) {
1028
7ca91eb3
AD
1029 if (defined('DAEMON_EXTENDED_DEBUG')) {
1030 _debug("update_rss_feed: post $entry_guid needs update...");
1031 }
1032
6385315d
AD
1033// print "<!-- post $orig_title needs update : $post_needs_update -->";
1034
6385315d 1035 db_query($link, "UPDATE ttrss_entries
11b0dce2 1036 SET title = '$entry_title', content = '$entry_content',
7e43ad58 1037 content_hash = '$content_hash',
11b0dce2 1038 num_comments = '$num_comments'
6385315d
AD
1039 WHERE id = '$ref_id'");
1040
8d0ec6fd 1041 if (get_pref($link, "MARK_UNREAD_ON_UPDATE", $owner_uid, false)) {
4919fb42
AD
1042 db_query($link, "UPDATE ttrss_user_entries
1043 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
1044 } else {
1045 db_query($link, "UPDATE ttrss_user_entries
1046 SET last_read = null WHERE ref_id = '$ref_id' AND unread = false");
1047 }
6385315d
AD
1048
1049 }
4c193675
AD
1050 }
1051
44e241cb
AD
1052 db_query($link, "COMMIT");
1053
9fdf7824 1054 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
34e420fb
AD
1055 _debug("update_rss_feed: looking for tags...");
1056 }
1057
eb36b4eb 1058 /* taaaags */
40e1a95b 1059 // <a href="..." rel="tag">Xorg</a>, //
eb36b4eb 1060
05732aa0 1061 $entry_tags = null;
eb36b4eb 1062
40e1a95b 1063 preg_match_all("/<a.*?rel=['\"]tag['\"].*?>([^<]+)<\/a>/i",
ee2c3050
AD
1064 $entry_content_unescaped, $entry_tags);
1065
fefef828
AD
1066/* print "<p><br/>$entry_title : $entry_content_unescaped<br>";
1067 print_r($entry_tags);
1068 print "<br/></p>"; */
eb36b4eb
AD
1069
1070 $entry_tags = $entry_tags[1];
1071
073ca0e6
AD
1072 # check for manual tags
1073
f8382011
AD
1074 $tag_filter = find_article_filter($article_filters, "tag");
1075
1076 if ($tag_filter) {
073ca0e6 1077
f8382011 1078 $manual_tags = trim_array(split(",", $tag_filter[1]));
073ca0e6 1079
f8382011 1080 foreach ($manual_tags as $tag) {
be832a1a
AD
1081 if (tag_is_valid($tag)) {
1082 array_push($entry_tags, $tag);
1083 }
1084 }
1085 }
1086
11c9ea1f
AD
1087 $boring_tags = trim_array(split(",", mb_strtolower(get_pref($link,
1088 'BLACKLISTED_TAGS', $owner_uid, ''), 'utf-8')));
8fc70781 1089
fefef828
AD
1090 if ($additional_tags && is_array($additional_tags)) {
1091 foreach ($additional_tags as $tag) {
156a785d
AD
1092 if (tag_is_valid($tag) &&
1093 array_search($tag, $boring_tags) === FALSE) {
073ca0e6
AD
1094 array_push($entry_tags, $tag);
1095 }
1096 }
fefef828
AD
1097 }
1098
fcc95e24 1099// print "<p>TAGS: "; print_r($entry_tags); print "</p>";
073ca0e6 1100
9fdf7824
AD
1101 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
1102 print_r($entry_tags);
1103 }
1104
eb36b4eb
AD
1105 if (count($entry_tags) > 0) {
1106
44e241cb
AD
1107 db_query($link, "BEGIN");
1108
05732aa0
AD
1109 $result = db_query($link, "SELECT id,int_id
1110 FROM ttrss_entries,ttrss_user_entries
25da6909 1111 WHERE guid = '$entry_guid'
05732aa0 1112 AND feed_id = '$feed' AND ref_id = id
7fed1940 1113 AND owner_uid = '$owner_uid'");
eb36b4eb 1114
fe99ab12 1115 if (db_num_rows($result) == 1) {
eb36b4eb 1116
fe99ab12
AD
1117 $entry_id = db_fetch_result($result, 0, "id");
1118 $entry_int_id = db_fetch_result($result, 0, "int_id");
1119
1120 foreach ($entry_tags as $tag) {
fefef828 1121
14b6c54b 1122 $tag = sanitize_tag($tag);
fefef828 1123 $tag = db_escape_string($tag);
31483fc1 1124
ef063748
AD
1125 if (!tag_is_valid($tag)) continue;
1126
fe99ab12
AD
1127 $result = db_query($link, "SELECT id FROM ttrss_tags
1128 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
1129 owner_uid = '$owner_uid' LIMIT 1");
1130
1131 // print db_fetch_result($result, 0, "id");
1132
1133 if ($result && db_num_rows($result) == 0) {
1134
fe99ab12
AD
1135 db_query($link, "INSERT INTO ttrss_tags
1136 (owner_uid,tag_name,post_int_id)
1137 VALUES ('$owner_uid','$tag', '$entry_int_id')");
1138 }
1139 }
eb36b4eb 1140 }
44e241cb 1141 db_query($link, "COMMIT");
05732aa0 1142 }
9fdf7824
AD
1143
1144 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
1145 _debug("update_rss_feed: article processed");
1146 }
4c193675 1147 }
40d13c28 1148
ab3d0b99
AD
1149 db_query($link, "UPDATE ttrss_feeds
1150 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
eb36b4eb 1151
44e241cb 1152// db_query($link, "COMMIT");
dd8c76a9 1153
ab3d0b99 1154 } else {
ca872b9d 1155
9fdf7824 1156 if (ENABLE_SIMPLEPIE) {
ca872b9d 1157 $error_msg = mb_substr($rss->error(), 0, 250);
9fdf7824 1158 } else {
ca872b9d 1159 $error_msg = mb_substr(magpie_error(), 0, 250);
9fdf7824 1160 }
ca872b9d
AD
1161
1162 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
1163 _debug("update_rss_feed: error fetching feed: $error_msg");
1164 }
1165
1166 $error_msg = db_escape_string($error_msg);
1167
ab3d0b99 1168 db_query($link,
aa5f9f5f
AD
1169 "UPDATE ttrss_feeds SET last_error = '$error_msg',
1170 last_updated = NOW() WHERE id = '$feed'");
40d13c28
AD
1171 }
1172
9fdf7824 1173 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
34e420fb 1174 _debug("update_rss_feed: done");
219bd8fc
AD
1175 }
1176
40d13c28
AD
1177 }
1178
f175937c 1179 function print_select($id, $default, $values, $attributes = "") {
79f3553b 1180 print "<select name=\"$id\" id=\"$id\" $attributes>";
a0d53889
AD
1181 foreach ($values as $v) {
1182 if ($v == $default)
1183 $sel = " selected";
1184 else
1185 $sel = "";
1186
1187 print "<option$sel>$v</option>";
1188 }
1189 print "</select>";
1190 }
40d13c28 1191
79f3553b
AD
1192 function print_select_hash($id, $default, $values, $attributes = "") {
1193 print "<select name=\"$id\" id='$id' $attributes>";
673d54ca
AD
1194 foreach (array_keys($values) as $v) {
1195 if ($v == $default)
1196 $sel = "selected";
1197 else
1198 $sel = "";
1199
1200 print "<option $sel value=\"$v\">".$values[$v]."</option>";
1201 }
1202
1203 print "</select>";
1204 }
1205
f8382011 1206 function get_article_filters($filters, $title, $content, $link) {
240054f1 1207 $matches = array();
c2d9322b 1208
240054f1
AD
1209 if ($filters["title"]) {
1210 foreach ($filters["title"] as $filter) {
c2d9322b
AD
1211 $reg_exp = $filter["reg_exp"];
1212 $inverse = $filter["inverse"];
1213 if ((!$inverse && preg_match("/$reg_exp/i", $title)) ||
1214 ($inverse && !preg_match("/$reg_exp/i", $title))) {
1215
240054f1
AD
1216 array_push($matches, array($filter["action"], $filter["action_param"]));
1217 }
1218 }
1219 }
1220
1221 if ($filters["content"]) {
1222 foreach ($filters["content"] as $filter) {
c2d9322b
AD
1223 $reg_exp = $filter["reg_exp"];
1224 $inverse = $filter["inverse"];
1225
1226 if ((!$inverse && preg_match("/$reg_exp/i", $content)) ||
1227 ($inverse && !preg_match("/$reg_exp/i", $content))) {
1228
240054f1
AD
1229 array_push($matches, array($filter["action"], $filter["action_param"]));
1230 }
1231 }
1232 }
1233
1234 if ($filters["both"]) {
1235 foreach ($filters["both"] as $filter) {
1236 $reg_exp = $filter["reg_exp"];
c2d9322b
AD
1237 $inverse = $filter["inverse"];
1238
1239 if ($inverse) {
1240 if (!preg_match("/$reg_exp/i", $title) || !preg_match("/$reg_exp/i", $content)) {
1241 array_push($matches, array($filter["action"], $filter["action_param"]));
1242 }
1243 } else {
1244 if (preg_match("/$reg_exp/i", $title) || preg_match("/$reg_exp/i", $content)) {
1245 array_push($matches, array($filter["action"], $filter["action_param"]));
1246 }
240054f1
AD
1247 }
1248 }
1249 }
1250
1251 if ($filters["link"]) {
1252 $reg_exp = $filter["reg_exp"];
1253 foreach ($filters["link"] as $filter) {
1254 $reg_exp = $filter["reg_exp"];
c2d9322b
AD
1255 $inverse = $filter["inverse"];
1256
1257 if ((!$inverse && preg_match("/$reg_exp/i", $link)) ||
1258 ($inverse && !preg_match("/$reg_exp/i", $link))) {
1259
240054f1
AD
1260 array_push($matches, array($filter["action"], $filter["action_param"]));
1261 }
1262 }
1263 }
1264
1265 return $matches;
1266 }
1267
f8382011
AD
1268 function find_article_filter($filters, $filter_name) {
1269 foreach ($filters as $f) {
1270 if ($f[0] == $filter_name) {
1271 return $f;
1272 };
1273 }
1274 return false;
1275 }
1276
9323147e 1277 function printFeedEntry($feed_id, $class, $feed_title, $unread, $icon_file, $link,
fb1fb4ab 1278 $rtl_content = false, $last_updated = false, $last_error = false) {
254e0e4b
AD
1279
1280 if (file_exists($icon_file) && filesize($icon_file) > 0) {
023fe037 1281 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"$icon_file\">";
254e0e4b 1282 } else {
023fe037 1283 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"images/blank_icon.gif\">";
254e0e4b
AD
1284 }
1285
9323147e
AD
1286 if ($rtl_content) {
1287 $rtl_tag = "dir=\"rtl\"";
1288 } else {
1289 $rtl_tag = "dir=\"ltr\"";
1290 }
1291
78d5212c
AD
1292 $error_notify_msg = "";
1293
fb1fb4ab
AD
1294 if ($last_error) {
1295 $link_title = "Error: $last_error ($last_updated)";
78d5212c 1296 $error_notify_msg = "(Error)";
ad780e9c 1297 } else if ($last_updated) {
fb1fb4ab
AD
1298 $link_title = "Updated: $last_updated";
1299 }
1300
7210613a 1301 $feed = "<a title=\"$link_title\" id=\"FEEDL-$feed_id\"
c50e2b30 1302 href=\"javascript:viewfeed('$feed_id', '', false, '', false, 0);\">$feed_title</a>";
254e0e4b
AD
1303
1304 print "<li id=\"FEEDR-$feed_id\" class=\"$class\">";
b619ff15 1305 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
254e0e4b
AD
1306 print "$feed_icon";
1307 }
1308
9323147e 1309 print "<span $rtl_tag id=\"FEEDN-$feed_id\">$feed</span>";
254e0e4b
AD
1310
1311 if ($unread != 0) {
1312 $fctr_class = "";
1313 } else {
1314 $fctr_class = "class=\"invisible\"";
1315 }
1316
9323147e 1317 print " <span $rtl_tag $fctr_class id=\"FEEDCTR-$feed_id\">
254e0e4b 1318 (<span id=\"FEEDU-$feed_id\">$unread</span>)</span>";
78d5212c
AD
1319
1320 if (get_pref($link, "EXTENDED_FEEDLIST")) {
1321 print "<div class=\"feedExtInfo\">
1322 <span id=\"FLUPD-$feed_id\">$last_updated $error_notify_msg</span></div>";
1323 }
1324
254e0e4b
AD
1325 print "</li>";
1326
1327 }
1328
406d9489
AD
1329 function getmicrotime() {
1330 list($usec, $sec) = explode(" ",microtime());
1331 return ((float)$usec + (float)$sec);
1332 }
1333
f541eb78 1334 function print_radio($id, $default, $true_is, $values, $attributes = "") {
77e96719
AD
1335 foreach ($values as $v) {
1336
1337 if ($v == $default)
5da169d9 1338 $sel = "checked";
77e96719 1339 else
5da169d9
AD
1340 $sel = "";
1341
f541eb78 1342 if ($v == $true_is) {
5da169d9
AD
1343 $sel .= " value=\"1\"";
1344 } else {
1345 $sel .= " value=\"0\"";
1346 }
77e96719 1347
69654950
AD
1348 print "<input class=\"noborder\"
1349 type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
77e96719
AD
1350
1351 }
1352 }
1353
ff485f1d
AD
1354 function initialize_user_prefs($link, $uid) {
1355
1356 $uid = db_escape_string($uid);
1357
1358 db_query($link, "BEGIN");
1359
1360 $result = db_query($link, "SELECT pref_name,def_value FROM ttrss_prefs");
1361
1362 $u_result = db_query($link, "SELECT pref_name
1363 FROM ttrss_user_prefs WHERE owner_uid = '$uid'");
1364
1365 $active_prefs = array();
1366
1367 while ($line = db_fetch_assoc($u_result)) {
1368 array_push($active_prefs, $line["pref_name"]);
1369 }
1370
1371 while ($line = db_fetch_assoc($result)) {
1372 if (array_search($line["pref_name"], $active_prefs) === FALSE) {
1373// print "adding " . $line["pref_name"] . "<br>";
1374
1375 db_query($link, "INSERT INTO ttrss_user_prefs
1376 (owner_uid,pref_name,value) VALUES
1377 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."')");
1378
1379 }
1380 }
1381
1382 db_query($link, "COMMIT");
1383
1384 }
956c7629
AD
1385
1386 function lookup_user_id($link, $user) {
1387
1388 $result = db_query($link, "SELECT id FROM ttrss_users WHERE
1389 login = '$login'");
1390
1391 if (db_num_rows($result) == 1) {
1392 return db_fetch_result($result, 0, "id");
1393 } else {
1394 return false;
1395 }
1396 }
1397
18664970
AD
1398 function http_authenticate_user($link) {
1399
4bc64807
AD
1400 error_log("http_authenticate_user: ".$_SERVER["PHP_AUTH_USER"]."\n", 3, '/tmp/tt-rss.log');
1401
18664970
AD
1402 if (!$_SERVER["PHP_AUTH_USER"]) {
1403
1404 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
1405 header('HTTP/1.0 401 Unauthorized');
1406 exit;
1407
1408 } else {
1409 $auth_result = authenticate_user($link,
1410 $_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"]);
1411
1412 if (!$auth_result) {
1413 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
1414 header('HTTP/1.0 401 Unauthorized');
1415 exit;
1416 }
1417 }
1418
1419 return true;
1420 }
1421
461766f3 1422 function authenticate_user($link, $login, $password, $force_auth = false) {
c8437f35 1423
131b01b3 1424 if (!SINGLE_USER_MODE) {
c8437f35 1425
131b01b3 1426 $pwd_hash = 'SHA1:' . sha1($password);
461766f3
AD
1427
1428 if ($force_auth && defined('_DEBUG_USER_SWITCH')) {
1429 $query = "SELECT id,login,access_level
1430 FROM ttrss_users WHERE
1431 login = '$login'";
1432 } else {
1433 $query = "SELECT id,login,access_level
1434 FROM ttrss_users WHERE
1435 login = '$login' AND pwd_hash = '$pwd_hash'";
1436 }
1437
1438 $result = db_query($link, $query);
131b01b3
AD
1439
1440 if (db_num_rows($result) == 1) {
1441 $_SESSION["uid"] = db_fetch_result($result, 0, "id");
1442 $_SESSION["name"] = db_fetch_result($result, 0, "login");
1443 $_SESSION["access_level"] = db_fetch_result($result, 0, "access_level");
1444
1445 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
1446 $_SESSION["uid"]);
1447
1448 $user_theme = get_user_theme_path($link);
1449
1450 $_SESSION["theme"] = $user_theme;
1451 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1452
1453 initialize_user_prefs($link, $_SESSION["uid"]);
1454
1455 return true;
1456 }
1457
1458 return false;
503eb349 1459
131b01b3 1460 } else {
503eb349 1461
131b01b3
AD
1462 $_SESSION["uid"] = 1;
1463 $_SESSION["name"] = "admin";
f557cd78 1464
0bbba72d
AD
1465 $user_theme = get_user_theme_path($link);
1466
1467 $_SESSION["theme"] = $user_theme;
1468 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1469
1470 initialize_user_prefs($link, $_SESSION["uid"]);
1471
c8437f35
AD
1472 return true;
1473 }
c8437f35
AD
1474 }
1475
e6cb77a0
AD
1476 function make_password($length = 8) {
1477
1478 $password = "";
798f722b
AD
1479 $possible = "0123456789abcdfghjkmnpqrstvwxyzABCDFGHJKMNPQRSTVWXYZ";
1480
1481 $i = 0;
e6cb77a0
AD
1482
1483 while ($i < $length) {
1484 $char = substr($possible, mt_rand(0, strlen($possible)-1), 1);
1485
1486 if (!strstr($password, $char)) {
1487 $password .= $char;
1488 $i++;
1489 }
1490 }
1491 return $password;
1492 }
1493
1494 // this is called after user is created to initialize default feeds, labels
1495 // or whatever else
1496
1497 // user preferences are checked on every login, not here
1498
1499 function initialize_user($link, $uid) {
1500
1501 db_query($link, "insert into ttrss_labels (owner_uid,sql_exp,description)
1502 values ('$uid','unread = true', 'Unread articles')");
1503
1504 db_query($link, "insert into ttrss_labels (owner_uid,sql_exp,description)
1505 values ('$uid','last_read is null and unread = false', 'Updated articles')");
1506
1507 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
74bff337 1508 values ('$uid', 'Tiny Tiny RSS: New Releases',
628fcd2c 1509 'http://tt-rss.spb.ru/releases.rss')");
3b0feb9b 1510
cd2cd415
AD
1511 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
1512 values ('$uid', 'Tiny Tiny RSS: Forum',
1513 'http://tt-rss.spb.ru/forum/rss.php')");
3b0feb9b 1514 }
e6cb77a0 1515
b8aa49bc 1516 function logout_user() {
5ccc1cf5
AD
1517 session_destroy();
1518 if (isset($_COOKIE[session_name()])) {
1519 setcookie(session_name(), '', time()-42000, '/');
1520 }
b8aa49bc
AD
1521 }
1522
75836f33 1523 function get_script_urlpath() {
87a79fa4 1524 return preg_replace('/\/[^\/]*$/', "", $_SERVER["REQUEST_URI"]);
75836f33
AD
1525 }
1526
916f788a 1527 function validate_session($link) {
a2e9b457 1528 if (SESSION_CHECK_ADDRESS && $_SESSION["uid"]) {
916f788a
AD
1529 if ($_SESSION["ip_address"]) {
1530 if ($_SESSION["ip_address"] != $_SERVER["REMOTE_ADDR"]) {
7f0acba7 1531 $_SESSION["login_error_msg"] = "Session failed to validate (incorrect IP)";
916f788a
AD
1532 return false;
1533 }
1534 }
1535 }
d620cfe7 1536
a885f0ec 1537/* if ($_SESSION["cookie_lifetime"] && $_SESSION["uid"]) {
d620cfe7 1538
8e849206 1539 //print_r($_SESSION);
d620cfe7
AD
1540
1541 if (time() > $_SESSION["cookie_lifetime"]) {
1542 return false;
1543 }
a885f0ec
AD
1544 } */
1545
916f788a
AD
1546 return true;
1547 }
1548
793185a9 1549 function login_sequence($link, $mobile = false) {
b8aa49bc 1550 if (!SINGLE_USER_MODE) {
75836f33 1551
461766f3
AD
1552 if (defined('_DEBUG_USER_SWITCH') && $_SESSION["uid"]) {
1553 $swu = db_escape_string($_REQUEST["swu"]);
1554 if ($swu) {
1555 $_SESSION["prefs_cache"] = false;
1556 return authenticate_user($link, $swu, null, true);
1557 }
1558 }
1559
7f0acba7 1560 $login_action = $_POST["login_action"];
a885f0ec 1561
01a87dff 1562 # try to authenticate user if called from login form
7f0acba7 1563 if ($login_action == "do_login") {
01a87dff
AD
1564 $login = $_POST["login"];
1565 $password = $_POST["password"];
d620cfe7 1566 $remember_me = $_POST["remember_me"];
f557cd78 1567
01a87dff
AD
1568 if (authenticate_user($link, $login, $password)) {
1569 $_POST["password"] = "";
d620cfe7 1570
f8c612d4
AD
1571 $_SESSION["language"] = $_POST["language"];
1572
d620cfe7
AD
1573 header("Location: " . $_SERVER["REQUEST_URI"]);
1574 exit;
1575
01a87dff 1576 return;
7f0acba7
AD
1577 } else {
1578 $_SESSION["login_error_msg"] = "Incorrect username or password";
01a87dff
AD
1579 }
1580 }
1581
1df0f48b
AD
1582// print session_id();
1583// print_r($_SESSION);
7f0acba7
AD
1584
1585 if (!$_SESSION["uid"] || !validate_session($link)) {
793185a9 1586 render_login_form($link, $mobile);
01a87dff 1587 exit;
d3687e7a
AD
1588 } else {
1589 /* bump login timestamp */
1590 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
1591 $_SESSION["uid"]);
019bd5a9 1592
d54780bc 1593 if ($_SESSION["language"] && SESSION_COOKIE_LIFETIME > 0) {
019bd5a9
AD
1594 setcookie("ttrss_lang", $_SESSION["language"],
1595 time() + SESSION_COOKIE_LIFETIME);
1596 }
b8aa49bc 1597 }
d620cfe7 1598
b8aa49bc 1599 } else {
0bbba72d 1600 return authenticate_user($link, "admin", null);
b8aa49bc
AD
1601 }
1602 }
3547842a
AD
1603
1604 function truncate_string($str, $max_len) {
12db369c
AD
1605 if (mb_strlen($str, "utf-8") > $max_len - 3) {
1606 return mb_substr($str, 0, $max_len, "utf-8") . "...";
3547842a
AD
1607 } else {
1608 return $str;
1609 }
1610 }
54a60e1a
AD
1611
1612 function get_user_theme_path($link) {
798f722b
AD
1613 $result = db_query($link, "SELECT theme_path
1614 FROM
1615 ttrss_themes,ttrss_users
1616 WHERE ttrss_themes.id = theme_id AND ttrss_users.id = " . $_SESSION["uid"]);
54a60e1a
AD
1617 if (db_num_rows($result) != 0) {
1618 return db_fetch_result($result, 0, "theme_path");
1619 } else {
1620 return null;
1621 }
1622 }
be773442
AD
1623
1624 function smart_date_time($timestamp) {
1625 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
1626 return date("G:i", $timestamp);
f26450f1 1627 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
1628 return date("M d, G:i", $timestamp);
1629 } else {
7d7e0509 1630 return date("Y/m/d, G:i", $timestamp);
be773442
AD
1631 }
1632 }
1633
1634 function smart_date($timestamp) {
1635 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
1636 return "Today";
f26450f1 1637 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
1638 return date("D m", $timestamp);
1639 } else {
b02111c2 1640 return date("Y/m/d", $timestamp);
be773442
AD
1641 }
1642 }
a654a595
AD
1643
1644 function sql_bool_to_string($s) {
1645 if ($s == "t" || $s == "1") {
1646 return "true";
1647 } else {
1648 return "false";
1649 }
1650 }
e3c99f3b
AD
1651
1652 function sql_bool_to_bool($s) {
1653 if ($s == "t" || $s == "1") {
1654 return true;
1655 } else {
1656 return false;
1657 }
1658 }
0ea4fb50 1659
e3c99f3b 1660
0ea4fb50
AD
1661 function toggleEvenOdd($a) {
1662 if ($a == "even")
1663 return "odd";
1664 else
1665 return "even";
1666 }
6043fb7e
AD
1667
1668 function sanity_check($link) {
9cbca41f 1669
aec3ce39
AD
1670 error_reporting(0);
1671
6043fb7e
AD
1672 $error_code = 0;
1673 $result = db_query($link, "SELECT schema_version FROM ttrss_version");
1674 $schema_version = db_fetch_result($result, 0, "schema_version");
1675
1676 if ($schema_version != SCHEMA_VERSION) {
1677 $error_code = 5;
1678 }
1679
aec3ce39
AD
1680 if (DB_TYPE == "mysql") {
1681 $result = db_query($link, "SELECT true", false);
1682 if (db_num_rows($result) != 1) {
1683 $error_code = 10;
1684 }
1685 }
1686
1687 error_reporting (DEFAULT_ERROR_LEVEL);
1688
6043fb7e 1689 if ($error_code != 0) {
aec3ce39 1690 print_error_xml($error_code);
6043fb7e
AD
1691 return false;
1692 } else {
1693 return true;
4220d6b0 1694 }
6043fb7e
AD
1695 }
1696
27981ca3
AD
1697 function file_is_locked($filename) {
1698 error_reporting(0);
1699 $fp = fopen($filename, "r");
1700 error_reporting(DEFAULT_ERROR_LEVEL);
1701 if ($fp) {
1702 if (flock($fp, LOCK_EX | LOCK_NB)) {
1703 flock($fp, LOCK_UN);
1704 fclose($fp);
1705 return false;
1706 }
1707 fclose($fp);
1708 return true;
1709 }
1710 return false;
1711 }
1712
fcb4c0c9
AD
1713 function make_lockfile($filename) {
1714 $fp = fopen($filename, "w");
1715
1716 if (flock($fp, LOCK_EX | LOCK_NB)) {
1717 return $fp;
1718 } else {
1719 return false;
1720 }
1721 }
1722
bf7fcde8
AD
1723 function make_stampfile($filename) {
1724 $fp = fopen($filename, "w");
1725
8e00ae9b 1726 if (flock($fp, LOCK_EX | LOCK_NB)) {
bf7fcde8 1727 fwrite($fp, time() . "\n");
8e00ae9b 1728 flock($fp, LOCK_UN);
bf7fcde8
AD
1729 fclose($fp);
1730 return true;
1731 } else {
1732 return false;
1733 }
1734 }
1735
8e00ae9b
AD
1736 function read_stampfile($filename) {
1737
1738 error_reporting(0);
1739 $fp = fopen($filename, "r");
1740 error_reporting (DEFAULT_ERROR_LEVEL);
1741
1742 if (flock($fp, LOCK_EX)) {
1743 $stamp = fgets($fp);
1744 flock($fp, LOCK_UN);
1745 fclose($fp);
1746 return $stamp;
1747 } else {
1748 return false;
1749 }
1750 }
bf7fcde8 1751
894ebcf5
AD
1752 function sql_random_function() {
1753 if (DB_TYPE == "mysql") {
1754 return "RAND()";
1755 } else {
1756 return "RANDOM()";
1757 }
1758 }
1759
23aa0d16 1760 function catchup_feed($link, $feed, $cat_view) {
88040f57
AD
1761
1762 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
23aa0d16
AD
1763
1764 if ($cat_view) {
1765
1766 if ($feed > 0) {
1767 $cat_qpart = "cat_id = '$feed'";
1768 } else {
1769 $cat_qpart = "cat_id IS NULL";
1770 }
1771
1772 $tmp_result = db_query($link, "SELECT id
1773 FROM ttrss_feeds WHERE $cat_qpart AND owner_uid = " .
1774 $_SESSION["uid"]);
1775
1776 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1777
1778 $tmp_feed = $tmp_line["id"];
1779
1780 db_query($link, "UPDATE ttrss_user_entries
1781 SET unread = false,last_read = NOW()
1782 WHERE feed_id = '$tmp_feed' AND owner_uid = " . $_SESSION["uid"]);
1783 }
1784
1785 } else if ($feed > 0) {
1786
1787 $tmp_result = db_query($link, "SELECT id
1788 FROM ttrss_feeds WHERE parent_feed = '$feed'
1789 ORDER BY cat_id,title");
1790
1791 $parent_ids = array();
1792
1793 if (db_num_rows($tmp_result) > 0) {
1794 while ($p = db_fetch_assoc($tmp_result)) {
1795 array_push($parent_ids, "feed_id = " . $p["id"]);
1796 }
1797
1798 $children_qpart = implode(" OR ", $parent_ids);
1799
1800 db_query($link, "UPDATE ttrss_user_entries
1801 SET unread = false,last_read = NOW()
1802 WHERE (feed_id = '$feed' OR $children_qpart)
1803 AND owner_uid = " . $_SESSION["uid"]);
1804
1805 } else {
1806 db_query($link, "UPDATE ttrss_user_entries
1807 SET unread = false,last_read = NOW()
1808 WHERE feed_id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
1809 }
1810
1811 } else if ($feed < 0 && $feed > -10) { // special, like starred
1812
1813 if ($feed == -1) {
1814 db_query($link, "UPDATE ttrss_user_entries
1815 SET unread = false,last_read = NOW()
1816 WHERE marked = true AND owner_uid = ".$_SESSION["uid"]);
1817 }
e4f4b46f
AD
1818
1819 if ($feed == -2) {
1820 db_query($link, "UPDATE ttrss_user_entries
1821 SET unread = false,last_read = NOW()
1822 WHERE published = true AND owner_uid = ".$_SESSION["uid"]);
1823 }
1824
2d24f032
AD
1825 if ($feed == -3) {
1826
c1d7e6c3
AD
1827 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE");
1828
2d24f032 1829 if (DB_TYPE == "pgsql") {
c1d7e6c3 1830 $match_part .= " AND date_entered > NOW() - INTERVAL '$intl hour' ";
2d24f032
AD
1831 } else {
1832 $match_part .= " AND date_entered > DATE_SUB(NOW(),
c1d7e6c3 1833 INTERVAL $intl HOUR) ";
2d24f032
AD
1834 }
1835
1836 db_query($link, "UPDATE ttrss_user_entries
1837 SET unread = false,last_read = NOW()
1838 WHERE $match_part AND owner_uid = ".$_SESSION["uid"]);
1839 }
1840
23aa0d16
AD
1841 } else if ($feed < -10) { // label
1842
1843 // TODO make this more efficient
1844
1845 $label_id = -$feed - 11;
1846
1847 $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
1848 WHERE id = '$label_id'");
1849
1850 if ($tmp_result) {
1851 $sql_exp = db_fetch_result($tmp_result, 0, "sql_exp");
1852
1853 db_query($link, "BEGIN");
1854
1855 $tmp2_result = db_query($link,
1856 "SELECT
1857 int_id
1858 FROM
88040f57 1859 ttrss_user_entries,ttrss_entries,ttrss_feeds
23aa0d16 1860 WHERE
88040f57
AD
1861 ref_id = ttrss_entries.id AND
1862 ttrss_user_entries.feed_id = ttrss_feeds.id AND
23aa0d16 1863 $sql_exp AND
88040f57 1864 ttrss_user_entries.owner_uid = " . $_SESSION["uid"]);
23aa0d16
AD
1865
1866 while ($tmp_line = db_fetch_assoc($tmp2_result)) {
1867 db_query($link, "UPDATE
1868 ttrss_user_entries
1869 SET
1870 unread = false, last_read = NOW()
1871 WHERE
1872 int_id = " . $tmp_line["int_id"]);
1873 }
1874
1875 db_query($link, "COMMIT");
1876
1877/* db_query($link, "UPDATE ttrss_user_entries,ttrss_entries
1878 SET unread = false,last_read = NOW()
1879 WHERE $sql_exp
1880 AND ref_id = id
1881 AND owner_uid = ".$_SESSION["uid"]); */
1882 }
1883 }
1884 } else { // tag
1885 db_query($link, "BEGIN");
1886
1887 $tag_name = db_escape_string($feed);
1888
1889 $result = db_query($link, "SELECT post_int_id FROM ttrss_tags
1890 WHERE tag_name = '$tag_name' AND owner_uid = " . $_SESSION["uid"]);
1891
1892 while ($line = db_fetch_assoc($result)) {
1893 db_query($link, "UPDATE ttrss_user_entries SET
1894 unread = false, last_read = NOW()
1895 WHERE int_id = " . $line["post_int_id"]);
1896 }
1897 db_query($link, "COMMIT");
1898 }
1899 }
1900
1901 function update_generic_feed($link, $feed, $cat_view) {
1902 if ($cat_view) {
1903
1904 if ($feed > 0) {
1905 $cat_qpart = "cat_id = '$feed'";
1906 } else {
1907 $cat_qpart = "cat_id IS NULL";
1908 }
1909
1910 $tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
1911 WHERE $cat_qpart AND owner_uid = " . $_SESSION["uid"]);
1912
1913 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1914 $feed_url = $tmp_line["feed_url"];
1915 update_rss_feed($link, $feed_url, $feed, ENABLE_UPDATE_DAEMON);
1916 }
1917
1918 } else {
1919 $tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
1920 WHERE id = '$feed'");
1921 $feed_url = db_fetch_result($tmp_result, 0, "feed_url");
1922 update_rss_feed($link, $feed_url, $feed, ENABLE_UPDATE_DAEMON);
1923 }
1924 }
a9cb1f83 1925
4ffa126e 1926 function getAllCounters($link, $omode = "flc", $active_feed = false) {
cf4d339c 1927/* getLabelCounters($link);
a9cb1f83
AD
1928 getFeedCounters($link);
1929 getTagCounters($link);
1930 getGlobalCounters($link);
1931 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1932 getCategoryCounters($link);
cf4d339c
AD
1933 } */
1934
2bc2147f 1935 if (!$omode) $omode = "flc";
cf4d339c
AD
1936
1937 getGlobalCounters($link);
1938
1939 if (strchr($omode, "l")) getLabelCounters($link);
4ffa126e 1940 if (strchr($omode, "f")) getFeedCounters($link, SMART_RPC_COUNTERS, $active_feed);
cf4d339c
AD
1941 if (strchr($omode, "t")) getTagCounters($link);
1942 if (strchr($omode, "c")) {
1943 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1944 getCategoryCounters($link);
1945 }
a9cb1f83
AD
1946 }
1947 }
1948
1949 function getCategoryCounters($link) {
bba7c4bf
AD
1950 # two special categories are -1 and -2 (all virtuals; all labels)
1951
1952 $ctr = getCategoryUnread($link, -1);
1953
1954 print "<counter type=\"category\" id=\"-1\" counter=\"$ctr\"/>";
1955
1956 $ctr = getCategoryUnread($link, -2);
1957
1958 print "<counter type=\"category\" id=\"-2\" counter=\"$ctr\"/>";
1959
14073c0a
AD
1960 $age_qpart = getMaxAgeSubquery();
1961
a9cb1f83 1962 $result = db_query($link, "SELECT cat_id,SUM((SELECT COUNT(int_id)
14073c0a
AD
1963 FROM ttrss_user_entries, ttrss_entries WHERE feed_id = ttrss_feeds.id
1964 AND id = ref_id AND $age_qpart
a9cb1f83
AD
1965 AND unread = true)) AS unread FROM ttrss_feeds
1966 WHERE
cfb02131 1967 hidden = false AND owner_uid = ".$_SESSION["uid"]." GROUP BY cat_id");
a9cb1f83
AD
1968
1969 while ($line = db_fetch_assoc($result)) {
1970 $line["cat_id"] = sprintf("%d", $line["cat_id"]);
1971 print "<counter type=\"category\" id=\"".$line["cat_id"]."\" counter=\"".
1972 $line["unread"]."\"/>";
1973 }
1974 }
1975
f295c368
AD
1976 function getCategoryUnread($link, $cat) {
1977
bba7c4bf 1978 if ($cat >= 0) {
18664970 1979
bba7c4bf
AD
1980 if ($cat != 0) {
1981 $cat_query = "cat_id = '$cat'";
1982 } else {
1983 $cat_query = "cat_id IS NULL";
1984 }
14073c0a
AD
1985
1986 $age_qpart = getMaxAgeSubquery();
1987
bba7c4bf
AD
1988 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE $cat_query
1989 AND hidden = false
1990 AND owner_uid = " . $_SESSION["uid"]);
1991
1992 $cat_feeds = array();
1993 while ($line = db_fetch_assoc($result)) {
1994 array_push($cat_feeds, "feed_id = " . $line["id"]);
1995 }
1996
1997 if (count($cat_feeds) == 0) return 0;
1998
1999 $match_part = implode(" OR ", $cat_feeds);
2000
2001 $result = db_query($link, "SELECT COUNT(int_id) AS unread
14073c0a
AD
2002 FROM ttrss_user_entries,ttrss_entries
2003 WHERE unread = true AND ($match_part) AND id = ref_id
2004 AND $age_qpart AND owner_uid = " . $_SESSION["uid"]);
bba7c4bf
AD
2005
2006 $unread = 0;
2007
2008 # this needs to be rewritten
2009 while ($line = db_fetch_assoc($result)) {
2010 $unread += $line["unread"];
2011 }
2012
2013 return $unread;
2014 } else if ($cat == -1) {
2d24f032 2015 return getFeedUnread($link, -1) + getFeedUnread($link, -2) + getFeedUnread($link, -3);
bba7c4bf 2016 } else if ($cat == -2) {
f295c368 2017
bba7c4bf
AD
2018 $rv = getLabelCounters($link, false, true);
2019 $ctr = 0;
f295c368 2020
bba7c4bf
AD
2021 foreach (array_keys($rv) as $k) {
2022 if ($k < -10) {
2023 $ctr += $rv[$k]["counter"];
2024 }
2025 }
f295c368 2026
bba7c4bf 2027 return $ctr;
f295c368 2028 }
f295c368
AD
2029 }
2030
14073c0a
AD
2031 function getMaxAgeSubquery($days = COUNTERS_MAX_AGE) {
2032 if (DB_TYPE == "pgsql") {
2033 return "ttrss_entries.date_entered >
2034 NOW() - INTERVAL '$days days'";
2035 } else {
2036 return "ttrss_entries.date_entered >
2037 DATE_SUB(NOW(), INTERVAL $days DAY)";
2038 }
2039 }
2040
f295c368 2041 function getFeedUnread($link, $feed, $is_cat = false) {
a9cb1f83 2042 $n_feed = sprintf("%d", $feed);
f295c368 2043
14073c0a
AD
2044 $age_qpart = getMaxAgeSubquery();
2045
f295c368 2046 if ($is_cat) {
831ff047 2047 return getCategoryUnread($link, $n_feed);
f295c368 2048 } else if ($n_feed == -1) {
a9cb1f83 2049 $match_part = "marked = true";
e4f4b46f
AD
2050 } else if ($n_feed == -2) {
2051 $match_part = "published = true";
2d24f032
AD
2052 } else if ($n_feed == -3) {
2053 $match_part = "unread = true";
2054
c1d7e6c3
AD
2055 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE");
2056
2d24f032 2057 if (DB_TYPE == "pgsql") {
c1d7e6c3 2058 $match_part .= " AND date_entered > NOW() - INTERVAL '$intl hour' ";
2d24f032 2059 } else {
c1d7e6c3 2060 $match_part .= " AND date_entered > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
2d24f032
AD
2061 }
2062
4919fb42 2063 } else if ($n_feed > 0) {
831ff047 2064
e8b8485f
AD
2065 $result = db_query($link, "SELECT id FROM ttrss_feeds
2066 WHERE parent_feed = '$n_feed'
318260cc 2067 AND hidden = false
4919fb42 2068 AND owner_uid = " . $_SESSION["uid"]);
831ff047
AD
2069
2070 if (db_num_rows($result) > 0) {
4919fb42 2071
831ff047
AD
2072 $linked_feeds = array();
2073 while ($line = db_fetch_assoc($result)) {
2074 array_push($linked_feeds, "feed_id = " . $line["id"]);
2075 }
e8b8485f
AD
2076
2077 array_push($linked_feeds, "feed_id = $n_feed");
831ff047
AD
2078
2079 $match_part = implode(" OR ", $linked_feeds);
2080
4919fb42 2081 $result = db_query($link, "SELECT COUNT(int_id) AS unread
14073c0a
AD
2082 FROM ttrss_user_entries,ttrss_entries
2083 WHERE unread = true AND
2084 ttrss_user_entries.ref_id = ttrss_entries.id AND
2085 $age_qpart AND
2086 ($match_part) AND
2087 owner_uid = " . $_SESSION["uid"]);
4919fb42
AD
2088
2089 $unread = 0;
2090
2091 # this needs to be rewritten
2092 while ($line = db_fetch_assoc($result)) {
2093 $unread += $line["unread"];
2094 }
2095
2096 return $unread;
2097
831ff047
AD
2098 } else {
2099 $match_part = "feed_id = '$n_feed'";
2100 }
a9cb1f83 2101 } else if ($feed < -10) {
318260cc 2102
a9cb1f83
AD
2103 $label_id = -$feed - 11;
2104
2105 $result = db_query($link, "SELECT sql_exp FROM ttrss_labels WHERE
2106 id = '$label_id' AND owner_uid = " . $_SESSION["uid"]);
2107
2108 $match_part = db_fetch_result($result, 0, "sql_exp");
2109 }
2110
2111 if ($match_part) {
2112
2113 $result = db_query($link, "SELECT count(int_id) AS unread
88040f57
AD
2114 FROM ttrss_user_entries,ttrss_feeds,ttrss_entries WHERE
2115 ttrss_user_entries.feed_id = ttrss_feeds.id AND
2116 ttrss_user_entries.ref_id = ttrss_entries.id AND
cfb02131 2117 ttrss_feeds.hidden = false AND
14073c0a 2118 $age_qpart AND
88040f57 2119 unread = true AND ($match_part) AND ttrss_user_entries.owner_uid = " . $_SESSION["uid"]);
a9cb1f83
AD
2120
2121 } else {
2122
2123 $result = db_query($link, "SELECT COUNT(post_int_id) AS unread
14073c0a 2124 FROM ttrss_tags,ttrss_user_entries,ttrss_entries
828f22b7 2125 WHERE tag_name = '$feed' AND post_int_id = int_id AND ref_id = ttrss_entries.id
14073c0a 2126 AND unread = true AND $age_qpart AND
a9cb1f83
AD
2127 ttrss_tags.owner_uid = " . $_SESSION["uid"]);
2128 }
2129
2130 $unread = db_fetch_result($result, 0, "unread");
cfb02131 2131
a9cb1f83
AD
2132 return $unread;
2133 }
2134
2135 /* FIXME this needs reworking */
2136
f3acc32e
AD
2137 function getGlobalUnread($link, $user_id = false) {
2138
2139 if (!$user_id) {
2140 $user_id = $_SESSION["uid"];
2141 }
2142
14073c0a
AD
2143 $age_qpart = getMaxAgeSubquery();
2144
3831db41 2145 $result = db_query($link, "SELECT count(ttrss_entries.id) as c_id FROM ttrss_entries,ttrss_user_entries,ttrss_feeds
a9cb1f83 2146 WHERE unread = true AND
3831db41 2147 ttrss_user_entries.feed_id = ttrss_feeds.id AND
a9cb1f83 2148 ttrss_user_entries.ref_id = ttrss_entries.id AND
3831db41 2149 hidden = false AND
14073c0a 2150 $age_qpart AND
f3acc32e 2151 ttrss_user_entries.owner_uid = '$user_id'");
a9cb1f83
AD
2152 $c_id = db_fetch_result($result, 0, "c_id");
2153 return $c_id;
2154 }
2155
2156 function getGlobalCounters($link, $global_unread = -1) {
2157 if ($global_unread == -1) {
2158 $global_unread = getGlobalUnread($link);
2159 }
7bf7e4d3
AD
2160 print "<counter type=\"global\" id='global-unread'
2161 counter='$global_unread'/>";
2162
2163 $result = db_query($link, "SELECT COUNT(id) AS fn FROM
2164 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
2165
2166 $subscribed_feeds = db_fetch_result($result, 0, "fn");
2167
2168 print "<counter type=\"global\" id='subscribed-feeds'
2169 counter='$subscribed_feeds'/>";
2170
a9cb1f83
AD
2171 }
2172
2173 function getTagCounters($link, $smart_mode = SMART_RPC_COUNTERS) {
2174
2175 if ($smart_mode) {
2176 if (!$_SESSION["tctr_last_value"]) {
2177 $_SESSION["tctr_last_value"] = array();
2178 }
2179 }
2180
2181 $old_counters = $_SESSION["tctr_last_value"];
2182
2183 $tctrs_modified = false;
2184
2185/* $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
2186 FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
2187 ttrss_user_entries.ref_id = ttrss_entries.id AND
2188 ttrss_tags.owner_uid = ".$_SESSION["uid"]." AND
2189 post_int_id = ttrss_user_entries.int_id AND unread = true GROUP BY tag_name
2190 UNION
2191 select tag_name,0 as count FROM ttrss_tags
2192 WHERE ttrss_tags.owner_uid = ".$_SESSION["uid"]); */
2193
14073c0a
AD
2194 $age_qpart = getMaxAgeSubquery();
2195
a9cb1f83 2196 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
14073c0a
AD
2197 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
2198 AND ref_id = id AND $age_qpart
a9cb1f83 2199 AND unread = true)) AS count FROM ttrss_tags
ef1ac7c7
AD
2200 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name
2201 ORDER BY count DESC LIMIT 55");
a9cb1f83
AD
2202
2203 $tags = array();
2204
2205 while ($line = db_fetch_assoc($result)) {
2206 $tags[$line["tag_name"]] += $line["count"];
2207 }
2208
2209 foreach (array_keys($tags) as $tag) {
2210 $unread = $tags[$tag];
2211
2212 $tag = htmlspecialchars($tag);
2213
2214 if (!$smart_mode || $old_counters[$tag] != $unread) {
2215 $old_counters[$tag] = $unread;
2216 $tctrs_modified = true;
2217 print "<counter type=\"tag\" id=\"$tag\" counter=\"$unread\"/>";
2218 }
2219
2220 }
2221
2222 if ($smart_mode && $tctrs_modified) {
2223 $_SESSION["tctr_last_value"] = $old_counters;
2224 }
2225
2226 }
2227
ef393de7 2228 function getLabelCounters($link, $smart_mode = SMART_RPC_COUNTERS, $ret_mode = false) {
a9cb1f83 2229
14073c0a
AD
2230 $age_qpart = getMaxAgeSubquery();
2231
a9cb1f83
AD
2232 if ($smart_mode) {
2233 if (!$_SESSION["lctr_last_value"]) {
2234 $_SESSION["lctr_last_value"] = array();
2235 }
2236 }
2237
ef393de7
AD
2238 $ret_arr = array();
2239
a9cb1f83
AD
2240 $old_counters = $_SESSION["lctr_last_value"];
2241 $lctrs_modified = false;
2242
2d24f032 2243 $count = getFeedUnread($link, -1);
a9cb1f83 2244
ef393de7
AD
2245 if (!$ret_mode) {
2246 print "<counter type=\"label\" id=\"-1\" counter=\"$count\"/>";
2247 } else {
2248 $ret_arr["-1"]["counter"] = $count;
bba7c4bf 2249 $ret_arr["-1"]["description"] = __("Starred articles");
ef393de7 2250 }
a9cb1f83 2251
2d24f032 2252 $count = getFeedUnread($link, -2);
e4f4b46f
AD
2253
2254 if (!$ret_mode) {
2255 print "<counter type=\"label\" id=\"-2\" counter=\"$count\"/>";
2256 } else {
2257 $ret_arr["-2"]["counter"] = $count;
bba7c4bf 2258 $ret_arr["-2"]["description"] = __("Published articles");
e4f4b46f
AD
2259 }
2260
2d24f032
AD
2261 $count = getFeedUnread($link, -3);
2262
2263 if (!$ret_mode) {
2264 print "<counter type=\"label\" id=\"-3\" counter=\"$count\"/>";
2265 } else {
2266 $ret_arr["-3"]["counter"] = $count;
2267 $ret_arr["-3"]["description"] = __("Fresh articles");
2268 }
2269
e4f4b46f 2270
a9cb1f83
AD
2271 $result = db_query($link, "SELECT owner_uid,id,sql_exp,description FROM
2272 ttrss_labels WHERE owner_uid = ".$_SESSION["uid"]." ORDER by description");
2273
2274 while ($line = db_fetch_assoc($result)) {
2275
2276 $id = -$line["id"] - 11;
2277
ef393de7
AD
2278 $label_name = $line["description"];
2279
a9cb1f83
AD
2280 error_reporting (0);
2281
88040f57 2282 $tmp_result = db_query($link, "SELECT count(ttrss_entries.id) as count FROM ttrss_user_entries,ttrss_entries,ttrss_feeds
a9cb1f83 2283 WHERE (" . $line["sql_exp"] . ") AND unread = true AND
cfb02131 2284 ttrss_feeds.hidden = false AND
14073c0a 2285 $age_qpart AND
88040f57 2286 ttrss_user_entries.feed_id = ttrss_feeds.id AND
a9cb1f83 2287 ttrss_user_entries.ref_id = ttrss_entries.id AND
88040f57 2288 ttrss_user_entries.owner_uid = ".$_SESSION["uid"]);
a9cb1f83
AD
2289
2290 $count = db_fetch_result($tmp_result, 0, "count");
2291
2292 if (!$smart_mode || $old_counters[$id] != $count) {
2293 $old_counters[$id] = $count;
2294 $lctrs_modified = true;
ef393de7
AD
2295 if (!$ret_mode) {
2296 print "<counter type=\"label\" id=\"$id\" counter=\"$count\"/>";
2297 } else {
2298 $ret_arr[$id]["counter"] = $count;
2299 $ret_arr[$id]["description"] = $label_name;
2300 }
a9cb1f83
AD
2301 }
2302
2303 error_reporting (DEFAULT_ERROR_LEVEL);
2304 }
2305
2306 if ($smart_mode && $lctrs_modified) {
2307 $_SESSION["lctr_last_value"] = $old_counters;
2308 }
ef393de7
AD
2309
2310 return $ret_arr;
a9cb1f83
AD
2311 }
2312
2313/* function getFeedCounter($link, $id) {
2314
2315 $result = db_query($link, "SELECT
2316 count(id) as count,last_error
2317 FROM ttrss_entries,ttrss_user_entries,ttrss_feeds
2318 WHERE feed_id = '$id' AND unread = true
2319 AND ttrss_user_entries.feed_id = ttrss_feeds.id
2320 AND ttrss_user_entries.ref_id = ttrss_entries.id");
2321
2322 $count = db_fetch_result($result, 0, "count");
2323 $last_error = htmlspecialchars(db_fetch_result($result, 0, "last_error"));
2324
2325 print "<counter type=\"feed\" id=\"$id\" counter=\"$count\" error=\"$last_error\"/>";
2326 } */
2327
4ffa126e 2328 function getFeedCounters($link, $smart_mode = SMART_RPC_COUNTERS, $active_feed = false) {
a9cb1f83 2329
14073c0a
AD
2330 $age_qpart = getMaxAgeSubquery();
2331
a9cb1f83
AD
2332 if ($smart_mode) {
2333 if (!$_SESSION["fctr_last_value"]) {
2334 $_SESSION["fctr_last_value"] = array();
2335 }
2336 }
2337
2338 $old_counters = $_SESSION["fctr_last_value"];
2339
1b1b8a7b 2340/* $result = db_query($link, "SELECT id,last_error,parent_feed,
fb1fb4ab 2341 SUBSTRING(last_updated,1,19) AS last_updated,
a9cb1f83
AD
2342 (SELECT count(id)
2343 FROM ttrss_entries,ttrss_user_entries
2344 WHERE feed_id = ttrss_feeds.id AND
2345 ttrss_user_entries.ref_id = ttrss_entries.id
2346 AND unread = true AND owner_uid = ".$_SESSION["uid"].") as count
2347 FROM ttrss_feeds WHERE owner_uid = ".$_SESSION["uid"] . "
1b1b8a7b
AD
2348 AND parent_feed IS NULL"); */
2349
14073c0a
AD
2350 $query = "SELECT ttrss_feeds.id,
2351 ttrss_feeds.title,
1b1b8a7b
AD
2352 SUBSTRING(ttrss_feeds.last_updated,1,19) AS last_updated,
2353 last_error,
bc60fda3 2354 COUNT(ttrss_entries.id) AS count
1b1b8a7b
AD
2355 FROM ttrss_feeds
2356 LEFT JOIN ttrss_user_entries ON (ttrss_user_entries.feed_id = ttrss_feeds.id
2357 AND ttrss_user_entries.owner_uid = ttrss_feeds.owner_uid
2358 AND ttrss_user_entries.unread = true)
14073c0a
AD
2359 LEFT JOIN ttrss_entries ON (ttrss_user_entries.ref_id = ttrss_entries.id AND
2360 $age_qpart)
2361 WHERE ttrss_feeds.owner_uid = ".$_SESSION["uid"]."
1b1b8a7b 2362 AND parent_feed IS NULL
14073c0a 2363 GROUP BY ttrss_feeds.id, ttrss_feeds.title, ttrss_feeds.last_updated, last_error";
a9cb1f83 2364
14073c0a 2365 $result = db_query($link, $query);
a9cb1f83
AD
2366 $fctrs_modified = false;
2367
fb1fb4ab
AD
2368 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
2369
a9cb1f83
AD
2370 while ($line = db_fetch_assoc($result)) {
2371
2372 $id = $line["id"];
2373 $count = $line["count"];
2374 $last_error = htmlspecialchars($line["last_error"]);
fb1fb4ab
AD
2375
2376 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
2377 $last_updated = smart_date_time(strtotime($line["last_updated"]));
2378 } else {
2379 $last_updated = date($short_date, strtotime($line["last_updated"]));
2380 }
2381
588fb13b
AD
2382 $last_updated = htmlspecialchars($last_updated);
2383
a9cb1f83
AD
2384 $has_img = is_file(ICONS_DIR . "/$id.ico");
2385
2386 $tmp_result = db_query($link,
14073c0a 2387 "SELECT ttrss_feeds.id,COUNT(unread) AS unread
a9cb1f83
AD
2388 FROM ttrss_feeds LEFT JOIN ttrss_user_entries
2389 ON (ttrss_feeds.id = ttrss_user_entries.feed_id)
14073c0a
AD
2390 LEFT JOIN ttrss_entries ON (ttrss_user_entries.ref_id = ttrss_entries.id)
2391 WHERE parent_feed = '$id' AND $age_qpart AND unread = true GROUP BY ttrss_feeds.id");
a9cb1f83
AD
2392
2393 if (db_num_rows($tmp_result) > 0) {
2394 while ($l = db_fetch_assoc($tmp_result)) {
2395 $count += $l["unread"];
2396 }
2397 }
2398
2399 if (!$smart_mode || $old_counters[$id] != $count) {
2400 $old_counters[$id] = $count;
2401 $fctrs_modified = true;
2402
2403 if ($last_error) {
2404 $error_part = "error=\"$last_error\"";
2405 } else {
2406 $error_part = "";
2407 }
2408
2409 if ($has_img) {
2410 $has_img_part = "hi=\"$has_img\"";
2411 } else {
2412 $has_img_part = "";
2413 }
2414
4ffa126e
AD
2415 if ($active_feed && $id == $active_feed) {
2416 $has_title_part = "title=\"" . htmlspecialchars($line["title"]) . "\"";
2417 } else {
2418 $has_title_part = "";
2419 }
2420
2421 print "<counter type=\"feed\" id=\"$id\" counter=\"$count\" $has_img_part $error_part updated=\"$last_updated\" $has_title_part/>";
a9cb1f83
AD
2422 }
2423 }
2424
2425 if ($smart_mode && $fctrs_modified) {
2426 $_SESSION["fctr_last_value"] = $old_counters;
2427 }
2428 }
2429
1b758780 2430 function get_script_dt_add() {
34e420fb 2431 if (strpos(VERSION, ".99") === false) {
1b758780
AD
2432 return VERSION;
2433 } else {
2434 return time();
2435 }
2436 }
2437
6e7f8d26
AD
2438 function get_pgsql_version($link) {
2439 $result = db_query($link, "SELECT version() AS version");
2440 $version = split(" ", db_fetch_result($result, 0, "version"));
2441 return $version[1];
2442 }
2443
af106b0e
AD
2444 function print_error_xml($code, $add_msg = "") {
2445 global $ERRORS;
2446
2447 $error_msg = $ERRORS[$code];
2448
2449 if ($add_msg) {
2450 $error_msg = "$error_msg; $add_msg";
2451 }
2452
4c2abbc1 2453 print "<rpc-reply>";
af106b0e 2454 print "<error error-code=\"$code\" error-msg=\"$error_msg\"/>";
4c2abbc1 2455 print "</rpc-reply>";
af106b0e 2456 }
956c7629 2457
f27de515
AD
2458 function subscribe_to_feed($link, $feed_link, $cat_id = 0,
2459 $auth_login = '', $auth_pass = '') {
bb0f29a4 2460
b3dfe8ba 2461 # check for feed:http://url
c91c2249
AD
2462 $feed_link = trim(preg_replace("/^feed:/", "", $feed_link));
2463
b3dfe8ba 2464 # check for feed://URL
e2d84cdb 2465 if (strpos($feed_link, "//") === 0) {
b3dfe8ba
AD
2466 $feed_link = "http:$feed_link";
2467 }
2468
c91c2249 2469 if ($feed_link == "") return;
bb0f29a4 2470
956c7629
AD
2471 if ($cat_id == "0" || !$cat_id) {
2472 $cat_qpart = "NULL";
2473 } else {
2474 $cat_qpart = "'$cat_id'";
2475 }
2476
2477 $result = db_query($link,
2478 "SELECT id FROM ttrss_feeds
2479 WHERE feed_url = '$feed_link' AND owner_uid = ".$_SESSION["uid"]);
2480
2481 if (db_num_rows($result) == 0) {
2482
2483 $result = db_query($link,
f27de515
AD
2484 "INSERT INTO ttrss_feeds
2485 (owner_uid,feed_url,title,cat_id, auth_login,auth_pass)
956c7629 2486 VALUES ('".$_SESSION["uid"]."', '$feed_link',
f27de515 2487 '[Unknown]', $cat_qpart, '$auth_login', '$auth_pass')");
956c7629
AD
2488
2489 $result = db_query($link,
2490 "SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_link'
f27de515 2491 AND owner_uid = " . $_SESSION["uid"]);
956c7629
AD
2492
2493 $feed_id = db_fetch_result($result, 0, "id");
2494
2495 if ($feed_id) {
2496 update_rss_feed($link, $feed_link, $feed_id, true);
2497 }
2498
2499 return true;
2500 } else {
2501 return false;
2502 }
2503 }
2504
673d54ca
AD
2505 function print_feed_select($link, $id, $default_id = "",
2506 $attributes = "", $include_all_feeds = true) {
2507
79f3553b 2508 print "<select id=\"$id\" name=\"$id\" $attributes>";
673d54ca 2509 if ($include_all_feeds) {
89cb787e 2510 print "<option value=\"0\">".__('All feeds')."</option>";
673d54ca
AD
2511 }
2512
2513 $result = db_query($link, "SELECT id,title FROM ttrss_feeds
2514 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
2515
2516 if (db_num_rows($result) > 0 && $include_all_feeds) {
2517 print "<option disabled>--------</option>";
2518 }
2519
2520 while ($line = db_fetch_assoc($result)) {
2521 if ($line["id"] == $default_id) {
2522 $is_selected = "selected";
2523 } else {
2524 $is_selected = "";
2525 }
79f3553b 2526 printf("<option $is_selected value='%d'>%s</option>",
47439031 2527 $line["id"], htmlspecialchars($line["title"]));
673d54ca
AD
2528 }
2529
2530 print "</select>";
2531 }
2532
2533 function print_feed_cat_select($link, $id, $default_id = "",
2534 $attributes = "", $include_all_cats = true) {
2535
79f3553b 2536 print "<select id=\"$id\" name=\"$id\" $attributes>";
673d54ca
AD
2537
2538 if ($include_all_cats) {
d1db26aa 2539 print "<option value=\"0\">".__('Uncategorized')."</option>";
673d54ca
AD
2540 }
2541
2542 $result = db_query($link, "SELECT id,title FROM ttrss_feed_categories
2543 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
2544
2545 if (db_num_rows($result) > 0 && $include_all_cats) {
2546 print "<option disabled>--------</option>";
2547 }
2548
2549 while ($line = db_fetch_assoc($result)) {
2550 if ($line["id"] == $default_id) {
2551 $is_selected = "selected";
2552 } else {
2553 $is_selected = "";
2554 }
14f69488 2555 printf("<option $is_selected value='%d'>%s</option>",
47439031 2556 $line["id"], htmlspecialchars($line["title"]));
673d54ca
AD
2557 }
2558
2559 print "</select>";
2560 }
2561
14f69488
AD
2562 function checkbox_to_sql_bool($val) {
2563 return ($val == "on") ? "true" : "false";
2564 }
86b682ce
AD
2565
2566 function getFeedCatTitle($link, $id) {
2567 if ($id == -1) {
d1db26aa 2568 return __("Special");
86b682ce 2569 } else if ($id < -10) {
d1db26aa 2570 return __("Labels");
86b682ce
AD
2571 } else if ($id > 0) {
2572 $result = db_query($link, "SELECT ttrss_feed_categories.title
2573 FROM ttrss_feeds, ttrss_feed_categories WHERE ttrss_feeds.id = '$id' AND
2574 cat_id = ttrss_feed_categories.id");
2575 if (db_num_rows($result) == 1) {
2576 return db_fetch_result($result, 0, "title");
2577 } else {
d1db26aa 2578 return __("Uncategorized");
86b682ce
AD
2579 }
2580 } else {
2581 return "getFeedCatTitle($id) failed";
2582 }
2583
2584 }
2585
2586 function getFeedTitle($link, $id) {
2587 if ($id == -1) {
d1db26aa 2588 return __("Starred articles");
945c243e
AD
2589 } else if ($id == -2) {
2590 return __("Published articles");
2d24f032
AD
2591 } else if ($id == -3) {
2592 return __("Fresh articles");
86b682ce
AD
2593 } else if ($id < -10) {
2594 $label_id = -10 - $id;
2595 $result = db_query($link, "SELECT description FROM ttrss_labels WHERE id = '$label_id'");
2596 if (db_num_rows($result) == 1) {
2597 return db_fetch_result($result, 0, "description");
2598 } else {
2599 return "Unknown label ($label_id)";
2600 }
2601
2602 } else if ($id > 0) {
2603 $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$id'");
2604 if (db_num_rows($result) == 1) {
2605 return db_fetch_result($result, 0, "title");
2606 } else {
2607 return "Unknown feed ($id)";
2608 }
2609 } else {
2610 return "getFeedTitle($id) failed";
2611 }
2612
2613 }
3dd46f19
AD
2614
2615 function get_session_cookie_name() {
2616 return ((!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid" : TTRSS_SESSION_NAME);
2617 }
3ac2b520
AD
2618
2619 function print_init_params($link) {
2620 print "<init-params>";
2621 if ($_SESSION["stored-params"]) {
2622 foreach (array_keys($_SESSION["stored-params"]) as $key) {
5f57b06d
AD
2623 if ($key) {
2624 $value = htmlspecialchars($_SESSION["stored-params"][$key]);
2625 print "<param key=\"$key\" value=\"$value\"/>";
2626 }
3ac2b520
AD
2627 }
2628 }
2629
2630 print "<param key=\"daemon_enabled\" value=\"" . ENABLE_UPDATE_DAEMON . "\"/>";
2631 print "<param key=\"feeds_frame_refresh\" value=\"" . FEEDS_FRAME_REFRESH . "\"/>";
0d51e25d 2632 print "<param key=\"daemon_refresh_only\" value=\"" . DAEMON_REFRESH_ONLY . "\"/>";
3ac2b520
AD
2633
2634 print "<param key=\"on_catchup_show_next_feed\" value=\"" .
2635 get_pref($link, "ON_CATCHUP_SHOW_NEXT_FEED") . "\"/>";
2636
e8bd0da9 2637 print "<param key=\"hide_read_feeds\" value=\"" .
465ff90b 2638 (int) get_pref($link, "HIDE_READ_FEEDS") . "\"/>";
e8bd0da9 2639
c9268ed5 2640 print "<param key=\"feeds_sort_by_unread\" value=\"" .
465ff90b 2641 (int) get_pref($link, "FEEDS_SORT_BY_UNREAD") . "\"/>";
c9268ed5 2642
f6d6e22f 2643 print "<param key=\"confirm_feed_catchup\" value=\"" .
465ff90b 2644 (int) get_pref($link, "CONFIRM_FEED_CATCHUP") . "\"/>";
f6d6e22f 2645
ac7bcd71 2646 print "<param key=\"cdm_auto_catchup\" value=\"" .
465ff90b 2647 (int) get_pref($link, "CDM_AUTO_CATCHUP") . "\"/>";
ac7bcd71 2648
8e9c121b
AD
2649 print "<param key=\"icons_url\" value=\"" . ICONS_URL . "\"/>";
2650
be0801a1
AD
2651 print "<param key=\"cookie_lifetime\" value=\"" . SESSION_COOKIE_LIFETIME . "\"/>";
2652
40496720
AD
2653 print "<param key=\"default_view_mode\" value=\"" .
2654 get_pref($link, "_DEFAULT_VIEW_MODE") . "\"/>";
2655
2656 print "<param key=\"default_view_limit\" value=\"" .
465ff90b 2657 (int) get_pref($link, "_DEFAULT_VIEW_LIMIT") . "\"/>";
40496720 2658
fe8d2059
AD
2659 print "<param key=\"prefs_active_tab\" value=\"" .
2660 get_pref($link, "_PREFS_ACTIVE_TAB") . "\"/>";
2661
465ff90b
AD
2662 print "<param key=\"infobox_disable_overlay\" value=\"" .
2663 get_pref($link, "_INFOBOX_DISABLE_OVERLAY") . "\"/>";
2664
527c3bf0
AD
2665 print "<param key=\"icons_location\" value=\"" .
2666 ICONS_URL . "\"/>";
2667
3ac2b520
AD
2668 print "</init-params>";
2669 }
f54f515f
AD
2670
2671 function print_runtime_info($link) {
2672 print "<runtime-info>";
71ad883b
AD
2673 if (ENABLE_UPDATE_DAEMON) {
2674 print "<param key=\"daemon_is_running\" value=\"".
2675 sprintf("%d", file_is_locked("update_daemon.lock")) . "\"/>";
8e00ae9b 2676
784b47a3 2677 if ($_SESSION["daemon_stamp_check"] + 600 < time()) {
8e00ae9b
AD
2678
2679 $stamp = (int)read_stampfile("update_daemon.stamp");
2680
2681 if ($stamp) {
2682 if ($stamp + 86400*3 < time()) {
2683 print "<param key=\"daemon_stamp_ok\" value=\"0\"/>";
2684 } else {
2685 print "<param key=\"daemon_stamp_ok\" value=\"1\"/>";
2686 }
2687
2688 $stamp_fmt = date("Y.m.d, G:i", $stamp);
2689
2690 print "<param key=\"daemon_stamp\" value=\"$stamp_fmt\"/>";
2691 }
2692
2693 $_SESSION["daemon_stamp_check"] = time();
2694 }
71ad883b 2695 }
8e00ae9b 2696
d9fa39f1
AD
2697 if (CHECK_FOR_NEW_VERSION && $_SESSION["access_level"] >= 10) {
2698
c04206e5 2699 if ($_SESSION["last_version_check"] + 7200 < time()) {
d9fa39f1
AD
2700 $new_version_details = check_for_update($link);
2701
2702 print "<param key=\"new_version_available\" value=\"".
2703 sprintf("%d", $new_version_details != ""). "\"/>";
2704
2705 $_SESSION["last_version_check"] = time();
2706 }
2707 }
2708
1c9df66e 2709// print "<param key=\"new_version_available\" value=\"1\"/>";
b4507bc2 2710
f54f515f
AD
2711 print "</runtime-info>";
2712 }
ef393de7 2713
88040f57 2714 function getSearchSql($search, $match_on) {
ef393de7 2715
88040f57 2716 $search_query_part = "";
e20c9d88 2717
88040f57
AD
2718 $keywords = split(" ", $search);
2719 $query_keywords = array();
e20c9d88 2720
88040f57 2721 if ($match_on == "both") {
e20c9d88 2722
88040f57
AD
2723 foreach ($keywords as $k) {
2724 array_push($query_keywords, "(UPPER(ttrss_entries.title) LIKE UPPER('%$k%')
2725 OR UPPER(ttrss_entries.content) LIKE UPPER('%$k%'))");
2726 }
e20c9d88 2727
88040f57 2728 $search_query_part = implode("AND", $query_keywords) . " AND ";
e20c9d88 2729
88040f57 2730 } else if ($match_on == "title") {
e20c9d88 2731
88040f57
AD
2732 foreach ($keywords as $k) {
2733 array_push($query_keywords, "(UPPER(ttrss_entries.title) LIKE UPPER('%$k%'))");
2734 }
e20c9d88 2735
88040f57 2736 $search_query_part = implode("AND", $query_keywords) . " AND ";
e20c9d88 2737
88040f57
AD
2738 } else if ($match_on == "content") {
2739
2740 foreach ($keywords as $k) {
2741 array_push($query_keywords, "(UPPER(ttrss_entries.content) LIKE UPPER('%$k%'))");
2742 }
2743 }
2744
2745 $search_query_part = implode("AND", $query_keywords);
2746
2747 return $search_query_part;
2748 }
2749
c36bf4d5
AD
2750 function queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view, $search, $search_mode, $match_on, $override_order = false, $offset = 0, $owner_uid = 0) {
2751
2752 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
c1a0b534 2753
88040f57
AD
2754 if ($search) {
2755
2756 $search_query_part = getSearchSql($search, $match_on);
2757 $search_query_part .= " AND ";
e20c9d88 2758
ef393de7
AD
2759 } else {
2760 $search_query_part = "";
2761 }
2762
2763 $view_query_part = "";
2764
2765 if ($view_mode == "adaptive") {
2766 if ($search) {
2767 $view_query_part = " ";
2768 } else if ($feed != -1) {
f295c368 2769 $unread = getFeedUnread($link, $feed, $cat_view);
ef393de7
AD
2770 if ($unread > 0) {
2771 $view_query_part = " unread = true AND ";
2772 }
2773 }
2774 }
2775
2776 if ($view_mode == "marked") {
2777 $view_query_part = " marked = true AND ";
2778 }
2779
2780 if ($view_mode == "unread") {
2781 $view_query_part = " unread = true AND ";
2782 }
2783
2784 if ($limit > 0) {
2785 $limit_query_part = "LIMIT " . $limit;
2786 }
2787
2788 $vfeed_query_part = "";
2789
2790 // override query strategy and enable feed display when searching globally
2791 if ($search && $search_mode == "all_feeds") {
2792 $query_strategy_part = "ttrss_entries.id > 0";
2793 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2794 } else if (preg_match("/^-?[0-9][0-9]*$/", $feed) == false) {
2795 $query_strategy_part = "ttrss_entries.id > 0";
2796 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
2797 id = feed_id) as feed_title,";
2798 } else if ($feed >= 0 && $search && $search_mode == "this_cat") {
2799
2800 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
0a6c4846
AD
2801
2802 $tmp_result = false;
2803
2804 if ($cat_view) {
2805 $tmp_result = db_query($link, "SELECT id
2806 FROM ttrss_feeds WHERE cat_id = '$feed'");
2807 } else {
2808 $tmp_result = db_query($link, "SELECT id
2809 FROM ttrss_feeds WHERE cat_id = (SELECT cat_id FROM ttrss_feeds
2810 WHERE id = '$feed') AND id != '$feed'");
2811 }
ef393de7
AD
2812
2813 $cat_siblings = array();
2814
2815 if (db_num_rows($tmp_result) > 0) {
2816 while ($p = db_fetch_assoc($tmp_result)) {
2817 array_push($cat_siblings, "feed_id = " . $p["id"]);
2818 }
2819
2820 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
2821 $feed, implode(" OR ", $cat_siblings));
2822
2823 } else {
2824 $query_strategy_part = "ttrss_entries.id > 0";
2825 }
2826
2827 } else if ($feed >= 0) {
2828
2829 if ($cat_view) {
5c365f60 2830
ef393de7
AD
2831 if ($feed > 0) {
2832 $query_strategy_part = "cat_id = '$feed'";
2833 } else {
2834 $query_strategy_part = "cat_id IS NULL";
2835 }
2836
2837 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
5c365f60 2838
ef393de7
AD
2839 } else {
2840 $tmp_result = db_query($link, "SELECT id
2841 FROM ttrss_feeds WHERE parent_feed = '$feed'
2842 ORDER BY cat_id,title");
2843
2844 $parent_ids = array();
2845
2846 if (db_num_rows($tmp_result) > 0) {
2847 while ($p = db_fetch_assoc($tmp_result)) {
2848 array_push($parent_ids, "feed_id = " . $p["id"]);
2849 }
2850
2851 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
2852 $feed, implode(" OR ", $parent_ids));
2853
2854 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2855 } else {
2856 $query_strategy_part = "feed_id = '$feed'";
2857 }
2858 }
2859 } else if ($feed == -1) { // starred virtual feed
2860 $query_strategy_part = "marked = true";
2861 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
e4f4b46f
AD
2862 } else if ($feed == -2) { // published virtual feed
2863 $query_strategy_part = "published = true";
2d24f032
AD
2864 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2865 } else if ($feed == -3) { // fresh virtual feed
2866 $query_strategy_part = "unread = true";
2867
c1d7e6c3
AD
2868 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE");
2869
2d24f032 2870 if (DB_TYPE == "pgsql") {
c1d7e6c3 2871 $query_strategy_part .= " AND date_entered > NOW() - INTERVAL '$intl hour' ";
2d24f032 2872 } else {
c1d7e6c3 2873 $query_strategy_part .= " AND date_entered > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
2d24f032
AD
2874 }
2875
e4f4b46f 2876 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ef393de7
AD
2877 } else if ($feed <= -10) { // labels
2878 $label_id = -$feed - 11;
2879
2880 $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
2881 WHERE id = '$label_id'");
2882
2883 $query_strategy_part = db_fetch_result($tmp_result, 0, "sql_exp");
3de0261a
AD
2884
2885 if (!$query_strategy_part) {
2886 return false;
2887 }
2888
ef393de7
AD
2889 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2890 } else {
2891 $query_strategy_part = "id > 0"; // dumb
2892 }
d6e5706d
AD
2893
2894 if (get_pref($link, 'REVERSE_HEADLINES')) {
2895 $order_by = "updated";
2896 } else {
2897 $order_by = "updated DESC";
2898 }
e939722a
AD
2899
2900 if ($override_order) {
2901 $order_by = $override_order;
2902 }
ef393de7
AD
2903
2904 $feed_title = "";
2905
2906 if ($search && $search_mode == "all_feeds") {
b36e002f 2907 $feed_title = __("Search results")." ($search)";
ef393de7 2908 } else if ($search && preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
b36e002f 2909 $feed_title = __("Search results")." ($search, $feed)";
ef393de7
AD
2910 } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
2911 $feed_title = $feed;
2912 } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) != false && $feed >= 0) {
2913
2914 if ($cat_view) {
5c365f60 2915
ef393de7
AD
2916 if ($feed != 0) {
2917 $result = db_query($link, "SELECT title FROM ttrss_feed_categories
c36bf4d5 2918 WHERE id = '$feed' AND owner_uid = $owner_uid");
ef393de7
AD
2919 $feed_title = db_fetch_result($result, 0, "title");
2920 } else {
d1db26aa 2921 $feed_title = __("Uncategorized");
ef393de7 2922 }
e1eb2147
AD
2923
2924 if ($search) {
b36e002f 2925 $feed_title = __("Searched for")." $search ($feed_title)";
e1eb2147
AD
2926 }
2927
ef393de7
AD
2928 } else {
2929
2930 $result = db_query($link, "SELECT title,site_url,last_error FROM ttrss_feeds
c36bf4d5 2931 WHERE id = '$feed' AND owner_uid = $owner_uid");
ef393de7
AD
2932
2933 $feed_title = db_fetch_result($result, 0, "title");
2934 $feed_site_url = db_fetch_result($result, 0, "site_url");
2935 $last_error = db_fetch_result($result, 0, "last_error");
e1eb2147
AD
2936
2937 if ($search) {
b36e002f 2938 $feed_title = __("Searched for") . " $search ($feed_title)";
e1eb2147 2939 }
ef393de7
AD
2940 }
2941
2942 } else if ($feed == -1) {
d1db26aa 2943 $feed_title = __("Starred articles");
e4f4b46f
AD
2944 } else if ($feed == -2) {
2945 $feed_title = __("Published articles");
2d24f032
AD
2946 } else if ($feed == -3) {
2947 $feed_title = __("Fresh articles");
ef393de7
AD
2948 } else if ($feed < -10) {
2949 $label_id = -$feed - 11;
2950 $result = db_query($link, "SELECT description FROM ttrss_labels
2951 WHERE id = '$label_id'");
2952 $feed_title = db_fetch_result($result, 0, "description");
88040f57
AD
2953
2954 if ($search) {
b36e002f 2955 $feed_title = __("Searched for") . " $search ($feed_title)";
88040f57 2956 }
ef393de7
AD
2957 } else {
2958 $feed_title = "?";
2959 }
2960
ef393de7
AD
2961 if ($feed < -10) error_reporting (0);
2962
2963 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
2964
2965 if ($feed >= 0) {
2966 $feed_kind = "Feeds";
2967 } else {
2968 $feed_kind = "Labels";
2969 }
2970
2971 $content_query_part = "content as content_preview,";
203de776 2972
95a82c08
AD
2973 if ($limit_query_part) {
2974 $offset_query_part = "OFFSET $offset";
2975 }
2976
ef393de7 2977 $query = "SELECT
1f64b1be 2978 guid,
ef393de7 2979 ttrss_entries.id,ttrss_entries.title,
46921916 2980 updated,
e4f4b46f 2981 unread,feed_id,marked,published,link,last_read,
ef393de7
AD
2982 SUBSTRING(last_read,1,19) as last_read_noms,
2983 $vfeed_query_part
2984 $content_query_part
d4b4b9de
AD
2985 SUBSTRING(updated,1,19) as updated_noms,
2986 author
ef393de7
AD
2987 FROM
2988 ttrss_entries,ttrss_user_entries,ttrss_feeds
2989 WHERE
cfb02131 2990 ttrss_feeds.hidden = false AND
ef393de7
AD
2991 ttrss_user_entries.feed_id = ttrss_feeds.id AND
2992 ttrss_user_entries.ref_id = ttrss_entries.id AND
c36bf4d5 2993 ttrss_user_entries.owner_uid = '$owner_uid' AND
ef393de7
AD
2994 $search_query_part
2995 $view_query_part
2996 $query_strategy_part ORDER BY $order_by
95a82c08 2997 $limit_query_part $offset_query_part";
ef393de7
AD
2998
2999 $result = db_query($link, $query);
3000
3001 if ($_GET["debug"]) print $query;
3002
3003 } else {
3004 // browsing by tag
3005
3006 $feed_kind = "Tags";
3007
3008 $result = db_query($link, "SELECT
1f64b1be 3009 guid,
ef393de7 3010 ttrss_entries.id as id,title,
46921916 3011 updated,
ef393de7
AD
3012 unread,feed_id,
3013 marked,link,last_read,
3014 SUBSTRING(last_read,1,19) as last_read_noms,
3015 $vfeed_query_part
3016 $content_query_part
3017 SUBSTRING(updated,1,19) as updated_noms
3018 FROM
3019 ttrss_entries,ttrss_user_entries,ttrss_tags
3020 WHERE
3021 ref_id = ttrss_entries.id AND
c36bf4d5 3022 ttrss_user_entries.owner_uid = '$owner_uid' AND
ef393de7
AD
3023 post_int_id = int_id AND tag_name = '$feed' AND
3024 $view_query_part
3025 $search_query_part
3026 $query_strategy_part ORDER BY $order_by
3027 $limit_query_part");
3028 }
3029
c7188969 3030 return array($result, $feed_title, $feed_site_url, $last_error);
ef393de7
AD
3031
3032 }
3033
c36bf4d5 3034 function generate_syndicated_feed($link, $owner_uid, $feed, $is_cat,
3baeeeca 3035 $search, $search_mode, $match_on) {
18664970
AD
3036
3037 $qfh_ret = queryFeedHeadlines($link, $feed,
c36bf4d5
AD
3038 30, false, $is_cat, $search, $search_mode, $match_on, "updated DESC", 0,
3039 $owner_uid);
18664970
AD
3040
3041 $result = $qfh_ret[0];
59e2aab4 3042 $feed_title = htmlspecialchars($qfh_ret[1]);
18664970
AD
3043 $feed_site_url = $qfh_ret[2];
3044 $last_error = $qfh_ret[3];
3045
a5472764 3046// if (!$feed_site_url) $feed_site_url = "http://localhost/";
4bc64807 3047
a5472764
AD
3048 print "<?xml version=\"1.0\" encoding=\"utf-8\"?>
3049 <?xml-stylesheet type=\"text/xsl\" href=\"rss.xsl\"?>
3050 <rss version=\"2.0\">
3baeeeca
AD
3051 <channel>
3052 <title>$feed_title</title>
4bc64807
AD
3053 <link>$feed_site_url</link>
3054 <description>Feed generated by Tiny Tiny RSS</description>";
3baeeeca
AD
3055
3056 while ($line = db_fetch_assoc($result)) {
3057 print "<item>";
4bc64807 3058 print "<guid>" . htmlspecialchars($line["guid"]) . "</guid>";
3baeeeca 3059 print "<link>" . htmlspecialchars($line["link"]) . "</link>";
0c3d1c68 3060
bc976a8c 3061 $tags = get_article_tags($link, $line["id"], $owner_uid);
0c3d1c68
AD
3062
3063 foreach ($tags as $tag) {
3064 print "<category>" . htmlspecialchars($tag) . "</category>";
3065 }
3066
3baeeeca
AD
3067 $rfc822_date = date('r', strtotime($line["updated"]));
3068
3069 print "<pubDate>$rfc822_date</pubDate>";
3070
3071 print "<title>" .
3072 htmlspecialchars($line["title"]) . "</title>";
3073
0c3d1c68
AD
3074 print "<description><![CDATA[" .
3075 $line["content_preview"] . "]]></description>";
3baeeeca
AD
3076
3077 print "</item>";
3078 }
3079
3080 print "</channel></rss>";
18664970
AD
3081
3082 }
3083
0a6c4846
AD
3084 function getCategoryTitle($link, $cat_id) {
3085
bba7c4bf
AD
3086 if ($cat_id == -1) {
3087 return __("Special");
3088 } else if ($cat_id == -2) {
3089 return __("Labels");
0a6c4846 3090 } else {
bba7c4bf
AD
3091
3092 $result = db_query($link, "SELECT title FROM ttrss_feed_categories WHERE
3093 id = '$cat_id'");
3094
3095 if (db_num_rows($result) == 1) {
3096 return db_fetch_result($result, 0, "title");
3097 } else {
3098 return "Uncategorized";
3099 }
0a6c4846
AD
3100 }
3101 }
3102
f738aef1
AD
3103 // http://ru2.php.net/strip-tags
3104
3105 function strip_tags_long($textstring, $allowed){
3106 while($textstring != strip_tags($textstring, $allowed))
3107 {
3108 while (strlen($textstring) != 0)
3109 {
3110 if (strlen($textstring) > 1024) {
3111 $otherlen = 1024;
3112 } else {
3113 $otherlen = strlen($textstring);
3114 }
3115 $temptext = strip_tags(substr($textstring,0,$otherlen), $allowed);
3116 $safetext .= $temptext;
3117 $textstring = substr_replace($textstring,'',0,$otherlen);
3118 }
3119 $textstring = $safetext;
3120 }
3121 return $textstring;
3122 }
3123
3124
1ac0baf4 3125 function sanitize_rss($link, $str, $force_strip_tags = false) {
60452879 3126 $res = $str;
183ad07b 3127
1ac0baf4 3128 if (get_pref($link, "STRIP_UNSAFE_TAGS") || $force_strip_tags) {
f738aef1
AD
3129 global $tw_parser;
3130 global $tw_paranoya_setup;
3131
3132 $res = $tw_parser->strip_tags($res, $tw_paranoya_setup);
3133
3134// $res = preg_replace("/\r\n|\n|\r/", "", $res);
3135// $res = strip_tags_long($res, "<p><a><i><em><b><strong><blockquote><br><img><div><span>");
f826eee1
AD
3136 }
3137
183ad07b
AD
3138 return $res;
3139 }
b72c3ef8 3140
9cd7c995
AD
3141 function send_headlines_digests($link, $limit = 100) {
3142
1ddba275
AD
3143 if (!DIGEST_ENABLE) return false;
3144
9cd7c995 3145 $user_limit = DIGEST_EMAIL_LIMIT;
5430c959 3146 $days = 1;
9cd7c995
AD
3147
3148 print "Sending digests, batch of max $user_limit users, days = $days, headline limit = $limit\n\n";
3149
3150 if (DB_TYPE == "pgsql") {
3151 $interval_query = "last_digest_sent < NOW() - INTERVAL '$days days'";
3152 } else if (DB_TYPE == "mysql") {
3153 $interval_query = "last_digest_sent < DATE_SUB(NOW(), INTERVAL $days DAY)";
3154 }
3155
3156 $result = db_query($link, "SELECT id,email FROM ttrss_users
3157 WHERE email != '' AND (last_digest_sent IS NULL OR $interval_query)");
3158
3159 while ($line = db_fetch_assoc($result)) {
3160 if (get_pref($link, 'DIGEST_ENABLE', $line['id'], false)) {
3161 print "Sending digest for UID:" . $line['id'] . " - " . $line["email"] . " ... ";
3162
3163 $tuple = prepare_headlines_digest($link, $line["id"], $days, $limit);
3164 $digest = $tuple[0];
3165 $headlines_count = $tuple[1];
3166
3167 if ($headlines_count > 0) {
a8931123
AD
3168
3169 if (!DIGEST_SMTP_HOST) {
3170
3171 $rc = mail($line["login"] . " <" . $line["email"] . ">",
3172 "[tt-rss] New headlines for last 24 hours", $digest,
3173 "From: " . DIGEST_FROM_NAME . " <" . DIGEST_FROM_ADDRESS . ">\n".
3174 "Content-Type: text/plain; charset=\"utf-8\"\n".
3175 "Content-Transfer-Encoding: 8bit\n");
3176
3177 } else {
3178
3179 $mail = new PHPMailer();
3180
3181 $mail->PluginDir = "phpmailer/";
3182 $mail->SetLanguage("en", "phpmailer/language/");
3183
c7ddac5c
AD
3184 $mail->CharSet = "UTF-8";
3185
a8931123
AD
3186 $mail->From = DIGEST_FROM_ADDRESS;
3187 $mail->FromName = DIGEST_FROM_NAME;
3188 $mail->AddAddress($line["email"], $line["login"]);
3189 $mail->Host = DIGEST_SMTP_HOST;
3190 $mail->Mailer = "smtp";
3191
3192 $mail->Username = DIGEST_SMTP_LOGIN;
3193 $mail->Password = DIGEST_SMTP_PASSWORD;
3194
3195 $mail->Subject = "[tt-rss] New headlines for last 24 hours";
3196 $mail->Body = $digest;
3197
3198 $rc = $mail->Send();
3199
3200 if (!$rc) print "ERROR: " . $mail->ErrorInfo;
3201
3202 }
3203
9cd7c995 3204 print "RC=$rc\n";
a8931123 3205
9cd7c995
AD
3206 db_query($link, "UPDATE ttrss_users SET last_digest_sent = NOW()
3207 WHERE id = " . $line["id"]);
3208 } else {
3209 print "No headlines\n";
3210 }
3211 }
3212 }
3213
3214// $digest = prepare_headlines_digest($link, $user_id, $days, $limit);
3215
3216 }
3217
7e3634d9 3218 function prepare_headlines_digest($link, $user_id, $days = 1, $limit = 100) {
d1db26aa 3219 $tmp = __("New headlines for last 24 hours, as of ") . date("Y/m/d H:m") . "\n";
7e3634d9
AD
3220 $tmp .= "=======================================================\n\n";
3221
3222 if (DB_TYPE == "pgsql") {
9cd7c995 3223 $interval_query = "ttrss_entries.date_entered > NOW() - INTERVAL '$days days'";
7e3634d9
AD
3224 } else if (DB_TYPE == "mysql") {
3225 $interval_query = "ttrss_entries.date_entered > DATE_SUB(NOW(), INTERVAL $days DAY)";
3226 }
3227
3228 $result = db_query($link, "SELECT ttrss_entries.title,
3229 ttrss_feeds.title AS feed_title,
3230 date_entered,
3231 link,
3232 SUBSTRING(last_updated,1,19) AS last_updated
3233 FROM
3234 ttrss_user_entries,ttrss_entries,ttrss_feeds
3235 WHERE
3236 ref_id = ttrss_entries.id AND feed_id = ttrss_feeds.id
3dd9183c 3237 AND include_in_digest = true
7e3634d9 3238 AND $interval_query
a8931123 3239 AND hidden = false
448b0abd 3240 AND ttrss_user_entries.owner_uid = $user_id
7e3634d9
AD
3241 AND unread = true ORDER BY ttrss_feeds.title, date_entered DESC
3242 LIMIT $limit");
3243
3244 $cur_feed_title = "";
3245
9cd7c995
AD
3246 $headlines_count = db_num_rows($result);
3247
7e3634d9
AD
3248 while ($line = db_fetch_assoc($result)) {
3249 $updated = smart_date_time(strtotime($line["last_updated"]));
3250 $feed_title = $line["feed_title"];
3251
3252 if ($cur_feed_title != $feed_title) {
3253 $cur_feed_title = $feed_title;
3254
3255 $tmp .= "$feed_title\n\n";
3256 }
3257
3258 $tmp .= " * " . trim($line["title"]) . " - $updated\n";
3259 $tmp .= " " . trim($line["link"]) . "\n";
3260 $tmp .= "\n";
3261 }
3262
3263 $tmp .= "--- \n";
d1db26aa 3264 $tmp .= __("You have been sent this email because you have enabled daily digests in Tiny Tiny RSS at ") .
dfe6f833 3265 DIGEST_HOSTNAME . "\n".
d1db26aa 3266 __("To unsubscribe, visit your configuration options or contact instance owner.\n");
7e3634d9
AD
3267
3268
9cd7c995 3269 return array($tmp, $headlines_count);
7e3634d9
AD
3270 }
3271
d9fa39f1 3272 function check_for_update($link, $brief_fmt = true) {
b72c3ef8
AD
3273 $releases_feed = "http://tt-rss.spb.ru/releases.rss";
3274
3275 if (!CHECK_FOR_NEW_VERSION || $_SESSION["access_level"] < 10) {
3276 return;
3277 }
3278
3279 error_reporting(0);
f67d9754
AD
3280 if (ENABLE_SIMPLEPIE) {
3281 $rss = new SimplePie();
3282 $rss->set_useragent(SIMPLEPIE_USERAGENT . MAGPIE_USER_AGENT_EXT);
3283 $rss->set_timeout(MAGPIE_FETCH_TIME_OUT);
3284 $rss->set_feed_url($fetch_url);
3285 $rss->set_output_encoding('UTF-8');
3286 $rss->init();
3287 } else {
3288 $rss = fetch_rss($releases_feed);
3289 }
b72c3ef8
AD
3290 error_reporting (DEFAULT_ERROR_LEVEL);
3291
3292 if ($rss) {
3293
f67d9754
AD
3294 if (ENABLE_SIMPLEPIE) {
3295 $items = $rss->get_items();
3296 } else {
3297 $items = $rss->items;
b72c3ef8 3298
f67d9754
AD
3299 if (!$items || !is_array($items)) $items = $rss->entries;
3300 if (!$items || !is_array($items)) $items = $rss;
3301 }
b72c3ef8 3302
da412ad3 3303 if (!is_array($items) || count($items) == 0) {
b72c3ef8 3304 return;
da412ad3 3305 }
b72c3ef8 3306
a41d2c65 3307 $latest_item = $items[0];
b72c3ef8 3308
f67d9754
AD
3309 if (ENABLE_SIMPLEPIE) {
3310 $last_title = $latest_item->get_title();
3311 } else {
3312 $last_title = $latest_item["title"];
3313 }
b72c3ef8 3314
f67d9754
AD
3315 $latest_version = trim(preg_replace("/(Milestone)|(completed)/", "", $last_title));
3316
3317 if (ENABLE_SIMPLEPIE) {
dcf7fd08
AD
3318 $release_url = sanitize_rss($link, $latest_item->get_link());
3319 $content = sanitize_rss($link, $latest_item->get_description());
f67d9754
AD
3320 } else {
3321 $release_url = sanitize_rss($link, $latest_item["link"]);
3322 $content = sanitize_rss($link, $latest_item["description"]);
3323 }
48e1a342 3324
a41d2c65 3325 if (version_compare(VERSION, $latest_version) == -1) {
d9fa39f1 3326 if ($brief_fmt) {
0d32b41e 3327 return format_notice("<a href=\"javascript:showBlockElement('milestoneDetails')\">
d9fa39f1 3328 New version of Tiny-Tiny RSS ($latest_version) is available (click for details)</a>
0d32b41e 3329 <div id=\"milestoneDetails\">$content</div>");
d9fa39f1 3330 } else {
92625568
AD
3331 return "New version of Tiny-Tiny RSS ($latest_version) is available:
3332 <div class='milestoneDetails'>$content</div>
3333 Visit <a target=\"_new\" href=\"http://tt-rss.spb.ru/\">official site</a> for
3334 download and update information.";
d9fa39f1
AD
3335 }
3336
da412ad3 3337 }
b72c3ef8
AD
3338 }
3339 }
472782e8 3340
18eddb2c
AD
3341 function markArticlesById($link, $ids, $cmode) {
3342
3343 $tmp_ids = array();
3344
3345 foreach ($ids as $id) {
3346 array_push($tmp_ids, "ref_id = '$id'");
3347 }
3348
3349 $ids_qpart = join(" OR ", $tmp_ids);
3350
3351 if ($cmode == 0) {
3352 db_query($link, "UPDATE ttrss_user_entries SET
3353 marked = false,last_read = NOW()
3354 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3355 } else if ($cmode == 1) {
3356 db_query($link, "UPDATE ttrss_user_entries SET
3357 marked = true
3358 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3359 } else {
3360 db_query($link, "UPDATE ttrss_user_entries SET
3361 marked = NOT marked,last_read = NOW()
3362 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3363 }
3364 }
3365
e4f4b46f
AD
3366 function publishArticlesById($link, $ids, $cmode) {
3367
3368 $tmp_ids = array();
3369
3370 foreach ($ids as $id) {
3371 array_push($tmp_ids, "ref_id = '$id'");
3372 }
3373
3374 $ids_qpart = join(" OR ", $tmp_ids);
3375
3376 if ($cmode == 0) {
3377 db_query($link, "UPDATE ttrss_user_entries SET
3378 published = false,last_read = NOW()
3379 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3380 } else if ($cmode == 1) {
3381 db_query($link, "UPDATE ttrss_user_entries SET
3382 published = true
3383 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3384 } else {
3385 db_query($link, "UPDATE ttrss_user_entries SET
3386 published = NOT published,last_read = NOW()
3387 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3388 }
3389 }
3390
472782e8
AD
3391 function catchupArticlesById($link, $ids, $cmode) {
3392
3393 $tmp_ids = array();
3394
3395 foreach ($ids as $id) {
3396 array_push($tmp_ids, "ref_id = '$id'");
3397 }
3398
3399 $ids_qpart = join(" OR ", $tmp_ids);
3400
3401 if ($cmode == 0) {
3402 db_query($link, "UPDATE ttrss_user_entries SET
3403 unread = false,last_read = NOW()
3404 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3405 } else if ($cmode == 1) {
3406 db_query($link, "UPDATE ttrss_user_entries SET
3407 unread = true
3408 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3409 } else {
3410 db_query($link, "UPDATE ttrss_user_entries SET
3411 unread = NOT unread,last_read = NOW()
3412 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3413 }
3414 }
3415
e097e8be
AD
3416 function catchupArticleById($link, $id, $cmode) {
3417
3418 if ($cmode == 0) {
3419 db_query($link, "UPDATE ttrss_user_entries SET
3420 unread = false,last_read = NOW()
3421 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
3422 } else if ($cmode == 1) {
3423 db_query($link, "UPDATE ttrss_user_entries SET
3424 unread = true
3425 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
3426 } else {
3427 db_query($link, "UPDATE ttrss_user_entries SET
3428 unread = NOT unread,last_read = NOW()
3429 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
3430 }
3431 }
3432
1f64b1be
AD
3433 function make_guid_from_title($title) {
3434 return preg_replace("/[ \"\',.:;]/", "-",
fefef828 3435 mb_strtolower(strip_tags($title), 'utf-8'));
1f64b1be
AD
3436 }
3437
11befbb2
AD
3438 function print_headline_subtoolbar($link, $feed_site_url, $feed_title,
3439 $bottom = false, $rtl_content = false, $feed_id = 0,
3440 $is_cat = false, $search = false, $match_on = false,
95a82c08 3441 $search_mode = false, $offset = 0, $limit = 0) {
11befbb2 3442
e6c115b2
AD
3443 $user_page_offset = $offset + 1;
3444
11befbb2
AD
3445 if (!$bottom) {
3446 $class = "headlinesSubToolbar";
3447 $tid = "headlineActionsTop";
3448 } else {
3449 $class = "headlinesSubToolbar";
3450 $tid = "headlineActionsBottom";
3451 }
3452
3453 print "<table class=\"$class\" id=\"$tid\"
3454 width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tr>";
3455
3456 if ($rtl_content) {
3457 $rtl_cpart = "RTL";
3458 } else {
3459 $rtl_cpart = "";
3460 }
3461
e6c115b2
AD
3462 $page_prev_link = "javascript:viewFeedGoPage(-1)";
3463 $page_next_link = "javascript:viewFeedGoPage(1)";
3464 $page_first_link = "javascript:viewFeedGoPage(0)";
203de776 3465
eb28b131
AD
3466 $catchup_page_link = "javascript:catchupPage()";
3467 $catchup_feed_link = "javascript:catchupCurrentFeed()";
a5ae125a 3468 $catchup_sel_link = "javascript:catchupSelection()";
c6008b62 3469
11befbb2
AD
3470 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
3471
c6008b62
AD
3472 $sel_all_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, '', true)";
3473 $sel_unread_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true)";
3474 $sel_none_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false)";
11befbb2 3475
c6008b62
AD
3476 $tog_unread_link = "javascript:selectionToggleUnread()";
3477 $tog_marked_link = "javascript:selectionToggleMarked()";
e4f4b46f 3478 $tog_published_link = "javascript:selectionTogglePublished()";
11befbb2 3479
c6008b62 3480 } else {
11befbb2 3481
c6008b62
AD
3482 $sel_all_link = "javascript:cdmSelectArticles('all')";
3483 $sel_unread_link = "javascript:cdmSelectArticles('unread')";
3484 $sel_none_link = "javascript:cdmSelectArticles('none')";
3485
3486 $tog_unread_link = "javascript:selectionToggleUnread(true)";
3487 $tog_marked_link = "javascript:selectionToggleMarked(true)";
e4f4b46f 3488 $tog_published_link = "javascript:selectionTogglePublished(true)";
c6008b62
AD
3489
3490 }
3491
d420f2ee 3492 if (strpos($_SESSION["client.userAgent"], "MSIE") === false) {
c6008b62 3493
2dd2c13b
AD
3494 print "<td class=\"headlineActions$rtl_cpart\">
3495 <ul class=\"headlineDropdownMenu\">
3496 <li class=\"top2\">
3692e98f 3497 ".__('Select:')."
1025ad87
AD
3498 <a href=\"$sel_all_link\">".__('All')."</a>,
3499 <a href=\"$sel_unread_link\">".__('Unread')."</a>,
3500 <a href=\"$sel_none_link\">".__('None')."</a></li>
2dd2c13b 3501 <li class=\"vsep\">&nbsp;</li>
89cb787e 3502 <li class=\"top\">".__('Toggle')."<ul>
9cc600d1 3503 <li onclick=\"$tog_unread_link\">".__('Unread')."</li>
e4f4b46f
AD
3504 <li onclick=\"$tog_marked_link\">".__('Starred')."</li>
3505 <li onclick=\"$tog_published_link\">".__('Published')."</li>
3506 </ul></li>
2dd2c13b 3507 <li class=\"vsep\">&nbsp;</li>
1025ad87 3508 <li class=\"top\"><a href=\"$catchup_page_link\">".__('Mark as read')."</a><ul>
a5ae125a 3509 <li onclick=\"$catchup_sel_link\">".__('Selection')."</li>
8be83f42
AD
3510 <!-- <li onclick=\"$catchup_page_link\">".__('This page')."</li> -->
3511 <li><span class=\"insensitive\">--------</span></li>
3512 <li onclick=\"catchupRelativeToArticle(0)\">".__("Above active article")."</li>
3513 <li onclick=\"catchupRelativeToArticle(1)\">".__("Below active article")."</li>
3514 <li><span class=\"insensitive\">--------</span></li>
1025ad87 3515 <li onclick=\"$catchup_feed_link\">".__('Entire feed')."</li></ul></li>
237ec2ad 3516 ";
95a82c08 3517
237ec2ad
AD
3518 $enable_pagination = get_pref($link, "_PREFS_ENABLE_PAGINATION");
3519
3520 if ($limit != 0 && !$search && $enable_pagination) {
95a82c08 3521 print "
237ec2ad 3522 <li class=\"vsep\">&nbsp;</li>
1025ad87
AD
3523 <li class=\"top\"><a href=\"$page_next_link\">".__('Next page')."</a><ul>
3524 <li onclick=\"$page_prev_link\">".__('Previous page')."</li>
3525 <li onclick=\"$page_first_link\">".__('First page')."</li></ul></li>
95a82c08 3526 </ul>";
d420f2ee 3527 }
95a82c08 3528
d420f2ee 3529 if ($search && $feed_id >= 0 && get_pref($link, 'ENABLE_LABELS') && GLOBAL_ENABLE_LABELS) {
237ec2ad
AD
3530 print "
3531 <li class=\"vsep\">&nbsp;</li>
3532 <li class=\"top3\">
d420f2ee
AD
3533 <a href=\"javascript:labelFromSearch('$search', '$search_mode',
3534 '$match_on', '$feed_id', '$is_cat');\">
b36e002f 3535 ".__('Convert to label')."</a></td>";
d420f2ee 3536 }
95a82c08 3537 print "
2dd2c13b
AD
3538 </td>";
3539
3540 } else {
e6c115b2
AD
3541 // old style subtoolbar:
3542
2dd2c13b 3543 print "<td class=\"headlineActions$rtl_cpart\">".
d1db26aa 3544 __('Select:')."
1025ad87
AD
3545 <a href=\"$sel_all_link\">".__('All')."</a>,
3546 <a href=\"$sel_unread_link\">".__('Unread')."</a>,
3547 <a href=\"$sel_none_link\">".__('None')."</a>
2dd2c13b 3548 &nbsp;&nbsp;".
1025ad87
AD
3549 __('Toggle:')." <a href=\"$tog_unread_link\">".__('Unread')."</a>,
3550 <a href=\"$tog_marked_link\">".__('Starred')."</a>
2dd2c13b 3551 &nbsp;&nbsp;".
d1db26aa 3552 __('Mark as read:')."
1025ad87
AD
3553 <a href=\"#\" onclick=\"$catchup_page_link\">".__('Page')."</a>,
3554 <a href=\"#\" onclick=\"$catchup_feed_link\">".__('Feed')."</a>";
d420f2ee
AD
3555
3556 if ($search && $feed_id >= 0 && get_pref($link, 'ENABLE_LABELS') && GLOBAL_ENABLE_LABELS) {
3557
3558 print "&nbsp;&nbsp;
3559 <a href=\"javascript:labelFromSearch('$search', '$search_mode',
3560 '$match_on', '$feed_id', '$is_cat');\">
b36e002f 3561 ".__('Convert to label')."</a>";
d420f2ee
AD
3562 }
3563
2dd2c13b
AD
3564 print "</td>";
3565
3566 }
c6008b62 3567
d420f2ee 3568/* if ($search && $feed_id >= 0 && get_pref($link, 'ENABLE_LABELS') && GLOBAL_ENABLE_LABELS) {
c6008b62
AD
3569 print "<td class=\"headlineActions$rtl_cpart\">
3570 <a href=\"javascript:labelFromSearch('$search', '$search_mode',
3571 '$match_on', '$feed_id', '$is_cat');\">
d1db26aa 3572 ".__('Convert to Label')."</a></td>";
d420f2ee 3573} */
11befbb2
AD
3574
3575 print "<td class=\"headlineTitle$rtl_cpart\">";
3576
3577 if ($feed_site_url) {
3578 if (!$bottom) {
3fc2eed5 3579 $target = "target=\"_new\"";
11befbb2 3580 }
02815555
AD
3581 print "<a $target href=\"$feed_site_url\">".
3582 truncate_string($feed_title,30)."</a>";
11befbb2
AD
3583 } else {
3584 print $feed_title;
3585 }
3586
3587 if ($search) {
3588 $search_q = "&q=$search&m=$match_on&smode=$search_mode";
3589 }
3590
e6c115b2
AD
3591 if ($user_page_offset > 1) {
3592 print " [$user_page_offset] ";
3593 }
3594
11befbb2 3595 if (!$bottom) {
e6c115b2 3596 print "
11befbb2
AD
3597 <a target=\"_new\"
3598 href=\"backend.php?op=rss&id=$feed_id&is_cat=$is_cat$search_q\">
3599 <img class=\"noborder\"
1025ad87 3600 alt=\"".__('Generated feed')."\" src=\"images/feed-icon-12x12.png\">
11befbb2
AD
3601 </a>";
3602 }
3603
3604 print "</td>";
3605 print "</tr></table>";
3606
3607 }
3608
bba7c4bf
AD
3609 function printCategoryHeader($link, $cat_id, $hidden = false, $can_browse = true) {
3610
3611 $tmp_category = getCategoryTitle($link, $cat_id);
3612 $cat_unread = getCategoryUnread($link, $cat_id);
3613
3614 if ($hidden) {
3615 $holder_style = "display:none;";
3616 $ellipsis = "...";
3617 } else {
3618 $holder_style = "";
3619 $ellipsis = "";
3620 }
3621
3622 $catctr_class = ($cat_unread > 0) ? "catCtrHasUnread" : "catCtrNoUnread";
3623
3624 print "<li class=\"feedCat\" id=\"FCAT-$cat_id\">
3625 <a id=\"FCATN-$cat_id\" href=\"javascript:toggleCollapseCat($cat_id)\">$tmp_category</a>";
3626
3627 if ($can_browse) {
3628 print "<a href=\"#\" onclick=\"javascript:viewCategory($cat_id)\" id=\"FCAP-$cat_id\">";
3629 } else {
3630 print "<span id=\"FCAP-$cat_id\">";
3631 }
3632
3633 print " <span id=\"FCATCTR-$cat_id\" title=\"Click to browse category\"
3634 class=\"$catctr_class\">($cat_unread)</span> $ellipsis";
3635
3636 if ($can_browse) {
3637 print "</a>";
3638 } else {
3639 print "</span>";
3640 }
3641
3642 print "</li>";
3643
3644 print "<li id=\"feedCatHolder\" class=\"$holder_class\"><ul class=\"feedCatList\" id=\"FCATLIST-$cat_id\" style='$holder_style'>";
3645 }
3646
f407c086
AD
3647 function outputFeedList($link, $tags = false) {
3648
3bd9a780 3649 print "<ul class=\"feedList\" id=\"feedList\">";
f407c086
AD
3650
3651 $owner_uid = $_SESSION["uid"];
3652
cf4d339c 3653 /* virtual feeds */
f407c086 3654
cf4d339c 3655 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3b086176
AD
3656
3657 if ($_COOKIE["ttrss_vf_vclps"] == 1) {
bba7c4bf 3658 $cat_hidden = true;
3b086176 3659 } else {
bba7c4bf 3660 $cat_hidden = false;
3b086176
AD
3661 }
3662
3663# print "<li class=\"feedCat\">".__('Special')."</li>";
3664# print "<li id=\"feedCatHolder\" class=\"feedCatHolder\"><ul class=\"feedCatList\">";
bba7c4bf
AD
3665# print "<li class=\"feedCat\">".
3666# "<a id=\"FCATN--1\" href=\"javascript:toggleCollapseCat(-1)\">".
3667# __('Special')."</a> <span id='FCAP--1'>$ellipsis</span></li>";
3668#
3669# print "<li id=\"feedCatHolder\" class=\"feedCatHolder\">
3670# <ul class=\"feedCatList\" id='FCATLIST--1' style='$holder_style'>";
3b086176 3671
bba7c4bf
AD
3672# $cat_unread = getCategoryUnread($link, -1);
3673# $tmp_category = __("Special");
3674# $catctr_class = ($cat_unread > 0) ? "catCtrHasUnread" : "catCtrNoUnread";
3b086176 3675
bba7c4bf 3676 printCategoryHeader($link, -1, $cat_hidden, false);
cf4d339c 3677 }
f407c086 3678
cf4d339c 3679 $num_starred = getFeedUnread($link, -1);
e4f4b46f 3680 $num_published = getFeedUnread($link, -2);
2d24f032
AD
3681 $num_fresh = getFeedUnread($link, -3);
3682
3683 $class = "virt";
3684
3685 if ($num_fresh > 0) $class .= "Unread";
3686
3687 printFeedEntry(-3, $class, __("Fresh articles"), $num_fresh,
3688 "images/fresh.png", $link);
f407c086 3689
cf4d339c 3690 $class = "virt";
f407c086 3691
cf4d339c 3692 if ($num_starred > 0) $class .= "Unread";
f407c086 3693
abd8a516
AD
3694 $is_ie = (strpos($_SESSION["client.userAgent"], "MSIE") !== false);
3695
3696 if ($is_ie) {
3697 $mark_img_ext = "gif";
3698 } else {
3699 $mark_img_ext = "png";
3700 }
3701
d1db26aa 3702 printFeedEntry(-1, $class, __("Starred articles"), $num_starred,
abd8a516 3703 "images/mark_set.$mark_img_ext", $link);
f407c086 3704
e4f4b46f
AD
3705 $class = "virt";
3706
3707 if ($num_published > 0) $class .= "Unread";
3708
3709 printFeedEntry(-2, $class, __("Published articles"), $num_published,
f5e0338d 3710 "images/pub_set.gif", $link);
e4f4b46f 3711
cf4d339c 3712 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3bd9a780 3713 print "</ul>";
cf4d339c 3714 }
f407c086 3715
cf4d339c 3716 if (!$tags) {
f407c086
AD
3717
3718 if (GLOBAL_ENABLE_LABELS && get_pref($link, 'ENABLE_LABELS')) {
3719
3720 $result = db_query($link, "SELECT id,sql_exp,description FROM
3721 ttrss_labels WHERE owner_uid = '$owner_uid' ORDER by description");
3722
3723 if (db_num_rows($result) > 0) {
3724 if (get_pref($link, 'ENABLE_FEED_CATS')) {
bd64489f
AD
3725
3726 if ($_COOKIE["ttrss_vf_lclps"] == 1) {
bba7c4bf 3727 $cat_hidden = true;
bd64489f 3728 } else {
bba7c4bf 3729 $cat_hidden = false;
bd64489f
AD
3730 }
3731
bba7c4bf 3732 printCategoryHeader($link, -2, $cat_hidden, false);
bd64489f 3733
bba7c4bf
AD
3734# print "<li class=\"feedCat\">".
3735# "<a id=\"FCATN--2\" href=\"javascript:toggleCollapseCat(-2)\">".
3736# __('Labels')."</a> <span id='FCAP--2'>$ellipsis</span></li>";
3737#
3738# print "<li id=\"feedCatHolder\" class=\"feedCatHolder\"><ul class=\"feedCatList\" id='FCATLIST--2' style='$holder_style'>";
f407c086 3739 } else {
3bd9a780 3740 print "<li><hr></li>";
f407c086
AD
3741 }
3742 }
3743
3744 while ($line = db_fetch_assoc($result)) {
3745
3746 error_reporting (0);
3747
3748 $label_id = -$line['id'] - 11;
3749 $count = getFeedUnread($link, $label_id);
3750
3751 $class = "label";
3752
3753 if ($count > 0) {
3754 $class .= "Unread";
3755 }
3756
3757 error_reporting (DEFAULT_ERROR_LEVEL);
3758
3759 printFeedEntry($label_id,
47439031 3760 $class, $line["description"],
f407c086
AD
3761 $count, "images/label.png", $link);
3762
3763 }
3764
3765 if (db_num_rows($result) > 0) {
3766 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3767 print "</ul>";
3768 }
3769 }
3770
3771 }
3772
3773 if (!get_pref($link, 'ENABLE_FEED_CATS')) {
3bd9a780 3774 print "<li><hr></li>";
f407c086
AD
3775 }
3776
3777 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3778 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
3779 $order_by_qpart = "category,unread DESC,title";
3780 } else {
3781 $order_by_qpart = "category,title";
3782 }
3783 } else {
3784 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
3785 $order_by_qpart = "unread DESC,title";
3786 } else {
3787 $order_by_qpart = "title";
3788 }
3789 }
3790
14073c0a
AD
3791 $age_qpart = getMaxAgeSubquery();
3792
f407c086
AD
3793 $result = db_query($link, "SELECT ttrss_feeds.*,
3794 SUBSTRING(last_updated,1,19) AS last_updated_noms,
3795 (SELECT COUNT(id) FROM ttrss_entries,ttrss_user_entries
3796 WHERE feed_id = ttrss_feeds.id AND unread = true
14073c0a 3797 AND $age_qpart
f407c086
AD
3798 AND ttrss_user_entries.ref_id = ttrss_entries.id
3799 AND owner_uid = '$owner_uid') as unread,
3800 cat_id,last_error,
3801 ttrss_feed_categories.title AS category,
3802 ttrss_feed_categories.collapsed
3803 FROM ttrss_feeds LEFT JOIN ttrss_feed_categories
3804 ON (ttrss_feed_categories.id = cat_id)
3805 WHERE
3806 ttrss_feeds.hidden = false AND
3807 ttrss_feeds.owner_uid = '$owner_uid' AND parent_feed IS NULL
3808 ORDER BY $order_by_qpart");
3809
3810 $actid = $_GET["actid"];
3811
3812 /* real feeds */
3813
3814 $lnum = 0;
3815
3816 $total_unread = 0;
3817
3818 $category = "";
3819
3820 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
3821
3822 while ($line = db_fetch_assoc($result)) {
3823
47439031 3824 $feed = trim($line["title"]);
0f39ae20
AD
3825
3826 if (!$feed) $feed = "[Untitled]";
3827
f407c086
AD
3828 $feed_id = $line["id"];
3829
3830 $subop = $_GET["subop"];
3831
3832 $unread = $line["unread"];
3833
3834 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
3835 $last_updated = smart_date_time(strtotime($line["last_updated_noms"]));
3836 } else {
3837 $last_updated = date($short_date, strtotime($line["last_updated_noms"]));
3838 }
3839
3840 $rtl_content = sql_bool_to_bool($line["rtl_content"]);
3841
3842 if ($rtl_content) {
3843 $rtl_tag = "dir=\"RTL\"";
3844 } else {
3845 $rtl_tag = "";
3846 }
3847
3848 $tmp_result = db_query($link,
3849 "SELECT id,COUNT(unread) AS unread
3850 FROM ttrss_feeds LEFT JOIN ttrss_user_entries
3851 ON (ttrss_feeds.id = ttrss_user_entries.feed_id)
3852 WHERE parent_feed = '$feed_id' AND unread = true
3853 GROUP BY ttrss_feeds.id");
3854
3855 if (db_num_rows($tmp_result) > 0) {
3856 while ($l = db_fetch_assoc($tmp_result)) {
3857 $unread += $l["unread"];
3858 }
3859 }
3860
3861 $cat_id = $line["cat_id"];
3862
3863 $tmp_category = $line["category"];
3864
3865 if (!$tmp_category) {
d1db26aa 3866 $tmp_category = __("Uncategorized");
f407c086
AD
3867 }
3868
3869 // $class = ($lnum % 2) ? "even" : "odd";
3870
3871 if ($line["last_error"]) {
3872 $class = "error";
3873 } else {
3874 $class = "feed";
3875 }
3876
3877 if ($unread > 0) $class .= "Unread";
3878
3879 if ($actid == $feed_id) {
3880 $class .= "Selected";
3881 }
3882
3883 $total_unread += $unread;
3884
3885 if ($category != $tmp_category && get_pref($link, 'ENABLE_FEED_CATS')) {
3886
3887 if ($category) {
3888 print "</ul></li>";
3889 }
3890
3891 $category = $tmp_category;
3892
3893 $collapsed = $line["collapsed"];
3894
3895 // workaround for NULL category
d1db26aa 3896 if ($category == __("Uncategorized")) {
f407c086
AD
3897 if ($_COOKIE["ttrss_vf_uclps"] == 1) {
3898 $collapsed = "t";
3899 }
3900 }
3901
3902 if ($collapsed == "t" || $collapsed == "1") {
225ec0d4
AD
3903 $holder_class = "feedCatHolder";
3904 $holder_style = "display:none;";
f407c086
AD
3905 $ellipsis = "...";
3906 } else {
be5b75da 3907 $holder_class = "feedCatHolder";
225ec0d4 3908 $holder_style = "";
f407c086
AD
3909 $ellipsis = "";
3910 }
3911
3912 $cat_id = sprintf("%d", $cat_id);
3913
3914 $cat_unread = getCategoryUnread($link, $cat_id);
67dabe1a
AD
3915
3916 $catctr_class = ($cat_unread > 0) ? "catCtrHasUnread" : "catCtrNoUnread";
3917
3bd9a780 3918 print "<li class=\"feedCat\" id=\"FCAT-$cat_id\">
439bbe63 3919 <a id=\"FCATN-$cat_id\" href=\"javascript:toggleCollapseCat($cat_id)\">$tmp_category</a>
7210613a 3920 <a href=\"#\" onclick=\"javascript:viewCategory($cat_id)\" id=\"FCAP-$cat_id\">
67dabe1a
AD
3921 <span id=\"FCATCTR-$cat_id\" title=\"Click to browse category\"
3922 class=\"$catctr_class\">($cat_unread)</span> $ellipsis
3bd9a780 3923 </a></li>";
f407c086 3924
225ec0d4 3925 print "<li id=\"feedCatHolder\" class=\"$holder_class\"><ul class=\"feedCatList\" id=\"FCATLIST-$cat_id\" style='$holder_style'>";
f407c086
AD
3926 }
3927
3928 printFeedEntry($feed_id, $class, $feed, $unread,
99e37e09 3929 ICONS_DIR."/$feed_id.ico", $link, $rtl_content,
f407c086
AD
3930 $last_updated, $line["last_error"]);
3931
3932 ++$lnum;
3933 }
3934
3935 if (db_num_rows($result) == 0) {
3bd9a780 3936 print "<li>".__('No feeds to display.')."</li>";
f407c086
AD
3937 }
3938
3939 } else {
3940
3941 // tags
3942
3943/* $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
3944 FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
3945 post_int_id = ttrss_user_entries.int_id AND
3946 unread = true AND ref_id = ttrss_entries.id
3947 AND ttrss_tags.owner_uid = '$owner_uid' GROUP BY tag_name
3948 UNION
3949 select tag_name,0 as count FROM ttrss_tags WHERE owner_uid = '$owner_uid'
3950 ORDER BY tag_name"); */
3951
3952 if (get_pref($link, 'ENABLE_FEED_CATS')) {
d1db26aa 3953 print "<li class=\"feedCat\">".__('Tags')."</li>";
f407c086
AD
3954 print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">";
3955 }
3956
14073c0a
AD
3957 $age_qpart = getMaxAgeSubquery();
3958
f407c086 3959 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
14073c0a
AD
3960 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
3961 AND ref_id = id AND $age_qpart
f407c086 3962 AND unread = true)) AS count FROM ttrss_tags
ef1ac7c7
AD
3963 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name
3964 ORDER BY count DESC LIMIT 50");
f407c086
AD
3965
3966 $tags = array();
3967
3968 while ($line = db_fetch_assoc($result)) {
3969 $tags[$line["tag_name"]] += $line["count"];
3970 }
3971
3972 foreach (array_keys($tags) as $tag) {
3973
3974 $unread = $tags[$tag];
3975
3976 $class = "tag";
3977
3978 if ($unread > 0) {
3979 $class .= "Unread";
3980 }
3981
3982 printFeedEntry($tag, $class, $tag, $unread, "images/tag.png", $link);
3983
3984 }
3985
3986 if (db_num_rows($result) == 0) {
3987 print "<li>No tags to display.</li>";
3988 }
3989
3990 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3bd9a780 3991 print "</ul>";
f407c086
AD
3992 }
3993
3994 }
3995
3996 print "</ul>";
3997
3998 }
3999
bc976a8c 4000 function get_article_tags($link, $id, $owner_uid = 0) {
0b126ac2
AD
4001
4002 $a_id = db_escape_string($id);
4003
bc976a8c
AD
4004 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
4005
0c3d1c68
AD
4006 $tmp_result = db_query($link, "SELECT DISTINCT tag_name,
4007 owner_uid as owner FROM
0b126ac2 4008 ttrss_tags WHERE post_int_id = (SELECT int_id FROM ttrss_user_entries WHERE
bc976a8c 4009 ref_id = '$a_id' AND owner_uid = '$owner_uid' LIMIT 1) ORDER BY tag_name");
0b126ac2
AD
4010
4011 $tags = array();
4012
4013 while ($tmp_line = db_fetch_assoc($tmp_result)) {
4014 array_push($tags, $tmp_line["tag_name"]);
4015 }
4016
4017 return $tags;
4018 }
4019
d62a3b63
AD
4020 function trim_value(&$value) {
4021 $value = trim($value);
4022 }
4023
4024 function trim_array($array) {
4025 $tmp = $array;
4026 array_walk($tmp, 'trim_value');
4027 return $tmp;
4028 }
4029
be832a1a 4030 function tag_is_valid($tag) {
ef063748
AD
4031 if ($tag == '') return false;
4032 if (preg_match("/^[0-9]*$/", $tag)) return false;
4033
4034 $tag = iconv("utf-8", "utf-8", $tag);
4035 if (!$tag) return false;
4036
4037 return true;
be832a1a
AD
4038 }
4039
793185a9
AD
4040 function render_login_form($link, $mobile = false) {
4041 if (!$mobile) {
4042 require_once "login_form.php";
4043 } else {
4044 require_once "mobile/login_form.php";
4045 }
01a87dff
AD
4046 }
4047
dc56b3b7
AD
4048 // from http://developer.apple.com/internet/safari/faq.html
4049 function no_cache_incantation() {
4050 header("Expires: Mon, 22 Dec 1980 00:00:00 GMT"); // Happy birthday to me :)
4051 header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified
4052 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); // HTTP/1.1
4053 header("Cache-Control: post-check=0, pre-check=0", false);
4054 header("Pragma: no-cache"); // HTTP/1.0
4055 }
4056
42395d28
AD
4057 function format_warning($msg, $id = "") {
4058 return "<div class=\"warning\" id=\"$id\">
e780d1d2 4059 <img src=\"images/sign_excl.gif\">$msg</div>";
0d32b41e
AD
4060 }
4061
4062 function format_notice($msg) {
4063 return "<div class=\"notice\">
e780d1d2 4064 <img src=\"images/sign_info.gif\">$msg</div>";
0d32b41e
AD
4065 }
4066
68d2f95e
AD
4067 function format_error($msg) {
4068 return "<div class=\"error\">
e780d1d2 4069 <img src=\"images/sign_excl.gif\">$msg</div>";
68d2f95e
AD
4070 }
4071
4dccf1ed
AD
4072 function print_notice($msg) {
4073 return print format_notice($msg);
4074 }
4075
4076 function print_warning($msg) {
4077 return print format_warning($msg);
4078 }
4079
68d2f95e
AD
4080 function print_error($msg) {
4081 return print format_error($msg);
4082 }
4083
4084
4dccf1ed
AD
4085 function T_sprintf() {
4086 $args = func_get_args();
4087 return vsprintf(__(array_shift($args)), $args);
4088 }
4089
3de0261a
AD
4090 function outputArticleXML($link, $id, $feed_id, $mark_as_read = true) {
4091
10eb9da8
AD
4092 /* we can figure out feed_id from article id anyway, why do we
4093 * pass feed_id here? */
4094
4095 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
4096 WHERE ref_id = '$id'");
4097
4098 $feed_id = db_fetch_result($result, 0, "feed_id");
4099
3de0261a
AD
4100 print "<article id='$id'><![CDATA[";
4101
4102 $result = db_query($link, "SELECT rtl_content FROM ttrss_feeds
4103 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
4104
4105 if (db_num_rows($result) == 1) {
4106 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
4107 } else {
4108 $rtl_content = false;
4109 }
4110
4111 if ($rtl_content) {
4112 $rtl_tag = "dir=\"RTL\"";
4113 $rtl_class = "RTL";
4114 } else {
4115 $rtl_tag = "";
4116 $rtl_class = "";
4117 }
4118
4119 if ($mark_as_read) {
4120 $result = db_query($link, "UPDATE ttrss_user_entries
4121 SET unread = false,last_read = NOW()
4122 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4123 }
4124
4125 $result = db_query($link, "SELECT title,link,content,feed_id,comments,int_id,
4126 SUBSTRING(updated,1,16) as updated,
4127 (SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url,
4128 num_comments,
4129 author
4130 FROM ttrss_entries,ttrss_user_entries
4131 WHERE id = '$id' AND ref_id = id AND owner_uid = " . $_SESSION["uid"]);
4132
4133 if ($result) {
4134
4135 $link_target = "";
4136
4137 if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW')) {
4138 $link_target = "target=\"_new\"";
4139 }
4140
4141 $line = db_fetch_assoc($result);
4142
4143 if ($line["icon_url"]) {
4144 $feed_icon = "<img class=\"feedIcon\" src=\"" . $line["icon_url"] . "\">";
4145 } else {
4146 $feed_icon = "&nbsp;";
4147 }
4148
4149/* if ($line["comments"] && $line["link"] != $line["comments"]) {
4150 $entry_comments = "(<a href=\"".$line["comments"]."\">Comments</a>)";
4151 } else {
4152 $entry_comments = "";
4153 } */
4154
4155 $num_comments = $line["num_comments"];
4156 $entry_comments = "";
4157
4158 if ($num_comments > 0) {
4159 if ($line["comments"]) {
4160 $comments_url = $line["comments"];
4161 } else {
4162 $comments_url = $line["link"];
4163 }
4164 $entry_comments = "<a $link_target href=\"$comments_url\">$num_comments comments</a>";
4165 } else {
4166 if ($line["comments"] && $line["link"] != $line["comments"]) {
4167 $entry_comments = "<a $link_target href=\"".$line["comments"]."\">comments</a>";
4168 }
4169 }
4170
4171 print "<div class=\"postReply\">";
4172
4173 print "<div class=\"postHeader\">";
4174
4175 $entry_author = $line["author"];
4176
4177 if ($entry_author) {
4178 $entry_author = __(" - by ") . $entry_author;
4179 }
4180
4181 $parsed_updated = date(get_pref($link, 'LONG_DATE_FORMAT'),
4182 strtotime($line["updated"]));
4183
4184 print "<div class=\"postDate$rtl_class\">$parsed_updated</div>";
4185
4186 if ($line["link"]) {
4187 print "<div clear='both'><a $link_target href=\"" . $line["link"] . "\">" .
06202d88 4188 $line["title"] . "</a><span class='author'>$entry_author</span></div>";
3de0261a
AD
4189 } else {
4190 print "<div clear='both'>" . $line["title"] . "$entry_author</div>";
4191 }
4192
9cfd409d 4193/* $tmp_result = db_query($link, "SELECT DISTINCT tag_name FROM
3de0261a 4194 ttrss_tags WHERE post_int_id = " . $line["int_id"] . "
9cfd409d
AD
4195 ORDER BY tag_name"); */
4196
4197 $tags = get_article_tags($link, $id);
3de0261a
AD
4198
4199 $tags_str = "";
4200 $f_tags_str = "";
4201
4202 $num_tags = 0;
4203
9cfd409d 4204 foreach ($tags as $tag) {
3de0261a 4205 $num_tags++;
14b6c54b
AD
4206 $tag_escaped = str_replace("'", "\\'", $tag);
4207
4208 $tag_str = "<a href=\"javascript:viewfeed('$tag_escaped')\">$tag</a>, ";
3de0261a
AD
4209
4210 if ($num_tags == 6) {
e7544143
AD
4211 $tags_str .= "...";
4212
3de0261a
AD
4213 } else if ($num_tags < 6) {
4214 $tags_str .= $tag_str;
4215 }
4216 $f_tags_str .= $tag_str;
4217 }
4218
4219 $tags_str = preg_replace("/, $/", "", $tags_str);
4220 $f_tags_str = preg_replace("/, $/", "", $f_tags_str);
4221
e7544143
AD
4222 $all_tags_div = "<span class='cdmAllTagsCtr'>...<div class='cdmAllTags'>All Tags: $f_tags_str</div></span>";
4223 $tags_str = preg_replace("/\.\.\.$/", "$all_tags_div", $tags_str);
4224
3de0261a
AD
4225 if (!$entry_comments) $entry_comments = "&nbsp;"; # placeholder
4226
4227 if (!$tags_str) $tags_str = '<span class="tagList">'.__('no tags').'</span>';
4228
5f014cf1
AD
4229 print "<div style='float : right'>
4230 <img src='images/tag.png' class='tagsPic' alt='Tags' title='Tags'>
4231 $tags_str
3de0261a
AD
4232 <a title=\"Edit tags for this article\"
4233 href=\"javascript:editArticleTags($id, $feed_id)\">(+)</a></div>
4234 <div clear='both'>$entry_comments</div>";
4235
4236 print "</div>";
4237
4238 print "<div class=\"postIcon\">" . $feed_icon . "</div>";
4239 print "<div class=\"postContent\">";
4240
e7544143 4241 #print "<div id=\"allEntryTags\">".__('Tags:')." $f_tags_str</div>";
3de0261a 4242
c41890b0
AD
4243 $line["content"] = sanitize_rss($link, $line["content"]);
4244
3de0261a
AD
4245 if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW')) {
4246 $line["content"] = preg_replace("/href=/i", "target=\"_new\" href=", $line["content"]);
4247 }
4248
3de0261a
AD
4249 print $line["content"] . "</div>";
4250
4251 print "</div>";
4252
4253 }
4254
4255 print "]]></article>";
4256
4257 }
4258
4259 function outputHeadlinesList($link, $feed, $subop, $view_mode, $limit, $cat_view,
4260 $next_unread_feed, $offset) {
4261
46921916
AD
4262 $timing_info = getmicrotime();
4263
961f4c73
AD
4264 $topmost_article_ids = array();
4265
ac541432
AD
4266 if (!$offset) {
4267 $offset = 0;
4268 }
3de0261a
AD
4269
4270 if ($subop == "undefined") $subop = "";
4271
4272 if ($subop == "CatchupSelected") {
4273 $ids = split(",", db_escape_string($_GET["ids"]));
4274 $cmode = sprintf("%d", $_GET["cmode"]);
4275
4276 catchupArticlesById($link, $ids, $cmode);
4277 }
4278
4279 if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0) {
4280 update_generic_feed($link, $feed, $cat_view);
4281 }
4282
4283 if ($subop == "MarkAllRead") {
4284 catchup_feed($link, $feed, $cat_view);
4285
4286 if (get_pref($link, 'ON_CATCHUP_SHOW_NEXT_FEED')) {
4287 if ($next_unread_feed) {
4288 $feed = $next_unread_feed;
4289 }
4290 }
4291 }
4292
4293 if ($feed_id > 0) {
4294 $result = db_query($link,
4295 "SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
4296
4297 if (db_num_rows($result) == 0) {
4298 print "<div align='center'>".__('Feed not found.')."</div>";
4299 return;
4300 }
4301 }
4302
4303 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
10eb9da8 4304
3de0261a
AD
4305 $result = db_query($link, "SELECT rtl_content FROM ttrss_feeds
4306 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
4307
4308 if (db_num_rows($result) == 1) {
4309 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
4310 } else {
4311 $rtl_content = false;
4312 }
4313
4314 if ($rtl_content) {
4315 $rtl_tag = "dir=\"RTL\"";
4316 } else {
4317 $rtl_tag = "";
4318 }
4319 } else {
4320 $rtl_tag = "";
4321 $rtl_content = false;
4322 }
4323
4324 $script_dt_add = get_script_dt_add();
4325
4326 /// START /////////////////////////////////////////////////////////////////////////////////
4327
4328 $search = db_escape_string($_GET["query"]);
4329 $search_mode = db_escape_string($_GET["search_mode"]);
4330 $match_on = db_escape_string($_GET["match_on"]);
4331
4332 if (!$match_on) {
4333 $match_on = "both";
4334 }
4335
4336 $real_offset = $offset * $limit;
4337
46921916
AD
4338 if ($_GET["debug"]) $timing_info = print_checkpoint("H0", $timing_info);
4339
3de0261a
AD
4340 $qfh_ret = queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view,
4341 $search, $search_mode, $match_on, false, $real_offset);
4342
46921916
AD
4343 if ($_GET["debug"]) $timing_info = print_checkpoint("H1", $timing_info);
4344
3de0261a
AD
4345 $result = $qfh_ret[0];
4346 $feed_title = $qfh_ret[1];
4347 $feed_site_url = $qfh_ret[2];
4348 $last_error = $qfh_ret[3];
f56e3080
AD
4349
4350 if ($feed == -2) {
4351 $feed_site_url = article_publish_url($link);
4352 }
4353
3de0261a
AD
4354 /// STOP //////////////////////////////////////////////////////////////////////////////////
4355
ac541432
AD
4356 if (!$offset) {
4357 print "<div id=\"headlinesContainer\" $rtl_tag>";
3de0261a 4358
ac541432
AD
4359 if (!$result) {
4360 print "<div align='center'>".__("Could not display feed (query failed). Please check label match syntax or local configuration.")."</div>";
4361 return;
4362 }
3de0261a 4363
ac541432
AD
4364 print_headline_subtoolbar($link, $feed_site_url, $feed_title, false,
4365 $rtl_content, $feed, $cat_view, $search, $match_on, $search_mode,
4366 $offset, $limit);
3de0261a 4367
ac541432
AD
4368 print "<div id=\"headlinesInnerContainer\" onscroll=\"headlines_scroll_handler()\">";
4369 }
3de0261a 4370
29dfb258
AD
4371 $headlines_count = db_num_rows($result);
4372
3de0261a
AD
4373 if (db_num_rows($result) > 0) {
4374
4375# print "\{$offset}";
4376
ac541432 4377 if (!get_pref($link, 'COMBINED_DISPLAY_MODE') && !$offset) {
3de0261a
AD
4378 print "<table class=\"headlinesList\" id=\"headlinesList\"
4379 cellspacing=\"0\">";
4380 }
4381
4ab4d364
AD
4382 $lnum = $limit*$offset;
4383
3de0261a
AD
4384 error_reporting (DEFAULT_ERROR_LEVEL);
4385
4386 $num_unread = 0;
4387
4388 while ($line = db_fetch_assoc($result)) {
4389
4390 $class = ($lnum % 2) ? "even" : "odd";
4391
4392 $id = $line["id"];
4393 $feed_id = $line["feed_id"];
961f4c73
AD
4394
4395 if (count($topmost_article_ids) < 5) {
4396 array_push($topmost_article_ids, $id);
4397 }
4398
3de0261a
AD
4399 if ($line["last_read"] == "" &&
4400 ($line["unread"] != "t" && $line["unread"] != "1")) {
4401
4402 $update_pic = "<img id='FUPDPIC-$id' src=\"images/updated.png\"
4403 alt=\"Updated\">";
4404 } else {
4405 $update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.gif\"
4406 alt=\"Updated\">";
4407 }
4408
4409 if ($line["unread"] == "t" || $line["unread"] == "1") {
4410 $class .= "Unread";
4411 ++$num_unread;
4412 $is_unread = true;
4413 } else {
4414 $is_unread = false;
4415 }
abd8a516
AD
4416
4417 $is_ie = (strpos($_SESSION["client.userAgent"], "MSIE") !== false);
4418
4419 if ($is_ie) {
4420 $mark_img_ext = "gif";
4421 } else {
4422 $mark_img_ext = "png";
4423 }
4424
3de0261a 4425 if ($line["marked"] == "t" || $line["marked"] == "1") {
abd8a516 4426 $marked_pic = "<img id=\"FMPIC-$id\" src=\"images/mark_set.$mark_img_ext\"
3de0261a 4427 class=\"markedPic\"
f5e0338d 4428 alt=\"Unstar article\" onclick='javascript:tMark($id)'>";
3de0261a 4429 } else {
abd8a516 4430 $marked_pic = "<img id=\"FMPIC-$id\" src=\"images/mark_unset.$mark_img_ext\"
3de0261a 4431 class=\"markedPic\"
f5e0338d 4432 alt=\"Star article\" onclick='javascript:tMark($id)'>";
3de0261a
AD
4433 }
4434
e4f4b46f 4435 if ($line["published"] == "t" || $line["published"] == "1") {
f5e0338d 4436 $published_pic = "<img id=\"FPPIC-$id\" src=\"images/pub_set.gif\"
e4f4b46f 4437 class=\"markedPic\"
f5e0338d 4438 alt=\"Unpublish article\" onclick='javascript:tPub($id)'>";
e4f4b46f 4439 } else {
f5e0338d 4440 $published_pic = "<img id=\"FPPIC-$id\" src=\"images/pub_unset.gif\"
e4f4b46f 4441 class=\"markedPic\"
f5e0338d 4442 alt=\"Publish article\" onclick='javascript:tPub($id)'>";
e4f4b46f
AD
4443 }
4444
3de0261a
AD
4445# $content_link = "<a target=\"_new\" href=\"".$line["link"]."\">" .
4446# $line["title"] . "</a>";
4447
4448 $content_link = "<a href=\"javascript:view($id,$feed_id);\">" .
4449 $line["title"] . "</a>";
4450
4451# $content_link = "<a href=\"javascript:viewContentUrl('".$line["link"]."');\">" .
4452# $line["title"] . "</a>";
4453
4454 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
46921916 4455 $updated_fmt = smart_date_time(strtotime($line["updated_noms"]));
3de0261a
AD
4456 } else {
4457 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
46921916 4458 $updated_fmt = date($short_date, strtotime($line["updated_noms"]));
3de0261a
AD
4459 }
4460
4461 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
4462 $content_preview = truncate_string(strip_tags($line["content_preview"]),
4463 100);
4464 }
4465
4466 $entry_author = $line["author"];
4467
4468 if ($entry_author) {
4469 $entry_author = " - by $entry_author";
4470 }
4471
4472 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
4473
4474 print "<tr class='$class' id='RROW-$id'>";
4475
67343d9f 4476 print "<td class='hlUpdPic'>$update_pic</td>";
3de0261a
AD
4477
4478 print "<td class='hlSelectRow'>
67343d9f
AD
4479 <input type=\"checkbox\" onclick=\"tSR(this)\"
4480 id=\"RCHK-$id\">
3de0261a
AD
4481 </td>";
4482
4483 print "<td class='hlMarkedPic'>$marked_pic</td>";
e4f4b46f 4484 print "<td class='hlMarkedPic'>$published_pic</td>";
3de0261a 4485
df456bb0
AD
4486# if ($line["feed_title"]) {
4487# print "<td class='hlContent'>$content_link</td>";
4488# print "<td class='hlFeed'>
4489# <a href=\"javascript:viewfeed($feed_id, '', false)\">".
4490# truncate_string($line["feed_title"],30)."</a>&nbsp;</td>";
4491# } else {
4492
4493 print "<td class='hlContent' valign='middle'>";
4494
4495 print "<a href=\"javascript:view($id,$feed_id);\">" .
4496 $line["title"];
4497
4498 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
4499 if ($content_preview) {
4500 print "<span class=\"contentPreview\"> - $content_preview</span>";
3de0261a 4501 }
3de0261a 4502 }
df456bb0
AD
4503
4504 print "</a>";
4505
4506# <a href=\"javascript:viewfeed($feed_id, '', false)\">".
4507# $line["feed_title"]."</a>
4508
4509 if ($line["feed_title"]) {
4510 print "<span class=\"hlFeed\">
4511 (<a href=\"javascript:viewfeed($feed_id, '', false)\">".
4512 $line["feed_title"]."</a>)
4513 </span>";
4514 }
4515
4516
4517 print "</td>";
4518
4519# }
3de0261a
AD
4520
4521 print "<td class=\"hlUpdated\"><nobr>$updated_fmt&nbsp;</nobr></td>";
4522
4523 print "</tr>";
4524
4525 } else {
4526
4527 if ($is_unread) {
4528 $add_class = "Unread";
4529 } else {
4530 $add_class = "";
4531 }
4532
e4914b62
AD
4533 print "<div class=\"cdmArticle$add_class\"
4534 id=\"RROW-$id\" onmouseover='cdmMouseIn(this)'
4535 onmouseout='cdmMouseOut(this)'>";
3de0261a
AD
4536
4537 print "<div class=\"cdmHeader\">";
4538
4539 print "<div class=\"articleUpdated\">$updated_fmt</div>";
4540
4541 print "<a class=\"title\"
4542 onclick=\"javascript:toggleUnread($id, 0)\"
3fc2eed5 4543 target=\"_new\" href=\"".$line["link"]."\">".$line["title"]."</a>";
3de0261a
AD
4544
4545 print $entry_author;
4546
4547 if ($line["feed_title"]) {
4548 print "&nbsp;(<a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a>)";
4549 }
4550
4551 print "</div>";
4552
3fc2eed5
AD
4553 if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW')) {
4554 $line["content_preview"] = preg_replace("/href=/i",
4555 "target=\"_new\" href=", $line["content_preview"]);
4556 }
4557
3de0261a
AD
4558 print "<div class=\"cdmContent\">" . $line["content_preview"] . "</div><br clear=\"all\">";
4559
e2ccbfab 4560 print "<div class=\"cdmFooter\"><span class='s0'>";
3de0261a 4561
e2ccbfab 4562 /* print "<div class=\"markedPic\">Star it: $marked_pic</div>"; */
3de0261a 4563
e2ccbfab
AD
4564 print __("Select:").
4565 " <input type=\"checkbox\" onclick=\"toggleSelectRowById(this,
3de0261a
AD
4566 'RROW-$id')\" class=\"feedCheckBox\" id=\"RCHK-$id\">";
4567
e2ccbfab 4568 print "</span><span class='s1'>$marked_pic</span> ";
e4f4b46f 4569 print "<span class='s1'>$published_pic</span> ";
e2ccbfab 4570
3de0261a
AD
4571 $tags = get_article_tags($link, $id);
4572
4573 $tags_str = "";
22d1f3db 4574 $full_tags_str = "";
d735ebd2 4575 $num_tags = 0;
3de0261a
AD
4576
4577 foreach ($tags as $tag) {
4578 $num_tags++;
22d1f3db
AD
4579 $full_tags_str .= "<a href=\"javascript:viewfeed('$tag')\">$tag</a>, ";
4580 if ($num_tags < 5) {
4581 $tags_str .= "<a href=\"javascript:viewfeed('$tag')\">$tag</a>, ";
4582 } else if ($num_tags == 5) {
4583 $tags_str .= "...";
4584 }
3de0261a
AD
4585 }
4586
4587 $tags_str = preg_replace("/, $/", "", $tags_str);
22d1f3db
AD
4588 $full_tags_str = preg_replace("/, $/", "", $full_tags_str);
4589
4590 $all_tags_div = "<span class='cdmAllTagsCtr'>...<div class='cdmAllTags'>All Tags: $full_tags_str</div></span>";
4591
4592 $tags_str = preg_replace("/\.\.\.$/", "$all_tags_div", $tags_str);
4593
3de0261a
AD
4594
4595 if ($tags_str == "") $tags_str = "no tags";
e2ccbfab
AD
4596
4597// print "<img src='images/tag.png' class='markedPic'>";
4598
5f014cf1
AD
4599 print "<span class='s1'>
4600 <img class='tagsPic' src='images/tag.png' alt='Tags'
4601 title='Tags'> $tags_str <a title=\"Edit tags for this article\"
3de0261a
AD
4602 href=\"javascript:editArticleTags($id, $feed_id, true)\">(+)</a>";
4603
e2ccbfab 4604 print "</span>";
3de0261a 4605
e2ccbfab
AD
4606 print "<span class='s2'>Toggle: <a class=\"cdmToggleLink\"
4607 href=\"javascript:toggleUnread($id)\">
4608 Unread</a></span>";
3de0261a 4609
e2ccbfab 4610 print "</div>";
3de0261a
AD
4611 print "</div>";
4612
4613 }
4614
4615 ++$lnum;
4616 }
4617
ac541432 4618 if (!get_pref($link, 'COMBINED_DISPLAY_MODE') && !$offset) {
3de0261a
AD
4619 print "</table>";
4620 }
4621
4622// print_headline_subtoolbar($link,
4623// "javascript:catchupPage()", "Mark page as read", true, $rtl_content);
4624
4625
4626 } else {
ac541432 4627 if (!$offset) print "<div class='whiteBox'>".__('No articles found.')."</div>";
3de0261a
AD
4628 }
4629
ac541432
AD
4630 if (!$offset) {
4631 print "</div>";
4632 print "</div>";
4633 }
3de0261a 4634
29dfb258 4635 return array($topmost_article_ids, $headlines_count);
3de0261a 4636 }
0979b696
AD
4637
4638// from here: http://www.roscripts.com/Create_tag_cloud-71.html
4639
4640 function printTagCloud($link) {
35a03bdd
AD
4641
4642 /* get first ref_id to count from */
4643
dcac082b
AD
4644 /*
4645
35a03bdd
AD
4646 $query = "";
4647
4648 if (DB_TYPE == "pgsql") {
4649 $query = "SELECT MIN(id) AS id FROM ttrss_user_entries, ttrss_entries
4650 WHERE int_id = id AND owner_uid = ".$_SESSION["uid"]."
4651 AND date_entered > NOW() - INTERVAL '30 days'";
4652 } else {
4653 $query = "SELECT MIN(id) AS id FROM ttrss_user_entries, ttrss_entries
4654 WHERE int_id = id AND owner_uid = ".$_SESSION["uid"]."
4655 AND date_entered > DATE_SUB(NOW(), INTERVAL 30 DAY)";
4656 }
4657
4658 $result = db_query($link, $query);
dcac082b 4659 $first_id = db_fetch_result($result, 0, "id"); */
35a03bdd 4660
dcac082b 4661 //AND post_int_id >= '$first_id'
0979b696
AD
4662 $query = "SELECT tag_name, COUNT(post_int_id) AS count
4663 FROM ttrss_tags WHERE owner_uid = ".$_SESSION["uid"]."
b31af972 4664 GROUP BY tag_name ORDER BY count DESC LIMIT 50";
0979b696
AD
4665
4666 $result = db_query($link, $query);
4667
4668 $tags = array();
4669
4670 while ($line = db_fetch_assoc($result)) {
4671 $tags[$line["tag_name"]] = $line["count"];
4672 }
4673
4674 ksort($tags);
4675
4676 $max_size = 32; // max font size in pixels
4548a580 4677 $min_size = 11; // min font size in pixels
0979b696
AD
4678
4679 // largest and smallest array values
4680 $max_qty = max(array_values($tags));
4681 $min_qty = min(array_values($tags));
4682
4683 // find the range of values
4684 $spread = $max_qty - $min_qty;
4685 if ($spread == 0) { // we don't want to divide by zero
4686 $spread = 1;
4687 }
4688
4689 // set the font-size increment
4690 $step = ($max_size - $min_size) / ($spread);
4691
4692 // loop through the tag array
4693 foreach ($tags as $key => $value) {
4694 // calculate font-size
4695 // find the $value in excess of $min_qty
4696 // multiply by the font-size increment ($size)
4697 // and add the $min_size set above
4698 $size = round($min_size + (($value - $min_qty) * $step));
546ffab4
AD
4699
4700 $key_escaped = str_replace("'", "\\'", $key);
4701
4702 echo "<a href=\"javascript:viewfeed('$key_escaped') \" style=\"font-size: " .
0979b696
AD
4703 $size . "px\" title=\"$value articles tagged with " .
4704 $key . '">' . $key . '</a> ';
4705 }
4706 }
46921916
AD
4707
4708 function print_checkpoint($n, $s) {
4709 $ts = getmicrotime();
4710 echo sprintf("<!-- CP[$n] %.4f seconds -->", $ts - $s);
4711 return $ts;
4712 }
14b6c54b
AD
4713
4714 function sanitize_tag($tag) {
4715 $tag = trim($tag);
4716
4717 $tag = mb_strtolower($tag, 'utf-8');
4718
0c3d1c68
AD
4719 $tag = preg_replace('/[\"\+\>\<]/', "", $tag);
4720
4721// $tag = str_replace('"', "", $tag);
4722// $tag = str_replace("+", " ", $tag);
14b6c54b
AD
4723 $tag = str_replace("technorati tag: ", "", $tag);
4724
4725 return $tag;
4726 }
e4f4b46f
AD
4727
4728 function generate_publish_key() {
4729 return sha1(uniqid(rand(), true));
4730 }
4731
f56e3080
AD
4732 function article_publish_url($link) {
4733
17a756d1 4734 $url_path = 'http://' . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
f56e3080
AD
4735
4736 $url_path .= "?op=publish&key=" . get_pref($link, "_PREFS_PUBLISH_KEY");
4737
4738 return $url_path;
4739 }
4740
d1f0c584
AD
4741 function clear_feed_articles($link, $id) {
4742 $result = db_query($link, "DELETE FROM ttrss_user_entries
a8ae1b9a 4743 WHERE feed_id = '$id' AND marked = false AND owner_uid = " . $_SESSION["uid"]);
d1f0c584
AD
4744
4745 $result = db_query($link, "DELETE FROM ttrss_entries WHERE
4746 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
4747 }
4748
755a43ee
AD
4749 function add_feed_url() {
4750 $url_path = 'http://' . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
4751 $url_path .= "?op=pref-feeds&quiet=1&subop=add&feed_url=%s";
4752 return $url_path;
4753 }
4754
40d13c28 4755?>