]> git.wh0rd.org Git - tt-rss.git/blob - include/functions.php
632c1e628134964790b33f8c51e4022b808a99e5
[tt-rss.git] / include / functions.php
1 <?php
2         define('EXPECTED_CONFIG_VERSION', 25);
3         define('SCHEMA_VERSION', 94);
4
5         $fetch_last_error = false;
6
7         function __autoload($class) {
8                 $class_file = str_replace("_", "/", strtolower(basename($class)));
9
10                 $file = dirname(__FILE__)."/../classes/$class_file.php";
11
12                 if (file_exists($file)) {
13                         require $file;
14                 }
15         }
16
17         mb_internal_encoding("UTF-8");
18         date_default_timezone_set('UTC');
19         if (defined('E_DEPRECATED')) {
20                 error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
21         } else {
22                 error_reporting(E_ALL & ~E_NOTICE);
23         }
24
25         require_once 'config.php';
26
27         if (DB_TYPE == "pgsql") {
28                 define('SUBSTRING_FOR_DATE', 'SUBSTRING_FOR_DATE');
29         } else {
30                 define('SUBSTRING_FOR_DATE', 'SUBSTRING');
31         }
32
33         define('THEME_VERSION_REQUIRED', 1.1);
34
35         /**
36          * Return available translations names.
37          *
38          * @access public
39          * @return array A array of available translations.
40          */
41         function get_translations() {
42                 $tr = array(
43                                         "auto"  => "Detect automatically",
44                                         "ca_CA" => "Català",
45                                         "en_US" => "English",
46                                         "es_ES" => "Español",
47                                         "de_DE" => "Deutsch",
48                                         "fr_FR" => "Français",
49                                         "hu_HU" => "Magyar (Hungarian)",
50                                         "it_IT" => "Italiano",
51                                         "ja_JP" => "日本語 (Japanese)",
52                                         "nb_NO" => "Norwegian bokmål",
53                                         "ru_RU" => "Русский",
54                                         "pt_BR" => "Portuguese/Brazil",
55                                         "zh_CN" => "Simplified Chinese");
56
57                 return $tr;
58         }
59
60         require_once "lib/accept-to-gettext.php";
61         require_once "lib/gettext/gettext.inc";
62
63         function startup_gettext() {
64
65                 # Get locale from Accept-Language header
66                 $lang = al2gt(array_keys(get_translations()), "text/html");
67
68                 if (defined('_TRANSLATION_OVERRIDE_DEFAULT')) {
69                         $lang = _TRANSLATION_OVERRIDE_DEFAULT;
70                 }
71
72                 if ($_COOKIE["ttrss_lang"] && $_COOKIE["ttrss_lang"] != "auto") {
73                         $lang = $_COOKIE["ttrss_lang"];
74                 }
75
76                 /* In login action of mobile version */
77                 if ($_POST["language"] && defined('MOBILE_VERSION')) {
78                         $lang = $_POST["language"];
79                         $_COOKIE["ttrss_lang"] = $lang;
80                 }
81
82                 if ($lang) {
83                         if (defined('LC_MESSAGES')) {
84                                 _setlocale(LC_MESSAGES, $lang);
85                         } else if (defined('LC_ALL')) {
86                                 _setlocale(LC_ALL, $lang);
87                         }
88
89                         if (defined('MOBILE_VERSION')) {
90                                 _bindtextdomain("messages", "../locale");
91                         } else {
92                                 _bindtextdomain("messages", "locale");
93                         }
94
95                         _textdomain("messages");
96                         _bind_textdomain_codeset("messages", "UTF-8");
97                 }
98         }
99
100         startup_gettext();
101
102         require_once 'db-prefs.php';
103         require_once 'version.php';
104
105         define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');
106
107         define('SELF_USER_AGENT', 'Tiny Tiny RSS/' . VERSION . ' (http://tt-rss.org/)');
108         define('MAGPIE_USER_AGENT', SELF_USER_AGENT);
109
110         ini_set('user_agent', SELF_USER_AGENT);
111
112         require_once 'lib/pubsubhubbub/publisher.php';
113
114         $purifier = false;
115
116         $tz_offset = -1;
117         $utc_tz = new DateTimeZone('UTC');
118         $schema_version = false;
119
120         /**
121          * Print a timestamped debug message.
122          *
123          * @param string $msg The debug message.
124          * @return void
125          */
126         function _debug($msg) {
127                 if (defined('QUIET') && QUIET) {
128                         return;
129                 }
130                 $ts = strftime("%H:%M:%S", time());
131                 if (function_exists('posix_getpid')) {
132                         $ts = "$ts/" . posix_getpid();
133                 }
134                 print "[$ts] $msg\n";
135         } // function _debug
136
137         /**
138          * Purge a feed old posts.
139          *
140          * @param mixed $link A database connection.
141          * @param mixed $feed_id The id of the purged feed.
142          * @param mixed $purge_interval Olderness of purged posts.
143          * @param boolean $debug Set to True to enable the debug. False by default.
144          * @access public
145          * @return void
146          */
147         function purge_feed($link, $feed_id, $purge_interval, $debug = false) {
148
149                 if (!$purge_interval) $purge_interval = feed_purge_interval($link, $feed_id);
150
151                 $rows = -1;
152
153                 $result = db_query($link,
154                         "SELECT owner_uid FROM ttrss_feeds WHERE id = '$feed_id'");
155
156                 $owner_uid = false;
157
158                 if (db_num_rows($result) == 1) {
159                         $owner_uid = db_fetch_result($result, 0, "owner_uid");
160                 }
161
162                 if ($purge_interval == -1 || !$purge_interval) {
163                         if ($owner_uid) {
164                                 ccache_update($link, $feed_id, $owner_uid);
165                         }
166                         return;
167                 }
168
169                 if (!$owner_uid) return;
170
171                 if (FORCE_ARTICLE_PURGE == 0) {
172                         $purge_unread = get_pref($link, "PURGE_UNREAD_ARTICLES",
173                                 $owner_uid, false);
174                 } else {
175                         $purge_unread = true;
176                         $purge_interval = FORCE_ARTICLE_PURGE;
177                 }
178
179                 if (!$purge_unread) $query_limit = " unread = false AND ";
180
181                 if (DB_TYPE == "pgsql") {
182                         $pg_version = get_pgsql_version($link);
183
184                         if (preg_match("/^7\./", $pg_version) || preg_match("/^8\.0/", $pg_version)) {
185
186                                 $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
187                                         ttrss_entries.id = ref_id AND
188                                         marked = false AND
189                                         feed_id = '$feed_id' AND
190                                         $query_limit
191                                         ttrss_entries.date_updated < NOW() - INTERVAL '$purge_interval days'");
192
193                         } else {
194
195                                 $result = db_query($link, "DELETE FROM ttrss_user_entries
196                                         USING ttrss_entries
197                                         WHERE ttrss_entries.id = ref_id AND
198                                         marked = false AND
199                                         feed_id = '$feed_id' AND
200                                         $query_limit
201                                         ttrss_entries.date_updated < NOW() - INTERVAL '$purge_interval days'");
202                         }
203
204                         $rows = pg_affected_rows($result);
205
206                 } else {
207
208 /*                      $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
209                                 marked = false AND feed_id = '$feed_id' AND
210                                 (SELECT date_updated FROM ttrss_entries WHERE
211                                         id = ref_id) < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)"); */
212
213                         $result = db_query($link, "DELETE FROM ttrss_user_entries
214                                 USING ttrss_user_entries, ttrss_entries
215                                 WHERE ttrss_entries.id = ref_id AND
216                                 marked = false AND
217                                 feed_id = '$feed_id' AND
218                                 $query_limit
219                                 ttrss_entries.date_updated < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)");
220
221                         $rows = mysql_affected_rows($link);
222
223                 }
224
225                 ccache_update($link, $feed_id, $owner_uid);
226
227                 if ($debug) {
228                         _debug("Purged feed $feed_id ($purge_interval): deleted $rows articles");
229                 }
230         } // function purge_feed
231
232         function feed_purge_interval($link, $feed_id) {
233
234                 $result = db_query($link, "SELECT purge_interval, owner_uid FROM ttrss_feeds
235                         WHERE id = '$feed_id'");
236
237                 if (db_num_rows($result) == 1) {
238                         $purge_interval = db_fetch_result($result, 0, "purge_interval");
239                         $owner_uid = db_fetch_result($result, 0, "owner_uid");
240
241                         if ($purge_interval == 0) $purge_interval = get_pref($link,
242                                 'PURGE_OLD_DAYS', $owner_uid);
243
244                         return $purge_interval;
245
246                 } else {
247                         return -1;
248                 }
249         }
250
251         function purge_orphans($link, $do_output = false) {
252
253                 // purge orphaned posts in main content table
254                 $result = db_query($link, "DELETE FROM ttrss_entries WHERE
255                         (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
256
257                 if ($do_output) {
258                         $rows = db_affected_rows($link, $result);
259                         _debug("Purged $rows orphaned posts.");
260                 }
261         }
262
263         function get_feed_update_interval($link, $feed_id) {
264                 $result = db_query($link, "SELECT owner_uid, update_interval FROM
265                         ttrss_feeds WHERE id = '$feed_id'");
266
267                 if (db_num_rows($result) == 1) {
268                         $update_interval = db_fetch_result($result, 0, "update_interval");
269                         $owner_uid = db_fetch_result($result, 0, "owner_uid");
270
271                         if ($update_interval != 0) {
272                                 return $update_interval;
273                         } else {
274                                 return get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $owner_uid, false);
275                         }
276
277                 } else {
278                         return -1;
279                 }
280         }
281
282         function fetch_file_contents($url, $type = false, $login = false, $pass = false, $post_query = false) {
283                 $login = urlencode($login);
284                 $pass = urlencode($pass);
285
286                 global $fetch_last_error;
287
288                 if (function_exists('curl_init') && !ini_get("open_basedir")) {
289                         $ch = curl_init($url);
290
291                         curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);
292                         curl_setopt($ch, CURLOPT_TIMEOUT, 45);
293                         curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
294                         curl_setopt($ch, CURLOPT_MAXREDIRS, 20);
295                         curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
296                         curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
297                         curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
298                         curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
299                         curl_setopt($ch, CURLOPT_USERAGENT, SELF_USER_AGENT);
300                         curl_setopt($ch, CURLOPT_ENCODING , "gzip");
301
302                         if ($post_query) {
303                                 curl_setopt($ch, CURLOPT_POST, true);
304                                 curl_setopt($ch, CURLOPT_POSTFIELDS, $post_query);
305                         }
306
307                         if ($login && $pass)
308                                 curl_setopt($ch, CURLOPT_USERPWD, "$login:$pass");
309
310                         $contents = @curl_exec($ch);
311
312                         if ($contents === false) {
313                                 $fetch_last_error = curl_error($ch);
314                                 curl_close($ch);
315                                 return false;
316                         }
317
318                         $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
319                         $content_type = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
320                         curl_close($ch);
321
322                         if ($http_code != 200 || $type && strpos($content_type, "$type") === false) {
323                                 return false;
324                         }
325
326                         return $contents;
327                 } else {
328                         if ($login && $pass ){
329                                 $url_parts = array();
330
331                                 preg_match("/(^[^:]*):\/\/(.*)/", $url, $url_parts);
332
333                                 if ($url_parts[1] && $url_parts[2]) {
334                                         $url = $url_parts[1] . "://$login:$pass@" . $url_parts[2];
335                                 }
336                         }
337
338                         $data = @file_get_contents($url);
339
340                         if (!$data && function_exists('error_get_last')) {
341                                 $error = error_get_last();
342                                 $fetch_last_error = $error["message"];
343                         }
344                         return $data;
345                 }
346
347         }
348
349         /**
350          * Try to determine the favicon URL for a feed.
351          * adapted from wordpress favicon plugin by Jeff Minard (http://thecodepro.com/)
352          * http://dev.wp-plugins.org/file/favatars/trunk/favatars.php
353          *
354          * @param string $url A feed or page URL
355          * @access public
356          * @return mixed The favicon URL, or false if none was found.
357          */
358         function get_favicon_url($url) {
359
360                 $favicon_url = false;
361
362                 if ($html = @fetch_file_contents($url)) {
363
364                         libxml_use_internal_errors(true);
365
366                         $doc = new DOMDocument();
367                         $doc->loadHTML($html);
368                         $xpath = new DOMXPath($doc);
369
370                         $base = $xpath->query('/html/head/base');
371                         foreach ($base as $b) {
372                                 $url = $b->getAttribute("href");
373                                 break;
374                         }
375
376                         $entries = $xpath->query('/html/head/link[@rel="shortcut icon" or @rel="icon"]');
377                         if (count($entries) > 0) {
378                                 foreach ($entries as $entry) {
379                                         $favicon_url = rewrite_relative_url($url, $entry->getAttribute("href"));
380                                         break;
381                                 }
382                         }
383                 }
384
385                 if (!$favicon_url)
386                         $favicon_url = rewrite_relative_url($url, "/favicon.ico");
387
388                 return $favicon_url;
389         } // function get_favicon_url
390
391         function check_feed_favicon($site_url, $feed, $link) {
392 #               print "FAVICON [$site_url]: $favicon_url\n";
393
394                 $icon_file = ICONS_DIR . "/$feed.ico";
395
396                 if (!file_exists($icon_file)) {
397                         $favicon_url = get_favicon_url($site_url);
398
399                         if ($favicon_url) {
400                                 // Limiting to "image" type misses those served with text/plain
401                                 $contents = fetch_file_contents($favicon_url); // , "image");
402
403                                 if ($contents) {
404                                         // Crude image type matching.
405                                         // Patterns gleaned from the file(1) source code.
406                                         if (preg_match('/^\x00\x00\x01\x00/', $contents)) {
407                                                 // 0       string  \000\000\001\000        MS Windows icon resource
408                                                 //error_log("check_feed_favicon: favicon_url=$favicon_url isa MS Windows icon resource");
409                                         }
410                                         elseif (preg_match('/^GIF8/', $contents)) {
411                                                 // 0       string          GIF8            GIF image data
412                                                 //error_log("check_feed_favicon: favicon_url=$favicon_url isa GIF image");
413                                         }
414                                         elseif (preg_match('/^\x89PNG\x0d\x0a\x1a\x0a/', $contents)) {
415                                                 // 0       string          \x89PNG\x0d\x0a\x1a\x0a         PNG image data
416                                                 //error_log("check_feed_favicon: favicon_url=$favicon_url isa PNG image");
417                                         }
418                                         elseif (preg_match('/^\xff\xd8/', $contents)) {
419                                                 // 0       beshort         0xffd8          JPEG image data
420                                                 //error_log("check_feed_favicon: favicon_url=$favicon_url isa JPG image");
421                                         }
422                                         else {
423                                                 //error_log("check_feed_favicon: favicon_url=$favicon_url isa UNKNOWN type");
424                                                 $contents = "";
425                                         }
426                                 }
427
428                                 if ($contents) {
429                                         $fp = @fopen($icon_file, "w");
430
431                                         if ($fp) {
432                                                 fwrite($fp, $contents);
433                                                 fclose($fp);
434                                                 chmod($icon_file, 0644);
435                                         }
436                                 }
437                         }
438                 }
439         }
440
441         function print_select($id, $default, $values, $attributes = "") {
442                 print "<select name=\"$id\" id=\"$id\" $attributes>";
443                 foreach ($values as $v) {
444                         if ($v == $default)
445                                 $sel = "selected=\"1\"";
446                          else
447                                 $sel = "";
448
449                         print "<option value=\"$v\" $sel>$v</option>";
450                 }
451                 print "</select>";
452         }
453
454         function print_select_hash($id, $default, $values, $attributes = "") {
455                 print "<select name=\"$id\" id='$id' $attributes>";
456                 foreach (array_keys($values) as $v) {
457                         if ($v == $default)
458                                 $sel = 'selected="selected"';
459                          else
460                                 $sel = "";
461
462                         print "<option $sel value=\"$v\">".$values[$v]."</option>";
463                 }
464
465                 print "</select>";
466         }
467
468         function get_article_filters($filters, $title, $content, $link, $timestamp, $author, $tags) {
469                 $matches = array();
470
471                 if ($filters["title"]) {
472                         foreach ($filters["title"] as $filter) {
473                                 $reg_exp = $filter["reg_exp"];
474                                 $inverse = $filter["inverse"];
475                                 if ((!$inverse && @preg_match("/$reg_exp/i", $title)) ||
476                                                 ($inverse && !@preg_match("/$reg_exp/i", $title))) {
477
478                                         array_push($matches, array($filter["action"], $filter["action_param"]));
479                                 }
480                         }
481                 }
482
483                 if ($filters["content"]) {
484                         foreach ($filters["content"] as $filter) {
485                                 $reg_exp = $filter["reg_exp"];
486                                 $inverse = $filter["inverse"];
487
488                                 if ((!$inverse && @preg_match("/$reg_exp/i", $content)) ||
489                                                 ($inverse && !@preg_match("/$reg_exp/i", $content))) {
490
491                                         array_push($matches, array($filter["action"], $filter["action_param"]));
492                                 }
493                         }
494                 }
495
496                 if ($filters["both"]) {
497                         foreach ($filters["both"] as $filter) {
498                                 $reg_exp = $filter["reg_exp"];
499                                 $inverse = $filter["inverse"];
500
501                                 if ($inverse) {
502                                         if (!@preg_match("/$reg_exp/i", $title) && !preg_match("/$reg_exp/i", $content)) {
503                                                 array_push($matches, array($filter["action"], $filter["action_param"]));
504                                         }
505                                 } else {
506                                         if (@preg_match("/$reg_exp/i", $title) || preg_match("/$reg_exp/i", $content)) {
507                                                 array_push($matches, array($filter["action"], $filter["action_param"]));
508                                         }
509                                 }
510                         }
511                 }
512
513                 if ($filters["link"]) {
514                         $reg_exp = $filter["reg_exp"];
515                         foreach ($filters["link"] as $filter) {
516                                 $reg_exp = $filter["reg_exp"];
517                                 $inverse = $filter["inverse"];
518
519                                 if ((!$inverse && @preg_match("/$reg_exp/i", $link)) ||
520                                                 ($inverse && !@preg_match("/$reg_exp/i", $link))) {
521
522                                         array_push($matches, array($filter["action"], $filter["action_param"]));
523                                 }
524                         }
525                 }
526
527                 if ($filters["date"]) {
528                         $reg_exp = $filter["reg_exp"];
529                         foreach ($filters["date"] as $filter) {
530                                 $date_modifier = $filter["filter_param"];
531                                 $inverse = $filter["inverse"];
532                                 $check_timestamp = strtotime($filter["reg_exp"]);
533
534                                 # no-op when timestamp doesn't parse to prevent misfires
535
536                                 if ($check_timestamp) {
537                                         $match_ok = false;
538
539                                         if ($date_modifier == "before" && $timestamp < $check_timestamp ||
540                                                 $date_modifier == "after" && $timestamp > $check_timestamp) {
541                                                         $match_ok = true;
542                                         }
543
544                                         if ($inverse) $match_ok = !$match_ok;
545
546                                         if ($match_ok) {
547                                                 array_push($matches, array($filter["action"], $filter["action_param"]));
548                                         }
549                                 }
550                         }
551                 }
552
553                 if ($filters["author"]) {
554                         foreach ($filters["author"] as $filter) {
555                                 $reg_exp = $filter["reg_exp"];
556                                 $inverse = $filter["inverse"];
557                                 if ((!$inverse && @preg_match("/$reg_exp/i", $author)) ||
558                                                 ($inverse && !@preg_match("/$reg_exp/i", $author))) {
559
560                                         array_push($matches, array($filter["action"], $filter["action_param"]));
561                                 }
562                         }
563                 }
564
565                 if ($filters["tag"]) {
566
567                         $tag_string = join(",", $tags);
568
569                         foreach ($filters["tag"] as $filter) {
570                                 $reg_exp = $filter["reg_exp"];
571                                 $inverse = $filter["inverse"];
572
573                                 if ((!$inverse && @preg_match("/$reg_exp/i", $tag_string)) ||
574                                                 ($inverse && !@preg_match("/$reg_exp/i", $tag_string))) {
575
576                                         array_push($matches, array($filter["action"], $filter["action_param"]));
577                                 }
578                         }
579                 }
580
581
582                 return $matches;
583         }
584
585         function find_article_filter($filters, $filter_name) {
586                 foreach ($filters as $f) {
587                         if ($f[0] == $filter_name) {
588                                 return $f;
589                         };
590                 }
591                 return false;
592         }
593
594         function calculate_article_score($filters) {
595                 $score = 0;
596
597                 foreach ($filters as $f) {
598                         if ($f[0] == "score") {
599                                 $score += $f[1];
600                         };
601                 }
602                 return $score;
603         }
604
605         function assign_article_to_labels($link, $id, $filters, $owner_uid) {
606                 foreach ($filters as $f) {
607                         if ($f[0] == "label") {
608                                 label_add_article($link, $id, $f[1], $owner_uid);
609                         };
610                 }
611         }
612
613         function getmicrotime() {
614                 list($usec, $sec) = explode(" ",microtime());
615                 return ((float)$usec + (float)$sec);
616         }
617
618         function print_radio($id, $default, $true_is, $values, $attributes = "") {
619                 foreach ($values as $v) {
620
621                         if ($v == $default)
622                                 $sel = "checked";
623                          else
624                                 $sel = "";
625
626                         if ($v == $true_is) {
627                                 $sel .= " value=\"1\"";
628                         } else {
629                                 $sel .= " value=\"0\"";
630                         }
631
632                         print "<input class=\"noborder\" dojoType=\"dijit.form.RadioButton\"
633                                 type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
634
635                 }
636         }
637
638         function initialize_user_prefs($link, $uid, $profile = false) {
639
640                 $uid = db_escape_string($uid);
641
642                 if (!$profile) {
643                         $profile = "NULL";
644                         $profile_qpart = "AND profile IS NULL";
645                 } else {
646                         $profile_qpart = "AND profile = '$profile'";
647                 }
648
649                 if (get_schema_version($link) < 63) $profile_qpart = "";
650
651                 db_query($link, "BEGIN");
652
653                 $result = db_query($link, "SELECT pref_name,def_value FROM ttrss_prefs");
654
655                 $u_result = db_query($link, "SELECT pref_name
656                         FROM ttrss_user_prefs WHERE owner_uid = '$uid' $profile_qpart");
657
658                 $active_prefs = array();
659
660                 while ($line = db_fetch_assoc($u_result)) {
661                         array_push($active_prefs, $line["pref_name"]);
662                 }
663
664                 while ($line = db_fetch_assoc($result)) {
665                         if (array_search($line["pref_name"], $active_prefs) === FALSE) {
666 //                              print "adding " . $line["pref_name"] . "<br>";
667
668                                 if (get_schema_version($link) < 63) {
669                                         db_query($link, "INSERT INTO ttrss_user_prefs
670                                                 (owner_uid,pref_name,value) VALUES
671                                                 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."')");
672
673                                 } else {
674                                         db_query($link, "INSERT INTO ttrss_user_prefs
675                                                 (owner_uid,pref_name,value, profile) VALUES
676                                                 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."', $profile)");
677                                 }
678
679                         }
680                 }
681
682                 db_query($link, "COMMIT");
683
684         }
685
686         function get_ssl_certificate_id() {
687                 if ($_SERVER["REDIRECT_SSL_CLIENT_M_SERIAL"]) {
688                         return sha1($_SERVER["REDIRECT_SSL_CLIENT_M_SERIAL"] .
689                                 $_SERVER["REDIRECT_SSL_CLIENT_V_START"] .
690                                 $_SERVER["REDIRECT_SSL_CLIENT_V_END"] .
691                                 $_SERVER["REDIRECT_SSL_CLIENT_S_DN"]);
692                 }
693                 return "";
694         }
695
696         function authenticate_user($link, $login, $password, $check_only = false) {
697
698                 if (!SINGLE_USER_MODE) {
699
700                         $user_id = false;
701                         $modules = explode(",", AUTH_MODULES);
702
703                         foreach ($modules as $module) {
704                                 $module_class = "auth_$module";
705                                 if (class_exists($module_class)) {
706                                         $authenticator = new $module_class($link);
707
708                                         $user_id = (int) $authenticator->authenticate($login, $password);
709
710                                         if ($user_id) {
711                                                 $_SESSION["auth_module"] = $module;
712                                                 break;
713                                         }
714
715                                 } else {
716                                         print T_sprintf("Fatal: authentication module %s not found.", $module);
717                                         die;
718                                 }
719                         }
720
721                         if ($user_id && !$check_only) {
722                                 $_SESSION["uid"] = $user_id;
723
724                                 $result = db_query($link, "SELECT login,access_level,pwd_hash FROM ttrss_users
725                                         WHERE id = '$user_id'");
726
727                                 $_SESSION["name"] = db_fetch_result($result, 0, "login");
728                                 $_SESSION["access_level"] = db_fetch_result($result, 0, "access_level");
729                                 $_SESSION["csrf_token"] = sha1(uniqid(rand(), true));
730
731                                 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
732                                         $_SESSION["uid"]);
733
734                                 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
735                                 $_SESSION["pwd_hash"] = db_fetch_result($result, 0, "pwd_hash");
736
737                                 $_SESSION["last_version_check"] = time();
738
739                                 initialize_user_prefs($link, $_SESSION["uid"]);
740
741                                 return true;
742                         }
743
744                         return false;
745
746                 } else {
747
748                         $_SESSION["uid"] = 1;
749                         $_SESSION["name"] = "admin";
750                         $_SESSION["access_level"] = 10;
751
752                         $_SESSION["hide_hello"] = true;
753                         $_SESSION["hide_logout"] = true;
754
755                         $_SESSION["auth_module"] = false;
756
757                         if (!$_SESSION["csrf_token"]) {
758                                 $_SESSION["csrf_token"] = sha1(uniqid(rand(), true));
759                         }
760
761                         $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
762
763                         initialize_user_prefs($link, $_SESSION["uid"]);
764
765                         return true;
766                 }
767         }
768
769         function make_password($length = 8) {
770
771                 $password = "";
772                 $possible = "0123456789abcdfghjkmnpqrstvwxyzABCDFGHJKMNPQRSTVWXYZ";
773
774         $i = 0;
775
776                 while ($i < $length) {
777                         $char = substr($possible, mt_rand(0, strlen($possible)-1), 1);
778
779                         if (!strstr($password, $char)) {
780                                 $password .= $char;
781                                 $i++;
782                         }
783                 }
784                 return $password;
785         }
786
787         // this is called after user is created to initialize default feeds, labels
788         // or whatever else
789
790         // user preferences are checked on every login, not here
791
792         function initialize_user($link, $uid) {
793
794                 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
795                         values ('$uid', 'Tiny Tiny RSS: New Releases',
796                         'http://tt-rss.org/releases.rss')");
797
798                 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
799                         values ('$uid', 'Tiny Tiny RSS: Forum',
800                                 'http://tt-rss.org/forum/rss.php')");
801         }
802
803         function logout_user() {
804                 session_destroy();
805                 if (isset($_COOKIE[session_name()])) {
806                    setcookie(session_name(), '', time()-42000, '/');
807                 }
808         }
809
810         function validate_csrf($csrf_token) {
811                 return $csrf_token == $_SESSION['csrf_token'];
812         }
813
814         function validate_session($link) {
815                 if (SINGLE_USER_MODE) return true;
816
817                 $check_ip = $_SESSION['ip_address'];
818
819                 switch (SESSION_CHECK_ADDRESS) {
820                 case 0:
821                         $check_ip = '';
822                         break;
823                 case 1:
824                         $check_ip = substr($check_ip, 0, strrpos($check_ip, '.')+1);
825                         break;
826                 case 2:
827                         $check_ip = substr($check_ip, 0, strrpos($check_ip, '.'));
828                         $check_ip = substr($check_ip, 0, strrpos($check_ip, '.')+1);
829                         break;
830                 };
831
832                 if ($check_ip && strpos($_SERVER['REMOTE_ADDR'], $check_ip) !== 0) {
833                         $_SESSION["login_error_msg"] =
834                                 __("Session failed to validate (incorrect IP)");
835                         return false;
836                 }
837
838                 if ($_SESSION["ref_schema_version"] != get_schema_version($link, true))
839                         return false;
840
841                 if ($_SESSION["uid"]) {
842
843                         $result = db_query($link,
844                                 "SELECT pwd_hash FROM ttrss_users WHERE id = '".$_SESSION["uid"]."'");
845
846                         $pwd_hash = db_fetch_result($result, 0, "pwd_hash");
847
848                         if ($pwd_hash != $_SESSION["pwd_hash"]) {
849                                 return false;
850                         }
851                 }
852
853 /*              if ($_SESSION["cookie_lifetime"] && $_SESSION["uid"]) {
854
855                         //print_r($_SESSION);
856
857                         if (time() > $_SESSION["cookie_lifetime"]) {
858                                 return false;
859                         }
860                 } */
861
862                 return true;
863         }
864
865         function login_sequence($link, $mobile = false) {
866                 $_SESSION["prefs_cache"] = array();
867
868                 if (!SINGLE_USER_MODE) {
869
870                         $login_action = $_POST["login_action"];
871
872                         # try to authenticate user if called from login form
873                         if ($login_action == "do_login") {
874                                 $login = db_escape_string($_POST["login"]);
875                                 $password = $_POST["password"];
876                                 $remember_me = $_POST["remember_me"];
877
878                                 if (authenticate_user($link, $login, $password)) {
879                                         $_POST["password"] = "";
880
881                                         $_SESSION["language"] = $_POST["language"];
882                                         $_SESSION["ref_schema_version"] = get_schema_version($link, true);
883                                         $_SESSION["bw_limit"] = !!$_POST["bw_limit"];
884
885                                         if ($_POST["profile"]) {
886
887                                                 $profile = db_escape_string($_POST["profile"]);
888
889                                                 $result = db_query($link, "SELECT id FROM ttrss_settings_profiles
890                                                         WHERE id = '$profile' AND owner_uid = " . $_SESSION["uid"]);
891
892                                                 if (db_num_rows($result) != 0) {
893                                                         $_SESSION["profile"] = $profile;
894                                                         $_SESSION["prefs_cache"] = array();
895                                                 }
896                                         }
897
898                                         if ($_REQUEST['return']) {
899                                                 header("Location: " . $_REQUEST['return']);
900                                         } else {
901                                                 header("Location: " . $_SERVER["REQUEST_URI"]);
902                                         }
903
904                                         exit;
905
906                                         return;
907                                 } else {
908                                         $_SESSION["login_error_msg"] = __("Incorrect username or password");
909                                 }
910                         }
911
912                         if (!$_SESSION["uid"] || !validate_session($link)) {
913
914                                 if (AUTH_AUTO_LOGIN && authenticate_user($link, null, null)) {
915                                     $_SESSION["ref_schema_version"] = get_schema_version($link, true);
916                                 } else {
917                                          authenticate_user($link, null, null, true);
918                                     render_login_form($link, $mobile);
919                                     exit;
920                                 }
921                         } else {
922                                 /* bump login timestamp */
923                                 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
924                                         $_SESSION["uid"]);
925
926                                 if ($_SESSION["language"] && SESSION_COOKIE_LIFETIME > 0) {
927                                         setcookie("ttrss_lang", $_SESSION["language"],
928                                                 time() + SESSION_COOKIE_LIFETIME);
929                                 }
930
931                                 // try to remove possible duplicates from feed counter cache
932 //                              ccache_cleanup($link, $_SESSION["uid"]);
933                         }
934
935                 } else {
936                         return authenticate_user($link, "admin", null);
937                 }
938         }
939
940         function truncate_string($str, $max_len, $suffix = '&hellip;') {
941                 if (mb_strlen($str, "utf-8") > $max_len - 3) {
942                         return mb_substr($str, 0, $max_len, "utf-8") . $suffix;
943                 } else {
944                         return $str;
945                 }
946         }
947
948         function theme_image($link, $filename) {
949                 if ($link) {
950                         $theme_path = get_user_theme_path($link);
951
952                         if ($theme_path && is_file($theme_path.$filename)) {
953                                 return $theme_path.$filename;
954                         } else {
955                                 return $filename;
956                         }
957                 } else {
958                         return $filename;
959                 }
960         }
961
962         function get_user_theme($link) {
963
964                 if (get_schema_version($link) >= 63 && $_SESSION["uid"]) {
965                         $theme_name = get_pref($link, "_THEME_ID");
966                         if (is_dir("themes/$theme_name")) {
967                                 return $theme_name;
968                         } else {
969                                 return '';
970                         }
971                 } else {
972                         return '';
973                 }
974
975         }
976
977         function get_user_theme_path($link) {
978                 $theme_path = '';
979
980                 if (get_schema_version($link) >= 63 && $_SESSION["uid"]) {
981                         $theme_name = get_pref($link, "_THEME_ID");
982
983                         if ($theme_name && is_dir("themes/$theme_name")) {
984                                 $theme_path = "themes/$theme_name/";
985                         } else {
986                                 $theme_name = '';
987                         }
988                 } else {
989                         $theme_path = '';
990                 }
991
992                 if ($theme_path) {
993                         if (is_file("$theme_path/theme.ini")) {
994                                 $ini = parse_ini_file("$theme_path/theme.ini", true);
995                                 if ($ini['theme']['version'] >= THEME_VERSION_REQUIRED) {
996                                         return $theme_path;
997                                 }
998                         }
999                 }
1000                 return '';
1001         }
1002
1003         function get_user_theme_options($link) {
1004                 $t = get_user_theme_path($link);
1005
1006                 if ($t) {
1007                         if (is_file("$t/theme.ini")) {
1008                                 $ini = parse_ini_file("$t/theme.ini", true);
1009                                 if ($ini['theme']['version']) {
1010                                         return $ini['theme']['options'];
1011                                 }
1012                         }
1013                 }
1014                 return '';
1015         }
1016
1017         function print_theme_includes($link) {
1018
1019                 $t = get_user_theme_path($link);
1020                 $time = time();
1021
1022                 if ($t) {
1023                         print "<link rel=\"stylesheet\" type=\"text/css\"
1024                                 href=\"$t/theme.css?$time \">";
1025                         if (file_exists("$t/theme.js")) {
1026                                 print "<script type=\"text/javascript\" src=\"$t/theme.js?$time\">
1027                                         </script>";
1028                         }
1029                 }
1030         }
1031
1032         function get_all_themes() {
1033                 $themes = glob("themes/*");
1034
1035                 asort($themes);
1036
1037                 $rv = array();
1038
1039                 foreach ($themes as $t) {
1040                         if (is_file("$t/theme.ini")) {
1041                                 $ini = parse_ini_file("$t/theme.ini", true);
1042                                 if ($ini['theme']['version'] >= THEME_VERSION_REQUIRED &&
1043                                                         !$ini['theme']['disabled']) {
1044                                         $entry = array();
1045                                         $entry["path"] = $t;
1046                                         $entry["base"] = basename($t);
1047                                         $entry["name"] = $ini['theme']['name'];
1048                                         $entry["version"] = $ini['theme']['version'];
1049                                         $entry["author"] = $ini['theme']['author'];
1050                                         $entry["options"] = $ini['theme']['options'];
1051                                         array_push($rv, $entry);
1052                                 }
1053                         }
1054                 }
1055
1056                 return $rv;
1057         }
1058
1059         function convert_timestamp($timestamp, $source_tz, $dest_tz) {
1060
1061                 try {
1062                         $source_tz = new DateTimeZone($source_tz);
1063                 } catch (Exception $e) {
1064                         $source_tz = new DateTimeZone('UTC');
1065                 }
1066
1067                 try {
1068                         $dest_tz = new DateTimeZone($dest_tz);
1069                 } catch (Exception $e) {
1070                         $dest_tz = new DateTimeZone('UTC');
1071                 }
1072
1073                 $dt = new DateTime(date('Y-m-d H:i:s', $timestamp), $source_tz);
1074                 return $dt->format('U') + $dest_tz->getOffset($dt);
1075         }
1076
1077         function make_local_datetime($link, $timestamp, $long, $owner_uid = false,
1078                                         $no_smart_dt = false) {
1079
1080                 if (!$owner_uid) $owner_uid = $_SESSION['uid'];
1081                 if (!$timestamp) $timestamp = '1970-01-01 0:00';
1082
1083                 global $utc_tz;
1084                 global $tz_offset;
1085
1086                 # We store date in UTC internally
1087                 $dt = new DateTime($timestamp, $utc_tz);
1088
1089                 if ($tz_offset == -1) {
1090
1091                         $user_tz_string = get_pref($link, 'USER_TIMEZONE', $owner_uid);
1092
1093                         try {
1094                                 $user_tz = new DateTimeZone($user_tz_string);
1095                         } catch (Exception $e) {
1096                                 $user_tz = $utc_tz;
1097                         }
1098
1099                         $tz_offset = $user_tz->getOffset($dt);
1100                 }
1101
1102                 $user_timestamp = $dt->format('U') + $tz_offset;
1103
1104                 if (!$no_smart_dt) {
1105                         return smart_date_time($link, $user_timestamp,
1106                                 $tz_offset, $owner_uid);
1107                 } else {
1108                         if ($long)
1109                                 $format = get_pref($link, 'LONG_DATE_FORMAT', $owner_uid);
1110                         else
1111                                 $format = get_pref($link, 'SHORT_DATE_FORMAT', $owner_uid);
1112
1113                         return date($format, $user_timestamp);
1114                 }
1115         }
1116
1117         function smart_date_time($link, $timestamp, $tz_offset = 0, $owner_uid = false) {
1118                 if (!$owner_uid) $owner_uid = $_SESSION['uid'];
1119
1120                 if (date("Y.m.d", $timestamp) == date("Y.m.d", time() + $tz_offset)) {
1121                         return date("G:i", $timestamp);
1122                 } else if (date("Y", $timestamp) == date("Y", time() + $tz_offset)) {
1123                         $format = get_pref($link, 'SHORT_DATE_FORMAT', $owner_uid);
1124                         return date($format, $timestamp);
1125                 } else {
1126                         $format = get_pref($link, 'LONG_DATE_FORMAT', $owner_uid);
1127                         return date($format, $timestamp);
1128                 }
1129         }
1130
1131         function sql_bool_to_bool($s) {
1132                 if ($s == "t" || $s == "1" || $s == "true") {
1133                         return true;
1134                 } else {
1135                         return false;
1136                 }
1137         }
1138
1139         function bool_to_sql_bool($s) {
1140                 if ($s) {
1141                         return "true";
1142                 } else {
1143                         return "false";
1144                 }
1145         }
1146
1147         // Session caching removed due to causing wrong redirects to upgrade
1148         // script when get_schema_version() is called on an obsolete session
1149         // created on a previous schema version.
1150         function get_schema_version($link, $nocache = false) {
1151                 global $schema_version;
1152
1153                 if (!$schema_version) {
1154                         $result = db_query($link, "SELECT schema_version FROM ttrss_version");
1155                         $version = db_fetch_result($result, 0, "schema_version");
1156                         $schema_version = $version;
1157                         return $version;
1158                 } else {
1159                         return $schema_version;
1160                 }
1161         }
1162
1163         function sanity_check($link) {
1164                 require_once 'errors.php';
1165
1166                 $error_code = 0;
1167                 $schema_version = get_schema_version($link, true);
1168
1169                 if ($schema_version != SCHEMA_VERSION) {
1170                         $error_code = 5;
1171                 }
1172
1173                 if (DB_TYPE == "mysql") {
1174                         $result = db_query($link, "SELECT true", false);
1175                         if (db_num_rows($result) != 1) {
1176                                 $error_code = 10;
1177                         }
1178                 }
1179
1180                 if (db_escape_string("testTEST") != "testTEST") {
1181                         $error_code = 12;
1182                 }
1183
1184                 return array("code" => $error_code, "message" => $ERRORS[$error_code]);
1185         }
1186
1187         function file_is_locked($filename) {
1188                 if (function_exists('flock')) {
1189                         $fp = @fopen(LOCK_DIRECTORY . "/$filename", "r");
1190                         if ($fp) {
1191                                 if (flock($fp, LOCK_EX | LOCK_NB)) {
1192                                         flock($fp, LOCK_UN);
1193                                         fclose($fp);
1194                                         return false;
1195                                 }
1196                                 fclose($fp);
1197                                 return true;
1198                         } else {
1199                                 return false;
1200                         }
1201                 }
1202                 return true; // consider the file always locked and skip the test
1203         }
1204
1205         function make_lockfile($filename) {
1206                 $fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
1207
1208                 if (flock($fp, LOCK_EX | LOCK_NB)) {
1209                         if (function_exists('posix_getpid')) {
1210                                 fwrite($fp, posix_getpid() . "\n");
1211                         }
1212                         return $fp;
1213                 } else {
1214                         return false;
1215                 }
1216         }
1217
1218         function make_stampfile($filename) {
1219                 $fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
1220
1221                 if (flock($fp, LOCK_EX | LOCK_NB)) {
1222                         fwrite($fp, time() . "\n");
1223                         flock($fp, LOCK_UN);
1224                         fclose($fp);
1225                         return true;
1226                 } else {
1227                         return false;
1228                 }
1229         }
1230
1231         function sql_random_function() {
1232                 if (DB_TYPE == "mysql") {
1233                         return "RAND()";
1234                 } else {
1235                         return "RANDOM()";
1236                 }
1237         }
1238
1239         function catchup_feed($link, $feed, $cat_view, $owner_uid = false, $max_id = false) {
1240
1241                         if (!$owner_uid) $owner_uid = $_SESSION['uid'];
1242
1243                         //if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
1244
1245                         $ref_check_qpart = ($max_id &&
1246                                 !get_pref($link, 'REVERSE_HEADLINES')) ? "ref_id <= '$max_id'" : "true";
1247
1248                         if (is_numeric($feed)) {
1249                                 if ($cat_view) {
1250
1251                                         if ($feed >= 0) {
1252
1253                                                 if ($feed > 0) {
1254                                                         $cat_qpart = "cat_id = '$feed'";
1255                                                 } else {
1256                                                         $cat_qpart = "cat_id IS NULL";
1257                                                 }
1258
1259                                                 $tmp_result = db_query($link, "SELECT id
1260                                                         FROM ttrss_feeds WHERE $cat_qpart AND owner_uid = $owner_uid");
1261
1262                                                 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1263
1264                                                         $tmp_feed = $tmp_line["id"];
1265
1266                                                         db_query($link, "UPDATE ttrss_user_entries
1267                                                                 SET unread = false,last_read = NOW()
1268                                                                 WHERE feed_id = '$tmp_feed'
1269                                                                 AND $ref_check_qpart
1270                                                                 AND owner_uid = $owner_uid");
1271                                                 }
1272                                         } else if ($feed == -2) {
1273
1274                                                 db_query($link, "UPDATE ttrss_user_entries
1275                                                         SET unread = false,last_read = NOW() WHERE (SELECT COUNT(*)
1276                                                                 FROM ttrss_user_labels2 WHERE article_id = ref_id) > 0
1277                                                                 AND $ref_check_qpart
1278                                                                 AND unread = true AND owner_uid = $owner_uid");
1279                                         }
1280
1281                                 } else if ($feed > 0) {
1282
1283                                         db_query($link, "UPDATE ttrss_user_entries
1284                                                         SET unread = false,last_read = NOW()
1285                                                         WHERE feed_id = '$feed'
1286                                                         AND $ref_check_qpart
1287                                                         AND owner_uid = $owner_uid");
1288
1289                                 } else if ($feed < 0 && $feed > -10) { // special, like starred
1290
1291                                         if ($feed == -1) {
1292                                                 db_query($link, "UPDATE ttrss_user_entries
1293                                                         SET unread = false,last_read = NOW()
1294                                                         WHERE marked = true
1295                                                         AND $ref_check_qpart
1296                                                         AND owner_uid = $owner_uid");
1297                                         }
1298
1299                                         if ($feed == -2) {
1300                                                 db_query($link, "UPDATE ttrss_user_entries
1301                                                         SET unread = false,last_read = NOW()
1302                                                         WHERE published = true
1303                                                         AND $ref_check_qpart
1304                                                         AND owner_uid = $owner_uid");
1305                                         }
1306
1307                                         if ($feed == -3) {
1308
1309                                                 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE");
1310
1311                                                 if (DB_TYPE == "pgsql") {
1312                                                         $match_part = "updated > NOW() - INTERVAL '$intl hour' ";
1313                                                 } else {
1314                                                         $match_part = "updated > DATE_SUB(NOW(),
1315                                                                 INTERVAL $intl HOUR) ";
1316                                                 }
1317
1318                                                 $result = db_query($link, "SELECT id FROM ttrss_entries,
1319                                                         ttrss_user_entries WHERE $match_part AND
1320                                                         unread = true AND
1321                                                         ttrss_user_entries.ref_id = ttrss_entries.id AND
1322                                                         owner_uid = $owner_uid");
1323
1324                                                 $affected_ids = array();
1325
1326                                                 while ($line = db_fetch_assoc($result)) {
1327                                                         array_push($affected_ids, $line["id"]);
1328                                                 }
1329
1330                                                 catchupArticlesById($link, $affected_ids, 0);
1331                                         }
1332
1333                                         if ($feed == -4) {
1334                                                 db_query($link, "UPDATE ttrss_user_entries
1335                                                         SET unread = false,last_read = NOW()
1336                                                         WHERE $ref_check_qpart AND owner_uid = $owner_uid");
1337                                         }
1338
1339                                 } else if ($feed < -10) { // label
1340
1341                                         $label_id = -$feed - 11;
1342
1343                                         db_query($link, "UPDATE ttrss_user_entries, ttrss_user_labels2
1344                                                 SET unread = false, last_read = NOW()
1345                                                         WHERE label_id = '$label_id' AND unread = true
1346                                                         AND $ref_check_qpart
1347                                                         AND owner_uid = '$owner_uid' AND ref_id = article_id");
1348
1349                                 }
1350
1351                                 ccache_update($link, $feed, $owner_uid, $cat_view);
1352
1353                         } else { // tag
1354                                 db_query($link, "BEGIN");
1355
1356                                 $tag_name = db_escape_string($feed);
1357
1358                                 $result = db_query($link, "SELECT post_int_id FROM ttrss_tags
1359                                         WHERE tag_name = '$tag_name' AND owner_uid = $owner_uid");
1360
1361                                 while ($line = db_fetch_assoc($result)) {
1362                                         db_query($link, "UPDATE ttrss_user_entries SET
1363                                                 unread = false, last_read = NOW()
1364                                                 WHERE $ref_check_qpart AND int_id = " . $line["post_int_id"]);
1365                                 }
1366                                 db_query($link, "COMMIT");
1367                         }
1368         }
1369
1370         function getAllCounters($link, $omode = "flc", $active_feed = false) {
1371
1372                 if (!$omode) $omode = "flc";
1373
1374                 $data = getGlobalCounters($link);
1375
1376                 $data = array_merge($data, getVirtCounters($link));
1377
1378                 if (strchr($omode, "l")) $data = array_merge($data, getLabelCounters($link));
1379                 if (strchr($omode, "f")) $data = array_merge($data, getFeedCounters($link, $active_feed));
1380                 if (strchr($omode, "t")) $data = array_merge($data, getTagCounters($link));
1381                 if (strchr($omode, "c")) $data = array_merge($data, getCategoryCounters($link));
1382
1383                 return $data;
1384         }
1385
1386         function getCategoryTitle($link, $cat_id) {
1387
1388                 if ($cat_id == -1) {
1389                         return __("Special");
1390                 } else if ($cat_id == -2) {
1391                         return __("Labels");
1392                 } else {
1393
1394                         $result = db_query($link, "SELECT title FROM ttrss_feed_categories WHERE
1395                                 id = '$cat_id'");
1396
1397                         if (db_num_rows($result) == 1) {
1398                                 return db_fetch_result($result, 0, "title");
1399                         } else {
1400                                 return "Uncategorized";
1401                         }
1402                 }
1403         }
1404
1405
1406         function getCategoryCounters($link) {
1407                 $ret_arr = array();
1408
1409                 /* Labels category */
1410
1411                 $cv = array("id" => -2, "kind" => "cat",
1412                         "counter" => getCategoryUnread($link, -2));
1413
1414                 array_push($ret_arr, $cv);
1415
1416                 $result = db_query($link, "SELECT id AS cat_id, value AS unread,
1417                         (SELECT COUNT(id) FROM ttrss_feed_categories AS c2
1418                                 WHERE c2.parent_cat = ttrss_feed_categories.id) AS num_children
1419                         FROM ttrss_feed_categories, ttrss_cat_counters_cache
1420                         WHERE ttrss_cat_counters_cache.feed_id = id AND
1421                         ttrss_cat_counters_cache.owner_uid = ttrss_feed_categories.owner_uid AND
1422                         ttrss_feed_categories.owner_uid = " . $_SESSION["uid"]);
1423
1424                 while ($line = db_fetch_assoc($result)) {
1425                         $line["cat_id"] = (int) $line["cat_id"];
1426
1427                         if ($line["num_children"] > 0) {
1428                                 $child_counter = getCategoryChildrenUnread($link, $line["cat_id"], $_SESSION["uid"]);
1429                         } else {
1430                                 $child_counter = 0;
1431                         }
1432
1433                         $cv = array("id" => $line["cat_id"], "kind" => "cat",
1434                                 "child_counter" => $child_counter,
1435                                 "counter" => $line["unread"]);
1436
1437                         array_push($ret_arr, $cv);
1438                 }
1439
1440                 /* Special case: NULL category doesn't actually exist in the DB */
1441
1442                 $cv = array("id" => 0, "kind" => "cat",
1443                         "counter" => ccache_find($link, 0, $_SESSION["uid"], true));
1444
1445                 array_push($ret_arr, $cv);
1446
1447                 return $ret_arr;
1448         }
1449
1450         // only accepts real cats (>= 0)
1451         function getCategoryChildrenUnread($link, $cat, $owner_uid = false) {
1452                 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
1453
1454                 $result = db_query($link, "SELECT id FROM ttrss_feed_categories WHERE parent_cat = '$cat'
1455                                 AND owner_uid = $owner_uid");
1456
1457                 $unread = 0;
1458
1459                 while ($line = db_fetch_assoc($result)) {
1460                         $unread += getCategoryUnread($link, $line["id"], $owner_uid);
1461                         $unread += getCategoryChildrenUnread($link, $line["id"], $owner_uid);
1462                 }
1463
1464                 return $unread;
1465         }
1466
1467         function getCategoryUnread($link, $cat, $owner_uid = false) {
1468
1469                 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
1470
1471                 if ($cat >= 0) {
1472
1473                         if ($cat != 0) {
1474                                 $cat_query = "cat_id = '$cat'";
1475                         } else {
1476                                 $cat_query = "cat_id IS NULL";
1477                         }
1478
1479                         $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE $cat_query
1480                                         AND owner_uid = " . $owner_uid);
1481
1482                         $cat_feeds = array();
1483                         while ($line = db_fetch_assoc($result)) {
1484                                 array_push($cat_feeds, "feed_id = " . $line["id"]);
1485                         }
1486
1487                         if (count($cat_feeds) == 0) return 0;
1488
1489                         $match_part = implode(" OR ", $cat_feeds);
1490
1491                         $result = db_query($link, "SELECT COUNT(int_id) AS unread
1492                                 FROM ttrss_user_entries
1493                                 WHERE   unread = true AND ($match_part)
1494                                 AND owner_uid = " . $owner_uid);
1495
1496                         $unread = 0;
1497
1498                         # this needs to be rewritten
1499                         while ($line = db_fetch_assoc($result)) {
1500                                 $unread += $line["unread"];
1501                         }
1502
1503                         return $unread;
1504                 } else if ($cat == -1) {
1505                         return getFeedUnread($link, -1) + getFeedUnread($link, -2) + getFeedUnread($link, -3) + getFeedUnread($link, 0);
1506                 } else if ($cat == -2) {
1507
1508                         $result = db_query($link, "
1509                                 SELECT COUNT(unread) AS unread FROM
1510                                         ttrss_user_entries, ttrss_user_labels2
1511                                 WHERE article_id = ref_id AND unread = true
1512                                         AND ttrss_user_entries.owner_uid = '$owner_uid'");
1513
1514                         $unread = db_fetch_result($result, 0, "unread");
1515
1516                         return $unread;
1517
1518                 }
1519         }
1520
1521         function getFeedUnread($link, $feed, $is_cat = false) {
1522                 return getFeedArticles($link, $feed, $is_cat, true, $_SESSION["uid"]);
1523         }
1524
1525         function getLabelUnread($link, $label_id, $owner_uid = false) {
1526                 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
1527
1528                 $result = db_query($link, "SELECT COUNT(ref_id) AS unread FROM ttrss_user_entries, ttrss_user_labels2
1529                         WHERE owner_uid = '$owner_uid' AND unread = true AND label_id = '$label_id' AND article_id = ref_id");
1530
1531                 if (db_num_rows($result) != 0) {
1532                         return db_fetch_result($result, 0, "unread");
1533                 } else {
1534                         return 0;
1535                 }
1536         }
1537
1538         function getFeedArticles($link, $feed, $is_cat = false, $unread_only = false,
1539                 $owner_uid = false) {
1540
1541                 $n_feed = (int) $feed;
1542                 $need_entries = false;
1543
1544                 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
1545
1546                 if ($unread_only) {
1547                         $unread_qpart = "unread = true";
1548                 } else {
1549                         $unread_qpart = "true";
1550                 }
1551
1552                 if ($is_cat) {
1553                         return getCategoryUnread($link, $n_feed, $owner_uid);
1554                 } if ($feed != "0" && $n_feed == 0) {
1555
1556                         $feed = db_escape_string($feed);
1557
1558                         $result = db_query($link, "SELECT SUM((SELECT COUNT(int_id)
1559                                 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
1560                                         AND ref_id = id AND $unread_qpart)) AS count FROM ttrss_tags
1561                                 WHERE owner_uid = $owner_uid AND tag_name = '$feed'");
1562                         return db_fetch_result($result, 0, "count");
1563
1564                 } else if ($n_feed == -1) {
1565                         $match_part = "marked = true";
1566                 } else if ($n_feed == -2) {
1567                         $match_part = "published = true";
1568                 } else if ($n_feed == -3) {
1569                         $match_part = "unread = true AND score >= 0";
1570
1571                         $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid);
1572
1573                         if (DB_TYPE == "pgsql") {
1574                                 $match_part .= " AND updated > NOW() - INTERVAL '$intl hour' ";
1575                         } else {
1576                                 $match_part .= " AND updated > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
1577                         }
1578
1579                         $need_entries = true;
1580
1581                 } else if ($n_feed == -4) {
1582                         $match_part = "true";
1583                 } else if ($n_feed >= 0) {
1584
1585                         if ($n_feed != 0) {
1586                                 $match_part = "feed_id = '$n_feed'";
1587                         } else {
1588                                 $match_part = "feed_id IS NULL";
1589                         }
1590
1591                 } else if ($feed < -10) {
1592
1593                         $label_id = -$feed - 11;
1594
1595                         return getLabelUnread($link, $label_id, $owner_uid);
1596
1597                 }
1598
1599                 if ($match_part) {
1600
1601                         if ($need_entries) {
1602                                 $from_qpart = "ttrss_user_entries,ttrss_entries";
1603                                 $from_where = "ttrss_entries.id = ttrss_user_entries.ref_id AND";
1604                         } else {
1605                                 $from_qpart = "ttrss_user_entries";
1606                         }
1607
1608                         $query = "SELECT count(int_id) AS unread
1609                                 FROM $from_qpart WHERE
1610                                 $unread_qpart AND $from_where ($match_part) AND ttrss_user_entries.owner_uid = $owner_uid";
1611
1612                         //echo "[$feed/$query]\n";
1613
1614                         $result = db_query($link, $query);
1615
1616                 } else {
1617
1618                         $result = db_query($link, "SELECT COUNT(post_int_id) AS unread
1619                                 FROM ttrss_tags,ttrss_user_entries,ttrss_entries
1620                                 WHERE tag_name = '$feed' AND post_int_id = int_id AND ref_id = ttrss_entries.id
1621                                 AND $unread_qpart AND ttrss_tags.owner_uid = " . $owner_uid);
1622                 }
1623
1624                 $unread = db_fetch_result($result, 0, "unread");
1625
1626                 return $unread;
1627         }
1628
1629         function getGlobalUnread($link, $user_id = false) {
1630
1631                 if (!$user_id) {
1632                         $user_id = $_SESSION["uid"];
1633                 }
1634
1635                 $result = db_query($link, "SELECT SUM(value) AS c_id FROM ttrss_counters_cache
1636                         WHERE owner_uid = '$user_id' AND feed_id > 0");
1637
1638                 $c_id = db_fetch_result($result, 0, "c_id");
1639
1640                 return $c_id;
1641         }
1642
1643         function getGlobalCounters($link, $global_unread = -1) {
1644                 $ret_arr = array();
1645
1646                 if ($global_unread == -1) {
1647                         $global_unread = getGlobalUnread($link);
1648                 }
1649
1650                 $cv = array("id" => "global-unread",
1651                         "counter" => $global_unread);
1652
1653                 array_push($ret_arr, $cv);
1654
1655                 $result = db_query($link, "SELECT COUNT(id) AS fn FROM
1656                         ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
1657
1658                 $subscribed_feeds = db_fetch_result($result, 0, "fn");
1659
1660                 $cv = array("id" => "subscribed-feeds",
1661                         "counter" => $subscribed_feeds);
1662
1663                 array_push($ret_arr, $cv);
1664
1665                 return $ret_arr;
1666         }
1667
1668         function getTagCounters($link) {
1669
1670                 $ret_arr = array();
1671
1672                 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
1673                         FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
1674                                 AND ref_id = id AND unread = true)) AS count FROM ttrss_tags
1675                                 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name
1676                                 ORDER BY count DESC LIMIT 55");
1677
1678                 $tags = array();
1679
1680                 while ($line = db_fetch_assoc($result)) {
1681                         $tags[$line["tag_name"]] += $line["count"];
1682                 }
1683
1684                 foreach (array_keys($tags) as $tag) {
1685                         $unread = $tags[$tag];
1686                         $tag = htmlspecialchars($tag);
1687
1688                         $cv = array("id" => $tag,
1689                                 "kind" => "tag",
1690                                 "counter" => $unread);
1691
1692                         array_push($ret_arr, $cv);
1693                 }
1694
1695                 return $ret_arr;
1696         }
1697
1698         function getVirtCounters($link) {
1699
1700                 $ret_arr = array();
1701
1702                 for ($i = 0; $i >= -4; $i--) {
1703
1704                         $count = getFeedUnread($link, $i);
1705
1706                         $cv = array("id" => $i,
1707                                 "counter" => $count);
1708
1709 //                      if (get_pref($link, 'EXTENDED_FEEDLIST'))
1710 //                              $cv["xmsg"] = getFeedArticles($link, $i)." ".__("total");
1711
1712                         array_push($ret_arr, $cv);
1713                 }
1714
1715                 return $ret_arr;
1716         }
1717
1718         function getLabelCounters($link, $descriptions = false) {
1719
1720                 $ret_arr = array();
1721
1722                 $owner_uid = $_SESSION["uid"];
1723
1724                 $result = db_query($link, "SELECT id, caption FROM ttrss_labels2
1725                         WHERE owner_uid = '$owner_uid'");
1726
1727                 while ($line = db_fetch_assoc($result)) {
1728
1729                         $id = -$line["id"] - 11;
1730
1731                         $label_name = $line["caption"];
1732                         $count = getFeedUnread($link, $id);
1733
1734                         $cv = array("id" => $id,
1735                                 "counter" => $count);
1736
1737                         if ($descriptions)
1738                                 $cv["description"] = $label_name;
1739
1740 //                      if (get_pref($link, 'EXTENDED_FEEDLIST'))
1741 //                              $cv["xmsg"] = getFeedArticles($link, $id)." ".__("total");
1742
1743                         array_push($ret_arr, $cv);
1744                 }
1745
1746                 return $ret_arr;
1747         }
1748
1749         function getFeedCounters($link, $active_feed = false) {
1750
1751                 $ret_arr = array();
1752
1753                 $query = "SELECT ttrss_feeds.id,
1754                                 ttrss_feeds.title,
1755                                 ".SUBSTRING_FOR_DATE."(ttrss_feeds.last_updated,1,19) AS last_updated,
1756                                 last_error, value AS count
1757                         FROM ttrss_feeds, ttrss_counters_cache
1758                         WHERE ttrss_feeds.owner_uid = ".$_SESSION["uid"]."
1759                                 AND ttrss_counters_cache.owner_uid = ttrss_feeds.owner_uid
1760                                 AND ttrss_counters_cache.feed_id = id";
1761
1762                 $result = db_query($link, $query);
1763                 $fctrs_modified = false;
1764
1765                 while ($line = db_fetch_assoc($result)) {
1766
1767                         $id = $line["id"];
1768                         $count = $line["count"];
1769                         $last_error = htmlspecialchars($line["last_error"]);
1770
1771                         $last_updated = make_local_datetime($link, $line['last_updated'], false);
1772
1773                         $has_img = feed_has_icon($id);
1774
1775                         if (date('Y') - date('Y', strtotime($line['last_updated'])) > 2)
1776                                 $last_updated = '';
1777
1778                         $cv = array("id" => $id,
1779                                 "updated" => $last_updated,
1780                                 "counter" => $count,
1781                                 "has_img" => (int) $has_img);
1782
1783                         if ($last_error)
1784                                 $cv["error"] = $last_error;
1785
1786 //                      if (get_pref($link, 'EXTENDED_FEEDLIST'))
1787 //                              $cv["xmsg"] = getFeedArticles($link, $id)." ".__("total");
1788
1789                         if ($active_feed && $id == $active_feed)
1790                                 $cv["title"] = truncate_string($line["title"], 30);
1791
1792                         array_push($ret_arr, $cv);
1793
1794                 }
1795
1796                 return $ret_arr;
1797         }
1798
1799         function get_pgsql_version($link) {
1800                 $result = db_query($link, "SELECT version() AS version");
1801                 $version = explode(" ", db_fetch_result($result, 0, "version"));
1802                 return $version[1];
1803         }
1804
1805         /**
1806          * @return array (code => Status code, message => error message if available)
1807          *
1808          *                 0 - OK, Feed already exists
1809          *                 1 - OK, Feed added
1810          *                 2 - Invalid URL
1811          *                 3 - URL content is HTML, no feeds available
1812          *                 4 - URL content is HTML which contains multiple feeds.
1813          *                     Here you should call extractfeedurls in rpc-backend
1814          *                     to get all possible feeds.
1815          *                 5 - Couldn't download the URL content.
1816          */
1817         function subscribe_to_feed($link, $url, $cat_id = 0,
1818                         $auth_login = '', $auth_pass = '', $need_auth = false) {
1819
1820                 global $fetch_last_error;
1821
1822                 require_once "include/rssfuncs.php";
1823
1824                 $url = fix_url($url);
1825
1826                 if (!$url || !validate_feed_url($url)) return array("code" => 2);
1827
1828                 $update_method = 0;
1829
1830                 $result = db_query($link, "SELECT twitter_oauth FROM ttrss_users
1831                         WHERE id = ".$_SESSION['uid']);
1832
1833                 $has_oauth = db_fetch_result($result, 0, 'twitter_oauth');
1834
1835                 if (!$need_auth || !$has_oauth || strpos($url, '://api.twitter.com') === false) {
1836                         if (!fetch_file_contents($url, false, $auth_login, $auth_pass))
1837                                 return array("code" => 5, "message" => $fetch_last_error);
1838
1839                         if (url_is_html($url, $auth_login, $auth_pass)) {
1840                                 $feedUrls = get_feeds_from_html($url, $auth_login, $auth_pass);
1841                                 if (count($feedUrls) == 0) {
1842                                         return array("code" => 3);
1843                                 } else if (count($feedUrls) > 1) {
1844                                         return array("code" => 4);
1845                                 }
1846                                 //use feed url as new URL
1847                                 $url = key($feedUrls);
1848                         }
1849
1850                         } else {
1851                                 if (!fetch_twitter_rss($link, $url, $_SESSION['uid']))
1852                                         return array("code" => 5);
1853
1854                                 $update_method = 3;
1855                         }
1856                 if ($cat_id == "0" || !$cat_id) {
1857                         $cat_qpart = "NULL";
1858                 } else {
1859                         $cat_qpart = "'$cat_id'";
1860                 }
1861
1862                 $result = db_query($link,
1863                         "SELECT id FROM ttrss_feeds
1864                         WHERE feed_url = '$url' AND owner_uid = ".$_SESSION["uid"]);
1865
1866                 if (db_num_rows($result) == 0) {
1867                         $result = db_query($link,
1868                                 "INSERT INTO ttrss_feeds
1869                                         (owner_uid,feed_url,title,cat_id, auth_login,auth_pass,update_method)
1870                                 VALUES ('".$_SESSION["uid"]."', '$url',
1871                                 '[Unknown]', $cat_qpart, '$auth_login', '$auth_pass', '$update_method')");
1872
1873                         $result = db_query($link,
1874                                 "SELECT id FROM ttrss_feeds WHERE feed_url = '$url'
1875                                         AND owner_uid = " . $_SESSION["uid"]);
1876
1877                         $feed_id = db_fetch_result($result, 0, "id");
1878
1879                         if ($feed_id) {
1880                                 update_rss_feed($link, $feed_id, true);
1881                         }
1882
1883                         return array("code" => 1);
1884                 } else {
1885                         return array("code" => 0);
1886                 }
1887         }
1888
1889         function print_feed_select($link, $id, $default_id = "",
1890                 $attributes = "", $include_all_feeds = true) {
1891
1892                 print "<select id=\"$id\" name=\"$id\" $attributes>";
1893                 if ($include_all_feeds) {
1894                         print "<option value=\"0\">".__('All feeds')."</option>";
1895                 }
1896
1897                 $result = db_query($link, "SELECT id,title FROM ttrss_feeds
1898                         WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
1899
1900                 if (db_num_rows($result) > 0 && $include_all_feeds) {
1901                         print "<option disabled>--------</option>";
1902                 }
1903
1904                 while ($line = db_fetch_assoc($result)) {
1905                         if ($line["id"] == $default_id) {
1906                                 $is_selected = "selected=\"1\"";
1907                         } else {
1908                                 $is_selected = "";
1909                         }
1910
1911                         $title = truncate_string(htmlspecialchars($line["title"]), 40);
1912
1913                         printf("<option $is_selected value='%d'>%s</option>",
1914                                 $line["id"], $title);
1915                 }
1916
1917                 print "</select>";
1918         }
1919
1920         function print_feed_cat_select($link, $id, $default_id,
1921                 $attributes, $include_all_cats = true, $root_id = false, $nest_level = 0) {
1922
1923                         if (!$root_id) {
1924                                         print "<select id=\"$id\" name=\"$id\" default=\"$default_id\" onchange=\"catSelectOnChange(this)\" $attributes>";
1925                         }
1926
1927                         if ($root_id)
1928                                 $parent_qpart = "parent_cat = '$root_id'";
1929                         else
1930                                 $parent_qpart = "parent_cat IS NULL";
1931
1932                         $result = db_query($link, "SELECT id,title,
1933                                 (SELECT COUNT(id) FROM ttrss_feed_categories AS c2 WHERE
1934                                         c2.parent_cat = ttrss_feed_categories.id) AS num_children
1935                                 FROM ttrss_feed_categories
1936                                 WHERE owner_uid = ".$_SESSION["uid"]." AND $parent_qpart ORDER BY title");
1937
1938                         while ($line = db_fetch_assoc($result)) {
1939                                 if ($line["id"] == $default_id) {
1940                                         $is_selected = "selected=\"1\"";
1941                                 } else {
1942                                         $is_selected = "";
1943                                 }
1944
1945                                 for ($i = 0; $i < $nest_level; $i++)
1946                                         $line["title"] = " - " . $line["title"];
1947
1948                                 if ($line["title"])
1949                                         printf("<option $is_selected value='%d'>%s</option>",
1950                                                 $line["id"], htmlspecialchars($line["title"]));
1951
1952                                 if ($line["num_children"] > 0)
1953                                         print_feed_cat_select($link, $id, $default_id, $attributes,
1954                                                 $include_all_cats, $line["id"], $nest_level+1);
1955                         }
1956
1957                         if (!$root_id) {
1958                                 if ($include_all_cats) {
1959                                         if (db_num_rows($result) > 0) {
1960                                                 print "<option disabled=\"1\">--------</option>";
1961                                         }
1962
1963                                         if ($default_id == 0) {
1964                                                 $is_selected = "selected=\"1\"";
1965                                         } else {
1966                                                 $is_selected = "";
1967                                         }
1968
1969                                         print "<option $is_selected value=\"0\">".__('Uncategorized')."</option>";
1970                                 }
1971                                 print "</select>";
1972                         }
1973                 }
1974
1975         function checkbox_to_sql_bool($val) {
1976                 return ($val == "on") ? "true" : "false";
1977         }
1978
1979         function getFeedCatTitle($link, $id) {
1980                 if ($id == -1) {
1981                         return __("Special");
1982                 } else if ($id < -10) {
1983                         return __("Labels");
1984                 } else if ($id > 0) {
1985                         $result = db_query($link, "SELECT ttrss_feed_categories.title
1986                                 FROM ttrss_feeds, ttrss_feed_categories WHERE ttrss_feeds.id = '$id' AND
1987                                         cat_id = ttrss_feed_categories.id");
1988                         if (db_num_rows($result) == 1) {
1989                                 return db_fetch_result($result, 0, "title");
1990                         } else {
1991                                 return __("Uncategorized");
1992                         }
1993                 } else {
1994                         return "getFeedCatTitle($id) failed";
1995                 }
1996
1997         }
1998
1999         function getFeedIcon($id) {
2000                 switch ($id) {
2001                 case 0:
2002                         return "images/archive.png";
2003                         break;
2004                 case -1:
2005                         return "images/mark_set.png";
2006                         break;
2007                 case -2:
2008                         return "images/pub_set.png";
2009                         break;
2010                 case -3:
2011                         return "images/fresh.png";
2012                         break;
2013                 case -4:
2014                         return "images/tag.png";
2015                         break;
2016                 default:
2017                         if ($id < -10) {
2018                                 return "images/label.png";
2019                         } else {
2020                                 if (file_exists(ICONS_DIR . "/$id.ico"))
2021                                         return ICONS_URL . "/$id.ico";
2022                         }
2023                         break;
2024                 }
2025         }
2026
2027         function getFeedTitle($link, $id) {
2028                 if ($id == -1) {
2029                         return __("Starred articles");
2030                 } else if ($id == -2) {
2031                         return __("Published articles");
2032                 } else if ($id == -3) {
2033                         return __("Fresh articles");
2034                 } else if ($id == -4) {
2035                         return __("All articles");
2036                 } else if ($id === 0 || $id === "0") {
2037                         return __("Archived articles");
2038                 } else if ($id < -10) {
2039                         $label_id = -$id - 11;
2040                         $result = db_query($link, "SELECT caption FROM ttrss_labels2 WHERE id = '$label_id'");
2041                         if (db_num_rows($result) == 1) {
2042                                 return db_fetch_result($result, 0, "caption");
2043                         } else {
2044                                 return "Unknown label ($label_id)";
2045                         }
2046
2047                 } else if (is_numeric($id) && $id > 0) {
2048                         $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$id'");
2049                         if (db_num_rows($result) == 1) {
2050                                 return db_fetch_result($result, 0, "title");
2051                         } else {
2052                                 return "Unknown feed ($id)";
2053                         }
2054                 } else {
2055                         return $id;
2056                 }
2057         }
2058
2059         function make_init_params($link) {
2060                 $params = array();
2061
2062                 $params["theme"] = get_user_theme($link);
2063                 $params["theme_options"] = get_user_theme_options($link);
2064
2065                 $params["sign_progress"] = theme_image($link, "images/indicator_white.gif");
2066                 $params["sign_progress_tiny"] = theme_image($link, "images/indicator_tiny.gif");
2067                 $params["sign_excl"] = theme_image($link, "images/sign_excl.png");
2068                 $params["sign_info"] = theme_image($link, "images/sign_info.png");
2069
2070                 foreach (array("ON_CATCHUP_SHOW_NEXT_FEED", "HIDE_READ_FEEDS",
2071                         "ENABLE_FEED_CATS", "FEEDS_SORT_BY_UNREAD", "CONFIRM_FEED_CATCHUP",
2072                         "CDM_AUTO_CATCHUP", "FRESH_ARTICLE_MAX_AGE", "DEFAULT_ARTICLE_LIMIT",
2073                         "HIDE_READ_SHOWS_SPECIAL", "COMBINED_DISPLAY_MODE") as $param) {
2074
2075                                  $params[strtolower($param)] = (int) get_pref($link, $param);
2076                  }
2077
2078                 $params["icons_url"] = ICONS_URL;
2079                 $params["cookie_lifetime"] = SESSION_COOKIE_LIFETIME;
2080                 $params["default_include_children"] = get_pref($link, "_DEFAULT_INCLUDE_CHILDREN");
2081                 $params["default_view_mode"] = get_pref($link, "_DEFAULT_VIEW_MODE");
2082                 $params["default_view_limit"] = (int) get_pref($link, "_DEFAULT_VIEW_LIMIT");
2083                 $params["default_view_order_by"] = get_pref($link, "_DEFAULT_VIEW_ORDER_BY");
2084                 $params["bw_limit"] = (int) $_SESSION["bw_limit"];
2085
2086                 $result = db_query($link, "SELECT MAX(id) AS mid, COUNT(*) AS nf FROM
2087                         ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
2088
2089                 $max_feed_id = db_fetch_result($result, 0, "mid");
2090                 $num_feeds = db_fetch_result($result, 0, "nf");
2091
2092                 $params["max_feed_id"] = (int) $max_feed_id;
2093                 $params["num_feeds"] = (int) $num_feeds;
2094
2095                 $params["collapsed_feedlist"] = (int) get_pref($link, "_COLLAPSED_FEEDLIST");
2096
2097                 $params["csrf_token"] = $_SESSION["csrf_token"];
2098
2099                 return $params;
2100         }
2101
2102         function make_runtime_info($link) {
2103                 $data = array();
2104
2105                 $result = db_query($link, "SELECT MAX(id) AS mid, COUNT(*) AS nf FROM
2106                         ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
2107
2108                 $max_feed_id = db_fetch_result($result, 0, "mid");
2109                 $num_feeds = db_fetch_result($result, 0, "nf");
2110
2111                 $data["max_feed_id"] = (int) $max_feed_id;
2112                 $data["num_feeds"] = (int) $num_feeds;
2113
2114                 $data['last_article_id'] = getLastArticleId($link);
2115                 $data['cdm_expanded'] = get_pref($link, 'CDM_EXPANDED');
2116
2117                 if (file_exists(LOCK_DIRECTORY . "/update_daemon.lock")) {
2118
2119                         $data['daemon_is_running'] = (int) file_is_locked("update_daemon.lock");
2120
2121                         if (time() - $_SESSION["daemon_stamp_check"] > 30) {
2122
2123                                 $stamp = (int) @file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
2124
2125                                 if ($stamp) {
2126                                         $stamp_delta = time() - $stamp;
2127
2128                                         if ($stamp_delta > 1800) {
2129                                                 $stamp_check = 0;
2130                                         } else {
2131                                                 $stamp_check = 1;
2132                                                 $_SESSION["daemon_stamp_check"] = time();
2133                                         }
2134
2135                                         $data['daemon_stamp_ok'] = $stamp_check;
2136
2137                                         $stamp_fmt = date("Y.m.d, G:i", $stamp);
2138
2139                                         $data['daemon_stamp'] = $stamp_fmt;
2140                                 }
2141                         }
2142                 }
2143
2144                 if ($_SESSION["last_version_check"] + 86400 + rand(-1000, 1000) < time()) {
2145                                 $new_version_details = @check_for_update($link);
2146
2147                                 $data['new_version_available'] = (int) ($new_version_details != false);
2148
2149                                 $_SESSION["last_version_check"] = time();
2150                 }
2151
2152                 return $data;
2153         }
2154
2155         function search_to_sql($link, $search, $match_on) {
2156
2157                 $search_query_part = "";
2158
2159                 $keywords = explode(" ", $search);
2160                 $query_keywords = array();
2161
2162                 foreach ($keywords as $k) {
2163                         if (strpos($k, "-") === 0) {
2164                                 $k = substr($k, 1);
2165                                 $not = "NOT";
2166                         } else {
2167                                 $not = "";
2168                         }
2169
2170                         $commandpair = explode(":", mb_strtolower($k), 2);
2171
2172                         if ($commandpair[0] == "note" && $commandpair[1]) {
2173
2174                                 if ($commandpair[1] == "true")
2175                                         array_push($query_keywords, "($not (note IS NOT NULL AND note != ''))");
2176                                 else
2177                                         array_push($query_keywords, "($not (note IS NULL OR note = ''))");
2178
2179                         } else if ($commandpair[0] == "star" && $commandpair[1]) {
2180
2181                                 if ($commandpair[1] == "true")
2182                                         array_push($query_keywords, "($not (marked = true))");
2183                                 else
2184                                         array_push($query_keywords, "($not (marked = false))");
2185
2186                         } else if ($commandpair[0] == "pub" && $commandpair[1]) {
2187
2188                                 if ($commandpair[1] == "true")
2189                                         array_push($query_keywords, "($not (published = true))");
2190                                 else
2191                                         array_push($query_keywords, "($not (published = false))");
2192
2193                         } else if (strpos($k, "@") === 0) {
2194
2195                                 $user_tz_string = get_pref($link, 'USER_TIMEZONE', $_SESSION['uid']);
2196                                 $orig_ts = strtotime(substr($k, 1));
2197                                 $k = date("Y-m-d", convert_timestamp($orig_ts, $user_tz_string, 'UTC'));
2198
2199                                 //$k = date("Y-m-d", strtotime(substr($k, 1)));
2200
2201                                 array_push($query_keywords, "(".SUBSTRING_FOR_DATE."(updated,1,LENGTH('$k')) $not = '$k')");
2202                         } else if ($match_on == "both") {
2203                                 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
2204                                                 OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
2205                         } else if ($match_on == "title") {
2206                                 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%'))");
2207                         } else if ($match_on == "content") {
2208                                 array_push($query_keywords, "(UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
2209                         }
2210                 }
2211
2212                 $search_query_part = implode("AND", $query_keywords);
2213
2214                 return $search_query_part;
2215         }
2216
2217         function getChildCategories($link, $cat, $owner_uid) {
2218                 $rv = array();
2219
2220                 $result = db_query($link, "SELECT id FROM ttrss_feed_categories
2221                         WHERE parent_cat = '$cat' AND owner_uid = $owner_uid");
2222
2223                 while ($line = db_fetch_assoc($result)) {
2224                         array_push($rv, $line["id"]);
2225                         $rv = array_merge($rv, getChildCategories($link, $line["id"], $owner_uid));
2226                 }
2227
2228                 return $rv;
2229         }
2230
2231         function queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view, $search, $search_mode, $match_on, $override_order = false, $offset = 0, $owner_uid = 0, $filter = false, $since_id = 0, $include_children = false) {
2232
2233                 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
2234
2235                 $ext_tables_part = "";
2236
2237                         if ($search) {
2238
2239                                 if (SPHINX_ENABLED) {
2240                                         $ids = join(",", @sphinx_search($search, 0, 500));
2241
2242                                         if ($ids)
2243                                                 $search_query_part = "ref_id IN ($ids) AND ";
2244                                         else
2245                                                 $search_query_part = "ref_id = -1 AND ";
2246
2247                                 } else {
2248                                         $search_query_part = search_to_sql($link, $search, $match_on);
2249                                         $search_query_part .= " AND ";
2250                                 }
2251
2252                         } else {
2253                                 $search_query_part = "";
2254                         }
2255
2256                         if ($filter) {
2257                                 $filter_query_part = filter_to_sql($filter);
2258                         } else {
2259                                 $filter_query_part = "";
2260                         }
2261
2262                         if ($since_id) {
2263                                 $since_id_part = "ttrss_entries.id > $since_id AND ";
2264                         } else {
2265                                 $since_id_part = "";
2266                         }
2267
2268                         $view_query_part = "";
2269
2270                         if ($view_mode == "adaptive" || $view_query_part == "noscores") {
2271                                 if ($search) {
2272                                         $view_query_part = " ";
2273                                 } else if ($feed != -1) {
2274                                         $unread = getFeedUnread($link, $feed, $cat_view);
2275
2276                                         if ($cat_view && $feed > 0 && $include_children)
2277                                                 $unread += getCategoryChildrenUnread($link, $feed);
2278
2279                                         if ($unread > 0) {
2280                                                 $view_query_part = " unread = true AND ";
2281                                         }
2282                                 }
2283                         }
2284
2285                         if ($view_mode == "marked") {
2286                                 $view_query_part = " marked = true AND ";
2287                         }
2288
2289                         if ($view_mode == "published") {
2290                                 $view_query_part = " published = true AND ";
2291                         }
2292
2293                         if ($view_mode == "unread") {
2294                                 $view_query_part = " unread = true AND ";
2295                         }
2296
2297                         if ($view_mode == "updated") {
2298                                 $view_query_part = " (last_read is null and unread = false) AND ";
2299                         }
2300
2301                         if ($limit > 0) {
2302                                 $limit_query_part = "LIMIT " . $limit;
2303                         }
2304
2305                         $vfeed_query_part = "";
2306
2307                         // override query strategy and enable feed display when searching globally
2308                         if ($search && $search_mode == "all_feeds") {
2309                                 $query_strategy_part = "ttrss_entries.id > 0";
2310                                 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2311                         /* tags */
2312                         } else if (preg_match("/^-?[0-9][0-9]*$/", $feed) == false) {
2313                                 $query_strategy_part = "ttrss_entries.id > 0";
2314                                 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
2315                                         id = feed_id) as feed_title,";
2316                         } else if ($feed > 0 && $search && $search_mode == "this_cat") {
2317
2318                                 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2319
2320                                 $tmp_result = false;
2321
2322                                 if ($cat_view) {
2323                                         $tmp_result = db_query($link, "SELECT id
2324                                                 FROM ttrss_feeds WHERE cat_id = '$feed'");
2325                                 } else {
2326                                         $tmp_result = db_query($link, "SELECT id
2327                                                 FROM ttrss_feeds WHERE cat_id = (SELECT cat_id FROM ttrss_feeds
2328                                                         WHERE id = '$feed') AND id != '$feed'");
2329                                 }
2330
2331                                 $cat_siblings = array();
2332
2333                                 if (db_num_rows($tmp_result) > 0) {
2334                                         while ($p = db_fetch_assoc($tmp_result)) {
2335                                                 array_push($cat_siblings, "feed_id = " . $p["id"]);
2336                                         }
2337
2338                                         $query_strategy_part = sprintf("(feed_id = %d OR %s)",
2339                                                 $feed, implode(" OR ", $cat_siblings));
2340
2341                                 } else {
2342                                         $query_strategy_part = "ttrss_entries.id > 0";
2343                                 }
2344
2345                         } else if ($feed > 0) {
2346
2347                                 if ($cat_view) {
2348
2349                                         if ($feed > 0) {
2350                                                 if ($include_children) {
2351                                                         # sub-cats
2352                                                         $subcats = getChildCategories($link, $feed, $owner_uid);
2353
2354                                                         if (count($subcats) == 0) {
2355                                                                 $query_strategy_part = "cat_id = '$feed'";
2356                                                         } else {
2357                                                                 array_push($subcats, $feed);
2358                                                                 $query_strategy_part = "cat_id IN (".
2359                                                                         implode(",", $subcats).")";
2360                                                         }
2361                                                 } else {
2362                                                         $query_strategy_part = "cat_id = '$feed'";
2363                                                 }
2364
2365                                         } else {
2366                                                 $query_strategy_part = "cat_id IS NULL";
2367                                         }
2368
2369                                         $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2370
2371                                 } else {
2372                                         $query_strategy_part = "feed_id = '$feed'";
2373                                 }
2374                         } else if ($feed == 0 && !$cat_view) { // archive virtual feed
2375                                 $query_strategy_part = "feed_id IS NULL";
2376                         } else if ($feed == 0 && $cat_view) { // uncategorized
2377                                 $query_strategy_part = "cat_id IS NULL AND feed_id IS NOT NULL";
2378                                 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2379                         } else if ($feed == -1) { // starred virtual feed
2380                                 $query_strategy_part = "marked = true";
2381                                 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2382                         } else if ($feed == -2) { // published virtual feed OR labels category
2383
2384                                 if (!$cat_view) {
2385                                         $query_strategy_part = "published = true";
2386                                         $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2387                                 } else {
2388                                         $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2389
2390                                         $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
2391
2392                                         $query_strategy_part = "ttrss_labels2.id = ttrss_user_labels2.label_id AND
2393                                                 ttrss_user_labels2.article_id = ref_id";
2394
2395                                 }
2396
2397                         } else if ($feed == -3) { // fresh virtual feed
2398                                 $query_strategy_part = "unread = true AND score >= 0";
2399
2400                                 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid);
2401
2402                                 if (DB_TYPE == "pgsql") {
2403                                         $query_strategy_part .= " AND updated > NOW() - INTERVAL '$intl hour' ";
2404                                 } else {
2405                                         $query_strategy_part .= " AND updated > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
2406                                 }
2407
2408                                 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2409                         } else if ($feed == -4) { // all articles virtual feed
2410                                 $query_strategy_part = "true";
2411                                 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2412                         } else if ($feed <= -10) { // labels
2413                                 $label_id = -$feed - 11;
2414
2415                                 $query_strategy_part = "label_id = '$label_id' AND
2416                                         ttrss_labels2.id = ttrss_user_labels2.label_id AND
2417                                         ttrss_user_labels2.article_id = ref_id";
2418
2419                                 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2420                                 $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
2421
2422                         } else {
2423                                 $query_strategy_part = "id > 0"; // dumb
2424                         }
2425
2426                         if (get_pref($link, "SORT_HEADLINES_BY_FEED_DATE", $owner_uid)) {
2427                                 $date_sort_field = "updated";
2428                         } else {
2429                                 $date_sort_field = "date_entered";
2430                         }
2431
2432                         if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
2433                                 $order_by = "$date_sort_field";
2434                         } else {
2435                                 $order_by = "$date_sort_field DESC";
2436                         }
2437
2438                         if ($view_mode != "noscores") {
2439                                 $order_by = "score DESC, $order_by";
2440                         }
2441
2442                         if ($override_order) {
2443                                 $order_by = $override_order;
2444                         }
2445
2446                         $feed_title = "";
2447
2448                         if ($search) {
2449                                 $feed_title = "Search results";
2450                         } else {
2451                                 if ($cat_view) {
2452                                         $feed_title = getCategoryTitle($link, $feed);
2453                                 } else {
2454                                         if (is_numeric($feed) && $feed > 0) {
2455                                                 $result = db_query($link, "SELECT title,site_url,last_error
2456                                                         FROM ttrss_feeds WHERE id = '$feed' AND owner_uid = $owner_uid");
2457
2458                                                 $feed_title = db_fetch_result($result, 0, "title");
2459                                                 $feed_site_url = db_fetch_result($result, 0, "site_url");
2460                                                 $last_error = db_fetch_result($result, 0, "last_error");
2461                                         } else {
2462                                                 $feed_title = getFeedTitle($link, $feed);
2463                                         }
2464                                 }
2465                         }
2466
2467                         $content_query_part = "content as content_preview,";
2468
2469                         if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
2470
2471                                 if ($feed >= 0) {
2472                                         $feed_kind = "Feeds";
2473                                 } else {
2474                                         $feed_kind = "Labels";
2475                                 }
2476
2477                                 if ($limit_query_part) {
2478                                         $offset_query_part = "OFFSET $offset";
2479                                 }
2480
2481                                 if ($vfeed_query_part && get_pref($link, 'VFEED_GROUP_BY_FEED', $owner_uid)) {
2482                                         if (!$override_order) {
2483                                                 $order_by = "ttrss_feeds.title, $order_by";
2484                                         }
2485                                 }
2486
2487                                 if ($feed != "0") {
2488                                         $from_qpart = "ttrss_entries,ttrss_user_entries,ttrss_feeds$ext_tables_part";
2489                                         $feed_check_qpart = "ttrss_user_entries.feed_id = ttrss_feeds.id AND";
2490
2491                                 } else {
2492                                         $from_qpart = "ttrss_entries,ttrss_user_entries$ext_tables_part
2493                                                 LEFT JOIN ttrss_feeds ON (feed_id = ttrss_feeds.id)";
2494                                 }
2495
2496                                 $query = "SELECT DISTINCT
2497                                                 date_entered,
2498                                                 guid,
2499                                                 ttrss_entries.id,ttrss_entries.title,
2500                                                 updated,
2501                                                 label_cache,
2502                                                 tag_cache,
2503                                                 always_display_enclosures,
2504                                                 site_url,
2505                                                 note,
2506                                                 num_comments,
2507                                                 comments,
2508                                                 int_id,
2509                                                 unread,feed_id,marked,published,link,last_read,orig_feed_id,
2510                                                 ".SUBSTRING_FOR_DATE."(last_read,1,19) as last_read_noms,
2511                                                 $vfeed_query_part
2512                                                 $content_query_part
2513                                                 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated_noms,
2514                                                 author,score
2515                                         FROM
2516                                                 $from_qpart
2517                                         WHERE
2518                                         $feed_check_qpart
2519                                         ttrss_user_entries.ref_id = ttrss_entries.id AND
2520                                         ttrss_user_entries.owner_uid = '$owner_uid' AND
2521                                         $search_query_part
2522                                         $filter_query_part
2523                                         $view_query_part
2524                                         $since_id_part
2525                                         $query_strategy_part ORDER BY $order_by
2526                                         $limit_query_part $offset_query_part";
2527
2528                                 if ($_REQUEST["debug"]) print $query;
2529
2530                                 $result = db_query($link, $query);
2531
2532                         } else {
2533                                 // browsing by tag
2534
2535                                 $select_qpart = "SELECT DISTINCT " .
2536                                                                 "date_entered," .
2537                                                                 "guid," .
2538                                                                 "note," .
2539                                                                 "ttrss_entries.id as id," .
2540                                                                 "title," .
2541                                                                 "updated," .
2542                                                                 "unread," .
2543                                                                 "feed_id," .
2544                                                                 "orig_feed_id," .
2545                                                                 "marked," .
2546                                                                 "num_comments, " .
2547                                                                 "comments, " .
2548                                                                 "tag_cache," .
2549                                                                 "label_cache," .
2550                                                                 "link," .
2551                                                                 "last_read," .
2552                                                                 SUBSTRING_FOR_DATE . "(last_read,1,19) as last_read_noms," .
2553                                                                 $since_id_part .
2554                                                                 $vfeed_query_part .
2555                                                                 $content_query_part .
2556                                                                 SUBSTRING_FOR_DATE . "(updated,1,19) as updated_noms," .
2557                                                                 "score ";
2558
2559                                 $feed_kind = "Tags";
2560                                 $all_tags = explode(",", $feed);
2561                                 if ($search_mode == 'any') {
2562                                         $tag_sql = "tag_name in (" . implode(", ", array_map("db_quote", $all_tags)) . ")";
2563                                         $from_qpart = " FROM ttrss_entries,ttrss_user_entries,ttrss_tags ";
2564                                         $where_qpart = " WHERE " .
2565                                                                    "ref_id = ttrss_entries.id AND " .
2566                                                                    "ttrss_user_entries.owner_uid = $owner_uid AND " .
2567                                                                    "post_int_id = int_id AND $tag_sql AND " .
2568                                                                    $view_query_part .
2569                                                                    $search_query_part .
2570                                                                    $query_strategy_part . " ORDER BY $order_by " .
2571                                                                    $limit_query_part;
2572
2573                                 } else {
2574                                         $i = 1;
2575                                         $sub_selects = array();
2576                                         $sub_ands = array();
2577                                         foreach ($all_tags as $term) {
2578                                                 array_push($sub_selects, "(SELECT post_int_id from ttrss_tags WHERE tag_name = " . db_quote($term) . " AND owner_uid = $owner_uid) as A$i");
2579                                                 $i++;
2580                                         }
2581                                         if ($i > 2) {
2582                                                 $x = 1;
2583                                                 $y = 2;
2584                                                 do {
2585                                                         array_push($sub_ands, "A$x.post_int_id = A$y.post_int_id");
2586                                                         $x++;
2587                                                         $y++;
2588                                                 } while ($y < $i);
2589                                         }
2590                                         array_push($sub_ands, "A1.post_int_id = ttrss_user_entries.int_id and ttrss_user_entries.owner_uid = $owner_uid");
2591                                         array_push($sub_ands, "ttrss_user_entries.ref_id = ttrss_entries.id");
2592                                         $from_qpart = " FROM " . implode(", ", $sub_selects) . ", ttrss_user_entries, ttrss_entries";
2593                                         $where_qpart = " WHERE " . implode(" AND ", $sub_ands);
2594                                 }
2595                                 //                              error_log("TAG SQL: " . $tag_sql);
2596                                 // $tag_sql = "tag_name = '$feed'";   DEFAULT way
2597
2598                                 //                              error_log("[". $select_qpart . "][" . $from_qpart . "][" .$where_qpart . "]");
2599                                 $result = db_query($link, $select_qpart . $from_qpart . $where_qpart);
2600                         }
2601
2602                         return array($result, $feed_title, $feed_site_url, $last_error);
2603
2604         }
2605
2606         function sanitize($link, $str, $force_strip_tags = false, $owner = false, $site_url = false) {
2607                 global $purifier;
2608
2609                 if (!$owner) $owner = $_SESSION["uid"];
2610
2611                 $res = trim($str); if (!$res) return '';
2612
2613                 // create global Purifier object if needed
2614                 if (!$purifier) {
2615                         require_once 'lib/htmlpurifier/library/HTMLPurifier.auto.php';
2616
2617                         $config = HTMLPurifier_Config::createDefault();
2618
2619                         $allowed = "p,a[href],i,em,b,strong,code,pre,blockquote,br,img[src|alt|title|align|hspace],ul,ol,li,h1,h2,h3,h4,s,object[classid|type|id|name|width|height|codebase],param[name|value],table,tr,td,span[class]";
2620
2621                         $config->set('HTML.SafeObject', true);
2622                         @$config->set('HTML', 'Allowed', $allowed);
2623                         $config->set('Output.FlashCompat', true);
2624                         $config->set('Attr.EnableID', true);
2625                         if (!defined('MOBILE_VERSION')) {
2626                                 @$config->set('Cache', 'SerializerPath', CACHE_DIR . "/htmlpurifier");
2627                         } else {
2628                                 @$config->set('Cache', 'SerializerPath', "../" . CACHE_DIR . "/htmlpurifier");
2629                         }
2630
2631                         $config->set('Filter.YouTube', true);
2632
2633                         $purifier = new HTMLPurifier($config);
2634                 }
2635
2636                 $res = $purifier->purify($res);
2637
2638                 if (get_pref($link, "STRIP_IMAGES", $owner)) {
2639                         $res = preg_replace('/<img[^>]+>/is', '', $res);
2640                 }
2641
2642                 if (strpos($res, "href=") === false)
2643                         $res = rewrite_urls($res);
2644
2645                 $charset_hack = '<head>
2646                         <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
2647                 </head>';
2648
2649                 $res = trim($res); if (!$res) return '';
2650
2651                 libxml_use_internal_errors(true);
2652
2653                 $doc = new DOMDocument();
2654                 $doc->loadHTML($charset_hack . $res);
2655                 $xpath = new DOMXPath($doc);
2656
2657                 $entries = $xpath->query('(//a[@href]|//img[@src])');
2658                 $br_inserted = 0;
2659
2660                 foreach ($entries as $entry) {
2661
2662                         if ($site_url) {
2663
2664                                 if ($entry->hasAttribute('href'))
2665                                         $entry->setAttribute('href',
2666                                                 rewrite_relative_url($site_url, $entry->getAttribute('href')));
2667
2668                                 if ($entry->hasAttribute('src'))
2669                                         if (preg_match('/^image.php\?i=[a-z0-9]+$/', $entry->getAttribute('src')) == 0)
2670                                                 $entry->setAttribute('src',
2671                                                         rewrite_relative_url($site_url, $entry->getAttribute('src')));
2672                         }
2673
2674                         if (strtolower($entry->nodeName) == "a") {
2675                                 $entry->setAttribute("target", "_blank");
2676                         }
2677
2678                         if (strtolower($entry->nodeName) == "img" && !$br_inserted) {
2679                                 $br = $doc->createElement("br");
2680
2681                                 if ($entry->parentNode->nextSibling) {
2682                                         $entry->parentNode->insertBefore($br, $entry->nextSibling);
2683                                         $br_inserted = 1;
2684                                 }
2685
2686                         }
2687                 }
2688
2689                 $node = $doc->getElementsByTagName('body')->item(0);
2690
2691                 return $doc->saveXML($node, LIBXML_NOEMPTYTAG);
2692         }
2693
2694         /**
2695          * Send by mail a digest of last articles.
2696          *
2697          * @param mixed $link The database connection.
2698          * @param integer $limit The maximum number of articles by digest.
2699          * @return boolean Return false if digests are not enabled.
2700          */
2701         function send_headlines_digests($link, $debug = false) {
2702
2703                 require_once 'lib/phpmailer/class.phpmailer.php';
2704
2705                 $user_limit = 15; // amount of users to process (e.g. emails to send out)
2706                 $limit = 1000; // maximum amount of headlines to include
2707
2708                 if ($debug) _debug("Sending digests, batch of max $user_limit users, headline limit = $limit");
2709
2710                 if (DB_TYPE == "pgsql") {
2711                         $interval_query = "last_digest_sent < NOW() - INTERVAL '1 days'";
2712                 } else if (DB_TYPE == "mysql") {
2713                         $interval_query = "last_digest_sent < DATE_SUB(NOW(), INTERVAL 1 DAY)";
2714                 }
2715
2716                 $result = db_query($link, "SELECT id,email FROM ttrss_users
2717                                 WHERE email != '' AND (last_digest_sent IS NULL OR $interval_query)");
2718
2719                 while ($line = db_fetch_assoc($result)) {
2720
2721                         if (get_pref($link, 'DIGEST_ENABLE', $line['id'], false)) {
2722                                 $preferred_ts = strtotime(get_pref($link, 'DIGEST_PREFERRED_TIME', $line['id'], '00:00'));
2723
2724                                 // try to send digests within 2 hours of preferred time
2725                                 if ($preferred_ts && time() >= $preferred_ts &&
2726                                                 time() - $preferred_ts <= 7200) {
2727
2728                                         if ($debug) print "Sending digest for UID:" . $line['id'] . " - " . $line["email"] . " ... ";
2729
2730                                         $do_catchup = get_pref($link, 'DIGEST_CATCHUP', $line['id'], false);
2731
2732                                         global $tz_offset;
2733
2734                                         // reset tz_offset global to prevent tz cache clash between users
2735                                         $tz_offset = -1;
2736
2737                                         $tuple = prepare_headlines_digest($link, $line["id"], 1, $limit);
2738                                         $digest = $tuple[0];
2739                                         $headlines_count = $tuple[1];
2740                                         $affected_ids = $tuple[2];
2741                                         $digest_text = $tuple[3];
2742
2743                                         if ($headlines_count > 0) {
2744
2745                                                 $mail = new PHPMailer();
2746
2747                                                 $mail->PluginDir = "lib/phpmailer/";
2748                                                 $mail->SetLanguage("en", "lib/phpmailer/language/");
2749
2750                                                 $mail->CharSet = "UTF-8";
2751
2752                                                 $mail->From = SMTP_FROM_ADDRESS;
2753                                                 $mail->FromName = SMTP_FROM_NAME;
2754                                                 $mail->AddAddress($line["email"], $line["login"]);
2755
2756                                                 if (SMTP_HOST) {
2757                                                         $mail->Host = SMTP_HOST;
2758                                                         $mail->Mailer = "smtp";
2759                                                         $mail->SMTPAuth = SMTP_LOGIN != '';
2760                                                         $mail->Username = SMTP_LOGIN;
2761                                                         $mail->Password = SMTP_PASSWORD;
2762                                                 }
2763
2764                                                 $mail->IsHTML(true);
2765                                                 $mail->Subject = DIGEST_SUBJECT;
2766                                                 $mail->Body = $digest;
2767                                                 $mail->AltBody = $digest_text;
2768
2769                                                 $rc = $mail->Send();
2770
2771                                                 if (!$rc && $debug) print "ERROR: " . $mail->ErrorInfo;
2772
2773                                                 if ($debug) print "RC=$rc\n";
2774
2775                                                 if ($rc && $do_catchup) {
2776                                                         if ($debug) print "Marking affected articles as read...\n";
2777                                                         catchupArticlesById($link, $affected_ids, 0, $line["id"]);
2778                                                 }
2779                                         } else {
2780                                                 if ($debug) print "No headlines\n";
2781                                         }
2782
2783                                         db_query($link, "UPDATE ttrss_users SET last_digest_sent = NOW()
2784                                                 WHERE id = " . $line["id"]);
2785
2786                                 }
2787                         }
2788                 }
2789
2790                 if ($debug) _debug("All done.");
2791
2792         }
2793
2794         function prepare_headlines_digest($link, $user_id, $days = 1, $limit = 1000) {
2795
2796                 require_once "lib/MiniTemplator.class.php";
2797
2798                 $tpl = new MiniTemplator;
2799                 $tpl_t = new MiniTemplator;
2800
2801                 $tpl->readTemplateFromFile("templates/digest_template_html.txt");
2802                 $tpl_t->readTemplateFromFile("templates/digest_template.txt");
2803
2804                 $user_tz_string = get_pref($link, 'USER_TIMEZONE', $user_id);
2805                 $local_ts = convert_timestamp(time(), 'UTC', $user_tz_string);
2806
2807                 $tpl->setVariable('CUR_DATE', date('Y/m/d', $local_ts));
2808                 $tpl->setVariable('CUR_TIME', date('G:i', $local_ts));
2809
2810                 $tpl_t->setVariable('CUR_DATE', date('Y/m/d', $local_ts));
2811                 $tpl_t->setVariable('CUR_TIME', date('G:i', $local_ts));
2812
2813                 $affected_ids = array();
2814
2815                 if (DB_TYPE == "pgsql") {
2816                         $interval_query = "ttrss_entries.date_updated > NOW() - INTERVAL '$days days'";
2817                 } else if (DB_TYPE == "mysql") {
2818                         $interval_query = "ttrss_entries.date_updated > DATE_SUB(NOW(), INTERVAL $days DAY)";
2819                 }
2820
2821                 $result = db_query($link, "SELECT ttrss_entries.title,
2822                                 ttrss_feeds.title AS feed_title,
2823                                 COALESCE(ttrss_feed_categories.title, '".__('Uncategorized')."') AS cat_title,
2824                                 date_updated,
2825                                 ttrss_user_entries.ref_id,
2826                                 link,
2827                                 score,
2828                                 content,
2829                                 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
2830                         FROM
2831                                 ttrss_user_entries,ttrss_entries,ttrss_feeds
2832                         LEFT JOIN
2833                                 ttrss_feed_categories ON (cat_id = ttrss_feed_categories.id)
2834                         WHERE
2835                                 ref_id = ttrss_entries.id AND feed_id = ttrss_feeds.id
2836                                 AND include_in_digest = true
2837                                 AND $interval_query
2838                                 AND ttrss_user_entries.owner_uid = $user_id
2839                                 AND unread = true
2840                                 AND score >= 0
2841                         ORDER BY ttrss_feed_categories.title, ttrss_feeds.title, score DESC, date_updated DESC
2842                         LIMIT $limit");
2843
2844                 $cur_feed_title = "";
2845
2846                 $headlines_count = db_num_rows($result);
2847
2848                 $headlines = array();
2849
2850                 while ($line = db_fetch_assoc($result)) {
2851                         array_push($headlines, $line);
2852                 }
2853
2854                 for ($i = 0; $i < sizeof($headlines); $i++) {
2855
2856                         $line = $headlines[$i];
2857
2858                         array_push($affected_ids, $line["ref_id"]);
2859
2860                         $updated = make_local_datetime($link, $line['last_updated'], false,
2861                                 $user_id);
2862
2863 /*                      if ($line["score"] != 0) {
2864                                 if ($line["score"] > 0) $line["score"] = '+' . $line["score"];
2865
2866                                 $line["title"] .= " (".$line['score'].")";
2867                         } */
2868
2869                         if (get_pref($link, 'ENABLE_FEED_CATS', $user_id)) {
2870                                 $line['feed_title'] = $line['cat_title'] . " / " . $line['feed_title'];
2871                         }
2872
2873                         $tpl->setVariable('FEED_TITLE', $line["feed_title"]);
2874                         $tpl->setVariable('ARTICLE_TITLE', $line["title"]);
2875                         $tpl->setVariable('ARTICLE_LINK', $line["link"]);
2876                         $tpl->setVariable('ARTICLE_UPDATED', $updated);
2877                         $tpl->setVariable('ARTICLE_EXCERPT',
2878                                 truncate_string(strip_tags($line["content"]), 300));
2879 //                      $tpl->setVariable('ARTICLE_CONTENT',
2880 //                              strip_tags($article_content));
2881
2882                         $tpl->addBlock('article');
2883
2884                         $tpl_t->setVariable('FEED_TITLE', $line["feed_title"]);
2885                         $tpl_t->setVariable('ARTICLE_TITLE', $line["title"]);
2886                         $tpl_t->setVariable('ARTICLE_LINK', $line["link"]);
2887                         $tpl_t->setVariable('ARTICLE_UPDATED', $updated);
2888 //                      $tpl_t->setVariable('ARTICLE_EXCERPT',
2889 //                              truncate_string(strip_tags($line["excerpt"]), 100));
2890
2891                         $tpl_t->addBlock('article');
2892
2893                         if ($headlines[$i]['feed_title'] != $headlines[$i+1]['feed_title']) {
2894                                 $tpl->addBlock('feed');
2895                                 $tpl_t->addBlock('feed');
2896                         }
2897
2898                 }
2899
2900                 $tpl->addBlock('digest');
2901                 $tpl->generateOutputToString($tmp);
2902
2903                 $tpl_t->addBlock('digest');
2904                 $tpl_t->generateOutputToString($tmp_t);
2905
2906                 return array($tmp, $headlines_count, $affected_ids, $tmp_t);
2907         }
2908
2909         function check_for_update($link) {
2910                 if (CHECK_FOR_NEW_VERSION && $_SESSION['access_level'] >= 10) {
2911                         $version_url = "http://tt-rss.org/version.php?ver=" . VERSION;
2912
2913                         $version_data = @fetch_file_contents($version_url);
2914
2915                         if ($version_data) {
2916                                 $version_data = json_decode($version_data, true);
2917                                 if ($version_data && $version_data['version']) {
2918
2919                                         if (version_compare(VERSION, $version_data['version']) == -1) {
2920                                                 return $version_data;
2921                                         }
2922                                 }
2923                         }
2924                 }
2925                 return false;
2926         }
2927
2928         function markArticlesById($link, $ids, $cmode) {
2929
2930                 $tmp_ids = array();
2931
2932                 foreach ($ids as $id) {
2933                         array_push($tmp_ids, "ref_id = '$id'");
2934                 }
2935
2936                 $ids_qpart = join(" OR ", $tmp_ids);
2937
2938                 if ($cmode == 0) {
2939                         db_query($link, "UPDATE ttrss_user_entries SET
2940                         marked = false,last_read = NOW()
2941                         WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
2942                 } else if ($cmode == 1) {
2943                         db_query($link, "UPDATE ttrss_user_entries SET
2944                         marked = true
2945                         WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
2946                 } else {
2947                         db_query($link, "UPDATE ttrss_user_entries SET
2948                         marked = NOT marked,last_read = NOW()
2949                         WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
2950                 }
2951         }
2952
2953         function publishArticlesById($link, $ids, $cmode) {
2954
2955                 $tmp_ids = array();
2956
2957                 foreach ($ids as $id) {
2958                         array_push($tmp_ids, "ref_id = '$id'");
2959                 }
2960
2961                 $ids_qpart = join(" OR ", $tmp_ids);
2962
2963                 if ($cmode == 0) {
2964                         db_query($link, "UPDATE ttrss_user_entries SET
2965                         published = false,last_read = NOW()
2966                         WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
2967                 } else if ($cmode == 1) {
2968                         db_query($link, "UPDATE ttrss_user_entries SET
2969                         published = true
2970                         WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
2971                 } else {
2972                         db_query($link, "UPDATE ttrss_user_entries SET
2973                         published = NOT published,last_read = NOW()
2974                         WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
2975                 }
2976
2977                 if (PUBSUBHUBBUB_HUB) {
2978                         $rss_link = get_self_url_prefix() .
2979                                 "/public.php?op=rss&id=-2&key=" .
2980                                 get_feed_access_key($link, -2, false);
2981
2982                         $p = new Publisher(PUBSUBHUBBUB_HUB);
2983
2984                         $pubsub_result = $p->publish_update($rss_link);
2985                 }
2986         }
2987
2988         function catchupArticlesById($link, $ids, $cmode, $owner_uid = false) {
2989
2990                 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
2991                 if (count($ids) == 0) return;
2992
2993                 $tmp_ids = array();
2994
2995                 foreach ($ids as $id) {
2996                         array_push($tmp_ids, "ref_id = '$id'");
2997                 }
2998
2999                 $ids_qpart = join(" OR ", $tmp_ids);
3000
3001                 if ($cmode == 0) {
3002                         db_query($link, "UPDATE ttrss_user_entries SET
3003                         unread = false,last_read = NOW()
3004                         WHERE ($ids_qpart) AND owner_uid = $owner_uid");
3005                 } else if ($cmode == 1) {
3006                         db_query($link, "UPDATE ttrss_user_entries SET
3007                         unread = true
3008                         WHERE ($ids_qpart) AND owner_uid = $owner_uid");
3009                 } else {
3010                         db_query($link, "UPDATE ttrss_user_entries SET
3011                         unread = NOT unread,last_read = NOW()
3012                         WHERE ($ids_qpart) AND owner_uid = $owner_uid");
3013                 }
3014
3015                 /* update ccache */
3016
3017                 $result = db_query($link, "SELECT DISTINCT feed_id FROM ttrss_user_entries
3018                         WHERE ($ids_qpart) AND owner_uid = $owner_uid");
3019
3020                 while ($line = db_fetch_assoc($result)) {
3021                         ccache_update($link, $line["feed_id"], $owner_uid);
3022                 }
3023         }
3024
3025         function catchupArticleById($link, $id, $cmode) {
3026
3027                 if ($cmode == 0) {
3028                         db_query($link, "UPDATE ttrss_user_entries SET
3029                         unread = false,last_read = NOW()
3030                         WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
3031                 } else if ($cmode == 1) {
3032                         db_query($link, "UPDATE ttrss_user_entries SET
3033                         unread = true
3034                         WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
3035                 } else {
3036                         db_query($link, "UPDATE ttrss_user_entries SET
3037                         unread = NOT unread,last_read = NOW()
3038                         WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
3039                 }
3040
3041                 $feed_id = getArticleFeed($link, $id);
3042                 ccache_update($link, $feed_id, $_SESSION["uid"]);
3043         }
3044
3045         function make_guid_from_title($title) {
3046                 return preg_replace("/[ \"\',.:;]/", "-",
3047                         mb_strtolower(strip_tags($title), 'utf-8'));
3048         }
3049
3050         function get_article_tags($link, $id, $owner_uid = 0, $tag_cache = false) {
3051
3052                 $a_id = db_escape_string($id);
3053
3054                 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
3055
3056                 $query = "SELECT DISTINCT tag_name,
3057                         owner_uid as owner FROM
3058                         ttrss_tags WHERE post_int_id = (SELECT int_id FROM ttrss_user_entries WHERE
3059                         ref_id = '$a_id' AND owner_uid = '$owner_uid' LIMIT 1) ORDER BY tag_name";
3060
3061                 $obj_id = md5("TAGS:$owner_uid:$id");
3062                 $tags = array();
3063
3064                 /* check cache first */
3065
3066                 if ($tag_cache === false) {
3067                         $result = db_query($link, "SELECT tag_cache FROM ttrss_user_entries
3068                                 WHERE ref_id = '$id' AND owner_uid = $owner_uid");
3069
3070                         $tag_cache = db_fetch_result($result, 0, "tag_cache");
3071                 }
3072
3073                 if ($tag_cache) {
3074                         $tags = explode(",", $tag_cache);
3075                 } else {
3076
3077                         /* do it the hard way */
3078
3079                         $tmp_result = db_query($link, $query);
3080
3081                         while ($tmp_line = db_fetch_assoc($tmp_result)) {
3082                                 array_push($tags, $tmp_line["tag_name"]);
3083                         }
3084
3085                         /* update the cache */
3086
3087                         $tags_str = db_escape_string(join(",", $tags));
3088
3089                         db_query($link, "UPDATE ttrss_user_entries
3090                                 SET tag_cache = '$tags_str' WHERE ref_id = '$id'
3091                                 AND owner_uid = $owner_uid");
3092                 }
3093
3094                 return $tags;
3095         }
3096
3097         function trim_array($array) {
3098                 $tmp = $array;
3099                 array_walk($tmp, 'trim');
3100                 return $tmp;
3101         }
3102
3103         function tag_is_valid($tag) {
3104                 if ($tag == '') return false;
3105                 if (preg_match("/^[0-9]*$/", $tag)) return false;
3106                 if (mb_strlen($tag) > 250) return false;
3107
3108                 if (function_exists('iconv')) {
3109                         $tag = iconv("utf-8", "utf-8", $tag);
3110                 }
3111
3112                 if (!$tag) return false;
3113
3114                 return true;
3115         }
3116
3117         function render_login_form($link, $mobile = 0) {
3118                 switch ($mobile) {
3119                 case 0:
3120                         require_once "login_form.php";
3121                         break;
3122                 case 1:
3123                         require_once "mobile/login_form.php";
3124                         break;
3125                 case 2:
3126                         require_once "mobile/classic/login_form.php";
3127                 }
3128         }
3129
3130         // from http://developer.apple.com/internet/safari/faq.html
3131         function no_cache_incantation() {
3132                 header("Expires: Mon, 22 Dec 1980 00:00:00 GMT"); // Happy birthday to me :)
3133                 header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified
3134                 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); // HTTP/1.1
3135                 header("Cache-Control: post-check=0, pre-check=0", false);
3136                 header("Pragma: no-cache"); // HTTP/1.0
3137         }
3138
3139         function format_warning($msg, $id = "") {
3140                 global $link;
3141                 return "<div class=\"warning\" id=\"$id\">
3142                         <img src=\"".theme_image($link, "images/sign_excl.png")."\">$msg</div>";
3143         }
3144
3145         function format_notice($msg, $id = "") {
3146                 global $link;
3147                 return "<div class=\"notice\" id=\"$id\">
3148                         <img src=\"".theme_image($link, "images/sign_info.png")."\">$msg</div>";
3149         }
3150
3151         function format_error($msg, $id = "") {
3152                 global $link;
3153                 return "<div class=\"error\" id=\"$id\">
3154                         <img src=\"".theme_image($link, "images/sign_excl.png")."\">$msg</div>";
3155         }
3156
3157         function print_notice($msg) {
3158                 return print format_notice($msg);
3159         }
3160
3161         function print_warning($msg) {
3162                 return print format_warning($msg);
3163         }
3164
3165         function print_error($msg) {
3166                 return print format_error($msg);
3167         }
3168
3169
3170         function T_sprintf() {
3171                 $args = func_get_args();
3172                 return vsprintf(__(array_shift($args)), $args);
3173         }
3174
3175         function format_inline_player($link, $url, $ctype) {
3176
3177                 $entry = "";
3178
3179                 if (strpos($ctype, "audio/") === 0) {
3180
3181                         if ($_SESSION["hasAudio"] && (strpos($ctype, "ogg") !== false ||
3182                                 strpos($_SERVER['HTTP_USER_AGENT'], "Chrome") !== false ||
3183                                 strpos($_SERVER['HTTP_USER_AGENT'], "Safari") !== false )) {
3184
3185                                 $id = 'AUDIO-' . uniqid();
3186
3187                                 $entry .= "<audio id=\"$id\"\">
3188                                         <source src=\"$url\"></source>
3189                                         </audio>";
3190
3191                                 $entry .= "<span onclick=\"player(this)\"
3192                                         title=\"".__("Click to play")."\" status=\"0\"
3193                                         class=\"player\" audio-id=\"$id\">".__("Play")."</span>";
3194
3195                         } else {
3196
3197                                 $entry .= "<object type=\"application/x-shockwave-flash\"
3198                                         data=\"lib/button/musicplayer.swf?song_url=$url\"
3199                                         width=\"17\" height=\"17\" style='float : left; margin-right : 5px;'>
3200                                         <param name=\"movie\"
3201                                                 value=\"lib/button/musicplayer.swf?song_url=$url\" />
3202                                         </object>";
3203                         }
3204                 }
3205
3206                 $filename = substr($url, strrpos($url, "/")+1);
3207
3208                 $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
3209                         $filename . " (" . $ctype . ")" . "</a>";
3210
3211                 return $entry;
3212         }
3213
3214         function format_article($link, $id, $mark_as_read = true, $zoom_mode = false, $owner_uid = false) {
3215                 global $plugins;
3216
3217                 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
3218
3219                 $rv = array();
3220
3221                 $rv['id'] = $id;
3222
3223                 /* we can figure out feed_id from article id anyway, why do we
3224                  * pass feed_id here? let's ignore the argument :( */
3225
3226                 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
3227                         WHERE ref_id = '$id'");
3228
3229                 $feed_id = (int) db_fetch_result($result, 0, "feed_id");
3230
3231                 $rv['feed_id'] = $feed_id;
3232
3233                 //if (!$zoom_mode) { print "<article id='$id'><![CDATA["; };
3234
3235                 $result = db_query($link, "SELECT rtl_content, always_display_enclosures FROM ttrss_feeds
3236                         WHERE id = '$feed_id' AND owner_uid = $owner_uid");
3237
3238                 if (db_num_rows($result) == 1) {
3239                         $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
3240                         $always_display_enclosures = sql_bool_to_bool(db_fetch_result($result, 0, "always_display_enclosures"));
3241                 } else {
3242                         $rtl_content = false;
3243                         $always_display_enclosures = false;
3244                 }
3245
3246                 if ($rtl_content) {
3247                         $rtl_tag = "dir=\"RTL\"";
3248                         $rtl_class = "RTL";
3249                 } else {
3250                         $rtl_tag = "";
3251                         $rtl_class = "";
3252                 }
3253
3254                 if ($mark_as_read) {
3255                         $result = db_query($link, "UPDATE ttrss_user_entries
3256                                 SET unread = false,last_read = NOW()
3257                                 WHERE ref_id = '$id' AND owner_uid = $owner_uid");
3258
3259                         ccache_update($link, $feed_id, $owner_uid);
3260                 }
3261
3262                 $result = db_query($link, "SELECT title,link,content,feed_id,comments,int_id,
3263                         ".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
3264                         (SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url,
3265                         (SELECT site_url FROM ttrss_feeds WHERE id = feed_id) as site_url,
3266                         num_comments,
3267                         tag_cache,
3268                         author,
3269                         orig_feed_id,
3270                         note
3271                         FROM ttrss_entries,ttrss_user_entries
3272                         WHERE   id = '$id' AND ref_id = id AND owner_uid = $owner_uid");
3273
3274                 if ($result) {
3275
3276                         $line = db_fetch_assoc($result);
3277
3278                         $plugins->hook('article_before', $line);
3279
3280                         if ($line["icon_url"]) {
3281                                 $feed_icon = "<img src=\"" . $line["icon_url"] . "\">";
3282                         } else {
3283                                 $feed_icon = "&nbsp;";
3284                         }
3285
3286                         $feed_site_url = $line['site_url'];
3287
3288                         $num_comments = $line["num_comments"];
3289                         $entry_comments = "";
3290
3291                         if ($num_comments > 0) {
3292                                 if ($line["comments"]) {
3293                                         $comments_url = $line["comments"];
3294                                 } else {
3295                                         $comments_url = $line["link"];
3296                                 }
3297                                 $entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
3298                         } else {
3299                                 if ($line["comments"] && $line["link"] != $line["comments"]) {
3300                                         $entry_comments = "<a target='_blank' href=\"".$line["comments"]."\">comments</a>";
3301                                 }
3302                         }
3303
3304                         if ($zoom_mode) {
3305                                 header("Content-Type: text/html");
3306                                 $rv['content'] .= "<html><head>
3307                                                 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
3308                                                 <title>Tiny Tiny RSS - ".$line["title"]."</title>
3309                                                 <link rel=\"stylesheet\" type=\"text/css\" href=\"tt-rss.css\">
3310                                         </head><body>";
3311                         }
3312
3313                         $title_escaped = db_escape_string($line['title']);
3314
3315                         $rv['content'] .= "<div id=\"PTITLE-$id\" style=\"display : none\">" .
3316                                 truncate_string(strip_tags($line['title']), 15) . "</div>";
3317
3318                         $rv['content'] .= "<div id=\"PTITLE-FULL-$id\" style=\"display : none\">" .
3319                                 strip_tags($line['title']) . "</div>";
3320
3321                         $rv['content'] .= "<div class=\"postReply\" id=\"POST-$id\">";
3322
3323                         $rv['content'] .= "<div onclick=\"return postClicked(event, $id)\"
3324                                 class=\"postHeader\" id=\"POSTHDR-$id\">";
3325
3326                         $entry_author = $line["author"];
3327
3328                         if ($entry_author) {
3329                                 $entry_author = __(" - ") . $entry_author;
3330                         }
3331
3332                         $parsed_updated = make_local_datetime($link, $line["updated"], true,
3333                                 $owner_uid, true);
3334
3335                         $rv['content'] .= "<div class=\"postDate$rtl_class\">$parsed_updated</div>";
3336
3337                         if ($line["link"]) {
3338                                 $rv['content'] .= "<div class='postTitle' clear='both'><a target='_blank'
3339                                         title=\"".htmlspecialchars($line['title'])."\"
3340                                         href=\"" .
3341                                         $line["link"] . "\">" .
3342                                         truncate_string($line["title"], 100) .
3343                                         "<span class='author'>$entry_author</span></a></div>";
3344                         } else {
3345                                 $rv['content'] .= "<div class='postTitle' clear='both'>" . $line["title"] . "$entry_author</div>";
3346                         }
3347
3348                         $tag_cache = $line["tag_cache"];
3349
3350                         if (!$tag_cache)
3351                                 $tags = get_article_tags($link, $id, $owner_uid);
3352                         else
3353                                 $tags = explode(",", $tag_cache);
3354
3355                         $tags_str = format_tags_string($tags, $id);
3356                         $tags_str_full = join(", ", $tags);
3357
3358                         if (!$tags_str_full) $tags_str_full = __("no tags");
3359
3360                         if (!$entry_comments) $entry_comments = "&nbsp;"; # placeholder
3361
3362                         $rv['content'] .= "<div class='postTags' style='float : right'>
3363                                 <img src='".theme_image($link, 'images/tag.png')."'
3364                                 class='tagsPic' alt='Tags' title='Tags'>&nbsp;";
3365
3366                         if (!$zoom_mode) {
3367                                 $rv['content'] .= "<span id=\"ATSTR-$id\">$tags_str</span>
3368                                         <a title=\"".__('Edit tags for this article')."\"
3369                                         href=\"#\" onclick=\"editArticleTags($id, $feed_id)\">(+)</a>";
3370
3371                                 $rv['content'] .= "<div dojoType=\"dijit.Tooltip\"
3372                                         id=\"ATSTRTIP-$id\" connectId=\"ATSTR-$id\"
3373                                         position=\"below\">$tags_str_full</div>";
3374
3375                                 $rv['content'] .= "<img src=\"".theme_image($link, 'images/art-zoom.png')."\"
3376                                                 class='tagsPic' style=\"cursor : pointer\"
3377                                                 onclick=\"postOpenInNewTab(event, $id)\"
3378                                                 alt='Zoom' title='".__('Open article in new tab')."'>";
3379
3380                                 $button_plugins = explode(",", ARTICLE_BUTTON_PLUGINS);
3381
3382                                 foreach ($button_plugins as $p) {
3383                                         $pclass = trim("button_${p}");
3384
3385                                         if (class_exists($pclass)) {
3386                                                 $plugin = new $pclass($link);
3387                                                 $rv['content'] .= $plugin->render($id, $line);
3388                                         }
3389                                 }
3390
3391                                 $rv['content'] .= "<img src=\"".theme_image($link, 'images/digest_checkbox.png')."\"
3392                                                 class='tagsPic' style=\"cursor : pointer\"
3393                                                 onclick=\"closeArticlePanel($id)\"
3394                                                 title='".__('Close article')."'>";
3395
3396                         } else {
3397                                 $tags_str = strip_tags($tags_str);
3398                                 $rv['content'] .= "<span id=\"ATSTR-$id\">$tags_str</span>";
3399                         }
3400                         $rv['content'] .= "</div>";
3401                         $rv['content'] .= "<div clear='both'>$entry_comments</div>";
3402
3403                         if ($line["orig_feed_id"]) {
3404
3405                                 $tmp_result = db_query($link, "SELECT * FROM ttrss_archived_feeds
3406                                         WHERE id = ".$line["orig_feed_id"]);
3407
3408                                 if (db_num_rows($tmp_result) != 0) {
3409
3410                                         $rv['content'] .= "<div clear='both'>";
3411                                         $rv['content'] .= __("Originally from:");
3412
3413                                         $rv['content'] .= "&nbsp;";
3414
3415                                         $tmp_line = db_fetch_assoc($tmp_result);
3416
3417                                         $rv['content'] .= "<a target='_blank'
3418                                                 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
3419                                                 $tmp_line['title'] . "</a>";
3420
3421                                         $rv['content'] .= "&nbsp;";
3422
3423                                         $rv['content'] .= "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
3424                                         $rv['content'] .= "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_set.png'></a>";
3425
3426                                         $rv['content'] .= "</div>";
3427                                 }
3428                         }
3429
3430                         $rv['content'] .= "</div>";
3431
3432                         $rv['content'] .= "<div id=\"POSTNOTE-$id\">";
3433                                 if ($line['note']) {
3434                                         $rv['content'] .= format_article_note($id, $line['note']);
3435                                 }
3436                         $rv['content'] .= "</div>";
3437
3438                         $rv['content'] .= "<div class=\"postIcon\">" .
3439                                 "<a target=\"_blank\" title=\"".__("Visit the website")."\"$
3440                                 href=\"".htmlspecialchars($feed_site_url)."\">".
3441                                 $feed_icon . "</a></div>";
3442
3443                         $rv['content'] .= "<div class=\"postContent\">";
3444
3445                         // N-grams
3446
3447                         if (DB_TYPE == "pgsql" and defined('_NGRAM_TITLE_RELATED_THRESHOLD')) {
3448
3449                                 $ngram_result = db_query($link, "SELECT id,title FROM
3450                                                 ttrss_entries,ttrss_user_entries
3451                                         WHERE ref_id = id AND updated >= NOW() - INTERVAL '7 day'
3452                                                 AND similarity(title, '$title_escaped') >= "._NGRAM_TITLE_RELATED_THRESHOLD."
3453                                                 AND title != '$title_escaped'
3454                                                 AND owner_uid = $owner_uid");
3455
3456                                 if (db_num_rows($ngram_result) > 0) {
3457                                         $rv['content'] .= "<div dojoType=\"dijit.form.DropDownButton\">".
3458                                                 "<span>" . __('Related')."</span>";
3459                                         $rv['content'] .= "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
3460
3461                                         while ($nline = db_fetch_assoc($ngram_result)) {
3462                                                 $rv['content'] .= "<div onclick=\"hlOpenInNewTab(null,".$nline['id'].")\"
3463                                                         dojoType=\"dijit.MenuItem\">".$nline['title']."</div>";
3464
3465                                         }
3466                                         $rv['content'] .= "</div></div><br/";
3467                                 }
3468                         }
3469
3470                         $article_content = sanitize($link, $line["content"], false, $owner_uid,
3471                                 $feed_site_url);
3472
3473                         $rv['content'] .= $article_content;
3474
3475                         $rv['content'] .= format_article_enclosures($link, $id,
3476                                 $always_display_enclosures, $article_content);
3477
3478                         $rv['content'] .= "</div>";
3479
3480                         $rv['content'] .= "</div>";
3481
3482                 }
3483
3484                 if ($zoom_mode) {
3485                         $rv['content'] .= "
3486                                 <div style=\"text-align : center\">
3487                                 <button onclick=\"return window.close()\">".
3488                                         __("Close this window")."</button></div>";
3489                         $rv['content'] .= "</body></html>";
3490                 }
3491
3492                 $plugins->hook('article_after', $rv);
3493
3494                 return $rv;
3495
3496         }
3497
3498         function print_checkpoint($n, $s) {
3499                 $ts = getmicrotime();
3500                 echo sprintf("<!-- CP[$n] %.4f seconds -->", $ts - $s);
3501                 return $ts;
3502         }
3503
3504         function sanitize_tag($tag) {
3505                 $tag = trim($tag);
3506
3507                 $tag = mb_strtolower($tag, 'utf-8');
3508
3509                 $tag = preg_replace('/[\'\"\+\>\<]/', "", $tag);
3510
3511 //              $tag = str_replace('"', "", $tag);
3512 //              $tag = str_replace("+", " ", $tag);
3513                 $tag = str_replace("technorati tag: ", "", $tag);
3514
3515                 return $tag;
3516         }
3517
3518         function get_self_url_prefix() {
3519                 return SELF_URL_PATH;
3520         }
3521
3522         function opml_publish_url($link){
3523
3524                 $url_path = get_self_url_prefix();
3525                 $url_path .= "/opml.php?op=publish&key=" .
3526                         get_feed_access_key($link, 'OPML:Publish', false, $_SESSION["uid"]);
3527
3528                 return $url_path;
3529         }
3530
3531         /**
3532          * Purge a feed contents, marked articles excepted.
3533          *
3534          * @param mixed $link The database connection.
3535          * @param integer $id The id of the feed to purge.
3536          * @return void
3537          */
3538         function clear_feed_articles($link, $id) {
3539
3540                 if ($id != 0) {
3541                         $result = db_query($link, "DELETE FROM ttrss_user_entries
3542                         WHERE feed_id = '$id' AND marked = false AND owner_uid = " . $_SESSION["uid"]);
3543                 } else {
3544                         $result = db_query($link, "DELETE FROM ttrss_user_entries
3545                         WHERE feed_id IS NULL AND marked = false AND owner_uid = " . $_SESSION["uid"]);
3546                 }
3547
3548                 $result = db_query($link, "DELETE FROM ttrss_entries WHERE
3549                         (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
3550
3551                 ccache_update($link, $id, $_SESSION['uid']);
3552         } // function clear_feed_articles
3553
3554         /**
3555          * Compute the Mozilla Firefox feed adding URL from server HOST and REQUEST_URI.
3556          *
3557          * @return string The Mozilla Firefox feed adding URL.
3558          */
3559         function add_feed_url() {
3560                 //$url_path = ($_SERVER['HTTPS'] != "on" ? 'http://' :  'https://') . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
3561
3562                 $url_path = get_self_url_prefix() .
3563                         "/backend.php?op=pref-feeds&quiet=1&method=add&feed_url=%s";
3564                 return $url_path;
3565         } // function add_feed_url
3566
3567         function encrypt_password($pass, $salt = '', $mode2 = false) {
3568                 if ($salt && $mode2) {
3569                         return "MODE2:" . hash('sha256', $salt . $pass);
3570                 } else if ($salt) {
3571                         return "SHA1X:" . sha1("$salt:$pass");
3572                 } else {
3573                         return "SHA1:" . sha1($pass);
3574                 }
3575         } // function encrypt_password
3576
3577         function sanitize_article_content($text) {
3578                 # we don't support CDATA sections in articles, they break our own escaping
3579                 $text = preg_replace("/\[\[CDATA/", "", $text);
3580                 $text = preg_replace("/\]\]\>/", "", $text);
3581                 return $text;
3582         }
3583
3584         function load_filters($link, $feed, $owner_uid, $action_id = false) {
3585                 $filters = array();
3586
3587
3588                 if ($action_id) $ftype_query_part = "action_id = '$action_id' AND";
3589
3590                 $result = db_query($link, "SELECT reg_exp,
3591                         ttrss_filter_types.name AS name,
3592                         ttrss_filter_actions.name AS action,
3593                         inverse,
3594                         action_param,
3595                         filter_param
3596                         FROM ttrss_filters
3597                                 LEFT JOIN ttrss_feeds ON (ttrss_feeds.id = '$feed'),
3598                                 ttrss_filter_types,ttrss_filter_actions
3599                         WHERE
3600                                 enabled = true AND
3601                                 $ftype_query_part
3602                                 ttrss_filters.owner_uid = $owner_uid AND
3603                                 ttrss_filter_types.id = filter_type AND
3604                                 ttrss_filter_actions.id = action_id AND
3605                                 ((cat_filter = true AND ttrss_feeds.cat_id = ttrss_filters.cat_id) OR
3606                                 (cat_filter = true AND ttrss_feeds.cat_id IS NULL AND
3607                                         ttrss_filters.cat_id IS NULL) OR
3608                                 (cat_filter = false AND (feed_id IS NULL OR feed_id = '$feed')))
3609                         ORDER BY reg_exp");
3610
3611                 while ($line = db_fetch_assoc($result)) {
3612
3613                         if (!$filters[$line["name"]]) $filters[$line["name"]] = array();
3614                                 $filter["reg_exp"] = $line["reg_exp"];
3615                                 $filter["action"] = $line["action"];
3616                                 $filter["action_param"] = $line["action_param"];
3617                                 $filter["filter_param"] = $line["filter_param"];
3618                                 $filter["inverse"] = sql_bool_to_bool($line["inverse"]);
3619
3620                                 array_push($filters[$line["name"]], $filter);
3621                         }
3622
3623
3624                 return $filters;
3625         }
3626
3627         function get_score_pic($score) {
3628                 if ($score > 100) {
3629                         return "score_high.png";
3630                 } else if ($score > 0) {
3631                         return "score_half_high.png";
3632                 } else if ($score < -100) {
3633                         return "score_low.png";
3634                 } else if ($score < 0) {
3635                         return "score_half_low.png";
3636                 } else {
3637                         return "score_neutral.png";
3638                 }
3639         }
3640
3641         function feed_has_icon($id) {
3642                 return is_file(ICONS_DIR . "/$id.ico") && filesize(ICONS_DIR . "/$id.ico") > 0;
3643         }
3644
3645         function init_connection($link) {
3646                 if ($link) {
3647
3648                         if (DB_TYPE == "pgsql") {
3649                                 pg_query($link, "set client_encoding = 'UTF-8'");
3650                                 pg_set_client_encoding("UNICODE");
3651                                 pg_query($link, "set datestyle = 'ISO, european'");
3652                                 pg_query($link, "set TIME ZONE 0");
3653                         } else {
3654                                 db_query($link, "SET time_zone = '+0:0'");
3655
3656                                 if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
3657                                         db_query($link, "SET NAMES " . MYSQL_CHARSET);
3658                                 }
3659                         }
3660                         return true;
3661                 } else {
3662                         print "Unable to connect to database:" . db_last_error();
3663                         return false;
3664                 }
3665         }
3666
3667         /* function ccache_zero($link, $feed_id, $owner_uid) {
3668                 db_query($link, "UPDATE ttrss_counters_cache SET
3669                         value = 0, updated = NOW() WHERE
3670                         feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
3671         } */
3672
3673         function ccache_zero_all($link, $owner_uid) {
3674                 db_query($link, "UPDATE ttrss_counters_cache SET
3675                         value = 0 WHERE owner_uid = '$owner_uid'");
3676
3677                 db_query($link, "UPDATE ttrss_cat_counters_cache SET
3678                         value = 0 WHERE owner_uid = '$owner_uid'");
3679         }
3680
3681         function ccache_remove($link, $feed_id, $owner_uid, $is_cat = false) {
3682
3683                 if (!$is_cat) {
3684                         $table = "ttrss_counters_cache";
3685                 } else {
3686                         $table = "ttrss_cat_counters_cache";
3687                 }
3688
3689                 db_query($link, "DELETE FROM $table WHERE
3690                         feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
3691
3692         }
3693
3694         function ccache_update_all($link, $owner_uid) {
3695
3696                 if (get_pref($link, 'ENABLE_FEED_CATS', $owner_uid)) {
3697
3698                         $result = db_query($link, "SELECT feed_id FROM ttrss_cat_counters_cache
3699                                 WHERE feed_id > 0 AND owner_uid = '$owner_uid'");
3700
3701                         while ($line = db_fetch_assoc($result)) {
3702                                 ccache_update($link, $line["feed_id"], $owner_uid, true);
3703                         }
3704
3705                         /* We have to manually include category 0 */
3706
3707                         ccache_update($link, 0, $owner_uid, true);
3708
3709                 } else {
3710                         $result = db_query($link, "SELECT feed_id FROM ttrss_counters_cache
3711                                 WHERE feed_id > 0 AND owner_uid = '$owner_uid'");
3712
3713                         while ($line = db_fetch_assoc($result)) {
3714                                 print ccache_update($link, $line["feed_id"], $owner_uid);
3715
3716                         }
3717
3718                 }
3719         }
3720
3721         function ccache_find($link, $feed_id, $owner_uid, $is_cat = false,
3722                 $no_update = false) {
3723
3724                 if (!is_numeric($feed_id)) return;
3725
3726                 if (!$is_cat) {
3727                         $table = "ttrss_counters_cache";
3728                         if ($feed_id > 0) {
3729                                 $tmp_result = db_query($link, "SELECT owner_uid FROM ttrss_feeds
3730                                         WHERE id = '$feed_id'");
3731                                 $owner_uid = db_fetch_result($tmp_result, 0, "owner_uid");
3732                         }
3733                 } else {
3734                         $table = "ttrss_cat_counters_cache";
3735                 }
3736
3737                 if (DB_TYPE == "pgsql") {
3738                         $date_qpart = "updated > NOW() - INTERVAL '15 minutes'";
3739                 } else if (DB_TYPE == "mysql") {
3740                         $date_qpart = "updated > DATE_SUB(NOW(), INTERVAL 15 MINUTE)";
3741                 }
3742
3743                 $result = db_query($link, "SELECT value FROM $table
3744                         WHERE owner_uid = '$owner_uid' AND feed_id = '$feed_id'
3745                         LIMIT 1");
3746
3747                 if (db_num_rows($result) == 1) {
3748                         return db_fetch_result($result, 0, "value");
3749                 } else {
3750                         if ($no_update) {
3751                                 return -1;
3752                         } else {
3753                                 return ccache_update($link, $feed_id, $owner_uid, $is_cat);
3754                         }
3755                 }
3756
3757         }
3758
3759         function ccache_update($link, $feed_id, $owner_uid, $is_cat = false,
3760                 $update_pcat = true) {
3761
3762                 if (!is_numeric($feed_id)) return;
3763
3764                 if (!$is_cat && $feed_id > 0) {
3765                         $tmp_result = db_query($link, "SELECT owner_uid FROM ttrss_feeds
3766                                 WHERE id = '$feed_id'");
3767                         $owner_uid = db_fetch_result($tmp_result, 0, "owner_uid");
3768                 }
3769
3770                 $prev_unread = ccache_find($link, $feed_id, $owner_uid, $is_cat, true);
3771
3772                 /* When updating a label, all we need to do is recalculate feed counters
3773                  * because labels are not cached */
3774
3775                 if ($feed_id < 0) {
3776                         ccache_update_all($link, $owner_uid);
3777                         return;
3778                 }
3779
3780                 if (!$is_cat) {
3781                         $table = "ttrss_counters_cache";
3782                 } else {
3783                         $table = "ttrss_cat_counters_cache";
3784                 }
3785
3786                 if ($is_cat && $feed_id >= 0) {
3787                         if ($feed_id != 0) {
3788                                 $cat_qpart = "cat_id = '$feed_id'";
3789                         } else {
3790                                 $cat_qpart = "cat_id IS NULL";
3791                         }
3792
3793                         /* Recalculate counters for child feeds */
3794
3795                         $result = db_query($link, "SELECT id FROM ttrss_feeds
3796                                                 WHERE owner_uid = '$owner_uid' AND $cat_qpart");
3797
3798                         while ($line = db_fetch_assoc($result)) {
3799                                 ccache_update($link, $line["id"], $owner_uid, false, false);
3800                         }
3801
3802                         $result = db_query($link, "SELECT SUM(value) AS sv
3803                                 FROM ttrss_counters_cache, ttrss_feeds
3804                                 WHERE id = feed_id AND $cat_qpart AND
3805                                 ttrss_feeds.owner_uid = '$owner_uid'");
3806
3807                         $unread = (int) db_fetch_result($result, 0, "sv");
3808
3809                 } else {
3810                         $unread = (int) getFeedArticles($link, $feed_id, $is_cat, true, $owner_uid);
3811                 }
3812
3813                 db_query($link, "BEGIN");
3814
3815                 $result = db_query($link, "SELECT feed_id FROM $table
3816                         WHERE owner_uid = '$owner_uid' AND feed_id = '$feed_id' LIMIT 1");
3817
3818                 if (db_num_rows($result) == 1) {
3819                         db_query($link, "UPDATE $table SET
3820                                 value = '$unread', updated = NOW() WHERE
3821                                 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
3822
3823                 } else {
3824                         db_query($link, "INSERT INTO $table
3825                                 (feed_id, value, owner_uid, updated)
3826                                 VALUES
3827                                 ($feed_id, $unread, $owner_uid, NOW())");
3828                 }
3829
3830                 db_query($link, "COMMIT");
3831
3832                 if ($feed_id > 0 && $prev_unread != $unread) {
3833
3834                         if (!$is_cat) {
3835
3836                                 /* Update parent category */
3837
3838                                 if ($update_pcat) {
3839
3840                                         $result = db_query($link, "SELECT cat_id FROM ttrss_feeds
3841                                                 WHERE owner_uid = '$owner_uid' AND id = '$feed_id'");
3842
3843                                         $cat_id = (int) db_fetch_result($result, 0, "cat_id");
3844
3845                                         ccache_update($link, $cat_id, $owner_uid, true);
3846
3847                                 }
3848                         }
3849                 } else if ($feed_id < 0) {
3850                         ccache_update_all($link, $owner_uid);
3851                 }
3852
3853                 return $unread;
3854         }
3855
3856         /* function ccache_cleanup($link, $owner_uid) {
3857
3858                 if (DB_TYPE == "pgsql") {
3859                         db_query($link, "DELETE FROM ttrss_counters_cache AS c1 WHERE
3860                                 (SELECT count(*) FROM ttrss_counters_cache AS c2
3861                                         WHERE c1.feed_id = c2.feed_id AND c2.owner_uid = c1.owner_uid) > 1
3862                                         AND owner_uid = '$owner_uid'");
3863
3864                         db_query($link, "DELETE FROM ttrss_cat_counters_cache AS c1 WHERE
3865                                 (SELECT count(*) FROM ttrss_cat_counters_cache AS c2
3866                                         WHERE c1.feed_id = c2.feed_id AND c2.owner_uid = c1.owner_uid) > 1
3867                                         AND owner_uid = '$owner_uid'");
3868                 } else {
3869                         db_query($link, "DELETE c1 FROM
3870                                         ttrss_counters_cache AS c1,
3871                                         ttrss_counters_cache AS c2
3872                                 WHERE
3873                                         c1.owner_uid = '$owner_uid' AND
3874                                         c1.owner_uid = c2.owner_uid AND
3875                                         c1.feed_id = c2.feed_id");
3876
3877                         db_query($link, "DELETE c1 FROM
3878                                         ttrss_cat_counters_cache AS c1,
3879                                         ttrss_cat_counters_cache AS c2
3880                                 WHERE
3881                                         c1.owner_uid = '$owner_uid' AND
3882                                         c1.owner_uid = c2.owner_uid AND
3883                                         c1.feed_id = c2.feed_id");
3884
3885                 }
3886         } */
3887
3888         function label_find_id($link, $label, $owner_uid) {
3889                 $result = db_query($link,
3890                         "SELECT id FROM ttrss_labels2 WHERE caption = '$label'
3891                                 AND owner_uid = '$owner_uid' LIMIT 1");
3892
3893                 if (db_num_rows($result) == 1) {
3894                         return db_fetch_result($result, 0, "id");
3895                 } else {
3896                         return 0;
3897                 }
3898         }
3899
3900         function get_article_labels($link, $id) {
3901                 $rv = array();
3902
3903
3904                 $result = db_query($link, "SELECT label_cache FROM
3905                         ttrss_user_entries WHERE ref_id = '$id' AND owner_uid = " .
3906                         $_SESSION["uid"]);
3907
3908                 $label_cache = db_fetch_result($result, 0, "label_cache");
3909
3910                 if ($label_cache) {
3911
3912                         $label_cache = json_decode($label_cache, true);
3913
3914                         if ($label_cache["no-labels"] == 1)
3915                                 return $rv;
3916                         else
3917                                 return $label_cache;
3918                 }
3919
3920                 $result = db_query($link,
3921                         "SELECT DISTINCT label_id,caption,fg_color,bg_color
3922                                 FROM ttrss_labels2, ttrss_user_labels2
3923                         WHERE id = label_id
3924                                 AND article_id = '$id'
3925                                 AND owner_uid = ".$_SESSION["uid"] . "
3926                         ORDER BY caption");
3927
3928                 while ($line = db_fetch_assoc($result)) {
3929                         $rk = array($line["label_id"], $line["caption"], $line["fg_color"],
3930                                 $line["bg_color"]);
3931                         array_push($rv, $rk);
3932                 }
3933
3934                 if (count($rv) > 0)
3935                         label_update_cache($link, $id, $rv);
3936                 else
3937                         label_update_cache($link, $id, array("no-labels" => 1));
3938
3939                 return $rv;
3940         }
3941
3942
3943         function label_find_caption($link, $label, $owner_uid) {
3944                 $result = db_query($link,
3945                         "SELECT caption FROM ttrss_labels2 WHERE id = '$label'
3946                                 AND owner_uid = '$owner_uid' LIMIT 1");
3947
3948                 if (db_num_rows($result) == 1) {
3949                         return db_fetch_result($result, 0, "caption");
3950                 } else {
3951                         return "";
3952                 }
3953         }
3954
3955         function label_update_cache($link, $id, $labels = false, $force = false) {
3956
3957                 if ($force)
3958                         label_clear_cache($link, $id);
3959
3960                 if (!$labels)
3961                         $labels = get_article_labels($link, $id);
3962
3963                 $labels = db_escape_string(json_encode($labels));
3964
3965                 db_query($link, "UPDATE ttrss_user_entries SET
3966                         label_cache = '$labels' WHERE ref_id = '$id'");
3967
3968         }
3969
3970         function label_clear_cache($link, $id) {
3971
3972                 db_query($link, "UPDATE ttrss_user_entries SET
3973                         label_cache = '' WHERE ref_id = '$id'");
3974
3975         }
3976
3977         function label_remove_article($link, $id, $label, $owner_uid) {
3978
3979                 $label_id = label_find_id($link, $label, $owner_uid);
3980
3981                 if (!$label_id) return;
3982
3983                 $result = db_query($link,
3984                         "DELETE FROM ttrss_user_labels2
3985                         WHERE
3986                                 label_id = '$label_id' AND
3987                                 article_id = '$id'");
3988
3989                 label_clear_cache($link, $id);
3990         }
3991
3992         function label_add_article($link, $id, $label, $owner_uid) {
3993
3994                 $label_id = label_find_id($link, $label, $owner_uid);
3995
3996                 if (!$label_id) return;
3997
3998                 $result = db_query($link,
3999                         "SELECT
4000                                 article_id FROM ttrss_labels2, ttrss_user_labels2
4001                         WHERE
4002                                 label_id = id AND
4003                                 label_id = '$label_id' AND
4004                                 article_id = '$id' AND owner_uid = '$owner_uid'
4005                         LIMIT 1");
4006
4007                 if (db_num_rows($result) == 0) {
4008                         db_query($link, "INSERT INTO ttrss_user_labels2
4009                                 (label_id, article_id) VALUES ('$label_id', '$id')");
4010                 }
4011
4012                 label_clear_cache($link, $id);
4013
4014         }
4015
4016         function label_remove($link, $id, $owner_uid) {
4017                 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
4018
4019                 db_query($link, "BEGIN");
4020
4021                 $result = db_query($link, "SELECT caption FROM ttrss_labels2
4022                         WHERE id = '$id'");
4023
4024                 $caption = db_fetch_result($result, 0, "caption");
4025
4026                 $result = db_query($link, "DELETE FROM ttrss_labels2 WHERE id = '$id'
4027                         AND owner_uid = " . $owner_uid);
4028
4029                 if (db_affected_rows($link, $result) != 0 && $caption) {
4030
4031                         /* Remove access key for the label */
4032
4033                         $ext_id = -11 - $id;
4034
4035                         db_query($link, "DELETE FROM ttrss_access_keys WHERE
4036                                 feed_id = '$ext_id' AND owner_uid = $owner_uid");
4037
4038                         /* Disable filters that reference label being removed */
4039
4040                         db_query($link, "UPDATE ttrss_filters SET
4041                                 enabled = false WHERE action_param = '$caption'
4042                                         AND action_id = 7
4043                                         AND owner_uid = " . $owner_uid);
4044
4045                         /* Remove cached data */
4046
4047                         db_query($link, "UPDATE ttrss_user_entries SET label_cache = ''
4048                                 WHERE label_cache LIKE '%$caption%' AND owner_uid = " . $owner_uid);
4049
4050                 }
4051
4052                 db_query($link, "COMMIT");
4053         }
4054
4055         function label_create($link, $caption, $fg_color = '', $bg_color = '', $owner_uid) {
4056
4057                 if (!$owner_uid) $owner_uid = $_SESSION['uid'];
4058
4059                 db_query($link, "BEGIN");
4060
4061                 $result = false;
4062
4063                 $result = db_query($link, "SELECT id FROM ttrss_labels2
4064                         WHERE caption = '$caption' AND owner_uid = $owner_uid");
4065
4066                 if (db_num_rows($result) == 0) {
4067                         $result = db_query($link,
4068                                 "INSERT INTO ttrss_labels2 (caption,owner_uid,fg_color,bg_color)
4069                                         VALUES ('$caption', '$owner_uid', '$fg_color', '$bg_color')");
4070
4071                         $result = db_affected_rows($link, $result) != 0;
4072                 }
4073
4074                 db_query($link, "COMMIT");
4075
4076                 return $result;
4077         }
4078
4079         function format_tags_string($tags, $id) {
4080
4081                 $tags_str = "";
4082                 $tags_nolinks_str = "";
4083
4084                 $num_tags = 0;
4085
4086                 $tag_limit = 6;
4087
4088                 $formatted_tags = array();
4089
4090                 foreach ($tags as $tag) {
4091                         $num_tags++;
4092                         $tag_escaped = str_replace("'", "\\'", $tag);
4093
4094                         if (mb_strlen($tag) > 30) {
4095                                 $tag = truncate_string($tag, 30);
4096                         }
4097
4098                         $tag_str = "<a href=\"javascript:viewfeed('$tag_escaped')\">$tag</a>";
4099
4100                         array_push($formatted_tags, $tag_str);
4101
4102                         $tmp_tags_str = implode(", ", $formatted_tags);
4103
4104                         if ($num_tags == $tag_limit || mb_strlen($tmp_tags_str) > 150) {
4105                                 break;
4106                         }
4107                 }
4108
4109                 $tags_str = implode(", ", $formatted_tags);
4110
4111                 if ($num_tags < count($tags)) {
4112                         $tags_str .= ", &hellip;";
4113                 }
4114
4115                 if ($num_tags == 0) {
4116                         $tags_str = __("no tags");
4117                 }
4118
4119                 return $tags_str;
4120
4121         }
4122
4123         function format_article_labels($labels, $id) {
4124
4125                 $labels_str = "";
4126
4127                 foreach ($labels as $l) {
4128                         $labels_str .= sprintf("<span class='hlLabelRef'
4129                                 style='color : %s; background-color : %s'>%s</span>",
4130                                         $l[2], $l[3], $l[1]);
4131                         }
4132
4133                 return $labels_str;
4134
4135         }
4136
4137         function format_article_note($id, $note) {
4138
4139                 $str = "<div class='articleNote'        onclick=\"editArticleNote($id)\">
4140                         <div class='noteEdit' onclick=\"editArticleNote($id)\">".
4141                         __('(edit note)')."</div>$note</div>";
4142
4143                 return $str;
4144         }
4145
4146         function toggle_collapse_cat($link, $cat_id, $mode) {
4147                 if ($cat_id > 0) {
4148                         $mode = bool_to_sql_bool($mode);
4149
4150                         db_query($link, "UPDATE ttrss_feed_categories SET
4151                                 collapsed = $mode WHERE id = '$cat_id' AND owner_uid = " .
4152                                 $_SESSION["uid"]);
4153                 } else {
4154                         $pref_name = '';
4155
4156                         switch ($cat_id) {
4157                         case -1:
4158                                 $pref_name = '_COLLAPSED_SPECIAL';
4159                                 break;
4160                         case -2:
4161                                 $pref_name = '_COLLAPSED_LABELS';
4162                                 break;
4163                         case 0:
4164                                 $pref_name = '_COLLAPSED_UNCAT';
4165                                 break;
4166                         }
4167
4168                         if ($pref_name) {
4169                                 if ($mode) {
4170                                         set_pref($link, $pref_name, 'true');
4171                                 } else {
4172                                         set_pref($link, $pref_name, 'false');
4173                                 }
4174                         }
4175                 }
4176         }
4177
4178         function remove_feed($link, $id, $owner_uid) {
4179
4180                 if ($id > 0) {
4181
4182                         /* save starred articles in Archived feed */
4183
4184                         db_query($link, "BEGIN");
4185
4186                         /* prepare feed if necessary */
4187
4188                         $result = db_query($link, "SELECT id FROM ttrss_archived_feeds
4189                                 WHERE id = '$id'");
4190
4191                         if (db_num_rows($result) == 0) {
4192                                 db_query($link, "INSERT INTO ttrss_archived_feeds
4193                                         (id, owner_uid, title, feed_url, site_url)
4194                                 SELECT id, owner_uid, title, feed_url, site_url from ttrss_feeds
4195                                 WHERE id = '$id'");
4196                         }
4197
4198                         db_query($link, "UPDATE ttrss_user_entries SET feed_id = NULL,
4199                                 orig_feed_id = '$id' WHERE feed_id = '$id' AND
4200                                         marked = true AND owner_uid = $owner_uid");
4201
4202                         /* Remove access key for the feed */
4203
4204                         db_query($link, "DELETE FROM ttrss_access_keys WHERE
4205                                 feed_id = '$id' AND owner_uid = $owner_uid");
4206
4207                         /* remove the feed */
4208
4209                         db_query($link, "DELETE FROM ttrss_feeds
4210                                         WHERE id = '$id' AND owner_uid = $owner_uid");
4211
4212                         db_query($link, "COMMIT");
4213
4214                         if (file_exists(ICONS_DIR . "/$id.ico")) {
4215                                 unlink(ICONS_DIR . "/$id.ico");
4216                         }
4217
4218                         ccache_remove($link, $id, $owner_uid);
4219
4220                 } else {
4221                         label_remove($link, -11-$id, $owner_uid);
4222                         ccache_remove($link, -11-$id, $owner_uid);
4223                 }
4224         }
4225
4226         function get_feed_category($link, $feed_cat, $parent_cat_id = false) {
4227                 if ($parent_cat_id) {
4228                         $parent_qpart = "parent_cat = '$parent_cat_id'";
4229                         $parent_insert = "'$parent_cat_id'";
4230                 } else {
4231                         $parent_qpart = "parent_cat IS NULL";
4232                         $parent_insert = "NULL";
4233                 }
4234
4235                 $result = db_query($link,
4236                         "SELECT id FROM ttrss_feed_categories
4237                         WHERE $parent_qpart AND title = '$feed_cat' AND owner_uid = ".$_SESSION["uid"]);
4238
4239                 if (db_num_rows($result) == 0) {
4240                         return false;
4241                 } else {
4242                         return db_fetch_result($result, 0, "id");
4243                 }
4244         }
4245
4246         function add_feed_category($link, $feed_cat, $parent_cat_id = false) {
4247
4248                 if (!$feed_cat) return false;
4249
4250                 db_query($link, "BEGIN");
4251
4252                 if ($parent_cat_id) {
4253                         $parent_qpart = "parent_cat = '$parent_cat_id'";
4254                         $parent_insert = "'$parent_cat_id'";
4255                 } else {
4256                         $parent_qpart = "parent_cat IS NULL";
4257                         $parent_insert = "NULL";
4258                 }
4259
4260                 $result = db_query($link,
4261                         "SELECT id FROM ttrss_feed_categories
4262                         WHERE $parent_qpart AND title = '$feed_cat' AND owner_uid = ".$_SESSION["uid"]);
4263
4264                 if (db_num_rows($result) == 0) {
4265
4266                         $result = db_query($link,
4267                                 "INSERT INTO ttrss_feed_categories (owner_uid,title,parent_cat)
4268                                 VALUES ('".$_SESSION["uid"]."', '$feed_cat', $parent_insert)");
4269
4270                         db_query($link, "COMMIT");
4271
4272                         return true;
4273                 }
4274
4275                 return false;
4276         }
4277
4278         function remove_feed_category($link, $id, $owner_uid) {
4279
4280                 db_query($link, "DELETE FROM ttrss_feed_categories
4281                         WHERE id = '$id' AND owner_uid = $owner_uid");
4282
4283                 ccache_remove($link, $id, $owner_uid, true);
4284         }
4285
4286         function archive_article($link, $id, $owner_uid) {
4287                 db_query($link, "BEGIN");
4288
4289                 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
4290                         WHERE ref_id = '$id' AND owner_uid = $owner_uid");
4291
4292                 if (db_num_rows($result) != 0) {
4293
4294                         /* prepare the archived table */
4295
4296                         $feed_id = (int) db_fetch_result($result, 0, "feed_id");
4297
4298                         if ($feed_id) {
4299                                 $result = db_query($link, "SELECT id FROM ttrss_archived_feeds
4300                                         WHERE id = '$feed_id'");
4301
4302                                 if (db_num_rows($result) == 0) {
4303                                         db_query($link, "INSERT INTO ttrss_archived_feeds
4304                                                 (id, owner_uid, title, feed_url, site_url)
4305                                         SELECT id, owner_uid, title, feed_url, site_url from ttrss_feeds
4306                                         WHERE id = '$feed_id'");
4307                                 }
4308
4309                                 db_query($link, "UPDATE ttrss_user_entries
4310                                         SET orig_feed_id = feed_id, feed_id = NULL
4311                                         WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4312                         }
4313                 }
4314
4315                 db_query($link, "COMMIT");
4316         }
4317
4318         function getArticleFeed($link, $id) {
4319                 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
4320                         WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4321
4322                 if (db_num_rows($result) != 0) {
4323                         return db_fetch_result($result, 0, "feed_id");
4324                 } else {
4325                         return 0;
4326                 }
4327         }
4328
4329         /**
4330          * Fixes incomplete URLs by prepending "http://".
4331          * Also replaces feed:// with http://, and
4332          * prepends a trailing slash if the url is a domain name only.
4333          *
4334          * @param string $url Possibly incomplete URL
4335          *
4336          * @return string Fixed URL.
4337          */
4338         function fix_url($url) {
4339                 if (strpos($url, '://') === false) {
4340                         $url = 'http://' . $url;
4341                 } else if (substr($url, 0, 5) == 'feed:') {
4342                         $url = 'http:' . substr($url, 5);
4343                 }
4344
4345                 //prepend slash if the URL has no slash in it
4346                 // "http://www.example" -> "http://www.example/"
4347                 if (strpos($url, '/', strpos($url, ':') + 3) === false) {
4348                         $url .= '/';
4349                 }
4350
4351                 if ($url != "http:///")
4352                         return $url;
4353                 else
4354                         return '';
4355         }
4356
4357         function validate_feed_url($url) {
4358                 $parts = parse_url($url);
4359
4360                 return ($parts['scheme'] == 'http' || $parts['scheme'] == 'feed' || $parts['scheme'] == 'https');
4361
4362         }
4363
4364         function get_article_enclosures($link, $id) {
4365
4366                 $query = "SELECT * FROM ttrss_enclosures
4367                         WHERE post_id = '$id' AND content_url != ''";
4368
4369                 $rv = array();
4370
4371                 $result = db_query($link, $query);
4372
4373                 if (db_num_rows($result) > 0) {
4374                         while ($line = db_fetch_assoc($result)) {
4375                                 array_push($rv, $line);
4376                         }
4377                 }
4378
4379                 return $rv;
4380         }
4381
4382         function api_get_feeds($link, $cat_id, $unread_only, $limit, $offset) {
4383
4384                         $feeds = array();
4385
4386                         /* Labels */
4387
4388                         if ($cat_id == -4 || $cat_id == -2) {
4389                                 $counters = getLabelCounters($link, true);
4390
4391                                 foreach (array_values($counters) as $cv) {
4392
4393                                         $unread = $cv["counter"];
4394
4395                                         if ($unread || !$unread_only) {
4396
4397                                                 $row = array(
4398                                                                 "id" => $cv["id"],
4399                                                                 "title" => $cv["description"],
4400                                                                 "unread" => $cv["counter"],
4401                                                                 "cat_id" => -2,
4402                                                         );
4403
4404                                                 array_push($feeds, $row);
4405                                         }
4406                                 }
4407                         }
4408
4409                         /* Virtual feeds */
4410
4411                         if ($cat_id == -4 || $cat_id == -1) {
4412                                 foreach (array(-1, -2, -3, -4, 0) as $i) {
4413                                         $unread = getFeedUnread($link, $i);
4414
4415                                         if ($unread || !$unread_only) {
4416                                                 $title = getFeedTitle($link, $i);
4417
4418                                                 $row = array(
4419                                                                 "id" => $i,
4420                                                                 "title" => $title,
4421                                                                 "unread" => $unread,
4422                                                                 "cat_id" => -1,
4423                                                         );
4424                                                 array_push($feeds, $row);
4425                                         }
4426
4427                                 }
4428                         }
4429
4430                         /* Real feeds */
4431
4432                         if ($limit) {
4433                                 $limit_qpart = "LIMIT $limit OFFSET $offset";
4434                         } else {
4435                                 $limit_qpart = "";
4436                         }
4437
4438                         if ($cat_id == -4 || $cat_id == -3) {
4439                                 $result = db_query($link, "SELECT
4440                                         id, feed_url, cat_id, title, order_id, ".
4441                                                 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
4442                                                 FROM ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"] .
4443                                                 " ORDER BY cat_id, title " . $limit_qpart);
4444                         } else {
4445
4446                                 if ($cat_id)
4447                                         $cat_qpart = "cat_id = '$cat_id'";
4448                                 else
4449                                         $cat_qpart = "cat_id IS NULL";
4450
4451                                 $result = db_query($link, "SELECT
4452                                         id, feed_url, cat_id, title, order_id, ".
4453                                                 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
4454                                                 FROM ttrss_feeds WHERE
4455                                                 $cat_qpart AND owner_uid = " . $_SESSION["uid"] .
4456                                                 " ORDER BY cat_id, title " . $limit_qpart);
4457                         }
4458
4459                         while ($line = db_fetch_assoc($result)) {
4460
4461                                 $unread = getFeedUnread($link, $line["id"]);
4462
4463                                 $has_icon = feed_has_icon($line['id']);
4464
4465                                 if ($unread || !$unread_only) {
4466
4467                                         $row = array(
4468                                                         "feed_url" => $line["feed_url"],
4469                                                         "title" => $line["title"],
4470                                                         "id" => (int)$line["id"],
4471                                                         "unread" => (int)$unread,
4472                                                         "has_icon" => $has_icon,
4473                                                         "cat_id" => (int)$line["cat_id"],
4474                                                         "last_updated" => strtotime($line["last_updated"]),
4475                                                         "order_id" => (int) $line["order_id"],
4476                                                 );
4477
4478                                         array_push($feeds, $row);
4479                                 }
4480                         }
4481
4482                 return $feeds;
4483         }
4484
4485         function api_get_headlines($link, $feed_id, $limit, $offset,
4486                                 $filter, $is_cat, $show_excerpt, $show_content, $view_mode, $order,
4487                                 $include_attachments, $since_id,
4488                                 $search = "", $search_mode = "", $match_on = "") {
4489
4490                         $qfh_ret = queryFeedHeadlines($link, $feed_id, $limit,
4491                                 $view_mode, $is_cat, $search, $search_mode, $match_on,
4492                                 $order, $offset, 0, false, $since_id);
4493
4494                         $result = $qfh_ret[0];
4495                         $feed_title = $qfh_ret[1];
4496
4497                         $headlines = array();
4498
4499                         while ($line = db_fetch_assoc($result)) {
4500                                 $is_updated = ($line["last_read"] == "" &&
4501                                         ($line["unread"] != "t" && $line["unread"] != "1"));
4502
4503                                 $tags = explode(",", $line["tag_cache"]);
4504                                 $labels = json_decode($line["label_cache"], true);
4505
4506                                 //if (!$tags) $tags = get_article_tags($link, $line["id"]);
4507                                 //if (!$labels) $labels = get_article_labels($link, $line["id"]);
4508
4509                                 $headline_row = array(
4510                                                 "id" => (int)$line["id"],
4511                                                 "unread" => sql_bool_to_bool($line["unread"]),
4512                                                 "marked" => sql_bool_to_bool($line["marked"]),
4513                                                 "published" => sql_bool_to_bool($line["published"]),
4514                                                 "updated" => strtotime($line["updated"]),
4515                                                 "is_updated" => $is_updated,
4516                                                 "title" => $line["title"],
4517                                                 "link" => $line["link"],
4518                                                 "feed_id" => $line["feed_id"],
4519                                                 "tags" => $tags,
4520                                         );
4521
4522                                         if ($include_attachments)
4523                                                 $headline_row['attachments'] = get_article_enclosures($link,
4524                                                         $line['id']);
4525
4526                                 if ($show_excerpt) {
4527                                         $excerpt = truncate_string(strip_tags($line["content_preview"]), 100);
4528                                         $headline_row["excerpt"] = $excerpt;
4529                                 }
4530
4531                                 if ($show_content) {
4532                                         $headline_row["content"] = $line["content_preview"];
4533                                 }
4534
4535                                 // unify label output to ease parsing
4536                                 if ($labels["no-labels"] == 1) $labels = array();
4537
4538                                 $headline_row["labels"] = $labels;
4539
4540                                 $headline_row["feed_title"] = $line["feed_title"];
4541
4542                                 array_push($headlines, $headline_row);
4543                         }
4544
4545                         return $headlines;
4546         }
4547
4548         function generate_error_feed($link, $error) {
4549                 $reply = array();
4550
4551                 $reply['headlines']['id'] = -6;
4552                 $reply['headlines']['is_cat'] = false;
4553
4554                 $reply['headlines']['toolbar'] = '';
4555                 $reply['headlines']['content'] = "<div class='whiteBox'>". $error . "</div>";
4556
4557                 $reply['headlines-info'] = array("count" => 0,
4558                         "vgroup_last_feed" => '',
4559                         "unread" => 0,
4560                         "disable_cache" => true);
4561
4562                 return $reply;
4563         }
4564
4565
4566         function generate_dashboard_feed($link) {
4567                 $reply = array();
4568
4569                 $reply['headlines']['id'] = -5;
4570                 $reply['headlines']['is_cat'] = false;
4571
4572                 $reply['headlines']['toolbar'] = '';
4573                 $reply['headlines']['content'] = "<div class='whiteBox'>".__('No feed selected.');
4574
4575                 $reply['headlines']['content'] .= "<p class=\"small\"><span class=\"insensitive\">";
4576
4577                 $result = db_query($link, "SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
4578                         WHERE owner_uid = " . $_SESSION['uid']);
4579
4580                 $last_updated = db_fetch_result($result, 0, "last_updated");
4581                 $last_updated = make_local_datetime($link, $last_updated, false);
4582
4583                 $reply['headlines']['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
4584
4585                 $result = db_query($link, "SELECT COUNT(id) AS num_errors
4586                         FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
4587
4588                 $num_errors = db_fetch_result($result, 0, "num_errors");
4589
4590                 if ($num_errors > 0) {
4591                         $reply['headlines']['content'] .= "<br/>";
4592                         $reply['headlines']['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
4593                                 __('Some feeds have update errors (click for details)')."</a>";
4594                 }
4595                 $reply['headlines']['content'] .= "</span></p>";
4596
4597                 $reply['headlines-info'] = array("count" => 0,
4598                         "vgroup_last_feed" => '',
4599                         "unread" => 0,
4600                         "disable_cache" => true);
4601
4602                 return $reply;
4603         }
4604
4605         function save_email_address($link, $email) {
4606                 // FIXME: implement persistent storage of emails
4607
4608                 if (!$_SESSION['stored_emails'])
4609                         $_SESSION['stored_emails'] = array();
4610
4611                 if (!in_array($email, $_SESSION['stored_emails']))
4612                         array_push($_SESSION['stored_emails'], $email);
4613         }
4614
4615         function update_feed_access_key($link, $feed_id, $is_cat, $owner_uid = false) {
4616                 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
4617
4618                 $sql_is_cat = bool_to_sql_bool($is_cat);
4619
4620                 $result = db_query($link, "SELECT access_key FROM ttrss_access_keys
4621                         WHERE feed_id = '$feed_id'      AND is_cat = $sql_is_cat
4622                         AND owner_uid = " . $owner_uid);
4623
4624                 if (db_num_rows($result) == 1) {
4625                         $key = db_escape_string(sha1(uniqid(rand(), true)));
4626
4627                         db_query($link, "UPDATE ttrss_access_keys SET access_key = '$key'
4628                                 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
4629                                 AND owner_uid = " . $owner_uid);
4630
4631                         return $key;
4632
4633                 } else {
4634                         return get_feed_access_key($link, $feed_id, $is_cat, $owner_uid);
4635                 }
4636         }
4637
4638         function get_feed_access_key($link, $feed_id, $is_cat, $owner_uid = false) {
4639
4640                 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
4641
4642                 $sql_is_cat = bool_to_sql_bool($is_cat);
4643
4644                 $result = db_query($link, "SELECT access_key FROM ttrss_access_keys
4645                         WHERE feed_id = '$feed_id'      AND is_cat = $sql_is_cat
4646                         AND owner_uid = " . $owner_uid);
4647
4648                 if (db_num_rows($result) == 1) {
4649                         return db_fetch_result($result, 0, "access_key");
4650                 } else {
4651                         $key = db_escape_string(sha1(uniqid(rand(), true)));
4652
4653                         $result = db_query($link, "INSERT INTO ttrss_access_keys
4654                                 (access_key, feed_id, is_cat, owner_uid)
4655                                 VALUES ('$key', '$feed_id', $sql_is_cat, '$owner_uid')");
4656
4657                         return $key;
4658                 }
4659                 return false;
4660         }
4661
4662         /**
4663          * Extracts RSS/Atom feed URLs from the given HTML URL.
4664          *
4665          * @param string $url HTML page URL
4666          *
4667          * @return array Array of feeds. Key is the full URL, value the title
4668          */
4669         function get_feeds_from_html($url, $login = false, $pass = false)
4670         {
4671                 $url     = fix_url($url);
4672                 $baseUrl = substr($url, 0, strrpos($url, '/') + 1);
4673
4674                 libxml_use_internal_errors(true);
4675
4676                 $content = @fetch_file_contents($url, false, $login, $pass);
4677
4678                 $doc = new DOMDocument();
4679                 $doc->loadHTML($content);
4680                 $xpath = new DOMXPath($doc);
4681                 $entries = $xpath->query('/html/head/link[@rel="alternate"]');
4682                 $feedUrls = array();
4683                 foreach ($entries as $entry) {
4684                         if ($entry->hasAttribute('href')) {
4685                                 $title = $entry->getAttribute('title');
4686                                 if ($title == '') {
4687                                         $title = $entry->getAttribute('type');
4688                                 }
4689                                 $feedUrl = rewrite_relative_url(
4690                                         $baseUrl, $entry->getAttribute('href')
4691                                 );
4692                                 $feedUrls[$feedUrl] = $title;
4693                         }
4694                 }
4695                 return $feedUrls;
4696         }
4697
4698         /**
4699          * Checks if the content behind the given URL is a HTML file
4700          *
4701          * @param string $url URL to check
4702          *
4703          * @return boolean True if the URL contains HTML content
4704          */
4705         function url_is_html($url, $login = false, $pass = false) {
4706                 $content = substr(fetch_file_contents($url, false, $login, $pass), 0, 1000);
4707
4708                 if (stripos($content, '<html>') === false
4709                         && stripos($content, '<html ') === false
4710                 ) {
4711                         return false;
4712                 }
4713
4714                 return true;
4715         }
4716
4717         function print_label_select($link, $name, $value, $attributes = "") {
4718
4719                 $result = db_query($link, "SELECT caption FROM ttrss_labels2
4720                         WHERE owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
4721
4722                 print "<select default=\"$value\" name=\"" . htmlspecialchars($name) .
4723                         "\" $attributes onchange=\"labelSelectOnChange(this)\" >";
4724
4725                 while ($line = db_fetch_assoc($result)) {
4726
4727                         $issel = ($line["caption"] == $value) ? "selected=\"1\"" : "";
4728
4729                         print "<option value=\"".htmlspecialchars($line["caption"])."\"
4730                                 $issel>" . htmlspecialchars($line["caption"]) . "</option>";
4731
4732                 }
4733
4734 #               print "<option value=\"ADD_LABEL\">" .__("Add label...") . "</option>";
4735
4736                 print "</select>";
4737
4738
4739         }
4740
4741         function format_article_enclosures($link, $id, $always_display_enclosures,
4742                                         $article_content) {
4743
4744                 $result = get_article_enclosures($link, $id);
4745                 $rv = '';
4746
4747                 if (count($result) > 0) {
4748
4749                         $entries_html = array();
4750                         $entries = array();
4751
4752                         foreach ($result as $line) {
4753
4754                                 $url = $line["content_url"];
4755                                 $ctype = $line["content_type"];
4756
4757                                 if (!$ctype) $ctype = __("unknown type");
4758
4759                                 $filename = substr($url, strrpos($url, "/")+1);
4760
4761 #                               $player = format_inline_player($link, $url, $ctype);
4762
4763 #                               $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
4764 #                                       $filename . " (" . $ctype . ")" . "</a>";
4765
4766                                 $entry = "<div onclick=\"window.open('".htmlspecialchars($url)."')\"
4767                                         dojoType=\"dijit.MenuItem\">$filename ($ctype)</div>";
4768
4769                                 array_push($entries_html, $entry);
4770
4771                                 $entry = array();
4772
4773                                 $entry["type"] = $ctype;
4774                                 $entry["filename"] = $filename;
4775                                 $entry["url"] = $url;
4776
4777                                 array_push($entries, $entry);
4778                         }
4779
4780                         if (!get_pref($link, "STRIP_IMAGES")) {
4781                                 if ($always_display_enclosures ||
4782                                                         !preg_match("/<img/i", $article_content)) {
4783
4784                                         foreach ($entries as $entry) {
4785
4786                                                 if (preg_match("/image/", $entry["type"]) ||
4787                                                                 preg_match("/\.(jpg|png|gif|bmp)/i", $entry["filename"])) {
4788
4789                                                                 $rv .= "<p><img
4790                                                                 alt=\"".htmlspecialchars($entry["filename"])."\"
4791                                                                 src=\"" .htmlspecialchars($entry["url"]) . "\"/></p>";
4792
4793                                                 }
4794                                         }
4795                                 }
4796                         }
4797
4798                         $rv .= "<div dojoType=\"dijit.form.DropDownButton\">".
4799                                 "<span>" . __('Attachments')."</span>";
4800                         $rv .= "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
4801
4802                         foreach ($entries_html as $entry) { $rv .= $entry; };
4803
4804                         $rv .= "</div></div>";
4805                 }
4806
4807                 return $rv;
4808         }
4809
4810         function getLastArticleId($link) {
4811                 $result = db_query($link, "SELECT MAX(ref_id) AS id FROM ttrss_user_entries
4812                         WHERE owner_uid = " . $_SESSION["uid"]);
4813
4814                 if (db_num_rows($result) == 1) {
4815                         return db_fetch_result($result, 0, "id");
4816                 } else {
4817                         return -1;
4818                 }
4819         }
4820
4821         function build_url($parts) {
4822                 return $parts['scheme'] . "://" . $parts['host'] . $parts['path'];
4823         }
4824
4825         /**
4826          * Converts a (possibly) relative URL to a absolute one.
4827          *
4828          * @param string $url     Base URL (i.e. from where the document is)
4829          * @param string $rel_url Possibly relative URL in the document
4830          *
4831          * @return string Absolute URL
4832          */
4833         function rewrite_relative_url($url, $rel_url) {
4834                 if (strpos($rel_url, "magnet:") === 0) {
4835                         return $rel_url;
4836                 } else if (strpos($rel_url, "://") !== false) {
4837                         return $rel_url;
4838                 } else if (strpos($rel_url, "//") === 0) {
4839                         # protocol-relative URL (rare but they exist)
4840                         return $rel_url;
4841                 } else if (strpos($rel_url, "/") === 0)
4842                 {
4843                         $parts = parse_url($url);
4844                         $parts['path'] = $rel_url;
4845
4846                         return build_url($parts);
4847
4848                 } else {
4849                         $parts = parse_url($url);
4850                         if (!isset($parts['path'])) {
4851                                 $parts['path'] = '/';
4852                         }
4853                         $dir = $parts['path'];
4854                         if (substr($dir, -1) !== '/') {
4855                                 $dir = dirname($parts['path']);
4856                                 $dir !== '/' && $dir .= '/';
4857                         }
4858                         $parts['path'] = $dir . $rel_url;
4859
4860                         return build_url($parts);
4861                 }
4862         }
4863
4864         function sphinx_search($query, $offset = 0, $limit = 30) {
4865                 require_once 'lib/sphinxapi.php';
4866
4867                 $sphinxClient = new SphinxClient();
4868
4869                 $sphinxClient->SetServer('localhost', 9312);
4870                 $sphinxClient->SetConnectTimeout(1);
4871
4872                 $sphinxClient->SetFieldWeights(array('title' => 70, 'content' => 30,
4873                         'feed_title' => 20));
4874
4875                 $sphinxClient->SetMatchMode(SPH_MATCH_EXTENDED2);
4876                 $sphinxClient->SetRankingMode(SPH_RANK_PROXIMITY_BM25);
4877                 $sphinxClient->SetLimits($offset, $limit, 1000);
4878                 $sphinxClient->SetArrayResult(false);
4879                 $sphinxClient->SetFilter('owner_uid', array($_SESSION['uid']));
4880
4881                 $result = $sphinxClient->Query($query, SPHINX_INDEX);
4882
4883                 $ids = array();
4884
4885                 if (is_array($result['matches'])) {
4886                         foreach (array_keys($result['matches']) as $int_id) {
4887                                 $ref_id = $result['matches'][$int_id]['attrs']['ref_id'];
4888                                 array_push($ids, $ref_id);
4889                         }
4890                 }
4891
4892                 return $ids;
4893         }
4894
4895         function cleanup_tags($link, $days = 14, $limit = 1000) {
4896
4897                 if (DB_TYPE == "pgsql") {
4898                         $interval_query = "date_updated < NOW() - INTERVAL '$days days'";
4899                 } else if (DB_TYPE == "mysql") {
4900                         $interval_query = "date_updated < DATE_SUB(NOW(), INTERVAL $days DAY)";
4901                 }
4902
4903                 $tags_deleted = 0;
4904
4905                 while ($limit > 0) {
4906                         $limit_part = 500;
4907
4908                         $query = "SELECT ttrss_tags.id AS id
4909                                 FROM ttrss_tags, ttrss_user_entries, ttrss_entries
4910                                 WHERE post_int_id = int_id AND $interval_query AND
4911                                 ref_id = ttrss_entries.id AND tag_cache != '' LIMIT $limit_part";
4912
4913                         $result = db_query($link, $query);
4914
4915                         $ids = array();
4916
4917                         while ($line = db_fetch_assoc($result)) {
4918                                 array_push($ids, $line['id']);
4919                         }
4920
4921                         if (count($ids) > 0) {
4922                                 $ids = join(",", $ids);
4923                                 print ".";
4924
4925                                 $tmp_result = db_query($link, "DELETE FROM ttrss_tags WHERE id IN ($ids)");
4926                                 $tags_deleted += db_affected_rows($link, $tmp_result);
4927                         } else {
4928                                 break;
4929                         }
4930
4931                         $limit -= $limit_part;
4932                 }
4933
4934                 print "\n";
4935
4936                 return $tags_deleted;
4937         }
4938
4939         function print_user_stylesheet($link) {
4940                 $value = get_pref($link, 'USER_STYLESHEET');
4941
4942                 if ($value) {
4943                         print "<style type=\"text/css\">";
4944                         print str_replace("<br/>", "\n", $value);
4945                         print "</style>";
4946                 }
4947
4948         }
4949
4950 /*      function rewrite_urls($line) {
4951                 global $url_regex;
4952
4953                 $urls = null;
4954
4955                 $result = preg_replace("/((?<!=.)((http|https|ftp)+):\/\/[^ ,!]+)/i",
4956                         "<a target=\"_blank\" href=\"\\1\">\\1</a>", $line);
4957
4958                 return $result;
4959         } */
4960
4961         function rewrite_urls($html) {
4962                 libxml_use_internal_errors(true);
4963
4964                 $charset_hack = '<head>
4965                         <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
4966                 </head>';
4967
4968                 $doc = new DOMDocument();
4969                 $doc->loadHTML($charset_hack . $html);
4970                 $xpath = new DOMXPath($doc);
4971
4972                 $entries = $xpath->query('//*/text()');
4973
4974                 foreach ($entries as $entry) {
4975                         if (strstr($entry->wholeText, "://") !== false) {
4976                                 $text = preg_replace("/((?<!=.)((http|https|ftp)+):\/\/[^ ,!]+)/i",
4977                                         "<a target=\"_blank\" href=\"\\1\">\\1</a>", $entry->wholeText);
4978
4979                                 if ($text != $entry->wholeText) {
4980                                         $cdoc = new DOMDocument();
4981                                         $cdoc->loadHTML($charset_hack . $text);
4982
4983
4984                                         foreach ($cdoc->childNodes as $cnode) {
4985                                                 $cnode = $doc->importNode($cnode, true);
4986
4987                                                 if ($cnode) {
4988                                                         $entry->parentNode->insertBefore($cnode);
4989                                                 }
4990                                         }
4991
4992                                         $entry->parentNode->removeChild($entry);
4993
4994                                 }
4995                         }
4996                 }
4997
4998                 $node = $doc->getElementsByTagName('body')->item(0);
4999
5000                 // http://tt-rss.org/forum/viewtopic.php?f=1&t=970
5001                 if ($node)
5002                         return $doc->saveXML($node, LIBXML_NOEMPTYTAG);
5003                 else
5004                         return $html;
5005         }
5006
5007         function filter_to_sql($filter) {
5008                 $query = "";
5009
5010                 $regexp_valid = preg_match('/' . $filter['reg_exp'] . '/',
5011                         $filter['reg_exp']) !== FALSE;
5012
5013                 if ($regexp_valid) {
5014
5015                         if (DB_TYPE == "pgsql")
5016                                 $reg_qpart = "~";
5017                         else
5018                                 $reg_qpart = "REGEXP";
5019
5020                         switch ($filter["type"]) {
5021                                 case "title":
5022                                         $query = "LOWER(ttrss_entries.title) $reg_qpart LOWER('".
5023                                                 $filter['reg_exp'] . "')";
5024                                         break;
5025                                 case "content":
5026                                         $query = "LOWER(ttrss_entries.content) $reg_qpart LOWER('".
5027                                                 $filter['reg_exp'] . "')";
5028                                         break;
5029                                 case "both":
5030                                         $query = "LOWER(ttrss_entries.title) $reg_qpart LOWER('".
5031                                                 $filter['reg_exp'] . "') OR LOWER(" .
5032                                                 "ttrss_entries.content) $reg_qpart LOWER('" . $filter['reg_exp'] . "')";
5033                                         break;
5034                                 case "tag":
5035                                         $query = "LOWER(ttrss_user_entries.tag_cache) $reg_qpart LOWER('".
5036                                                 $filter['reg_exp'] . "')";
5037                                         break;
5038                                 case "link":
5039                                         $query = "LOWER(ttrss_entries.link) $reg_qpart LOWER('".
5040                                                 $filter['reg_exp'] . "')";
5041                                         break;
5042                                 case "date":
5043
5044                                         if ($filter["filter_param"] == "before")
5045                                                 $cmp_qpart = "<";
5046                                         else
5047                                                 $cmp_qpart = ">=";
5048
5049                                         $timestamp = date("Y-m-d H:N:s", strtotime($filter["reg_exp"]));
5050                                         $query = "ttrss_entries.date_entered $cmp_qpart '$timestamp'";
5051                                         break;
5052                                 case "author":
5053                                         $query = "LOWER(ttrss_entries.author) $reg_qpart LOWER('".
5054                                                 $filter['reg_exp'] . "')";
5055                                         break;
5056                         }
5057
5058                         if ($filter["inverse"])
5059                                 $query = "NOT ($query)";
5060
5061                         if ($query) {
5062                                 if (DB_TYPE == "pgsql") {
5063                                         $query = " ($query) AND ttrss_entries.date_entered > NOW() - INTERVAL '14 days'";
5064                                 } else {
5065                                         $query = " ($query) AND ttrss_entries.date_entered > DATE_SUB(NOW(), INTERVAL 14 DAY)";
5066                                 }
5067                                 $query .= " AND ";
5068                         }
5069
5070                         return $query;
5071                 } else {
5072                         return false;
5073                 }
5074         }
5075
5076         // Status codes:
5077         // -1  - never connected
5078         // 0   - no data received
5079         // 1   - data received successfully
5080         // 2   - did not receive valid data
5081         // >10 - server error, code + 10 (e.g. 16 means server error 6)
5082
5083         function get_linked_feeds($link, $instance_id = false) {
5084                 if ($instance_id)
5085                         $instance_qpart = "id = '$instance_id' AND ";
5086                 else
5087                         $instance_qpart = "";
5088
5089                 if (DB_TYPE == "pgsql") {
5090                         $date_qpart = "last_connected < NOW() - INTERVAL '6 hours'";
5091                 } else {
5092                         $date_qpart = "last_connected < DATE_SUB(NOW(), INTERVAL 6 HOUR)";
5093                 }
5094
5095                 $result = db_query($link, "SELECT id, access_key, access_url FROM ttrss_linked_instances
5096                         WHERE $instance_qpart $date_qpart ORDER BY last_connected");
5097
5098                 while ($line = db_fetch_assoc($result)) {
5099                         $id = $line['id'];
5100
5101                         _debug("Updating: " . $line['access_url'] . " ($id)");
5102
5103                         $fetch_url = $line['access_url'] . '/public.php?op=fbexport';
5104                         $post_query = 'key=' . $line['access_key'];
5105
5106                         $feeds = fetch_file_contents($fetch_url, false, false, false, $post_query);
5107
5108                         // try doing it the old way
5109                         if (!$feeds) {
5110                                 $fetch_url = $line['access_url'] . '/backend.php?op=fbexport';
5111                                 $feeds = fetch_file_contents($fetch_url, false, false, false, $post_query);
5112                         }
5113
5114                         if ($feeds) {
5115                                 $feeds = json_decode($feeds, true);
5116
5117                                 if ($feeds) {
5118                                         if ($feeds['error']) {
5119                                                 $status = $feeds['error']['code'] + 10;
5120                                         } else {
5121                                                 $status = 1;
5122
5123                                                 if (count($feeds['feeds']) > 0) {
5124
5125                                                         db_query($link, "DELETE FROM ttrss_linked_feeds
5126                                                                 WHERE instance_id = '$id'");
5127
5128                                                         foreach ($feeds['feeds'] as $feed) {
5129                                                                 $feed_url = db_escape_string($feed['feed_url']);
5130                                                                 $title = db_escape_string($feed['title']);
5131                                                                 $subscribers = db_escape_string($feed['subscribers']);
5132                                                                 $site_url = db_escape_string($feed['site_url']);
5133
5134                                                                 db_query($link, "INSERT INTO ttrss_linked_feeds
5135                                                                         (feed_url, site_url, title, subscribers, instance_id, created, updated)
5136                                                                 VALUES
5137                                                                         ('$feed_url', '$site_url', '$title', '$subscribers', '$id', NOW(), NOW())");
5138                                                         }
5139                                                 } else {
5140                                                         // received 0 feeds, this might indicate that
5141                                                         // the instance on the other hand is rebuilding feedbrowser cache
5142                                                         // we will try again later
5143
5144                                                         // TODO: maybe perform expiration based on updated here?
5145                                                 }
5146
5147                                                 _debug("Processed " . count($feeds['feeds']) . " feeds.");
5148                                         }
5149                                 } else {
5150                                         $status = 2;
5151                                 }
5152
5153                         } else {
5154                                 $status = 0;
5155                         }
5156
5157                         _debug("Status: $status");
5158
5159                         db_query($link, "UPDATE ttrss_linked_instances SET
5160                                 last_status_out = '$status', last_connected = NOW() WHERE id = '$id'");
5161
5162                 }
5163         }
5164
5165         function make_feed_browser($link, $search, $limit, $mode = 1) {
5166
5167                 $owner_uid = $_SESSION["uid"];
5168                 $rv = '';
5169
5170                 if ($search) {
5171                         $search_qpart = "AND (UPPER(feed_url) LIKE UPPER('%$search%') OR
5172                                                 UPPER(title) LIKE UPPER('%$search%'))";
5173                 } else {
5174                         $search_qpart = "";
5175                 }
5176
5177                 if ($mode == 1) {
5178                         /* $result = db_query($link, "SELECT feed_url, subscribers FROM
5179                          ttrss_feedbrowser_cache WHERE (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf
5180                         WHERE tf.feed_url = ttrss_feedbrowser_cache.feed_url
5181                         AND owner_uid = '$owner_uid') $search_qpart
5182                         ORDER BY subscribers DESC LIMIT $limit"); */
5183
5184                         $result = db_query($link, "SELECT feed_url, site_url, title, SUM(subscribers) AS subscribers FROM
5185                                                 (SELECT feed_url, site_url, title, subscribers FROM ttrss_feedbrowser_cache UNION ALL
5186                                                         SELECT feed_url, site_url, title, subscribers FROM ttrss_linked_feeds) AS qqq
5187                                                 WHERE
5188                                                         (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf
5189                                                                 WHERE tf.feed_url = qqq.feed_url
5190                                                                         AND owner_uid = '$owner_uid') $search_qpart
5191                                                 GROUP BY feed_url, site_url, title ORDER BY subscribers DESC LIMIT $limit");
5192
5193                 } else if ($mode == 2) {
5194                         $result = db_query($link, "SELECT *,
5195                                                 (SELECT COUNT(*) FROM ttrss_user_entries WHERE
5196                                                         orig_feed_id = ttrss_archived_feeds.id) AS articles_archived
5197                                                 FROM
5198                                                         ttrss_archived_feeds
5199                                                 WHERE
5200                                                 (SELECT COUNT(*) FROM ttrss_feeds
5201                                                         WHERE ttrss_feeds.feed_url = ttrss_archived_feeds.feed_url AND
5202                                                                 owner_uid = '$owner_uid') = 0   AND
5203                                                 owner_uid = '$owner_uid' $search_qpart
5204                                                 ORDER BY id DESC LIMIT $limit");
5205                 }
5206
5207                 $feedctr = 0;
5208
5209                 while ($line = db_fetch_assoc($result)) {
5210
5211                         if ($mode == 1) {
5212
5213                                 $feed_url = htmlspecialchars($line["feed_url"]);
5214                                 $site_url = htmlspecialchars($line["site_url"]);
5215                                 $subscribers = $line["subscribers"];
5216
5217                                 $check_box = "<input onclick='toggleSelectListRow2(this)'
5218                                                         dojoType=\"dijit.form.CheckBox\"
5219                                                         type=\"checkbox\" \">";
5220
5221                                 $class = ($feedctr % 2) ? "even" : "odd";
5222
5223                                 $site_url = "<a target=\"_blank\"
5224                                                         href=\"$site_url\">
5225                                                         <span class=\"fb_feedTitle\">".
5226                                 htmlspecialchars($line["title"])."</span></a>";
5227
5228                                 $feed_url = "<a target=\"_blank\" class=\"fb_feedUrl\"
5229                                                         href=\"$feed_url\"><img src='images/feed-icon-12x12.png'
5230                                                         style='vertical-align : middle'></a>";
5231
5232                                 $rv .= "<li>$check_box $feed_url $site_url".
5233                                                         "&nbsp;<span class='subscribers'>($subscribers)</span></li>";
5234
5235                         } else if ($mode == 2) {
5236                                 $feed_url = htmlspecialchars($line["feed_url"]);
5237                                 $site_url = htmlspecialchars($line["site_url"]);
5238                                 $title = htmlspecialchars($line["title"]);
5239
5240                                 $check_box = "<input onclick='toggleSelectListRow2(this)' dojoType=\"dijit.form.CheckBox\"
5241                                                         type=\"checkbox\">";
5242
5243                                 $class = ($feedctr % 2) ? "even" : "odd";
5244
5245                                 if ($line['articles_archived'] > 0) {
5246                                         $archived = sprintf(__("%d archived articles"), $line['articles_archived']);
5247                                         $archived = "&nbsp;<span class='subscribers'>($archived)</span>";
5248                                 } else {
5249                                         $archived = '';
5250                                 }
5251
5252                                 $site_url = "<a target=\"_blank\"
5253                                                         href=\"$site_url\">
5254                                                         <span class=\"fb_feedTitle\">".
5255                                 htmlspecialchars($line["title"])."</span></a>";
5256
5257                                 $feed_url = "<a target=\"_blank\" class=\"fb_feedUrl\"
5258                                                         href=\"$feed_url\"><img src='images/feed-icon-12x12.png'
5259                                                         style='vertical-align : middle'></a>";
5260
5261
5262                                 $rv .= "<li id=\"FBROW-".$line["id"]."\">".
5263                                                         "$check_box $feed_url $site_url $archived</li>";
5264                         }
5265
5266                         ++$feedctr;
5267                 }
5268
5269                 if ($feedctr == 0) {
5270                         $rv .= "<li style=\"text-align : center\"><p>".__('No feeds found.')."</p></li>";
5271                 }
5272
5273                 return $rv;
5274         }
5275
5276         if (!function_exists('gzdecode')) {
5277                 function gzdecode($string) { // no support for 2nd argument
5278                         return file_get_contents('compress.zlib://data:who/cares;base64,'.
5279                                 base64_encode($string));
5280                 }
5281         }
5282
5283         function perform_data_import($link, $filename, $owner_uid) {
5284
5285                 $num_imported = 0;
5286                 $num_processed = 0;
5287                 $num_feeds_created = 0;
5288
5289                 $doc = @DOMDocument::load($filename);
5290
5291                 if (!$doc) {
5292                         $contents = file_get_contents($filename);
5293
5294                         if ($contents) {
5295                                 $data = @gzuncompress($contents);
5296                         }
5297
5298                         if (!$data) {
5299                                 $data = @gzdecode($contents);
5300                         }
5301
5302                         if ($data)
5303                                 $doc = DOMDocument::loadXML($data);
5304                 }
5305
5306                 if ($doc) {
5307
5308                         $xpath = new DOMXpath($doc);
5309
5310                         $container = $doc->firstChild;
5311
5312                         if ($container && $container->hasAttribute('schema-version')) {
5313                                 $schema_version = $container->getAttribute('schema-version');
5314
5315                                 if ($schema_version != SCHEMA_VERSION) {
5316                                         print "<p>" .__("Could not import: incorrect schema version.") . "</p>";
5317                                         return;
5318                                 }
5319
5320                         } else {
5321                                 print "<p>" . __("Could not import: unrecognized document format.") . "</p>";
5322                                 return;
5323                         }
5324
5325                         $articles = $xpath->query("//article");
5326
5327                         foreach ($articles as $article_node) {
5328                                 if ($article_node->childNodes) {
5329
5330                                         $ref_id = 0;
5331
5332                                         $article = array();
5333
5334                                         foreach ($article_node->childNodes as $child) {
5335                                                 if ($child->nodeName != 'label_cache')
5336                                                         $article[$child->nodeName] = db_escape_string($child->nodeValue);
5337                                                 else
5338                                                         $article[$child->nodeName] = $child->nodeValue;
5339                                         }
5340
5341                                         //print_r($article);
5342
5343                                         if ($article['guid']) {
5344
5345                                                 ++$num_processed;
5346
5347                                                 //db_query($link, "BEGIN");
5348
5349                                                 //print 'GUID:' . $article['guid'] . "\n";
5350
5351                                                 $result = db_query($link, "SELECT id FROM ttrss_entries
5352                                                         WHERE guid = '".$article['guid']."'");
5353
5354                                                 if (db_num_rows($result) == 0) {
5355
5356                                                         $result = db_query($link,
5357                                                                 "INSERT INTO ttrss_entries
5358                                                                         (title,
5359                                                                         guid,
5360                                                                         link,
5361                                                                         updated,
5362                                                                         content,
5363                                                                         content_hash,
5364                                                                         no_orig_date,
5365                                                                         date_updated,
5366                                                                         date_entered,
5367                                                                         comments,
5368                                                                         num_comments,
5369                                                                         author)
5370                                                                 VALUES
5371                                                                         ('".$article['title']."',
5372                                                                         '".$article['guid']."',
5373                                                                         '".$article['link']."',
5374                                                                         '".$article['updated']."',
5375                                                                         '".$article['content']."',
5376                                                                         '".sha1($article['content'])."',
5377                                                                         false,
5378                                                                         NOW(),
5379                                                                         NOW(),
5380                                                                         '',
5381                                                                         '0',
5382                                                                         '')");
5383
5384                                                         $result = db_query($link, "SELECT id FROM ttrss_entries
5385                                                                 WHERE guid = '".$article['guid']."'");
5386
5387                                                         if (db_num_rows($result) != 0) {
5388                                                                 $ref_id = db_fetch_result($result, 0, "id");
5389                                                         }
5390
5391                                                 } else {
5392                                                         $ref_id = db_fetch_result($result, 0, "id");
5393                                                 }
5394
5395                                                 //print "Got ref ID: $ref_id\n";
5396
5397                                                 if ($ref_id) {
5398
5399                                                         $feed_url = $article['feed_url'];
5400                                                         $feed_title = $article['feed_title'];
5401
5402                                                         $feed = 'NULL';
5403
5404                                                         if ($feed_url && $feed_title) {
5405                                                                 $result = db_query($link, "SELECT id FROM ttrss_feeds
5406                                                                         WHERE feed_url = '$feed_url' AND owner_uid = '$owner_uid'");
5407
5408                                                                 if (db_num_rows($result) != 0) {
5409                                                                         $feed = db_fetch_result($result, 0, "id");
5410                                                                 } else {
5411                                                                         // try autocreating feed in Uncategorized...
5412
5413                                                                         $result = db_query($link, "INSERT INTO ttrss_feeds (owner_uid,
5414                                                                                 feed_url, title) VALUES ($owner_uid, '$feed_url', '$feed_title')");
5415
5416                                                                         $result = db_query($link, "SELECT id FROM ttrss_feeds
5417                                                                                 WHERE feed_url = '$feed_url' AND owner_uid = '$owner_uid'");
5418
5419                                                                         if (db_num_rows($result) != 0) {
5420                                                                                 ++$num_feeds_created;
5421
5422                                                                                 $feed = db_fetch_result($result, 0, "id");
5423                                                                         }
5424                                                                 }
5425                                                         }
5426
5427                                                         if ($feed != 'NULL')
5428                                                                 $feed_qpart = "feed_id = $feed";
5429                                                         else
5430                                                                 $feed_qpart = "feed_id IS NULL";
5431
5432                                                         //print "$ref_id / $feed / " . $article['title'] . "\n";
5433
5434                                                         $result = db_query($link, "SELECT int_id FROM ttrss_user_entries
5435                                                                 WHERE ref_id = '$ref_id' AND owner_uid = '$owner_uid' AND $feed_qpart");
5436
5437                                                         if (db_num_rows($result) == 0) {
5438
5439                                                                 $marked = bool_to_sql_bool(sql_bool_to_bool($article['marked']));
5440                                                                 $published = bool_to_sql_bool(sql_bool_to_bool($article['published']));
5441                                                                 $score = (int) $article['score'];
5442
5443                                                                 $tag_cache = $article['tag_cache'];
5444                                                                 $label_cache = db_escape_string($article['label_cache']);
5445                                                                 $note = $article['note'];
5446
5447                                                                 //print "Importing " . $article['title'] . "<br/>";
5448
5449                                                                 ++$num_imported;
5450
5451                                                                 $result = db_query($link,
5452                                                                         "INSERT INTO ttrss_user_entries
5453                                                                         (ref_id, owner_uid, feed_id, unread, last_read, marked,
5454                                                                                 published, score, tag_cache, label_cache, uuid, note)
5455                                                                         VALUES ($ref_id, $owner_uid, $feed, false,
5456                                                                                 NULL, $marked, $published, $score, '$tag_cache',
5457                                                                                         '$label_cache', '', '$note')");
5458
5459                                                                 $label_cache = json_decode($label_cache, true);
5460
5461                                                                 if (is_array($label_cache) && $label_cache["no-labels"] != 1) {
5462                                                                         foreach ($label_cache as $label) {
5463
5464                                                                                 label_create($link, $label[1],
5465                                                                                         $label[2], $label[3], $owner_uid);
5466
5467                                                                                 label_add_article($link, $ref_id, $label[1], $owner_uid);
5468
5469                                                                         }
5470                                                                 }
5471
5472                                                                 //db_query($link, "COMMIT");
5473                                                         }
5474                                                 }
5475                                         }
5476                                 }
5477                         }
5478
5479                         print "<p>" .
5480                                 T_sprintf("Finished: %d articles processed, %d imported, %d feeds created.",
5481                                         $num_processed, $num_imported, $num_feeds_created) .
5482                                         "</p>";
5483
5484                 } else {
5485
5486                         print "<p>" . __("Could not load XML document.") . "</p>";
5487
5488                 }
5489         }
5490
5491         function get_random_bytes($length) {
5492                 if (function_exists('openssl_random_pseudo_bytes')) {
5493                         return openssl_random_pseudo_bytes($length);
5494                 } else {
5495                         $output = "";
5496
5497                         for ($i = 0; $i < $length; $i++)
5498                                 $output .= chr(mt_rand(0, 255));
5499
5500                         return $output;
5501                 }
5502         }
5503
5504         function read_stdin() {
5505                 $fp = fopen("php://stdin", "r");
5506
5507                 if ($fp) {
5508                         $line = trim(fgets($fp));
5509                         fclose($fp);
5510                         return $line;
5511                 }
5512
5513                 return null;
5514         }
5515 ?>