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