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