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