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