]> git.wh0rd.org - tt-rss.git/blame - include/functions.php
fix handling of blank FEED_CRYPT_KEY
[tt-rss.git] / include / functions.php
CommitLineData
1d3a17c7 1<?php
6e658547 2 define('EXPECTED_CONFIG_VERSION', 26);
881a1580 3 define('SCHEMA_VERSION', 116);
545ca067 4
f822a8e5 5 define('LABEL_BASE_INDEX', -1024);
a413f53e 6 define('PLUGIN_FEED_BASE_INDEX', -128);
f822a8e5 7
23d2471c 8 $fetch_last_error = false;
7a01dc77 9 $fetch_last_error_code = false;
ef39be2b 10 $fetch_last_content_type = false;
19b3992b 11 $pluginhost = false;
23d2471c 12
a48d8533 13 function __autoload($class) {
8c0496f7 14 $class_file = str_replace("_", "/", strtolower(basename($class)));
a48d8533 15
8c0496f7 16 $file = dirname(__FILE__)."/../classes/$class_file.php";
a48d8533 17
8c0496f7
AD
18 if (file_exists($file)) {
19 require $file;
a48d8533 20 }
8c0496f7 21
a48d8533 22 }
0d421af8 23
d68629dc 24 mb_internal_encoding("UTF-8");
324944f3 25 date_default_timezone_set('UTC');
8a7f5767
CW
26 if (defined('E_DEPRECATED')) {
27 error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
28 } else {
29 error_reporting(E_ALL & ~E_NOTICE);
30 }
cce28758 31
40d13c28 32 require_once 'config.php';
cc17c205 33
046ec657
BK
34 /**
35 * Define a constant if not already defined
36 *
37 * @param string $name The constant name.
38 * @param mixed $value The constant value.
39 * @access public
40 * @return boolean True if defined successfully or not.
41 */
42 function define_default($name, $value) {
046ec657
BK
43 defined($name) or define($name, $value);
44 }
45
9ef8798b
BK
46 ///// Some defaults that you can override in config.php //////
47
48 define_default('FEED_FETCH_TIMEOUT', 45);
49 // How may seconds to wait for response when requesting feed from a site
50 define_default('FEED_FETCH_NO_CACHE_TIMEOUT', 15);
51 // How may seconds to wait for response when requesting feed from a
52 // site when that feed wasn't cached before
53 define_default('FILE_FETCH_TIMEOUT', 45);
54 // Default timeout when fetching files from remote sites
55 define_default('FILE_FETCH_CONNECT_TIMEOUT', 15);
56 // How many seconds to wait for initial response from website when
57 // fetching files from remote sites
046ec657 58
fc2b26a6
AD
59 if (DB_TYPE == "pgsql") {
60 define('SUBSTRING_FOR_DATE', 'SUBSTRING_FOR_DATE');
61 } else {
62 define('SUBSTRING_FOR_DATE', 'SUBSTRING');
63 }
64
9632f884
AD
65 /**
66 * Return available translations names.
8d505d78 67 *
9632f884
AD
68 * @access public
69 * @return array A array of available translations.
70 */
f8c612d4 71 function get_translations() {
6a214f92 72 $tr = array(
8d505d78 73 "auto" => "Detect automatically",
a3162add 74 "ca_CA" => "Català",
a06b79c4 75 "cs_CZ" => "Česky",
6a214f92 76 "en_US" => "English",
36d0510c 77 "es_ES" => "Español",
a927fe7b 78 "de_DE" => "Deutsch",
6a214f92 79 "fr_FR" => "Français",
e78fd196 80 "hu_HU" => "Magyar (Hungarian)",
bb5d3960 81 "it_IT" => "Italiano",
1d004f12 82 "ja_JP" => "日本語 (Japanese)",
7b6c1ca7 83 "lv_LV" => "Latviešu",
592535d7 84 "nb_NO" => "Norwegian bokmål",
9e7f1f12 85 "nl_NL" => "Dutch",
ea45791a 86 "pl_PL" => "Polski",
d3b923c9 87 "ru_RU" => "Русский",
9a063469 88 "pt_BR" => "Portuguese/Brazil",
5d608138 89 "zh_CN" => "Simplified Chinese",
2324f153 90 "sv_SE" => "Svenska",
5d608138 91 "fi_FI" => "Suomi");
f8c612d4
AD
92
93 return $tr;
94 }
95
7b26a148
AD
96 require_once "lib/accept-to-gettext.php";
97 require_once "lib/gettext/gettext.inc";
aba609e0 98
87d7e850 99
7b26a148 100 function startup_gettext() {
8d505d78 101
7b26a148
AD
102 # Get locale from Accept-Language header
103 $lang = al2gt(array_keys(get_translations()), "text/html");
89cb787e 104
7b26a148
AD
105 if (defined('_TRANSLATION_OVERRIDE_DEFAULT')) {
106 $lang = _TRANSLATION_OVERRIDE_DEFAULT;
107 }
89cb787e 108
d98e76d9 109 if ($_SESSION["language"] && $_SESSION["language"] != "auto") {
afc3cf55 110 $lang = $_SESSION["language"];
7b26a148 111 }
7c33dbd4 112
7b26a148
AD
113 if ($lang) {
114 if (defined('LC_MESSAGES')) {
115 _setlocale(LC_MESSAGES, $lang);
116 } else if (defined('LC_ALL')) {
117 _setlocale(LC_ALL, $lang);
8d039718 118 }
aba609e0 119
d98e76d9 120 _bindtextdomain("messages", "locale");
865220a4 121
7b26a148
AD
122 _textdomain("messages");
123 _bind_textdomain_codeset("messages", "UTF-8");
865220a4 124 }
7b26a148
AD
125 }
126
127 startup_gettext();
cc17c205 128
b619ff15 129 require_once 'db-prefs.php';
8911ac8b 130 require_once 'version.php';
87d7e850
AD
131 require_once 'ccache.php';
132 require_once 'labels.php';
40d13c28 133
fb850eec 134 define('SELF_USER_AGENT', 'Tiny Tiny RSS/' . VERSION . ' (http://tt-rss.org/)');
500943a4
AD
135 ini_set('user_agent', SELF_USER_AGENT);
136
b0f379df 137 require_once 'lib/pubsubhubbub/publisher.php';
010efc9b 138
7d96bfcd
AD
139 $tz_offset = -1;
140 $utc_tz = new DateTimeZone('UTC');
141 $schema_version = false;
142
45004d43
AD
143 /**
144 * Print a timestamped debug message.
8d505d78 145 *
45004d43
AD
146 * @param string $msg The debug message.
147 * @return void
148 */
6f9e33e4
AD
149 function _debug($msg) {
150 $ts = strftime("%H:%M:%S", time());
2a6a9395
AD
151 if (function_exists('posix_getpid')) {
152 $ts = "$ts/" . posix_getpid();
153 }
2191eb7a
AD
154
155 if (!(defined('QUIET') && QUIET)) {
156 print "[$ts] $msg\n";
157 }
158
159 if (defined('LOGFILE')) {
160 $fp = fopen(LOGFILE, 'a+');
161
162 if ($fp) {
163 fputs($fp, "[$ts] $msg\n");
164 fclose($fp);
165 }
166 }
167
45004d43 168 } // function _debug
6f9e33e4 169
9632f884
AD
170 /**
171 * Purge a feed old posts.
8d505d78 172 *
9632f884
AD
173 * @param mixed $link A database connection.
174 * @param mixed $feed_id The id of the purged feed.
175 * @param mixed $purge_interval Olderness of purged posts.
176 * @param boolean $debug Set to True to enable the debug. False by default.
177 * @access public
178 * @return void
179 */
ad507f85
AD
180 function purge_feed($link, $feed_id, $purge_interval, $debug = false) {
181
07d0efe9 182 if (!$purge_interval) $purge_interval = feed_purge_interval($link, $feed_id);
8d505d78 183
ad507f85 184 $rows = -1;
4c193675 185
8d505d78 186 $result = db_query($link,
07d0efe9
AD
187 "SELECT owner_uid FROM ttrss_feeds WHERE id = '$feed_id'");
188
189 $owner_uid = false;
190
191 if (db_num_rows($result) == 1) {
192 $owner_uid = db_fetch_result($result, 0, "owner_uid");
193 }
194
ab954dff
AD
195 if ($purge_interval == -1 || !$purge_interval) {
196 if ($owner_uid) {
197 ccache_update($link, $feed_id, $owner_uid);
198 }
199 return;
200 }
201
07d0efe9
AD
202 if (!$owner_uid) return;
203
3907ef71
AD
204 if (FORCE_ARTICLE_PURGE == 0) {
205 $purge_unread = get_pref($link, "PURGE_UNREAD_ARTICLES",
206 $owner_uid, false);
207 } else {
208 $purge_unread = true;
209 $purge_interval = FORCE_ARTICLE_PURGE;
210 }
07d0efe9
AD
211
212 if (!$purge_unread) $query_limit = " unread = false AND ";
213
fefa6ca3 214 if (DB_TYPE == "pgsql") {
6e7f8d26
AD
215 $pg_version = get_pgsql_version($link);
216
217 if (preg_match("/^7\./", $pg_version) || preg_match("/^8\.0/", $pg_version)) {
1e59ae35 218
8d505d78
AD
219 $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
220 ttrss_entries.id = ref_id AND
221 marked = false AND
222 feed_id = '$feed_id' AND
07d0efe9 223 $query_limit
25ea2805 224 ttrss_entries.date_updated < NOW() - INTERVAL '$purge_interval days'");
1e59ae35
AD
225
226 } else {
227
8d505d78
AD
228 $result = db_query($link, "DELETE FROM ttrss_user_entries
229 USING ttrss_entries
230 WHERE ttrss_entries.id = ref_id AND
231 marked = false AND
232 feed_id = '$feed_id' AND
07d0efe9 233 $query_limit
25ea2805 234 ttrss_entries.date_updated < NOW() - INTERVAL '$purge_interval days'");
1e59ae35 235 }
ad507f85 236
8c0496f7
AD
237 $rows = pg_affected_rows($result);
238
fefa6ca3 239 } else {
8d505d78 240
30f1746f 241/* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
fefa6ca3 242 marked = false AND feed_id = '$feed_id' AND
8d505d78 243 (SELECT date_updated FROM ttrss_entries WHERE
30f1746f
AD
244 id = ref_id) < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)"); */
245
8d505d78
AD
246 $result = db_query($link, "DELETE FROM ttrss_user_entries
247 USING ttrss_user_entries, ttrss_entries
248 WHERE ttrss_entries.id = ref_id AND
249 marked = false AND
250 feed_id = '$feed_id' AND
07d0efe9 251 $query_limit
25ea2805 252 ttrss_entries.date_updated < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)");
8d505d78 253
8c0496f7
AD
254 $rows = mysql_affected_rows($link);
255
ad507f85
AD
256 }
257
ced46404
AD
258 ccache_update($link, $feed_id, $owner_uid);
259
ad507f85 260 if ($debug) {
6f9e33e4 261 _debug("Purged feed $feed_id ($purge_interval): deleted $rows articles");
fefa6ca3 262 }
2ea09bde
AD
263
264 return $rows;
9632f884 265 } // function purge_feed
fefa6ca3 266
07d0efe9
AD
267 function feed_purge_interval($link, $feed_id) {
268
8d505d78 269 $result = db_query($link, "SELECT purge_interval, owner_uid FROM ttrss_feeds
07d0efe9
AD
270 WHERE id = '$feed_id'");
271
272 if (db_num_rows($result) == 1) {
273 $purge_interval = db_fetch_result($result, 0, "purge_interval");
274 $owner_uid = db_fetch_result($result, 0, "owner_uid");
275
8d505d78 276 if ($purge_interval == 0) $purge_interval = get_pref($link,
863be6ca 277 'PURGE_OLD_DAYS', $owner_uid);
07d0efe9
AD
278
279 return $purge_interval;
280
281 } else {
282 return -1;
283 }
284 }
285
a2d79981
AD
286 function purge_orphans($link, $do_output = false) {
287
71604ca4 288 // purge orphaned posts in main content table
8d505d78 289 $result = db_query($link, "DELETE FROM ttrss_entries WHERE
71604ca4 290 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
a2d79981
AD
291
292 if ($do_output) {
293 $rows = db_affected_rows($link, $result);
294 _debug("Purged $rows orphaned posts.");
295 }
c3a8d71a
AD
296 }
297
c7d57b66
AD
298 function get_feed_update_interval($link, $feed_id) {
299 $result = db_query($link, "SELECT owner_uid, update_interval FROM
300 ttrss_feeds WHERE id = '$feed_id'");
301
302 if (db_num_rows($result) == 1) {
303 $update_interval = db_fetch_result($result, 0, "update_interval");
304 $owner_uid = db_fetch_result($result, 0, "owner_uid");
305
306 if ($update_interval != 0) {
307 return $update_interval;
308 } else {
309 return get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $owner_uid, false);
310 }
311
312 } else {
313 return -1;
314 }
315 }
316
7a01dc77 317 function fetch_file_contents($url, $type = false, $login = false, $pass = false, $post_query = false, $timeout = false, $timestamp = 0) {
8d505d78 318
23d2471c 319 global $fetch_last_error;
7a01dc77 320 global $fetch_last_error_code;
ef39be2b 321 global $fetch_last_content_type;
33373eca 322
2375b6b6 323 $url = str_replace(' ', '%20', $url);
23d2471c 324
9772c52a 325 if (!defined('NO_CURL') && function_exists('curl_init') && !ini_get("open_basedir")) {
b799dc8b
AD
326
327 if (ini_get("safe_mode")) {
328 $ch = curl_init(geturl($url));
329 } else {
330 $ch = curl_init($url);
331 }
a1af1574 332
7a01dc77
AD
333 if ($timestamp) {
334 curl_setopt($ch, CURLOPT_HTTPHEADER,
335 array("If-Modified-Since: ".gmdate('D, d M Y H:i:s \G\M\T', $timestamp)));
336 }
337
8401101d
BK
338 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout ? $timeout : FILE_FETCH_CONNECT_TIMEOUT);
339 curl_setopt($ch, CURLOPT_TIMEOUT, $timeout ? $timeout : FILE_FETCH_TIMEOUT);
81153e6b 340 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, !ini_get("safe_mode"));
a1af1574
AD
341 curl_setopt($ch, CURLOPT_MAXREDIRS, 20);
342 curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
343 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
8d505d78 344 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
5f6804bc 345 curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
19929bbe 346 curl_setopt($ch, CURLOPT_USERAGENT, SELF_USER_AGENT);
268a06dc 347 curl_setopt($ch, CURLOPT_ENCODING , "gzip");
48b657fc 348 curl_setopt($ch, CURLOPT_REFERER, $url);
8d505d78 349
ae5f7bb1
AD
350 if ($post_query) {
351 curl_setopt($ch, CURLOPT_POST, true);
352 curl_setopt($ch, CURLOPT_POSTFIELDS, $post_query);
353 }
354
8d505d78
AD
355 if ($login && $pass)
356 curl_setopt($ch, CURLOPT_USERPWD, "$login:$pass");
a1af1574 357
fb074239 358 $contents = @curl_exec($ch);
268a06dc 359
48b657fc
AD
360 if (curl_errno($ch) === 23 || curl_errno($ch) === 61) {
361 curl_setopt($ch, CURLOPT_ENCODING, 'none');
362 $contents = @curl_exec($ch);
fb850eec
AD
363 }
364
a1af1574 365 if ($contents === false) {
fb850eec 366 $fetch_last_error = curl_errno($ch) . " " . curl_error($ch);
a1af1574
AD
367 curl_close($ch);
368 return false;
4065b60b
AD
369 }
370
8d505d78 371 $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
ef39be2b 372 $fetch_last_content_type = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
4065b60b 373
7a01dc77
AD
374 $fetch_last_error_code = $http_code;
375
ef39be2b 376 if ($http_code != 200 || $type && strpos($fetch_last_content_type, "$type") === false) {
fb850eec
AD
377 if (curl_errno($ch) != 0) {
378 $fetch_last_error = curl_errno($ch) . " " . curl_error($ch);
379 } else {
380 $fetch_last_error = "HTTP Code: $http_code";
381 }
382 curl_close($ch);
a1af1574
AD
383 return false;
384 }
4065b60b 385
fb850eec
AD
386 curl_close($ch);
387
a1af1574 388 return $contents;
4065b60b 389 } else {
d3911f80 390 if ($login && $pass){
8d505d78
AD
391 $url_parts = array();
392
393 preg_match("/(^[^:]*):\/\/(.*)/", $url, $url_parts);
394
d3911f80
AD
395 $pass = urlencode($pass);
396
8d505d78
AD
397 if ($url_parts[1] && $url_parts[2]) {
398 $url = $url_parts[1] . "://$login:$pass@" . $url_parts[2];
399 }
400 }
401
23d2471c
AD
402 $data = @file_get_contents($url);
403
ef39be2b
MB
404 $fetch_last_content_type = false; // reset if no type was sent from server
405 foreach ($http_response_header as $h) {
406 if (substr(strtolower($h), 0, 13) == 'content-type:') {
407 $fetch_last_content_type = substr($h, 14);
408 // don't abort here b/c there might be more than one
409 // e.g. if we were being redirected -- last one is the right one
410 }
411 }
412
23d2471c
AD
413 if (!$data && function_exists('error_get_last')) {
414 $error = error_get_last();
415 $fetch_last_error = $error["message"];
416 }
417 return $data;
4065b60b
AD
418 }
419
420 }
78800912 421
9632f884
AD
422 /**
423 * Try to determine the favicon URL for a feed.
424 * adapted from wordpress favicon plugin by Jeff Minard (http://thecodepro.com/)
425 * http://dev.wp-plugins.org/file/favatars/trunk/favatars.php
8d505d78 426 *
9632f884
AD
427 * @param string $url A feed or page URL
428 * @access public
429 * @return mixed The favicon URL, or false if none was found.
430 */
1bd11fdf 431 function get_favicon_url($url) {
99331724 432
1bd11fdf 433 $favicon_url = false;
ed214298 434
4065b60b 435 if ($html = @fetch_file_contents($url)) {
78800912 436
ed214298 437 libxml_use_internal_errors(true);
c798704b 438
ed214298
AD
439 $doc = new DOMDocument();
440 $doc->loadHTML($html);
441 $xpath = new DOMXPath($doc);
717f5e64 442
a712429e
AD
443 $base = $xpath->query('/html/head/base');
444 foreach ($base as $b) {
445 $url = $b->getAttribute("href");
446 break;
447 }
448
1bd11fdf 449 $entries = $xpath->query('/html/head/link[@rel="shortcut icon" or @rel="icon"]');
ed214298
AD
450 if (count($entries) > 0) {
451 foreach ($entries as $entry) {
1bd11fdf
AD
452 $favicon_url = rewrite_relative_url($url, $entry->getAttribute("href"));
453 break;
ed214298 454 }
8d505d78 455 }
4065b60b 456 }
c798704b 457
1bd11fdf
AD
458 if (!$favicon_url)
459 $favicon_url = rewrite_relative_url($url, "/favicon.ico");
460
461 return $favicon_url;
462 } // function get_favicon_url
463
464 function check_feed_favicon($site_url, $feed, $link) {
882311d9 465# print "FAVICON [$site_url]: $favicon_url\n";
4065b60b 466
1bd11fdf
AD
467 $icon_file = ICONS_DIR . "/$feed.ico";
468
469 if (!file_exists($icon_file)) {
470 $favicon_url = get_favicon_url($site_url);
471
472 if ($favicon_url) {
473 // Limiting to "image" type misses those served with text/plain
474 $contents = fetch_file_contents($favicon_url); // , "image");
475
476 if ($contents) {
477 // Crude image type matching.
478 // Patterns gleaned from the file(1) source code.
479 if (preg_match('/^\x00\x00\x01\x00/', $contents)) {
480 // 0 string \000\000\001\000 MS Windows icon resource
481 //error_log("check_feed_favicon: favicon_url=$favicon_url isa MS Windows icon resource");
482 }
483 elseif (preg_match('/^GIF8/', $contents)) {
484 // 0 string GIF8 GIF image data
485 //error_log("check_feed_favicon: favicon_url=$favicon_url isa GIF image");
486 }
487 elseif (preg_match('/^\x89PNG\x0d\x0a\x1a\x0a/', $contents)) {
488 // 0 string \x89PNG\x0d\x0a\x1a\x0a PNG image data
489 //error_log("check_feed_favicon: favicon_url=$favicon_url isa PNG image");
490 }
491 elseif (preg_match('/^\xff\xd8/', $contents)) {
492 // 0 beshort 0xffd8 JPEG image data
493 //error_log("check_feed_favicon: favicon_url=$favicon_url isa JPG image");
494 }
495 else {
496 //error_log("check_feed_favicon: favicon_url=$favicon_url isa UNKNOWN type");
497 $contents = "";
498 }
499 }
500
501 if ($contents) {
502 $fp = @fopen($icon_file, "w");
503
504 if ($fp) {
505 fwrite($fp, $contents);
506 fclose($fp);
507 chmod($icon_file, 0644);
508 }
509 }
510 }
78800912
AD
511 }
512 }
513
f175937c 514 function print_select($id, $default, $values, $attributes = "") {
79f3553b 515 print "<select name=\"$id\" id=\"$id\" $attributes>";
a0d53889
AD
516 foreach ($values as $v) {
517 if ($v == $default)
60807300 518 $sel = "selected=\"1\"";
a0d53889
AD
519 else
520 $sel = "";
8d505d78 521
e88c1943
AD
522 $v = trim($v);
523
60807300 524 print "<option value=\"$v\" $sel>$v</option>";
a0d53889
AD
525 }
526 print "</select>";
527 }
40d13c28 528
79f3553b
AD
529 function print_select_hash($id, $default, $values, $attributes = "") {
530 print "<select name=\"$id\" id='$id' $attributes>";
673d54ca
AD
531 foreach (array_keys($values) as $v) {
532 if ($v == $default)
74d5c8fa 533 $sel = 'selected="selected"';
673d54ca
AD
534 else
535 $sel = "";
8d505d78 536
e88c1943
AD
537 $v = trim($v);
538
673d54ca
AD
539 print "<option $sel value=\"$v\">".$values[$v]."</option>";
540 }
541
542 print "</select>";
543 }
544
f541eb78 545 function print_radio($id, $default, $true_is, $values, $attributes = "") {
77e96719 546 foreach ($values as $v) {
8d505d78 547
77e96719 548 if ($v == $default)
5da169d9 549 $sel = "checked";
77e96719 550 else
5da169d9
AD
551 $sel = "";
552
f541eb78 553 if ($v == $true_is) {
5da169d9
AD
554 $sel .= " value=\"1\"";
555 } else {
556 $sel .= " value=\"0\"";
557 }
8d505d78
AD
558
559 print "<input class=\"noborder\" dojoType=\"dijit.form.RadioButton\"
69654950 560 type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
77e96719
AD
561
562 }
563 }
564
d9084cf2 565 function initialize_user_prefs($link, $uid, $profile = false) {
ff485f1d 566
3972bf59 567 $uid = db_escape_string($link, $uid);
ff485f1d 568
d9084cf2
AD
569 if (!$profile) {
570 $profile = "NULL";
f9aa6a89 571 $profile_qpart = "AND profile IS NULL";
d9084cf2 572 } else {
f9aa6a89 573 $profile_qpart = "AND profile = '$profile'";
d9084cf2
AD
574 }
575
f9aa6a89
AD
576 if (get_schema_version($link) < 63) $profile_qpart = "";
577
ff485f1d
AD
578 db_query($link, "BEGIN");
579
580 $result = db_query($link, "SELECT pref_name,def_value FROM ttrss_prefs");
8d505d78
AD
581
582 $u_result = db_query($link, "SELECT pref_name
f9aa6a89 583 FROM ttrss_user_prefs WHERE owner_uid = '$uid' $profile_qpart");
ff485f1d
AD
584
585 $active_prefs = array();
586
587 while ($line = db_fetch_assoc($u_result)) {
8d505d78 588 array_push($active_prefs, $line["pref_name"]);
ff485f1d
AD
589 }
590
591 while ($line = db_fetch_assoc($result)) {
592 if (array_search($line["pref_name"], $active_prefs) === FALSE) {
593// print "adding " . $line["pref_name"] . "<br>";
594
d296ba50
AD
595 $line["def_value"] = db_escape_string($link, $line["def_value"]);
596 $line["pref_name"] = db_escape_string($link, $line["pref_name"]);
597
f9aa6a89
AD
598 if (get_schema_version($link) < 63) {
599 db_query($link, "INSERT INTO ttrss_user_prefs
8d505d78 600 (owner_uid,pref_name,value) VALUES
f9aa6a89
AD
601 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."')");
602
603 } else {
604 db_query($link, "INSERT INTO ttrss_user_prefs
8d505d78 605 (owner_uid,pref_name,value, profile) VALUES
f9aa6a89
AD
606 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."', $profile)");
607 }
ff485f1d
AD
608
609 }
610 }
611
612 db_query($link, "COMMIT");
613
614 }
956c7629 615
8de8bfb8
AD
616 function get_ssl_certificate_id() {
617 if ($_SERVER["REDIRECT_SSL_CLIENT_M_SERIAL"]) {
618 return sha1($_SERVER["REDIRECT_SSL_CLIENT_M_SERIAL"] .
619 $_SERVER["REDIRECT_SSL_CLIENT_V_START"] .
620 $_SERVER["REDIRECT_SSL_CLIENT_V_END"] .
621 $_SERVER["REDIRECT_SSL_CLIENT_S_DN"]);
622 }
623 return "";
624 }
625
0d421af8 626 function authenticate_user($link, $login, $password, $check_only = false) {
c8437f35 627
131b01b3 628 if (!SINGLE_USER_MODE) {
0d421af8 629 $user_id = false;
0f28f81f
AD
630
631 global $pluginhost;
632 foreach ($pluginhost->get_hooks($pluginhost::HOOK_AUTH_USER) as $plugin) {
633
634 $user_id = (int) $plugin->authenticate($login, $password);
635
636 if ($user_id) {
637 $_SESSION["auth_module"] = strtolower(get_class($plugin));
638 break;
639 }
461766f3
AD
640 }
641
0d421af8 642 if ($user_id && !$check_only) {
70400171
AD
643 @session_start();
644
0d421af8 645 $_SESSION["uid"] = $user_id;
81020562 646 $_SESSION["version"] = VERSION;
0d421af8
AD
647
648 $result = db_query($link, "SELECT login,access_level,pwd_hash FROM ttrss_users
649 WHERE id = '$user_id'");
8d505d78 650
131b01b3
AD
651 $_SESSION["name"] = db_fetch_result($result, 0, "login");
652 $_SESSION["access_level"] = db_fetch_result($result, 0, "access_level");
8484ce22 653 $_SESSION["csrf_token"] = sha1(uniqid(rand(), true));
8d505d78
AD
654
655 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
131b01b3 656 $_SESSION["uid"]);
8d505d78 657
131b01b3 658 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
837ec70e 659 $_SESSION["user_agent"] = sha1($_SERVER['HTTP_USER_AGENT']);
1a9f4d3c 660 $_SESSION["pwd_hash"] = db_fetch_result($result, 0, "pwd_hash");
91c5f229
AD
661
662 $_SESSION["last_version_check"] = time();
8d505d78 663
131b01b3 664 initialize_user_prefs($link, $_SESSION["uid"]);
8d505d78 665
131b01b3
AD
666 return true;
667 }
8d505d78 668
131b01b3 669 return false;
503eb349 670
131b01b3 671 } else {
503eb349 672
131b01b3
AD
673 $_SESSION["uid"] = 1;
674 $_SESSION["name"] = "admin";
787e5ebc 675 $_SESSION["access_level"] = 10;
21e42e5f 676
0d421af8
AD
677 $_SESSION["hide_hello"] = true;
678 $_SESSION["hide_logout"] = true;
679
d5fd183d
AD
680 $_SESSION["auth_module"] = false;
681
21e42e5f
AD
682 if (!$_SESSION["csrf_token"]) {
683 $_SESSION["csrf_token"] = sha1(uniqid(rand(), true));
684 }
f557cd78 685
0bbba72d 686 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
8d505d78 687
0bbba72d 688 initialize_user_prefs($link, $_SESSION["uid"]);
8d505d78 689
c8437f35
AD
690 return true;
691 }
c8437f35
AD
692 }
693
e6cb77a0
AD
694 function make_password($length = 8) {
695
85db6213
AD
696 $password = "";
697 $possible = "0123456789abcdfghjkmnpqrstvwxyzABCDFGHJKMNPQRSTVWXYZ";
698
699 $i = 0;
700
701 while ($i < $length) {
702 $char = substr($possible, mt_rand(0, strlen($possible)-1), 1);
703
704 if (!strstr($password, $char)) {
705 $password .= $char;
706 $i++;
707 }
708 }
709 return $password;
e6cb77a0
AD
710 }
711
712 // this is called after user is created to initialize default feeds, labels
713 // or whatever else
8d505d78 714
e6cb77a0
AD
715 // user preferences are checked on every login, not here
716
717 function initialize_user($link, $uid) {
718
e6cb77a0 719 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
74bff337 720 values ('$uid', 'Tiny Tiny RSS: New Releases',
b6d486a3 721 'http://tt-rss.org/releases.rss')");
3b0feb9b 722
cd2cd415
AD
723 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
724 values ('$uid', 'Tiny Tiny RSS: Forum',
f0855b88 725 'http://tt-rss.org/forum/rss.php')");
3b0feb9b 726 }
e6cb77a0 727
b8aa49bc 728 function logout_user() {
5ccc1cf5
AD
729 session_destroy();
730 if (isset($_COOKIE[session_name()])) {
731 setcookie(session_name(), '', time()-42000, '/');
732 }
b8aa49bc
AD
733 }
734
8484ce22
AD
735 function validate_csrf($csrf_token) {
736 return $csrf_token == $_SESSION['csrf_token'];
737 }
738
de612e7a
AD
739 function load_user_plugins($link, $owner_uid) {
740 if ($owner_uid) {
741 $plugins = get_pref($link, "_ENABLED_PLUGINS", $owner_uid);
742
743 global $pluginhost;
d8a1d2a2 744 $pluginhost->load($plugins, $pluginhost::KIND_USER, $owner_uid);
e9c04fd4
AD
745
746 if (get_schema_version($link) > 100) {
747 $pluginhost->load_data();
748 }
de612e7a
AD
749 }
750 }
751
d98e76d9 752 function login_sequence($link) {
75a316ab
AD
753 $_SESSION["prefs_cache"] = false;
754
97acbaf1 755 if (SINGLE_USER_MODE) {
25db6c51 756 @session_start();
de612e7a 757 authenticate_user($link, "admin", null);
0a117b86 758 cache_prefs($link);
de612e7a 759 load_user_plugins($link, $_SESSION["uid"]);
97acbaf1 760 } else {
d0eef2a3
AD
761 if (!validate_session($link)) $_SESSION["uid"] = false;
762
763 if (!$_SESSION["uid"]) {
97acbaf1
AD
764
765 if (AUTH_AUTO_LOGIN && authenticate_user($link, null, null)) {
766 $_SESSION["ref_schema_version"] = get_schema_version($link, true);
767 } else {
768 authenticate_user($link, null, null, true);
769 }
770
d0eef2a3 771 if (!$_SESSION["uid"]) {
d0eef2a3
AD
772 @session_destroy();
773 setcookie(session_name(), '', time()-42000, '/');
9ce7a554
AD
774
775 render_login_form($link);
d0eef2a3
AD
776 exit;
777 }
4ad99f23 778
97acbaf1
AD
779 } else {
780 /* bump login timestamp */
781 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
782 $_SESSION["uid"]);
06b0777f 783 $_SESSION["last_login_update"] = time();
01a87dff
AD
784 }
785
afc3cf55
AD
786 if ($_SESSION["uid"] && $_SESSION["language"] && SESSION_COOKIE_LIFETIME > 0) {
787 setcookie("ttrss_lang", $_SESSION["language"],
788 time() + SESSION_COOKIE_LIFETIME);
b8aa49bc 789 }
de612e7a
AD
790
791 if ($_SESSION["uid"]) {
0a117b86 792 cache_prefs($link);
de612e7a 793 load_user_plugins($link, $_SESSION["uid"]);
b1b1d25f
AD
794
795 /* cleanup ccache */
796
797 db_query($link, "DELETE FROM ttrss_counters_cache WHERE owner_uid = ".
798 $_SESSION["uid"] . " AND
799 (SELECT COUNT(id) FROM ttrss_feeds WHERE
800 ttrss_feeds.id = feed_id) = 0");
801
802 db_query($link, "DELETE FROM ttrss_cat_counters_cache WHERE owner_uid = ".
803 $_SESSION["uid"] . " AND
804 (SELECT COUNT(id) FROM ttrss_feed_categories WHERE
805 ttrss_feed_categories.id = feed_id) = 0");
806
de612e7a 807 }
b1b1d25f 808
b8aa49bc 809 }
afc3cf55 810 }
3547842a 811
411fe209 812 function truncate_string($str, $max_len, $suffix = '&hellip;') {
12db369c 813 if (mb_strlen($str, "utf-8") > $max_len - 3) {
411fe209 814 return mb_substr($str, 0, $max_len, "utf-8") . $suffix;
3547842a
AD
815 } else {
816 return $str;
817 }
818 }
54a60e1a 819
ab4b768f
AD
820 function convert_timestamp($timestamp, $source_tz, $dest_tz) {
821
822 try {
823 $source_tz = new DateTimeZone($source_tz);
824 } catch (Exception $e) {
825 $source_tz = new DateTimeZone('UTC');
826 }
827
828 try {
829 $dest_tz = new DateTimeZone($dest_tz);
830 } catch (Exception $e) {
831 $dest_tz = new DateTimeZone('UTC');
832 }
833
834 $dt = new DateTime(date('Y-m-d H:i:s', $timestamp), $source_tz);
835 return $dt->format('U') + $dest_tz->getOffset($dt);
836 }
837
324944f3
AD
838 function make_local_datetime($link, $timestamp, $long, $owner_uid = false,
839 $no_smart_dt = false) {
840
841 if (!$owner_uid) $owner_uid = $_SESSION['uid'];
842 if (!$timestamp) $timestamp = '1970-01-01 0:00';
843
7d96bfcd
AD
844 global $utc_tz;
845 global $tz_offset;
324944f3 846
7d96bfcd
AD
847 # We store date in UTC internally
848 $dt = new DateTime($timestamp, $utc_tz);
849
850 if ($tz_offset == -1) {
851
852 $user_tz_string = get_pref($link, 'USER_TIMEZONE', $owner_uid);
853
854 try {
855 $user_tz = new DateTimeZone($user_tz_string);
856 } catch (Exception $e) {
857 $user_tz = $utc_tz;
858 }
859
860 $tz_offset = $user_tz->getOffset($dt);
324944f3
AD
861 }
862
7d96bfcd 863 $user_timestamp = $dt->format('U') + $tz_offset;
324944f3 864
1dc52ae7 865 if (!$no_smart_dt) {
8d505d78 866 return smart_date_time($link, $user_timestamp,
7d96bfcd 867 $tz_offset, $owner_uid);
324944f3
AD
868 } else {
869 if ($long)
870 $format = get_pref($link, 'LONG_DATE_FORMAT', $owner_uid);
871 else
872 $format = get_pref($link, 'SHORT_DATE_FORMAT', $owner_uid);
873
874 return date($format, $user_timestamp);
875 }
876 }
877
2a5c136e
AD
878 function smart_date_time($link, $timestamp, $tz_offset = 0, $owner_uid = false) {
879 if (!$owner_uid) $owner_uid = $_SESSION['uid'];
880
881 if (date("Y.m.d", $timestamp) == date("Y.m.d", time() + $tz_offset)) {
be773442 882 return date("G:i", $timestamp);
2a5c136e
AD
883 } else if (date("Y", $timestamp) == date("Y", time() + $tz_offset)) {
884 $format = get_pref($link, 'SHORT_DATE_FORMAT', $owner_uid);
885 return date($format, $timestamp);
be773442 886 } else {
2a5c136e
AD
887 $format = get_pref($link, 'LONG_DATE_FORMAT', $owner_uid);
888 return date($format, $timestamp);
be773442
AD
889 }
890 }
891
e3c99f3b 892 function sql_bool_to_bool($s) {
9955a134 893 if ($s == "t" || $s == "1" || strtolower($s) == "true") {
e3c99f3b
AD
894 return true;
895 } else {
896 return false;
897 }
898 }
8d505d78 899
badac687
AD
900 function bool_to_sql_bool($s) {
901 if ($s) {
902 return "true";
903 } else {
904 return "false";
905 }
906 }
e3c99f3b 907
fcfa9ef1
AD
908 // Session caching removed due to causing wrong redirects to upgrade
909 // script when get_schema_version() is called on an obsolete session
910 // created on a previous schema version.
199db684 911 function get_schema_version($link, $nocache = false) {
7d96bfcd
AD
912 global $schema_version;
913
914 if (!$schema_version) {
199db684
AD
915 $result = db_query($link, "SELECT schema_version FROM ttrss_version");
916 $version = db_fetch_result($result, 0, "schema_version");
7d96bfcd 917 $schema_version = $version;
199db684 918 return $version;
7d96bfcd
AD
919 } else {
920 return $schema_version;
921 }
e4c51a6c
AD
922 }
923
6043fb7e 924 function sanity_check($link) {
31303c6b 925 require_once 'errors.php';
ebb948c2 926
6043fb7e 927 $error_code = 0;
7d96bfcd 928 $schema_version = get_schema_version($link, true);
6043fb7e
AD
929
930 if ($schema_version != SCHEMA_VERSION) {
931 $error_code = 5;
932 }
933
aec3ce39
AD
934 if (DB_TYPE == "mysql") {
935 $result = db_query($link, "SELECT true", false);
936 if (db_num_rows($result) != 1) {
937 $error_code = 10;
938 }
939 }
940
3972bf59 941 if (db_escape_string($link, "testTEST") != "testTEST") {
f29ba148
AD
942 $error_code = 12;
943 }
944
ebb948c2 945 return array("code" => $error_code, "message" => $ERRORS[$error_code]);
6043fb7e
AD
946 }
947
27981ca3 948 function file_is_locked($filename) {
31a6d42d 949 if (function_exists('flock')) {
fb074239 950 $fp = @fopen(LOCK_DIRECTORY . "/$filename", "r");
31a6d42d
AD
951 if ($fp) {
952 if (flock($fp, LOCK_EX | LOCK_NB)) {
953 flock($fp, LOCK_UN);
954 fclose($fp);
955 return false;
956 }
27981ca3 957 fclose($fp);
31a6d42d 958 return true;
e89aed7b
AD
959 } else {
960 return false;
27981ca3 961 }
27981ca3 962 }
c1fb4a5e 963 return true; // consider the file always locked and skip the test
27981ca3
AD
964 }
965
fcb4c0c9 966 function make_lockfile($filename) {
cfa43e02 967 $fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
fcb4c0c9 968
a44bfcfd 969 if ($fp && flock($fp, LOCK_EX | LOCK_NB)) {
4c59adb1
AD
970 if (function_exists('posix_getpid')) {
971 fwrite($fp, posix_getpid() . "\n");
972 }
fcb4c0c9
AD
973 return $fp;
974 } else {
975 return false;
976 }
977 }
978
bf7fcde8 979 function make_stampfile($filename) {
cfa43e02 980 $fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
bf7fcde8 981
8e00ae9b 982 if (flock($fp, LOCK_EX | LOCK_NB)) {
bf7fcde8 983 fwrite($fp, time() . "\n");
8e00ae9b 984 flock($fp, LOCK_UN);
bf7fcde8
AD
985 fclose($fp);
986 return true;
987 } else {
988 return false;
989 }
990 }
991
894ebcf5 992 function sql_random_function() {
8c0496f7 993 if (DB_TYPE == "mysql") {
894ebcf5
AD
994 return "RAND()";
995 } else {
996 return "RANDOM()";
997 }
998 }
999
c8b693cf 1000 function catchup_feed($link, $feed, $cat_view, $owner_uid = false, $max_id = false, $mode = 'all') {
c7e51de1
AD
1001
1002 if (!$owner_uid) $owner_uid = $_SESSION['uid'];
88040f57 1003
37c03d3a 1004 //if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
22fdebff 1005
c8b693cf
AD
1006 // Todo: all this interval stuff needs some generic generator function
1007
1008 $date_qpart = "false";
1009
1010 switch ($mode) {
1011 case "1day":
1012 if (DB_TYPE == "pgsql") {
94828a8b 1013 $date_qpart = "date_entered < NOW() - INTERVAL '1 day' ";
c8b693cf 1014 } else {
d5381016 1015 $date_qpart = "date_entered < DATE_SUB(NOW(), INTERVAL 1 DAY) ";
c8b693cf
AD
1016 }
1017 break;
1018 case "1week":
1019 if (DB_TYPE == "pgsql") {
94828a8b 1020 $date_qpart = "date_entered < NOW() - INTERVAL '1 week' ";
c8b693cf 1021 } else {
94828a8b 1022 $date_qpart = "date_entered < DATE_SUB(NOW(), INTERVAL 1 WEEK) ";
c8b693cf
AD
1023 }
1024 break;
1025 case "2weeks":
1026 if (DB_TYPE == "pgsql") {
94828a8b 1027 $date_qpart = "date_entered < NOW() - INTERVAL '2 week' ";
c8b693cf 1028 } else {
94828a8b 1029 $date_qpart = "date_entered < DATE_SUB(NOW(), INTERVAL 2 WEEK) ";
c8b693cf
AD
1030 }
1031 break;
1032 default:
1033 $date_qpart = "true";
1034 }
1035
37c03d3a 1036 if (is_numeric($feed)) {
23aa0d16
AD
1037 if ($cat_view) {
1038
72a2f4f5 1039 if ($feed >= 0) {
f9fca8cb
AD
1040
1041 if ($feed > 0) {
bda6afa2
AD
1042 $children = getChildCategories($link, $feed, $owner_uid);
1043 array_push($children, $feed);
1044
1045 $children = join(",", $children);
1046
1047 $cat_qpart = "cat_id IN ($children)";
f9fca8cb
AD
1048 } else {
1049 $cat_qpart = "cat_id IS NULL";
1050 }
8d505d78 1051
bda6afa2 1052 db_query($link, "UPDATE ttrss_user_entries
c8b693cf
AD
1053 SET unread = false, last_read = NOW() WHERE ref_id IN
1054 (SELECT id FROM
1055 (SELECT id FROM ttrss_entries, ttrss_user_entries WHERE ref_id = id
1056 AND owner_uid = $owner_uid AND unread = true AND feed_id IN
1057 (SELECT id FROM ttrss_feeds WHERE $cat_qpart) AND $date_qpart) as tmp)");
23aa0d16 1058
f9fca8cb 1059 } else if ($feed == -2) {
23aa0d16 1060
8d505d78
AD
1061 db_query($link, "UPDATE ttrss_user_entries
1062 SET unread = false,last_read = NOW() WHERE (SELECT COUNT(*)
1063 FROM ttrss_user_labels2 WHERE article_id = ref_id) > 0
c8b693cf 1064 AND unread = true AND $date_qpart AND owner_uid = $owner_uid");
23aa0d16
AD
1065 }
1066
1067 } else if ($feed > 0) {
1068
8d505d78 1069 db_query($link, "UPDATE ttrss_user_entries
c8b693cf
AD
1070 SET unread = false, last_read = NOW() WHERE ref_id IN
1071 (SELECT id FROM
1072 (SELECT id FROM ttrss_entries, ttrss_user_entries WHERE ref_id = id
1073 AND owner_uid = $owner_uid AND unread = true AND feed_id = $feed AND $date_qpart) as tmp)");
8d505d78 1074
f822a8e5 1075 } else if ($feed < 0 && $feed > LABEL_BASE_INDEX) { // special, like starred
23aa0d16
AD
1076
1077 if ($feed == -1) {
8d505d78 1078 db_query($link, "UPDATE ttrss_user_entries
c8b693cf
AD
1079 SET unread = false, last_read = NOW() WHERE ref_id IN
1080 (SELECT id FROM
1081 (SELECT id FROM ttrss_entries, ttrss_user_entries WHERE ref_id = id
1082 AND owner_uid = $owner_uid AND unread = true AND marked = true AND $date_qpart) as tmp)");
23aa0d16 1083 }
e4f4b46f
AD
1084
1085 if ($feed == -2) {
8d505d78 1086 db_query($link, "UPDATE ttrss_user_entries
c8b693cf
AD
1087 SET unread = false, last_read = NOW() WHERE ref_id IN
1088 (SELECT id FROM
1089 (SELECT id FROM ttrss_entries, ttrss_user_entries WHERE ref_id = id
1090 AND owner_uid = $owner_uid AND unread = true AND published = true AND $date_qpart) as tmp)");
e4f4b46f
AD
1091 }
1092
2d24f032
AD
1093 if ($feed == -3) {
1094
c1d7e6c3
AD
1095 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE");
1096
2d24f032 1097 if (DB_TYPE == "pgsql") {
cfd34086 1098 $match_part = "date_entered > NOW() - INTERVAL '$intl hour' ";
2d24f032 1099 } else {
cfd34086 1100 $match_part = "date_entered > DATE_SUB(NOW(),
c1d7e6c3 1101 INTERVAL $intl HOUR) ";
2d24f032
AD
1102 }
1103
c8b693cf
AD
1104 db_query($link, "UPDATE ttrss_user_entries
1105 SET unread = false, last_read = NOW() WHERE ref_id IN
1106 (SELECT id FROM
1107 (SELECT id FROM ttrss_entries, ttrss_user_entries WHERE ref_id = id
cfd34086 1108 AND owner_uid = $owner_uid AND unread = true AND $date_qpart AND $match_part) as tmp)");
2d24f032
AD
1109 }
1110
3584cb11 1111 if ($feed == -4) {
8d505d78 1112 db_query($link, "UPDATE ttrss_user_entries
c8b693cf
AD
1113 SET unread = false, last_read = NOW() WHERE ref_id IN
1114 (SELECT id FROM
1115 (SELECT id FROM ttrss_entries, ttrss_user_entries WHERE ref_id = id
1116 AND owner_uid = $owner_uid AND unread = true AND $date_qpart) as tmp)");
3584cb11
AD
1117 }
1118
f822a8e5 1119 } else if ($feed < LABEL_BASE_INDEX) { // label
23aa0d16 1120
f822a8e5 1121 $label_id = feed_to_label_id($feed);
23aa0d16 1122
c8b693cf
AD
1123 db_query($link, "UPDATE ttrss_user_entries
1124 SET unread = false, last_read = NOW() WHERE ref_id IN
1125 (SELECT id FROM
1126 (SELECT ttrss_entries.id FROM ttrss_entries, ttrss_user_entries, ttrss_user_labels2 WHERE ref_id = id
1127 AND label_id = '$label_id' AND ref_id = article_id
1128 AND owner_uid = $owner_uid AND unread = true AND $date_qpart) as tmp)");
23aa0d16 1129
23aa0d16 1130 }
ad0056a8 1131
c7e51de1 1132 ccache_update($link, $feed, $owner_uid, $cat_view);
ad0056a8 1133
23aa0d16 1134 } else { // tag
c8b693cf
AD
1135 db_query($link, "UPDATE ttrss_user_entries
1136 SET unread = false, last_read = NOW() WHERE ref_id IN
1137 (SELECT id FROM
1138 (SELECT ttrss_entries.id FROM ttrss_entries, ttrss_user_entries, ttrss_tags WHERE ref_id = ttrss_entries.id
1139 AND post_int_id = int_id AND tag_name = '$feed'
1140 AND ttrss_user_entries.owner_uid = $owner_uid AND unread = true AND $date_qpart) as tmp)");
23aa0d16 1141
23aa0d16
AD
1142 }
1143 }
1144
5b55e9e2 1145 function getAllCounters($link) {
6a7817c1 1146 $data = getGlobalCounters($link);
8d505d78 1147
6a7817c1 1148 $data = array_merge($data, getVirtCounters($link));
5b55e9e2
AD
1149 $data = array_merge($data, getLabelCounters($link));
1150 $data = array_merge($data, getFeedCounters($link, $active_feed));
1151 $data = array_merge($data, getCategoryCounters($link));
6a7817c1
AD
1152
1153 return $data;
8d505d78 1154 }
a9cb1f83 1155
79178062
AD
1156 function getCategoryTitle($link, $cat_id) {
1157
1158 if ($cat_id == -1) {
1159 return __("Special");
1160 } else if ($cat_id == -2) {
1161 return __("Labels");
1162 } else {
1163
1164 $result = db_query($link, "SELECT title FROM ttrss_feed_categories WHERE
1165 id = '$cat_id'");
1166
1167 if (db_num_rows($result) == 1) {
1168 return db_fetch_result($result, 0, "title");
1169 } else {
f99759da 1170 return __("Uncategorized");
79178062
AD
1171 }
1172 }
1173 }
1174
1175
a9cb1f83 1176 function getCategoryCounters($link) {
6a7817c1 1177 $ret_arr = array();
bba7c4bf 1178
6a7817c1 1179 /* Labels category */
bba7c4bf 1180
8acc449c 1181 $cv = array("id" => -2, "kind" => "cat",
6a7817c1 1182 "counter" => getCategoryUnread($link, -2));
bba7c4bf 1183
6a7817c1 1184 array_push($ret_arr, $cv);
bba7c4bf 1185
41759103 1186 $result = db_query($link, "SELECT id AS cat_id, value AS unread,
2c5f231e
AD
1187 (SELECT COUNT(id) FROM ttrss_feed_categories AS c2
1188 WHERE c2.parent_cat = ttrss_feed_categories.id) AS num_children
8d505d78
AD
1189 FROM ttrss_feed_categories, ttrss_cat_counters_cache
1190 WHERE ttrss_cat_counters_cache.feed_id = id AND
fc9de939 1191 ttrss_cat_counters_cache.owner_uid = ttrss_feed_categories.owner_uid AND
31375163 1192 ttrss_feed_categories.owner_uid = " . $_SESSION["uid"]);
a9cb1f83
AD
1193
1194 while ($line = db_fetch_assoc($result)) {
22fdebff 1195 $line["cat_id"] = (int) $line["cat_id"];
8a4c759e 1196
2c5f231e 1197 if ($line["num_children"] > 0) {
99c9e91a 1198 $child_counter = getCategoryChildrenUnread($link, $line["cat_id"], $_SESSION["uid"]);
2c5f231e
AD
1199 } else {
1200 $child_counter = 0;
1201 }
1202
8acc449c 1203 $cv = array("id" => $line["cat_id"], "kind" => "cat",
0ef32f48 1204 "counter" => $line["unread"] + $child_counter);
6a7817c1
AD
1205
1206 array_push($ret_arr, $cv);
a9cb1f83 1207 }
d232a40f
AD
1208
1209 /* Special case: NULL category doesn't actually exist in the DB */
1210
9798b2b4 1211 $cv = array("id" => 0, "kind" => "cat",
12e6de72 1212 "counter" => (int) ccache_find($link, 0, $_SESSION["uid"], true));
d232a40f 1213
6a7817c1
AD
1214 array_push($ret_arr, $cv);
1215
1216 return $ret_arr;
a9cb1f83
AD
1217 }
1218
2c5f231e 1219 // only accepts real cats (>= 0)
99c9e91a 1220 function getCategoryChildrenUnread($link, $cat, $owner_uid = false) {
2c5f231e
AD
1221 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
1222
1223 $result = db_query($link, "SELECT id FROM ttrss_feed_categories WHERE parent_cat = '$cat'
1224 AND owner_uid = $owner_uid");
1225
1226 $unread = 0;
1227
1228 while ($line = db_fetch_assoc($result)) {
1229 $unread += getCategoryUnread($link, $line["id"], $owner_uid);
99c9e91a 1230 $unread += getCategoryChildrenUnread($link, $line["id"], $owner_uid);
2c5f231e
AD
1231 }
1232
1233 return $unread;
1234 }
1235
b6d486a3
AD
1236 function getCategoryUnread($link, $cat, $owner_uid = false) {
1237
1238 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
f295c368 1239
bba7c4bf 1240 if ($cat >= 0) {
18664970 1241
bba7c4bf
AD
1242 if ($cat != 0) {
1243 $cat_query = "cat_id = '$cat'";
1244 } else {
1245 $cat_query = "cat_id IS NULL";
1246 }
14073c0a 1247
8d505d78 1248 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE $cat_query
b6d486a3 1249 AND owner_uid = " . $owner_uid);
8d505d78 1250
bba7c4bf
AD
1251 $cat_feeds = array();
1252 while ($line = db_fetch_assoc($result)) {
1253 array_push($cat_feeds, "feed_id = " . $line["id"]);
1254 }
8d505d78 1255
bba7c4bf 1256 if (count($cat_feeds) == 0) return 0;
8d505d78 1257
bba7c4bf 1258 $match_part = implode(" OR ", $cat_feeds);
8d505d78
AD
1259
1260 $result = db_query($link, "SELECT COUNT(int_id) AS unread
687bb90d
AD
1261 FROM ttrss_user_entries
1262 WHERE unread = true AND ($match_part)
1263 AND owner_uid = " . $owner_uid);
8d505d78 1264
bba7c4bf 1265 $unread = 0;
8d505d78 1266
bba7c4bf
AD
1267 # this needs to be rewritten
1268 while ($line = db_fetch_assoc($result)) {
1269 $unread += $line["unread"];
1270 }
8d505d78 1271
bba7c4bf
AD
1272 return $unread;
1273 } else if ($cat == -1) {
59e15af4 1274 return getFeedUnread($link, -1) + getFeedUnread($link, -2) + getFeedUnread($link, -3) + getFeedUnread($link, 0);
bba7c4bf 1275 } else if ($cat == -2) {
f295c368 1276
b2531a28 1277 $result = db_query($link, "
8d505d78 1278 SELECT COUNT(unread) AS unread FROM
687bb90d
AD
1279 ttrss_user_entries, ttrss_user_labels2
1280 WHERE article_id = ref_id AND unread = true
b2531a28 1281 AND ttrss_user_entries.owner_uid = '$owner_uid'");
ceb30ba4 1282
b2531a28 1283 $unread = db_fetch_result($result, 0, "unread");
f295c368 1284
b2531a28 1285 return $unread;
f295c368 1286
8d505d78 1287 }
f295c368
AD
1288 }
1289
1290 function getFeedUnread($link, $feed, $is_cat = false) {
2627f2d0 1291 return getFeedArticles($link, $feed, $is_cat, true, $_SESSION["uid"]);
bdb7369b
AD
1292 }
1293
ceb30ba4
AD
1294 function getLabelUnread($link, $label_id, $owner_uid = false) {
1295 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
1296
f360b028
AD
1297 $result = db_query($link, "SELECT COUNT(ref_id) AS unread FROM ttrss_user_entries, ttrss_user_labels2
1298 WHERE owner_uid = '$owner_uid' AND unread = true AND label_id = '$label_id' AND article_id = ref_id");
ceb30ba4
AD
1299
1300 if (db_num_rows($result) != 0) {
1301 return db_fetch_result($result, 0, "unread");
1302 } else {
1303 return 0;
1304 }
1305 }
1306
2627f2d0
AD
1307 function getFeedArticles($link, $feed, $is_cat = false, $unread_only = false,
1308 $owner_uid = false) {
1309
22fdebff 1310 $n_feed = (int) $feed;
687bb90d 1311 $need_entries = false;
f295c368 1312
2627f2d0
AD
1313 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
1314
bdb7369b
AD
1315 if ($unread_only) {
1316 $unread_qpart = "unread = true";
1317 } else {
1318 $unread_qpart = "true";
1319 }
1320
f295c368 1321 if ($is_cat) {
8d505d78 1322 return getCategoryUnread($link, $n_feed, $owner_uid);
5417fbd7
AD
1323 } else if ($n_feed == -6) {
1324 return 0;
1325 } else if ($feed != "0" && $n_feed == 0) {
326469fc 1326
3972bf59 1327 $feed = db_escape_string($link, $feed);
c5701e70 1328
326469fc 1329 $result = db_query($link, "SELECT SUM((SELECT COUNT(int_id)
8d505d78 1330 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
687bb90d 1331 AND ref_id = id AND $unread_qpart)) AS count FROM ttrss_tags
326469fc
AD
1332 WHERE owner_uid = $owner_uid AND tag_name = '$feed'");
1333 return db_fetch_result($result, 0, "count");
1334
f295c368 1335 } else if ($n_feed == -1) {
a9cb1f83 1336 $match_part = "marked = true";
e4f4b46f
AD
1337 } else if ($n_feed == -2) {
1338 $match_part = "published = true";
2d24f032 1339 } else if ($n_feed == -3) {
cd2cc43d 1340 $match_part = "unread = true AND score >= 0";
2d24f032 1341
b71e188e 1342 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid);
c1d7e6c3 1343
2d24f032 1344 if (DB_TYPE == "pgsql") {
8d505d78 1345 $match_part .= " AND updated > NOW() - INTERVAL '$intl hour' ";
2d24f032 1346 } else {
7608b38a 1347 $match_part .= " AND updated > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
2d24f032 1348 }
687bb90d
AD
1349
1350 $need_entries = true;
1351
b2531a28
AD
1352 } else if ($n_feed == -4) {
1353 $match_part = "true";
e04c18a2 1354 } else if ($n_feed >= 0) {
831ff047 1355
6e63a7c3
AD
1356 if ($n_feed != 0) {
1357 $match_part = "feed_id = '$n_feed'";
831ff047 1358 } else {
6e63a7c3 1359 $match_part = "feed_id IS NULL";
831ff047 1360 }
6e63a7c3 1361
f822a8e5 1362 } else if ($feed < LABEL_BASE_INDEX) {
318260cc 1363
f822a8e5 1364 $label_id = feed_to_label_id($feed);
a9cb1f83 1365
ceb30ba4 1366 return getLabelUnread($link, $label_id, $owner_uid);
a9cb1f83 1367
a9cb1f83
AD
1368 }
1369
1370 if ($match_part) {
e04c18a2 1371
687bb90d 1372 if ($need_entries) {
e04c18a2 1373 $from_qpart = "ttrss_user_entries,ttrss_entries";
687bb90d
AD
1374 $from_where = "ttrss_entries.id = ttrss_user_entries.ref_id AND";
1375 } else {
1376 $from_qpart = "ttrss_user_entries";
e04c18a2
AD
1377 }
1378
8d505d78 1379 $query = "SELECT count(int_id) AS unread
e04c18a2 1380 FROM $from_qpart WHERE
687bb90d
AD
1381 $unread_qpart AND $from_where ($match_part) AND ttrss_user_entries.owner_uid = $owner_uid";
1382
1383 //echo "[$feed/$query]\n";
dbfc4365
AD
1384
1385 $result = db_query($link, $query);
8d505d78 1386
a9cb1f83 1387 } else {
8d505d78 1388
a9cb1f83 1389 $result = db_query($link, "SELECT COUNT(post_int_id) AS unread
8d505d78
AD
1390 FROM ttrss_tags,ttrss_user_entries,ttrss_entries
1391 WHERE tag_name = '$feed' AND post_int_id = int_id AND ref_id = ttrss_entries.id
687bb90d 1392 AND $unread_qpart AND ttrss_tags.owner_uid = " . $owner_uid);
a9cb1f83 1393 }
8d505d78 1394
a9cb1f83 1395 $unread = db_fetch_result($result, 0, "unread");
cfb02131 1396
a9cb1f83
AD
1397 return $unread;
1398 }
1399
f3acc32e
AD
1400 function getGlobalUnread($link, $user_id = false) {
1401
1402 if (!$user_id) {
1403 $user_id = $_SESSION["uid"];
1404 }
1405
8a4c759e
AD
1406 $result = db_query($link, "SELECT SUM(value) AS c_id FROM ttrss_counters_cache
1407 WHERE owner_uid = '$user_id' AND feed_id > 0");
1408
8d505d78 1409 $c_id = db_fetch_result($result, 0, "c_id");
8a4c759e 1410
a9cb1f83
AD
1411 return $c_id;
1412 }
1413
1414 function getGlobalCounters($link, $global_unread = -1) {
6a7817c1
AD
1415 $ret_arr = array();
1416
8d505d78 1417 if ($global_unread == -1) {
a9cb1f83
AD
1418 $global_unread = getGlobalUnread($link);
1419 }
6a7817c1 1420
8d505d78 1421 $cv = array("id" => "global-unread",
12e6de72 1422 "counter" => (int) $global_unread);
6a7817c1
AD
1423
1424 array_push($ret_arr, $cv);
7bf7e4d3 1425
8d505d78 1426 $result = db_query($link, "SELECT COUNT(id) AS fn FROM
7bf7e4d3
AD
1427 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
1428
1429 $subscribed_feeds = db_fetch_result($result, 0, "fn");
1430
8d505d78 1431 $cv = array("id" => "subscribed-feeds",
12e6de72 1432 "counter" => (int) $subscribed_feeds);
7bf7e4d3 1433
6a7817c1
AD
1434 array_push($ret_arr, $cv);
1435
1436 return $ret_arr;
a9cb1f83
AD
1437 }
1438
6a7817c1 1439 function getVirtCounters($link) {
a9cb1f83 1440
ef393de7 1441 $ret_arr = array();
bdb7369b 1442
e04c18a2 1443 for ($i = 0; $i >= -4; $i--) {
bdb7369b 1444
ceb30ba4 1445 $count = getFeedUnread($link, $i);
6a7817c1
AD
1446
1447 $cv = array("id" => $i,
12e6de72 1448 "counter" => (int) $count);
8d505d78 1449
296c8134
AD
1450// if (get_pref($link, 'EXTENDED_FEEDLIST'))
1451// $cv["xmsg"] = getFeedArticles($link, $i)." ".__("total");
bdb7369b 1452
6a7817c1 1453 array_push($ret_arr, $cv);
8d505d78 1454 }
0a6e5382 1455
a413f53e
AD
1456 global $pluginhost;
1457
1458 if ($pluginhost) {
1459 $feeds = $pluginhost->get_feeds(-1);
1460
0196ef94
AD
1461 if (is_array($feeds)) {
1462 foreach ($feeds as $feed) {
1463 $cv = array("id" => PluginHost::pfeed_to_feed_id($feed['id']),
1464 "counter" => $feed['sender']->get_unread($feed['id']));
a413f53e 1465
0196ef94
AD
1466 array_push($ret_arr, $cv);
1467 }
a413f53e 1468 }
a413f53e
AD
1469 }
1470
0a6e5382
AD
1471 return $ret_arr;
1472 }
1473
11232703 1474 function getLabelCounters($link, $descriptions = false) {
6a7817c1
AD
1475
1476 $ret_arr = array();
0a6e5382 1477
3809b278 1478 $owner_uid = $_SESSION["uid"];
bdb7369b 1479
45942238
AD
1480 $result = db_query($link, "SELECT id,caption,COUNT(unread) AS unread
1481 FROM ttrss_labels2 LEFT JOIN ttrss_user_labels2 ON
1482 (ttrss_labels2.id = label_id)
33373eca
AD
1483 LEFT JOIN ttrss_user_entries ON (ref_id = article_id AND unread = true
1484 AND ttrss_user_entries.owner_uid = $owner_uid)
123a7643
AD
1485 WHERE ttrss_labels2.owner_uid = $owner_uid GROUP BY ttrss_labels2.id,
1486 ttrss_labels2.caption");
8d505d78 1487
3809b278 1488 while ($line = db_fetch_assoc($result)) {
2d24f032 1489
f822a8e5 1490 $id = label_to_feed_id($line["id"]);
e4f4b46f 1491
3809b278 1492 $label_name = $line["caption"];
45942238 1493 $count = $line["unread"];
3809b278 1494
6a7817c1 1495 $cv = array("id" => $id,
12e6de72 1496 "counter" => (int) $count);
11232703
AD
1497
1498 if ($descriptions)
1499 $cv["description"] = $label_name;
a9cb1f83 1500
296c8134
AD
1501// if (get_pref($link, 'EXTENDED_FEEDLIST'))
1502// $cv["xmsg"] = getFeedArticles($link, $id)." ".__("total");
ef393de7 1503
6a7817c1 1504 array_push($ret_arr, $cv);
3809b278 1505 }
8d505d78 1506
ef393de7 1507 return $ret_arr;
a9cb1f83
AD
1508 }
1509
3809b278 1510 function getFeedCounters($link, $active_feed = false) {
a9cb1f83 1511
6a7817c1
AD
1512 $ret_arr = array();
1513
41759103 1514 $query = "SELECT ttrss_feeds.id,
8a4c759e 1515 ttrss_feeds.title,
8d505d78 1516 ".SUBSTRING_FOR_DATE."(ttrss_feeds.last_updated,1,19) AS last_updated,
de0a2122
AD
1517 last_error, value AS count
1518 FROM ttrss_feeds, ttrss_counters_cache
8d505d78 1519 WHERE ttrss_feeds.owner_uid = ".$_SESSION["uid"]."
fc9de939 1520 AND ttrss_counters_cache.owner_uid = ttrss_feeds.owner_uid
55e01d7e 1521 AND ttrss_counters_cache.feed_id = id";
a9cb1f83 1522
14073c0a 1523 $result = db_query($link, $query);
a9cb1f83
AD
1524 $fctrs_modified = false;
1525
1526 while ($line = db_fetch_assoc($result)) {
8d505d78 1527
a9cb1f83 1528 $id = $line["id"];
de0a2122 1529 $count = $line["count"];
a9cb1f83 1530 $last_error = htmlspecialchars($line["last_error"]);
fb1fb4ab 1531
324944f3 1532 $last_updated = make_local_datetime($link, $line['last_updated'], false);
fb1fb4ab 1533
7defa089 1534 $has_img = feed_has_icon($id);
a9cb1f83 1535
428b704d
AD
1536 if (date('Y') - date('Y', strtotime($line['last_updated'])) > 2)
1537 $last_updated = '';
1538
6a7817c1 1539 $cv = array("id" => $id,
21884958 1540 "updated" => $last_updated,
12e6de72 1541 "counter" => (int) $count,
6a7817c1 1542 "has_img" => (int) $has_img);
a9cb1f83 1543
6a7817c1
AD
1544 if ($last_error)
1545 $cv["error"] = $last_error;
4ffa126e 1546
296c8134
AD
1547// if (get_pref($link, 'EXTENDED_FEEDLIST'))
1548// $cv["xmsg"] = getFeedArticles($link, $id)." ".__("total");
bdb7369b 1549
6a7817c1 1550 if ($active_feed && $id == $active_feed)
fbc95c5b 1551 $cv["title"] = truncate_string($line["title"], 30);
6a7817c1
AD
1552
1553 array_push($ret_arr, $cv);
a9cb1f83 1554
a9cb1f83 1555 }
6a7817c1
AD
1556
1557 return $ret_arr;
a9cb1f83
AD
1558 }
1559
6e7f8d26
AD
1560 function get_pgsql_version($link) {
1561 $result = db_query($link, "SELECT version() AS version");
9949bd15 1562 $version = explode(" ", db_fetch_result($result, 0, "version"));
6e7f8d26
AD
1563 return $version[1];
1564 }
1565
2b8290cd 1566 /**
23d2471c
AD
1567 * @return array (code => Status code, message => error message if available)
1568 *
2b8290cd
CW
1569 * 0 - OK, Feed already exists
1570 * 1 - OK, Feed added
1571 * 2 - Invalid URL
9a8ce956
CW
1572 * 3 - URL content is HTML, no feeds available
1573 * 4 - URL content is HTML which contains multiple feeds.
1574 * Here you should call extractfeedurls in rpc-backend
1575 * to get all possible feeds.
5414ad4c 1576 * 5 - Couldn't download the URL content.
2b8290cd 1577 */
8d505d78 1578 function subscribe_to_feed($link, $url, $cat_id = 0,
efc6553d 1579 $auth_login = '', $auth_pass = '') {
bb0f29a4 1580
23d2471c
AD
1581 global $fetch_last_error;
1582
2c08214a
AD
1583 require_once "include/rssfuncs.php";
1584
f0266f51 1585 $url = fix_url($url);
ec39a02c 1586
23d2471c 1587 if (!$url || !validate_feed_url($url)) return array("code" => 2);
a5819bb3 1588
759e5132
AD
1589 $contents = @fetch_file_contents($url, false, $auth_login, $auth_pass);
1590
1591 if (!$contents) {
304aadb9 1592 return array("code" => 5, "message" => $fetch_last_error);
759e5132
AD
1593 }
1594
1595 if (is_html($contents)) {
1596 $feedUrls = get_feeds_from_html($url, $contents);
304aadb9 1597
304aadb9
AD
1598 if (count($feedUrls) == 0) {
1599 return array("code" => 3);
1600 } else if (count($feedUrls) > 1) {
759e5132 1601 return array("code" => 4, "feeds" => $feedUrls);
f6d8345b 1602 }
304aadb9
AD
1603 //use feed url as new URL
1604 $url = key($feedUrls);
1605 }
f6d8345b 1606
956c7629
AD
1607 if ($cat_id == "0" || !$cat_id) {
1608 $cat_qpart = "NULL";
1609 } else {
1610 $cat_qpart = "'$cat_id'";
1611 }
8d505d78 1612
956c7629 1613 $result = db_query($link,
8d505d78 1614 "SELECT id FROM ttrss_feeds
a5819bb3 1615 WHERE feed_url = '$url' AND owner_uid = ".$_SESSION["uid"]);
8d505d78 1616
044cff2d
AD
1617 if (strlen(FEED_CRYPT_KEY) > 0) {
1618 require_once "crypt.php";
1619 $auth_pass = substr(encrypt_string($auth_pass), 0, 250);
1620 $auth_pass_encrypted = 'true';
1621 } else {
1622 $auth_pass_encrypted = 'false';
1623 }
1624
956c7629 1625 if (db_num_rows($result) == 0) {
956c7629 1626 $result = db_query($link,
8d505d78 1627 "INSERT INTO ttrss_feeds
044cff2d 1628 (owner_uid,feed_url,title,cat_id, auth_login,auth_pass,update_method,auth_pass_encrypted)
8d505d78 1629 VALUES ('".$_SESSION["uid"]."', '$url',
044cff2d 1630 '[Unknown]', $cat_qpart, '$auth_login', '$auth_pass', 0, $auth_pass_encrypted)");
8d505d78 1631
956c7629 1632 $result = db_query($link,
8d505d78 1633 "SELECT id FROM ttrss_feeds WHERE feed_url = '$url'
f27de515 1634 AND owner_uid = " . $_SESSION["uid"]);
8d505d78 1635
956c7629 1636 $feed_id = db_fetch_result($result, 0, "id");
8d505d78 1637
956c7629 1638 if ($feed_id) {
c633e370 1639 update_rss_feed($link, $feed_id, true);
956c7629
AD
1640 }
1641
23d2471c 1642 return array("code" => 1);
956c7629 1643 } else {
23d2471c 1644 return array("code" => 0);
956c7629
AD
1645 }
1646 }
1647
8d505d78 1648 function print_feed_select($link, $id, $default_id = "",
4c9d0490
AD
1649 $attributes = "", $include_all_feeds = true,
1650 $root_id = false, $nest_level = 0) {
1651
1652 if (!$root_id) {
1653 print "<select id=\"$id\" name=\"$id\" $attributes>";
1654 if ($include_all_feeds) {
1655 $is_selected = ("0" == $default_id) ? "selected=\"1\"" : "";
1656 print "<option $is_selected value=\"0\">".__('All feeds')."</option>";
1657 }
673d54ca 1658 }
8d505d78 1659
4c9d0490 1660 if (get_pref($link, 'ENABLE_FEED_CATS')) {
673d54ca 1661
4c9d0490
AD
1662 if ($root_id)
1663 $parent_qpart = "parent_cat = '$root_id'";
1664 else
1665 $parent_qpart = "parent_cat IS NULL";
673d54ca 1666
4c9d0490
AD
1667 $result = db_query($link, "SELECT id,title,
1668 (SELECT COUNT(id) FROM ttrss_feed_categories AS c2 WHERE
1669 c2.parent_cat = ttrss_feed_categories.id) AS num_children
1670 FROM ttrss_feed_categories
1671 WHERE owner_uid = ".$_SESSION["uid"]." AND $parent_qpart ORDER BY title");
1672
1673 while ($line = db_fetch_assoc($result)) {
1674
1675 for ($i = 0; $i < $nest_level; $i++)
1676 $line["title"] = " - " . $line["title"];
1677
1678 $is_selected = ("CAT:".$line["id"] == $default_id) ? "selected=\"1\"" : "";
1679
1680 printf("<option $is_selected value='CAT:%d'>%s</option>",
1681 $line["id"], htmlspecialchars($line["title"]));
1682
1683 if ($line["num_children"] > 0)
1684 print_feed_select($link, $id, $default_id, $attributes,
1685 $include_all_feeds, $line["id"], $nest_level+1);
1686
1687 $feed_result = db_query($link, "SELECT id,title FROM ttrss_feeds
1688 WHERE cat_id = '".$line["id"]."' AND owner_uid = ".$_SESSION["uid"] . " ORDER BY title");
1689
1690 while ($fline = db_fetch_assoc($feed_result)) {
1691 $is_selected = ($fline["id"] == $default_id) ? "selected=\"1\"" : "";
1692
1693 $fline["title"] = " + " . $fline["title"];
1694
1695 for ($i = 0; $i < $nest_level; $i++)
1696 $fline["title"] = " - " . $fline["title"];
1697
1698 printf("<option $is_selected value='%d'>%s</option>",
1699 $fline["id"], htmlspecialchars($fline["title"]));
1700 }
673d54ca 1701 }
b1710666 1702
4c9d0490
AD
1703 if (!$root_id) {
1704 $is_selected = ($default_id == "CAT:0") ? "selected=\"1\"" : "";
1705
1706 printf("<option $is_selected value='CAT:0'>%s</option>",
1707 __("Uncategorized"));
1708
1709 $feed_result = db_query($link, "SELECT id,title FROM ttrss_feeds
1710 WHERE cat_id IS NULL AND owner_uid = ".$_SESSION["uid"] . " ORDER BY title");
1711
1712 while ($fline = db_fetch_assoc($feed_result)) {
1713 $is_selected = ($fline["id"] == $default_id && !$default_is_cat) ? "selected=\"1\"" : "";
1714
1715 $fline["title"] = " + " . $fline["title"];
1716
1717 for ($i = 0; $i < $nest_level; $i++)
1718 $fline["title"] = " - " . $fline["title"];
1719
1720 printf("<option $is_selected value='%d'>%s</option>",
1721 $fline["id"], htmlspecialchars($fline["title"]));
1722 }
1723 }
b1710666 1724
4c9d0490
AD
1725 } else {
1726 $result = db_query($link, "SELECT id,title FROM ttrss_feeds
1727 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
1728
1729 while ($line = db_fetch_assoc($result)) {
1730
1731 $is_selected = ($line["id"] == $default_id) ? "selected=\"1\"" : "";
1732
1733 printf("<option $is_selected value='%d'>%s</option>",
1734 $line["id"], htmlspecialchars($line["title"]));
1735 }
673d54ca 1736 }
8d505d78 1737
4c9d0490
AD
1738 if (!$root_id) {
1739 print "</select>";
1740 }
673d54ca
AD
1741 }
1742
fbf85cf6
AD
1743 function print_feed_cat_select($link, $id, $default_id,
1744 $attributes, $include_all_cats = true, $root_id = false, $nest_level = 0) {
8d505d78 1745
fbf85cf6
AD
1746 if (!$root_id) {
1747 print "<select id=\"$id\" name=\"$id\" default=\"$default_id\" onchange=\"catSelectOnChange(this)\" $attributes>";
1748 }
673d54ca 1749
fbf85cf6
AD
1750 if ($root_id)
1751 $parent_qpart = "parent_cat = '$root_id'";
1752 else
1753 $parent_qpart = "parent_cat IS NULL";
673d54ca 1754
fbf85cf6
AD
1755 $result = db_query($link, "SELECT id,title,
1756 (SELECT COUNT(id) FROM ttrss_feed_categories AS c2 WHERE
1757 c2.parent_cat = ttrss_feed_categories.id) AS num_children
1758 FROM ttrss_feed_categories
1759 WHERE owner_uid = ".$_SESSION["uid"]." AND $parent_qpart ORDER BY title");
673d54ca 1760
fbf85cf6
AD
1761 while ($line = db_fetch_assoc($result)) {
1762 if ($line["id"] == $default_id) {
1763 $is_selected = "selected=\"1\"";
1764 } else {
1765 $is_selected = "";
1766 }
673d54ca 1767
fbf85cf6
AD
1768 for ($i = 0; $i < $nest_level; $i++)
1769 $line["title"] = " - " . $line["title"];
c00907f2 1770
fbf85cf6
AD
1771 if ($line["title"])
1772 printf("<option $is_selected value='%d'>%s</option>",
1773 $line["id"], htmlspecialchars($line["title"]));
673d54ca 1774
fbf85cf6
AD
1775 if ($line["num_children"] > 0)
1776 print_feed_cat_select($link, $id, $default_id, $attributes,
1777 $include_all_cats, $line["id"], $nest_level+1);
1778 }
5c7c7da9 1779
fbf85cf6
AD
1780 if (!$root_id) {
1781 if ($include_all_cats) {
1782 if (db_num_rows($result) > 0) {
1783 print "<option disabled=\"1\">--------</option>";
1784 }
7e18f8e7
AD
1785
1786 if ($default_id == 0) {
1787 $is_selected = "selected=\"1\"";
1788 } else {
1789 $is_selected = "";
1790 }
1791
1792 print "<option $is_selected value=\"0\">".__('Uncategorized')."</option>";
fbf85cf6
AD
1793 }
1794 print "</select>";
1795 }
1796 }
8d505d78 1797
14f69488
AD
1798 function checkbox_to_sql_bool($val) {
1799 return ($val == "on") ? "true" : "false";
1800 }
86b682ce
AD
1801
1802 function getFeedCatTitle($link, $id) {
1803 if ($id == -1) {
d1db26aa 1804 return __("Special");
f822a8e5 1805 } else if ($id < LABEL_BASE_INDEX) {
d1db26aa 1806 return __("Labels");
86b682ce 1807 } else if ($id > 0) {
8d505d78 1808 $result = db_query($link, "SELECT ttrss_feed_categories.title
86b682ce
AD
1809 FROM ttrss_feeds, ttrss_feed_categories WHERE ttrss_feeds.id = '$id' AND
1810 cat_id = ttrss_feed_categories.id");
1811 if (db_num_rows($result) == 1) {
1812 return db_fetch_result($result, 0, "title");
1813 } else {
d1db26aa 1814 return __("Uncategorized");
86b682ce
AD
1815 }
1816 } else {
1817 return "getFeedCatTitle($id) failed";
1818 }
1819
1820 }
1821
9299102f 1822 function getFeedIcon($id) {
af88c48a 1823 switch ($id) {
4bee8b5f
AD
1824 case 0:
1825 return "images/archive.png";
1826 break;
af88c48a 1827 case -1:
c2167866 1828 return "images/mark_set.svg";
af88c48a
AD
1829 break;
1830 case -2:
c2167866 1831 return "images/pub_set.svg";
af88c48a
AD
1832 break;
1833 case -3:
1834 return "images/fresh.png";
1835 break;
1836 case -4:
1837 return "images/tag.png";
1838 break;
5417fbd7
AD
1839 case -6:
1840 return "images/recently_read.png";
1841 break;
af88c48a 1842 default:
f822a8e5 1843 if ($id < LABEL_BASE_INDEX) {
4bee8b5f
AD
1844 return "images/label.png";
1845 } else {
8d505d78 1846 if (file_exists(ICONS_DIR . "/$id.ico"))
e2eda979 1847 return ICONS_URL . "/$id.ico";
4bee8b5f 1848 }
af88c48a
AD
1849 break;
1850 }
1851 }
1852
fd994f1a
AD
1853 function getFeedTitle($link, $id, $cat = false) {
1854 if ($cat) {
8add44ec 1855 return getCategoryTitle($link, $id);
fd994f1a 1856 } else if ($id == -1) {
d1db26aa 1857 return __("Starred articles");
945c243e
AD
1858 } else if ($id == -2) {
1859 return __("Published articles");
2d24f032
AD
1860 } else if ($id == -3) {
1861 return __("Fresh articles");
b2531a28
AD
1862 } else if ($id == -4) {
1863 return __("All articles");
80db1113 1864 } else if ($id === 0 || $id === "0") {
e04c18a2 1865 return __("Archived articles");
5417fbd7
AD
1866 } else if ($id == -6) {
1867 return __("Recently read");
f822a8e5
AD
1868 } else if ($id < LABEL_BASE_INDEX) {
1869 $label_id = feed_to_label_id($id);
ceb30ba4 1870 $result = db_query($link, "SELECT caption FROM ttrss_labels2 WHERE id = '$label_id'");
86b682ce 1871 if (db_num_rows($result) == 1) {
ceb30ba4 1872 return db_fetch_result($result, 0, "caption");
86b682ce
AD
1873 } else {
1874 return "Unknown label ($label_id)";
1875 }
1876
147f5632 1877 } else if (is_numeric($id) && $id > 0) {
86b682ce
AD
1878 $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$id'");
1879 if (db_num_rows($result) == 1) {
1880 return db_fetch_result($result, 0, "title");
1881 } else {
1882 return "Unknown feed ($id)";
1883 }
1884 } else {
22fdebff 1885 return $id;
86b682ce 1886 }
86b682ce 1887 }
3dd46f19 1888
d8221301 1889 function make_init_params($link) {
f1f3a642 1890 $params = array();
c9268ed5 1891
f1f3a642
AD
1892 foreach (array("ON_CATCHUP_SHOW_NEXT_FEED", "HIDE_READ_FEEDS",
1893 "ENABLE_FEED_CATS", "FEEDS_SORT_BY_UNREAD", "CONFIRM_FEED_CATCHUP",
f17cac6b 1894 "CDM_AUTO_CATCHUP", "FRESH_ARTICLE_MAX_AGE",
30b6ee8c 1895 "HIDE_READ_SHOWS_SPECIAL", "COMBINED_DISPLAY_MODE") as $param) {
40496720 1896
c4f7ba80 1897 $params[strtolower($param)] = (int) get_pref($link, $param);
f1f3a642 1898 }
40496720 1899
c4f7ba80
AD
1900 $params["icons_url"] = ICONS_URL;
1901 $params["cookie_lifetime"] = SESSION_COOKIE_LIFETIME;
1902 $params["default_view_mode"] = get_pref($link, "_DEFAULT_VIEW_MODE");
1903 $params["default_view_limit"] = (int) get_pref($link, "_DEFAULT_VIEW_LIMIT");
1904 $params["default_view_order_by"] = get_pref($link, "_DEFAULT_VIEW_ORDER_BY");
c4f7ba80 1905 $params["bw_limit"] = (int) $_SESSION["bw_limit"];
88a41b64 1906 $params["label_base_index"] = (int) LABEL_BASE_INDEX;
59b223d7 1907
8cd576a1 1908 $result = db_query($link, "SELECT MAX(id) AS mid, COUNT(*) AS nf FROM
9b7ecc0a
AD
1909 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
1910
8cd576a1
AD
1911 $max_feed_id = db_fetch_result($result, 0, "mid");
1912 $num_feeds = db_fetch_result($result, 0, "nf");
9b7ecc0a 1913
8cd576a1 1914 $params["max_feed_id"] = (int) $max_feed_id;
c4f7ba80 1915 $params["num_feeds"] = (int) $num_feeds;
8cd576a1 1916
c4f7ba80 1917 $params["collapsed_feedlist"] = (int) get_pref($link, "_COLLAPSED_FEEDLIST");
b8cb4d08 1918 $params["hotkeys"] = get_hotkeys_map($link);
9b7ecc0a 1919
8484ce22 1920 $params["csrf_token"] = $_SESSION["csrf_token"];
f03701fe 1921 $params["widescreen"] = (int) $_COOKIE["ttrss_widescreen"];
8484ce22 1922
6b1a4ecd 1923 $params['simple_update'] = defined('SIMPLE_UPDATE_MODE') && SIMPLE_UPDATE_MODE;
8b83bf5f 1924
d8221301 1925 return $params;
3ac2b520 1926 }
f54f515f 1927
b8cb4d08
AD
1928 function get_hotkeys_info($link) {
1929 $hotkeys = array(
1930 __("Navigation") => array(
1931 "next_feed" => __("Open next feed"),
1932 "prev_feed" => __("Open previous feed"),
1933 "next_article" => __("Open next article"),
1934 "prev_article" => __("Open previous article"),
c22580b5
AD
1935 "next_article_noscroll" => __("Open next article (don't scroll long articles)"),
1936 "prev_article_noscroll" => __("Open previous article (don't scroll long articles)"),
8b35d171
SC
1937 "next_article_noexpand" => __("Move to next article (don't expand or mark read)"),
1938 "prev_article_noexpand" => __("Move to previous article (don't expand or mark read)"),
b8cb4d08
AD
1939 "search_dialog" => __("Show search dialog")),
1940 __("Article") => array(
1941 "toggle_mark" => __("Toggle starred"),
1942 "toggle_publ" => __("Toggle published"),
1943 "toggle_unread" => __("Toggle unread"),
1944 "edit_tags" => __("Edit tags"),
1945 "dismiss_selected" => __("Dismiss selected"),
1946 "dismiss_read" => __("Dismiss read"),
1947 "open_in_new_window" => __("Open in new window"),
1948 "catchup_below" => __("Mark below as read"),
1949 "catchup_above" => __("Mark above as read"),
1950 "article_scroll_down" => __("Scroll down"),
1951 "article_scroll_up" => __("Scroll up"),
1952 "select_article_cursor" => __("Select article under cursor"),
1bcf8f45 1953 "email_article" => __("Email article"),
414191d4 1954 "close_article" => __("Close/collapse article"),
8b35d171 1955 "toggle_expand" => __("Toggle article expansion (combined mode)"),
2ccc7b8e
AD
1956 "toggle_widescreen" => __("Toggle widescreen mode"),
1957 "toggle_embed_original" => __("Toggle embed original")),
b8cb4d08
AD
1958 __("Article selection") => array(
1959 "select_all" => __("Select all articles"),
1960 "select_unread" => __("Select unread"),
1961 "select_marked" => __("Select starred"),
1962 "select_published" => __("Select published"),
1963 "select_invert" => __("Invert selection"),
1964 "select_none" => __("Deselect everything")),
1965 __("Feed") => array(
1966 "feed_refresh" => __("Refresh current feed"),
1967 "feed_unhide_read" => __("Un/hide read feeds"),
1968 "feed_subscribe" => __("Subscribe to feed"),
1969 "feed_edit" => __("Edit feed"),
1970 "feed_catchup" => __("Mark as read"),
1971 "feed_reverse" => __("Reverse headlines"),
43f775de 1972 "feed_debug_update" => __("Debug feed update"),
b8cb4d08 1973 "catchup_all" => __("Mark all feeds as read"),
4b27f0c0 1974 "cat_toggle_collapse" => __("Un/collapse current category"),
60b88b25
AD
1975 "toggle_combined_mode" => __("Toggle combined mode"),
1976 "toggle_cdm_expanded" => __("Toggle auto expand in combined mode")),
b8cb4d08
AD
1977 __("Go to") => array(
1978 "goto_all" => __("All articles"),
1979 "goto_fresh" => __("Fresh"),
1980 "goto_marked" => __("Starred"),
1981 "goto_published" => __("Published"),
1982 "goto_tagcloud" => __("Tag cloud"),
1983 "goto_prefs" => __("Preferences")),
1984 __("Other") => array(
1985 "create_label" => __("Create label"),
1986 "create_filter" => __("Create filter"),
1987 "collapse_sidebar" => __("Un/collapse sidebar"),
1988 "help_dialog" => __("Show help dialog"))
1989 );
1990
47854200
DA
1991 global $pluginhost;
1992 foreach ($pluginhost->get_hooks($pluginhost::HOOK_HOTKEY_INFO) as $plugin) {
1993 $hotkeys = $plugin->hook_hotkey_info($hotkeys);
1994 }
1995
b8cb4d08
AD
1996 return $hotkeys;
1997 }
1998
1999 function get_hotkeys_map($link) {
a83b58f1 2000 $hotkeys = array(
e218c5f5
AD
2001// "navigation" => array(
2002 "k" => "next_feed",
2003 "j" => "prev_feed",
2004 "n" => "next_article",
2005 "p" => "prev_article",
e5e2cf3b
AD
2006 "(38)|up" => "prev_article",
2007 "(40)|down" => "next_article",
da15c140
AD
2008// "^(38)|Ctrl-up" => "prev_article_noscroll",
2009// "^(40)|Ctrl-down" => "next_article_noscroll",
e5e2cf3b 2010 "(191)|/" => "search_dialog",
e218c5f5
AD
2011// "article" => array(
2012 "s" => "toggle_mark",
5b18c936 2013 "*s" => "toggle_publ",
e218c5f5 2014 "u" => "toggle_unread",
5b18c936
AD
2015 "*t" => "edit_tags",
2016 "*d" => "dismiss_selected",
2017 "*x" => "dismiss_read",
e218c5f5
AD
2018 "o" => "open_in_new_window",
2019 "c p" => "catchup_below",
2020 "c n" => "catchup_above",
5b18c936
AD
2021 "*n" => "article_scroll_down",
2022 "*p" => "article_scroll_up",
d2db81a5
AD
2023 "*(38)|Shift+up" => "article_scroll_up",
2024 "*(40)|Shift+down" => "article_scroll_down",
5b18c936 2025 "a *w" => "toggle_widescreen",
2ccc7b8e 2026 "a e" => "toggle_embed_original",
e218c5f5 2027 "e" => "email_article",
2cda4314 2028 "a q" => "close_article",
e218c5f5
AD
2029// "article_selection" => array(
2030 "a a" => "select_all",
2031 "a u" => "select_unread",
5b18c936 2032 "a *u" => "select_marked",
e218c5f5
AD
2033 "a p" => "select_published",
2034 "a i" => "select_invert",
2035 "a n" => "select_none",
2036// "feed" => array(
2037 "f r" => "feed_refresh",
2038 "f a" => "feed_unhide_read",
2039 "f s" => "feed_subscribe",
2040 "f e" => "feed_edit",
2041 "f q" => "feed_catchup",
2042 "f x" => "feed_reverse",
5b18c936
AD
2043 "f *d" => "feed_debug_update",
2044 "f *c" => "toggle_combined_mode",
60b88b25 2045 "f c" => "toggle_cdm_expanded",
5b18c936 2046 "*q" => "catchup_all",
e218c5f5
AD
2047 "x" => "cat_toggle_collapse",
2048// "goto" => array(
2049 "g a" => "goto_all",
2050 "g f" => "goto_fresh",
2051 "g s" => "goto_marked",
2052 "g p" => "goto_published",
2053 "g t" => "goto_tagcloud",
5b18c936 2054 "g *p" => "goto_prefs",
e218c5f5 2055// "other" => array(
3fb40112 2056 "(9)|Tab" => "select_article_cursor", // tab
e218c5f5
AD
2057 "c l" => "create_label",
2058 "c f" => "create_filter",
2059 "c s" => "collapse_sidebar",
3fb40112 2060 "^(191)|Ctrl+/" => "help_dialog",
a83b58f1
AD
2061 );
2062
da15c140
AD
2063 if (get_pref($link, 'COMBINED_DISPLAY_MODE')) {
2064 $hotkeys["^(38)|Ctrl-up"] = "prev_article_noscroll";
2065 $hotkeys["^(40)|Ctrl-down"] = "next_article_noscroll";
2066 }
2067
e218c5f5
AD
2068 global $pluginhost;
2069 foreach ($pluginhost->get_hooks($pluginhost::HOOK_HOTKEY_MAP) as $plugin) {
2070 $hotkeys = $plugin->hook_hotkey_map($hotkeys);
2071 }
2072
2073 $prefixes = array();
2074
2075 foreach (array_keys($hotkeys) as $hotkey) {
2076 $pair = explode(" ", $hotkey, 2);
2077
2078 if (count($pair) > 1 && !in_array($pair[0], $prefixes)) {
2079 array_push($prefixes, $pair[0]);
2080 }
2081 }
2082
2083 return array($prefixes, $hotkeys);
a83b58f1
AD
2084 }
2085
c4f7ba80 2086 function make_runtime_info($link) {
8cd576a1
AD
2087 $data = array();
2088
2089 $result = db_query($link, "SELECT MAX(id) AS mid, COUNT(*) AS nf FROM
9b7ecc0a
AD
2090 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
2091
8cd576a1
AD
2092 $max_feed_id = db_fetch_result($result, 0, "mid");
2093 $num_feeds = db_fetch_result($result, 0, "nf");
9b7ecc0a 2094
8cd576a1
AD
2095 $data["max_feed_id"] = (int) $max_feed_id;
2096 $data["num_feeds"] = (int) $num_feeds;
c4f7ba80 2097
f8fb4498 2098 $data['last_article_id'] = getLastArticleId($link);
5ae8f858 2099 $data['cdm_expanded'] = get_pref($link, 'CDM_EXPANDED');
f8fb4498 2100
16314dda 2101 $data['dep_ts'] = calculate_dep_timestamp();
4cdb8173 2102 $data['reload_on_ts_change'] = !defined('_NO_RELOAD_ON_TS_CHANGE');
16314dda 2103
dbaa4e4a 2104 if (file_exists(LOCK_DIRECTORY . "/update_daemon.lock")) {
c4f7ba80
AD
2105
2106 $data['daemon_is_running'] = (int) file_is_locked("update_daemon.lock");
8e00ae9b 2107
9041f58b 2108 if (time() - $_SESSION["daemon_stamp_check"] > 30) {
8e00ae9b 2109
fb074239 2110 $stamp = (int) @file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
fbae93d8 2111
8e00ae9b 2112 if ($stamp) {
9041f58b
AD
2113 $stamp_delta = time() - $stamp;
2114
2115 if ($stamp_delta > 1800) {
f6854e44 2116 $stamp_check = 0;
8e00ae9b 2117 } else {
f6854e44
AD
2118 $stamp_check = 1;
2119 $_SESSION["daemon_stamp_check"] = time();
8e00ae9b
AD
2120 }
2121
c4f7ba80 2122 $data['daemon_stamp_ok'] = $stamp_check;
f6854e44 2123
8e00ae9b
AD
2124 $stamp_fmt = date("Y.m.d, G:i", $stamp);
2125
c4f7ba80 2126 $data['daemon_stamp'] = $stamp_fmt;
8e00ae9b 2127 }
8e00ae9b 2128 }
71ad883b 2129 }
8e00ae9b 2130
63855db1 2131 if ($_SESSION["last_version_check"] + 86400 + rand(-1000, 1000) < time()) {
fb074239 2132 $new_version_details = @check_for_update($link);
d9fa39f1 2133
63855db1 2134 $data['new_version_available'] = (int) ($new_version_details != false);
d9fa39f1
AD
2135
2136 $_SESSION["last_version_check"] = time();
27211afe 2137 $_SESSION["version_data"] = $new_version_details;
d9fa39f1
AD
2138 }
2139
c4f7ba80 2140 return $data;
f54f515f 2141 }
ef393de7 2142
ca5d9be4 2143 function search_to_sql($link, $search) {
ef393de7 2144
88040f57 2145 $search_query_part = "";
e20c9d88 2146
9949bd15 2147 $keywords = explode(" ", $search);
88040f57 2148 $query_keywords = array();
e20c9d88 2149
ab4b768f
AD
2150 foreach ($keywords as $k) {
2151 if (strpos($k, "-") === 0) {
2152 $k = substr($k, 1);
2153 $not = "NOT";
2154 } else {
2155 $not = "";
88040f57 2156 }
e20c9d88 2157
9949bd15 2158 $commandpair = explode(":", mb_strtolower($k), 2);
53003548 2159
0fc3930b
AD
2160 switch ($commandpair[0]) {
2161 case "title":
2162 if ($commandpair[1]) {
2163 array_push($query_keywords, "($not (LOWER(ttrss_entries.title) LIKE '%".
2164 db_escape_string($link, mb_strtolower($commandpair[1]))."%'))");
efd840d8
AD
2165 } else {
2166 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
2167 OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
0fc3930b
AD
2168 }
2169 break;
2170 case "author":
2171 if ($commandpair[1]) {
2172 array_push($query_keywords, "($not (LOWER(author) LIKE '%".
2173 db_escape_string($link, mb_strtolower($commandpair[1]))."%'))");
efd840d8
AD
2174 } else {
2175 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
2176 OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
0fc3930b
AD
2177 }
2178 break;
2179 case "note":
2180 if ($commandpair[1]) {
2181 if ($commandpair[1] == "true")
2182 array_push($query_keywords, "($not (note IS NOT NULL AND note != ''))");
2183 else if ($commandpair[1] == "false")
2184 array_push($query_keywords, "($not (note IS NULL OR note = ''))");
2185 else
2186 array_push($query_keywords, "($not (LOWER(note) LIKE '%".
2187 db_escape_string($link, mb_strtolower($commandpair[1]))."%'))");
efd840d8
AD
2188 } else {
2189 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
2190 OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
0fc3930b
AD
2191 }
2192 break;
2193 case "star":
53003548 2194
0fc3930b
AD
2195 if ($commandpair[1]) {
2196 if ($commandpair[1] == "true")
2197 array_push($query_keywords, "($not (marked = true))");
2198 else
2199 array_push($query_keywords, "($not (marked = false))");
efd840d8
AD
2200 } else {
2201 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
2202 OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
0fc3930b
AD
2203 }
2204 break;
2205 case "pub":
2206 if ($commandpair[1]) {
2207 if ($commandpair[1] == "true")
2208 array_push($query_keywords, "($not (published = true))");
2209 else
2210 array_push($query_keywords, "($not (published = false))");
53003548 2211
efd840d8
AD
2212 } else {
2213 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
2214 OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
0fc3930b
AD
2215 }
2216 break;
2217 default:
2218 if (strpos($k, "@") === 0) {
e20c9d88 2219
0fc3930b
AD
2220 $user_tz_string = get_pref($link, 'USER_TIMEZONE', $_SESSION['uid']);
2221 $orig_ts = strtotime(substr($k, 1));
2222 $k = date("Y-m-d", convert_timestamp($orig_ts, $user_tz_string, 'UTC'));
8d505d78 2223
0fc3930b 2224 //$k = date("Y-m-d", strtotime(substr($k, 1)));
53003548 2225
0fc3930b
AD
2226 array_push($query_keywords, "(".SUBSTRING_FOR_DATE."(updated,1,LENGTH('$k')) $not = '$k')");
2227 } else {
2228 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
2229 OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
2230 }
88040f57
AD
2231 }
2232 }
2233
2234 $search_query_part = implode("AND", $query_keywords);
2235
2236 return $search_query_part;
2237 }
2238
67bd0b1f
AD
2239 function getParentCategories($link, $cat, $owner_uid) {
2240 $rv = array();
2241
2242 $result = db_query($link, "SELECT parent_cat FROM ttrss_feed_categories
2243 WHERE id = '$cat' AND parent_cat IS NOT NULL AND owner_uid = $owner_uid");
2244
2245 while ($line = db_fetch_assoc($result)) {
2246 array_push($rv, $line["parent_cat"]);
2247 $rv = array_merge($rv, getParentCategories($link, $line["parent_cat"], $owner_uid));
2248 }
2249
2250 return $rv;
2251 }
2252
6d8d00e8
AD
2253 function getChildCategories($link, $cat, $owner_uid) {
2254 $rv = array();
2255
2256 $result = db_query($link, "SELECT id FROM ttrss_feed_categories
2257 WHERE parent_cat = '$cat' AND owner_uid = $owner_uid");
2258
2259 while ($line = db_fetch_assoc($result)) {
2260 array_push($rv, $line["id"]);
2261 $rv = array_merge($rv, getChildCategories($link, $line["id"], $owner_uid));
2262 }
2263
2264 return $rv;
2265 }
147f5632 2266
ca5d9be4 2267 function queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view, $search, $search_mode, $override_order = false, $offset = 0, $owner_uid = 0, $filter = false, $since_id = 0, $include_children = false, $ignore_vfeed_group = false) {
c36bf4d5
AD
2268
2269 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
c1a0b534 2270
c3fddd05
AD
2271 $ext_tables_part = "";
2272
88040f57 2273 if ($search) {
e4f7f8df
AD
2274
2275 if (SPHINX_ENABLED) {
2276 $ids = join(",", @sphinx_search($search, 0, 500));
2277
8d505d78 2278 if ($ids)
e4f7f8df
AD
2279 $search_query_part = "ref_id IN ($ids) AND ";
2280 else
2281 $search_query_part = "ref_id = -1 AND ";
2282
2283 } else {
ca5d9be4 2284 $search_query_part = search_to_sql($link, $search);
e4f7f8df 2285 $search_query_part .= " AND ";
8d505d78 2286 }
e20c9d88 2287
ef393de7
AD
2288 } else {
2289 $search_query_part = "";
2290 }
2291
36184020 2292 if ($filter) {
4e02f582
AD
2293
2294 if (DB_TYPE == "pgsql") {
2295 $query_strategy_part .= " AND updated > NOW() - INTERVAL '14 days' ";
2296 } else {
2297 $query_strategy_part .= " AND updated > DATE_SUB(NOW(), INTERVAL 14 DAY) ";
2298 }
2299
2300 $override_order = "updated DESC";
2301
2680295b 2302 $filter_query_part = filter_to_sql($link, $filter, $owner_uid);
dd8c36af
AD
2303
2304 // Try to check if SQL regexp implementation chokes on a valid regexp
809c8e62 2305 $result = db_query($link, "SELECT true AS true_val FROM ttrss_entries,
2680295b 2306 ttrss_user_entries, ttrss_feeds, ttrss_feed_categories
dd8c36af
AD
2307 WHERE $filter_query_part LIMIT 1", false);
2308
7726063c
AD
2309 if ($result) {
2310 $test = db_fetch_result($result, 0, "true_val");
dd8c36af 2311
7726063c
AD
2312 if (!$test) {
2313 $filter_query_part = "false AND";
2314 } else {
2315 $filter_query_part .= " AND";
2316 }
dd8c36af 2317 } else {
7726063c 2318 $filter_query_part = "false AND";
dd8c36af
AD
2319 }
2320
36184020
AD
2321 } else {
2322 $filter_query_part = "";
2323 }
2324
97e5dbb2
AD
2325 if ($since_id) {
2326 $since_id_part = "ttrss_entries.id > $since_id AND ";
2327 } else {
2328 $since_id_part = "";
2329 }
2330
ef393de7 2331 $view_query_part = "";
8d505d78 2332
9b523c01 2333 if ($view_mode == "adaptive") {
ef393de7
AD
2334 if ($search) {
2335 $view_query_part = " ";
2336 } else if ($feed != -1) {
6d8d00e8 2337
a6adb136 2338 $unread = getFeedUnread($link, $feed, $cat_view);
f4a2f12a 2339
a6adb136
AD
2340 if ($cat_view && $feed > 0 && $include_children)
2341 $unread += getCategoryChildrenUnread($link, $feed);
f4a2f12a 2342
a6adb136
AD
2343 if ($unread > 0)
2344 $view_query_part = " unread = true AND ";
f4a2f12a 2345
ef393de7
AD
2346 }
2347 }
8d505d78 2348
ef393de7
AD
2349 if ($view_mode == "marked") {
2350 $view_query_part = " marked = true AND ";
2351 }
23d72f39 2352
127aaaa0
AD
2353 if ($view_mode == "has_note") {
2354 $view_query_part = " (note IS NOT NULL AND note != '') AND ";
2355 }
2356
23d72f39
AD
2357 if ($view_mode == "published") {
2358 $view_query_part = " published = true AND ";
2359 }
2360
0bf65987 2361 if ($view_mode == "unread" && $feed != -6) {
ef393de7
AD
2362 $view_query_part = " unread = true AND ";
2363 }
8b09eac8 2364
ef393de7
AD
2365 if ($limit > 0) {
2366 $limit_query_part = "LIMIT " . $limit;
8d505d78 2367 }
ef393de7 2368
8361e724
AD
2369 $allow_archived = false;
2370
ef393de7 2371 $vfeed_query_part = "";
8d505d78 2372
ef393de7
AD
2373 // override query strategy and enable feed display when searching globally
2374 if ($search && $search_mode == "all_feeds") {
7032f2a5 2375 $query_strategy_part = "true";
8d505d78 2376 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
22fdebff 2377 /* tags */
75c648cf 2378 } else if (!is_numeric($feed)) {
7032f2a5 2379 $query_strategy_part = "true";
ef393de7
AD
2380 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
2381 id = feed_id) as feed_title,";
7032f2a5 2382 } else if ($search && $search_mode == "this_cat") {
8d505d78 2383 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
0a6c4846 2384
7032f2a5
AD
2385 if ($feed > 0) {
2386 if ($include_children) {
2387 $subcats = getChildCategories($link, $feed, $owner_uid);
2388 array_push($subcats, $feed);
2389 $cats_qpart = join(",", $subcats);
2390 } else {
2391 $cats_qpart = $feed;
ef393de7 2392 }
8d505d78 2393
7032f2a5 2394 $query_strategy_part = "ttrss_feeds.cat_id IN ($cats_qpart)";
8d505d78 2395
ef393de7 2396 } else {
7032f2a5 2397 $query_strategy_part = "ttrss_feeds.cat_id IS NULL";
ef393de7 2398 }
8d505d78 2399
e04c18a2 2400 } else if ($feed > 0) {
8d505d78 2401
ef393de7 2402 if ($cat_view) {
5c365f60 2403
ef393de7 2404 if ($feed > 0) {
09101297
AD
2405 if ($include_children) {
2406 # sub-cats
2407 $subcats = getChildCategories($link, $feed, $owner_uid);
2408
7032f2a5
AD
2409 array_push($subcats, $feed);
2410 $query_strategy_part = "cat_id IN (".
09101297 2411 implode(",", $subcats).")";
7032f2a5 2412
6d8d00e8 2413 } else {
09101297 2414 $query_strategy_part = "cat_id = '$feed'";
6d8d00e8
AD
2415 }
2416
ef393de7
AD
2417 } else {
2418 $query_strategy_part = "cat_id IS NULL";
2419 }
8d505d78 2420
ef393de7 2421 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
5c365f60 2422
8d505d78 2423 } else {
6e63a7c3 2424 $query_strategy_part = "feed_id = '$feed'";
ef393de7 2425 }
bfe5ddfc 2426 } else if ($feed == 0 && !$cat_view) { // archive virtual feed
e04c18a2 2427 $query_strategy_part = "feed_id IS NULL";
8361e724 2428 $allow_archived = true;
bfe5ddfc 2429 } else if ($feed == 0 && $cat_view) { // uncategorized
65dd90f2 2430 $query_strategy_part = "cat_id IS NULL AND feed_id IS NOT NULL";
bfe5ddfc 2431 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ef393de7
AD
2432 } else if ($feed == -1) { // starred virtual feed
2433 $query_strategy_part = "marked = true";
2434 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
835fb294
AD
2435 $allow_archived = true;
2436
1bd7413f 2437 if (!$override_order) {
b9a06a0e 2438 $override_order = "last_marked DESC, date_entered DESC, updated DESC";
1bd7413f 2439 }
7873d588 2440
e6a38cde
AD
2441 } else if ($feed == -2) { // published virtual feed OR labels category
2442
2443 if (!$cat_view) {
2444 $query_strategy_part = "published = true";
2445 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
8361e724 2446 $allow_archived = true;
46b78149 2447
1bd7413f 2448 if (!$override_order) {
b9a06a0e 2449 $override_order = "last_published DESC, date_entered DESC, updated DESC";
1bd7413f
AD
2450 }
2451
e6a38cde
AD
2452 } else {
2453 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2454
2455 $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
8d505d78 2456
e6a38cde
AD
2457 $query_strategy_part = "ttrss_labels2.id = ttrss_user_labels2.label_id AND
2458 ttrss_user_labels2.article_id = ref_id";
2459
2460 }
5417fbd7 2461 } else if ($feed == -6) { // recently read
5089b30b 2462 $query_strategy_part = "unread = false AND last_read IS NOT NULL";
5417fbd7 2463 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
835fb294 2464 $allow_archived = true;
46b78149
AD
2465
2466 if (!$override_order) $override_order = "last_read DESC";
2d24f032 2467 } else if ($feed == -3) { // fresh virtual feed
cd2cc43d 2468 $query_strategy_part = "unread = true AND score >= 0";
2d24f032 2469
7a22dc2a 2470 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid);
c1d7e6c3 2471
2d24f032 2472 if (DB_TYPE == "pgsql") {
be574731 2473 $query_strategy_part .= " AND date_entered > NOW() - INTERVAL '$intl hour' ";
2d24f032 2474 } else {
be574731 2475 $query_strategy_part .= " AND date_entered > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
2d24f032
AD
2476 }
2477
b2531a28
AD
2478 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2479 } else if ($feed == -4) { // all articles virtual feed
cf57eb3c 2480 $allow_archived = true;
b2531a28 2481 $query_strategy_part = "true";
e4f4b46f 2482 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
f822a8e5
AD
2483 } else if ($feed <= LABEL_BASE_INDEX) { // labels
2484 $label_id = feed_to_label_id($feed);
3de0261a 2485
ceb30ba4
AD
2486 $query_strategy_part = "label_id = '$label_id' AND
2487 ttrss_labels2.id = ttrss_user_labels2.label_id AND
2488 ttrss_user_labels2.article_id = ref_id";
3de0261a 2489
ef393de7 2490 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ceb30ba4 2491 $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
835fb294 2492 $allow_archived = true;
8d505d78 2493
ef393de7 2494 } else {
835fb294 2495 $query_strategy_part = "true";
ef393de7 2496 }
d6e5706d 2497
686852d5 2498 $order_by = "score DESC, date_entered DESC, updated DESC";
e939722a 2499
2e4faaac 2500 if ($view_mode == "unread_first") {
434bf856 2501 $order_by = "unread DESC, $order_by";
2e4faaac
AD
2502 }
2503
e939722a
AD
2504 if ($override_order) {
2505 $order_by = $override_order;
2506 }
8d505d78 2507
ef393de7
AD
2508 $feed_title = "";
2509
22fdebff 2510 if ($search) {
7032f2a5 2511 $feed_title = T_sprintf("Search results: %s", $search);
22fdebff 2512 } else {
ef393de7 2513 if ($cat_view) {
22fdebff 2514 $feed_title = getCategoryTitle($link, $feed);
ef393de7 2515 } else {
147f5632 2516 if (is_numeric($feed) && $feed > 0) {
8d505d78 2517 $result = db_query($link, "SELECT title,site_url,last_error
22fdebff 2518 FROM ttrss_feeds WHERE id = '$feed' AND owner_uid = $owner_uid");
8d505d78 2519
22fdebff
AD
2520 $feed_title = db_fetch_result($result, 0, "title");
2521 $feed_site_url = db_fetch_result($result, 0, "site_url");
2522 $last_error = db_fetch_result($result, 0, "last_error");
2523 } else {
2524 $feed_title = getFeedTitle($link, $feed);
8d505d78 2525 }
88040f57 2526 }
ef393de7
AD
2527 }
2528
87764a50 2529 $content_query_part = "content as content_preview, cached_content, ";
62129e67 2530
75c648cf 2531 if (is_numeric($feed)) {
8d505d78 2532
ef393de7
AD
2533 if ($feed >= 0) {
2534 $feed_kind = "Feeds";
2535 } else {
2536 $feed_kind = "Labels";
2537 }
8d505d78 2538
95a82c08
AD
2539 if ($limit_query_part) {
2540 $offset_query_part = "OFFSET $offset";
2541 }
2542
7fdf8eca 2543 // proper override_order applied above
6b3f228f 2544 if ($vfeed_query_part && !$ignore_vfeed_group && get_pref($link, 'VFEED_GROUP_BY_FEED', $owner_uid)) {
6cfea5c7 2545 if (!$override_order) {
8d505d78 2546 $order_by = "ttrss_feeds.title, $order_by";
7fdf8eca
AD
2547 } else {
2548 $order_by = "ttrss_feeds.title, $override_order";
43fc671f 2549 }
6cfea5c7
AD
2550 }
2551
8361e724 2552 if (!$allow_archived) {
e04c18a2 2553 $from_qpart = "ttrss_entries,ttrss_user_entries,ttrss_feeds$ext_tables_part";
117335bf 2554 $feed_check_qpart = "ttrss_user_entries.feed_id = ttrss_feeds.id AND";
e04c18a2
AD
2555
2556 } else {
835fb294 2557 $from_qpart = "ttrss_entries$ext_tables_part,ttrss_user_entries
e04c18a2
AD
2558 LEFT JOIN ttrss_feeds ON (feed_id = ttrss_feeds.id)";
2559 }
2560
8d505d78 2561 $query = "SELECT DISTINCT
f9b2d27c 2562 date_entered,
1f64b1be 2563 guid,
ef393de7 2564 ttrss_entries.id,ttrss_entries.title,
46921916 2565 updated,
9c506873
AD
2566 label_cache,
2567 tag_cache,
c0644ee4 2568 always_display_enclosures,
d1fc2f92 2569 site_url,
c7e51de1 2570 note,
13992673
AD
2571 num_comments,
2572 comments,
db16ae50 2573 int_id,
bfd61d3f 2574 hide_images,
494a64ea 2575 unread,feed_id,marked,published,link,last_read,orig_feed_id,
7873d588 2576 last_marked, last_published,
ef393de7
AD
2577 $vfeed_query_part
2578 $content_query_part
ff6e357a 2579 author,score
ef393de7 2580 FROM
e04c18a2 2581 $from_qpart
ef393de7 2582 WHERE
e04c18a2 2583 $feed_check_qpart
ef393de7 2584 ttrss_user_entries.ref_id = ttrss_entries.id AND
c36bf4d5 2585 ttrss_user_entries.owner_uid = '$owner_uid' AND
ef393de7 2586 $search_query_part
36184020 2587 $filter_query_part
ef393de7 2588 $view_query_part
97e5dbb2 2589 $since_id_part
ef393de7 2590 $query_strategy_part ORDER BY $order_by
95a82c08 2591 $limit_query_part $offset_query_part";
4bc311fc 2592
b4e75b2a 2593 if ($_REQUEST["debug"]) print $query;
4bc311fc
AD
2594
2595 $result = db_query($link, $query);
8d505d78 2596
ef393de7
AD
2597 } else {
2598 // browsing by tag
8d505d78 2599
147f5632
CM
2600 $select_qpart = "SELECT DISTINCT " .
2601 "date_entered," .
2602 "guid," .
2603 "note," .
2604 "ttrss_entries.id as id," .
2605 "title," .
2606 "updated," .
2607 "unread," .
2608 "feed_id," .
2609 "orig_feed_id," .
2610 "marked," .
d1fc2f92
AD
2611 "num_comments, " .
2612 "comments, " .
c0644ee4
AD
2613 "tag_cache," .
2614 "label_cache," .
147f5632
CM
2615 "link," .
2616 "last_read," .
94a567df 2617 "(SELECT hide_images FROM ttrss_feeds WHERE id = feed_id) AS hide_images," .
7873d588 2618 "last_marked, last_published, " .
97e5dbb2 2619 $since_id_part .
147f5632
CM
2620 $vfeed_query_part .
2621 $content_query_part .
147f5632
CM
2622 "score ";
2623
ef393de7 2624 $feed_kind = "Tags";
147f5632
CM
2625 $all_tags = explode(",", $feed);
2626 if ($search_mode == 'any') {
2627 $tag_sql = "tag_name in (" . implode(", ", array_map("db_quote", $all_tags)) . ")";
2628 $from_qpart = " FROM ttrss_entries,ttrss_user_entries,ttrss_tags ";
2629 $where_qpart = " WHERE " .
2630 "ref_id = ttrss_entries.id AND " .
2631 "ttrss_user_entries.owner_uid = $owner_uid AND " .
2632 "post_int_id = int_id AND $tag_sql AND " .
2633 $view_query_part .
2634 $search_query_part .
2635 $query_strategy_part . " ORDER BY $order_by " .
2636 $limit_query_part;
8d505d78 2637
147f5632
CM
2638 } else {
2639 $i = 1;
2640 $sub_selects = array();
2641 $sub_ands = array();
2642 foreach ($all_tags as $term) {
2643 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");
2644 $i++;
2645 }
2646 if ($i > 2) {
2647 $x = 1;
2648 $y = 2;
2649 do {
2650 array_push($sub_ands, "A$x.post_int_id = A$y.post_int_id");
2651 $x++;
2652 $y++;
2653 } while ($y < $i);
2654 }
2655 array_push($sub_ands, "A1.post_int_id = ttrss_user_entries.int_id and ttrss_user_entries.owner_uid = $owner_uid");
2656 array_push($sub_ands, "ttrss_user_entries.ref_id = ttrss_entries.id");
2657 $from_qpart = " FROM " . implode(", ", $sub_selects) . ", ttrss_user_entries, ttrss_entries";
2658 $where_qpart = " WHERE " . implode(" AND ", $sub_ands);
2659 }
2660 // error_log("TAG SQL: " . $tag_sql);
2661 // $tag_sql = "tag_name = '$feed'"; DEFAULT way
2662
2663 // error_log("[". $select_qpart . "][" . $from_qpart . "][" .$where_qpart . "]");
2664 $result = db_query($link, $select_qpart . $from_qpart . $where_qpart);
ef393de7
AD
2665 }
2666
c7188969 2667 return array($result, $feed_title, $feed_site_url, $last_error);
8d505d78 2668
ef393de7
AD
2669 }
2670
bfd61d3f 2671 function sanitize($link, $str, $force_remove_images = false, $owner = false, $site_url = false) {
ceb0cab5
AD
2672 if (!$owner) $owner = $_SESSION["uid"];
2673
96811a55
AD
2674 $res = trim($str); if (!$res) return '';
2675
46137483
AD
2676 if (strpos($res, "href=") === false)
2677 $res = rewrite_urls($res);
533c0ea6 2678
8cc3c778
AD
2679 $charset_hack = '<head>
2680 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
2681 </head>';
2682
96811a55
AD
2683 $res = trim($res); if (!$res) return '';
2684
8cc3c778
AD
2685 libxml_use_internal_errors(true);
2686
2687 $doc = new DOMDocument();
2688 $doc->loadHTML($charset_hack . $res);
2689 $xpath = new DOMXPath($doc);
8d505d78 2690
8cc3c778
AD
2691 $entries = $xpath->query('(//a[@href]|//img[@src])');
2692
2693 foreach ($entries as $entry) {
2694
2695 if ($site_url) {
2696
2697 if ($entry->hasAttribute('href'))
2698 $entry->setAttribute('href',
2699 rewrite_relative_url($site_url, $entry->getAttribute('href')));
8d505d78 2700
f0bd8e65
AD
2701 if ($entry->hasAttribute('src')) {
2702 $src = rewrite_relative_url($site_url, $entry->getAttribute('src'));
2703
2704 $cached_filename = CACHE_DIR . '/images/' . sha1($src) . '.png';
2705
2706 if (file_exists($cached_filename)) {
2707 $src = SELF_URL_PATH . '/image.php?hash=' . sha1($src);
2708 }
2709
2710 $entry->setAttribute('src', $src);
2711 }
bfd61d3f
AD
2712
2713 if ($entry->nodeName == 'img') {
f0540b59 2714 if (($owner && get_pref($link, "STRIP_IMAGES", $owner)) ||
ba79634c 2715 $force_remove_images || $_SESSION["bw_limit"]) {
bfd61d3f
AD
2716
2717 $p = $doc->createElement('p');
2718
2719 $a = $doc->createElement('a');
2720 $a->setAttribute('href', $entry->getAttribute('src'));
2721
2722 $a->appendChild(new DOMText($entry->getAttribute('src')));
2723 $a->setAttribute('target', '_blank');
2724
2725 $p->appendChild($a);
2726
2727 $entry->parentNode->replaceChild($p, $entry);
2728 }
2729 }
8cc3c778
AD
2730 }
2731
fa403733 2732 if (strtolower($entry->nodeName) == "a") {
c401d5c9 2733 $entry->setAttribute("target", "_blank");
fa403733 2734 }
8dccabed 2735 }
8d505d78 2736
254a3f56
AD
2737 $entries = $xpath->query('//iframe');
2738 foreach ($entries as $entry) {
4e404802
AD
2739 $entry->setAttribute('sandbox', 'allow-scripts');
2740
254a3f56 2741 }
8dccabed 2742
1701b965 2743 $allowed_elements = array('a', 'address', 'audio', 'article', 'aside',
2744 'b', 'bdi', 'bdo', 'big', 'blockquote', 'body', 'br',
2745 'caption', 'cite', 'center', 'code', 'col', 'colgroup',
2746 'data', 'dd', 'del', 'details', 'div', 'dl', 'font',
2747 'dt', 'em', 'footer', 'figure', 'figcaption',
2748 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'header', 'html', 'i',
2749 'img', 'ins', 'kbd', 'li', 'main', 'mark', 'nav', 'noscript',
e0d12697 2750 'ol', 'p', 'pre', 'q', 'ruby', 'rp', 'rt', 's', 'samp', 'section',
2751 'small', 'source', 'span', 'strike', 'strong', 'sub', 'summary',
1701b965 2752 'sup', 'table', 'tbody', 'td', 'tfoot', 'th', 'thead', 'time',
b70ccfe6
FE
2753 'tr', 'track', 'tt', 'u', 'ul', 'var', 'wbr', 'video' );
2754
2755 if ($_SESSION['hasSandbox']) $allowed_elements[] = 'iframe';
2756
2757 $disallowed_attributes = array('id', 'style', 'class');
2758
e9b86f0a
AD
2759 global $pluginhost;
2760
2761 if (isset($pluginhost)) {
2762 foreach ($pluginhost->get_hooks($pluginhost::HOOK_SANITIZE) as $plugin) {
b70ccfe6
FE
2763 $retval = $plugin->hook_sanitize($doc, $site_url, $allowed_elements, $disallowed_attributes);
2764 if (is_array($retval)) {
2765 $doc = $retval[0];
2766 $allowed_elements = $retval[1];
2767 $disallowed_attributes = $retval[2];
2768 } else {
2769 $doc = $retval;
2770 }
e9b86f0a
AD
2771 }
2772 }
2773
be124dc2 2774 $doc->removeChild($doc->firstChild); //remove doctype
b70ccfe6 2775 $doc = strip_harmful_tags($doc, $allowed_elements, $disallowed_attributes);
be124dc2 2776 $res = $doc->saveHTML();
254a3f56
AD
2777 return $res;
2778 }
16ad9085 2779
b70ccfe6 2780 function strip_harmful_tags($doc, $allowed_elements, $disallowed_attributes) {
254a3f56 2781 $entries = $doc->getElementsByTagName("*");
16ad9085 2782
254a3f56
AD
2783 foreach ($entries as $entry) {
2784 if (!in_array($entry->nodeName, $allowed_elements)) {
2785 $entry->parentNode->removeChild($entry);
2786 }
2787
2788 if ($entry->hasAttributes()) {
5f0081b0
AD
2789 $attrs_to_remove = array();
2790
2791 foreach ($entry->attributes as $attr) {
254a3f56
AD
2792
2793 if (strpos($attr->nodeName, 'on') === 0) {
5f0081b0 2794 array_push($attrs_to_remove, $attr);
254a3f56
AD
2795 }
2796
2797 if (in_array($attr->nodeName, $disallowed_attributes)) {
5f0081b0 2798 array_push($attrs_to_remove, $attr);
254a3f56
AD
2799 }
2800 }
5f0081b0
AD
2801
2802 foreach ($attrs_to_remove as $attr) {
2803 $entry->removeAttributeNode($attr);
2804 }
254a3f56
AD
2805 }
2806 }
2807
2808 return $doc;
183ad07b 2809 }
b72c3ef8 2810
73495fd1 2811 function check_for_update($link) {
63855db1 2812 if (CHECK_FOR_NEW_VERSION && $_SESSION['access_level'] >= 10) {
f6064662
AD
2813 $version_url = "http://tt-rss.org/version.php?ver=" . VERSION .
2814 "&iid=" . sha1(SELF_URL_PATH);
b72c3ef8 2815
63855db1 2816 $version_data = @fetch_file_contents($version_url);
b72c3ef8 2817
63855db1
AD
2818 if ($version_data) {
2819 $version_data = json_decode($version_data, true);
8d505d78 2820 if ($version_data && $version_data['version']) {
f67d9754 2821
63855db1 2822 if (version_compare(VERSION, $version_data['version']) == -1) {
e91ad1e9 2823 return $version_data;
63855db1
AD
2824 }
2825 }
f67d9754 2826 }
b72c3ef8 2827 }
63855db1 2828 return false;
b72c3ef8 2829 }
472782e8 2830
9968d46f
AD
2831 function catchupArticlesById($link, $ids, $cmode, $owner_uid = false) {
2832
2833 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
ed41f171 2834 if (count($ids) == 0) return;
472782e8
AD
2835
2836 $tmp_ids = array();
2837
2838 foreach ($ids as $id) {
2839 array_push($tmp_ids, "ref_id = '$id'");
2840 }
2841
2842 $ids_qpart = join(" OR ", $tmp_ids);
2843
2844 if ($cmode == 0) {
8d505d78 2845 db_query($link, "UPDATE ttrss_user_entries SET
472782e8 2846 unread = false,last_read = NOW()
9968d46f 2847 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8 2848 } else if ($cmode == 1) {
8d505d78 2849 db_query($link, "UPDATE ttrss_user_entries SET
472782e8 2850 unread = true
9968d46f 2851 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8 2852 } else {
8d505d78 2853 db_query($link, "UPDATE ttrss_user_entries SET
472782e8 2854 unread = NOT unread,last_read = NOW()
9968d46f 2855 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8 2856 }
0737b95a
AD
2857
2858 /* update ccache */
2859
2860 $result = db_query($link, "SELECT DISTINCT feed_id FROM ttrss_user_entries
2861 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
2862
2863 while ($line = db_fetch_assoc($result)) {
2864 ccache_update($link, $line["feed_id"], $owner_uid);
2865 }
472782e8
AD
2866 }
2867
ca5133cb 2868 function get_article_tags($link, $id, $owner_uid = 0, $tag_cache = false) {
0b126ac2 2869
3972bf59 2870 $a_id = db_escape_string($link, $id);
0b126ac2 2871
bc976a8c
AD
2872 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
2873
8d505d78 2874 $query = "SELECT DISTINCT tag_name,
0c3d1c68 2875 owner_uid as owner FROM
0b126ac2 2876 ttrss_tags WHERE post_int_id = (SELECT int_id FROM ttrss_user_entries WHERE
bd3f2ade 2877 ref_id = '$a_id' AND owner_uid = '$owner_uid' LIMIT 1) ORDER BY tag_name";
0b126ac2 2878
bd3f2ade 2879 $obj_id = md5("TAGS:$owner_uid:$id");
8d505d78 2880 $tags = array();
bd3f2ade 2881
0e4a7d7a 2882 /* check cache first */
490c366d 2883
0e4a7d7a
AD
2884 if ($tag_cache === false) {
2885 $result = db_query($link, "SELECT tag_cache FROM ttrss_user_entries
2886 WHERE ref_id = '$id' AND owner_uid = $owner_uid");
490c366d 2887
0e4a7d7a
AD
2888 $tag_cache = db_fetch_result($result, 0, "tag_cache");
2889 }
bd3f2ade 2890
0e4a7d7a
AD
2891 if ($tag_cache) {
2892 $tags = explode(",", $tag_cache);
2893 } else {
490c366d 2894
0e4a7d7a 2895 /* do it the hard way */
490c366d 2896
0e4a7d7a 2897 $tmp_result = db_query($link, $query);
490c366d 2898
0e4a7d7a
AD
2899 while ($tmp_line = db_fetch_assoc($tmp_result)) {
2900 array_push($tags, $tmp_line["tag_name"]);
2901 }
490c366d 2902
0e4a7d7a 2903 /* update the cache */
490c366d 2904
3972bf59 2905 $tags_str = db_escape_string($link, join(",", $tags));
bd3f2ade 2906
0e4a7d7a
AD
2907 db_query($link, "UPDATE ttrss_user_entries
2908 SET tag_cache = '$tags_str' WHERE ref_id = '$id'
2909 AND owner_uid = $owner_uid");
0b126ac2
AD
2910 }
2911
2912 return $tags;
2913 }
2914
d62a3b63
AD
2915 function trim_array($array) {
2916 $tmp = $array;
3415b075 2917 array_walk($tmp, 'trim');
d62a3b63
AD
2918 return $tmp;
2919 }
2920
be832a1a 2921 function tag_is_valid($tag) {
ef063748
AD
2922 if ($tag == '') return false;
2923 if (preg_match("/^[0-9]*$/", $tag)) return false;
41f7498a 2924 if (mb_strlen($tag) > 250) return false;
ef063748 2925
31365729
AD
2926 if (function_exists('iconv')) {
2927 $tag = iconv("utf-8", "utf-8", $tag);
2928 }
2929
ef063748
AD
2930 if (!$tag) return false;
2931
2932 return true;
be832a1a
AD
2933 }
2934
d98e76d9 2935 function render_login_form($link) {
bb399c62
AD
2936 header('Cache-Control: public');
2937
d98e76d9 2938 require_once "login_form.php";
97acbaf1 2939 exit;
01a87dff
AD
2940 }
2941
42395d28 2942 function format_warning($msg, $id = "") {
883fee8d 2943 global $link;
8d505d78 2944 return "<div class=\"warning\" id=\"$id\">
fcef9eea 2945 <img src=\"images/sign_excl.svg\"><div class='inner'>$msg</div></div>";
0d32b41e
AD
2946 }
2947
08ac193a 2948 function format_notice($msg, $id = "") {
883fee8d 2949 global $link;
8d505d78 2950 return "<div class=\"notice\" id=\"$id\">
fcef9eea 2951 <img src=\"images/sign_info.svg\"><div class='inner'>$msg</div></div>";
0d32b41e
AD
2952 }
2953
08ac193a 2954 function format_error($msg, $id = "") {
883fee8d 2955 global $link;
8d505d78 2956 return "<div class=\"error\" id=\"$id\">
fcef9eea 2957 <img src=\"images/sign_excl.svg\"><div class='inner'>$msg</div></div>";
68d2f95e
AD
2958 }
2959
4dccf1ed
AD
2960 function print_notice($msg) {
2961 return print format_notice($msg);
2962 }
2963
2964 function print_warning($msg) {
2965 return print format_warning($msg);
2966 }
2967
68d2f95e
AD
2968 function print_error($msg) {
2969 return print format_error($msg);
2970 }
2971
2972
4dccf1ed
AD
2973 function T_sprintf() {
2974 $args = func_get_args();
2975 return vsprintf(__(array_shift($args)), $args);
2976 }
2977
51682b23
AD
2978 function format_inline_player($link, $url, $ctype) {
2979
2980 $entry = "";
2981
44cd77b6
AD
2982 $url = htmlspecialchars($url);
2983
8d505d78 2984 if (strpos($ctype, "audio/") === 0) {
c3edc667
AD
2985
2986 if ($_SESSION["hasAudio"] && (strpos($ctype, "ogg") !== false ||
8d505d78 2987 strpos($_SERVER['HTTP_USER_AGENT'], "Chrome") !== false ||
c3edc667
AD
2988 strpos($_SERVER['HTTP_USER_AGENT'], "Safari") !== false )) {
2989
2990 $id = 'AUDIO-' . uniqid();
2991
cb081096 2992 $entry .= "<audio id=\"$id\"\" controls style='display : none'>
ca3bca99 2993 <source type=\"$ctype\" src=\"$url\"></source>
8d505d78 2994 </audio>";
c3edc667 2995
8d505d78 2996 $entry .= "<span onclick=\"player(this)\"
c3edc667
AD
2997 title=\"".__("Click to play")."\" status=\"0\"
2998 class=\"player\" audio-id=\"$id\">".__("Play")."</span>";
2999
3000 } else {
8d505d78
AD
3001
3002 $entry .= "<object type=\"application/x-shockwave-flash\"
ad95edc2 3003 data=\"lib/button/musicplayer.swf?song_url=$url\"
8d505d78
AD
3004 width=\"17\" height=\"17\" style='float : left; margin-right : 5px;'>
3005 <param name=\"movie\"
ad95edc2 3006 value=\"lib/button/musicplayer.swf?song_url=$url\" />
8d505d78 3007 </object>";
c3edc667 3008 }
ca3bca99 3009
44cd77b6
AD
3010 if ($entry) $entry .= "&nbsp; <a target=\"_blank\"
3011 href=\"$url\">" . basename($url) . "</a>";
ca3bca99
AD
3012
3013 return $entry;
3014
51682b23
AD
3015 }
3016
ca3bca99
AD
3017 return "";
3018
3019/* $filename = substr($url, strrpos($url, "/")+1);
c3edc667
AD
3020
3021 $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
ca3bca99 3022 $filename . " (" . $ctype . ")" . "</a>"; */
c3edc667 3023
51682b23
AD
3024 }
3025
64436e10 3026 function format_article($link, $id, $mark_as_read = true, $zoom_mode = false, $owner_uid = false) {
64436e10 3027 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
3de0261a 3028
009646d2
AD
3029 $rv = array();
3030
3031 $rv['id'] = $id;
3032
10eb9da8 3033 /* we can figure out feed_id from article id anyway, why do we
e04c18a2 3034 * pass feed_id here? let's ignore the argument :( */
10eb9da8
AD
3035
3036 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
3037 WHERE ref_id = '$id'");
3038
e04c18a2 3039 $feed_id = (int) db_fetch_result($result, 0, "feed_id");
10eb9da8 3040
009646d2
AD
3041 $rv['feed_id'] = $feed_id;
3042
3043 //if (!$zoom_mode) { print "<article id='$id'><![CDATA["; };
3de0261a 3044
3de0261a 3045 if ($mark_as_read) {
8d505d78
AD
3046 $result = db_query($link, "UPDATE ttrss_user_entries
3047 SET unread = false,last_read = NOW()
64436e10 3048 WHERE ref_id = '$id' AND owner_uid = $owner_uid");
8a4c759e 3049
64436e10 3050 ccache_update($link, $feed_id, $owner_uid);
3de0261a
AD
3051 }
3052
7252abe3 3053 $result = db_query($link, "SELECT id,title,link,content,feed_id,comments,int_id,
fc2b26a6 3054 ".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
8cc3c778 3055 (SELECT site_url FROM ttrss_feeds WHERE id = feed_id) as site_url,
33de3d37 3056 (SELECT hide_images FROM ttrss_feeds WHERE id = feed_id) as hide_images,
60376e9d 3057 (SELECT always_display_enclosures FROM ttrss_feeds WHERE id = feed_id) as always_display_enclosures,
3de0261a 3058 num_comments,
9c506873 3059 tag_cache,
c7e51de1 3060 author,
ef83538d 3061 orig_feed_id,
87764a50
AD
3062 note,
3063 cached_content
3de0261a 3064 FROM ttrss_entries,ttrss_user_entries
64436e10 3065 WHERE id = '$id' AND ref_id = id AND owner_uid = $owner_uid");
3de0261a
AD
3066
3067 if ($result) {
3068
3de0261a
AD
3069 $line = db_fetch_assoc($result);
3070
84d952f1
AD
3071 $tag_cache = $line["tag_cache"];
3072
3073 $line["tags"] = get_article_tags($link, $id, $owner_uid, $line["tag_cache"]);
3074 unset($line["tag_cache"]);
3075
3076 $line["content"] = sanitize($link, $line["content"], false, $owner_uid, $line["site_url"]);
3077
3078 global $pluginhost;
3079
3080 foreach ($pluginhost->get_hooks($pluginhost::HOOK_RENDER_ARTICLE) as $p) {
3081 $line = $p->hook_render_article($line);
3082 }
8cc3c778 3083
3de0261a
AD
3084 $num_comments = $line["num_comments"];
3085 $entry_comments = "";
3086
3087 if ($num_comments > 0) {
3088 if ($line["comments"]) {
6e577ba1 3089 $comments_url = htmlspecialchars($line["comments"]);
3de0261a 3090 } else {
6e577ba1 3091 $comments_url = htmlspecialchars($line["link"]);
3de0261a 3092 }
7514749d 3093 $entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
3de0261a
AD
3094 } else {
3095 if ($line["comments"] && $line["link"] != $line["comments"]) {
6e577ba1 3096 $entry_comments = "<a target='_blank' href=\"".htmlspecialchars($line["comments"])."\">comments</a>";
8d505d78 3097 }
3de0261a
AD
3098 }
3099
eedfb635
AD
3100 if ($zoom_mode) {
3101 header("Content-Type: text/html");
009646d2 3102 $rv['content'] .= "<html><head>
5bb0cc8e 3103 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
eedfb635
AD
3104 <title>Tiny Tiny RSS - ".$line["title"]."</title>
3105 <link rel=\"stylesheet\" type=\"text/css\" href=\"tt-rss.css\">
b87a625c 3106 </head><body id=\"ttrssZoom\">";
eedfb635
AD
3107 }
3108
009646d2 3109 $rv['content'] .= "<div class=\"postReply\" id=\"POST-$id\">";
bc372fe3 3110
126e639a 3111 $rv['content'] .= "<div class=\"postHeader\" id=\"POSTHDR-$id\">";
3de0261a
AD
3112
3113 $entry_author = $line["author"];
3114
3115 if ($entry_author) {
60164936 3116 $entry_author = __(" - ") . $entry_author;
3de0261a
AD
3117 }
3118
8d505d78 3119 $parsed_updated = make_local_datetime($link, $line["updated"], true,
64436e10 3120 $owner_uid, true);
324944f3 3121
5321e775 3122 $rv['content'] .= "<div class=\"postDate\">$parsed_updated</div>";
3de0261a
AD
3123
3124 if ($line["link"]) {
c6c010d9 3125 $rv['content'] .= "<div class='postTitle'><a target='_blank'
bf1dc420 3126 title=\"".htmlspecialchars($line['title'])."\"
8d505d78 3127 href=\"" .
5c568973 3128 htmlspecialchars($line["link"]) . "\">" .
11bd95b4
AD
3129 $line["title"] . "</a>" .
3130 "<span class='author'>$entry_author</span></div>";
3de0261a 3131 } else {
c6c010d9 3132 $rv['content'] .= "<div class='postTitle'>" . $line["title"] . "$entry_author</div>";
3de0261a
AD
3133 }
3134
84d952f1
AD
3135 $tags_str = format_tags_string($line["tags"], $id);
3136 $tags_str_full = join(", ", $line["tags"]);
0780f4f4
AD
3137
3138 if (!$tags_str_full) $tags_str_full = __("no tags");
e7544143 3139
3de0261a
AD
3140 if (!$entry_comments) $entry_comments = "&nbsp;"; # placeholder
3141
f0755b7c 3142 $rv['content'] .= "<div class='postTags' style='float : right'>
2a3b6de0 3143 <img src='images/tag.png'
e9823609 3144 class='tagsPic' alt='Tags' title='Tags'>&nbsp;";
eedfb635
AD
3145
3146 if (!$zoom_mode) {
009646d2 3147 $rv['content'] .= "<span id=\"ATSTR-$id\">$tags_str</span>
8d505d78 3148 <a title=\"".__('Edit tags for this article')."\"
31a53903 3149 href=\"#\" onclick=\"editArticleTags($id, $feed_id)\">(+)</a>";
4710e3dc 3150
0780f4f4
AD
3151 $rv['content'] .= "<div dojoType=\"dijit.Tooltip\"
3152 id=\"ATSTRTIP-$id\" connectId=\"ATSTR-$id\"
3153 position=\"below\">$tags_str_full</div>";
3154
19c73507 3155 global $pluginhost;
19c73507
AD
3156 foreach ($pluginhost->get_hooks($pluginhost::HOOK_ARTICLE_BUTTON) as $p) {
3157 $rv['content'] .= $p->hook_article_button($line);
411fe209
AD
3158 }
3159
24ecbcae
AD
3160 } else {
3161 $tags_str = strip_tags($tags_str);
009646d2 3162 $rv['content'] .= "<span id=\"ATSTR-$id\">$tags_str</span>";
eedfb635 3163 }
009646d2 3164 $rv['content'] .= "</div>";
ccb2b8dd
AD
3165 $rv['content'] .= "<div clear='both'>";
3166
3167 global $pluginhost;
3168 foreach ($pluginhost->get_hooks($pluginhost::HOOK_ARTICLE_LEFT_BUTTON) as $p) {
3169 $rv['content'] .= $p->hook_article_left_button($line);
3170 }
3171
3172 $rv['content'] .= "$entry_comments</div>";
3de0261a 3173
ef83538d
AD
3174 if ($line["orig_feed_id"]) {
3175
3176 $tmp_result = db_query($link, "SELECT * FROM ttrss_archived_feeds
3177 WHERE id = ".$line["orig_feed_id"]);
3178
3179 if (db_num_rows($tmp_result) != 0) {
3180
009646d2
AD
3181 $rv['content'] .= "<div clear='both'>";
3182 $rv['content'] .= __("Originally from:");
ef83538d 3183
009646d2 3184 $rv['content'] .= "&nbsp;";
ef83538d
AD
3185
3186 $tmp_line = db_fetch_assoc($tmp_result);
3187
009646d2 3188 $rv['content'] .= "<a target='_blank'
ef83538d
AD
3189 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
3190 $tmp_line['title'] . "</a>";
3191
009646d2 3192 $rv['content'] .= "&nbsp;";
ef83538d 3193
009646d2 3194 $rv['content'] .= "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
c2167866 3195 $rv['content'] .= "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_set.svg'></a>";
ef83538d 3196
009646d2 3197 $rv['content'] .= "</div>";
ef83538d
AD
3198 }
3199 }
3200
009646d2 3201 $rv['content'] .= "</div>";
3de0261a 3202
009646d2 3203 $rv['content'] .= "<div id=\"POSTNOTE-$id\">";
c7e51de1 3204 if ($line['note']) {
16cbc19a 3205 $rv['content'] .= format_article_note($id, $line['note'], !$zoom_mode);
c7e51de1 3206 }
009646d2 3207 $rv['content'] .= "</div>";
c7e51de1 3208
009646d2 3209 $rv['content'] .= "<div class=\"postContent\">";
741b6090 3210
84d952f1 3211 $rv['content'] .= $line["content"];
009646d2 3212 $rv['content'] .= format_article_enclosures($link, $id,
60376e9d
TE
3213 sql_bool_to_bool($line["always_display_enclosures"]),
3214 $line["content"],
3215 sql_bool_to_bool($line["hide_images"]));
ce53e200 3216
009646d2 3217 $rv['content'] .= "</div>";
dad14b51 3218
009646d2 3219 $rv['content'] .= "</div>";
3de0261a
AD
3220
3221 }
3222
009646d2
AD
3223 if ($zoom_mode) {
3224 $rv['content'] .= "
b87a625c 3225 <div class='footer'>
2ae69126
AD
3226 <button onclick=\"return window.close()\">".
3227 __("Close this window")."</button></div>";
009646d2 3228 $rv['content'] .= "</body></html>";
eedfb635 3229 }
3de0261a 3230
009646d2
AD
3231 return $rv;
3232
3de0261a
AD
3233 }
3234
79178062 3235 function print_checkpoint($n, $s) {
fa9e88c3 3236 $ts = microtime(true);
79178062
AD
3237 echo sprintf("<!-- CP[$n] %.4f seconds -->", $ts - $s);
3238 return $ts;
3239 }
3de0261a 3240
79178062
AD
3241 function sanitize_tag($tag) {
3242 $tag = trim($tag);
52d7e7da 3243
79178062 3244 $tag = mb_strtolower($tag, 'utf-8');
bd202c3f 3245
79178062 3246 $tag = preg_replace('/[\'\"\+\>\<]/', "", $tag);
46921916 3247
79178062
AD
3248// $tag = str_replace('"', "", $tag);
3249// $tag = str_replace("+", " ", $tag);
3250 $tag = str_replace("technorati tag: ", "", $tag);
961f4c73 3251
79178062
AD
3252 return $tag;
3253 }
3de0261a 3254
79178062 3255 function get_self_url_prefix() {
51cc3873
AD
3256 if (strrpos(SELF_URL_PATH, "/") === strlen(SELF_URL_PATH)-1) {
3257 return substr(SELF_URL_PATH, 0, strlen(SELF_URL_PATH)-1);
3258 } else {
3259 return SELF_URL_PATH;
3260 }
79178062 3261 }
a9bcfb8f 3262
45004d43
AD
3263 /**
3264 * Compute the Mozilla Firefox feed adding URL from server HOST and REQUEST_URI.
3265 *
3266 * @return string The Mozilla Firefox feed adding URL.
3267 */
3268 function add_feed_url() {
ed102aa0
AD
3269 //$url_path = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
3270
3271 $url_path = get_self_url_prefix() .
97acbaf1 3272 "/public.php?op=subscribe&feed_url=%s";
755a43ee 3273 return $url_path;
45004d43
AD
3274 } // function add_feed_url
3275
e90053fe
AD
3276 function encrypt_password($pass, $salt = '', $mode2 = false) {
3277 if ($salt && $mode2) {
3278 return "MODE2:" . hash('sha256', $salt . $pass);
3279 } else if ($salt) {
3280 return "SHA1X:" . sha1("$salt:$pass");
1a9f4d3c
AD
3281 } else {
3282 return "SHA1:" . sha1($pass);
3283 }
45004d43
AD
3284 } // function encrypt_password
3285
6aff7845 3286 function load_filters($link, $feed_id, $owner_uid, $action_id = false) {
fee840fb
AD
3287 $filters = array();
3288
5574b09e 3289 $cat_id = (int)getFeedCategory($link, $feed_id);
fee840fb 3290
6aff7845 3291 $result = db_query($link, "SELECT * FROM ttrss_filters2 WHERE
8e8c8934 3292 owner_uid = $owner_uid AND enabled = true ORDER BY order_id, title");
8d505d78 3293
67bd0b1f
AD
3294 $check_cats = join(",", array_merge(
3295 getParentCategories($link, $cat_id, $owner_uid),
3296 array($cat_id)));
3297
0e4a7d7a 3298 while ($line = db_fetch_assoc($result)) {
6aff7845
AD
3299 $filter_id = $line["id"];
3300
3301 $result2 = db_query($link, "SELECT
a3a896a1 3302 r.reg_exp, r.inverse, r.feed_id, r.cat_id, r.cat_filter, t.name AS type_name
6aff7845
AD
3303 FROM ttrss_filters2_rules AS r,
3304 ttrss_filter_types AS t
3305 WHERE
67bd0b1f 3306 (cat_id IS NULL OR cat_id IN ($check_cats)) AND
6aff7845
AD
3307 (feed_id IS NULL OR feed_id = '$feed_id') AND
3308 filter_type = t.id AND filter_id = '$filter_id'");
3309
3310 $rules = array();
3311 $actions = array();
ba975b2e 3312
6aff7845
AD
3313 while ($rule_line = db_fetch_assoc($result2)) {
3314# print_r($rule_line);
8d505d78 3315
6aff7845
AD
3316 $rule = array();
3317 $rule["reg_exp"] = $rule_line["reg_exp"];
3318 $rule["type"] = $rule_line["type_name"];
a3a896a1 3319 $rule["inverse"] = sql_bool_to_bool($rule_line["inverse"]);
6aff7845
AD
3320
3321 array_push($rules, $rule);
3322 }
3323
3324 $result2 = db_query($link, "SELECT a.action_param,t.name AS type_name
3325 FROM ttrss_filters2_actions AS a,
3326 ttrss_filter_actions AS t
3327 WHERE
3328 action_id = t.id AND filter_id = '$filter_id'");
3329
3330 while ($action_line = db_fetch_assoc($result2)) {
3331# print_r($action_line);
3332
3333 $action = array();
3334 $action["type"] = $action_line["type_name"];
3335 $action["param"] = $action_line["action_param"];
3336
3337 array_push($actions, $action);
0e4a7d7a 3338 }
b8ffa322 3339
b8ffa322 3340
6aff7845
AD
3341 $filter = array();
3342 $filter["match_any_rule"] = sql_bool_to_bool($line["match_any_rule"]);
a3a896a1 3343 $filter["inverse"] = sql_bool_to_bool($line["inverse"]);
6aff7845
AD
3344 $filter["rules"] = $rules;
3345 $filter["actions"] = $actions;
3346
3347 if (count($rules) > 0 && count($actions) > 0) {
3348 array_push($filters, $filter);
3349 }
3350 }
3351
0e4a7d7a 3352 return $filters;
fee840fb 3353 }
1e36af0c
AD
3354
3355 function get_score_pic($score) {
8d505d78
AD
3356 if ($score > 100) {
3357 return "score_high.png";
3358 } else if ($score > 0) {
883fee8d 3359 return "score_half_high.png";
1cce3aca 3360 } else if ($score < -100) {
883fee8d 3361 return "score_low.png";
1cce3aca 3362 } else if ($score < 0) {
883fee8d 3363 return "score_half_low.png";
8d505d78 3364 } else {
883fee8d 3365 return "score_neutral.png";
1e36af0c
AD
3366 }
3367 }
ec92c9d1 3368
7defa089
AD
3369 function feed_has_icon($id) {
3370 return is_file(ICONS_DIR . "/$id.ico") && filesize(ICONS_DIR . "/$id.ico") > 0;
3371 }
f29ba148
AD
3372
3373 function init_connection($link) {
8c0496f7
AD
3374 if ($link) {
3375
3376 if (DB_TYPE == "pgsql") {
3377 pg_query($link, "set client_encoding = 'UTF-8'");
3378 pg_set_client_encoding("UNICODE");
3379 pg_query($link, "set datestyle = 'ISO, european'");
3380 pg_query($link, "set TIME ZONE 0");
3381 } else {
3382 db_query($link, "SET time_zone = '+0:0'");
3383
3384 if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
3385 db_query($link, "SET NAMES " . MYSQL_CHARSET);
3386 }
3387 }
19c73507
AD
3388
3389 global $pluginhost;
3390
8c0496f7 3391 $pluginhost = new PluginHost($link);
d2a421e3 3392 $pluginhost->load(PLUGINS, $pluginhost::KIND_ALL);
19c73507 3393
5f0a3741
AD
3394 return true;
3395 } else {
3396 print "Unable to connect to database:" . db_last_error();
3397 return false;
f29ba148
AD
3398 }
3399 }
5e96ca9d 3400
307d187c
AD
3401 function format_tags_string($tags, $id) {
3402
3403 $tags_str = "";
3404 $tags_nolinks_str = "";
3405
3406 $num_tags = 0;
3407
d9084cf2 3408 $tag_limit = 6;
307d187c
AD
3409
3410 $formatted_tags = array();
3411
3412 foreach ($tags as $tag) {
3413 $num_tags++;
3414 $tag_escaped = str_replace("'", "\\'", $tag);
3415
275a0af2
AD
3416 if (mb_strlen($tag) > 30) {
3417 $tag = truncate_string($tag, 30);
3418 }
3419
307d187c
AD
3420 $tag_str = "<a href=\"javascript:viewfeed('$tag_escaped')\">$tag</a>";
3421
3422 array_push($formatted_tags, $tag_str);
275a0af2
AD
3423
3424 $tmp_tags_str = implode(", ", $formatted_tags);
8d505d78 3425
275a0af2 3426 if ($num_tags == $tag_limit || mb_strlen($tmp_tags_str) > 150) {
307d187c
AD
3427 break;
3428 }
3429 }
3430
3431 $tags_str = implode(", ", $formatted_tags);
3432
3433 if ($num_tags < count($tags)) {
3434 $tags_str .= ", &hellip;";
3435 }
3436
3437 if ($num_tags == 0) {
3438 $tags_str = __("no tags");
3439 }
3440
3441 return $tags_str;
3442
3443 }
2eb9c95c
AD
3444
3445 function format_article_labels($labels, $id) {
3446
3447 $labels_str = "";
3448
3449 foreach ($labels as $l) {
8d505d78 3450 $labels_str .= sprintf("<span class='hlLabelRef'
2eb9c95c
AD
3451 style='color : %s; background-color : %s'>%s</span>",
3452 $l[2], $l[3], $l[1]);
3453 }
3454
3455 return $labels_str;
3456
3457 }
c7e51de1 3458
16cbc19a 3459 function format_article_note($id, $note, $allow_edit = true) {
c7e51de1 3460
fcfa9ef1
AD
3461 $str = "<div class='articleNote' onclick=\"editArticleNote($id)\">
3462 <div class='noteEdit' onclick=\"editArticleNote($id)\">".
16cbc19a 3463 ($allow_edit ? __('(edit note)') : "")."</div>$note</div>";
c7e51de1
AD
3464
3465 return $str;
3466 }
7f969260 3467
7e329f13 3468
d2a317e3
AD
3469 function get_feed_category($link, $feed_cat, $parent_cat_id = false) {
3470 if ($parent_cat_id) {
3471 $parent_qpart = "parent_cat = '$parent_cat_id'";
3472 $parent_insert = "'$parent_cat_id'";
3473 } else {
3474 $parent_qpart = "parent_cat IS NULL";
3475 $parent_insert = "NULL";
3476 }
3477
3478 $result = db_query($link,
3479 "SELECT id FROM ttrss_feed_categories
3480 WHERE $parent_qpart AND title = '$feed_cat' AND owner_uid = ".$_SESSION["uid"]);
3481
3482 if (db_num_rows($result) == 0) {
3483 return false;
3484 } else {
3485 return db_fetch_result($result, 0, "id");
3486 }
3487 }
3488
3489 function add_feed_category($link, $feed_cat, $parent_cat_id = false) {
c00907f2
AD
3490
3491 if (!$feed_cat) return false;
3492
5c7c7da9
AD
3493 db_query($link, "BEGIN");
3494
d2a317e3
AD
3495 if ($parent_cat_id) {
3496 $parent_qpart = "parent_cat = '$parent_cat_id'";
3497 $parent_insert = "'$parent_cat_id'";
3498 } else {
3499 $parent_qpart = "parent_cat IS NULL";
3500 $parent_insert = "NULL";
3501 }
3502
129562e0
AD
3503 $feed_cat = mb_substr($feed_cat, 0, 250);
3504
5c7c7da9
AD
3505 $result = db_query($link,
3506 "SELECT id FROM ttrss_feed_categories
d2a317e3 3507 WHERE $parent_qpart AND title = '$feed_cat' AND owner_uid = ".$_SESSION["uid"]);
5c7c7da9
AD
3508
3509 if (db_num_rows($result) == 0) {
8d505d78 3510
5c7c7da9 3511 $result = db_query($link,
d2a317e3
AD
3512 "INSERT INTO ttrss_feed_categories (owner_uid,title,parent_cat)
3513 VALUES ('".$_SESSION["uid"]."', '$feed_cat', $parent_insert)");
5c7c7da9
AD
3514
3515 db_query($link, "COMMIT");
3516
3517 return true;
3518 }
3519
3520 return false;
8d505d78 3521 }
5c7c7da9 3522
ab197ae1 3523 function getArticleFeed($link, $id) {
8d505d78 3524 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
a545dc31 3525 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
ab197ae1
AD
3526
3527 if (db_num_rows($result) != 0) {
3528 return db_fetch_result($result, 0, "feed_id");
3529 } else {
3530 return 0;
3531 }
3532 }
a5819bb3 3533
f2c6c008
CW
3534 /**
3535 * Fixes incomplete URLs by prepending "http://".
f0266f51
CW
3536 * Also replaces feed:// with http://, and
3537 * prepends a trailing slash if the url is a domain name only.
f2c6c008
CW
3538 *
3539 * @param string $url Possibly incomplete URL
3540 *
3541 * @return string Fixed URL.
3542 */
3543 function fix_url($url) {
3544 if (strpos($url, '://') === false) {
3545 $url = 'http://' . $url;
f0266f51
CW
3546 } else if (substr($url, 0, 5) == 'feed:') {
3547 $url = 'http:' . substr($url, 5);
3548 }
3549
3550 //prepend slash if the URL has no slash in it
3551 // "http://www.example" -> "http://www.example/"
44453773 3552 if (strpos($url, '/', strpos($url, ':') + 3) === false) {
f0266f51 3553 $url .= '/';
f2c6c008 3554 }
ec39a02c
AD
3555
3556 if ($url != "http:///")
3557 return $url;
3558 else
3559 return '';
f2c6c008
CW
3560 }
3561
a5819bb3
AD
3562 function validate_feed_url($url) {
3563 $parts = parse_url($url);
3564
3565 return ($parts['scheme'] == 'http' || $parts['scheme'] == 'feed' || $parts['scheme'] == 'https');
3566
3567 }
d9084cf2 3568
be35798b
AD
3569 function get_article_enclosures($link, $id) {
3570
8d505d78 3571 $query = "SELECT * FROM ttrss_enclosures
be35798b
AD
3572 WHERE post_id = '$id' AND content_url != ''";
3573
be35798b
AD
3574 $rv = array();
3575
0e4a7d7a 3576 $result = db_query($link, $query);
be35798b 3577
0e4a7d7a
AD
3578 if (db_num_rows($result) > 0) {
3579 while ($line = db_fetch_assoc($result)) {
3580 array_push($rv, $line);
be35798b
AD
3581 }
3582 }
3583
3584 return $rv;
3585 }
3586
31a53903
AD
3587 function save_email_address($link, $email) {
3588 // FIXME: implement persistent storage of emails
3589
8d505d78 3590 if (!$_SESSION['stored_emails'])
31a53903
AD
3591 $_SESSION['stored_emails'] = array();
3592
3593 if (!in_array($email, $_SESSION['stored_emails']))
3594 array_push($_SESSION['stored_emails'], $email);
3595 }
8801fb01 3596
8801fb01
AD
3597
3598 function get_feed_access_key($link, $feed_id, $is_cat, $owner_uid = false) {
3599
3600 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
3601
3602 $sql_is_cat = bool_to_sql_bool($is_cat);
3603
8d505d78
AD
3604 $result = db_query($link, "SELECT access_key FROM ttrss_access_keys
3605 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
8801fb01
AD
3606 AND owner_uid = " . $owner_uid);
3607
3608 if (db_num_rows($result) == 1) {
3609 return db_fetch_result($result, 0, "access_key");
3610 } else {
3972bf59 3611 $key = db_escape_string($link, sha1(uniqid(rand(), true)));
8801fb01 3612
8d505d78 3613 $result = db_query($link, "INSERT INTO ttrss_access_keys
8801fb01
AD
3614 (access_key, feed_id, is_cat, owner_uid)
3615 VALUES ('$key', '$feed_id', $sql_is_cat, '$owner_uid')");
3616
3617 return $key;
3618 }
3619 return false;
3620 }
f0266f51 3621
759e5132 3622 function get_feeds_from_html($url, $content)
f0266f51
CW
3623 {
3624 $url = fix_url($url);
3625 $baseUrl = substr($url, 0, strrpos($url, '/') + 1);
3626
fb074239
AD
3627 libxml_use_internal_errors(true);
3628
f0266f51 3629 $doc = new DOMDocument();
8d505d78 3630 $doc->loadHTML($content);
f0266f51
CW
3631 $xpath = new DOMXPath($doc);
3632 $entries = $xpath->query('/html/head/link[@rel="alternate"]');
3633 $feedUrls = array();
3634 foreach ($entries as $entry) {
3635 if ($entry->hasAttribute('href')) {
3636 $title = $entry->getAttribute('title');
3637 if ($title == '') {
3638 $title = $entry->getAttribute('type');
3639 }
923818fc
CW
3640 $feedUrl = rewrite_relative_url(
3641 $baseUrl, $entry->getAttribute('href')
3642 );
f0266f51
CW
3643 $feedUrls[$feedUrl] = $title;
3644 }
3645 }
3646 return $feedUrls;
3647 }
3648
759e5132 3649 function is_html($content) {
32b86711 3650 return preg_match("/<html|DOCTYPE html/i", substr($content, 0, 20)) !== 0;
759e5132 3651 }
f33479da 3652
759e5132
AD
3653 function url_is_html($url, $login = false, $pass = false) {
3654 return is_html(fetch_file_contents($url, false, $login, $pass));
f33479da 3655 }
24e2bb3a 3656
d90868d7 3657 function print_label_select($link, $name, $value, $attributes = "") {
24e2bb3a
AD
3658
3659 $result = db_query($link, "SELECT caption FROM ttrss_labels2
3660 WHERE owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
3661
8d505d78 3662 print "<select default=\"$value\" name=\"" . htmlspecialchars($name) .
d90868d7 3663 "\" $attributes onchange=\"labelSelectOnChange(this)\" >";
24e2bb3a
AD
3664
3665 while ($line = db_fetch_assoc($result)) {
3666
3667 $issel = ($line["caption"] == $value) ? "selected=\"1\"" : "";
3668
d90868d7
AD
3669 print "<option value=\"".htmlspecialchars($line["caption"])."\"
3670 $issel>" . htmlspecialchars($line["caption"]) . "</option>";
24e2bb3a
AD
3671
3672 }
3673
d90868d7 3674# print "<option value=\"ADD_LABEL\">" .__("Add label...") . "</option>";
24e2bb3a
AD
3675
3676 print "</select>";
3677
3678
3679 }
3680
009646d2 3681 function format_article_enclosures($link, $id, $always_display_enclosures,
33de3d37 3682 $article_content, $hide_images = false) {
dad14b51
AD
3683
3684 $result = get_article_enclosures($link, $id);
009646d2 3685 $rv = '';
8d505d78 3686
dad14b51 3687 if (count($result) > 0) {
8d505d78 3688
dad14b51
AD
3689 $entries_html = array();
3690 $entries = array();
ca3bca99 3691 $entries_inline = array();
8d505d78 3692
dad14b51 3693 foreach ($result as $line) {
8d505d78 3694
dad14b51
AD
3695 $url = $line["content_url"];
3696 $ctype = $line["content_type"];
8d505d78 3697
dad14b51 3698 if (!$ctype) $ctype = __("unknown type");
8d505d78 3699
749b56bd 3700 $filename = substr($url, strrpos($url, "/")+1);
8d505d78 3701
ca3bca99
AD
3702 $player = format_inline_player($link, $url, $ctype);
3703
3704 if ($player) array_push($entries_inline, $player);
8d505d78 3705
c3edc667
AD
3706# $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
3707# $filename . " (" . $ctype . ")" . "</a>";
8d505d78 3708
749b56bd
AD
3709 $entry = "<div onclick=\"window.open('".htmlspecialchars($url)."')\"
3710 dojoType=\"dijit.MenuItem\">$filename ($ctype)</div>";
3711
dad14b51 3712 array_push($entries_html, $entry);
8d505d78 3713
dad14b51 3714 $entry = array();
8d505d78 3715
dad14b51
AD
3716 $entry["type"] = $ctype;
3717 $entry["filename"] = $filename;
3718 $entry["url"] = $url;
8d505d78 3719
dad14b51
AD
3720 array_push($entries, $entry);
3721 }
8d505d78 3722
ba79634c 3723 if ($_SESSION['uid'] && !get_pref($link, "STRIP_IMAGES") && !$_SESSION["bw_limit"]) {
dad14b51
AD
3724 if ($always_display_enclosures ||
3725 !preg_match("/<img/i", $article_content)) {
8d505d78 3726
dad14b51 3727 foreach ($entries as $entry) {
8d505d78 3728
dad14b51
AD
3729 if (preg_match("/image/", $entry["type"]) ||
3730 preg_match("/\.(jpg|png|gif|bmp)/i", $entry["filename"])) {
8d505d78 3731
33de3d37
AD
3732 if (!$hide_images) {
3733 $rv .= "<p><img
3734 alt=\"".htmlspecialchars($entry["filename"])."\"
3735 src=\"" .htmlspecialchars($entry["url"]) . "\"/></p>";
3736 } else {
3737 $rv .= "<p><a target=\"_blank\"
3738 href=\"".htmlspecialchars($entry["url"])."\"
3739 >" .htmlspecialchars($entry["url"]) . "</a></p>";
749b56bd 3740
33de3d37 3741 }
dad14b51
AD
3742 }
3743 }
3744 }
3745 }
8d505d78 3746
ca3bca99
AD
3747 if (count($entries_inline) > 0) {
3748 $rv .= "<hr clear='both'/>";
3749 foreach ($entries_inline as $entry) { $rv .= $entry; };
3750 $rv .= "<hr clear='both'/>";
3751 }
3752
bf6df236 3753 $rv .= "<select class=\"attachments\" onchange=\"openSelectedAttachment(this)\">".
f9432f26 3754 "<option value=''>" . __('Attachments')."</option>";
8d505d78 3755
f9432f26
AD
3756 foreach ($entries as $entry) {
3757 $rv .= "<option value=\"".htmlspecialchars($entry["url"])."\">" . htmlspecialchars($entry["filename"]) . "</option>";
8d505d78 3758
f9432f26
AD
3759 };
3760
3761 $rv .= "</select>";
dad14b51 3762 }
009646d2
AD
3763
3764 return $rv;
dad14b51
AD
3765 }
3766
f8fb4498
AD
3767 function getLastArticleId($link) {
3768 $result = db_query($link, "SELECT MAX(ref_id) AS id FROM ttrss_user_entries
3769 WHERE owner_uid = " . $_SESSION["uid"]);
3770
3771 if (db_num_rows($result) == 1) {
3772 return db_fetch_result($result, 0, "id");
3773 } else {
3774 return -1;
3775 }
3776 }
8cc3c778
AD
3777
3778 function build_url($parts) {
3779 return $parts['scheme'] . "://" . $parts['host'] . $parts['path'];
3780 }
3781
f679105c
CW
3782 /**
3783 * Converts a (possibly) relative URL to a absolute one.
3784 *
3785 * @param string $url Base URL (i.e. from where the document is)
3786 * @param string $rel_url Possibly relative URL in the document
3787 *
3788 * @return string Absolute URL
3789 */
8cc3c778 3790 function rewrite_relative_url($url, $rel_url) {
b4520bb8
AD
3791 if (strpos($rel_url, "magnet:") === 0) {
3792 return $rel_url;
3793 } else if (strpos($rel_url, "://") !== false) {
8cc3c778 3794 return $rel_url;
f9052d35 3795 } else if (strpos($rel_url, "//") === 0) {
3796 # protocol-relative URL (rare but they exist)
3797 return $rel_url;
8d505d78 3798 } else if (strpos($rel_url, "/") === 0)
8cc3c778
AD
3799 {
3800 $parts = parse_url($url);
3801 $parts['path'] = $rel_url;
3802
3803 return build_url($parts);
3804
3805 } else {
3806 $parts = parse_url($url);
f679105c
CW
3807 if (!isset($parts['path'])) {
3808 $parts['path'] = '/';
3809 }
3810 $dir = $parts['path'];
3811 if (substr($dir, -1) !== '/') {
3812 $dir = dirname($parts['path']);
3813 $dir !== '/' && $dir .= '/';
3814 }
3815 $parts['path'] = $dir . $rel_url;
8cc3c778
AD
3816
3817 return build_url($parts);
3818 }
3819 }
3820
e4f7f8df 3821 function sphinx_search($query, $offset = 0, $limit = 30) {
31303c6b
AD
3822 require_once 'lib/sphinxapi.php';
3823
e4f7f8df
AD
3824 $sphinxClient = new SphinxClient();
3825
3826 $sphinxClient->SetServer('localhost', 9312);
3827 $sphinxClient->SetConnectTimeout(1);
3828
8d505d78 3829 $sphinxClient->SetFieldWeights(array('title' => 70, 'content' => 30,
e4f7f8df
AD
3830 'feed_title' => 20));
3831
3832 $sphinxClient->SetMatchMode(SPH_MATCH_EXTENDED2);
3833 $sphinxClient->SetRankingMode(SPH_RANK_PROXIMITY_BM25);
3834 $sphinxClient->SetLimits($offset, $limit, 1000);
3835 $sphinxClient->SetArrayResult(false);
3836 $sphinxClient->SetFilter('owner_uid', array($_SESSION['uid']));
8d505d78 3837
e4f7f8df
AD
3838 $result = $sphinxClient->Query($query, SPHINX_INDEX);
3839
3840 $ids = array();
3841
3842 if (is_array($result['matches'])) {
3843 foreach (array_keys($result['matches']) as $int_id) {
3844 $ref_id = $result['matches'][$int_id]['attrs']['ref_id'];
3845 array_push($ids, $ref_id);
3846 }
3847 }
3848
3849 return $ids;
3850 }
3851
868650e4
AD
3852 function cleanup_tags($link, $days = 14, $limit = 1000) {
3853
3854 if (DB_TYPE == "pgsql") {
3855 $interval_query = "date_updated < NOW() - INTERVAL '$days days'";
3856 } else if (DB_TYPE == "mysql") {
3857 $interval_query = "date_updated < DATE_SUB(NOW(), INTERVAL $days DAY)";
3858 }
3859
b5ec13fa 3860 $tags_deleted = 0;
868650e4 3861
b5ec13fa
AD
3862 while ($limit > 0) {
3863 $limit_part = 500;
3864
8d505d78
AD
3865 $query = "SELECT ttrss_tags.id AS id
3866 FROM ttrss_tags, ttrss_user_entries, ttrss_entries
b5ec13fa
AD
3867 WHERE post_int_id = int_id AND $interval_query AND
3868 ref_id = ttrss_entries.id AND tag_cache != '' LIMIT $limit_part";
8d505d78 3869
b5ec13fa
AD
3870 $result = db_query($link, $query);
3871
3872 $ids = array();
3873
3874 while ($line = db_fetch_assoc($result)) {
3875 array_push($ids, $line['id']);
3876 }
3877
3878 if (count($ids) > 0) {
3879 $ids = join(",", $ids);
b5ec13fa
AD
3880
3881 $tmp_result = db_query($link, "DELETE FROM ttrss_tags WHERE id IN ($ids)");
3882 $tags_deleted += db_affected_rows($link, $tmp_result);
3883 } else {
3884 break;
3885 }
3886
3887 $limit -= $limit_part;
3888 }
3889
b5ec13fa 3890 return $tags_deleted;
868650e4
AD
3891 }
3892
88e4e597
AD
3893 function print_user_stylesheet($link) {
3894 $value = get_pref($link, 'USER_STYLESHEET');
3895
3896 if ($value) {
3897 print "<style type=\"text/css\">";
5823f9fb 3898 print str_replace("<br/>", "\n", $value);
88e4e597
AD
3899 print "</style>";
3900 }
3901
3902 }
3903
73c32678
AD
3904 function rewrite_urls($html) {
3905 libxml_use_internal_errors(true);
3906
3907 $charset_hack = '<head>
3908 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
3909 </head>';
3910
3911 $doc = new DOMDocument();
3912 $doc->loadHTML($charset_hack . $html);
3913 $xpath = new DOMXPath($doc);
3914
3915 $entries = $xpath->query('//*/text()');
3916
3917 foreach ($entries as $entry) {
3918 if (strstr($entry->wholeText, "://") !== false) {
3919 $text = preg_replace("/((?<!=.)((http|https|ftp)+):\/\/[^ ,!]+)/i",
3920 "<a target=\"_blank\" href=\"\\1\">\\1</a>", $entry->wholeText);
3921
3922 if ($text != $entry->wholeText) {
3923 $cdoc = new DOMDocument();
3924 $cdoc->loadHTML($charset_hack . $text);
3925
3926
3927 foreach ($cdoc->childNodes as $cnode) {
3928 $cnode = $doc->importNode($cnode, true);
3929
3930 if ($cnode) {
3931 $entry->parentNode->insertBefore($cnode);
3932 }
3933 }
3934
3935 $entry->parentNode->removeChild($entry);
3936
3937 }
3938 }
3939 }
3940
3941 $node = $doc->getElementsByTagName('body')->item(0);
3942
376897af
AD
3943 // http://tt-rss.org/forum/viewtopic.php?f=1&t=970
3944 if ($node)
cc38c8e5 3945 return $doc->saveXML($node);
376897af
AD
3946 else
3947 return $html;
533c0ea6
AD
3948 }
3949
2680295b 3950 function filter_to_sql($link, $filter, $owner_uid) {
4e02f582 3951 $query = array();
36184020 3952
4e02f582
AD
3953 if (DB_TYPE == "pgsql")
3954 $reg_qpart = "~";
3955 else
3956 $reg_qpart = "REGEXP";
36184020 3957
4e02f582
AD
3958 foreach ($filter["rules"] AS $rule) {
3959 $regexp_valid = preg_match('/' . $rule['reg_exp'] . '/',
3960 $rule['reg_exp']) !== FALSE;
36184020 3961
4e02f582 3962 if ($regexp_valid) {
36184020 3963
3972bf59 3964 $rule['reg_exp'] = db_escape_string($link, $rule['reg_exp']);
36184020 3965
a3a896a1 3966 switch ($rule["type"]) {
4e02f582
AD
3967 case "title":
3968 $qpart = "LOWER(ttrss_entries.title) $reg_qpart LOWER('".
3969 $rule['reg_exp'] . "')";
3970 break;
3971 case "content":
3972 $qpart = "LOWER(ttrss_entries.content) $reg_qpart LOWER('".
3973 $rule['reg_exp'] . "')";
3974 break;
3975 case "both":
3976 $qpart = "LOWER(ttrss_entries.title) $reg_qpart LOWER('".
3977 $rule['reg_exp'] . "') OR LOWER(" .
3978 "ttrss_entries.content) $reg_qpart LOWER('" . $rule['reg_exp'] . "')";
3979 break;
3980 case "tag":
3981 $qpart = "LOWER(ttrss_user_entries.tag_cache) $reg_qpart LOWER('".
3982 $rule['reg_exp'] . "')";
3983 break;
3984 case "link":
3985 $qpart = "LOWER(ttrss_entries.link) $reg_qpart LOWER('".
3986 $rule['reg_exp'] . "')";
3987 break;
3988 case "author":
3989 $qpart = "LOWER(ttrss_entries.author) $reg_qpart LOWER('".
3990 $rule['reg_exp'] . "')";
3991 break;
3992 }
36184020 3993
ec1f8a3d
AD
3994 if (isset($rule['inverse'])) $qpart = "NOT ($qpart)";
3995
6b218731 3996 if (isset($rule["feed_id"]) && $rule["feed_id"] > 0) {
3972bf59 3997 $qpart .= " AND feed_id = " . db_escape_string($link, $rule["feed_id"]);
4e02f582 3998 }
6b8b3af8 3999
4e02f582 4000 if (isset($rule["cat_id"])) {
2680295b
AD
4001
4002 if ($rule["cat_id"] > 0) {
4003 $children = getChildCategories($link, $rule["cat_id"], $owner_uid);
4004 array_push($children, $rule["cat_id"]);
4005
4006 $children = join(",", $children);
4007
4008 $cat_qpart = "cat_id IN ($children)";
4009 } else {
4010 $cat_qpart = "cat_id IS NULL";
4011 }
4012
4013 $qpart .= " AND $cat_qpart";
56fbb82c 4014 }
4e02f582
AD
4015
4016 array_push($query, "($qpart)");
4017
56fbb82c 4018 }
4e02f582 4019 }
56fbb82c 4020
4e02f582 4021 if (count($query) > 0) {
a3a896a1 4022 $fullquery = "(" . join($filter["match_any_rule"] ? "OR" : "AND", $query) . ")";
56fbb82c 4023 } else {
a3a896a1 4024 $fullquery = "(false)";
56fbb82c 4025 }
a3a896a1
AD
4026
4027 if ($filter['inverse']) $fullquery = "(NOT $fullquery)";
4028
4029 return $fullquery;
36184020 4030 }
ae5f7bb1 4031
3382bce1
AD
4032 if (!function_exists('gzdecode')) {
4033 function gzdecode($string) { // no support for 2nd argument
4034 return file_get_contents('compress.zlib://data:who/cares;base64,'.
4035 base64_encode($string));
4036 }
4037 }
4038
8db5d8ea
AD
4039 function get_random_bytes($length) {
4040 if (function_exists('openssl_random_pseudo_bytes')) {
4041 return openssl_random_pseudo_bytes($length);
4042 } else {
4043 $output = "";
4044
4045 for ($i = 0; $i < $length; $i++)
4046 $output .= chr(mt_rand(0, 255));
4047
4048 return $output;
4049 }
4050 }
871f0a7a
AD
4051
4052 function read_stdin() {
4053 $fp = fopen("php://stdin", "r");
4054
4055 if ($fp) {
4056 $line = trim(fgets($fp));
4057 fclose($fp);
4058 return $line;
4059 }
4060
4061 return null;
4062 }
e3449aa1
AD
4063
4064 function tmpdirname($path, $prefix) {
4065 // Use PHP's tmpfile function to create a temporary
4066 // directory name. Delete the file and keep the name.
4067 $tempname = tempnam($path,$prefix);
4068 if (!$tempname)
4069 return false;
4070
4071 if (!unlink($tempname))
4072 return false;
4073
4074 return $tempname;
4075 }
4076
6aff7845
AD
4077 function getFeedCategory($link, $feed) {
4078 $result = db_query($link, "SELECT cat_id FROM ttrss_feeds
4079 WHERE id = '$feed'");
4080
4081 if (db_num_rows($result) > 0) {
4082 return db_fetch_result($result, 0, "cat_id");
4083 } else {
4084 return false;
4085 }
4086
4087 }
4088
8dcb2b47
AD
4089 function implements_interface($class, $interface) {
4090 return in_array($interface, class_implements($class));
4091 }
e88c1943 4092
e2b0054b
AD
4093 function geturl($url){
4094
4095 (function_exists('curl_init')) ? '' : die('cURL Must be installed for geturl function to work. Ask your host to enable it or uncomment extension=php_curl.dll in php.ini');
4096
4097 $curl = curl_init();
4098 $header[0] = "Accept: text/xml,application/xml,application/xhtml+xml,";
4099 $header[0] .= "text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5";
4100 $header[] = "Cache-Control: max-age=0";
4101 $header[] = "Connection: keep-alive";
4102 $header[] = "Keep-Alive: 300";
4103 $header[] = "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7";
4104 $header[] = "Accept-Language: en-us,en;q=0.5";
4105 $header[] = "Pragma: ";
4106
4107 curl_setopt($curl, CURLOPT_URL, $url);
4108 curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 5.1; rv:5.0) Gecko/20100101 Firefox/5.0 Firefox/5.0');
4109 curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
4110 curl_setopt($curl, CURLOPT_HEADER, true);
4111 curl_setopt($curl, CURLOPT_REFERER, $url);
4112 curl_setopt($curl, CURLOPT_ENCODING, 'gzip,deflate');
4113 curl_setopt($curl, CURLOPT_AUTOREFERER, true);
4114 curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
4115 //curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); //CURLOPT_FOLLOWLOCATION Disabled...
4116 curl_setopt($curl, CURLOPT_TIMEOUT, 60);
4117
4118 $html = curl_exec($curl);
4119
4120 $status = curl_getinfo($curl);
4121 curl_close($curl);
4122
4123 if($status['http_code']!=200){
4124 if($status['http_code'] == 301 || $status['http_code'] == 302) {
4125 list($header) = explode("\r\n\r\n", $html, 2);
4126 $matches = array();
4127 preg_match("/(Location:|URI:)[^(\n)]*/", $header, $matches);
4128 $url = trim(str_replace($matches[1],"",$matches[0]));
4129 $url_parsed = parse_url($url);
4130 return (isset($url_parsed))? geturl($url, $referer):'';
4131 }
4132 $oline='';
4133 foreach($status as $key=>$eline){$oline.='['.$key.']'.$eline.' ';}
4134 $line =$oline." \r\n ".$url."\r\n-----------------\r\n";
911845b5
AD
4135# $handle = @fopen('./curl.error.log', 'a');
4136# fwrite($handle, $line);
e2b0054b
AD
4137 return FALSE;
4138 }
4139 return $url;
4140 }
8dcb2b47 4141
c670a80d
AD
4142 function get_minified_js($files) {
4143 require_once 'lib/jshrink/Minifier.php';
4144
4145 $rv = '';
4146
4147 foreach ($files as $js) {
4148 if (!isset($_GET['debug'])) {
4149 $cached_file = CACHE_DIR . "/js/$js.js";
4150
4151 if (file_exists($cached_file) &&
4152 is_readable($cached_file) &&
4153 filemtime($cached_file) >= filemtime("js/$js.js")) {
4154
4155 $rv .= file_get_contents($cached_file);
4156
4157 } else {
4158 $minified = JShrink\Minifier::minify(file_get_contents("js/$js.js"));
4159 file_put_contents($cached_file, $minified);
4160 $rv .= $minified;
4161 }
4162 } else {
4163 $rv .= file_get_contents("js/$js.js");
4164 }
4165 }
4166
4167 return $rv;
4168 }
4169
b5d4716a
AD
4170 function stylesheet_tag($filename) {
4171 $timestamp = filemtime($filename);
4172
4173 echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"$filename?$timestamp\"/>\n";
4174 }
4175
4176 function javascript_tag($filename) {
4177 $query = "";
4178
4179 if (!(strpos($filename, "?") === FALSE)) {
4180 $query = substr($filename, strpos($filename, "?")+1);
4181 $filename = substr($filename, 0, strpos($filename, "?"));
4182 }
4183
4184 $timestamp = filemtime($filename);
4185
4186 if ($query) $timestamp .= "&$query";
4187
4188 echo "<script type=\"text/javascript\" charset=\"utf-8\" src=\"$filename?$timestamp\"></script>\n";
4189 }
4190
16314dda
AD
4191 function calculate_dep_timestamp() {
4192 $files = array_merge(glob("js/*.js"), glob("*.css"));
4193
4194 $max_ts = -1;
4195
4196 foreach ($files as $file) {
4197 if (filemtime($file) > $max_ts) $max_ts = filemtime($file);
4198 }
4199
4200 return $max_ts;
4201 }
4202
bcbb2ec7
AD
4203 function T_js_decl($s1, $s2) {
4204 if ($s1 && $s2) {
4205 $s1 = preg_replace("/\n/", "", $s1);
4206 $s2 = preg_replace("/\n/", "", $s2);
4207
4208 $s1 = preg_replace("/\"/", "\\\"", $s1);
4209 $s2 = preg_replace("/\"/", "\\\"", $s2);
4210
4211 return "T_messages[\"$s1\"] = \"$s2\";\n";
4212 }
4213 }
4214
4215 function init_js_translations() {
4216
4217 print 'var T_messages = new Object();
4218
4219 function __(msg) {
4220 if (T_messages[msg]) {
4221 return T_messages[msg];
4222 } else {
4223 return msg;
4224 }
4225 }
4226
4227 function ngettext(msg1, msg2, n) {
4228 return (parseInt(n) > 1) ? msg2 : msg1;
4229 }';
4230
4231 $l10n = _get_reader();
4232
4233 for ($i = 0; $i < $l10n->total; $i++) {
4234 $orig = $l10n->get_original_string($i);
4235 $translation = __($orig);
4236
4237 print T_js_decl($orig, $translation);
4238 }
4239 }
4240
f822a8e5
AD
4241 function label_to_feed_id($label) {
4242 return LABEL_BASE_INDEX - 1 - abs($label);
4243 }
4244
4245 function feed_to_label_id($feed) {
4246 return LABEL_BASE_INDEX - 1 + abs($feed);
4247 }
4248
8c0496f7 4249?>