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