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