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