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