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