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