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