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