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