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