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