]> git.wh0rd.org - tt-rss.git/blob - functions.php
rework subtoolbar actions dropdown
[tt-rss.git] / functions.php
1 <?php
2
3 /* if ($_GET["debug"]) {
4 define('DEFAULT_ERROR_LEVEL', E_ALL);
5 } else {
6 define('DEFAULT_ERROR_LEVEL', E_ERROR | E_WARNING | E_PARSE);
7 } */
8
9 require_once 'config.php';
10
11 if (DB_TYPE == "pgsql") {
12 define('SUBSTRING_FOR_DATE', 'SUBSTRING_FOR_DATE');
13 } else {
14 define('SUBSTRING_FOR_DATE', 'SUBSTRING');
15 }
16
17 /**
18 * Return available translations names.
19 *
20 * @access public
21 * @return array A array of available translations.
22 */
23 function get_translations() {
24 $tr = array(
25 "auto" => "Detect automatically",
26 "en_US" => "English",
27 "fr_FR" => "Français",
28 "hu_HU" => "Magyar (Hungarian)",
29 "it_IT" => "Italiano",
30 "ja_JP" => "日本語 (Japanese)",
31 "nb_NO" => "Norwegian bokmål",
32 "ru_RU" => "Русский",
33 "pt_BR" => "Portuguese/Brazil",
34 "zh_CN" => "Simplified Chinese");
35
36 return $tr;
37 }
38
39 if (ENABLE_TRANSLATIONS == true) { // If translations are enabled.
40 require_once "accept-to-gettext.php";
41 require_once "gettext/gettext.inc";
42
43 function startup_gettext() {
44
45 # Get locale from Accept-Language header
46 $lang = al2gt(array_keys(get_translations()), "text/html");
47
48 if (defined('_TRANSLATION_OVERRIDE_DEFAULT')) {
49 $lang = _TRANSLATION_OVERRIDE_DEFAULT;
50 }
51
52 if ($_COOKIE["ttrss_lang"] && $_COOKIE["ttrss_lang"] != "auto") {
53 $lang = $_COOKIE["ttrss_lang"];
54 }
55
56 /* In login action of mobile version */
57 if ($_POST["language"] && defined('MOBILE_VERSION')) {
58 $lang = $_POST["language"];
59 $_COOKIE["ttrss_lang"] = $lang;
60 }
61
62 if ($lang) {
63 if (defined('LC_MESSAGES')) {
64 _setlocale(LC_MESSAGES, $lang);
65 } else if (defined('LC_ALL')) {
66 _setlocale(LC_ALL, $lang);
67 } else {
68 die("can't setlocale(): please set ENABLE_TRANSLATIONS to false in config.php");
69 }
70
71 if (defined('MOBILE_VERSION')) {
72 _bindtextdomain("messages", "../locale");
73 } else {
74 _bindtextdomain("messages", "locale");
75 }
76
77 _textdomain("messages");
78 _bind_textdomain_codeset("messages", "UTF-8");
79 }
80 }
81
82 startup_gettext();
83
84 } else { // If translations are enabled.
85 function __($msg) {
86 return $msg;
87 }
88 function startup_gettext() {
89 // no-op
90 return true;
91 }
92 } // If translations are enabled.
93
94 require_once 'db-prefs.php';
95 require_once 'compat.php';
96 require_once 'errors.php';
97 require_once 'version.php';
98
99 require_once 'phpmailer/class.phpmailer.php';
100
101 define('MAGPIE_USER_AGENT_EXT', ' (Tiny Tiny RSS/' . VERSION . ')');
102 define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');
103 define('MAGPIE_CACHE_AGE', 60*15); // 15 minutes
104
105 require_once "simplepie/simplepie.inc";
106 require_once "magpierss/rss_fetch.inc";
107 require_once 'magpierss/rss_utils.inc';
108
109 /**
110 * Print a timestamped debug message.
111 *
112 * @param string $msg The debug message.
113 * @return void
114 */
115 function _debug($msg) {
116 $ts = strftime("%H:%M:%S", time());
117 if (function_exists('posix_getpid')) {
118 $ts = "$ts/" . posix_getpid();
119 }
120 print "[$ts] $msg\n";
121 } // function _debug
122
123 /**
124 * Purge a feed old posts.
125 *
126 * @param mixed $link A database connection.
127 * @param mixed $feed_id The id of the purged feed.
128 * @param mixed $purge_interval Olderness of purged posts.
129 * @param boolean $debug Set to True to enable the debug. False by default.
130 * @access public
131 * @return void
132 */
133 function purge_feed($link, $feed_id, $purge_interval, $debug = false) {
134
135 if (!$purge_interval) $purge_interval = feed_purge_interval($link, $feed_id);
136
137 $rows = -1;
138
139 $result = db_query($link,
140 "SELECT owner_uid FROM ttrss_feeds WHERE id = '$feed_id'");
141
142 $owner_uid = false;
143
144 if (db_num_rows($result) == 1) {
145 $owner_uid = db_fetch_result($result, 0, "owner_uid");
146 }
147
148 if (!$owner_uid) return;
149
150 if (FORCE_ARTICLE_PURGE == 0) {
151 $purge_unread = get_pref($link, "PURGE_UNREAD_ARTICLES",
152 $owner_uid, false);
153 } else {
154 $purge_unread = true;
155 $purge_interval = FORCE_ARTICLE_PURGE;
156 }
157
158 if (!$purge_unread) $query_limit = " unread = false AND ";
159
160 if (DB_TYPE == "pgsql") {
161 /* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
162 marked = false AND feed_id = '$feed_id' AND
163 (SELECT date_entered FROM ttrss_entries WHERE
164 id = ref_id) < NOW() - INTERVAL '$purge_interval days'"); */
165
166 $pg_version = get_pgsql_version($link);
167
168 if (preg_match("/^7\./", $pg_version) || preg_match("/^8\.0/", $pg_version)) {
169
170 $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
171 ttrss_entries.id = ref_id AND
172 marked = false AND
173 feed_id = '$feed_id' AND
174 $query_limit
175 ttrss_entries.date_entered < NOW() - INTERVAL '$purge_interval days'");
176
177 } else {
178
179 $result = db_query($link, "DELETE FROM ttrss_user_entries
180 USING ttrss_entries
181 WHERE ttrss_entries.id = ref_id AND
182 marked = false AND
183 feed_id = '$feed_id' AND
184 $query_limit
185 ttrss_entries.date_entered < NOW() - INTERVAL '$purge_interval days'");
186 }
187
188 $rows = pg_affected_rows($result);
189
190 } else {
191
192 /* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
193 marked = false AND feed_id = '$feed_id' AND
194 (SELECT date_entered FROM ttrss_entries WHERE
195 id = ref_id) < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)"); */
196
197 $result = db_query($link, "DELETE FROM ttrss_user_entries
198 USING ttrss_user_entries, ttrss_entries
199 WHERE ttrss_entries.id = ref_id AND
200 marked = false AND
201 feed_id = '$feed_id' AND
202 $query_limit
203 ttrss_entries.date_entered < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)");
204
205 $rows = mysql_affected_rows($link);
206
207 }
208
209 ccache_update($link, $feed_id, $owner_uid);
210
211 if ($debug) {
212 _debug("Purged feed $feed_id ($purge_interval): deleted $rows articles");
213 }
214 } // function purge_feed
215
216 /**
217 * Purge old posts from old feeds.
218 *
219 * @param mixed $link A database connection
220 * @param boolean $do_output Set to true to enable printed output, false by default.
221 * @param integer $limit The maximal number of removed posts.
222 * @access public
223 * @return void
224 */
225 function global_purge_old_posts($link, $do_output = false, $limit = false) {
226
227 $random_qpart = sql_random_function();
228
229 if ($limit) {
230 $limit_qpart = "LIMIT $limit";
231 } else {
232 $limit_qpart = "";
233 }
234
235 $result = db_query($link,
236 "SELECT id,purge_interval,owner_uid FROM ttrss_feeds
237 ORDER BY $random_qpart $limit_qpart");
238
239 while ($line = db_fetch_assoc($result)) {
240
241 $feed_id = $line["id"];
242 $purge_interval = $line["purge_interval"];
243 $owner_uid = $line["owner_uid"];
244
245 if ($purge_interval == 0) {
246
247 $tmp_result = db_query($link,
248 "SELECT value FROM ttrss_user_prefs WHERE
249 pref_name = 'PURGE_OLD_DAYS' AND owner_uid = '$owner_uid'");
250
251 if (db_num_rows($tmp_result) != 0) {
252 $purge_interval = db_fetch_result($tmp_result, 0, "value");
253 }
254 }
255
256 if ($do_output) {
257 // print "Feed $feed_id: purge interval = $purge_interval\n";
258 }
259
260 if ($purge_interval > 0 || FORCE_ARTICLE_PURGE) {
261 purge_feed($link, $feed_id, $purge_interval, $do_output);
262 }
263 }
264
265 // purge orphaned posts in main content table
266 $result = db_query($link, "DELETE FROM ttrss_entries WHERE
267 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
268
269 if ($do_output) {
270 $rows = db_affected_rows($link, $result);
271 _debug("Purged $rows orphaned posts.");
272 }
273
274 } // function global_purge_old_posts
275
276 function feed_purge_interval($link, $feed_id) {
277
278 $result = db_query($link, "SELECT purge_interval, owner_uid FROM ttrss_feeds
279 WHERE id = '$feed_id'");
280
281 if (db_num_rows($result) == 1) {
282 $purge_interval = db_fetch_result($result, 0, "purge_interval");
283 $owner_uid = db_fetch_result($result, 0, "owner_uid");
284
285 if ($purge_interval == 0) $purge_interval = get_pref($link,
286 'PURGE_OLD_DAYS', $owner_uid);
287
288 return $purge_interval;
289
290 } else {
291 return -1;
292 }
293 }
294
295 function purge_old_posts($link) {
296
297 $user_id = $_SESSION["uid"];
298
299 $result = db_query($link, "SELECT id,purge_interval FROM ttrss_feeds
300 WHERE owner_uid = '$user_id'");
301
302 while ($line = db_fetch_assoc($result)) {
303
304 $feed_id = $line["id"];
305 $purge_interval = $line["purge_interval"];
306
307 if ($purge_interval == 0) $purge_interval = get_pref($link, 'PURGE_OLD_DAYS');
308
309 if ($purge_interval > 0) {
310 purge_feed($link, $feed_id, $purge_interval);
311 }
312 }
313
314 purge_orphans($link);
315 }
316
317 function purge_orphans($link) {
318 // purge orphaned posts in main content table
319 db_query($link, "DELETE FROM ttrss_entries WHERE
320 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
321 }
322
323 function get_feed_update_interval($link, $feed_id) {
324 $result = db_query($link, "SELECT owner_uid, update_interval FROM
325 ttrss_feeds WHERE id = '$feed_id'");
326
327 if (db_num_rows($result) == 1) {
328 $update_interval = db_fetch_result($result, 0, "update_interval");
329 $owner_uid = db_fetch_result($result, 0, "owner_uid");
330
331 if ($update_interval != 0) {
332 return $update_interval;
333 } else {
334 return get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $owner_uid, false);
335 }
336
337 } else {
338 return -1;
339 }
340 }
341
342 function update_all_feeds($link, $fetch, $user_id = false, $force_daemon = false) {
343
344 if (WEB_DEMO_MODE) return;
345
346 if (!$user_id) {
347 $user_id = $_SESSION["uid"];
348 purge_old_posts($link);
349 }
350
351 // db_query($link, "BEGIN");
352
353 if (MAX_UPDATE_TIME > 0) {
354 if (DB_TYPE == "mysql") {
355 $q_order = "RAND()";
356 } else {
357 $q_order = "RANDOM()";
358 }
359 } else {
360 $q_order = "last_updated DESC";
361 }
362
363 $result = db_query($link, "SELECT feed_url,id,
364 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated,
365 update_interval FROM ttrss_feeds WHERE owner_uid = '$user_id'
366 ORDER BY $q_order");
367
368 $upd_start = time();
369
370 while ($line = db_fetch_assoc($result)) {
371 $upd_intl = $line["update_interval"];
372
373 if (!$upd_intl || $upd_intl == 0) {
374 $upd_intl = get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $user_id, false);
375 }
376
377 if ($upd_intl < 0) {
378 // Updates for this feed are disabled
379 continue;
380 }
381
382 if ($fetch || (!$line["last_updated"] ||
383 time() - strtotime($line["last_updated"]) > ($upd_intl * 60))) {
384
385 // print "<!-- feed: ".$line["feed_url"]." -->";
386
387 update_rss_feed($link, $line["feed_url"], $line["id"], $force_daemon);
388
389 $upd_elapsed = time() - $upd_start;
390
391 if (MAX_UPDATE_TIME > 0 && $upd_elapsed > MAX_UPDATE_TIME) {
392 return;
393 }
394 }
395 }
396
397 // db_query($link, "COMMIT");
398
399 }
400
401 function fetch_file_contents($url) {
402 if (USE_CURL_FOR_ICONS) {
403 $tmpfile = tempnam(TMP_DIRECTORY, "ttrss-tmp");
404
405 $ch = curl_init($url);
406 $fp = fopen($tmpfile, "w");
407
408 if ($fp) {
409 curl_setopt($ch, CURLOPT_FILE, $fp);
410 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);
411 curl_setopt($ch, CURLOPT_TIMEOUT, 45);
412 curl_exec($ch);
413 curl_close($ch);
414 fclose($fp);
415 }
416
417 $contents = file_get_contents($tmpfile);
418 unlink($tmpfile);
419
420 return $contents;
421
422 } else {
423 return file_get_contents($url);
424 }
425
426 }
427
428 /**
429 * Try to determine the favicon URL for a feed.
430 * adapted from wordpress favicon plugin by Jeff Minard (http://thecodepro.com/)
431 * http://dev.wp-plugins.org/file/favatars/trunk/favatars.php
432 *
433 * @param string $url A feed or page URL
434 * @access public
435 * @return mixed The favicon URL, or false if none was found.
436 */
437 function get_favicon_url($url) {
438
439 if ($html = @fetch_file_contents($url)) {
440
441 if ( preg_match('/<link[^>]+rel="(?:shortcut )?icon"[^>]+?href="([^"]+?)"/si', $html, $matches)) {
442 // Attempt to grab a favicon link from their webpage url
443 $linkUrl = html_entity_decode($matches[1]);
444
445 if (substr($linkUrl, 0, 1) == '/') {
446 $urlParts = parse_url($url);
447 $faviconURL = $urlParts['scheme'].'://'.$urlParts['host'].$linkUrl;
448 } else if (substr($linkUrl, 0, 7) == 'http://') {
449 $faviconURL = $linkUrl;
450 } else if (substr($url, -1, 1) == '/') {
451 $faviconURL = $url.$linkUrl;
452 } else {
453 $faviconURL = $url.'/'.$linkUrl;
454 }
455
456 } else {
457 // If unsuccessful, attempt to "guess" the favicon location
458 $urlParts = parse_url($url);
459 $faviconURL = $urlParts['scheme'].'://'.$urlParts['host'].'/favicon.ico';
460 }
461 }
462
463 // Run a test to see if what we have attempted to get actually exists.
464 if(USE_CURL_FOR_ICONS || url_validate($faviconURL)) {
465 return $faviconURL;
466 } else {
467 return false;
468 }
469 } // function get_favicon_url
470
471 /**
472 * Check if a link is a valid and working URL.
473 *
474 * @param mixed $link A URL to check
475 * @access public
476 * @return boolean True if the URL is valid, false otherwise.
477 */
478 function url_validate($link) {
479
480 $url_parts = @parse_url($link);
481
482 if ( empty( $url_parts["host"] ) )
483 return false;
484
485 if ( !empty( $url_parts["path"] ) ) {
486 $documentpath = $url_parts["path"];
487 } else {
488 $documentpath = "/";
489 }
490
491 if ( !empty( $url_parts["query"] ) )
492 $documentpath .= "?" . $url_parts["query"];
493
494 $host = $url_parts["host"];
495 $port = $url_parts["port"];
496
497 if ( empty($port) )
498 $port = "80";
499
500 $socket = @fsockopen( $host, $port, $errno, $errstr, 30 );
501
502 if ( !$socket )
503 return false;
504
505 fwrite ($socket, "HEAD ".$documentpath." HTTP/1.0\r\nHost: $host\r\n\r\n");
506
507 $http_response = fgets( $socket, 22 );
508
509 $responses = "/(200 OK)|(30[0-9] Moved)/";
510 if ( preg_match($responses, $http_response) ) {
511 fclose($socket);
512 return true;
513 } else {
514 return false;
515 }
516
517 } // function url_validate
518
519 function check_feed_favicon($site_url, $feed, $link) {
520 $favicon_url = get_favicon_url($site_url);
521
522 # print "FAVICON [$site_url]: $favicon_url\n";
523
524 error_reporting(0);
525
526 $icon_file = ICONS_DIR . "/$feed.ico";
527
528 if ($favicon_url && !file_exists($icon_file)) {
529 $contents = fetch_file_contents($favicon_url);
530
531 $fp = fopen($icon_file, "w");
532
533 if ($fp) {
534 fwrite($fp, $contents);
535 fclose($fp);
536 chmod($icon_file, 0644);
537 }
538 }
539
540 error_reporting(DEFAULT_ERROR_LEVEL);
541
542 }
543
544 function update_rss_feed($link, $feed_url, $feed, $ignore_daemon = false) {
545
546 if (!$_GET["daemon"] && !$ignore_daemon) {
547 return false;
548 }
549
550 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
551 _debug("update_rss_feed: start");
552 }
553
554 if (!$ignore_daemon) {
555
556 if (DB_TYPE == "pgsql") {
557 $updstart_thresh_qpart = "(ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '120 seconds')";
558 } else {
559 $updstart_thresh_qpart = "(ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 120 SECOND))";
560 }
561
562 $result = db_query($link, "SELECT id,update_interval,auth_login,
563 auth_pass,cache_images,update_method
564 FROM ttrss_feeds WHERE id = '$feed' AND $updstart_thresh_qpart");
565
566 } else {
567
568 $result = db_query($link, "SELECT id,update_interval,auth_login,
569 auth_pass,cache_images,update_method,hidden
570 FROM ttrss_feeds WHERE id = '$feed'");
571
572 }
573
574 if (db_num_rows($result) == 0) {
575 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
576 _debug("update_rss_feed: feed $feed [$feed_url] NOT FOUND/SKIPPED");
577 }
578 return false;
579 }
580
581 $hidden = sql_bool_to_bool(db_fetch_result($result, 0, "hidden"));
582 $update_method = db_fetch_result($result, 0, "update_method");
583
584 db_query($link, "UPDATE ttrss_feeds SET last_update_started = NOW()
585 WHERE id = '$feed'");
586
587 $auth_login = db_fetch_result($result, 0, "auth_login");
588 $auth_pass = db_fetch_result($result, 0, "auth_pass");
589
590 if (ALLOW_SELECT_UPDATE_METHOD) {
591 if (ENABLE_SIMPLEPIE) {
592 $use_simplepie = $update_method != 1;
593 } else {
594 $use_simplepie = $update_method == 2;
595 }
596 } else {
597 $use_simplepie = ENABLE_SIMPLEPIE;
598 }
599
600 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
601 _debug("use simplepie: $use_simplepie (feed setting: $update_method)\n");
602 }
603
604 if (!$use_simplepie) {
605 $auth_login = urlencode($auth_login);
606 $auth_pass = urlencode($auth_pass);
607 }
608
609 $update_interval = db_fetch_result($result, 0, "update_interval");
610 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
611
612 if ($update_interval < 0) { return; }
613
614 $feed = db_escape_string($feed);
615
616 $fetch_url = $feed_url;
617
618 if ($auth_login && $auth_pass) {
619 $url_parts = array();
620 preg_match("/(^[^:]*):\/\/(.*)/", $fetch_url, $url_parts);
621
622 if ($url_parts[1] && $url_parts[2]) {
623 $fetch_url = $url_parts[1] . "://$auth_login:$auth_pass@" . $url_parts[2];
624 }
625
626 }
627
628 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
629 _debug("update_rss_feed: fetching [$fetch_url]...");
630 }
631
632 if (!defined('DAEMON_EXTENDED_DEBUG') && !$_GET['xdebug']) {
633 error_reporting(0);
634 }
635
636 if (!$use_simplepie) {
637 $rss = fetch_rss($fetch_url);
638 } else {
639 if (!is_dir(SIMPLEPIE_CACHE_DIR)) {
640 mkdir(SIMPLEPIE_CACHE_DIR);
641 }
642
643 $rss = new SimplePie();
644 $rss->set_useragent(SIMPLEPIE_USERAGENT . MAGPIE_USER_AGENT_EXT);
645 # $rss->set_timeout(10);
646 $rss->set_feed_url($fetch_url);
647 $rss->set_output_encoding('UTF-8');
648
649 if (SIMPLEPIE_CACHE_IMAGES && $cache_images) {
650 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
651 _debug("enabling image cache");
652 }
653
654 $rss->set_image_handler('./image.php', 'i');
655 }
656
657 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
658 _debug("feed update interval (sec): " .
659 get_feed_update_interval($link, $feed)*60);
660 }
661
662 if (is_dir(SIMPLEPIE_CACHE_DIR)) {
663 $rss->set_cache_location(SIMPLEPIE_CACHE_DIR);
664 $rss->set_cache_duration(get_feed_update_interval($link, $feed) * 60);
665 }
666
667 $rss->init();
668 }
669
670 // print_r($rss);
671
672 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
673 _debug("update_rss_feed: fetch done, parsing...");
674 } else {
675 error_reporting (DEFAULT_ERROR_LEVEL);
676 }
677
678 $feed = db_escape_string($feed);
679
680 if ($use_simplepie) {
681 $fetch_ok = !$rss->error();
682 } else {
683 $fetch_ok = !!$rss;
684 }
685
686 if ($fetch_ok) {
687
688 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
689 _debug("update_rss_feed: processing feed data...");
690 }
691
692 // db_query($link, "BEGIN");
693
694 $result = db_query($link, "SELECT title,icon_url,site_url,owner_uid
695 FROM ttrss_feeds WHERE id = '$feed'");
696
697 $registered_title = db_fetch_result($result, 0, "title");
698 $orig_icon_url = db_fetch_result($result, 0, "icon_url");
699 $orig_site_url = db_fetch_result($result, 0, "site_url");
700
701 $owner_uid = db_fetch_result($result, 0, "owner_uid");
702
703 if ($use_simplepie) {
704 $site_url = $rss->get_link();
705 } else {
706 $site_url = $rss->channel["link"];
707 }
708
709 if (get_pref($link, 'ENABLE_FEED_ICONS', $owner_uid, false)) {
710 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
711 _debug("update_rss_feed: checking favicon...");
712 }
713
714 check_feed_favicon($site_url, $feed, $link);
715 }
716
717 if (!$registered_title || $registered_title == "[Unknown]") {
718
719 if ($use_simplepie) {
720 $feed_title = db_escape_string($rss->get_title());
721 } else {
722 $feed_title = db_escape_string($rss->channel["title"]);
723 }
724
725 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
726 _debug("update_rss_feed: registering title: $feed_title");
727 }
728
729 db_query($link, "UPDATE ttrss_feeds SET
730 title = '$feed_title' WHERE id = '$feed'");
731 }
732
733 // weird, weird Magpie
734 if (!$use_simplepie) {
735 if (!$site_url) $site_url = db_escape_string($rss->channel["link_"]);
736 }
737
738 if ($site_url && $orig_site_url != db_escape_string($site_url)) {
739 db_query($link, "UPDATE ttrss_feeds SET
740 site_url = '$site_url' WHERE id = '$feed'");
741 }
742
743 // print "I: " . $rss->channel["image"]["url"];
744
745 if (!$use_simplepie) {
746 $icon_url = $rss->image["url"];
747 } else {
748 $icon_url = $rss->get_image_url();
749 }
750
751 if ($icon_url && !$orig_icon_url != db_escape_string($icon_url)) {
752 $icon_url = db_escape_string($icon_url);
753 db_query($link, "UPDATE ttrss_feeds SET icon_url = '$icon_url' WHERE id = '$feed'");
754 }
755
756 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
757 _debug("update_rss_feed: loading filters...");
758 }
759
760 $filters = load_filters($link, $feed, $owner_uid);
761
762 if ($use_simplepie) {
763 $iterator = $rss->get_items();
764 } else {
765 $iterator = $rss->items;
766 if (!$iterator || !is_array($iterator)) $iterator = $rss->entries;
767 if (!$iterator || !is_array($iterator)) $iterator = $rss;
768 }
769
770 if (!is_array($iterator)) {
771 /* db_query($link, "UPDATE ttrss_feeds
772 SET last_error = 'Parse error: can\'t find any articles.'
773 WHERE id = '$feed'"); */
774
775 // clear any errors and mark feed as updated if fetched okay
776 // even if it's blank
777
778 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
779 _debug("update_rss_feed: entry iterator is not an array, no articles?");
780 }
781
782 db_query($link, "UPDATE ttrss_feeds
783 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
784
785 return; // no articles
786 }
787
788 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
789 _debug("update_rss_feed: processing articles...");
790 }
791
792 foreach ($iterator as $item) {
793
794 if ($_GET['xdebug']) {
795 print_r($item);
796
797 }
798
799 if ($use_simplepie) {
800 $entry_guid = $item->get_id();
801 if (!$entry_guid) $entry_guid = $item->get_link();
802 if (!$entry_guid) $entry_guid = make_guid_from_title($item->get_title());
803
804 } else {
805
806 $entry_guid = $item["id"];
807
808 if (!$entry_guid) $entry_guid = $item["guid"];
809 if (!$entry_guid) $entry_guid = $item["link"];
810 if (!$entry_guid) $entry_guid = make_guid_from_title($item["title"]);
811 }
812
813 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
814 _debug("update_rss_feed: guid $entry_guid");
815 }
816
817 if (!$entry_guid) continue;
818
819 $entry_timestamp = "";
820
821 if ($use_simplepie) {
822 $entry_timestamp = strtotime($item->get_date());
823 } else {
824 $rss_2_date = $item['pubdate'];
825 $rss_1_date = $item['dc']['date'];
826 $atom_date = $item['issued'];
827 if (!$atom_date) $atom_date = $item['updated'];
828
829 if ($atom_date != "") $entry_timestamp = parse_w3cdtf($atom_date);
830 if ($rss_1_date != "") $entry_timestamp = parse_w3cdtf($rss_1_date);
831 if ($rss_2_date != "") $entry_timestamp = strtotime($rss_2_date);
832 }
833
834 if ($entry_timestamp == "" || $entry_timestamp == -1 || !$entry_timestamp) {
835 $entry_timestamp = time();
836 $no_orig_date = 'true';
837 } else {
838 $no_orig_date = 'false';
839 }
840
841 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
842
843 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
844 _debug("update_rss_feed: date $entry_timestamp [$entry_timestamp_fmt]");
845 }
846
847 if ($use_simplepie) {
848 $entry_title = $item->get_title();
849 } else {
850 $entry_title = trim(strip_tags($item["title"]));
851 }
852
853 if ($use_simplepie) {
854 $entry_link = $item->get_link();
855 } else {
856 // strange Magpie workaround
857 $entry_link = $item["link_"];
858 if (!$entry_link) $entry_link = $item["link"];
859 }
860
861 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
862 _debug("update_rss_feed: title $entry_title");
863 }
864
865 if (!$entry_title) $entry_title = date("Y-m-d H:i:s", $entry_timestamp);;
866
867 $entry_link = strip_tags($entry_link);
868
869 if ($use_simplepie) {
870 $entry_content = $item->get_content();
871 if (!$entry_content) $entry_content = $item->get_description();
872 } else {
873 $entry_content = $item["content:escaped"];
874
875 if (!$entry_content) $entry_content = $item["content:encoded"];
876 if (!$entry_content) $entry_content = $item["content"]["encoded"];
877 if (!$entry_content) $entry_content = $item["content"];
878
879 // Magpie bugs are getting ridiculous
880 if (trim($entry_content) == "Array") $entry_content = false;
881
882 if (!$entry_content) $entry_content = $item["atom_content"];
883 if (!$entry_content) $entry_content = $item["summary"];
884
885 if (!$entry_content ||
886 strlen($entry_content) < strlen($item["description"])) {
887 $entry_content = $item["description"];
888 };
889
890 // WTF
891 if (is_array($entry_content)) {
892 $entry_content = $entry_content["encoded"];
893 if (!$entry_content) $entry_content = $entry_content["escaped"];
894 }
895 }
896
897 if ($_GET["xdebug"]) {
898 print "update_rss_feed: content: ";
899 print_r(htmlspecialchars($entry_content));
900 }
901
902 $entry_content_unescaped = $entry_content;
903
904 if ($use_simplepie) {
905 $entry_comments = strip_tags($item->data["comments"]);
906 if ($item->get_author()) {
907 $entry_author_item = $item->get_author();
908 $entry_author = $entry_author_item->get_name();
909 if (!$entry_author) $entry_author = $entry_author_item->get_email();
910
911 $entry_author = db_escape_string($entry_author);
912 }
913 } else {
914 $entry_comments = strip_tags($item["comments"]);
915
916 $entry_author = db_escape_string(strip_tags($item['dc']['creator']));
917
918 if ($item['author']) {
919
920 if (is_array($item['author'])) {
921
922 if (!$entry_author) {
923 $entry_author = db_escape_string(strip_tags($item['author']['name']));
924 }
925
926 if (!$entry_author) {
927 $entry_author = db_escape_string(strip_tags($item['author']['email']));
928 }
929 }
930
931 if (!$entry_author) {
932 $entry_author = db_escape_string(strip_tags($item['author']));
933 }
934 }
935 }
936
937 if (preg_match('/^[\t\n\r ]*$/', $entry_author)) $entry_author = '';
938
939 $entry_guid = db_escape_string(strip_tags($entry_guid));
940 $entry_guid = mb_substr($entry_guid, 0, 250);
941
942 $result = db_query($link, "SELECT id FROM ttrss_entries
943 WHERE guid = '$entry_guid'");
944
945 $entry_content = db_escape_string($entry_content);
946
947 $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
948
949 $entry_title = db_escape_string($entry_title);
950 $entry_link = db_escape_string($entry_link);
951 $entry_comments = mb_substr(db_escape_string($entry_comments), 0, 250);
952 $entry_author = mb_substr($entry_author, 0, 250);
953
954 if ($use_simplepie) {
955 $num_comments = 0; #FIXME#
956 } else {
957 $num_comments = db_escape_string($item["slash"]["comments"]);
958 }
959
960 if (!$num_comments) $num_comments = 0;
961
962 // parse <category> entries into tags
963
964 if ($use_simplepie) {
965
966 $additional_tags = array();
967 $additional_tags_src = $item->get_categories();
968
969 if (is_array($additional_tags_src)) {
970 foreach ($additional_tags_src as $tobj) {
971 array_push($additional_tags, $tobj->get_term());
972 }
973 }
974
975 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
976 _debug("update_rss_feed: category tags:");
977 print_r($additional_tags);
978 }
979
980 } else {
981
982 $t_ctr = $item['category#'];
983
984 $additional_tags = false;
985
986 if ($t_ctr == 0) {
987 $additional_tags = false;
988 } else if ($t_ctr > 0) {
989 $additional_tags = array($item['category']);
990
991 if ($item['category@term']) {
992 array_push($additional_tags, $item['category@term']);
993 }
994
995 for ($i = 0; $i <= $t_ctr; $i++ ) {
996 if ($item["category#$i"]) {
997 array_push($additional_tags, $item["category#$i"]);
998 }
999
1000 if ($item["category#$i@term"]) {
1001 array_push($additional_tags, $item["category#$i@term"]);
1002 }
1003 }
1004 }
1005
1006 // parse <dc:subject> elements
1007
1008 $t_ctr = $item['dc']['subject#'];
1009
1010 if ($t_ctr > 0) {
1011 $additional_tags = array($item['dc']['subject']);
1012
1013 for ($i = 0; $i <= $t_ctr; $i++ ) {
1014 if ($item['dc']["subject#$i"]) {
1015 array_push($additional_tags, $item['dc']["subject#$i"]);
1016 }
1017 }
1018 }
1019 }
1020
1021 // enclosures
1022
1023 $enclosures = array();
1024
1025 if ($use_simplepie) {
1026 $encs = $item->get_enclosures();
1027
1028 if (is_array($encs)) {
1029 foreach ($encs as $e) {
1030 $e_item = array(
1031 $e->link, $e->type, $e->length);
1032
1033 array_push($enclosures, $e_item);
1034 }
1035 }
1036
1037 } else {
1038 // <enclosure>
1039
1040 $e_ctr = $item['enclosure#'];
1041
1042 if ($e_ctr > 0) {
1043 $e_item = array($item['enclosure@url'],
1044 $item['enclosure@type'],
1045 $item['enclosure@length']);
1046
1047 array_push($enclosures, $e_item);
1048
1049 for ($i = 0; $i <= $e_ctr; $i++ ) {
1050
1051 if ($item["enclosure#$i@url"]) {
1052 $e_item = array($item["enclosure#$i@url"],
1053 $item["enclosure#$i@type"],
1054 $item["enclosure#$i@length"]);
1055 array_push($enclosures, $e_item);
1056 }
1057 }
1058 }
1059
1060 // <media:content>
1061 // can there be many of those? yes -fox
1062
1063 $m_ctr = $item['media']['content#'];
1064
1065 if ($m_ctr > 0) {
1066 $e_item = array($item['media']['content@url'],
1067 $item['media']['content@medium'],
1068 $item['media']['content@length']);
1069
1070 array_push($enclosures, $e_item);
1071
1072 for ($i = 0; $i <= $m_ctr; $i++ ) {
1073
1074 if ($item["media"]["content#$i@url"]) {
1075 $e_item = array($item["media"]["content#$i@url"],
1076 $item["media"]["content#$i@medium"],
1077 $item["media"]["content#$i@length"]);
1078 array_push($enclosures, $e_item);
1079 }
1080 }
1081
1082 }
1083 }
1084
1085 # sanitize content
1086
1087 $entry_content = sanitize_article_content($entry_content);
1088 $entry_title = sanitize_article_content($entry_title);
1089
1090 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
1091 _debug("update_rss_feed: done collecting data [TITLE:$entry_title]");
1092 }
1093
1094 db_query($link, "BEGIN");
1095
1096 if (db_num_rows($result) == 0) {
1097
1098 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
1099 _debug("update_rss_feed: base guid not found");
1100 }
1101
1102 // base post entry does not exist, create it
1103
1104 $result = db_query($link,
1105 "INSERT INTO ttrss_entries
1106 (title,
1107 guid,
1108 link,
1109 updated,
1110 content,
1111 content_hash,
1112 no_orig_date,
1113 date_entered,
1114 comments,
1115 num_comments,
1116 author)
1117 VALUES
1118 ('$entry_title',
1119 '$entry_guid',
1120 '$entry_link',
1121 '$entry_timestamp_fmt',
1122 '$entry_content',
1123 '$content_hash',
1124 $no_orig_date,
1125 NOW(),
1126 '$entry_comments',
1127 '$num_comments',
1128 '$entry_author')");
1129 } else {
1130 // we keep encountering the entry in feeds, so we need to
1131 // update date_entered column so that we don't get horrible
1132 // dupes when the entry gets purged and reinserted again e.g.
1133 // in the case of SLOW SLOW OMG SLOW updating feeds
1134
1135 $base_entry_id = db_fetch_result($result, 0, "id");
1136
1137 db_query($link, "UPDATE ttrss_entries SET date_entered = NOW()
1138 WHERE id = '$base_entry_id'");
1139 }
1140
1141 // now it should exist, if not - bad luck then
1142
1143 $result = db_query($link, "SELECT
1144 id,content_hash,no_orig_date,title,
1145 ".SUBSTRING_FOR_DATE."(date_entered,1,19) as date_entered,
1146 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated,
1147 num_comments
1148 FROM
1149 ttrss_entries
1150 WHERE guid = '$entry_guid'");
1151
1152 $entry_ref_id = 0;
1153 $entry_int_id = 0;
1154
1155 if (db_num_rows($result) == 1) {
1156
1157 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
1158 _debug("update_rss_feed: base guid found, checking for user record");
1159 }
1160
1161 // this will be used below in update handler
1162 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
1163 $orig_title = db_fetch_result($result, 0, "title");
1164 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
1165 $orig_date_entered = strtotime(db_fetch_result($result,
1166 0, "date_entered"));
1167
1168 $ref_id = db_fetch_result($result, 0, "id");
1169 $entry_ref_id = $ref_id;
1170
1171 // check for user post link to main table
1172
1173 // do we allow duplicate posts with same GUID in different feeds?
1174 if (get_pref($link, "ALLOW_DUPLICATE_POSTS", $owner_uid, false)) {
1175 $dupcheck_qpart = "AND feed_id = '$feed'";
1176 } else {
1177 $dupcheck_qpart = "";
1178 }
1179
1180 // error_reporting(0);
1181
1182 $article_filters = get_article_filters($filters, $entry_title,
1183 $entry_content, $entry_link, $entry_timestamp);
1184
1185 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
1186 _debug("update_rss_feed: article filters: ");
1187 if (count($article_filters) != 0) {
1188 print_r($article_filters);
1189 }
1190 }
1191
1192 if (find_article_filter($article_filters, "filter")) {
1193 db_query($link, "COMMIT"); // close transaction in progress
1194 continue;
1195 }
1196
1197 // error_reporting (DEFAULT_ERROR_LEVEL);
1198
1199 $score = calculate_article_score($article_filters);
1200
1201 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
1202 _debug("update_rss_feed: initial score: $score");
1203 }
1204
1205 $result = db_query($link,
1206 "SELECT ref_id, int_id FROM ttrss_user_entries WHERE
1207 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
1208 $dupcheck_qpart");
1209
1210 // okay it doesn't exist - create user entry
1211 if (db_num_rows($result) == 0) {
1212
1213 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
1214 _debug("update_rss_feed: user record not found, creating...");
1215 }
1216
1217 if ($score >= -500 && !find_article_filter($article_filters, 'catchup')) {
1218 $unread = 'true';
1219 $last_read_qpart = 'NULL';
1220 } else {
1221 $unread = 'false';
1222 $last_read_qpart = 'NOW()';
1223 }
1224
1225 if (find_article_filter($article_filters, 'mark') || $score > 1000) {
1226 $marked = 'true';
1227 } else {
1228 $marked = 'false';
1229 }
1230
1231 if (find_article_filter($article_filters, 'publish')) {
1232 $published = 'true';
1233 } else {
1234 $published = 'false';
1235 }
1236
1237 $result = db_query($link,
1238 "INSERT INTO ttrss_user_entries
1239 (ref_id, owner_uid, feed_id, unread, last_read, marked,
1240 published, score)
1241 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
1242 $last_read_qpart, $marked, $published, '$score')");
1243
1244 $result = db_query($link,
1245 "SELECT int_id FROM ttrss_user_entries WHERE
1246 ref_id = '$ref_id' AND owner_uid = '$owner_uid' AND
1247 feed_id = '$feed' LIMIT 1");
1248
1249 if (db_num_rows($result) == 1) {
1250 $entry_int_id = db_fetch_result($result, 0, "int_id");
1251 }
1252 } else {
1253 $entry_ref_id = db_fetch_result($result, 0, "ref_id");
1254 $entry_int_id = db_fetch_result($result, 0, "int_id");
1255 }
1256
1257 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
1258 _debug("update_rss_feed: RID: $entry_ref_id, IID: $entry_int_id");
1259 }
1260
1261 $post_needs_update = false;
1262
1263 if (get_pref($link, "UPDATE_POST_ON_CHECKSUM_CHANGE", $owner_uid, false) &&
1264 ($content_hash != $orig_content_hash)) {
1265 // print "<!-- [$entry_title] $content_hash vs $orig_content_hash -->";
1266 $post_needs_update = true;
1267 }
1268
1269 if (db_escape_string($orig_title) != $entry_title) {
1270 $post_needs_update = true;
1271 }
1272
1273 if ($orig_num_comments != $num_comments) {
1274 $post_needs_update = true;
1275 }
1276
1277 // this doesn't seem to be very reliable
1278 //
1279 // if ($orig_timestamp != $entry_timestamp && !$orig_no_orig_date) {
1280 // $post_needs_update = true;
1281 // }
1282
1283 // if post needs update, update it and mark all user entries
1284 // linking to this post as updated
1285 if ($post_needs_update) {
1286
1287 if (defined('DAEMON_EXTENDED_DEBUG')) {
1288 _debug("update_rss_feed: post $entry_guid needs update...");
1289 }
1290
1291 // print "<!-- post $orig_title needs update : $post_needs_update -->";
1292
1293 db_query($link, "UPDATE ttrss_entries
1294 SET title = '$entry_title', content = '$entry_content',
1295 content_hash = '$content_hash',
1296 num_comments = '$num_comments'
1297 WHERE id = '$ref_id'");
1298
1299 if (get_pref($link, "MARK_UNREAD_ON_UPDATE", $owner_uid, false)) {
1300 db_query($link, "UPDATE ttrss_user_entries
1301 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
1302 } else {
1303 db_query($link, "UPDATE ttrss_user_entries
1304 SET last_read = null WHERE ref_id = '$ref_id' AND unread = false");
1305 }
1306
1307 }
1308 }
1309
1310 db_query($link, "COMMIT");
1311
1312 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
1313 _debug("update_rss_feed: assigning labels...");
1314 }
1315
1316 assign_article_to_labels($link, $entry_ref_id, $article_filters,
1317 $owner_uid);
1318
1319 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
1320 _debug("update_rss_feed: looking for enclosures...");
1321 }
1322
1323 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
1324 print_r($enclosures);
1325 }
1326
1327 db_query($link, "BEGIN");
1328
1329 foreach ($enclosures as $enc) {
1330 $enc_url = db_escape_string($enc[0]);
1331 $enc_type = db_escape_string($enc[1]);
1332 $enc_dur = db_escape_string($enc[2]);
1333
1334 $result = db_query($link, "SELECT id FROM ttrss_enclosures
1335 WHERE content_url = '$enc_url' AND post_id = '$entry_ref_id'");
1336
1337 if (db_num_rows($result) == 0) {
1338 db_query($link, "INSERT INTO ttrss_enclosures
1339 (content_url, content_type, title, duration, post_id) VALUES
1340 ('$enc_url', '$enc_type', '', '$enc_dur', '$entry_ref_id')");
1341 }
1342 }
1343
1344 db_query($link, "COMMIT");
1345
1346 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
1347 _debug("update_rss_feed: looking for tags...");
1348 }
1349
1350 /* taaaags */
1351 // <a href="..." rel="tag">Xorg</a>, //
1352
1353 $entry_tags = null;
1354
1355 preg_match_all("/<a.*?rel=['\"]tag['\"].*?>([^<]+)<\/a>/i",
1356 $entry_content_unescaped, $entry_tags);
1357
1358 /* print "<p><br/>$entry_title : $entry_content_unescaped<br>";
1359 print_r($entry_tags);
1360 print "<br/></p>"; */
1361
1362 $entry_tags = $entry_tags[1];
1363
1364 # check for manual tags
1365
1366 $tag_filter = find_article_filter($article_filters, "tag");
1367
1368 if ($tag_filter) {
1369
1370 $manual_tags = trim_array(split(",", $tag_filter[1]));
1371
1372 foreach ($manual_tags as $tag) {
1373 if (tag_is_valid($tag)) {
1374 array_push($entry_tags, $tag);
1375 }
1376 }
1377 }
1378
1379 $boring_tags = trim_array(split(",", mb_strtolower(get_pref($link,
1380 'BLACKLISTED_TAGS', $owner_uid, ''), 'utf-8')));
1381
1382 if ($additional_tags && is_array($additional_tags)) {
1383 foreach ($additional_tags as $tag) {
1384 if (tag_is_valid($tag) &&
1385 array_search($tag, $boring_tags) === FALSE) {
1386 array_push($entry_tags, $tag);
1387 }
1388 }
1389 }
1390
1391 // print "<p>TAGS: "; print_r($entry_tags); print "</p>";
1392
1393 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
1394 print_r($entry_tags);
1395 }
1396
1397 if (count($entry_tags) > 0) {
1398
1399 db_query($link, "BEGIN");
1400
1401 foreach ($entry_tags as $tag) {
1402
1403 $tag = sanitize_tag($tag);
1404 $tag = db_escape_string($tag);
1405
1406 if (!tag_is_valid($tag)) continue;
1407
1408 $result = db_query($link, "SELECT id FROM ttrss_tags
1409 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
1410 owner_uid = '$owner_uid' LIMIT 1");
1411
1412 // print db_fetch_result($result, 0, "id");
1413
1414 if ($result && db_num_rows($result) == 0) {
1415
1416 db_query($link, "INSERT INTO ttrss_tags
1417 (owner_uid,tag_name,post_int_id)
1418 VALUES ('$owner_uid','$tag', '$entry_int_id')");
1419 }
1420 }
1421
1422 db_query($link, "COMMIT");
1423 }
1424
1425 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
1426 _debug("update_rss_feed: article processed");
1427 }
1428 }
1429
1430 if (!$hidden) {
1431 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
1432 _debug("update_rss_feed: updating counters cache...");
1433 }
1434
1435 // disabled, purge_feed() does that...
1436 //ccache_update($link, $feed, $owner_uid);
1437 }
1438
1439 purge_feed($link, $feed, 0);
1440
1441 db_query($link, "UPDATE ttrss_feeds
1442 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
1443
1444 // db_query($link, "COMMIT");
1445
1446 } else {
1447
1448 if ($use_simplepie) {
1449 $error_msg = mb_substr($rss->error(), 0, 250);
1450 } else {
1451 $error_msg = mb_substr(magpie_error(), 0, 250);
1452 }
1453
1454 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
1455 _debug("update_rss_feed: error fetching feed: $error_msg");
1456 }
1457
1458 $error_msg = db_escape_string($error_msg);
1459
1460 db_query($link,
1461 "UPDATE ttrss_feeds SET last_error = '$error_msg',
1462 last_updated = NOW() WHERE id = '$feed'");
1463 }
1464
1465 if ($use_simplepie) {
1466 unset($rss);
1467 }
1468
1469 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
1470 _debug("update_rss_feed: done");
1471 }
1472
1473 }
1474
1475 function print_select($id, $default, $values, $attributes = "") {
1476 print "<select name=\"$id\" id=\"$id\" $attributes>";
1477 foreach ($values as $v) {
1478 if ($v == $default)
1479 $sel = " selected";
1480 else
1481 $sel = "";
1482
1483 print "<option$sel>$v</option>";
1484 }
1485 print "</select>";
1486 }
1487
1488 function print_select_hash($id, $default, $values, $attributes = "") {
1489 print "<select name=\"$id\" id='$id' $attributes>";
1490 foreach (array_keys($values) as $v) {
1491 if ($v == $default)
1492 $sel = 'selected="selected"';
1493 else
1494 $sel = "";
1495
1496 print "<option $sel value=\"$v\">".$values[$v]."</option>";
1497 }
1498
1499 print "</select>";
1500 }
1501
1502 function get_article_filters($filters, $title, $content, $link, $timestamp) {
1503 $matches = array();
1504
1505 if ($filters["title"]) {
1506 foreach ($filters["title"] as $filter) {
1507 $reg_exp = $filter["reg_exp"];
1508 $inverse = $filter["inverse"];
1509 if ((!$inverse && preg_match("/$reg_exp/i", $title)) ||
1510 ($inverse && !preg_match("/$reg_exp/i", $title))) {
1511
1512 array_push($matches, array($filter["action"], $filter["action_param"]));
1513 }
1514 }
1515 }
1516
1517 if ($filters["content"]) {
1518 foreach ($filters["content"] as $filter) {
1519 $reg_exp = $filter["reg_exp"];
1520 $inverse = $filter["inverse"];
1521
1522 if ((!$inverse && preg_match("/$reg_exp/i", $content)) ||
1523 ($inverse && !preg_match("/$reg_exp/i", $content))) {
1524
1525 array_push($matches, array($filter["action"], $filter["action_param"]));
1526 }
1527 }
1528 }
1529
1530 if ($filters["both"]) {
1531 foreach ($filters["both"] as $filter) {
1532 $reg_exp = $filter["reg_exp"];
1533 $inverse = $filter["inverse"];
1534
1535 if ($inverse) {
1536 if (!preg_match("/$reg_exp/i", $title) && !preg_match("/$reg_exp/i", $content)) {
1537 array_push($matches, array($filter["action"], $filter["action_param"]));
1538 }
1539 } else {
1540 if (preg_match("/$reg_exp/i", $title) || preg_match("/$reg_exp/i", $content)) {
1541 array_push($matches, array($filter["action"], $filter["action_param"]));
1542 }
1543 }
1544 }
1545 }
1546
1547 if ($filters["link"]) {
1548 $reg_exp = $filter["reg_exp"];
1549 foreach ($filters["link"] as $filter) {
1550 $reg_exp = $filter["reg_exp"];
1551 $inverse = $filter["inverse"];
1552
1553 if ((!$inverse && preg_match("/$reg_exp/i", $link)) ||
1554 ($inverse && !preg_match("/$reg_exp/i", $link))) {
1555
1556 array_push($matches, array($filter["action"], $filter["action_param"]));
1557 }
1558 }
1559 }
1560
1561 if ($filters["date"]) {
1562 $reg_exp = $filter["reg_exp"];
1563 foreach ($filters["date"] as $filter) {
1564 $date_modifier = $filter["filter_param"];
1565 $inverse = $filter["inverse"];
1566 $check_timestamp = strtotime($filter["reg_exp"]);
1567
1568 # no-op when timestamp doesn't parse to prevent misfires
1569
1570 if ($check_timestamp) {
1571 $match_ok = false;
1572
1573 if ($date_modifier == "before" && $timestamp < $check_timestamp ||
1574 $date_modifier == "after" && $timestamp > $check_timestamp) {
1575 $match_ok = true;
1576 }
1577
1578 if ($inverse) $match_ok = !$match_ok;
1579
1580 if ($match_ok) {
1581 array_push($matches, array($filter["action"], $filter["action_param"]));
1582 }
1583 }
1584 }
1585 }
1586
1587 return $matches;
1588 }
1589
1590 function find_article_filter($filters, $filter_name) {
1591 foreach ($filters as $f) {
1592 if ($f[0] == $filter_name) {
1593 return $f;
1594 };
1595 }
1596 return false;
1597 }
1598
1599 function calculate_article_score($filters) {
1600 $score = 0;
1601
1602 foreach ($filters as $f) {
1603 if ($f[0] == "score") {
1604 $score += $f[1];
1605 };
1606 }
1607 return $score;
1608 }
1609
1610 function assign_article_to_labels($link, $id, $filters, $owner_uid) {
1611 foreach ($filters as $f) {
1612 if ($f[0] == "label") {
1613 label_add_article($link, $id, $f[1], $owner_uid);
1614 };
1615 }
1616 }
1617
1618 function printFeedEntry($feed_id, $class, $feed_title, $unread, $icon_file, $link,
1619 $rtl_content = false, $last_updated = false, $last_error = false) {
1620
1621 if (file_exists($icon_file) && filesize($icon_file) > 0) {
1622 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"$icon_file\">";
1623 } else {
1624 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"images/blank_icon.gif\">";
1625 }
1626
1627 if ($rtl_content) {
1628 $rtl_tag = "dir=\"rtl\"";
1629 } else {
1630 $rtl_tag = "dir=\"ltr\"";
1631 }
1632
1633 $error_notify_msg = "";
1634
1635 if ($last_error) {
1636 $link_title = "Error: $last_error ($last_updated)";
1637 $error_notify_msg = "(Error)";
1638 } else if ($last_updated) {
1639 $link_title = "Updated: $last_updated";
1640 }
1641
1642 $feed = "<a title=\"$link_title\" id=\"FEEDL-$feed_id\"
1643 href=\"javascript:viewfeed('$feed_id', '', false, '', false, 0);\">$feed_title</a>";
1644
1645 print "<li id=\"FEEDR-$feed_id\" class=\"$class\">";
1646 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
1647 print "$feed_icon";
1648 }
1649
1650 print "<span $rtl_tag id=\"FEEDN-$feed_id\">$feed</span>";
1651
1652 if ($unread != 0) {
1653 $fctr_class = "class=\"feedCtrHasUnread\"";
1654 } else {
1655 $fctr_class = "class=\"feedCtrNoUnread\"";
1656 }
1657
1658 print " <span $rtl_tag $fctr_class id=\"FEEDCTR-$feed_id\">
1659 (<span id=\"FEEDU-$feed_id\">$unread</span>)</span>";
1660
1661 if (get_pref($link, "EXTENDED_FEEDLIST")) {
1662 $total = getFeedArticles($link, $feed_id);
1663 print "<div class=\"feedExtInfo\">
1664 <span id=\"FLUPD-$feed_id\">$last_updated ($total total) $error_notify_msg</span></div>";
1665 }
1666
1667 print "</li>";
1668
1669 }
1670
1671 function getmicrotime() {
1672 list($usec, $sec) = explode(" ",microtime());
1673 return ((float)$usec + (float)$sec);
1674 }
1675
1676 function print_radio($id, $default, $true_is, $values, $attributes = "") {
1677 foreach ($values as $v) {
1678
1679 if ($v == $default)
1680 $sel = "checked";
1681 else
1682 $sel = "";
1683
1684 if ($v == $true_is) {
1685 $sel .= " value=\"1\"";
1686 } else {
1687 $sel .= " value=\"0\"";
1688 }
1689
1690 print "<input class=\"noborder\"
1691 type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
1692
1693 }
1694 }
1695
1696 function initialize_user_prefs($link, $uid) {
1697
1698 $uid = db_escape_string($uid);
1699
1700 db_query($link, "BEGIN");
1701
1702 $result = db_query($link, "SELECT pref_name,def_value FROM ttrss_prefs");
1703
1704 $u_result = db_query($link, "SELECT pref_name
1705 FROM ttrss_user_prefs WHERE owner_uid = '$uid'");
1706
1707 $active_prefs = array();
1708
1709 while ($line = db_fetch_assoc($u_result)) {
1710 array_push($active_prefs, $line["pref_name"]);
1711 }
1712
1713 while ($line = db_fetch_assoc($result)) {
1714 if (array_search($line["pref_name"], $active_prefs) === FALSE) {
1715 // print "adding " . $line["pref_name"] . "<br>";
1716
1717 db_query($link, "INSERT INTO ttrss_user_prefs
1718 (owner_uid,pref_name,value) VALUES
1719 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."')");
1720
1721 }
1722 }
1723
1724 db_query($link, "COMMIT");
1725
1726 }
1727
1728 function lookup_user_id($link, $user) {
1729
1730 $result = db_query($link, "SELECT id FROM ttrss_users WHERE
1731 login = '$login'");
1732
1733 if (db_num_rows($result) == 1) {
1734 return db_fetch_result($result, 0, "id");
1735 } else {
1736 return false;
1737 }
1738 }
1739
1740 function http_authenticate_user($link) {
1741
1742 error_log("http_authenticate_user: ".$_SERVER["PHP_AUTH_USER"]."\n", 3, '/tmp/tt-rss.log');
1743
1744 if (!$_SERVER["PHP_AUTH_USER"]) {
1745
1746 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
1747 header('HTTP/1.0 401 Unauthorized');
1748 exit;
1749
1750 } else {
1751 $auth_result = authenticate_user($link,
1752 $_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"]);
1753
1754 if (!$auth_result) {
1755 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
1756 header('HTTP/1.0 401 Unauthorized');
1757 exit;
1758 }
1759 }
1760
1761 return true;
1762 }
1763
1764 function authenticate_user($link, $login, $password, $force_auth = false) {
1765
1766 if (!SINGLE_USER_MODE) {
1767
1768 $pwd_hash1 = encrypt_password($password);
1769 $pwd_hash2 = encrypt_password($password, $login);
1770
1771 if (defined('ALLOW_REMOTE_USER_AUTH') && ALLOW_REMOTE_USER_AUTH
1772 && $_SERVER["REMOTE_USER"] && $login != "admin") {
1773
1774 $login = db_escape_string($_SERVER["REMOTE_USER"]);
1775
1776 $query = "SELECT id,login,access_level,pwd_hash
1777 FROM ttrss_users WHERE
1778 login = '$login'";
1779
1780 } else {
1781 $query = "SELECT id,login,access_level,pwd_hash
1782 FROM ttrss_users WHERE
1783 login = '$login' AND (pwd_hash = '$pwd_hash1' OR
1784 pwd_hash = '$pwd_hash2')";
1785 }
1786
1787 $result = db_query($link, $query);
1788
1789 if (db_num_rows($result) == 1) {
1790 $_SESSION["uid"] = db_fetch_result($result, 0, "id");
1791 $_SESSION["name"] = db_fetch_result($result, 0, "login");
1792 $_SESSION["access_level"] = db_fetch_result($result, 0, "access_level");
1793
1794 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
1795 $_SESSION["uid"]);
1796
1797 $user_theme = get_user_theme_path($link);
1798
1799 $_SESSION["theme"] = $user_theme;
1800 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1801 $_SESSION["pwd_hash"] = db_fetch_result($result, 0, "pwd_hash");
1802
1803 initialize_user_prefs($link, $_SESSION["uid"]);
1804
1805 return true;
1806 }
1807
1808 return false;
1809
1810 } else {
1811
1812 $_SESSION["uid"] = 1;
1813 $_SESSION["name"] = "admin";
1814
1815 $user_theme = get_user_theme_path($link);
1816
1817 $_SESSION["theme"] = $user_theme;
1818 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1819
1820 initialize_user_prefs($link, $_SESSION["uid"]);
1821
1822 return true;
1823 }
1824 }
1825
1826 function make_password($length = 8) {
1827
1828 $password = "";
1829 $possible = "0123456789abcdfghjkmnpqrstvwxyzABCDFGHJKMNPQRSTVWXYZ";
1830
1831 $i = 0;
1832
1833 while ($i < $length) {
1834 $char = substr($possible, mt_rand(0, strlen($possible)-1), 1);
1835
1836 if (!strstr($password, $char)) {
1837 $password .= $char;
1838 $i++;
1839 }
1840 }
1841 return $password;
1842 }
1843
1844 // this is called after user is created to initialize default feeds, labels
1845 // or whatever else
1846
1847 // user preferences are checked on every login, not here
1848
1849 function initialize_user($link, $uid) {
1850
1851 /* db_query($link, "INSERT INTO ttrss_labels2 (owner_uid, caption)
1852 VALUES ('$uid', 'All Articles')");
1853
1854 db_query($link, "INSERT INTO ttrss_filters
1855 (owner_uid, feed_id, filter_type, reg_exp, enabled,
1856 action_id, action_param, filter_param)
1857 VALUES ('$uid', NULL, 1, '.', true, 7, 'All Articles', 'before')"); */
1858
1859 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
1860 values ('$uid', 'Tiny Tiny RSS: New Releases',
1861 'http://tt-rss.org/releases.rss')");
1862
1863 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
1864 values ('$uid', 'Tiny Tiny RSS: Forum',
1865 'http://tt-rss.org/forum/rss.php')");
1866 }
1867
1868 function logout_user() {
1869 session_destroy();
1870 if (isset($_COOKIE[session_name()])) {
1871 setcookie(session_name(), '', time()-42000, '/');
1872 }
1873 }
1874
1875 function get_script_urlpath() {
1876 return preg_replace('/\/[^\/]*$/', "", $_SERVER["REQUEST_URI"]);
1877 }
1878
1879 function validate_session($link) {
1880 if (SINGLE_USER_MODE) {
1881 return true;
1882 }
1883
1884 if (SESSION_CHECK_ADDRESS && $_SESSION["uid"]) {
1885 if ($_SESSION["ip_address"]) {
1886 if ($_SESSION["ip_address"] != $_SERVER["REMOTE_ADDR"]) {
1887 $_SESSION["login_error_msg"] = "Session failed to validate (incorrect IP)";
1888 return false;
1889 }
1890 }
1891 }
1892
1893 if ($_SESSION["uid"]) {
1894
1895 $result = db_query($link,
1896 "SELECT pwd_hash FROM ttrss_users WHERE id = '".$_SESSION["uid"]."'");
1897
1898 $pwd_hash = db_fetch_result($result, 0, "pwd_hash");
1899
1900 if ($pwd_hash != $_SESSION["pwd_hash"]) {
1901 return false;
1902 }
1903 }
1904
1905 /* if ($_SESSION["cookie_lifetime"] && $_SESSION["uid"]) {
1906
1907 //print_r($_SESSION);
1908
1909 if (time() > $_SESSION["cookie_lifetime"]) {
1910 return false;
1911 }
1912 } */
1913
1914 return true;
1915 }
1916
1917 function login_sequence($link, $mobile = false) {
1918 if (!SINGLE_USER_MODE) {
1919
1920 if (defined('_DEBUG_USER_SWITCH') && $_SESSION["uid"]) {
1921 $swu = db_escape_string($_REQUEST["swu"]);
1922 if ($swu) {
1923 $_SESSION["prefs_cache"] = false;
1924 return authenticate_user($link, $swu, null, true);
1925 }
1926 }
1927
1928 $login_action = $_POST["login_action"];
1929
1930 # try to authenticate user if called from login form
1931 if ($login_action == "do_login") {
1932 $login = $_POST["login"];
1933 $password = $_POST["password"];
1934 $remember_me = $_POST["remember_me"];
1935
1936 if (authenticate_user($link, $login, $password)) {
1937 $_POST["password"] = "";
1938
1939 $_SESSION["language"] = $_POST["language"];
1940 $_SESSION["bw_limit"] = !!$_POST["bw_limit"];
1941
1942 header("Location: " . $_SERVER["REQUEST_URI"]);
1943 exit;
1944
1945 return;
1946 } else {
1947 $_SESSION["login_error_msg"] = "Incorrect username or password";
1948 }
1949 }
1950
1951 if (!$_SESSION["uid"] || !validate_session($link)) {
1952 render_login_form($link, $mobile);
1953 exit;
1954 } else {
1955 /* bump login timestamp */
1956 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
1957 $_SESSION["uid"]);
1958
1959 if ($_SESSION["language"] && SESSION_COOKIE_LIFETIME > 0) {
1960 setcookie("ttrss_lang", $_SESSION["language"],
1961 time() + SESSION_COOKIE_LIFETIME);
1962 }
1963
1964 /* bump counters stamp since we're getting reloaded anyway */
1965
1966 $_SESSION["get_all_counters_stamp"] = time();
1967 }
1968
1969 } else {
1970 return authenticate_user($link, "admin", null);
1971 }
1972 }
1973
1974 function truncate_string($str, $max_len) {
1975 if (mb_strlen($str, "utf-8") > $max_len - 3) {
1976 return mb_substr($str, 0, $max_len, "utf-8") . "&hellip;";
1977 } else {
1978 return $str;
1979 }
1980 }
1981
1982 function get_user_theme_path($link) {
1983 $result = db_query($link, "SELECT theme_path
1984 FROM
1985 ttrss_themes,ttrss_users
1986 WHERE ttrss_themes.id = theme_id AND ttrss_users.id = " . $_SESSION["uid"]);
1987 if (db_num_rows($result) != 0) {
1988 return db_fetch_result($result, 0, "theme_path");
1989 } else {
1990 return null;
1991 }
1992 }
1993
1994 function smart_date_time($timestamp) {
1995 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
1996 return date("G:i", $timestamp);
1997 } else if (date("Y", $timestamp) == date("Y")) {
1998 return date("M d, G:i", $timestamp);
1999 } else {
2000 return date("Y/m/d, G:i", $timestamp);
2001 }
2002 }
2003
2004 function smart_date($timestamp) {
2005 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
2006 return "Today";
2007 } else if (date("Y", $timestamp) == date("Y")) {
2008 return date("D m", $timestamp);
2009 } else {
2010 return date("Y/m/d", $timestamp);
2011 }
2012 }
2013
2014 function sql_bool_to_string($s) {
2015 if ($s == "t" || $s == "1") {
2016 return "true";
2017 } else {
2018 return "false";
2019 }
2020 }
2021
2022 function sql_bool_to_bool($s) {
2023 if ($s == "t" || $s == "1") {
2024 return true;
2025 } else {
2026 return false;
2027 }
2028 }
2029
2030
2031 function toggleEvenOdd($a) {
2032 if ($a == "even")
2033 return "odd";
2034 else
2035 return "even";
2036 }
2037
2038 function sanity_check($link) {
2039
2040 error_reporting(0);
2041
2042 $error_code = 0;
2043 $result = db_query($link, "SELECT schema_version FROM ttrss_version");
2044 $schema_version = db_fetch_result($result, 0, "schema_version");
2045
2046 if ($schema_version != SCHEMA_VERSION) {
2047 $error_code = 5;
2048 }
2049
2050 if (DB_TYPE == "mysql") {
2051 $result = db_query($link, "SELECT true", false);
2052 if (db_num_rows($result) != 1) {
2053 $error_code = 10;
2054 }
2055 }
2056
2057 if (db_escape_string("testTEST") != "testTEST") {
2058 $error_code = 12;
2059 }
2060
2061 error_reporting (DEFAULT_ERROR_LEVEL);
2062
2063 if ($error_code != 0) {
2064 print_error_xml($error_code);
2065 return false;
2066 } else {
2067 return true;
2068 }
2069 }
2070
2071 function file_is_locked($filename) {
2072 if (function_exists('flock')) {
2073 error_reporting(0);
2074 $fp = fopen(LOCK_DIRECTORY . "/$filename", "r");
2075 error_reporting(DEFAULT_ERROR_LEVEL);
2076 if ($fp) {
2077 if (flock($fp, LOCK_EX | LOCK_NB)) {
2078 flock($fp, LOCK_UN);
2079 fclose($fp);
2080 return false;
2081 }
2082 fclose($fp);
2083 return true;
2084 } else {
2085 return false;
2086 }
2087 }
2088 return true; // consider the file always locked and skip the test
2089 }
2090
2091 function make_lockfile($filename) {
2092 $fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
2093
2094 if (flock($fp, LOCK_EX | LOCK_NB)) {
2095 return $fp;
2096 } else {
2097 return false;
2098 }
2099 }
2100
2101 function make_stampfile($filename) {
2102 $fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
2103
2104 if (flock($fp, LOCK_EX | LOCK_NB)) {
2105 fwrite($fp, time() . "\n");
2106 flock($fp, LOCK_UN);
2107 fclose($fp);
2108 return true;
2109 } else {
2110 return false;
2111 }
2112 }
2113
2114 function read_stampfile($filename) {
2115
2116 error_reporting(0);
2117 $fp = fopen(LOCK_DIRECTORY . "/$filename", "r");
2118 error_reporting (DEFAULT_ERROR_LEVEL);
2119
2120 if ($fp) {
2121 if (flock($fp, LOCK_EX)) {
2122 $stamp = fgets($fp);
2123 flock($fp, LOCK_UN);
2124 fclose($fp);
2125 return $stamp;
2126 } else {
2127 return false;
2128 }
2129 } else {
2130 return false;
2131 }
2132 }
2133
2134 function sql_random_function() {
2135 if (DB_TYPE == "mysql") {
2136 return "RAND()";
2137 } else {
2138 return "RANDOM()";
2139 }
2140 }
2141
2142 function catchup_feed($link, $feed, $cat_view) {
2143
2144 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
2145
2146 if ($cat_view) {
2147
2148 if ($feed > 0) {
2149 $cat_qpart = "cat_id = '$feed'";
2150 } else {
2151 $cat_qpart = "cat_id IS NULL";
2152 }
2153
2154 $tmp_result = db_query($link, "SELECT id
2155 FROM ttrss_feeds WHERE $cat_qpart AND owner_uid = " .
2156 $_SESSION["uid"]);
2157
2158 while ($tmp_line = db_fetch_assoc($tmp_result)) {
2159
2160 $tmp_feed = $tmp_line["id"];
2161
2162 db_query($link, "UPDATE ttrss_user_entries
2163 SET unread = false,last_read = NOW()
2164 WHERE feed_id = '$tmp_feed' AND owner_uid = " . $_SESSION["uid"]);
2165 }
2166
2167 } else if ($feed > 0) {
2168
2169 $tmp_result = db_query($link, "SELECT id
2170 FROM ttrss_feeds WHERE parent_feed = '$feed'
2171 ORDER BY cat_id,title");
2172
2173 $parent_ids = array();
2174
2175 if (db_num_rows($tmp_result) > 0) {
2176 while ($p = db_fetch_assoc($tmp_result)) {
2177 array_push($parent_ids, "feed_id = " . $p["id"]);
2178 }
2179
2180 $children_qpart = implode(" OR ", $parent_ids);
2181
2182 db_query($link, "UPDATE ttrss_user_entries
2183 SET unread = false,last_read = NOW()
2184 WHERE (feed_id = '$feed' OR $children_qpart)
2185 AND owner_uid = " . $_SESSION["uid"]);
2186
2187 } else {
2188 db_query($link, "UPDATE ttrss_user_entries
2189 SET unread = false,last_read = NOW()
2190 WHERE feed_id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
2191 }
2192
2193 } else if ($feed < 0 && $feed > -10) { // special, like starred
2194
2195 if ($feed == -1) {
2196 db_query($link, "UPDATE ttrss_user_entries
2197 SET unread = false,last_read = NOW()
2198 WHERE marked = true AND owner_uid = ".$_SESSION["uid"]);
2199 }
2200
2201 if ($feed == -2) {
2202 db_query($link, "UPDATE ttrss_user_entries
2203 SET unread = false,last_read = NOW()
2204 WHERE published = true AND owner_uid = ".$_SESSION["uid"]);
2205 }
2206
2207 if ($feed == -3) {
2208
2209 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE");
2210
2211 if (DB_TYPE == "pgsql") {
2212 $match_part = "updated > NOW() - INTERVAL '$intl hour' ";
2213 } else {
2214 $match_part = "updated > DATE_SUB(NOW(),
2215 INTERVAL $intl HOUR) ";
2216 }
2217
2218 $result = db_query($link, "SELECT id FROM ttrss_entries,
2219 ttrss_user_entries WHERE $match_part AND
2220 unread = true AND
2221 ttrss_user_entries.ref_id = ttrss_entries.id AND
2222 owner_uid = ".$_SESSION["uid"]);
2223
2224 $affected_ids = array();
2225
2226 while ($line = db_fetch_assoc($result)) {
2227 array_push($affected_ids, $line["id"]);
2228 }
2229
2230 catchupArticlesById($link, $affected_ids, 0);
2231 }
2232
2233 if ($feed == -4) {
2234 db_query($link, "UPDATE ttrss_user_entries
2235 SET unread = false,last_read = NOW()
2236 WHERE owner_uid = ".$_SESSION["uid"]);
2237 }
2238
2239 } else if ($feed < -10) { // label
2240
2241 $label_id = -$feed - 11;
2242
2243 db_query($link, "UPDATE ttrss_user_entries, ttrss_user_labels2
2244 SET unread = false WHERE label_id = '$label_id' AND unread = true
2245 AND owner_uid = '".$_SESSION["uid"]."' AND ref_id = article_id");
2246
2247 }
2248
2249 ccache_update($link, $feed, $_SESSION["uid"], $cat_view);
2250
2251 } else { // tag
2252 db_query($link, "BEGIN");
2253
2254 $tag_name = db_escape_string($feed);
2255
2256 $result = db_query($link, "SELECT post_int_id FROM ttrss_tags
2257 WHERE tag_name = '$tag_name' AND owner_uid = " . $_SESSION["uid"]);
2258
2259 while ($line = db_fetch_assoc($result)) {
2260 db_query($link, "UPDATE ttrss_user_entries SET
2261 unread = false, last_read = NOW()
2262 WHERE int_id = " . $line["post_int_id"]);
2263 }
2264 db_query($link, "COMMIT");
2265 }
2266 }
2267
2268 function update_generic_feed($link, $feed, $cat_view, $force_update = false) {
2269 if ($cat_view) {
2270
2271 if ($feed > 0) {
2272 $cat_qpart = "cat_id = '$feed'";
2273 } else {
2274 $cat_qpart = "cat_id IS NULL";
2275 }
2276
2277 $tmp_result = db_query($link, "SELECT id,feed_url FROM ttrss_feeds
2278 WHERE $cat_qpart AND owner_uid = " . $_SESSION["uid"]);
2279
2280 while ($tmp_line = db_fetch_assoc($tmp_result)) {
2281 $feed_url = $tmp_line["feed_url"];
2282 $feed_id = $tmp_line["id"];
2283 update_rss_feed($link, $feed_url, $feed_id, $force_update);
2284 }
2285
2286 } else {
2287 $tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
2288 WHERE id = '$feed'");
2289 $feed_url = db_fetch_result($tmp_result, 0, "feed_url");
2290 update_rss_feed($link, $feed_url, $feed, $force_update);
2291 }
2292 }
2293
2294 function getAllCounters($link, $omode = "flc", $active_feed = false) {
2295
2296 if (!$omode) $omode = "flc";
2297
2298 getGlobalCounters($link);
2299
2300 if (strchr($omode, "l")) getLabelCounters($link);
2301 if (strchr($omode, "f")) getFeedCounters($link, SMART_RPC_COUNTERS, $active_feed);
2302 if (strchr($omode, "t")) getTagCounters($link);
2303 if (strchr($omode, "c")) {
2304 if (get_pref($link, 'ENABLE_FEED_CATS')) {
2305 getCategoryCounters($link);
2306 }
2307 }
2308 }
2309
2310 function getCategoryCounters($link) {
2311 # two special categories are -1 and -2 (all virtuals; all labels)
2312
2313 /* $ctr = getCategoryUnread($link, -1);
2314
2315 print "<counter type=\"category\" id=\"-1\" counter=\"$ctr\"/>"; */
2316
2317 $ctr = getCategoryUnread($link, -2);
2318
2319 print "<counter type=\"category\" id=\"-2\" counter=\"$ctr\"/>";
2320
2321 $age_qpart = getMaxAgeSubquery();
2322
2323 $result = db_query($link, "SELECT id AS cat_id, value AS unread
2324 FROM ttrss_feed_categories, ttrss_cat_counters_cache
2325 WHERE ttrss_cat_counters_cache.feed_id = id AND
2326 ttrss_feed_categories.owner_uid = " . $_SESSION["uid"]);
2327
2328 while ($line = db_fetch_assoc($result)) {
2329 $line["cat_id"] = sprintf("%d", $line["cat_id"]);
2330
2331 print "<counter type=\"category\" id=\"".$line["cat_id"]."\" counter=\"".
2332 $line["unread"]."\"/>";
2333 }
2334
2335 /* Special case: NULL category doesn't actually exist in the DB */
2336
2337 print "<counter type=\"category\" id=\"0\" counter=\"".
2338 ccache_find($link, 0, $_SESSION["uid"], true)."\"/>";
2339
2340 }
2341
2342 function getCategoryUnread($link, $cat, $owner_uid = false) {
2343
2344 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
2345
2346 if ($cat >= 0) {
2347
2348 if ($cat != 0) {
2349 $cat_query = "cat_id = '$cat'";
2350 } else {
2351 $cat_query = "cat_id IS NULL";
2352 }
2353
2354 $age_qpart = getMaxAgeSubquery();
2355
2356 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE $cat_query
2357 AND hidden = false
2358 AND owner_uid = " . $owner_uid);
2359
2360 $cat_feeds = array();
2361 while ($line = db_fetch_assoc($result)) {
2362 array_push($cat_feeds, "feed_id = " . $line["id"]);
2363 }
2364
2365 if (count($cat_feeds) == 0) return 0;
2366
2367 $match_part = implode(" OR ", $cat_feeds);
2368
2369 $result = db_query($link, "SELECT COUNT(int_id) AS unread
2370 FROM ttrss_user_entries,ttrss_entries
2371 WHERE unread = true AND ($match_part) AND id = ref_id
2372 AND $age_qpart AND owner_uid = " . $owner_uid);
2373
2374 $unread = 0;
2375
2376 # this needs to be rewritten
2377 while ($line = db_fetch_assoc($result)) {
2378 $unread += $line["unread"];
2379 }
2380
2381 return $unread;
2382 } else if ($cat == -1) {
2383 return getFeedUnread($link, -1) + getFeedUnread($link, -2) + getFeedUnread($link, -3);
2384 } else if ($cat == -2) {
2385
2386 $result = db_query($link, "
2387 SELECT COUNT(unread) AS unread FROM
2388 ttrss_user_entries, ttrss_labels2, ttrss_user_labels2, ttrss_feeds
2389 WHERE label_id = ttrss_labels2.id AND article_id = ref_id AND
2390 ttrss_labels2.owner_uid = '$owner_uid'
2391 AND unread = true AND hidden = false AND feed_id = ttrss_feeds.id
2392 AND ttrss_user_entries.owner_uid = '$owner_uid'");
2393
2394 $unread = db_fetch_result($result, 0, "unread");
2395
2396 return $unread;
2397
2398 }
2399 }
2400
2401 function getMaxAgeSubquery($days = COUNTERS_MAX_AGE) {
2402 if (DB_TYPE == "pgsql") {
2403 return "ttrss_entries.date_entered >
2404 NOW() - INTERVAL '$days days'";
2405 } else {
2406 return "ttrss_entries.date_entered >
2407 DATE_SUB(NOW(), INTERVAL $days DAY)";
2408 }
2409 }
2410
2411 function getFeedUnread($link, $feed, $is_cat = false) {
2412 return getFeedArticles($link, $feed, $is_cat, true, $_SESSION["uid"]);
2413 }
2414
2415 function getLabelUnread($link, $label_id, $owner_uid = false) {
2416 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
2417
2418 $result = db_query($link, "
2419 SELECT COUNT(unread) AS unread FROM
2420 ttrss_user_entries, ttrss_labels2, ttrss_user_labels2, ttrss_feeds
2421 WHERE label_id = ttrss_labels2.id AND article_id = ref_id AND
2422 ttrss_labels2.owner_uid = '$owner_uid' AND ttrss_labels2.id = '$label_id'
2423 AND unread = true AND hidden = false AND feed_id = ttrss_feeds.id
2424 AND ttrss_user_entries.owner_uid = '$owner_uid'");
2425
2426 if (db_num_rows($result) != 0) {
2427 return db_fetch_result($result, 0, "unread");
2428 } else {
2429 return 0;
2430 }
2431 }
2432
2433 function getFeedArticles($link, $feed, $is_cat = false, $unread_only = false,
2434 $owner_uid = false) {
2435
2436 $n_feed = sprintf("%d", $feed);
2437
2438 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
2439
2440 if ($unread_only) {
2441 $unread_qpart = "unread = true";
2442 } else {
2443 $unread_qpart = "true";
2444 }
2445
2446 $age_qpart = getMaxAgeSubquery();
2447
2448 if ($is_cat) {
2449 return getCategoryUnread($link, $n_feed, $owner_uid);
2450 } else if ($n_feed == -1) {
2451 $match_part = "marked = true";
2452 } else if ($n_feed == -2) {
2453 $match_part = "published = true";
2454 } else if ($n_feed == -3) {
2455 $match_part = "unread = true";
2456
2457 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid);
2458
2459 if (DB_TYPE == "pgsql") {
2460 $match_part .= " AND updated > NOW() - INTERVAL '$intl hour' ";
2461 } else {
2462 $match_part .= " AND updated > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
2463 }
2464 } else if ($n_feed == -4) {
2465 $match_part = "true";
2466 } else if ($n_feed > 0) {
2467
2468 $result = db_query($link, "SELECT id FROM ttrss_feeds
2469 WHERE parent_feed = '$n_feed'
2470 AND hidden = false
2471 AND owner_uid = " . $owner_uid);
2472
2473 if (db_num_rows($result) > 0) {
2474
2475 $linked_feeds = array();
2476 while ($line = db_fetch_assoc($result)) {
2477 array_push($linked_feeds, "feed_id = " . $line["id"]);
2478 }
2479
2480 array_push($linked_feeds, "feed_id = $n_feed");
2481
2482 $match_part = implode(" OR ", $linked_feeds);
2483
2484 $result = db_query($link, "SELECT COUNT(int_id) AS unread
2485 FROM ttrss_user_entries,ttrss_entries
2486 WHERE $unread_qpart AND
2487 ttrss_user_entries.ref_id = ttrss_entries.id AND
2488 $age_qpart AND
2489 ($match_part) AND
2490 owner_uid = " . $owner_uid);
2491
2492 $unread = 0;
2493
2494 # this needs to be rewritten
2495 while ($line = db_fetch_assoc($result)) {
2496 $unread += $line["unread"];
2497 }
2498
2499 return $unread;
2500
2501 } else {
2502 $match_part = "feed_id = '$n_feed'";
2503 }
2504 } else if ($feed < -10) {
2505
2506 $label_id = -$feed - 11;
2507
2508 return getLabelUnread($link, $label_id, $owner_uid);
2509
2510 }
2511
2512 if ($match_part) {
2513
2514 $result = db_query($link, "SELECT count(int_id) AS unread
2515 FROM ttrss_user_entries,ttrss_feeds,ttrss_entries WHERE
2516 ttrss_user_entries.feed_id = ttrss_feeds.id AND
2517 ttrss_user_entries.ref_id = ttrss_entries.id AND
2518 ttrss_feeds.hidden = false AND
2519 $age_qpart AND
2520 $unread_qpart AND ($match_part) AND ttrss_user_entries.owner_uid = " . $owner_uid);
2521
2522 } else {
2523
2524 $result = db_query($link, "SELECT COUNT(post_int_id) AS unread
2525 FROM ttrss_tags,ttrss_user_entries,ttrss_entries
2526 WHERE tag_name = '$feed' AND post_int_id = int_id AND ref_id = ttrss_entries.id
2527 AND $unread_qpart AND $age_qpart AND
2528 ttrss_tags.owner_uid = " . $owner_uid);
2529 }
2530
2531 $unread = db_fetch_result($result, 0, "unread");
2532
2533 return $unread;
2534 }
2535
2536 function getGlobalUnread($link, $user_id = false) {
2537
2538 if (!$user_id) {
2539 $user_id = $_SESSION["uid"];
2540 }
2541
2542 $result = db_query($link, "SELECT SUM(value) AS c_id FROM ttrss_counters_cache
2543 WHERE owner_uid = '$user_id' AND feed_id > 0");
2544
2545 $c_id = db_fetch_result($result, 0, "c_id");
2546
2547 return $c_id;
2548 }
2549
2550 function getGlobalCounters($link, $global_unread = -1) {
2551 if ($global_unread == -1) {
2552 $global_unread = getGlobalUnread($link);
2553 }
2554 print "<counter type=\"global\" id='global-unread'
2555 counter='$global_unread'/>";
2556
2557 $result = db_query($link, "SELECT COUNT(id) AS fn FROM
2558 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
2559
2560 $subscribed_feeds = db_fetch_result($result, 0, "fn");
2561
2562 print "<counter type=\"global\" id='subscribed-feeds'
2563 counter='$subscribed_feeds'/>";
2564
2565 }
2566
2567 function getTagCounters($link, $smart_mode = SMART_RPC_COUNTERS) {
2568
2569 if ($smart_mode) {
2570 if (!$_SESSION["tctr_last_value"]) {
2571 $_SESSION["tctr_last_value"] = array();
2572 }
2573 }
2574
2575 $old_counters = $_SESSION["tctr_last_value"];
2576
2577 $tctrs_modified = false;
2578
2579 $age_qpart = getMaxAgeSubquery();
2580
2581 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
2582 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
2583 AND ref_id = id AND $age_qpart
2584 AND unread = true)) AS count FROM ttrss_tags
2585 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name
2586 ORDER BY count DESC LIMIT 55");
2587
2588 $tags = array();
2589
2590 while ($line = db_fetch_assoc($result)) {
2591 $tags[$line["tag_name"]] += $line["count"];
2592 }
2593
2594 foreach (array_keys($tags) as $tag) {
2595 $unread = $tags[$tag];
2596
2597 $tag = htmlspecialchars($tag);
2598
2599 if (!$smart_mode || $old_counters[$tag] != $unread) {
2600 $old_counters[$tag] = $unread;
2601 $tctrs_modified = true;
2602 print "<counter type=\"tag\" id=\"$tag\" counter=\"$unread\"/>";
2603 }
2604
2605 }
2606
2607 if ($smart_mode && $tctrs_modified) {
2608 $_SESSION["tctr_last_value"] = $old_counters;
2609 }
2610
2611 }
2612
2613 function getLabelCounters($link, $smart_mode = SMART_RPC_COUNTERS, $ret_mode = false) {
2614
2615 $age_qpart = getMaxAgeSubquery();
2616
2617 if ($smart_mode) {
2618 if (!$_SESSION["lctr_last_value"]) {
2619 $_SESSION["lctr_last_value"] = array();
2620 }
2621 }
2622
2623 $ret_arr = array();
2624
2625 for ($i = -1; $i >= -4; $i--) {
2626
2627 $count = getFeedUnread($link, $i);
2628
2629 if (!$ret_mode) {
2630
2631 if (get_pref($link, 'EXTENDED_FEEDLIST')) {
2632 $xmsg_part = "xmsg=\"(" . getFeedArticles($link, $i) . " total)\"";
2633 } else {
2634 $xmsg_part = "";
2635 }
2636
2637 print "<counter type=\"label\" id=\"$i\" counter=\"$count\" $xmsg_part/>";
2638 } else {
2639 $ret_arr[$i]["counter"] = $count;
2640 $ret_arr[$i]["description"] = getFeedTitle($link, $i);
2641 }
2642
2643 }
2644
2645 $old_counters = $_SESSION["lctr_last_value"];
2646 $lctrs_modified = false;
2647
2648
2649 $owner_uid = $_SESSION["uid"];
2650
2651 $result = db_query($link, "SELECT id, caption FROM ttrss_labels2
2652 WHERE owner_uid = '$owner_uid'");
2653
2654 while ($line = db_fetch_assoc($result)) {
2655
2656 $id = -$line["id"] - 11;
2657
2658 $label_name = $line["caption"];
2659 $count = getFeedUnread($link, $id);
2660
2661 if (!$smart_mode || $old_counters[$id] != $count) {
2662 $old_counters[$id] = $count;
2663 $lctrs_modified = true;
2664 if (!$ret_mode) {
2665
2666 if (get_pref($link, 'EXTENDED_FEEDLIST')) {
2667 $xmsg_part = "xmsg=\"(" . getFeedArticles($link, $id) . " total)\"";
2668 } else {
2669 $xmsg_part = "";
2670 }
2671
2672 print "<counter type=\"label\" id=\"$id\" counter=\"$count\" $xmsg_part/>";
2673 } else {
2674 $ret_arr[$id]["counter"] = $count;
2675 $ret_arr[$id]["description"] = $label_name;
2676 }
2677 }
2678
2679 error_reporting (DEFAULT_ERROR_LEVEL);
2680 }
2681
2682 if ($smart_mode && $lctrs_modified) {
2683 $_SESSION["lctr_last_value"] = $old_counters;
2684 }
2685
2686 return $ret_arr;
2687 }
2688
2689 function getFeedCounters($link, $smart_mode = SMART_RPC_COUNTERS, $active_feed = false) {
2690
2691 $age_qpart = getMaxAgeSubquery();
2692
2693 if ($smart_mode) {
2694 if (!$_SESSION["fctr_last_value"]) {
2695 $_SESSION["fctr_last_value"] = array();
2696 }
2697 }
2698
2699 $old_counters = $_SESSION["fctr_last_value"];
2700
2701 $query = "SELECT ttrss_feeds.id,
2702 ttrss_feeds.title,
2703 ".SUBSTRING_FOR_DATE."(ttrss_feeds.last_updated,1,19) AS last_updated,
2704 last_error, value AS count
2705 FROM ttrss_feeds, ttrss_counters_cache
2706 WHERE ttrss_feeds.owner_uid = ".$_SESSION["uid"]."
2707 AND parent_feed IS NULL
2708 AND ttrss_counters_cache.feed_id = id";
2709
2710 $result = db_query($link, $query);
2711 $fctrs_modified = false;
2712
2713 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
2714
2715 while ($line = db_fetch_assoc($result)) {
2716
2717 $id = $line["id"];
2718 $count = $line["count"];
2719 $last_error = htmlspecialchars($line["last_error"]);
2720
2721 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
2722 $last_updated = smart_date_time(strtotime($line["last_updated"]));
2723 } else {
2724 $last_updated = date($short_date, strtotime($line["last_updated"]));
2725 }
2726
2727 $last_updated = htmlspecialchars($last_updated);
2728
2729 $has_img = feed_has_icon($id);
2730
2731 $tmp_result = db_query($link,
2732 "SELECT SUM(value) AS unread FROM ttrss_feeds, ttrss_counters_cache
2733 WHERE parent_feed = '$id' AND feed_id = id");
2734
2735 $count += db_fetch_result($tmp_result, 0, "unread");
2736
2737 if (!$smart_mode || $old_counters[$id] != $count) {
2738 $old_counters[$id] = $count;
2739 $fctrs_modified = true;
2740
2741 if ($last_error) {
2742 $error_part = "error=\"$last_error\"";
2743 } else {
2744 $error_part = "";
2745 }
2746
2747 if ($has_img) {
2748 $has_img_part = "hi=\"$has_img\"";
2749 } else {
2750 $has_img_part = "";
2751 }
2752
2753 if ($active_feed && $id == $active_feed) {
2754 $has_title_part = "title=\"" . htmlspecialchars($line["title"]) . "\"";
2755 } else {
2756 $has_title_part = "";
2757 }
2758
2759 if (get_pref($link, 'EXTENDED_FEEDLIST')) {
2760 $xmsg_part = "xmsg=\"(" . getFeedArticles($link, $id) . " total)\"";
2761 }
2762
2763 print "<counter type=\"feed\" id=\"$id\" counter=\"$count\" $has_img_part $error_part updated=\"$last_updated\" $xmsg_part $has_title_part/>";
2764 }
2765 }
2766
2767 if ($smart_mode && $fctrs_modified) {
2768 $_SESSION["fctr_last_value"] = $old_counters;
2769 }
2770 }
2771
2772 function get_script_dt_add() {
2773 if (strpos(VERSION, ".99") === false) {
2774 return VERSION;
2775 } else {
2776 return time();
2777 }
2778 }
2779
2780 function get_pgsql_version($link) {
2781 $result = db_query($link, "SELECT version() AS version");
2782 $version = split(" ", db_fetch_result($result, 0, "version"));
2783 return $version[1];
2784 }
2785
2786 function print_error_xml($code, $add_msg = "") {
2787 global $ERRORS;
2788
2789 $error_msg = $ERRORS[$code];
2790
2791 if ($add_msg) {
2792 $error_msg = "$error_msg; $add_msg";
2793 }
2794
2795 print "<rpc-reply>";
2796 print "<error error-code=\"$code\" error-msg=\"$error_msg\"/>";
2797 print "</rpc-reply>";
2798 }
2799
2800 function subscribe_to_feed($link, $feed_link, $cat_id = 0,
2801 $auth_login = '', $auth_pass = '') {
2802
2803 # check for feed:http://url
2804 $feed_link = trim(preg_replace("/^feed:/", "", $feed_link));
2805
2806 # check for feed://URL
2807 if (strpos($feed_link, "//") === 0) {
2808 $feed_link = "http:$feed_link";
2809 }
2810
2811 if ($feed_link == "") return;
2812
2813 if ($cat_id == "0" || !$cat_id) {
2814 $cat_qpart = "NULL";
2815 } else {
2816 $cat_qpart = "'$cat_id'";
2817 }
2818
2819 $result = db_query($link,
2820 "SELECT id FROM ttrss_feeds
2821 WHERE feed_url = '$feed_link' AND owner_uid = ".$_SESSION["uid"]);
2822
2823 if (db_num_rows($result) == 0) {
2824
2825 $result = db_query($link,
2826 "INSERT INTO ttrss_feeds
2827 (owner_uid,feed_url,title,cat_id, auth_login,auth_pass)
2828 VALUES ('".$_SESSION["uid"]."', '$feed_link',
2829 '[Unknown]', $cat_qpart, '$auth_login', '$auth_pass')");
2830
2831 $result = db_query($link,
2832 "SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_link'
2833 AND owner_uid = " . $_SESSION["uid"]);
2834
2835 $feed_id = db_fetch_result($result, 0, "id");
2836
2837 if ($feed_id) {
2838 update_rss_feed($link, $feed_link, $feed_id, true);
2839 }
2840
2841 return true;
2842 } else {
2843 return false;
2844 }
2845 }
2846
2847 function print_feed_select($link, $id, $default_id = "",
2848 $attributes = "", $include_all_feeds = true) {
2849
2850 print "<select id=\"$id\" name=\"$id\" $attributes>";
2851 if ($include_all_feeds) {
2852 print "<option value=\"0\">".__('All feeds')."</option>";
2853 }
2854
2855 $result = db_query($link, "SELECT id,title FROM ttrss_feeds
2856 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
2857
2858 if (db_num_rows($result) > 0 && $include_all_feeds) {
2859 print "<option disabled>--------</option>";
2860 }
2861
2862 while ($line = db_fetch_assoc($result)) {
2863 if ($line["id"] == $default_id) {
2864 $is_selected = "selected";
2865 } else {
2866 $is_selected = "";
2867 }
2868 printf("<option $is_selected value='%d'>%s</option>",
2869 $line["id"], htmlspecialchars($line["title"]));
2870 }
2871
2872 print "</select>";
2873 }
2874
2875 function print_feed_cat_select($link, $id, $default_id = "",
2876 $attributes = "", $include_all_cats = true) {
2877
2878 print "<select id=\"$id\" name=\"$id\" $attributes>";
2879
2880 if ($include_all_cats) {
2881 print "<option value=\"0\">".__('Uncategorized')."</option>";
2882 }
2883
2884 $result = db_query($link, "SELECT id,title FROM ttrss_feed_categories
2885 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
2886
2887 if (db_num_rows($result) > 0 && $include_all_cats) {
2888 print "<option disabled>--------</option>";
2889 }
2890
2891 while ($line = db_fetch_assoc($result)) {
2892 if ($line["id"] == $default_id) {
2893 $is_selected = "selected";
2894 } else {
2895 $is_selected = "";
2896 }
2897 printf("<option $is_selected value='%d'>%s</option>",
2898 $line["id"], htmlspecialchars($line["title"]));
2899 }
2900
2901 print "</select>";
2902 }
2903
2904 function checkbox_to_sql_bool($val) {
2905 return ($val == "on") ? "true" : "false";
2906 }
2907
2908 function getFeedCatTitle($link, $id) {
2909 if ($id == -1) {
2910 return __("Special");
2911 } else if ($id < -10) {
2912 return __("Labels");
2913 } else if ($id > 0) {
2914 $result = db_query($link, "SELECT ttrss_feed_categories.title
2915 FROM ttrss_feeds, ttrss_feed_categories WHERE ttrss_feeds.id = '$id' AND
2916 cat_id = ttrss_feed_categories.id");
2917 if (db_num_rows($result) == 1) {
2918 return db_fetch_result($result, 0, "title");
2919 } else {
2920 return __("Uncategorized");
2921 }
2922 } else {
2923 return "getFeedCatTitle($id) failed";
2924 }
2925
2926 }
2927
2928 function getFeedTitle($link, $id) {
2929 if ($id == -1) {
2930 return __("Starred articles");
2931 } else if ($id == -2) {
2932 return __("Published articles");
2933 } else if ($id == -3) {
2934 return __("Fresh articles");
2935 } else if ($id == -4) {
2936 return __("All articles");
2937 } else if ($id < -10) {
2938 $label_id = -$id - 11;
2939 $result = db_query($link, "SELECT caption FROM ttrss_labels2 WHERE id = '$label_id'");
2940 if (db_num_rows($result) == 1) {
2941 return db_fetch_result($result, 0, "caption");
2942 } else {
2943 return "Unknown label ($label_id)";
2944 }
2945
2946 } else if ($id > 0) {
2947 $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$id'");
2948 if (db_num_rows($result) == 1) {
2949 return db_fetch_result($result, 0, "title");
2950 } else {
2951 return "Unknown feed ($id)";
2952 }
2953 } else {
2954 return "getFeedTitle($id) failed";
2955 }
2956
2957 }
2958
2959 function get_session_cookie_name() {
2960 return ((!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid" : TTRSS_SESSION_NAME);
2961 }
2962
2963 function print_init_params($link) {
2964 print "<init-params>";
2965 if ($_SESSION["stored-params"]) {
2966 foreach (array_keys($_SESSION["stored-params"]) as $key) {
2967 if ($key) {
2968 $value = htmlspecialchars($_SESSION["stored-params"][$key]);
2969 print "<param key=\"$key\" value=\"$value\"/>";
2970 }
2971 }
2972 }
2973
2974 print "<param key=\"theme\" value=\"".$_SESSION["theme"]."\"/>";
2975 print "<param key=\"daemon_enabled\" value=\"" . ENABLE_UPDATE_DAEMON . "\"/>";
2976 print "<param key=\"feeds_frame_refresh\" value=\"" . FEEDS_FRAME_REFRESH . "\"/>";
2977 print "<param key=\"daemon_refresh_only\" value=\"true\"/>";
2978
2979 print "<param key=\"on_catchup_show_next_feed\" value=\"" .
2980 get_pref($link, "ON_CATCHUP_SHOW_NEXT_FEED") . "\"/>";
2981
2982 print "<param key=\"hide_read_feeds\" value=\"" .
2983 (int) get_pref($link, "HIDE_READ_FEEDS") . "\"/>";
2984
2985 print "<param key=\"feeds_sort_by_unread\" value=\"" .
2986 (int) get_pref($link, "FEEDS_SORT_BY_UNREAD") . "\"/>";
2987
2988 print "<param key=\"confirm_feed_catchup\" value=\"" .
2989 (int) get_pref($link, "CONFIRM_FEED_CATCHUP") . "\"/>";
2990
2991 print "<param key=\"cdm_auto_catchup\" value=\"" .
2992 (int) get_pref($link, "CDM_AUTO_CATCHUP") . "\"/>";
2993
2994 print "<param key=\"icons_url\" value=\"" . ICONS_URL . "\"/>";
2995
2996 print "<param key=\"cookie_lifetime\" value=\"" . SESSION_COOKIE_LIFETIME . "\"/>";
2997
2998 print "<param key=\"default_view_mode\" value=\"" .
2999 get_pref($link, "_DEFAULT_VIEW_MODE") . "\"/>";
3000
3001 print "<param key=\"default_view_limit\" value=\"" .
3002 (int) get_pref($link, "_DEFAULT_VIEW_LIMIT") . "\"/>";
3003
3004 print "<param key=\"default_view_order_by\" value=\"" .
3005 get_pref($link, "_DEFAULT_VIEW_ORDER_BY") . "\"/>";
3006
3007 print "<param key=\"prefs_active_tab\" value=\"" .
3008 get_pref($link, "_PREFS_ACTIVE_TAB") . "\"/>";
3009
3010 print "<param key=\"infobox_disable_overlay\" value=\"" .
3011 get_pref($link, "_INFOBOX_DISABLE_OVERLAY") . "\"/>";
3012
3013 print "<param key=\"icons_location\" value=\"" .
3014 ICONS_URL . "\"/>";
3015
3016 print "<param key=\"hide_read_shows_special\" value=\"" .
3017 (int) get_pref($link, "HIDE_READ_SHOWS_SPECIAL") . "\"/>";
3018
3019 print "<param key=\"hide_feedlist\" value=\"" .
3020 (int) get_pref($link, "HIDE_FEEDLIST") . "\"/>";
3021
3022 print "<param key=\"bw_limit\" value=\"".
3023 (int) $_SESSION["bw_limit"]."\"/>";
3024
3025 // print "<param key=\"sync_counters\" value=\"" .
3026 // (int) get_pref($link, "SYNC_COUNTERS") . "\"/>";
3027
3028 print "<param key=\"sync_counters\" value=\"1\"/>";
3029
3030 print "</init-params>";
3031 }
3032
3033 function print_runtime_info($link) {
3034 print "<runtime-info>";
3035
3036 if (ENABLE_UPDATE_DAEMON) {
3037 print "<param key=\"daemon_is_running\" value=\"".
3038 sprintf("%d", file_is_locked("update_daemon.lock")) . "\"/>";
3039
3040 if (time() - $_SESSION["daemon_stamp_check"] > 30) {
3041
3042 $stamp = (int)read_stampfile("update_daemon.stamp");
3043
3044 // print "<param key=\"daemon_stamp_delta\" value=\"$stamp_delta\"/>";
3045
3046 if ($stamp) {
3047 $stamp_delta = time() - $stamp;
3048
3049 if ($stamp_delta > 1800) {
3050 $stamp_check = 0;
3051 } else {
3052 $stamp_check = 1;
3053 $_SESSION["daemon_stamp_check"] = time();
3054 }
3055
3056 print "<param key=\"daemon_stamp_ok\" value=\"$stamp_check\"/>";
3057
3058 $stamp_fmt = date("Y.m.d, G:i", $stamp);
3059
3060 print "<param key=\"daemon_stamp\" value=\"$stamp_fmt\"/>";
3061 }
3062 }
3063 }
3064
3065 if (CHECK_FOR_NEW_VERSION && $_SESSION["access_level"] >= 10) {
3066
3067 if ($_SESSION["last_version_check"] + 86400 < time()) {
3068 $new_version_details = check_for_update($link);
3069
3070 print "<param key=\"new_version_available\" value=\"".
3071 sprintf("%d", $new_version_details != ""). "\"/>";
3072
3073 $_SESSION["last_version_check"] = time();
3074 }
3075 }
3076
3077 // print "<param key=\"new_version_available\" value=\"1\"/>";
3078
3079 print "</runtime-info>";
3080 }
3081
3082 function getSearchSql($search, $match_on) {
3083
3084 $search_query_part = "";
3085
3086 $keywords = split(" ", $search);
3087 $query_keywords = array();
3088
3089 if ($match_on == "both") {
3090
3091 foreach ($keywords as $k) {
3092 array_push($query_keywords, "(UPPER(ttrss_entries.title) LIKE UPPER('%$k%')
3093 OR UPPER(ttrss_entries.content) LIKE UPPER('%$k%'))");
3094 }
3095
3096 $search_query_part = implode("AND", $query_keywords) . " AND ";
3097
3098 } else if ($match_on == "title") {
3099
3100 foreach ($keywords as $k) {
3101 array_push($query_keywords, "(UPPER(ttrss_entries.title) LIKE UPPER('%$k%'))");
3102 }
3103
3104 $search_query_part = implode("AND", $query_keywords) . " AND ";
3105
3106 } else if ($match_on == "content") {
3107
3108 foreach ($keywords as $k) {
3109 array_push($query_keywords, "(UPPER(ttrss_entries.content) LIKE UPPER('%$k%'))");
3110 }
3111 }
3112
3113 $search_query_part = implode("AND", $query_keywords);
3114
3115 return $search_query_part;
3116 }
3117
3118 function queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view, $search, $search_mode, $match_on, $override_order = false, $offset = 0, $owner_uid = 0) {
3119
3120 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
3121
3122 if ($search) {
3123
3124 $search_query_part = getSearchSql($search, $match_on);
3125 $search_query_part .= " AND ";
3126
3127 } else {
3128 $search_query_part = "";
3129 }
3130
3131 $view_query_part = "";
3132
3133 if ($view_mode == "adaptive" || $view_query_part == "noscores") {
3134 if ($search) {
3135 $view_query_part = " ";
3136 } else if ($feed != -1) {
3137 $unread = getFeedUnread($link, $feed, $cat_view);
3138 if ($unread > 0) {
3139 $view_query_part = " unread = true AND ";
3140 }
3141 }
3142 }
3143
3144 if ($view_mode == "marked") {
3145 $view_query_part = " marked = true AND ";
3146 }
3147
3148 if ($view_mode == "unread") {
3149 $view_query_part = " unread = true AND ";
3150 }
3151
3152 if ($view_mode == "updated") {
3153 $view_query_part = " (last_read is null and unread = false) AND ";
3154 }
3155
3156 if ($limit > 0) {
3157 $limit_query_part = "LIMIT " . $limit;
3158 }
3159
3160 $vfeed_query_part = "";
3161
3162 // override query strategy and enable feed display when searching globally
3163 if ($search && $search_mode == "all_feeds") {
3164 $query_strategy_part = "ttrss_entries.id > 0";
3165 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3166 } else if (preg_match("/^-?[0-9][0-9]*$/", $feed) == false) {
3167 $query_strategy_part = "ttrss_entries.id > 0";
3168 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
3169 id = feed_id) as feed_title,";
3170 } else if ($feed >= 0 && $search && $search_mode == "this_cat") {
3171
3172 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3173
3174 $tmp_result = false;
3175
3176 if ($cat_view) {
3177 $tmp_result = db_query($link, "SELECT id
3178 FROM ttrss_feeds WHERE cat_id = '$feed'");
3179 } else {
3180 $tmp_result = db_query($link, "SELECT id
3181 FROM ttrss_feeds WHERE cat_id = (SELECT cat_id FROM ttrss_feeds
3182 WHERE id = '$feed') AND id != '$feed'");
3183 }
3184
3185 $cat_siblings = array();
3186
3187 if (db_num_rows($tmp_result) > 0) {
3188 while ($p = db_fetch_assoc($tmp_result)) {
3189 array_push($cat_siblings, "feed_id = " . $p["id"]);
3190 }
3191
3192 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
3193 $feed, implode(" OR ", $cat_siblings));
3194
3195 } else {
3196 $query_strategy_part = "ttrss_entries.id > 0";
3197 }
3198
3199 } else if ($feed >= 0) {
3200
3201 if ($cat_view) {
3202
3203 if ($feed > 0) {
3204 $query_strategy_part = "cat_id = '$feed'";
3205 } else {
3206 $query_strategy_part = "cat_id IS NULL";
3207 }
3208
3209 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3210
3211 } else {
3212 $tmp_result = db_query($link, "SELECT id
3213 FROM ttrss_feeds WHERE parent_feed = '$feed'
3214 ORDER BY cat_id,title");
3215
3216 $parent_ids = array();
3217
3218 if (db_num_rows($tmp_result) > 0) {
3219 while ($p = db_fetch_assoc($tmp_result)) {
3220 array_push($parent_ids, "feed_id = " . $p["id"]);
3221 }
3222
3223 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
3224 $feed, implode(" OR ", $parent_ids));
3225
3226 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3227 } else {
3228 $query_strategy_part = "feed_id = '$feed'";
3229 }
3230 }
3231 } else if ($feed == -1) { // starred virtual feed
3232 $query_strategy_part = "marked = true";
3233 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3234 } else if ($feed == -2) { // published virtual feed OR labels category
3235
3236 if (!$cat_view) {
3237 $query_strategy_part = "published = true";
3238 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3239 } else {
3240 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3241
3242 $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
3243
3244 $query_strategy_part = "ttrss_labels2.id = ttrss_user_labels2.label_id AND
3245 ttrss_user_labels2.article_id = ref_id";
3246
3247 }
3248
3249 } else if ($feed == -3) { // fresh virtual feed
3250 $query_strategy_part = "unread = true";
3251
3252 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid);
3253
3254 if (DB_TYPE == "pgsql") {
3255 $query_strategy_part .= " AND updated > NOW() - INTERVAL '$intl hour' ";
3256 } else {
3257 $query_strategy_part .= " AND updated > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
3258 }
3259
3260 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3261 } else if ($feed == -4) { // all articles virtual feed
3262 $query_strategy_part = "true";
3263 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3264 } else if ($feed <= -10) { // labels
3265 $label_id = -$feed - 11;
3266
3267 $query_strategy_part = "label_id = '$label_id' AND
3268 ttrss_labels2.id = ttrss_user_labels2.label_id AND
3269 ttrss_user_labels2.article_id = ref_id";
3270
3271 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3272 $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
3273
3274 } else {
3275 $query_strategy_part = "id > 0"; // dumb
3276 }
3277
3278 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
3279 $order_by = "updated";
3280 } else {
3281 $order_by = "updated DESC";
3282 }
3283
3284 if ($view_mode != "noscores") {
3285 $order_by = "score DESC, $order_by";
3286 }
3287
3288 if ($override_order) {
3289 $order_by = $override_order;
3290 }
3291
3292 $feed_title = "";
3293
3294 if ($search && $search_mode == "all_feeds") {
3295 $feed_title = __("Search results")." ($search)";
3296 } else if ($search && preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
3297 $feed_title = __("Search results")." ($search, $feed)";
3298 } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
3299 $feed_title = $feed;
3300 } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) != false && $feed >= 0) {
3301
3302 if ($cat_view) {
3303
3304 if ($feed != 0) {
3305 $result = db_query($link, "SELECT title FROM ttrss_feed_categories
3306 WHERE id = '$feed' AND owner_uid = $owner_uid");
3307 $feed_title = db_fetch_result($result, 0, "title");
3308 } else {
3309 $feed_title = __("Uncategorized");
3310 }
3311
3312 if ($search) {
3313 $feed_title = __("Searched for")." $search ($feed_title)";
3314 }
3315
3316 } else {
3317
3318 $result = db_query($link, "SELECT title,site_url,last_error FROM ttrss_feeds
3319 WHERE id = '$feed' AND owner_uid = $owner_uid");
3320
3321 $feed_title = db_fetch_result($result, 0, "title");
3322 $feed_site_url = db_fetch_result($result, 0, "site_url");
3323 $last_error = db_fetch_result($result, 0, "last_error");
3324
3325 if ($search) {
3326 $feed_title = __("Searched for") . " $search ($feed_title)";
3327 }
3328 }
3329
3330 } else if ($feed == -1) {
3331 $feed_title = __("Starred articles");
3332 if ($search) { $feed_title = __("Searched for") . " $search ($feed_title)"; }
3333 } else if ($feed == -2) {
3334 if (!$cat_view) {
3335 $feed_title = __("Published articles");
3336 if ($search) { $feed_title = __("Searched for") . " $search ($feed_title)"; }
3337 } else {
3338 $feed_title = __("Labels");
3339 }
3340 } else if ($feed == -3) {
3341 $feed_title = __("Fresh articles");
3342 if ($search) { $feed_title = __("Searched for") . " $search ($feed_title)"; }
3343 } else if ($feed == -4) {
3344 $feed_title = __("All articles");
3345 if ($search) { $feed_title = __("Searched for") . " $search ($feed_title)"; }
3346 } else if ($feed < -10) {
3347 $label_id = -$feed - 11;
3348 $result = db_query($link, "SELECT caption FROM ttrss_labels2
3349 WHERE id = '$label_id'");
3350 $feed_title = db_fetch_result($result, 0, "caption");
3351
3352 if ($search) {
3353 $feed_title = __("Searched for") . " $search ($feed_title)";
3354 }
3355 } else {
3356 $feed_title = "?";
3357 }
3358
3359 if ($feed < -10) error_reporting (0);
3360
3361 $content_query_part = "content as content_preview,";
3362
3363 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
3364
3365 if ($feed >= 0) {
3366 $feed_kind = "Feeds";
3367 } else {
3368 $feed_kind = "Labels";
3369 }
3370
3371 if ($limit_query_part) {
3372 $offset_query_part = "OFFSET $offset";
3373 }
3374
3375 if ($vfeed_query_part && get_pref($link, 'VFEED_GROUP_BY_FEED', $owner_uid)) {
3376 if (!$override_order) {
3377 $order_by = "ttrss_feeds.title, $order_by";
3378 }
3379
3380 // Special output for Fresh feed
3381
3382 /* if ($feed == -3) {
3383 $group_limit_part = "(select count(*) from
3384 ttrss_user_entries AS t1, ttrss_entries AS t2 where
3385 t1.ref_id = t2.id and t1.owner_uid = 2 and
3386 t1.feed_id = ttrss_user_entries.feed_id and
3387 t2.updated > ttrss_entries.updated) <= 5 AND";
3388 } */
3389 }
3390
3391 $query = "SELECT DISTINCT
3392 guid,
3393 ttrss_entries.id,ttrss_entries.title,
3394 updated,
3395 unread,feed_id,marked,published,link,last_read,
3396 ".SUBSTRING_FOR_DATE."(last_read,1,19) as last_read_noms,
3397 $vfeed_query_part
3398 $content_query_part
3399 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated_noms,
3400 author,score
3401 FROM
3402 ttrss_entries,ttrss_user_entries,ttrss_feeds$ext_tables_part
3403 WHERE
3404 $group_limit_part
3405 ttrss_feeds.hidden = false AND
3406 ttrss_user_entries.feed_id = ttrss_feeds.id AND
3407 ttrss_user_entries.ref_id = ttrss_entries.id AND
3408 ttrss_user_entries.owner_uid = '$owner_uid' AND
3409 $search_query_part
3410 $view_query_part
3411 $query_strategy_part ORDER BY $order_by
3412 $limit_query_part $offset_query_part";
3413
3414 if ($_GET["debug"]) print $query;
3415
3416 $result = db_query($link, $query);
3417
3418 } else {
3419 // browsing by tag
3420
3421 $feed_kind = "Tags";
3422
3423 $result = db_query($link, "SELECT
3424 guid,
3425 ttrss_entries.id as id,title,
3426 updated,
3427 unread,feed_id,
3428 marked,link,last_read,
3429 ".SUBSTRING_FOR_DATE."(last_read,1,19) as last_read_noms,
3430 $vfeed_query_part
3431 $content_query_part
3432 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated_noms,
3433 score
3434 FROM
3435 ttrss_entries,ttrss_user_entries,ttrss_tags
3436 WHERE
3437 ref_id = ttrss_entries.id AND
3438 ttrss_user_entries.owner_uid = '$owner_uid' AND
3439 post_int_id = int_id AND tag_name = '$feed' AND
3440 $view_query_part
3441 $search_query_part
3442 $query_strategy_part ORDER BY $order_by
3443 $limit_query_part");
3444 }
3445
3446 return array($result, $feed_title, $feed_site_url, $last_error);
3447
3448 }
3449
3450 function generate_syndicated_feed($link, $owner_uid, $feed, $is_cat,
3451 $limit, $search, $search_mode, $match_on) {
3452
3453 if (!$limit) $limit = 30;
3454
3455 $qfh_ret = queryFeedHeadlines($link, $feed,
3456 $limit, false, $is_cat, $search, $search_mode, $match_on, "updated DESC", 0,
3457 $owner_uid);
3458
3459 $result = $qfh_ret[0];
3460 $feed_title = htmlspecialchars($qfh_ret[1]);
3461 $feed_site_url = $qfh_ret[2];
3462 $last_error = $qfh_ret[3];
3463
3464 // if (!$feed_site_url) $feed_site_url = "http://localhost/";
3465
3466 print "<?xml version=\"1.0\" encoding=\"utf-8\"?>
3467 <?xml-stylesheet type=\"text/xsl\" href=\"rss.xsl\"?>
3468 <rss version=\"2.0\">
3469 <channel>
3470 <title>$feed_title</title>
3471 <link>$feed_site_url</link>
3472 <description>Feed generated by Tiny Tiny RSS</description>";
3473
3474 while ($line = db_fetch_assoc($result)) {
3475 print "<item>";
3476 print "<guid>" . htmlspecialchars($line["guid"]) . "</guid>";
3477 print "<link>" . htmlspecialchars($line["link"]) . "</link>";
3478
3479 $tags = get_article_tags($link, $line["id"], $owner_uid);
3480
3481 foreach ($tags as $tag) {
3482 print "<category>" . htmlspecialchars($tag) . "</category>";
3483 }
3484
3485 $rfc822_date = date('r', strtotime($line["updated"]));
3486
3487 print "<pubDate>$rfc822_date</pubDate>";
3488
3489 print "<title>" .
3490 htmlspecialchars($line["title"]) . "</title>";
3491
3492 print "<description><![CDATA[" .
3493 $line["content_preview"] . "]]></description>";
3494
3495 print "</item>";
3496 }
3497
3498 print "</channel></rss>";
3499
3500 }
3501
3502 function getCategoryTitle($link, $cat_id) {
3503
3504 if ($cat_id == -1) {
3505 return __("Special");
3506 } else if ($cat_id == -2) {
3507 return __("Labels");
3508 } else {
3509
3510 $result = db_query($link, "SELECT title FROM ttrss_feed_categories WHERE
3511 id = '$cat_id'");
3512
3513 if (db_num_rows($result) == 1) {
3514 return db_fetch_result($result, 0, "title");
3515 } else {
3516 return "Uncategorized";
3517 }
3518 }
3519 }
3520
3521 // http://ru2.php.net/strip-tags
3522
3523 function strip_tags_long($textstring, $allowed){
3524 while($textstring != strip_tags($textstring, $allowed))
3525 {
3526 while (strlen($textstring) != 0)
3527 {
3528 if (strlen($textstring) > 1024) {
3529 $otherlen = 1024;
3530 } else {
3531 $otherlen = strlen($textstring);
3532 }
3533 $temptext = strip_tags(substr($textstring,0,$otherlen), $allowed);
3534 $safetext .= $temptext;
3535 $textstring = substr_replace($textstring,'',0,$otherlen);
3536 }
3537 $textstring = $safetext;
3538 }
3539 return $textstring;
3540 }
3541
3542
3543 function sanitize_rss($link, $str, $force_strip_tags = false) {
3544 $res = $str;
3545
3546 if (get_pref($link, "STRIP_UNSAFE_TAGS") || $force_strip_tags) {
3547
3548 $res = strip_tags_long($res,
3549 "<p><a><i><em><b><strong><code><pre><blockquote><br><img><ul><ol><li>");
3550
3551 // $res = preg_replace("/\r\n|\n|\r/", "", $res);
3552 // $res = strip_tags_long($res, "<p><a><i><em><b><strong><blockquote><br><img><div><span>");
3553 }
3554
3555 if (get_pref($link, "STRIP_IMAGES")) {
3556
3557 $res = preg_replace('/<img[^>]+>/is', '', $res);
3558
3559 }
3560
3561 return $res;
3562 }
3563
3564 /**
3565 * Send by mail a digest of last articles.
3566 *
3567 * @param mixed $link The database connection.
3568 * @param integer $limit The maximum number of articles by digest.
3569 * @return boolean Return false if digests are not enabled.
3570 */
3571 function send_headlines_digests($link, $limit = 100) {
3572
3573 if (!DIGEST_ENABLE) return false;
3574
3575 $user_limit = DIGEST_EMAIL_LIMIT;
3576 $days = 1;
3577
3578 print "Sending digests, batch of max $user_limit users, days = $days, headline limit = $limit\n\n";
3579
3580 if (DB_TYPE == "pgsql") {
3581 $interval_query = "last_digest_sent < NOW() - INTERVAL '$days days'";
3582 } else if (DB_TYPE == "mysql") {
3583 $interval_query = "last_digest_sent < DATE_SUB(NOW(), INTERVAL $days DAY)";
3584 }
3585
3586 $result = db_query($link, "SELECT id,email FROM ttrss_users
3587 WHERE email != '' AND (last_digest_sent IS NULL OR $interval_query)");
3588
3589 while ($line = db_fetch_assoc($result)) {
3590
3591 if (get_pref($link, 'DIGEST_ENABLE', $line['id'], false)) {
3592 print "Sending digest for UID:" . $line['id'] . " - " . $line["email"] . " ... ";
3593
3594 $do_catchup = get_pref($link, 'DIGEST_CATCHUP', $line['id'], false);
3595
3596 $tuple = prepare_headlines_digest($link, $line["id"], $days, $limit);
3597 $digest = $tuple[0];
3598 $headlines_count = $tuple[1];
3599 $affected_ids = $tuple[2];
3600 $digest_text = $tuple[3];
3601
3602 if ($headlines_count > 0) {
3603
3604 $mail = new PHPMailer();
3605
3606 $mail->PluginDir = "phpmailer/";
3607 $mail->SetLanguage("en", "phpmailer/language/");
3608
3609 $mail->CharSet = "UTF-8";
3610
3611 $mail->From = DIGEST_FROM_ADDRESS;
3612 $mail->FromName = DIGEST_FROM_NAME;
3613 $mail->AddAddress($line["email"], $line["login"]);
3614
3615 if (DIGEST_SMTP_HOST) {
3616 $mail->Host = DIGEST_SMTP_HOST;
3617 $mail->Mailer = "smtp";
3618 $mail->SMTPAuth = DIGEST_SMTP_LOGIN != '';
3619 $mail->Username = DIGEST_SMTP_LOGIN;
3620 $mail->Password = DIGEST_SMTP_PASSWORD;
3621 }
3622
3623 $mail->IsHTML(true);
3624 $mail->Subject = DIGEST_SUBJECT;
3625 $mail->Body = $digest;
3626 $mail->AltBody = $digest_text;
3627
3628 $rc = $mail->Send();
3629
3630 if (!$rc) print "ERROR: " . $mail->ErrorInfo;
3631
3632 print "RC=$rc\n";
3633
3634 if ($rc && $do_catchup) {
3635 print "Marking affected articles as read...\n";
3636 catchupArticlesById($link, $affected_ids, 0, $line["id"]);
3637 }
3638
3639 db_query($link, "UPDATE ttrss_users SET last_digest_sent = NOW()
3640 WHERE id = " . $line["id"]);
3641 } else {
3642 print "No headlines\n";
3643 }
3644 }
3645 }
3646
3647 print "All done.\n";
3648
3649 }
3650
3651 function prepare_headlines_digest($link, $user_id, $days = 1, $limit = 100) {
3652
3653 require_once "MiniTemplator.class.php";
3654
3655 $tpl = new MiniTemplator;
3656 $tpl_t = new MiniTemplator;
3657
3658 $tpl->readTemplateFromFile("templates/digest_template_html.txt");
3659 $tpl_t->readTemplateFromFile("templates/digest_template.txt");
3660
3661 $tpl->setVariable('CUR_DATE', date('Y/m/d'));
3662 $tpl->setVariable('CUR_TIME', date('G:i'));
3663
3664 $tpl_t->setVariable('CUR_DATE', date('Y/m/d'));
3665 $tpl_t->setVariable('CUR_TIME', date('G:i'));
3666
3667 $affected_ids = array();
3668
3669 if (DB_TYPE == "pgsql") {
3670 $interval_query = "ttrss_entries.date_entered > NOW() - INTERVAL '$days days'";
3671 } else if (DB_TYPE == "mysql") {
3672 $interval_query = "ttrss_entries.date_entered > DATE_SUB(NOW(), INTERVAL $days DAY)";
3673 }
3674
3675 $result = db_query($link, "SELECT ttrss_entries.title,
3676 ttrss_feeds.title AS feed_title,
3677 date_entered,
3678 ttrss_user_entries.ref_id,
3679 link,
3680 SUBSTRING(content, 1, 120) AS excerpt,
3681 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
3682 FROM
3683 ttrss_user_entries,ttrss_entries,ttrss_feeds
3684 WHERE
3685 ref_id = ttrss_entries.id AND feed_id = ttrss_feeds.id
3686 AND include_in_digest = true
3687 AND $interval_query
3688 AND hidden = false
3689 AND ttrss_user_entries.owner_uid = $user_id
3690 AND unread = true
3691 ORDER BY ttrss_feeds.title, date_entered DESC
3692 LIMIT $limit");
3693
3694 $cur_feed_title = "";
3695
3696 $headlines_count = db_num_rows($result);
3697
3698 $headlines = array();
3699
3700 while ($line = db_fetch_assoc($result)) {
3701 array_push($headlines, $line);
3702 }
3703
3704 for ($i = 0; $i < sizeof($headlines); $i++) {
3705
3706 $line = $headlines[$i];
3707
3708 array_push($affected_ids, $line["ref_id"]);
3709
3710 $updated = smart_date_time(strtotime($line["last_updated"]));
3711
3712 $tpl->setVariable('FEED_TITLE', $line["feed_title"]);
3713 $tpl->setVariable('ARTICLE_TITLE', $line["title"]);
3714 $tpl->setVariable('ARTICLE_LINK', $line["link"]);
3715 $tpl->setVariable('ARTICLE_UPDATED', $updated);
3716 $tpl->setVariable('ARTICLE_EXCERPT',
3717 truncate_string(strip_tags($line["excerpt"]), 100));
3718
3719 $tpl->addBlock('article');
3720
3721 $tpl_t->setVariable('FEED_TITLE', $line["feed_title"]);
3722 $tpl_t->setVariable('ARTICLE_TITLE', $line["title"]);
3723 $tpl_t->setVariable('ARTICLE_LINK', $line["link"]);
3724 $tpl_t->setVariable('ARTICLE_UPDATED', $updated);
3725 // $tpl_t->setVariable('ARTICLE_EXCERPT',
3726 // truncate_string(strip_tags($line["excerpt"]), 100));
3727
3728 $tpl_t->addBlock('article');
3729
3730 if ($headlines[$i]['feed_title'] != $headlines[$i+1]['feed_title']) {
3731 $tpl->addBlock('feed');
3732 $tpl_t->addBlock('feed');
3733 }
3734
3735 }
3736
3737 $tpl->addBlock('digest');
3738 $tpl->generateOutputToString($tmp);
3739
3740 $tpl_t->addBlock('digest');
3741 $tpl_t->generateOutputToString($tmp_t);
3742
3743 return array($tmp, $headlines_count, $affected_ids, $tmp_t);
3744 }
3745
3746 function check_for_update($link, $brief_fmt = true) {
3747 $releases_feed = "http://tt-rss.org/releases.rss";
3748
3749 if (!CHECK_FOR_NEW_VERSION || $_SESSION["access_level"] < 10) {
3750 return;
3751 }
3752
3753 error_reporting(0);
3754 if (ENABLE_SIMPLEPIE) {
3755 $rss = new SimplePie();
3756 $rss->set_useragent(SIMPLEPIE_USERAGENT . MAGPIE_USER_AGENT_EXT);
3757 // $rss->set_timeout(MAGPIE_FETCH_TIME_OUT);
3758 $rss->set_feed_url($fetch_url);
3759 $rss->set_output_encoding('UTF-8');
3760 $rss->init();
3761 } else {
3762 $rss = fetch_rss($releases_feed);
3763 }
3764 error_reporting (DEFAULT_ERROR_LEVEL);
3765
3766 if ($rss) {
3767
3768 if (ENABLE_SIMPLEPIE) {
3769 $items = $rss->get_items();
3770 } else {
3771 $items = $rss->items;
3772
3773 if (!$items || !is_array($items)) $items = $rss->entries;
3774 if (!$items || !is_array($items)) $items = $rss;
3775 }
3776
3777 if (!is_array($items) || count($items) == 0) {
3778 return;
3779 }
3780
3781 $latest_item = $items[0];
3782
3783 if (ENABLE_SIMPLEPIE) {
3784 $last_title = $latest_item->get_title();
3785 } else {
3786 $last_title = $latest_item["title"];
3787 }
3788
3789 $latest_version = trim(preg_replace("/(Milestone)|(completed)/", "", $last_title));
3790
3791 if (ENABLE_SIMPLEPIE) {
3792 $release_url = sanitize_rss($link, $latest_item->get_link());
3793 $content = sanitize_rss($link, $latest_item->get_description());
3794 } else {
3795 $release_url = sanitize_rss($link, $latest_item["link"]);
3796 $content = sanitize_rss($link, $latest_item["description"]);
3797 }
3798
3799 if (version_compare(VERSION, $latest_version) == -1) {
3800 if ($brief_fmt) {
3801 return format_notice("<a href=\"javascript:showBlockElement('milestoneDetails')\">
3802 New version of Tiny-Tiny RSS ($latest_version) is available (click for details)</a>
3803 <div id=\"milestoneDetails\">$content</div>");
3804 } else {
3805 return "New version of Tiny-Tiny RSS ($latest_version) is available:
3806 <div class='milestoneDetails'>$content</div>
3807 Visit <a target=\"_blank\" href=\"http://tt-rss.org/\">official site</a> for
3808 download and update information.";
3809 }
3810
3811 }
3812 }
3813 }
3814
3815 function markArticlesById($link, $ids, $cmode) {
3816
3817 $tmp_ids = array();
3818
3819 foreach ($ids as $id) {
3820 array_push($tmp_ids, "ref_id = '$id'");
3821 }
3822
3823 $ids_qpart = join(" OR ", $tmp_ids);
3824
3825 if ($cmode == 0) {
3826 db_query($link, "UPDATE ttrss_user_entries SET
3827 marked = false,last_read = NOW()
3828 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3829 } else if ($cmode == 1) {
3830 db_query($link, "UPDATE ttrss_user_entries SET
3831 marked = true
3832 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3833 } else {
3834 db_query($link, "UPDATE ttrss_user_entries SET
3835 marked = NOT marked,last_read = NOW()
3836 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3837 }
3838 }
3839
3840 function publishArticlesById($link, $ids, $cmode) {
3841
3842 $tmp_ids = array();
3843
3844 foreach ($ids as $id) {
3845 array_push($tmp_ids, "ref_id = '$id'");
3846 }
3847
3848 $ids_qpart = join(" OR ", $tmp_ids);
3849
3850 if ($cmode == 0) {
3851 db_query($link, "UPDATE ttrss_user_entries SET
3852 published = false,last_read = NOW()
3853 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3854 } else if ($cmode == 1) {
3855 db_query($link, "UPDATE ttrss_user_entries SET
3856 published = true
3857 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3858 } else {
3859 db_query($link, "UPDATE ttrss_user_entries SET
3860 published = NOT published,last_read = NOW()
3861 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3862 }
3863 }
3864
3865 function catchupArticlesById($link, $ids, $cmode, $owner_uid = false) {
3866
3867 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
3868
3869 $tmp_ids = array();
3870
3871 foreach ($ids as $id) {
3872 array_push($tmp_ids, "ref_id = '$id'");
3873 }
3874
3875 $ids_qpart = join(" OR ", $tmp_ids);
3876
3877 if ($cmode == 0) {
3878 db_query($link, "UPDATE ttrss_user_entries SET
3879 unread = false,last_read = NOW()
3880 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
3881 } else if ($cmode == 1) {
3882 db_query($link, "UPDATE ttrss_user_entries SET
3883 unread = true
3884 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
3885 } else {
3886 db_query($link, "UPDATE ttrss_user_entries SET
3887 unread = NOT unread,last_read = NOW()
3888 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
3889 }
3890
3891 /* update ccache */
3892
3893 $result = db_query($link, "SELECT DISTINCT feed_id FROM ttrss_user_entries
3894 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
3895
3896 while ($line = db_fetch_assoc($result)) {
3897 ccache_update($link, $line["feed_id"], $owner_uid);
3898 }
3899 }
3900
3901 function catchupArticleById($link, $id, $cmode) {
3902
3903 if ($cmode == 0) {
3904 db_query($link, "UPDATE ttrss_user_entries SET
3905 unread = false,last_read = NOW()
3906 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
3907 } else if ($cmode == 1) {
3908 db_query($link, "UPDATE ttrss_user_entries SET
3909 unread = true
3910 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
3911 } else {
3912 db_query($link, "UPDATE ttrss_user_entries SET
3913 unread = NOT unread,last_read = NOW()
3914 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
3915 }
3916 }
3917
3918 function make_guid_from_title($title) {
3919 return preg_replace("/[ \"\',.:;]/", "-",
3920 mb_strtolower(strip_tags($title), 'utf-8'));
3921 }
3922
3923 function print_headline_subtoolbar($link, $feed_site_url, $feed_title,
3924 $bottom = false, $rtl_content = false, $feed_id = 0,
3925 $is_cat = false, $search = false, $match_on = false,
3926 $search_mode = false, $offset = 0, $limit = 0,
3927 $dashboard_menu = 0, $disable_feed = 0, $feed_small_icon = 0) {
3928
3929 $user_page_offset = $offset + 1;
3930
3931 if (!$bottom) {
3932 $class = "headlinesSubToolbar";
3933 $tid = "headlineActionsTop";
3934 } else {
3935 $class = "headlinesSubToolbar";
3936 $tid = "headlineActionsBottom";
3937 }
3938
3939 print "<nobr><table class=\"$class\" id=\"$tid\"
3940 width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tr>";
3941
3942 if ($rtl_content) {
3943 $rtl_cpart = "RTL";
3944 } else {
3945 $rtl_cpart = "";
3946 }
3947
3948 $page_prev_link = "javascript:viewFeedGoPage(-1)";
3949 $page_next_link = "javascript:viewFeedGoPage(1)";
3950 $page_first_link = "javascript:viewFeedGoPage(0)";
3951
3952 $catchup_page_link = "javascript:catchupPage()";
3953 $catchup_feed_link = "javascript:catchupCurrentFeed()";
3954 $catchup_sel_link = "javascript:catchupSelection()";
3955
3956 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
3957
3958 $sel_all_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, '', true)";
3959 $sel_unread_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true)";
3960 $sel_none_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false)";
3961 $sel_inv_link = "javascript:invertHeadlineSelection()";
3962
3963 $tog_unread_link = "javascript:selectionToggleUnread()";
3964 $tog_marked_link = "javascript:selectionToggleMarked()";
3965 $tog_published_link = "javascript:selectionTogglePublished()";
3966
3967 } else {
3968
3969 $sel_all_link = "javascript:cdmSelectArticles('all')";
3970 $sel_unread_link = "javascript:cdmSelectArticles('unread')";
3971 $sel_none_link = "javascript:cdmSelectArticles('none')";
3972
3973 $sel_inv_link = "javascript:invertHeadlineSelection()";
3974
3975 $tog_unread_link = "javascript:selectionToggleUnread(true)";
3976 $tog_marked_link = "javascript:selectionToggleMarked(true)";
3977 $tog_published_link = "javascript:selectionTogglePublished(true)";
3978
3979 }
3980
3981 print "<td class=\"headlineActions$rtl_cpart\">";
3982
3983
3984 /* print"<ul class=\"headlineDropdownMenu\">
3985 <li class=\"top2\">
3986 ".__('Select:')."
3987 <a href=\"$sel_all_link\">".__('All')."</a>,
3988 <a href=\"$sel_unread_link\">".__('Unread')."</a>,
3989 <a href=\"$sel_inv_link\">".__('Invert')."</a>,
3990 <a href=\"$sel_none_link\">".__('None')."</a></li>
3991 <li class=\"vsep\">&nbsp;</li>
3992 <li class=\"top\">".__('Actions...')."<ul>
3993 <li><span class=\"insensitive\">".__('Selection toggle:')."</span></li>
3994 <li onclick=\"$tog_unread_link\">&nbsp;&nbsp;".__('Unread')."</li>
3995 <li onclick=\"$tog_marked_link\">&nbsp;&nbsp;".__('Starred')."</li>
3996 <li onclick=\"$tog_published_link\">&nbsp;&nbsp;".__('Published')."</li>
3997 <!-- <li><span class=\"insensitive\">--------</span></li> -->
3998 <li><span class=\"insensitive\">".__('Mark as read:')."</span></li>
3999 <li onclick=\"$catchup_sel_link\">&nbsp;&nbsp;".__('Selection')."</li>";
4000
4001 print "<li onclick=\"$catchup_feed_link\">&nbsp;&nbsp;".__('Entire feed')."</li>";
4002
4003 //print "<li><span class=\"insensitive\">--------</span></li>";
4004 print "<li><span class=\"insensitive\">".__('Assign label:')."</span></li>";
4005
4006 $result = db_query($link, "SELECT id, caption FROM ttrss_labels2 WHERE
4007 owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
4008
4009 while ($line = db_fetch_assoc($result)) {
4010
4011 $label_id = $line["id"];
4012 $label_caption = $line["caption"];
4013
4014 if ($feed_id < -10 && $feed_id == -11-$label_id) {
4015 print "<li onclick=\"javascript:selectionRemoveLabel($label_id)\">
4016 &nbsp;&nbsp;$label_caption ".__('(remove)')."</li>";
4017 } else {
4018 print "<li onclick=\"javascript:selectionAssignLabel($label_id)\">
4019 &nbsp;&nbsp;$label_caption</li>";
4020 }
4021 }
4022
4023 print "</ul></li></ul>"; */
4024
4025 print __('Select:')."
4026 <a href=\"$sel_all_link\">".__('All')."</a>,
4027 <a href=\"$sel_unread_link\">".__('Unread')."</a>,
4028 <a href=\"$sel_inv_link\">".__('Invert')."</a>,
4029 <a href=\"$sel_none_link\">".__('None')."</a></li>";
4030
4031 print "&nbsp;&nbsp;";
4032
4033 print "<span
4034 onmouseover=\"enable_selection(false)\"
4035 onmouseout=\"enable_selection(true)\"
4036 onclick=\"toggleHeadlineActions()\" id=\"headlineActionsDrop\">".
4037 __("Actions...") . "&nbsp;&nbsp;<img src=\"images/down_arrow.png\">
4038 </span>";
4039
4040 print "<ul id=\"headlineActionsBody\" style=\"display : none\">";
4041
4042 print "<li><span class=\"insensitive\">".__('Selection toggle:')."</span></li>
4043 <li onclick=\"$tog_unread_link\">&nbsp;&nbsp;".__('Unread')."</li>
4044 <li onclick=\"$tog_marked_link\">&nbsp;&nbsp;".__('Starred')."</li>
4045 <li onclick=\"$tog_published_link\">&nbsp;&nbsp;".__('Published')."</li>
4046 <!-- <li><span class=\"insensitive\">--------</span></li> -->
4047 <li><span class=\"insensitive\">".__('Mark as read:')."</span></li>
4048 <li onclick=\"$catchup_sel_link\">&nbsp;&nbsp;".__('Selection')."</li>";
4049
4050 print "<li onclick=\"$catchup_feed_link\">&nbsp;&nbsp;".__('Entire feed').
4051 "</li>";
4052
4053 //print "<li><span class=\"insensitive\">--------</span></li>";
4054 print "<li><span class=\"insensitive\">".__('Assign label:')."</span></li>";
4055
4056 $result = db_query($link, "SELECT id, caption FROM ttrss_labels2 WHERE
4057 owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
4058
4059 while ($line = db_fetch_assoc($result)) {
4060
4061 $label_id = $line["id"];
4062 $label_caption = $line["caption"];
4063
4064 if ($feed_id < -10 && $feed_id == -11-$label_id) {
4065 print "<li onclick=\"javascript:selectionRemoveLabel($label_id)\">
4066 &nbsp;&nbsp;$label_caption ".__('(remove)')."</li>";
4067 } else {
4068 print "<li onclick=\"javascript:selectionAssignLabel($label_id)\">
4069 &nbsp;&nbsp;$label_caption</li>";
4070 }
4071 }
4072
4073 print "</ul>";
4074
4075 print "</td>";
4076
4077 print "<td class=\"headlineTitle$rtl_cpart\">";
4078
4079 print "<span id=\"subtoolbar_search\"
4080 style=\"display : none\"><input
4081 id=\"subtoolbar_search_box\"
4082 onblur=\"javascript:enableHotkeys();\"
4083 onfocus=\"javascript:disableHotkeys();\"
4084 onchange=\"subtoolbarSearch()\"
4085 onkeyup=\"subtoolbarSearch()\" type=\"search\"></span>";
4086
4087 print "<span id=\"subtoolbar_ftitle\">";
4088
4089 if ($feed_site_url) {
4090 if (!$bottom) {
4091 $target = "target=\"_blank\"";
4092 }
4093 print "<a $target href=\"$feed_site_url\">".
4094 truncate_string($feed_title,30)."</a>";
4095 } else {
4096 print $feed_title;
4097 }
4098
4099 if ($search) {
4100 $search_q = "&q=$search&m=$match_on&smode=$search_mode";
4101 }
4102
4103 if ($user_page_offset > 1) {
4104 print " [$user_page_offset] ";
4105 }
4106
4107 if (!$bottom && !$disable_feed) {
4108 print "
4109 <a target=\"_blank\"
4110 href=\"backend.php?op=rss&id=$feed_id&is_cat=$is_cat$search_q\">
4111 <img class=\"noborder\"
4112 alt=\"".__('Generated feed')."\" src=\"images/feed-icon-12x12.png\">
4113 </a>";
4114 } else if ($feed_small_icon) {
4115 print "<img class=\"noborder\" alt=\"\" src=\"images/$feed_small_icon\">";
4116 }
4117
4118 print "</span>";
4119
4120 print "</td>";
4121 print "</tr></table></nobr>";
4122
4123 }
4124
4125 function printCategoryHeader($link, $cat_id, $hidden = false, $can_browse = true) {
4126
4127 $tmp_category = getCategoryTitle($link, $cat_id);
4128
4129 if ($cat_id > 0) {
4130 $cat_unread = ccache_find($link, $cat_id, $_SESSION["uid"], true);
4131 } else if ($cat_id == 0 || $cat_id == -2) {
4132 $cat_unread = getCategoryUnread($link, $cat_id);
4133 }
4134
4135 if ($hidden) {
4136 $holder_style = "display:none;";
4137 $ellipsis = "…";
4138 } else {
4139 $holder_style = "";
4140 $ellipsis = "";
4141 }
4142
4143 $catctr_class = ($cat_unread > 0) ? "catCtrHasUnread" : "catCtrNoUnread";
4144
4145 if ($can_browse) {
4146 $browse_cat_link = "onclick=\"javascript:viewCategory($cat_id)\"";
4147 $inner_title_class = "catTitle";
4148 } else {
4149 $browse_cat_link = "";
4150 $inner_title_class = "catTitleNL";
4151 }
4152
4153 $cat_class = "feedCat";
4154
4155 print "<li class=\"$cat_class\" id=\"FCAT-$cat_id\">
4156 <img onclick=\"toggleCollapseCat($cat_id)\" class=\"catCollapse\"
4157 title=\"".__('Click to collapse category')."\"
4158 src=\"images/cat-collapse.png\"><span class=\"$inner_title_class\"
4159 id=\"FCATN-$cat_id\" $browse_cat_link
4160 \">$tmp_category</span>";
4161
4162 print "<span id=\"FCAP-$cat_id\">";
4163
4164 print " <span id=\"FCATCTR-$cat_id\"
4165 class=\"$catctr_class\">($cat_unread)</span> $ellipsis";
4166
4167 print "</span>";
4168
4169 //print "</li>";
4170
4171 print "<ul class=\"feedCatList\" id=\"FCATLIST-$cat_id\" style='$holder_style'>";
4172
4173 }
4174
4175 function outputFeedList($link, $tags = false) {
4176
4177 print "<ul class=\"feedList\" id=\"feedList\">";
4178
4179 $owner_uid = $_SESSION["uid"];
4180
4181 /* virtual feeds */
4182
4183 if (get_pref($link, 'ENABLE_FEED_CATS')) {
4184
4185 if ($_COOKIE["ttrss_vf_vclps"] == 1) {
4186 $cat_hidden = true;
4187 } else {
4188 $cat_hidden = false;
4189 }
4190
4191 printCategoryHeader($link, -1, $cat_hidden, false);
4192 }
4193
4194 $num_starred = getFeedUnread($link, -1);
4195 $num_published = getFeedUnread($link, -2);
4196 $num_fresh = getFeedUnread($link, -3);
4197 $num_total = getFeedUnread($link, -4);
4198
4199 $class = "virt";
4200
4201 if ($num_total > 0) $class .= "Unread";
4202
4203 printFeedEntry(-4, $class, __("All articles"), $num_total,
4204 "images/tag.png", $link);
4205
4206 $class = "virt";
4207
4208 if ($num_fresh > 0) $class .= "Unread";
4209
4210 printFeedEntry(-3, $class, __("Fresh articles"), $num_fresh,
4211 "images/fresh.png", $link);
4212
4213 $class = "virt";
4214
4215 if ($num_starred > 0) $class .= "Unread";
4216
4217 $is_ie = (strpos($_SESSION["client.userAgent"], "MSIE") !== false);
4218
4219 if ($is_ie) {
4220 $mark_img_ext = "gif";
4221 } else {
4222 $mark_img_ext = "png";
4223 }
4224
4225 printFeedEntry(-1, $class, __("Starred articles"), $num_starred,
4226 "images/mark_set.$mark_img_ext", $link);
4227
4228 $class = "virt";
4229
4230 if ($num_published > 0) $class .= "Unread";
4231
4232 printFeedEntry(-2, $class, __("Published articles"), $num_published,
4233 "images/pub_set.gif", $link);
4234
4235 if (get_pref($link, 'ENABLE_FEED_CATS')) {
4236 print "</ul></li>";
4237 }
4238
4239 if (!$tags) {
4240
4241
4242 $result = db_query($link, "SELECT id,caption FROM
4243 ttrss_labels2 WHERE owner_uid = '$owner_uid' ORDER by caption");
4244
4245 if (db_num_rows($result) > 0) {
4246 if (get_pref($link, 'ENABLE_FEED_CATS')) {
4247
4248 if ($_COOKIE["ttrss_vf_lclps"] == 1) {
4249 $cat_hidden = true;
4250 } else {
4251 $cat_hidden = false;
4252 }
4253
4254 printCategoryHeader($link, -2, $cat_hidden, true);
4255
4256 } else {
4257 print "<li><hr></li>";
4258 }
4259 }
4260
4261 while ($line = db_fetch_assoc($result)) {
4262
4263 $label_id = -$line['id'] - 11;
4264 $count = getFeedUnread($link, $label_id);
4265
4266 $class = "label";
4267
4268 if ($count > 0) {
4269 $class .= "Unread";
4270 }
4271
4272 printFeedEntry($label_id,
4273 $class, $line["caption"],
4274 $count, "images/label.png", $link);
4275
4276 }
4277
4278 if (db_num_rows($result) > 0) {
4279 if (get_pref($link, 'ENABLE_FEED_CATS')) {
4280 print "</ul>";
4281 }
4282 }
4283
4284
4285 if (!get_pref($link, 'ENABLE_FEED_CATS')) {
4286 print "<li><hr></li>";
4287 }
4288
4289 if (get_pref($link, 'ENABLE_FEED_CATS')) {
4290 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
4291 $order_by_qpart = "order_id,category,unread DESC,title";
4292 } else {
4293 $order_by_qpart = "order_id,category,title";
4294 }
4295 } else {
4296 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
4297 $order_by_qpart = "unread DESC,title";
4298 } else {
4299 $order_by_qpart = "title";
4300 }
4301 }
4302
4303 $age_qpart = getMaxAgeSubquery();
4304
4305 $query = "SELECT ttrss_feeds.*,
4306 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated_noms,
4307 cat_id,last_error,
4308 ttrss_feed_categories.title AS category,
4309 ttrss_feed_categories.collapsed,
4310 value AS unread
4311 FROM ttrss_feeds LEFT JOIN ttrss_feed_categories
4312 ON (ttrss_feed_categories.id = cat_id)
4313 LEFT JOIN ttrss_counters_cache
4314 ON
4315 (ttrss_feeds.id = feed_id)
4316 WHERE
4317 ttrss_feeds.hidden = false AND
4318 ttrss_feeds.owner_uid = '$owner_uid' AND parent_feed IS NULL
4319 ORDER BY $order_by_qpart";
4320
4321 $result = db_query($link, $query);
4322
4323 $actid = $_GET["actid"];
4324
4325 /* real feeds */
4326
4327 $lnum = 0;
4328
4329 $total_unread = 0;
4330
4331 $category = "";
4332
4333 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
4334
4335 while ($line = db_fetch_assoc($result)) {
4336
4337 $feed = trim($line["title"]);
4338
4339 if (!$feed) $feed = "[Untitled]";
4340
4341 $feed_id = $line["id"];
4342 $unread = $line["unread"];
4343
4344 $subop = $_GET["subop"];
4345
4346 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
4347 $last_updated = smart_date_time(strtotime($line["last_updated_noms"]));
4348 } else {
4349 $last_updated = date($short_date, strtotime($line["last_updated_noms"]));
4350 }
4351
4352 $rtl_content = sql_bool_to_bool($line["rtl_content"]);
4353
4354 if ($rtl_content) {
4355 $rtl_tag = "dir=\"RTL\"";
4356 } else {
4357 $rtl_tag = "";
4358 }
4359
4360 $tmp_result = db_query($link,
4361 "SELECT SUM(value) AS unread FROM ttrss_feeds, ttrss_counters_cache
4362 WHERE parent_feed = '$feed_id' AND feed_id = id");
4363
4364 $unread += db_fetch_result($tmp_result, 0, "unread");
4365
4366 $cat_id = $line["cat_id"];
4367
4368 $tmp_category = $line["category"];
4369
4370 if (!$tmp_category) {
4371 $tmp_category = __("Uncategorized");
4372 }
4373
4374 // $class = ($lnum % 2) ? "even" : "odd";
4375
4376 if ($line["last_error"]) {
4377 $class = "error";
4378 } else {
4379 $class = "feed";
4380 }
4381
4382 if ($unread > 0) $class .= "Unread";
4383
4384 if ($actid == $feed_id) {
4385 $class .= "Selected";
4386 }
4387
4388 $total_unread += $unread;
4389
4390 if ($category != $tmp_category && get_pref($link, 'ENABLE_FEED_CATS')) {
4391
4392 if ($category) {
4393 print "</ul></li>";
4394 }
4395
4396 $category = $tmp_category;
4397
4398 $collapsed = sql_bool_to_bool($line["collapsed"]);
4399
4400 // workaround for NULL category
4401 if ($category == __("Uncategorized")) {
4402 if ($_COOKIE["ttrss_vf_uclps"] == 1) {
4403 $collapsed = "t";
4404 }
4405 }
4406
4407 $cat_id = sprintf("%d", $cat_id);
4408
4409 printCategoryHeader($link, $cat_id, $collapsed, true);
4410
4411 }
4412
4413 printFeedEntry($feed_id, $class, $feed, $unread,
4414 ICONS_URL."/$feed_id.ico", $link, $rtl_content,
4415 $last_updated, $line["last_error"]);
4416
4417 ++$lnum;
4418 }
4419
4420 if (db_num_rows($result) == 0) {
4421 print "<li>".__('No feeds to display.')."</li>";
4422 }
4423
4424 } else {
4425
4426 // tags
4427
4428 /* $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
4429 FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
4430 post_int_id = ttrss_user_entries.int_id AND
4431 unread = true AND ref_id = ttrss_entries.id
4432 AND ttrss_tags.owner_uid = '$owner_uid' GROUP BY tag_name
4433 UNION
4434 select tag_name,0 as count FROM ttrss_tags WHERE owner_uid = '$owner_uid'
4435 ORDER BY tag_name"); */
4436
4437 if (get_pref($link, 'ENABLE_FEED_CATS')) {
4438 print "<li class=\"feedCat\">".__('Tags')."</li>";
4439 print "<ul class=\"feedCatList\">";
4440 }
4441
4442 $age_qpart = getMaxAgeSubquery();
4443
4444 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
4445 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
4446 AND ref_id = id AND $age_qpart
4447 AND unread = true)) AS count FROM ttrss_tags
4448 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name
4449 ORDER BY count DESC LIMIT 50");
4450
4451 $tags = array();
4452
4453 while ($line = db_fetch_assoc($result)) {
4454 $tags[$line["tag_name"]] += $line["count"];
4455 }
4456
4457 foreach (array_keys($tags) as $tag) {
4458
4459 $unread = $tags[$tag];
4460
4461 $class = "tag";
4462
4463 if ($unread > 0) {
4464 $class .= "Unread";
4465 }
4466
4467 printFeedEntry($tag, $class, $tag, $unread, "images/tag.png", $link);
4468
4469 }
4470
4471 if (db_num_rows($result) == 0) {
4472 print "<li>No tags to display.</li>";
4473 }
4474
4475 if (get_pref($link, 'ENABLE_FEED_CATS')) {
4476 print "</ul>";
4477 }
4478
4479 }
4480
4481 print "</ul>";
4482
4483 }
4484
4485 function get_article_tags($link, $id, $owner_uid = 0) {
4486
4487 $a_id = db_escape_string($id);
4488
4489 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
4490
4491 $tmp_result = db_query($link, "SELECT DISTINCT tag_name,
4492 owner_uid as owner FROM
4493 ttrss_tags WHERE post_int_id = (SELECT int_id FROM ttrss_user_entries WHERE
4494 ref_id = '$a_id' AND owner_uid = '$owner_uid' LIMIT 1) ORDER BY tag_name");
4495
4496 $tags = array();
4497
4498 while ($tmp_line = db_fetch_assoc($tmp_result)) {
4499 array_push($tags, $tmp_line["tag_name"]);
4500 }
4501
4502 return $tags;
4503 }
4504
4505 function trim_value(&$value) {
4506 $value = trim($value);
4507 }
4508
4509 function trim_array($array) {
4510 $tmp = $array;
4511 array_walk($tmp, 'trim_value');
4512 return $tmp;
4513 }
4514
4515 function tag_is_valid($tag) {
4516 if ($tag == '') return false;
4517 if (preg_match("/^[0-9]*$/", $tag)) return false;
4518
4519 if (function_exists('iconv')) {
4520 $tag = iconv("utf-8", "utf-8", $tag);
4521 }
4522
4523 if (!$tag) return false;
4524
4525 return true;
4526 }
4527
4528 function render_login_form($link, $mobile = false) {
4529 if (!$mobile) {
4530 require_once "login_form.php";
4531 } else {
4532 require_once "mobile/login_form.php";
4533 }
4534 }
4535
4536 // from http://developer.apple.com/internet/safari/faq.html
4537 function no_cache_incantation() {
4538 header("Expires: Mon, 22 Dec 1980 00:00:00 GMT"); // Happy birthday to me :)
4539 header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified
4540 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); // HTTP/1.1
4541 header("Cache-Control: post-check=0, pre-check=0", false);
4542 header("Pragma: no-cache"); // HTTP/1.0
4543 }
4544
4545 function format_warning($msg, $id = "") {
4546 return "<div class=\"warning\" id=\"$id\">
4547 <img src=\"images/sign_excl.gif\">$msg</div>";
4548 }
4549
4550 function format_notice($msg) {
4551 return "<div class=\"notice\">
4552 <img src=\"images/sign_info.gif\">$msg</div>";
4553 }
4554
4555 function format_error($msg) {
4556 return "<div class=\"error\">
4557 <img src=\"images/sign_excl.gif\">$msg</div>";
4558 }
4559
4560 function print_notice($msg) {
4561 return print format_notice($msg);
4562 }
4563
4564 function print_warning($msg) {
4565 return print format_warning($msg);
4566 }
4567
4568 function print_error($msg) {
4569 return print format_error($msg);
4570 }
4571
4572
4573 function T_sprintf() {
4574 $args = func_get_args();
4575 return vsprintf(__(array_shift($args)), $args);
4576 }
4577
4578 function outputArticleXML($link, $id, $feed_id, $mark_as_read = true,
4579 $zoom_mode = false) {
4580
4581 /* we can figure out feed_id from article id anyway, why do we
4582 * pass feed_id here? */
4583
4584 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
4585 WHERE ref_id = '$id'");
4586
4587 $feed_id = db_fetch_result($result, 0, "feed_id");
4588
4589 if (!$zoom_mode) { print "<article id='$id'><![CDATA["; };
4590
4591 $result = db_query($link, "SELECT rtl_content FROM ttrss_feeds
4592 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
4593
4594 if (db_num_rows($result) == 1) {
4595 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
4596 } else {
4597 $rtl_content = false;
4598 }
4599
4600 if ($rtl_content) {
4601 $rtl_tag = "dir=\"RTL\"";
4602 $rtl_class = "RTL";
4603 } else {
4604 $rtl_tag = "";
4605 $rtl_class = "";
4606 }
4607
4608 if ($mark_as_read) {
4609 $result = db_query($link, "UPDATE ttrss_user_entries
4610 SET unread = false,last_read = NOW()
4611 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4612
4613 ccache_update($link, $feed_id, $_SESSION["uid"]);
4614 }
4615
4616 $result = db_query($link, "SELECT title,link,content,feed_id,comments,int_id,
4617 ".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
4618 (SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url,
4619 num_comments,
4620 author
4621 FROM ttrss_entries,ttrss_user_entries
4622 WHERE id = '$id' AND ref_id = id AND owner_uid = " . $_SESSION["uid"]);
4623
4624 if ($result) {
4625
4626 $link_target = "";
4627
4628 if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW')) {
4629 $link_target = "target=\"_blank\"";
4630 }
4631
4632 $line = db_fetch_assoc($result);
4633
4634 if ($line["icon_url"]) {
4635 $feed_icon = "<img class=\"feedIcon\" src=\"" . $line["icon_url"] . "\">";
4636 } else {
4637 $feed_icon = "&nbsp;";
4638 }
4639
4640 $num_comments = $line["num_comments"];
4641 $entry_comments = "";
4642
4643 if ($num_comments > 0) {
4644 if ($line["comments"]) {
4645 $comments_url = $line["comments"];
4646 } else {
4647 $comments_url = $line["link"];
4648 }
4649 $entry_comments = "<a $link_target href=\"$comments_url\">$num_comments comments</a>";
4650 } else {
4651 if ($line["comments"] && $line["link"] != $line["comments"]) {
4652 $entry_comments = "<a $link_target href=\"".$line["comments"]."\">comments</a>";
4653 }
4654 }
4655
4656 if ($zoom_mode) {
4657 header("Content-Type: text/html");
4658 print "<html><head>
4659 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
4660 <title>Tiny Tiny RSS - ".$line["title"]."</title>
4661 <link rel=\"stylesheet\" type=\"text/css\" href=\"tt-rss.css\">
4662 </head><body>";
4663 }
4664
4665
4666 print "<div class=\"postReply\">";
4667
4668 print "<div class=\"postHeader\" onmouseover=\"enable_resize(true)\"
4669 onmouseout=\"enable_resize(false)\">";
4670
4671 $entry_author = $line["author"];
4672
4673 if ($entry_author) {
4674 $entry_author = __(" - ") . $entry_author;
4675 }
4676
4677 $parsed_updated = date(get_pref($link, 'LONG_DATE_FORMAT'),
4678 strtotime($line["updated"]));
4679
4680 print "<div class=\"postDate$rtl_class\">$parsed_updated</div>";
4681
4682 if ($line["link"]) {
4683 print "<div clear='both'><a $link_target href=\"" . $line["link"] . "\">" .
4684 $line["title"] . "</a><span class='author'>$entry_author</span></div>";
4685 } else {
4686 print "<div clear='both'>" . $line["title"] . "$entry_author</div>";
4687 }
4688
4689 $tags = get_article_tags($link, $id);
4690
4691 $tags_str = "";
4692 $tags_nolinks_str = "";
4693 $f_tags_str = "";
4694
4695 $num_tags = 0;
4696
4697 if ($_SESSION["theme"] == "3pane") {
4698 $tag_limit = 3;
4699 } else {
4700 $tag_limit = 6;
4701 }
4702
4703 foreach ($tags as $tag) {
4704 $num_tags++;
4705 $tag_escaped = str_replace("'", "\\'", $tag);
4706
4707 $tag_str = "<a href=\"javascript:viewfeed('$tag_escaped')\">$tag</a>, ";
4708
4709 if ($num_tags == $tag_limit) {
4710 $tags_str .= "&hellip;";
4711 $tags_nolinks_str .= "&hellip;";
4712
4713 } else if ($num_tags < $tag_limit) {
4714 $tags_str .= $tag_str;
4715 $tags_nolinks_str .= "$tag, ";
4716 }
4717 $f_tags_str .= $tag_str;
4718 }
4719
4720 $tags_str = preg_replace("/, $/", "", $tags_str);
4721 $tags_nolinks_str = preg_replace("/, $/", "", $tags_nolinks_str);
4722 $f_tags_str = preg_replace("/, $/", "", $f_tags_str);
4723
4724 $all_tags_div = "<span class='cdmAllTagsCtr'>&hellip;<div class='cdmAllTags'>All Tags: $f_tags_str</div></span>";
4725 $tags_str = preg_replace("/\.\.\.$/", "$all_tags_div", $tags_str);
4726
4727 if (!$entry_comments) $entry_comments = "&nbsp;"; # placeholder
4728
4729 if (!$tags_str) $tags_str = '<span class="tagList">'.__('no tags').'</span>';
4730 if (!$tags_nolinks_str) $tags_nolinks_str = '<span class="tagList">'.__('no tags').'</span>';
4731
4732 print "<div style='float : right'>
4733 <img src='images/tag.png' class='tagsPic' alt='Tags' title='Tags'>";
4734
4735 if (!$zoom_mode) {
4736 print "$tags_str
4737 <a title=\"".__('Edit tags for this article')."\"
4738 href=\"javascript:editArticleTags($id, $feed_id)\">(+)</a>";
4739
4740 if (defined('_ENABLE_INLINE_VIEW')) {
4741
4742 print "<img src=\"images/art-inline.png\" class='tagsPic'
4743 style=\"cursor : pointer\" style=\"cursor : pointer\"
4744 onclick=\"showOriginalArticleInline($id)\"
4745 alt='Inline' title='".__('Display original article content')."'>";
4746
4747 }
4748
4749 print "<img src=\"images/art-zoom.png\" class='tagsPic'
4750 style=\"cursor : pointer\" style=\"cursor : pointer\"
4751 onclick=\"zoomToArticle($id)\"
4752 alt='Zoom' title='".__('Show article summary in new window')."'>";
4753 } else {
4754 print "$tags_nolinks_str";
4755 }
4756 print "</div>";
4757 print "<div clear='both'>$entry_comments</div>";
4758
4759 print "</div>";
4760
4761 print "<div class=\"postIcon\">" . $feed_icon . "</div>";
4762
4763 print "<div class=\"postContent\">";
4764
4765 #print "<div id=\"allEntryTags\">".__('Tags:')." $f_tags_str</div>";
4766
4767 $article_content = sanitize_rss($link, $line["content"]);
4768
4769 if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW')) {
4770 $article_content = preg_replace("/href=/i", "target=\"_blank\" href=",
4771 $article_content);
4772 }
4773
4774 print $article_content;
4775
4776 $result = db_query($link, "SELECT * FROM ttrss_enclosures WHERE
4777 post_id = '$id' AND content_url != ''");
4778
4779 if (db_num_rows($result) > 0) {
4780
4781 $entries_html = array();
4782 $entries = array();
4783
4784 while ($line = db_fetch_assoc($result)) {
4785
4786 $url = $line["content_url"];
4787 $ctype = $line["content_type"];
4788
4789 if (!$ctype) $ctype = __("unknown type");
4790
4791 $filename = substr($url, strrpos($url, "/")+1);
4792
4793 $entry = "";
4794
4795 if (($ctype == __("audio/mpeg")) &&
4796 (get_pref($link, "ENABLE_FLASH_PLAYER")) ) {
4797
4798 $entry .= "<object type=\"application/x-shockwave-flash\" data=\"extras/button/musicplayer.swf?song_url=$url\" width=\"17\" height=\"17\"> <param name=\"movie\" value=\"extras/button/musicplayer.swf?song_url=$url\" /> </object> ";
4799
4800 }
4801
4802 $entry .= "<a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
4803 $filename . " (" . $ctype . ")" . "</a>";
4804
4805 array_push($entries_html, $entry);
4806
4807 $entry = array();
4808
4809 $entry["type"] = $ctype;
4810 $entry["filename"] = $filename;
4811 $entry["url"] = $url;
4812
4813 array_push($entries, $entry);
4814 }
4815
4816 print "<div class=\"postEnclosures\">";
4817
4818 if (!preg_match("/img/i", $article_content)) {
4819 foreach ($entries as $entry) {
4820 if (preg_match("/image/", $entry["type"])) {
4821 print "<p><img
4822 alt=\"".htmlspecialchars($entry["filename"])."\"
4823 src=\"" .htmlspecialchars($entry["url"]) . "\"></p>";
4824 }
4825 }
4826 }
4827
4828 print "<div class=\"postEnclosures\">";
4829
4830 if (db_num_rows($result) == 1) {
4831 print __("Attachment:") . " ";
4832 } else {
4833 print __("Attachments:") . " ";
4834 }
4835
4836 print join(", ", $entries_html);
4837
4838 print "</div>";
4839 }
4840
4841 print "</div>";
4842
4843 print "</div>";
4844
4845 }
4846
4847 if (!$zoom_mode) {
4848 print "]]></article>";
4849 } else {
4850 print "
4851 <div style=\"text-align : center\">
4852 <input type=\"submit\" onclick=\"return window.close()\"
4853 value=\"".__("Close this window")."\"></div>";
4854 print "</body></html>";
4855
4856 }
4857
4858 }
4859
4860 function outputHeadlinesList($link, $feed, $subop, $view_mode, $limit, $cat_view,
4861 $next_unread_feed, $offset, $vgr_last_feed = false,
4862 $override_order = false) {
4863
4864 $disable_cache = false;
4865
4866 $timing_info = getmicrotime();
4867
4868 $topmost_article_ids = array();
4869
4870 if (!$offset) {
4871 $offset = 0;
4872 }
4873
4874 if ($subop == "undefined") $subop = "";
4875
4876 $subop_split = split(":", $subop);
4877
4878 if ($subop == "CatchupSelected") {
4879 $ids = split(",", db_escape_string($_GET["ids"]));
4880 $cmode = sprintf("%d", $_GET["cmode"]);
4881
4882 catchupArticlesById($link, $ids, $cmode);
4883 }
4884
4885 if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0) {
4886 update_generic_feed($link, $feed, $cat_view, true);
4887 }
4888
4889 if ($subop == "MarkAllRead") {
4890 catchup_feed($link, $feed, $cat_view);
4891
4892 if (get_pref($link, 'ON_CATCHUP_SHOW_NEXT_FEED')) {
4893 if ($next_unread_feed) {
4894 $feed = $next_unread_feed;
4895 }
4896 }
4897 }
4898
4899 if ($subop_split[0] == "MarkAllReadGR") {
4900 catchup_feed($link, $subop_split[1], false);
4901 }
4902
4903
4904 if ($feed_id > 0) {
4905 $result = db_query($link,
4906 "SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
4907
4908 if (db_num_rows($result) == 0) {
4909 print "<div align='center'>".__('Feed not found.')."</div>";
4910 return;
4911 }
4912 }
4913
4914 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
4915
4916 $result = db_query($link, "SELECT rtl_content FROM ttrss_feeds
4917 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
4918
4919 if (db_num_rows($result) == 1) {
4920 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
4921 } else {
4922 $rtl_content = false;
4923 }
4924
4925 if ($rtl_content) {
4926 $rtl_tag = "dir=\"RTL\"";
4927 } else {
4928 $rtl_tag = "";
4929 }
4930 } else {
4931 $rtl_tag = "";
4932 $rtl_content = false;
4933 }
4934
4935 $script_dt_add = get_script_dt_add();
4936
4937 /// START /////////////////////////////////////////////////////////////////////////////////
4938
4939 $search = db_escape_string($_GET["query"]);
4940
4941 if ($search) {
4942 $disable_cache = true;
4943 }
4944
4945 $search_mode = db_escape_string($_GET["search_mode"]);
4946 $match_on = db_escape_string($_GET["match_on"]);
4947
4948 if (!$match_on) {
4949 $match_on = "both";
4950 }
4951
4952 $real_offset = $offset * $limit;
4953
4954 if ($_GET["debug"]) $timing_info = print_checkpoint("H0", $timing_info);
4955
4956 $qfh_ret = queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view,
4957 $search, $search_mode, $match_on, $override_order, $real_offset);
4958
4959 if ($_GET["debug"]) $timing_info = print_checkpoint("H1", $timing_info);
4960
4961 $result = $qfh_ret[0];
4962 $feed_title = $qfh_ret[1];
4963 $feed_site_url = $qfh_ret[2];
4964 $last_error = $qfh_ret[3];
4965
4966 $vgroup_last_feed = $vgr_last_feed;
4967
4968 if ($feed == -2) {
4969 $feed_site_url = article_publish_url($link);
4970 }
4971
4972 /// STOP //////////////////////////////////////////////////////////////////////////////////
4973
4974 if (!$offset) {
4975 print "<div id=\"headlinesContainer\" $rtl_tag>";
4976
4977 if (!$result) {
4978 print "<div align='center'>".__("Could not display feed (query failed). Please check label match syntax or local configuration.")."</div>";
4979 return;
4980 }
4981
4982 print_headline_subtoolbar($link, $feed_site_url, $feed_title, false,
4983 $rtl_content, $feed, $cat_view, $search, $match_on, $search_mode,
4984 $offset, $limit);
4985
4986 print "<div id=\"headlinesInnerContainer\" onscroll=\"headlines_scroll_handler()\">";
4987 }
4988
4989 $headlines_count = db_num_rows($result);
4990
4991 if (db_num_rows($result) > 0) {
4992
4993 # print "\{$offset}";
4994
4995 if (!get_pref($link, 'COMBINED_DISPLAY_MODE') && !$offset) {
4996 print "<table class=\"headlinesList\" id=\"headlinesList\"
4997 cellspacing=\"0\">";
4998 }
4999
5000 $lnum = $limit*$offset;
5001
5002 error_reporting (DEFAULT_ERROR_LEVEL);
5003
5004 $num_unread = 0;
5005 $cur_feed_title = '';
5006
5007 while ($line = db_fetch_assoc($result)) {
5008
5009 $class = ($lnum % 2) ? "even" : "odd";
5010
5011 $id = $line["id"];
5012 $feed_id = $line["feed_id"];
5013
5014 $labels = get_article_labels($link, $id);
5015 $labels_str = "<span id=\"HLLCTR-$id\">";
5016
5017 foreach ($labels as $l) {
5018 $labels_str .= "<span
5019 class='hlLabelRef'>".
5020 $l[1]."</span>";
5021 }
5022
5023 $labels_str .= "</span>";
5024
5025 if (count($topmost_article_ids) < 5) {
5026 array_push($topmost_article_ids, $id);
5027 }
5028
5029 if ($line["last_read"] == "" &&
5030 ($line["unread"] != "t" && $line["unread"] != "1")) {
5031
5032 $update_pic = "<img id='FUPDPIC-$id' src=\"images/updated.png\"
5033 alt=\"Updated\">";
5034 } else {
5035 $update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.gif\"
5036 alt=\"Updated\">";
5037 }
5038
5039 if ($line["unread"] == "t" || $line["unread"] == "1") {
5040 $class .= "Unread";
5041 ++$num_unread;
5042 $is_unread = true;
5043 } else {
5044 $is_unread = false;
5045 }
5046
5047 $is_ie = (strpos($_SESSION["client.userAgent"], "MSIE") !== false);
5048
5049 if ($is_ie) {
5050 $mark_img_ext = "gif";
5051 } else {
5052 $mark_img_ext = "png";
5053 }
5054
5055 if ($line["marked"] == "t" || $line["marked"] == "1") {
5056 $marked_pic = "<img id=\"FMPIC-$id\" src=\"images/mark_set.$mark_img_ext\"
5057 class=\"markedPic\"
5058 alt=\"Unstar article\" onclick='javascript:tMark($id)'>";
5059 } else {
5060 $marked_pic = "<img id=\"FMPIC-$id\" src=\"images/mark_unset.$mark_img_ext\"
5061 class=\"markedPic\"
5062 alt=\"Star article\" onclick='javascript:tMark($id)'>";
5063 }
5064
5065 if ($line["published"] == "t" || $line["published"] == "1") {
5066 $published_pic = "<img id=\"FPPIC-$id\" src=\"images/pub_set.gif\"
5067 class=\"markedPic\"
5068 alt=\"Unpublish article\" onclick='javascript:tPub($id)'>";
5069 } else {
5070 $published_pic = "<img id=\"FPPIC-$id\" src=\"images/pub_unset.gif\"
5071 class=\"markedPic\"
5072 alt=\"Publish article\" onclick='javascript:tPub($id)'>";
5073 }
5074
5075 # $content_link = "<a target=\"_blank\" href=\"".$line["link"]."\">" .
5076 # $line["title"] . "</a>";
5077
5078 # $content_link = "<a
5079 # href=\"" . htmlspecialchars($line["link"]) . "\"
5080 # onclick=\"view($id,$feed_id);\">" .
5081 # $line["title"] . "</a>";
5082
5083 # $content_link = "<a href=\"javascript:viewContentUrl('".$line["link"]."');\">" .
5084 # $line["title"] . "</a>";
5085
5086 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
5087 $updated_fmt = smart_date_time(strtotime($line["updated_noms"]));
5088 } else {
5089 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
5090 $updated_fmt = date($short_date, strtotime($line["updated_noms"]));
5091 }
5092
5093 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
5094 $content_preview = truncate_string(strip_tags($line["content_preview"]),
5095 100);
5096 }
5097
5098 $score = $line["score"];
5099
5100 $score_pic = get_score_pic($score);
5101
5102 /* $score_title = __("(Click to change)");
5103 $score_pic = "<img class='hlScorePic' src=\"images/$score_pic\"
5104 onclick=\"adjustArticleScore($id, $score)\" title=\"$score $score_title\">"; */
5105
5106 $score_pic = "<img class='hlScorePic' src=\"images/$score_pic\"
5107 title=\"$score\">";
5108
5109 if ($score > 500) {
5110 $hlc_suffix = "H";
5111 } else if ($score < -100) {
5112 $hlc_suffix = "L";
5113 } else {
5114 $hlc_suffix = "";
5115 }
5116
5117 $entry_author = $line["author"];
5118
5119 if ($entry_author) {
5120 $entry_author = " - $entry_author";
5121 }
5122
5123 $has_feed_icon = feed_has_icon($feed_id);
5124
5125 if ($has_feed_icon) {
5126 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
5127 } else {
5128 //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">";
5129 $feed_icon_img = "";
5130 }
5131
5132 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
5133
5134 if (get_pref($link, 'VFEED_GROUP_BY_FEED')) {
5135 if ($feed_id != $vgroup_last_feed && $line["feed_title"]) {
5136
5137 $cur_feed_title = $line["feed_title"];
5138 $vgroup_last_feed = $feed_id;
5139
5140 $cur_feed_title = htmlspecialchars($cur_feed_title);
5141
5142 $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>mark as read</a>)";
5143
5144 print "<tr class='feedTitle'><td colspan='7'>".
5145 "<div style=\"float : right\">$feed_icon_img</div>".
5146 "<a href=\"javascript:viewfeed($feed_id, '', false)\">".
5147 $line["feed_title"]."</a> $vf_catchup_link</td></tr>";
5148 }
5149 }
5150
5151 $mouseover_attrs = "onmouseover='postMouseIn($id)'
5152 onmouseout='postMouseOut($id)'";
5153
5154 print "<tr class='$class' id='RROW-$id' $mouseover_attrs>";
5155
5156 print "<td class='hlUpdPic'>$update_pic</td>";
5157
5158 print "<td class='hlSelectRow'>
5159 <input type=\"checkbox\" onclick=\"tSR(this)\"
5160 id=\"RCHK-$id\">
5161 </td>";
5162
5163 print "<td class='hlMarkedPic'>$marked_pic</td>";
5164 print "<td class='hlMarkedPic'>$published_pic</td>";
5165
5166 # if ($line["feed_title"]) {
5167 # print "<td class='hlContent'>$content_link</td>";
5168 # print "<td class='hlFeed'>
5169 # <a href=\"javascript:viewfeed($feed_id, '', false)\">".
5170 # truncate_string($line["feed_title"],30)."</a>&nbsp;</td>";
5171 # } else {
5172
5173 print "<td onclick='view($id,$feed_id)' class='hlContent$hlc_suffix' valign='middle'>";
5174
5175 print "<a id=\"RTITLE-$id\"
5176 href=\"" . htmlspecialchars($line["link"]) . "\"
5177 onclick=\"return view($id,$feed_id);\">" .
5178 $line["title"];
5179
5180 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
5181 if ($content_preview) {
5182 print "<span class=\"contentPreview\"> - $content_preview</span>";
5183 }
5184 }
5185
5186 print "</a>";
5187
5188 print $labels_str;
5189
5190 # <a href=\"javascript:viewfeed($feed_id, '', false)\">".
5191 # $line["feed_title"]."</a>
5192
5193 if (!get_pref($link, 'VFEED_GROUP_BY_FEED')) {
5194 if ($line["feed_title"]) {
5195 print "<span class=\"hlFeed\">
5196 (<a href=\"javascript:viewfeed($feed_id, '', false)\">".
5197 $line["feed_title"]."</a>)
5198 </span>";
5199 }
5200 }
5201 print "</td>";
5202
5203 # }
5204
5205 print "<td class=\"hlUpdated\" onclick='view($id,$feed_id)'><nobr>$updated_fmt&nbsp;</nobr></td>";
5206
5207 print "<td class='hlMarkedPic'>$score_pic</td>";
5208
5209 if ($line["feed_title"] && !get_pref($link, 'VFEED_GROUP_BY_FEED')) {
5210 print "<td onclick=\"viewfeed($feed_id)\" class=\"hlFeedIcon\">$feed_icon_img</td>";
5211 }
5212
5213 print "</tr>";
5214
5215 } else {
5216
5217 if (get_pref($link, 'VFEED_GROUP_BY_FEED') && $line["feed_title"]) {
5218 if ($feed_id != $vgroup_last_feed) {
5219
5220 $cur_feed_title = $line["feed_title"];
5221 $vgroup_last_feed = $feed_id;
5222
5223 $cur_feed_title = htmlspecialchars($cur_feed_title);
5224
5225 $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>mark as read</a>)";
5226
5227 $has_feed_icon = feed_has_icon($feed_id);
5228
5229 if ($has_feed_icon) {
5230 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
5231 } else {
5232 //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">";
5233 }
5234
5235 print "<div class='cdmFeedTitle'>".
5236 "<div style=\"float : right\">$feed_icon_img</div>".
5237 "<a href=\"javascript:viewfeed($feed_id, '', false)\">".
5238 $line["feed_title"]."</a> $vf_catchup_link</div>";
5239 }
5240 }
5241
5242 if ($is_unread) {
5243 $add_class = "Unread";
5244 } else {
5245 $add_class = "";
5246 }
5247
5248 $expand_cdm = get_pref($link, 'CDM_EXPANDED');
5249 $show_excerpt = false;
5250
5251 if ($expand_cdm && $score >= -100) {
5252 $cdm_cstyle = "";
5253 $show_excerpt = false;
5254 } else {
5255 $cdm_cstyle = "style=\"display : none\"";
5256 $show_excerpt = true;
5257 }
5258
5259 $mouseover_attrs = "onmouseover='postMouseIn($id)'
5260 onmouseout='postMouseOut($id)'";
5261
5262 print "<div class=\"cdmArticle$add_class\"
5263 id=\"RROW-$id\"
5264 $mouseover_attrs'>";
5265
5266 print "<div class=\"cdmHeader\">";
5267
5268 if (!get_pref($link, "VFEED_GROUP_BY_FEED") || !$line["feed_title"]) {
5269 $cdm_feed_icon = "<span style=\"cursor : pointer\" onclick=\"viewfeed($feed_id)\">$feed_icon_img</span>";
5270 }
5271
5272 print "<div class=\"articleUpdated\">$updated_fmt $score_pic $cdm_feed_icon
5273 </div>";
5274
5275 print "<span id=\"RTITLE-$id\" class=\"titleWrap$hlc_suffix\"><a class=\"title\"
5276 onclick=\"javascript:toggleUnread($id, 0)\"
5277 target=\"_blank\" href=\"".$line["link"]."\">".$line["title"]."</a>
5278 ";
5279
5280 print $entry_author;
5281
5282 /* if (!$expand_cdm || $score < -100) {
5283 print "&nbsp;<a id=\"CICH-$id\"
5284 href=\"javascript:cdmExpandArticle($id)\">
5285 (".__('Show article').")</a>";
5286 } */
5287
5288 print $labels_str;
5289
5290 if (!get_pref($link, 'VFEED_GROUP_BY_FEED')) {
5291 if ($line["feed_title"]) {
5292 print "&nbsp;(<a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a>)";
5293 }
5294 }
5295
5296 print "</span></div>";
5297
5298 if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW')) {
5299 $line["content_preview"] = preg_replace("/href=/i",
5300 "target=\"_blank\" href=", $line["content_preview"]);
5301 }
5302
5303 if ($show_excerpt) {
5304 print "<div class=\"cdmExcerpt\" id=\"CEXC-$id\"
5305 onclick=\"cdmExpandArticle($id)\"
5306 title=\"".__('Click to expand article')."\">";
5307 print truncate_string(strip_tags($line["content_preview"]), 100);
5308 print "</div>";
5309 }
5310
5311 print "<div class=\"cdmContent\"
5312 onclick=\"cdmClicked($id)\"
5313 id=\"CICD-$id\" $cdm_cstyle>";
5314
5315 // print "<div class=\"cdmInnerContent\" id=\"CICD-$id\" $cdm_cstyle>";
5316
5317 print sanitize_rss($link, $line["content_preview"]);
5318 $article_content = $line["content_preview"];
5319
5320 $e_result = db_query($link, "SELECT * FROM ttrss_enclosures WHERE
5321 post_id = '$id' AND content_url != ''");
5322
5323 if (db_num_rows($e_result) > 0) {
5324
5325 $entries_html = array();
5326 $entries = array();
5327
5328 while ($e_line = db_fetch_assoc($e_result)) {
5329
5330 $url = $e_line["content_url"];
5331 $ctype = $e_line["content_type"];
5332 if (!$ctype) $ctype = __("unknown type");
5333
5334 $filename = substr($url, strrpos($url, "/")+1);
5335
5336 $entry = "";
5337
5338 if (($ctype == __("audio/mpeg")) &&
5339 (get_pref($link, "ENABLE_FLASH_PLAYER")) ) {
5340
5341 $entry .= "<object type=\"application/x-shockwave-flash\" data=\"extras/button/musicplayer.swf?song_url=$url\" width=\"17\" height=\"17\"> <param name=\"movie\" value=\"extras/button/musicplayer.swf?song_url=$url\" /> </object> ";
5342
5343 }
5344
5345 $entry .= "<a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
5346 $filename . " (" . $ctype . ")" . "</a>";
5347
5348 array_push($entries_html, $entry);
5349
5350 $entry = array();
5351
5352 $entry["type"] = $ctype;
5353 $entry["filename"] = $filename;
5354 $entry["url"] = $url;
5355
5356 array_push($entries, $entry);
5357 }
5358
5359 if (!preg_match("/img/i", $article_content)) {
5360 foreach ($entries as $entry) {
5361 if (preg_match("/image/", $entry["type"])) {
5362 print "<p><img
5363 alt=\"".htmlspecialchars($entry["filename"])."\"
5364 src=\"" .htmlspecialchars($entry["url"]) . "\"></p>";
5365 }
5366 }
5367 }
5368
5369 print "<div class=\"cdmEnclosures\">";
5370
5371 if (db_num_rows($e_result) == 1) {
5372 print __("Attachment:") . " ";
5373 } else {
5374 print __("Attachments:") . " ";
5375 }
5376
5377 print join(", ", $entries_html);
5378
5379 print "</div>";
5380 }
5381
5382
5383 print "<br clear='both'>";
5384 // print "</div>";
5385
5386 /* if (!$expand_cdm) {
5387 print "<a id=\"CICH-$id\"
5388 href=\"javascript:cdmExpandArticle($id)\">
5389 Show article</a>";
5390 } */
5391
5392 print "</div>";
5393
5394 print "<div class=\"cdmFooter\"><span class='s0'>";
5395
5396 /* print "<div class=\"markedPic\">Star it: $marked_pic</div>"; */
5397
5398 print __("Select:").
5399 " <input type=\"checkbox\" onclick=\"toggleSelectRowById(this,
5400 'RROW-$id')\" class=\"feedCheckBox\" id=\"RCHK-$id\">";
5401
5402 print "</span><span class='s1'>$marked_pic</span> ";
5403 print "<span class='s1'>$published_pic</span> ";
5404 print "<span class='s1'><img src=\"images/art-zoom.png\" class='tagsPic'
5405 onclick=\"zoomToArticle($id)\"
5406 style=\"cursor : pointer\"
5407 alt='Zoom'
5408 title='".__('Show article summary in new window')."'></span>";
5409
5410 $tags = get_article_tags($link, $id);
5411
5412 $tags_str = "";
5413 $full_tags_str = "";
5414 $num_tags = 0;
5415
5416 foreach ($tags as $tag) {
5417 $num_tags++;
5418 $full_tags_str .= "<a href=\"javascript:viewfeed('$tag')\">$tag</a>, ";
5419 if ($num_tags < 5) {
5420 $tags_str .= "<a href=\"javascript:viewfeed('$tag')\">$tag</a>, ";
5421 } else if ($num_tags == 5) {
5422 $tags_str .= "&hellip;";
5423 }
5424 }
5425
5426 $tags_str = preg_replace("/, $/", "", $tags_str);
5427 $full_tags_str = preg_replace("/, $/", "", $full_tags_str);
5428
5429 $all_tags_div = "<span class='cdmAllTagsCtr'>&hellip;<div class='cdmAllTags'>All Tags: $full_tags_str</div></span>";
5430
5431 $tags_str = preg_replace("/\.\.\.$/", "$all_tags_div", $tags_str);
5432
5433
5434 if ($tags_str == "") $tags_str = "no tags";
5435
5436 // print "<img src='images/tag.png' class='markedPic'>";
5437
5438 print "<span class='s1'>
5439 <img class='tagsPic' src='images/tag.png' alt='Tags'
5440 title='Tags'> $tags_str <a title=\"Edit tags for this article\"
5441 href=\"javascript:editArticleTags($id, $feed_id, true)\">(+)</a>";
5442
5443 print "</span>";
5444
5445 print "<span class='s2'>Toggle: <a class=\"cdmToggleLink\"
5446 href=\"javascript:toggleUnread($id)\">
5447 Unread</a></span>";
5448
5449 print "</div>";
5450 print "</div>";
5451
5452 }
5453
5454 ++$lnum;
5455 }
5456
5457 if (!get_pref($link, 'COMBINED_DISPLAY_MODE') && !$offset) {
5458 print "</table>";
5459 }
5460
5461 } else {
5462 $message = "";
5463
5464 switch ($view_mode) {
5465 case "unread":
5466 $message = __("No unread articles found to display.");
5467 break;
5468 case "updated":
5469 $message = __("No updated articles found to display.");
5470 break;
5471 case "marked":
5472 $message = __("No starred articles found to display.");
5473 break;
5474 default:
5475 if ($feed < -10) {
5476 $message = __("No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter.");
5477 } else {
5478 $message = __("No articles found to display.");
5479 }
5480 }
5481
5482 if (!$offset) print "<div class='whiteBox'>$message</div>";
5483 }
5484
5485 if (!$offset) {
5486 print "</div>";
5487 print "</div>";
5488 }
5489
5490 return array($topmost_article_ids, $headlines_count, $feed, $disable_cache, $vgroup_last_feed);
5491 }
5492
5493 // from here: http://www.roscripts.com/Create_tag_cloud-71.html
5494
5495 function printTagCloud($link) {
5496
5497 $query = "SELECT tag_name, COUNT(post_int_id) AS count
5498 FROM ttrss_tags WHERE owner_uid = ".$_SESSION["uid"]."
5499 GROUP BY tag_name ORDER BY count DESC LIMIT 50";
5500
5501 $result = db_query($link, $query);
5502
5503 $tags = array();
5504
5505 while ($line = db_fetch_assoc($result)) {
5506 $tags[$line["tag_name"]] = $line["count"];
5507 }
5508
5509 ksort($tags);
5510
5511 $max_size = 32; // max font size in pixels
5512 $min_size = 11; // min font size in pixels
5513
5514 // largest and smallest array values
5515 $max_qty = max(array_values($tags));
5516 $min_qty = min(array_values($tags));
5517
5518 // find the range of values
5519 $spread = $max_qty - $min_qty;
5520 if ($spread == 0) { // we don't want to divide by zero
5521 $spread = 1;
5522 }
5523
5524 // set the font-size increment
5525 $step = ($max_size - $min_size) / ($spread);
5526
5527 // loop through the tag array
5528 foreach ($tags as $key => $value) {
5529 // calculate font-size
5530 // find the $value in excess of $min_qty
5531 // multiply by the font-size increment ($size)
5532 // and add the $min_size set above
5533 $size = round($min_size + (($value - $min_qty) * $step));
5534
5535 $key_escaped = str_replace("'", "\\'", $key);
5536
5537 echo "<a href=\"javascript:viewfeed('$key_escaped') \" style=\"font-size: " .
5538 $size . "px\" title=\"$value articles tagged with " .
5539 $key . '">' . $key . '</a> ';
5540 }
5541 }
5542
5543 function print_checkpoint($n, $s) {
5544 $ts = getmicrotime();
5545 echo sprintf("<!-- CP[$n] %.4f seconds -->", $ts - $s);
5546 return $ts;
5547 }
5548
5549 function sanitize_tag($tag) {
5550 $tag = trim($tag);
5551
5552 $tag = mb_strtolower($tag, 'utf-8');
5553
5554 $tag = preg_replace('/[\"\+\>\<]/', "", $tag);
5555
5556 // $tag = str_replace('"', "", $tag);
5557 // $tag = str_replace("+", " ", $tag);
5558 $tag = str_replace("technorati tag: ", "", $tag);
5559
5560 return $tag;
5561 }
5562
5563 function generate_publish_key() {
5564 return sha1(uniqid(rand(), true));
5565 }
5566
5567 function article_publish_url($link) {
5568
5569 $url_path = "";
5570
5571
5572 if ($_SERVER['HTTPS'] != "on") {
5573 $url_path = "http://";
5574 } else {
5575 $url_path = "https://";
5576 }
5577
5578 $url_path .= $_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']);
5579 $url_path .= "/backend.php?op=publish&key=" . get_pref($link, "_PREFS_PUBLISH_KEY");
5580
5581 return $url_path;
5582 }
5583
5584 /**
5585 * Purge a feed contents, marked articles excepted.
5586 *
5587 * @param mixed $link The database connection.
5588 * @param integer $id The id of the feed to purge.
5589 * @return void
5590 */
5591 function clear_feed_articles($link, $id) {
5592 $result = db_query($link, "DELETE FROM ttrss_user_entries
5593 WHERE feed_id = '$id' AND marked = false AND owner_uid = " . $_SESSION["uid"]);
5594
5595 $result = db_query($link, "DELETE FROM ttrss_entries WHERE
5596 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
5597
5598 ccache_update($link, $id, $_SESSION['uid']);
5599 } // function clear_feed_articles
5600
5601 /**
5602 * Compute the Mozilla Firefox feed adding URL from server HOST and REQUEST_URI.
5603 *
5604 * @return string The Mozilla Firefox feed adding URL.
5605 */
5606 function add_feed_url() {
5607 $url_path = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
5608 $url_path .= "?op=pref-feeds&quiet=1&subop=add&feed_url=%s";
5609 return $url_path;
5610 } // function add_feed_url
5611
5612 /**
5613 * Encrypt a password in SHA1.
5614 *
5615 * @param string $pass The password to encrypt.
5616 * @param string $login A optionnal login.
5617 * @return string The encrypted password.
5618 */
5619 function encrypt_password($pass, $login = '') {
5620 if ($login) {
5621 return "SHA1X:" . sha1("$login:$pass");
5622 } else {
5623 return "SHA1:" . sha1($pass);
5624 }
5625 } // function encrypt_password
5626
5627 /**
5628 * Update a feed batch.
5629 * Used by daemons to update n feeds by run.
5630 * Only update feed needing a update, and not being processed
5631 * by another process.
5632 *
5633 * @param mixed $link Database link
5634 * @param integer $limit Maximum number of feeds in update batch. Default to DAEMON_FEED_LIMIT.
5635 * @param boolean $from_http Set to true if you call this function from http to disable cli specific code.
5636 * @param boolean $debug Set to false to disable debug output. Default to true.
5637 * @return void
5638 */
5639 function update_daemon_common($link, $limit = DAEMON_FEED_LIMIT, $from_http = false, $debug = true) {
5640 // Process all other feeds using last_updated and interval parameters
5641
5642 // Test if the user has loggued in recently. If not, it does not update its feeds.
5643 if (DAEMON_UPDATE_LOGIN_LIMIT > 0) {
5644 if (DB_TYPE == "pgsql") {
5645 $login_thresh_qpart = "AND ttrss_users.last_login >= NOW() - INTERVAL '".DAEMON_UPDATE_LOGIN_LIMIT." days'";
5646 } else {
5647 $login_thresh_qpart = "AND ttrss_users.last_login >= DATE_SUB(NOW(), INTERVAL ".DAEMON_UPDATE_LOGIN_LIMIT." DAY)";
5648 }
5649 } else {
5650 $login_thresh_qpart = "";
5651 }
5652
5653 // Test if the feed need a update (update interval exceded).
5654 if (DB_TYPE == "pgsql") {
5655 $update_limit_qpart = "AND ((
5656 ttrss_feeds.update_interval = 0
5657 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_user_prefs.value || ' minutes') AS INTERVAL)
5658 ) OR (
5659 ttrss_feeds.update_interval > 0
5660 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_feeds.update_interval || ' minutes') AS INTERVAL)
5661 ) OR ttrss_feeds.last_updated IS NULL)";
5662 } else {
5663 $update_limit_qpart = "AND ((
5664 ttrss_feeds.update_interval = 0
5665 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL CONVERT(ttrss_user_prefs.value, SIGNED INTEGER) MINUTE)
5666 ) OR (
5667 ttrss_feeds.update_interval > 0
5668 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL ttrss_feeds.update_interval MINUTE)
5669 ) OR ttrss_feeds.last_updated IS NULL)";
5670 }
5671
5672 // Test if feed is currently being updated by another process.
5673 if (DB_TYPE == "pgsql") {
5674 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '120 seconds')";
5675 } else {
5676 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 120 SECOND))";
5677 }
5678
5679 // Test if there is a limit to number of updated feeds
5680 $query_limit = "";
5681 if($limit) $query_limit = sprintf("LIMIT %d", $limit);
5682
5683 $random_qpart = sql_random_function();
5684
5685 // We search for feed needing update.
5686 $result = db_query($link, "SELECT ttrss_feeds.feed_url,ttrss_feeds.id, ttrss_feeds.owner_uid,
5687 ".SUBSTRING_FOR_DATE."(ttrss_feeds.last_updated,1,19) AS last_updated,
5688 ttrss_feeds.update_interval
5689 FROM
5690 ttrss_feeds, ttrss_users, ttrss_user_prefs
5691 WHERE
5692 ttrss_feeds.owner_uid = ttrss_users.id
5693 AND ttrss_users.id = ttrss_user_prefs.owner_uid
5694 AND ttrss_user_prefs.pref_name = 'DEFAULT_UPDATE_INTERVAL'
5695 $login_thresh_qpart $update_limit_qpart
5696 $updstart_thresh_qpart
5697 ORDER BY $random_qpart $query_limit");
5698
5699 $user_prefs_cache = array();
5700
5701 if($debug) _debug(sprintf("Scheduled %d feeds to update...\n", db_num_rows($result)));
5702
5703 // Here is a little cache magic in order to minimize risk of double feed updates.
5704 $feeds_to_update = array();
5705 while ($line = db_fetch_assoc($result)) {
5706 $feeds_to_update[$line['id']] = $line;
5707 }
5708
5709 // We update the feed last update started date before anything else.
5710 // There is no lag due to feed contents downloads
5711 // It prevent an other process to update the same feed.
5712 $feed_ids = array_keys($feeds_to_update);
5713 if($feed_ids) {
5714 db_query($link, sprintf("UPDATE ttrss_feeds SET last_update_started = NOW()
5715 WHERE id IN (%s)", implode(',', $feed_ids)));
5716 }
5717
5718 // For each feed, we call the feed update function.
5719 while ($line = array_pop($feeds_to_update)) {
5720
5721 if($debug) _debug("Feed: " . $line["feed_url"] . ", " . $line["last_updated"]);
5722
5723 // We setup a alarm to alert if the feed take more than 300s to update.
5724 // => HANG alarm.
5725 if(!$from_http && function_exists('pcntl_alarm')) pcntl_alarm(300);
5726 update_rss_feed($link, $line["feed_url"], $line["id"], true);
5727 // Cancel the alarm (the update went well)
5728 if(!$from_http && function_exists('pcntl_alarm')) pcntl_alarm(0);
5729
5730 sleep(1); // prevent flood (FIXME make this an option?)
5731 }
5732
5733 // Send feed digests by email if needed.
5734 if (DAEMON_SENDS_DIGESTS) send_headlines_digests($link);
5735
5736 purge_orphans($link);
5737
5738 } // function update_daemon_common
5739
5740 function sanitize_article_content($text) {
5741 # we don't support CDATA sections in articles, they break our own escaping
5742 $text = preg_replace("/\[\[CDATA/", "", $text);
5743 $text = preg_replace("/\]\]\>/", "", $text);
5744 return $text;
5745 }
5746
5747 function load_filters($link, $feed, $owner_uid, $action_id = false) {
5748 $filters = array();
5749
5750 if ($action_id) $ftype_query_part = "action_id = '$action_id' AND";
5751
5752 $result = db_query($link, "SELECT reg_exp,
5753 ttrss_filter_types.name AS name,
5754 ttrss_filter_actions.name AS action,
5755 inverse,
5756 action_param,
5757 filter_param
5758 FROM ttrss_filters,ttrss_filter_types,ttrss_filter_actions WHERE
5759 enabled = true AND
5760 $ftype_query_part
5761 owner_uid = $owner_uid AND
5762 ttrss_filter_types.id = filter_type AND
5763 ttrss_filter_actions.id = action_id AND
5764 (feed_id IS NULL OR feed_id = '$feed') ORDER BY reg_exp");
5765
5766 while ($line = db_fetch_assoc($result)) {
5767 if (!$filters[$line["name"]]) $filters[$line["name"]] = array();
5768 $filter["reg_exp"] = $line["reg_exp"];
5769 $filter["action"] = $line["action"];
5770 $filter["action_param"] = $line["action_param"];
5771 $filter["filter_param"] = $line["filter_param"];
5772 $filter["inverse"] = sql_bool_to_bool($line["inverse"]);
5773
5774 array_push($filters[$line["name"]], $filter);
5775 }
5776
5777 return $filters;
5778 }
5779
5780 function get_score_pic($score) {
5781 if ($score > 100) {
5782 return "score_high.png";
5783 } else if ($score > 0) {
5784 return "score_half_high.png";
5785 } else if ($score < -100) {
5786 return "score_low.png";
5787 } else if ($score < 0) {
5788 return "score_half_low.png";
5789 } else {
5790 return "score_neutral.png";
5791 }
5792 }
5793
5794 function rounded_table_start($classname, $header = "&nbsp;") {
5795 print "<table width='100%' class='$classname' cellspacing='0' cellpadding='0'>";
5796 print "<tr><td class='c1'>&nbsp;</td><td class='top'>$header</td><td class='c2'>&nbsp;</td></tr>";
5797 print "<tr><td class='left'>&nbsp;</td><td class='content'>";
5798 }
5799
5800 function rounded_table_end($footer = "&nbsp;") {
5801 print "</td><td class='right'>&nbsp;</td></tr>";
5802 print "<tr><td class='c4'>&nbsp;</td><td class='bottom'>$footer</td><td class='c3'>&nbsp;</td></tr>";
5803 print "</table>";
5804 }
5805
5806 function feed_has_icon($id) {
5807 return is_file(ICONS_DIR . "/$id.ico") && filesize(ICONS_DIR . "/$id.ico") > 0;
5808 }
5809
5810 function init_connection($link) {
5811 if (DB_TYPE == "pgsql") {
5812 pg_query($link, "set client_encoding = 'UTF-8'");
5813 pg_set_client_encoding("UNICODE");
5814 pg_query($link, "set datestyle = 'ISO, european'");
5815 } else {
5816 if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
5817 db_query($link, "SET NAMES " . MYSQL_CHARSET);
5818 // db_query($link, "SET CHARACTER SET " . MYSQL_CHARSET);
5819 }
5820 }
5821 }
5822
5823 function update_feedbrowser_cache($link) {
5824
5825 $result = db_query($link, "SELECT feed_url,title, COUNT(id) AS subscribers
5826 FROM ttrss_feeds WHERE (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf
5827 WHERE tf.feed_url = ttrss_feeds.feed_url
5828 AND (private IS true OR feed_url LIKE '%:%@%/%'))
5829 GROUP BY feed_url, title ORDER BY subscribers DESC LIMIT 1000");
5830
5831 db_query($link, "BEGIN");
5832
5833 db_query($link, "DELETE FROM ttrss_feedbrowser_cache");
5834
5835 $count = 0;
5836
5837 while ($line = db_fetch_assoc($result)) {
5838 $subscribers = db_escape_string($line["subscribers"]);
5839 $feed_url = db_escape_string($line["feed_url"]);
5840 $title = db_escape_string($line["title"]);
5841
5842 $tmp_result = db_query($link, "SELECT subscribers FROM
5843 ttrss_feedbrowser_cache WHERE feed_url = '$feed_url'");
5844
5845 if (db_num_rows($tmp_result) == 0) {
5846
5847 db_query($link, "INSERT INTO ttrss_feedbrowser_cache
5848 (feed_url, title, subscribers) VALUES ('$feed_url',
5849 '$title', '$subscribers')");
5850
5851 ++$count;
5852
5853 }
5854
5855 }
5856
5857 db_query($link, "COMMIT");
5858
5859 return $count;
5860
5861 }
5862
5863 function ccache_zero($link, $feed_id, $owner_uid) {
5864 db_query($link, "UPDATE ttrss_counters_cache SET
5865 value = 0, updated = NOW() WHERE
5866 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
5867 }
5868
5869 function ccache_zero_all($link, $owner_uid) {
5870 db_query($link, "UPDATE ttrss_counters_cache SET
5871 value = 0 WHERE owner_uid = '$owner_uid'");
5872
5873 db_query($link, "UPDATE ttrss_cat_counters_cache SET
5874 value = 0 WHERE owner_uid = '$owner_uid'");
5875 }
5876
5877 function ccache_update_all($link, $owner_uid) {
5878
5879 if (get_pref($link, 'ENABLE_FEED_CATS', $owner_uid)) {
5880
5881 $result = db_query($link, "SELECT feed_id FROM ttrss_cat_counters_cache
5882 WHERE feed_id > 0 AND owner_uid = '$owner_uid'");
5883
5884 while ($line = db_fetch_assoc($result)) {
5885 ccache_update($link, $line["feed_id"], $owner_uid, true);
5886 }
5887
5888 /* We have to manually include category 0 */
5889
5890 ccache_update($link, 0, $owner_uid, true);
5891
5892 } else {
5893 $result = db_query($link, "SELECT feed_id FROM ttrss_counters_cache
5894 WHERE feed_id > 0 AND owner_uid = '$owner_uid'");
5895
5896 while ($line = db_fetch_assoc($result)) {
5897 print ccache_update($link, $line["feed_id"], $owner_uid);
5898
5899 }
5900
5901 }
5902 }
5903
5904 function ccache_find($link, $feed_id, $owner_uid, $is_cat = false,
5905 $no_update = false) {
5906
5907 if (!$is_cat) {
5908 $table = "ttrss_counters_cache";
5909 } else {
5910 $table = "ttrss_cat_counters_cache";
5911 }
5912
5913 if (DB_TYPE == "pgsql") {
5914 $date_qpart = "updated > NOW() - INTERVAL '15 minutes'";
5915 } else if (DB_TYPE == "mysql") {
5916 $date_qpart = "updated > DATE_SUB(NOW(), INTERVAL 15 MINUTE)";
5917 }
5918
5919 $result = db_query($link, "SELECT value FROM $table
5920 WHERE owner_uid = '$owner_uid' AND feed_id = '$feed_id'
5921 LIMIT 1");
5922
5923 if (db_num_rows($result) == 1) {
5924 return db_fetch_result($result, 0, "value");
5925 } else {
5926 if ($no_update) {
5927 return -1;
5928 } else {
5929 return ccache_update($link, $feed_id, $owner_uid, $is_cat);
5930 }
5931 }
5932
5933 }
5934
5935 function ccache_update($link, $feed_id, $owner_uid, $is_cat = false,
5936 $update_pcat = true) {
5937
5938 $prev_unread = ccache_find($link, $feed_id, $owner_uid, $is_cat, true);
5939
5940 /* When updating a label, all we need to do is recalculate feed counters
5941 * because labels are not cached */
5942
5943 if ($feed_id < 0) {
5944 ccache_update_all($link, $owner_uid);
5945 return;
5946 }
5947
5948 if (!$is_cat) {
5949 $table = "ttrss_counters_cache";
5950 } else {
5951 $table = "ttrss_cat_counters_cache";
5952 }
5953
5954 if ($is_cat && $feed_id >= 0) {
5955 if ($feed_id != 0) {
5956 $cat_qpart = "cat_id = '$feed_id'";
5957 } else {
5958 $cat_qpart = "cat_id IS NULL";
5959 }
5960
5961 /* Recalculate counters for child feeds */
5962
5963 $result = db_query($link, "SELECT id FROM ttrss_feeds
5964 WHERE owner_uid = '$owner_uid' AND $cat_qpart");
5965
5966 while ($line = db_fetch_assoc($result)) {
5967 ccache_update($link, $line["id"], $owner_uid, false, false);
5968 }
5969
5970 $result = db_query($link, "SELECT SUM(value) AS sv
5971 FROM ttrss_counters_cache, ttrss_feeds
5972 WHERE id = feed_id AND $cat_qpart AND
5973 ttrss_feeds.owner_uid = '$owner_uid'");
5974
5975 $unread = (int) db_fetch_result($result, 0, "sv");
5976
5977 } else {
5978 $unread = (int) getFeedArticles($link, $feed_id, $is_cat, true, $owner_uid);
5979 }
5980
5981 $result = db_query($link, "SELECT feed_id FROM $table
5982 WHERE owner_uid = '$owner_uid' AND feed_id = '$feed_id' LIMIT 1");
5983
5984 if (db_num_rows($result) == 1) {
5985 db_query($link, "UPDATE $table SET
5986 value = '$unread', updated = NOW() WHERE
5987 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
5988
5989 } else {
5990 db_query($link, "INSERT INTO $table
5991 (feed_id, value, owner_uid, updated)
5992 VALUES
5993 ($feed_id, $unread, $owner_uid, NOW())");
5994 }
5995
5996 if ($feed_id > 0 && $prev_unread != $unread) {
5997
5998 if (!$is_cat) {
5999
6000 /* Update parent category */
6001
6002 if ($update_pcat) {
6003
6004 $result = db_query($link, "SELECT cat_id FROM ttrss_feeds
6005 WHERE owner_uid = '$owner_uid' AND id = '$feed_id'");
6006
6007 $cat_id = (int) db_fetch_result($result, 0, "cat_id");
6008
6009 ccache_update($link, $cat_id, $owner_uid, true);
6010
6011 }
6012 }
6013 } else if ($feed_id < 0) {
6014 ccache_update_all($link, $owner_uid);
6015 }
6016
6017 return $unread;
6018 }
6019
6020 function label_find_id($link, $label, $owner_uid) {
6021 $result = db_query($link,
6022 "SELECT id FROM ttrss_labels2 WHERE caption = '$label'
6023 AND owner_uid = '$owner_uid' LIMIT 1");
6024
6025 if (db_num_rows($result) == 1) {
6026 return db_fetch_result($result, 0, "id");
6027 } else {
6028 return 0;
6029 }
6030 }
6031
6032 function get_article_labels($link, $id) {
6033 $result = db_query($link,
6034 "SELECT DISTINCT label_id,caption
6035 FROM ttrss_labels2, ttrss_user_labels2
6036 WHERE id = label_id
6037 AND article_id = '$id'
6038 AND owner_uid = ".$_SESSION["uid"] . "
6039 ORDER BY caption");
6040
6041 $rv = array();
6042
6043 while ($line = db_fetch_assoc($result)) {
6044 $rk = array($line["label_id"], $line["caption"]);
6045 array_push($rv, $rk);
6046 }
6047
6048 return $rv;
6049 }
6050
6051
6052 function label_find_caption($link, $label, $owner_uid) {
6053 $result = db_query($link,
6054 "SELECT caption FROM ttrss_labels2 WHERE id = '$label'
6055 AND owner_uid = '$owner_uid' LIMIT 1");
6056
6057 if (db_num_rows($result) == 1) {
6058 return db_fetch_result($result, 0, "caption");
6059 } else {
6060 return "";
6061 }
6062 }
6063
6064 function label_remove_article($link, $id, $label, $owner_uid) {
6065
6066 $label_id = label_find_id($link, $label, $owner_uid);
6067
6068 if (!$label_id) return;
6069
6070 $result = db_query($link,
6071 "DELETE FROM ttrss_user_labels2
6072 WHERE
6073 label_id = '$label_id' AND
6074 article_id = '$id'");
6075 }
6076
6077 function label_add_article($link, $id, $label, $owner_uid) {
6078
6079 $label_id = label_find_id($link, $label, $owner_uid);
6080
6081 if (!$label_id) return;
6082
6083 $result = db_query($link,
6084 "SELECT
6085 article_id FROM ttrss_labels2, ttrss_user_labels2
6086 WHERE
6087 label_id = id AND
6088 label_id = '$label_id' AND
6089 article_id = '$id' AND owner_uid = '$owner_uid'
6090 LIMIT 1");
6091
6092 if (db_num_rows($result) == 0) {
6093 db_query($link, "INSERT INTO ttrss_user_labels2
6094 (label_id, article_id) VALUES ('$label_id', '$id')");
6095 }
6096 }
6097
6098 function label_remove($link, $id, $owner_uid) {
6099
6100 db_query($link, "BEGIN");
6101
6102 $result = db_query($link, "SELECT caption FROM ttrss_labels2
6103 WHERE id = '$id'");
6104
6105 $caption = db_fetch_result($result, 0, "caption");
6106
6107 $result = db_query($link, "DELETE FROM ttrss_labels2 WHERE id = '$id'
6108 AND owner_uid = " . $_SESSION["uid"]);
6109
6110 if (db_affected_rows($link, $result) != 0 && $caption) {
6111
6112 /* Disable filters that reference label being removed */
6113
6114 db_query($link, "UPDATE ttrss_filters SET
6115 enabled = false WHERE action_param = '$caption'
6116 AND action_id = 7
6117 AND owner_uid = " . $_SESSION["uid"]);
6118 }
6119
6120 db_query($link, "COMMIT");
6121 }
6122 ?>