]> git.wh0rd.org - tt-rss.git/blame - include/functions.php
use favicon in some auxiliar dialogs
[tt-rss.git] / include / functions.php
CommitLineData
1d3a17c7 1<?php
6e658547 2 define('EXPECTED_CONFIG_VERSION', 26);
e596b5a9 3 define('SCHEMA_VERSION', 123);
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
4d8f4c59 1560 $result = db_query("SELECT id,caption,SUM(CASE WHEN u1.unread = true THEN 1 ELSE 0 END) AS unread, COUNT(u1.unread) AS total
45942238
AD
1561 FROM ttrss_labels2 LEFT JOIN ttrss_user_labels2 ON
1562 (ttrss_labels2.id = label_id)
4d8f4c59 1563 LEFT JOIN ttrss_user_entries AS u1 ON u1.ref_id = article_id
123a7643
AD
1564 WHERE ttrss_labels2.owner_uid = $owner_uid GROUP BY ttrss_labels2.id,
1565 ttrss_labels2.caption");
8d505d78 1566
3809b278 1567 while ($line = db_fetch_assoc($result)) {
2d24f032 1568
f822a8e5 1569 $id = label_to_feed_id($line["id"]);
e4f4b46f 1570
6a7817c1 1571 $cv = array("id" => $id,
d7b5a9e7
AD
1572 "counter" => (int) $line["unread"],
1573 "auxcounter" => (int) $line["total"]);
11232703
AD
1574
1575 if ($descriptions)
d7b5a9e7 1576 $cv["description"] = $line["caption"];
ef393de7 1577
6a7817c1 1578 array_push($ret_arr, $cv);
3809b278 1579 }
8d505d78 1580
ef393de7 1581 return $ret_arr;
a9cb1f83
AD
1582 }
1583
a42c55f0 1584 function getFeedCounters($active_feed = false) {
a9cb1f83 1585
6a7817c1
AD
1586 $ret_arr = array();
1587
41759103 1588 $query = "SELECT ttrss_feeds.id,
8a4c759e 1589 ttrss_feeds.title,
8d505d78 1590 ".SUBSTRING_FOR_DATE."(ttrss_feeds.last_updated,1,19) AS last_updated,
de0a2122
AD
1591 last_error, value AS count
1592 FROM ttrss_feeds, ttrss_counters_cache
8d505d78 1593 WHERE ttrss_feeds.owner_uid = ".$_SESSION["uid"]."
fc9de939 1594 AND ttrss_counters_cache.owner_uid = ttrss_feeds.owner_uid
55e01d7e 1595 AND ttrss_counters_cache.feed_id = id";
a9cb1f83 1596
a42c55f0 1597 $result = db_query($query);
a9cb1f83
AD
1598 $fctrs_modified = false;
1599
1600 while ($line = db_fetch_assoc($result)) {
8d505d78 1601
a9cb1f83 1602 $id = $line["id"];
de0a2122 1603 $count = $line["count"];
a9cb1f83 1604 $last_error = htmlspecialchars($line["last_error"]);
fb1fb4ab 1605
a42c55f0 1606 $last_updated = make_local_datetime($line['last_updated'], false);
fb1fb4ab 1607
7defa089 1608 $has_img = feed_has_icon($id);
a9cb1f83 1609
428b704d
AD
1610 if (date('Y') - date('Y', strtotime($line['last_updated'])) > 2)
1611 $last_updated = '';
1612
6a7817c1 1613 $cv = array("id" => $id,
21884958 1614 "updated" => $last_updated,
12e6de72 1615 "counter" => (int) $count,
6a7817c1 1616 "has_img" => (int) $has_img);
a9cb1f83 1617
6a7817c1
AD
1618 if ($last_error)
1619 $cv["error"] = $last_error;
4ffa126e 1620
a42c55f0
AD
1621// if (get_pref('EXTENDED_FEEDLIST'))
1622// $cv["xmsg"] = getFeedArticles($id)." ".__("total");
bdb7369b 1623
6a7817c1 1624 if ($active_feed && $id == $active_feed)
fbc95c5b 1625 $cv["title"] = truncate_string($line["title"], 30);
6a7817c1
AD
1626
1627 array_push($ret_arr, $cv);
a9cb1f83 1628
a9cb1f83 1629 }
6a7817c1
AD
1630
1631 return $ret_arr;
a9cb1f83
AD
1632 }
1633
6322ac79 1634 function get_pgsql_version() {
a42c55f0 1635 $result = db_query("SELECT version() AS version");
9949bd15 1636 $version = explode(" ", db_fetch_result($result, 0, "version"));
6e7f8d26
AD
1637 return $version[1];
1638 }
1639
2b8290cd 1640 /**
23d2471c
AD
1641 * @return array (code => Status code, message => error message if available)
1642 *
2b8290cd
CW
1643 * 0 - OK, Feed already exists
1644 * 1 - OK, Feed added
1645 * 2 - Invalid URL
9a8ce956
CW
1646 * 3 - URL content is HTML, no feeds available
1647 * 4 - URL content is HTML which contains multiple feeds.
1648 * Here you should call extractfeedurls in rpc-backend
1649 * to get all possible feeds.
5414ad4c 1650 * 5 - Couldn't download the URL content.
ebec81a6 1651 * 6 - Content is an invalid XML.
2b8290cd 1652 */
a42c55f0 1653 function subscribe_to_feed($url, $cat_id = 0,
efc6553d 1654 $auth_login = '', $auth_pass = '') {
bb0f29a4 1655
23d2471c
AD
1656 global $fetch_last_error;
1657
2c08214a
AD
1658 require_once "include/rssfuncs.php";
1659
f0266f51 1660 $url = fix_url($url);
ec39a02c 1661
23d2471c 1662 if (!$url || !validate_feed_url($url)) return array("code" => 2);
a5819bb3 1663
759e5132
AD
1664 $contents = @fetch_file_contents($url, false, $auth_login, $auth_pass);
1665
1666 if (!$contents) {
304aadb9 1667 return array("code" => 5, "message" => $fetch_last_error);
759e5132
AD
1668 }
1669
1670 if (is_html($contents)) {
1671 $feedUrls = get_feeds_from_html($url, $contents);
304aadb9 1672
304aadb9
AD
1673 if (count($feedUrls) == 0) {
1674 return array("code" => 3);
1675 } else if (count($feedUrls) > 1) {
759e5132 1676 return array("code" => 4, "feeds" => $feedUrls);
f6d8345b 1677 }
304aadb9
AD
1678 //use feed url as new URL
1679 $url = key($feedUrls);
1680 }
f6d8345b 1681
9ce600c8 1682 /* libxml_use_internal_errors(true);
ebec81a6 1683 $doc = new DOMDocument();
9ce600c8 1684 $doc->loadXML($contents);
ebec81a6
AD
1685 $error = libxml_get_last_error();
1686 libxml_clear_errors();
1687
1688 if ($error) {
1689 $error_message = format_libxml_error($error);
1690
1691 return array("code" => 6, "message" => $error_message);
9ce600c8 1692 } */
ebec81a6 1693
956c7629
AD
1694 if ($cat_id == "0" || !$cat_id) {
1695 $cat_qpart = "NULL";
1696 } else {
1697 $cat_qpart = "'$cat_id'";
1698 }
8d505d78 1699
6322ac79 1700 $result = db_query(
8d505d78 1701 "SELECT id FROM ttrss_feeds
a5819bb3 1702 WHERE feed_url = '$url' AND owner_uid = ".$_SESSION["uid"]);
8d505d78 1703
044cff2d
AD
1704 if (strlen(FEED_CRYPT_KEY) > 0) {
1705 require_once "crypt.php";
1706 $auth_pass = substr(encrypt_string($auth_pass), 0, 250);
1707 $auth_pass_encrypted = 'true';
1708 } else {
1709 $auth_pass_encrypted = 'false';
1710 }
1711
a42c55f0 1712 $auth_pass = db_escape_string($auth_pass);
41694a95 1713
956c7629 1714 if (db_num_rows($result) == 0) {
6322ac79 1715 $result = db_query(
8d505d78 1716 "INSERT INTO ttrss_feeds
044cff2d 1717 (owner_uid,feed_url,title,cat_id, auth_login,auth_pass,update_method,auth_pass_encrypted)
8d505d78 1718 VALUES ('".$_SESSION["uid"]."', '$url',
044cff2d 1719 '[Unknown]', $cat_qpart, '$auth_login', '$auth_pass', 0, $auth_pass_encrypted)");
8d505d78 1720
6322ac79 1721 $result = db_query(
8d505d78 1722 "SELECT id FROM ttrss_feeds WHERE feed_url = '$url'
f27de515 1723 AND owner_uid = " . $_SESSION["uid"]);
8d505d78 1724
956c7629 1725 $feed_id = db_fetch_result($result, 0, "id");
8d505d78 1726
956c7629 1727 if ($feed_id) {
fd687300 1728 update_rss_feed($feed_id, true);
956c7629
AD
1729 }
1730
23d2471c 1731 return array("code" => 1);
956c7629 1732 } else {
23d2471c 1733 return array("code" => 0);
956c7629
AD
1734 }
1735 }
1736
a42c55f0 1737 function print_feed_select($id, $default_id = "",
4c9d0490
AD
1738 $attributes = "", $include_all_feeds = true,
1739 $root_id = false, $nest_level = 0) {
1740
1741 if (!$root_id) {
1742 print "<select id=\"$id\" name=\"$id\" $attributes>";
1743 if ($include_all_feeds) {
1744 $is_selected = ("0" == $default_id) ? "selected=\"1\"" : "";
1745 print "<option $is_selected value=\"0\">".__('All feeds')."</option>";
1746 }
673d54ca 1747 }
8d505d78 1748
a42c55f0 1749 if (get_pref('ENABLE_FEED_CATS')) {
673d54ca 1750
4c9d0490
AD
1751 if ($root_id)
1752 $parent_qpart = "parent_cat = '$root_id'";
1753 else
1754 $parent_qpart = "parent_cat IS NULL";
673d54ca 1755
a42c55f0 1756 $result = db_query("SELECT id,title,
4c9d0490
AD
1757 (SELECT COUNT(id) FROM ttrss_feed_categories AS c2 WHERE
1758 c2.parent_cat = ttrss_feed_categories.id) AS num_children
1759 FROM ttrss_feed_categories
1760 WHERE owner_uid = ".$_SESSION["uid"]." AND $parent_qpart ORDER BY title");
1761
1762 while ($line = db_fetch_assoc($result)) {
1763
1764 for ($i = 0; $i < $nest_level; $i++)
1765 $line["title"] = " - " . $line["title"];
1766
1767 $is_selected = ("CAT:".$line["id"] == $default_id) ? "selected=\"1\"" : "";
1768
1769 printf("<option $is_selected value='CAT:%d'>%s</option>",
1770 $line["id"], htmlspecialchars($line["title"]));
1771
1772 if ($line["num_children"] > 0)
a42c55f0 1773 print_feed_select($id, $default_id, $attributes,
4c9d0490
AD
1774 $include_all_feeds, $line["id"], $nest_level+1);
1775
a42c55f0 1776 $feed_result = db_query("SELECT id,title FROM ttrss_feeds
4c9d0490
AD
1777 WHERE cat_id = '".$line["id"]."' AND owner_uid = ".$_SESSION["uid"] . " ORDER BY title");
1778
1779 while ($fline = db_fetch_assoc($feed_result)) {
1780 $is_selected = ($fline["id"] == $default_id) ? "selected=\"1\"" : "";
1781
1782 $fline["title"] = " + " . $fline["title"];
1783
1784 for ($i = 0; $i < $nest_level; $i++)
1785 $fline["title"] = " - " . $fline["title"];
1786
1787 printf("<option $is_selected value='%d'>%s</option>",
1788 $fline["id"], htmlspecialchars($fline["title"]));
1789 }
673d54ca 1790 }
b1710666 1791
4c9d0490 1792 if (!$root_id) {
6f7798b6
RL
1793 $default_is_cat = ($default_id == "CAT:0");
1794 $is_selected = $default_is_cat ? "selected=\"1\"" : "";
4c9d0490
AD
1795
1796 printf("<option $is_selected value='CAT:0'>%s</option>",
1797 __("Uncategorized"));
1798
a42c55f0 1799 $feed_result = db_query("SELECT id,title FROM ttrss_feeds
4c9d0490
AD
1800 WHERE cat_id IS NULL AND owner_uid = ".$_SESSION["uid"] . " ORDER BY title");
1801
1802 while ($fline = db_fetch_assoc($feed_result)) {
1803 $is_selected = ($fline["id"] == $default_id && !$default_is_cat) ? "selected=\"1\"" : "";
1804
1805 $fline["title"] = " + " . $fline["title"];
1806
1807 for ($i = 0; $i < $nest_level; $i++)
1808 $fline["title"] = " - " . $fline["title"];
1809
1810 printf("<option $is_selected value='%d'>%s</option>",
1811 $fline["id"], htmlspecialchars($fline["title"]));
1812 }
1813 }
b1710666 1814
4c9d0490 1815 } else {
a42c55f0 1816 $result = db_query("SELECT id,title FROM ttrss_feeds
4c9d0490
AD
1817 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
1818
1819 while ($line = db_fetch_assoc($result)) {
1820
1821 $is_selected = ($line["id"] == $default_id) ? "selected=\"1\"" : "";
1822
1823 printf("<option $is_selected value='%d'>%s</option>",
1824 $line["id"], htmlspecialchars($line["title"]));
1825 }
673d54ca 1826 }
8d505d78 1827
4c9d0490
AD
1828 if (!$root_id) {
1829 print "</select>";
1830 }
673d54ca
AD
1831 }
1832
a42c55f0 1833 function print_feed_cat_select($id, $default_id,
fbf85cf6 1834 $attributes, $include_all_cats = true, $root_id = false, $nest_level = 0) {
8d505d78 1835
fbf85cf6
AD
1836 if (!$root_id) {
1837 print "<select id=\"$id\" name=\"$id\" default=\"$default_id\" onchange=\"catSelectOnChange(this)\" $attributes>";
1838 }
673d54ca 1839
fbf85cf6
AD
1840 if ($root_id)
1841 $parent_qpart = "parent_cat = '$root_id'";
1842 else
1843 $parent_qpart = "parent_cat IS NULL";
673d54ca 1844
a42c55f0 1845 $result = db_query("SELECT id,title,
fbf85cf6
AD
1846 (SELECT COUNT(id) FROM ttrss_feed_categories AS c2 WHERE
1847 c2.parent_cat = ttrss_feed_categories.id) AS num_children
1848 FROM ttrss_feed_categories
1849 WHERE owner_uid = ".$_SESSION["uid"]." AND $parent_qpart ORDER BY title");
673d54ca 1850
fbf85cf6
AD
1851 while ($line = db_fetch_assoc($result)) {
1852 if ($line["id"] == $default_id) {
1853 $is_selected = "selected=\"1\"";
1854 } else {
1855 $is_selected = "";
1856 }
673d54ca 1857
fbf85cf6
AD
1858 for ($i = 0; $i < $nest_level; $i++)
1859 $line["title"] = " - " . $line["title"];
c00907f2 1860
fbf85cf6
AD
1861 if ($line["title"])
1862 printf("<option $is_selected value='%d'>%s</option>",
1863 $line["id"], htmlspecialchars($line["title"]));
673d54ca 1864
fbf85cf6 1865 if ($line["num_children"] > 0)
a42c55f0 1866 print_feed_cat_select($id, $default_id, $attributes,
fbf85cf6
AD
1867 $include_all_cats, $line["id"], $nest_level+1);
1868 }
5c7c7da9 1869
fbf85cf6
AD
1870 if (!$root_id) {
1871 if ($include_all_cats) {
1872 if (db_num_rows($result) > 0) {
1873 print "<option disabled=\"1\">--------</option>";
1874 }
7e18f8e7
AD
1875
1876 if ($default_id == 0) {
1877 $is_selected = "selected=\"1\"";
1878 } else {
1879 $is_selected = "";
1880 }
1881
1882 print "<option $is_selected value=\"0\">".__('Uncategorized')."</option>";
fbf85cf6
AD
1883 }
1884 print "</select>";
1885 }
1886 }
8d505d78 1887
14f69488
AD
1888 function checkbox_to_sql_bool($val) {
1889 return ($val == "on") ? "true" : "false";
1890 }
86b682ce 1891
a42c55f0 1892 function getFeedCatTitle($id) {
86b682ce 1893 if ($id == -1) {
d1db26aa 1894 return __("Special");
f822a8e5 1895 } else if ($id < LABEL_BASE_INDEX) {
d1db26aa 1896 return __("Labels");
86b682ce 1897 } else if ($id > 0) {
a42c55f0 1898 $result = db_query("SELECT ttrss_feed_categories.title
86b682ce
AD
1899 FROM ttrss_feeds, ttrss_feed_categories WHERE ttrss_feeds.id = '$id' AND
1900 cat_id = ttrss_feed_categories.id");
1901 if (db_num_rows($result) == 1) {
1902 return db_fetch_result($result, 0, "title");
1903 } else {
d1db26aa 1904 return __("Uncategorized");
86b682ce
AD
1905 }
1906 } else {
1907 return "getFeedCatTitle($id) failed";
1908 }
1909
1910 }
1911
9299102f 1912 function getFeedIcon($id) {
af88c48a 1913 switch ($id) {
4bee8b5f
AD
1914 case 0:
1915 return "images/archive.png";
1916 break;
af88c48a 1917 case -1:
2f20dd58 1918 return "images/star.png";
af88c48a
AD
1919 break;
1920 case -2:
2f20dd58 1921 return "images/feed.png";
af88c48a
AD
1922 break;
1923 case -3:
1924 return "images/fresh.png";
1925 break;
1926 case -4:
2f20dd58 1927 return "images/folder.png";
af88c48a 1928 break;
5417fbd7 1929 case -6:
2f20dd58 1930 return "images/time.png";
5417fbd7 1931 break;
af88c48a 1932 default:
f822a8e5 1933 if ($id < LABEL_BASE_INDEX) {
4bee8b5f
AD
1934 return "images/label.png";
1935 } else {
8d505d78 1936 if (file_exists(ICONS_DIR . "/$id.ico"))
e2eda979 1937 return ICONS_URL . "/$id.ico";
4bee8b5f 1938 }
af88c48a
AD
1939 break;
1940 }
89473cb5
AD
1941
1942 return false;
af88c48a
AD
1943 }
1944
a42c55f0 1945 function getFeedTitle($id, $cat = false) {
fd994f1a 1946 if ($cat) {
a42c55f0 1947 return getCategoryTitle($id);
fd994f1a 1948 } else if ($id == -1) {
d1db26aa 1949 return __("Starred articles");
945c243e
AD
1950 } else if ($id == -2) {
1951 return __("Published articles");
2d24f032
AD
1952 } else if ($id == -3) {
1953 return __("Fresh articles");
b2531a28
AD
1954 } else if ($id == -4) {
1955 return __("All articles");
80db1113 1956 } else if ($id === 0 || $id === "0") {
e04c18a2 1957 return __("Archived articles");
5417fbd7
AD
1958 } else if ($id == -6) {
1959 return __("Recently read");
f822a8e5
AD
1960 } else if ($id < LABEL_BASE_INDEX) {
1961 $label_id = feed_to_label_id($id);
a42c55f0 1962 $result = db_query("SELECT caption FROM ttrss_labels2 WHERE id = '$label_id'");
86b682ce 1963 if (db_num_rows($result) == 1) {
ceb30ba4 1964 return db_fetch_result($result, 0, "caption");
86b682ce
AD
1965 } else {
1966 return "Unknown label ($label_id)";
1967 }
1968
147f5632 1969 } else if (is_numeric($id) && $id > 0) {
a42c55f0 1970 $result = db_query("SELECT title FROM ttrss_feeds WHERE id = '$id'");
86b682ce
AD
1971 if (db_num_rows($result) == 1) {
1972 return db_fetch_result($result, 0, "title");
1973 } else {
1974 return "Unknown feed ($id)";
1975 }
1976 } else {
22fdebff 1977 return $id;
86b682ce 1978 }
86b682ce 1979 }
3dd46f19 1980
6322ac79 1981 function make_init_params() {
f1f3a642 1982 $params = array();
c9268ed5 1983
f1f3a642
AD
1984 foreach (array("ON_CATCHUP_SHOW_NEXT_FEED", "HIDE_READ_FEEDS",
1985 "ENABLE_FEED_CATS", "FEEDS_SORT_BY_UNREAD", "CONFIRM_FEED_CATCHUP",
f17cac6b 1986 "CDM_AUTO_CATCHUP", "FRESH_ARTICLE_MAX_AGE",
30b6ee8c 1987 "HIDE_READ_SHOWS_SPECIAL", "COMBINED_DISPLAY_MODE") as $param) {
40496720 1988
a42c55f0 1989 $params[strtolower($param)] = (int) get_pref($param);
f1f3a642 1990 }
40496720 1991
c4f7ba80
AD
1992 $params["icons_url"] = ICONS_URL;
1993 $params["cookie_lifetime"] = SESSION_COOKIE_LIFETIME;
a42c55f0
AD
1994 $params["default_view_mode"] = get_pref("_DEFAULT_VIEW_MODE");
1995 $params["default_view_limit"] = (int) get_pref("_DEFAULT_VIEW_LIMIT");
1996 $params["default_view_order_by"] = get_pref("_DEFAULT_VIEW_ORDER_BY");
c4f7ba80 1997 $params["bw_limit"] = (int) $_SESSION["bw_limit"];
88a41b64 1998 $params["label_base_index"] = (int) LABEL_BASE_INDEX;
59b223d7 1999
a42c55f0 2000 $result = db_query("SELECT MAX(id) AS mid, COUNT(*) AS nf FROM
9b7ecc0a
AD
2001 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
2002
8cd576a1
AD
2003 $max_feed_id = db_fetch_result($result, 0, "mid");
2004 $num_feeds = db_fetch_result($result, 0, "nf");
9b7ecc0a 2005
8cd576a1 2006 $params["max_feed_id"] = (int) $max_feed_id;
c4f7ba80 2007 $params["num_feeds"] = (int) $num_feeds;
8cd576a1 2008
6322ac79 2009 $params["hotkeys"] = get_hotkeys_map();
9b7ecc0a 2010
8484ce22 2011 $params["csrf_token"] = $_SESSION["csrf_token"];
f03701fe 2012 $params["widescreen"] = (int) $_COOKIE["ttrss_widescreen"];
8484ce22 2013
6b1a4ecd 2014 $params['simple_update'] = defined('SIMPLE_UPDATE_MODE') && SIMPLE_UPDATE_MODE;
8b83bf5f 2015
d8221301 2016 return $params;
3ac2b520 2017 }
f54f515f 2018
6322ac79 2019 function get_hotkeys_info() {
b8cb4d08
AD
2020 $hotkeys = array(
2021 __("Navigation") => array(
2022 "next_feed" => __("Open next feed"),
2023 "prev_feed" => __("Open previous feed"),
2024 "next_article" => __("Open next article"),
2025 "prev_article" => __("Open previous article"),
c22580b5
AD
2026 "next_article_noscroll" => __("Open next article (don't scroll long articles)"),
2027 "prev_article_noscroll" => __("Open previous article (don't scroll long articles)"),
8b35d171
SC
2028 "next_article_noexpand" => __("Move to next article (don't expand or mark read)"),
2029 "prev_article_noexpand" => __("Move to previous article (don't expand or mark read)"),
b8cb4d08
AD
2030 "search_dialog" => __("Show search dialog")),
2031 __("Article") => array(
2032 "toggle_mark" => __("Toggle starred"),
2033 "toggle_publ" => __("Toggle published"),
2034 "toggle_unread" => __("Toggle unread"),
2035 "edit_tags" => __("Edit tags"),
2036 "dismiss_selected" => __("Dismiss selected"),
2037 "dismiss_read" => __("Dismiss read"),
2038 "open_in_new_window" => __("Open in new window"),
2039 "catchup_below" => __("Mark below as read"),
2040 "catchup_above" => __("Mark above as read"),
2041 "article_scroll_down" => __("Scroll down"),
2042 "article_scroll_up" => __("Scroll up"),
2043 "select_article_cursor" => __("Select article under cursor"),
1bcf8f45 2044 "email_article" => __("Email article"),
414191d4 2045 "close_article" => __("Close/collapse article"),
8b35d171 2046 "toggle_expand" => __("Toggle article expansion (combined mode)"),
2ccc7b8e
AD
2047 "toggle_widescreen" => __("Toggle widescreen mode"),
2048 "toggle_embed_original" => __("Toggle embed original")),
b8cb4d08
AD
2049 __("Article selection") => array(
2050 "select_all" => __("Select all articles"),
2051 "select_unread" => __("Select unread"),
2052 "select_marked" => __("Select starred"),
2053 "select_published" => __("Select published"),
2054 "select_invert" => __("Invert selection"),
2055 "select_none" => __("Deselect everything")),
2056 __("Feed") => array(
2057 "feed_refresh" => __("Refresh current feed"),
2058 "feed_unhide_read" => __("Un/hide read feeds"),
2059 "feed_subscribe" => __("Subscribe to feed"),
2060 "feed_edit" => __("Edit feed"),
2061 "feed_catchup" => __("Mark as read"),
2062 "feed_reverse" => __("Reverse headlines"),
43f775de 2063 "feed_debug_update" => __("Debug feed update"),
b8cb4d08 2064 "catchup_all" => __("Mark all feeds as read"),
4b27f0c0 2065 "cat_toggle_collapse" => __("Un/collapse current category"),
60b88b25
AD
2066 "toggle_combined_mode" => __("Toggle combined mode"),
2067 "toggle_cdm_expanded" => __("Toggle auto expand in combined mode")),
b8cb4d08
AD
2068 __("Go to") => array(
2069 "goto_all" => __("All articles"),
2070 "goto_fresh" => __("Fresh"),
2071 "goto_marked" => __("Starred"),
2072 "goto_published" => __("Published"),
2073 "goto_tagcloud" => __("Tag cloud"),
2074 "goto_prefs" => __("Preferences")),
2075 __("Other") => array(
2076 "create_label" => __("Create label"),
2077 "create_filter" => __("Create filter"),
2078 "collapse_sidebar" => __("Un/collapse sidebar"),
2079 "help_dialog" => __("Show help dialog"))
2080 );
2081
1ffe3391 2082 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_HOTKEY_INFO) as $plugin) {
47854200
DA
2083 $hotkeys = $plugin->hook_hotkey_info($hotkeys);
2084 }
2085
b8cb4d08
AD
2086 return $hotkeys;
2087 }
2088
6322ac79 2089 function get_hotkeys_map() {
a83b58f1 2090 $hotkeys = array(
e218c5f5
AD
2091// "navigation" => array(
2092 "k" => "next_feed",
2093 "j" => "prev_feed",
2094 "n" => "next_article",
2095 "p" => "prev_article",
e5e2cf3b
AD
2096 "(38)|up" => "prev_article",
2097 "(40)|down" => "next_article",
da15c140
AD
2098// "^(38)|Ctrl-up" => "prev_article_noscroll",
2099// "^(40)|Ctrl-down" => "next_article_noscroll",
e5e2cf3b 2100 "(191)|/" => "search_dialog",
e218c5f5
AD
2101// "article" => array(
2102 "s" => "toggle_mark",
5b18c936 2103 "*s" => "toggle_publ",
e218c5f5 2104 "u" => "toggle_unread",
5b18c936
AD
2105 "*t" => "edit_tags",
2106 "*d" => "dismiss_selected",
2107 "*x" => "dismiss_read",
e218c5f5
AD
2108 "o" => "open_in_new_window",
2109 "c p" => "catchup_below",
2110 "c n" => "catchup_above",
5b18c936
AD
2111 "*n" => "article_scroll_down",
2112 "*p" => "article_scroll_up",
d2db81a5
AD
2113 "*(38)|Shift+up" => "article_scroll_up",
2114 "*(40)|Shift+down" => "article_scroll_down",
5b18c936 2115 "a *w" => "toggle_widescreen",
2ccc7b8e 2116 "a e" => "toggle_embed_original",
e218c5f5 2117 "e" => "email_article",
2cda4314 2118 "a q" => "close_article",
e218c5f5
AD
2119// "article_selection" => array(
2120 "a a" => "select_all",
2121 "a u" => "select_unread",
5b18c936 2122 "a *u" => "select_marked",
e218c5f5
AD
2123 "a p" => "select_published",
2124 "a i" => "select_invert",
2125 "a n" => "select_none",
2126// "feed" => array(
2127 "f r" => "feed_refresh",
2128 "f a" => "feed_unhide_read",
2129 "f s" => "feed_subscribe",
2130 "f e" => "feed_edit",
2131 "f q" => "feed_catchup",
2132 "f x" => "feed_reverse",
5b18c936
AD
2133 "f *d" => "feed_debug_update",
2134 "f *c" => "toggle_combined_mode",
60b88b25 2135 "f c" => "toggle_cdm_expanded",
5b18c936 2136 "*q" => "catchup_all",
e218c5f5
AD
2137 "x" => "cat_toggle_collapse",
2138// "goto" => array(
2139 "g a" => "goto_all",
2140 "g f" => "goto_fresh",
2141 "g s" => "goto_marked",
2142 "g p" => "goto_published",
2143 "g t" => "goto_tagcloud",
5b18c936 2144 "g *p" => "goto_prefs",
e218c5f5 2145// "other" => array(
3fb40112 2146 "(9)|Tab" => "select_article_cursor", // tab
e218c5f5
AD
2147 "c l" => "create_label",
2148 "c f" => "create_filter",
2149 "c s" => "collapse_sidebar",
3fb40112 2150 "^(191)|Ctrl+/" => "help_dialog",
a83b58f1
AD
2151 );
2152
a42c55f0 2153 if (get_pref('COMBINED_DISPLAY_MODE')) {
da15c140
AD
2154 $hotkeys["^(38)|Ctrl-up"] = "prev_article_noscroll";
2155 $hotkeys["^(40)|Ctrl-down"] = "next_article_noscroll";
2156 }
2157
1ffe3391 2158 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_HOTKEY_MAP) as $plugin) {
e218c5f5
AD
2159 $hotkeys = $plugin->hook_hotkey_map($hotkeys);
2160 }
2161
2162 $prefixes = array();
2163
2164 foreach (array_keys($hotkeys) as $hotkey) {
2165 $pair = explode(" ", $hotkey, 2);
2166
2167 if (count($pair) > 1 && !in_array($pair[0], $prefixes)) {
2168 array_push($prefixes, $pair[0]);
2169 }
2170 }
2171
2172 return array($prefixes, $hotkeys);
a83b58f1
AD
2173 }
2174
6322ac79 2175 function make_runtime_info() {
8cd576a1
AD
2176 $data = array();
2177
a42c55f0 2178 $result = db_query("SELECT MAX(id) AS mid, COUNT(*) AS nf FROM
9b7ecc0a
AD
2179 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
2180
8cd576a1
AD
2181 $max_feed_id = db_fetch_result($result, 0, "mid");
2182 $num_feeds = db_fetch_result($result, 0, "nf");
9b7ecc0a 2183
8cd576a1
AD
2184 $data["max_feed_id"] = (int) $max_feed_id;
2185 $data["num_feeds"] = (int) $num_feeds;
c4f7ba80 2186
6322ac79 2187 $data['last_article_id'] = getLastArticleId();
a42c55f0 2188 $data['cdm_expanded'] = get_pref('CDM_EXPANDED');
f8fb4498 2189
16314dda 2190 $data['dep_ts'] = calculate_dep_timestamp();
4cdb8173 2191 $data['reload_on_ts_change'] = !defined('_NO_RELOAD_ON_TS_CHANGE');
16314dda 2192
dbaa4e4a 2193 if (file_exists(LOCK_DIRECTORY . "/update_daemon.lock")) {
c4f7ba80
AD
2194
2195 $data['daemon_is_running'] = (int) file_is_locked("update_daemon.lock");
8e00ae9b 2196
9041f58b 2197 if (time() - $_SESSION["daemon_stamp_check"] > 30) {
8e00ae9b 2198
fb074239 2199 $stamp = (int) @file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
fbae93d8 2200
8e00ae9b 2201 if ($stamp) {
9041f58b
AD
2202 $stamp_delta = time() - $stamp;
2203
2204 if ($stamp_delta > 1800) {
f6854e44 2205 $stamp_check = 0;
8e00ae9b 2206 } else {
f6854e44
AD
2207 $stamp_check = 1;
2208 $_SESSION["daemon_stamp_check"] = time();
8e00ae9b
AD
2209 }
2210
c4f7ba80 2211 $data['daemon_stamp_ok'] = $stamp_check;
f6854e44 2212
8e00ae9b
AD
2213 $stamp_fmt = date("Y.m.d, G:i", $stamp);
2214
c4f7ba80 2215 $data['daemon_stamp'] = $stamp_fmt;
8e00ae9b 2216 }
8e00ae9b 2217 }
71ad883b 2218 }
8e00ae9b 2219
63855db1 2220 if ($_SESSION["last_version_check"] + 86400 + rand(-1000, 1000) < time()) {
6322ac79 2221 $new_version_details = @check_for_update();
d9fa39f1 2222
63855db1 2223 $data['new_version_available'] = (int) ($new_version_details != false);
d9fa39f1
AD
2224
2225 $_SESSION["last_version_check"] = time();
27211afe 2226 $_SESSION["version_data"] = $new_version_details;
d9fa39f1
AD
2227 }
2228
c4f7ba80 2229 return $data;
f54f515f 2230 }
ef393de7 2231
a42c55f0 2232 function search_to_sql($search) {
ef393de7 2233
88040f57 2234 $search_query_part = "";
e20c9d88 2235
9949bd15 2236 $keywords = explode(" ", $search);
88040f57 2237 $query_keywords = array();
dd90eb2c 2238 $search_words = array();
e20c9d88 2239
ab4b768f
AD
2240 foreach ($keywords as $k) {
2241 if (strpos($k, "-") === 0) {
2242 $k = substr($k, 1);
2243 $not = "NOT";
2244 } else {
2245 $not = "";
88040f57 2246 }
e20c9d88 2247
9949bd15 2248 $commandpair = explode(":", mb_strtolower($k), 2);
53003548 2249
0fc3930b
AD
2250 switch ($commandpair[0]) {
2251 case "title":
2252 if ($commandpair[1]) {
2253 array_push($query_keywords, "($not (LOWER(ttrss_entries.title) LIKE '%".
a42c55f0 2254 db_escape_string(mb_strtolower($commandpair[1]))."%'))");
efd840d8
AD
2255 } else {
2256 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
2257 OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
dd90eb2c 2258 array_push($search_words, $k);
0fc3930b
AD
2259 }
2260 break;
2261 case "author":
2262 if ($commandpair[1]) {
2263 array_push($query_keywords, "($not (LOWER(author) LIKE '%".
a42c55f0 2264 db_escape_string(mb_strtolower($commandpair[1]))."%'))");
efd840d8
AD
2265 } else {
2266 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
2267 OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
dd90eb2c 2268 array_push($search_words, $k);
0fc3930b
AD
2269 }
2270 break;
2271 case "note":
2272 if ($commandpair[1]) {
2273 if ($commandpair[1] == "true")
2274 array_push($query_keywords, "($not (note IS NOT NULL AND note != ''))");
2275 else if ($commandpair[1] == "false")
2276 array_push($query_keywords, "($not (note IS NULL OR note = ''))");
2277 else
2278 array_push($query_keywords, "($not (LOWER(note) LIKE '%".
a42c55f0 2279 db_escape_string(mb_strtolower($commandpair[1]))."%'))");
efd840d8
AD
2280 } else {
2281 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
2282 OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
dd90eb2c 2283 if (!$not) array_push($search_words, $k);
0fc3930b
AD
2284 }
2285 break;
2286 case "star":
53003548 2287
0fc3930b
AD
2288 if ($commandpair[1]) {
2289 if ($commandpair[1] == "true")
2290 array_push($query_keywords, "($not (marked = true))");
2291 else
2292 array_push($query_keywords, "($not (marked = false))");
efd840d8
AD
2293 } else {
2294 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
2295 OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
dd90eb2c 2296 if (!$not) array_push($search_words, $k);
0fc3930b
AD
2297 }
2298 break;
2299 case "pub":
2300 if ($commandpair[1]) {
2301 if ($commandpair[1] == "true")
2302 array_push($query_keywords, "($not (published = true))");
2303 else
2304 array_push($query_keywords, "($not (published = false))");
53003548 2305
efd840d8
AD
2306 } else {
2307 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
2308 OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
dd90eb2c 2309 if (!$not) array_push($search_words, $k);
0fc3930b
AD
2310 }
2311 break;
2312 default:
2313 if (strpos($k, "@") === 0) {
e20c9d88 2314
a42c55f0 2315 $user_tz_string = get_pref('USER_TIMEZONE', $_SESSION['uid']);
0fc3930b
AD
2316 $orig_ts = strtotime(substr($k, 1));
2317 $k = date("Y-m-d", convert_timestamp($orig_ts, $user_tz_string, 'UTC'));
8d505d78 2318
0fc3930b 2319 //$k = date("Y-m-d", strtotime(substr($k, 1)));
53003548 2320
0fc3930b
AD
2321 array_push($query_keywords, "(".SUBSTRING_FOR_DATE."(updated,1,LENGTH('$k')) $not = '$k')");
2322 } else {
2323 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
2324 OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
dd90eb2c
AD
2325
2326 if (!$not) array_push($search_words, $k);
0fc3930b 2327 }
88040f57
AD
2328 }
2329 }
2330
2331 $search_query_part = implode("AND", $query_keywords);
2332
dd90eb2c 2333 return array($search_query_part, $search_words);
88040f57
AD
2334 }
2335
a42c55f0 2336 function getParentCategories($cat, $owner_uid) {
67bd0b1f
AD
2337 $rv = array();
2338
a42c55f0 2339 $result = db_query("SELECT parent_cat FROM ttrss_feed_categories
67bd0b1f
AD
2340 WHERE id = '$cat' AND parent_cat IS NOT NULL AND owner_uid = $owner_uid");
2341
2342 while ($line = db_fetch_assoc($result)) {
2343 array_push($rv, $line["parent_cat"]);
a42c55f0 2344 $rv = array_merge($rv, getParentCategories($line["parent_cat"], $owner_uid));
67bd0b1f
AD
2345 }
2346
2347 return $rv;
2348 }
2349
a42c55f0 2350 function getChildCategories($cat, $owner_uid) {
6d8d00e8
AD
2351 $rv = array();
2352
a42c55f0 2353 $result = db_query("SELECT id FROM ttrss_feed_categories
6d8d00e8
AD
2354 WHERE parent_cat = '$cat' AND owner_uid = $owner_uid");
2355
2356 while ($line = db_fetch_assoc($result)) {
2357 array_push($rv, $line["id"]);
a42c55f0 2358 $rv = array_merge($rv, getChildCategories($line["id"], $owner_uid));
6d8d00e8
AD
2359 }
2360
2361 return $rv;
2362 }
147f5632 2363
a6a61a8c 2364 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
2365
2366 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
c1a0b534 2367
c3fddd05 2368 $ext_tables_part = "";
dd90eb2c 2369 $search_words = array();
c3fddd05 2370
88040f57 2371 if ($search) {
e4f7f8df
AD
2372
2373 if (SPHINX_ENABLED) {
2374 $ids = join(",", @sphinx_search($search, 0, 500));
2375
8d505d78 2376 if ($ids)
e4f7f8df
AD
2377 $search_query_part = "ref_id IN ($ids) AND ";
2378 else
2379 $search_query_part = "ref_id = -1 AND ";
2380
2381 } else {
dd90eb2c 2382 list($search_query_part, $search_words) = search_to_sql($search);
e4f7f8df 2383 $search_query_part .= " AND ";
8d505d78 2384 }
e20c9d88 2385
ef393de7
AD
2386 } else {
2387 $search_query_part = "";
2388 }
2389
36184020 2390 if ($filter) {
4e02f582
AD
2391
2392 if (DB_TYPE == "pgsql") {
2393 $query_strategy_part .= " AND updated > NOW() - INTERVAL '14 days' ";
2394 } else {
2395 $query_strategy_part .= " AND updated > DATE_SUB(NOW(), INTERVAL 14 DAY) ";
2396 }
2397
2398 $override_order = "updated DESC";
2399
a42c55f0 2400 $filter_query_part = filter_to_sql($filter, $owner_uid);
dd8c36af
AD
2401
2402 // Try to check if SQL regexp implementation chokes on a valid regexp
7711086b
AD
2403
2404
a42c55f0 2405 $result = db_query("SELECT true AS true_val FROM ttrss_entries,
7711086b 2406 ttrss_user_entries, ttrss_feeds
dd8c36af
AD
2407 WHERE $filter_query_part LIMIT 1", false);
2408
7726063c
AD
2409 if ($result) {
2410 $test = db_fetch_result($result, 0, "true_val");
dd8c36af 2411
7726063c
AD
2412 if (!$test) {
2413 $filter_query_part = "false AND";
2414 } else {
2415 $filter_query_part .= " AND";
2416 }
dd8c36af 2417 } else {
7726063c 2418 $filter_query_part = "false AND";
dd8c36af
AD
2419 }
2420
36184020
AD
2421 } else {
2422 $filter_query_part = "";
2423 }
2424
97e5dbb2
AD
2425 if ($since_id) {
2426 $since_id_part = "ttrss_entries.id > $since_id AND ";
2427 } else {
2428 $since_id_part = "";
2429 }
2430
ef393de7 2431 $view_query_part = "";
8d505d78 2432
9b523c01 2433 if ($view_mode == "adaptive") {
ef393de7
AD
2434 if ($search) {
2435 $view_query_part = " ";
2436 } else if ($feed != -1) {
6d8d00e8 2437
a42c55f0 2438 $unread = getFeedUnread($feed, $cat_view);
f4a2f12a 2439
a6adb136 2440 if ($cat_view && $feed > 0 && $include_children)
a42c55f0 2441 $unread += getCategoryChildrenUnread($feed);
f4a2f12a 2442
a6adb136
AD
2443 if ($unread > 0)
2444 $view_query_part = " unread = true AND ";
f4a2f12a 2445
ef393de7
AD
2446 }
2447 }
8d505d78 2448
ef393de7
AD
2449 if ($view_mode == "marked") {
2450 $view_query_part = " marked = true AND ";
2451 }
23d72f39 2452
127aaaa0
AD
2453 if ($view_mode == "has_note") {
2454 $view_query_part = " (note IS NOT NULL AND note != '') AND ";
2455 }
2456
23d72f39
AD
2457 if ($view_mode == "published") {
2458 $view_query_part = " published = true AND ";
2459 }
2460
0bf65987 2461 if ($view_mode == "unread" && $feed != -6) {
ef393de7
AD
2462 $view_query_part = " unread = true AND ";
2463 }
8b09eac8 2464
ef393de7
AD
2465 if ($limit > 0) {
2466 $limit_query_part = "LIMIT " . $limit;
8d505d78 2467 }
ef393de7 2468
8361e724
AD
2469 $allow_archived = false;
2470
ef393de7 2471 $vfeed_query_part = "";
8d505d78 2472
ef393de7
AD
2473 // override query strategy and enable feed display when searching globally
2474 if ($search && $search_mode == "all_feeds") {
7032f2a5 2475 $query_strategy_part = "true";
8d505d78 2476 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
22fdebff 2477 /* tags */
75c648cf 2478 } else if (!is_numeric($feed)) {
7032f2a5 2479 $query_strategy_part = "true";
ef393de7
AD
2480 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
2481 id = feed_id) as feed_title,";
7032f2a5 2482 } else if ($search && $search_mode == "this_cat") {
8d505d78 2483 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
0a6c4846 2484
7032f2a5
AD
2485 if ($feed > 0) {
2486 if ($include_children) {
a42c55f0 2487 $subcats = getChildCategories($feed, $owner_uid);
7032f2a5
AD
2488 array_push($subcats, $feed);
2489 $cats_qpart = join(",", $subcats);
2490 } else {
2491 $cats_qpart = $feed;
ef393de7 2492 }
8d505d78 2493
7032f2a5 2494 $query_strategy_part = "ttrss_feeds.cat_id IN ($cats_qpart)";
8d505d78 2495
ef393de7 2496 } else {
7032f2a5 2497 $query_strategy_part = "ttrss_feeds.cat_id IS NULL";
ef393de7 2498 }
8d505d78 2499
e04c18a2 2500 } else if ($feed > 0) {
8d505d78 2501
ef393de7 2502 if ($cat_view) {
5c365f60 2503
ef393de7 2504 if ($feed > 0) {
09101297
AD
2505 if ($include_children) {
2506 # sub-cats
a42c55f0 2507 $subcats = getChildCategories($feed, $owner_uid);
09101297 2508
7032f2a5
AD
2509 array_push($subcats, $feed);
2510 $query_strategy_part = "cat_id IN (".
09101297 2511 implode(",", $subcats).")";
7032f2a5 2512
6d8d00e8 2513 } else {
09101297 2514 $query_strategy_part = "cat_id = '$feed'";
6d8d00e8
AD
2515 }
2516
ef393de7
AD
2517 } else {
2518 $query_strategy_part = "cat_id IS NULL";
2519 }
8d505d78 2520
ef393de7 2521 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
5c365f60 2522
8d505d78 2523 } else {
6e63a7c3 2524 $query_strategy_part = "feed_id = '$feed'";
ef393de7 2525 }
bfe5ddfc 2526 } else if ($feed == 0 && !$cat_view) { // archive virtual feed
e04c18a2 2527 $query_strategy_part = "feed_id IS NULL";
8361e724 2528 $allow_archived = true;
bfe5ddfc 2529 } else if ($feed == 0 && $cat_view) { // uncategorized
65dd90f2 2530 $query_strategy_part = "cat_id IS NULL AND feed_id IS NOT NULL";
bfe5ddfc 2531 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ef393de7
AD
2532 } else if ($feed == -1) { // starred virtual feed
2533 $query_strategy_part = "marked = true";
2534 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
835fb294
AD
2535 $allow_archived = true;
2536
1bd7413f 2537 if (!$override_order) {
b9a06a0e 2538 $override_order = "last_marked DESC, date_entered DESC, updated DESC";
1bd7413f 2539 }
7873d588 2540
e6a38cde
AD
2541 } else if ($feed == -2) { // published virtual feed OR labels category
2542
2543 if (!$cat_view) {
2544 $query_strategy_part = "published = true";
2545 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
8361e724 2546 $allow_archived = true;
46b78149 2547
1bd7413f 2548 if (!$override_order) {
b9a06a0e 2549 $override_order = "last_published DESC, date_entered DESC, updated DESC";
1bd7413f
AD
2550 }
2551
e6a38cde
AD
2552 } else {
2553 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2554
2555 $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
8d505d78 2556
e6a38cde
AD
2557 $query_strategy_part = "ttrss_labels2.id = ttrss_user_labels2.label_id AND
2558 ttrss_user_labels2.article_id = ref_id";
2559
2560 }
5417fbd7 2561 } else if ($feed == -6) { // recently read
5089b30b 2562 $query_strategy_part = "unread = false AND last_read IS NOT NULL";
5417fbd7 2563 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
835fb294 2564 $allow_archived = true;
46b78149
AD
2565
2566 if (!$override_order) $override_order = "last_read DESC";
a6a61a8c
AD
2567
2568/* } else if ($feed == -7) { // shared
2569 $query_strategy_part = "uuid != ''";
2570 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2571 $allow_archived = true; */
2d24f032 2572 } else if ($feed == -3) { // fresh virtual feed
cd2cc43d 2573 $query_strategy_part = "unread = true AND score >= 0";
2d24f032 2574
a42c55f0 2575 $intl = get_pref("FRESH_ARTICLE_MAX_AGE", $owner_uid);
c1d7e6c3 2576
2d24f032 2577 if (DB_TYPE == "pgsql") {
be574731 2578 $query_strategy_part .= " AND date_entered > NOW() - INTERVAL '$intl hour' ";
2d24f032 2579 } else {
be574731 2580 $query_strategy_part .= " AND date_entered > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
2d24f032
AD
2581 }
2582
b2531a28
AD
2583 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2584 } else if ($feed == -4) { // all articles virtual feed
cf57eb3c 2585 $allow_archived = true;
b2531a28 2586 $query_strategy_part = "true";
e4f4b46f 2587 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
f822a8e5
AD
2588 } else if ($feed <= LABEL_BASE_INDEX) { // labels
2589 $label_id = feed_to_label_id($feed);
3de0261a 2590
ceb30ba4
AD
2591 $query_strategy_part = "label_id = '$label_id' AND
2592 ttrss_labels2.id = ttrss_user_labels2.label_id AND
2593 ttrss_user_labels2.article_id = ref_id";
3de0261a 2594
ef393de7 2595 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ceb30ba4 2596 $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
835fb294 2597 $allow_archived = true;
8d505d78 2598
ef393de7 2599 } else {
835fb294 2600 $query_strategy_part = "true";
ef393de7 2601 }
d6e5706d 2602
686852d5 2603 $order_by = "score DESC, date_entered DESC, updated DESC";
e939722a 2604
2e4faaac 2605 if ($view_mode == "unread_first") {
434bf856 2606 $order_by = "unread DESC, $order_by";
2e4faaac
AD
2607 }
2608
e939722a
AD
2609 if ($override_order) {
2610 $order_by = $override_order;
2611 }
8d505d78 2612
a6a61a8c
AD
2613 if ($override_strategy) {
2614 $query_strategy_part = $override_strategy;
2615 }
2616
2617 if ($override_vfeed) {
2618 $vfeed_query_part = $override_vfeed;
2619 }
2620
ef393de7
AD
2621 $feed_title = "";
2622
22fdebff 2623 if ($search) {
7032f2a5 2624 $feed_title = T_sprintf("Search results: %s", $search);
22fdebff 2625 } else {
ef393de7 2626 if ($cat_view) {
a42c55f0 2627 $feed_title = getCategoryTitle($feed);
ef393de7 2628 } else {
147f5632 2629 if (is_numeric($feed) && $feed > 0) {
6e3e8db9 2630 $result = db_query("SELECT title,site_url,last_error,last_updated
22fdebff 2631 FROM ttrss_feeds WHERE id = '$feed' AND owner_uid = $owner_uid");
8d505d78 2632
22fdebff
AD
2633 $feed_title = db_fetch_result($result, 0, "title");
2634 $feed_site_url = db_fetch_result($result, 0, "site_url");
2635 $last_error = db_fetch_result($result, 0, "last_error");
6e3e8db9 2636 $last_updated = db_fetch_result($result, 0, "last_updated");
22fdebff 2637 } else {
a42c55f0 2638 $feed_title = getFeedTitle($feed);
8d505d78 2639 }
88040f57 2640 }
ef393de7
AD
2641 }
2642
3b96b0ed 2643
c052e25a 2644 $content_query_part = "content, content AS content_preview, ";
62129e67 2645
62129e67 2646
75c648cf 2647 if (is_numeric($feed)) {
8d505d78 2648
ef393de7
AD
2649 if ($feed >= 0) {
2650 $feed_kind = "Feeds";
2651 } else {
2652 $feed_kind = "Labels";
2653 }
8d505d78 2654
95a82c08
AD
2655 if ($limit_query_part) {
2656 $offset_query_part = "OFFSET $offset";
2657 }
2658
7fdf8eca 2659 // proper override_order applied above
a42c55f0 2660 if ($vfeed_query_part && !$ignore_vfeed_group && get_pref('VFEED_GROUP_BY_FEED', $owner_uid)) {
6cfea5c7 2661 if (!$override_order) {
8d505d78 2662 $order_by = "ttrss_feeds.title, $order_by";
7fdf8eca
AD
2663 } else {
2664 $order_by = "ttrss_feeds.title, $override_order";
43fc671f 2665 }
6cfea5c7
AD
2666 }
2667
8361e724 2668 if (!$allow_archived) {
e04c18a2 2669 $from_qpart = "ttrss_entries,ttrss_user_entries,ttrss_feeds$ext_tables_part";
117335bf 2670 $feed_check_qpart = "ttrss_user_entries.feed_id = ttrss_feeds.id AND";
e04c18a2
AD
2671
2672 } else {
835fb294 2673 $from_qpart = "ttrss_entries$ext_tables_part,ttrss_user_entries
e04c18a2
AD
2674 LEFT JOIN ttrss_feeds ON (feed_id = ttrss_feeds.id)";
2675 }
2676
63c323f7
AD
2677 if ($vfeed_query_part)
2678 $vfeed_query_part .= "favicon_avg_color,";
2679
8d505d78 2680 $query = "SELECT DISTINCT
f9b2d27c 2681 date_entered,
1f64b1be 2682 guid,
ef393de7 2683 ttrss_entries.id,ttrss_entries.title,
46921916 2684 updated,
9c506873
AD
2685 label_cache,
2686 tag_cache,
c0644ee4 2687 always_display_enclosures,
d1fc2f92 2688 site_url,
c7e51de1 2689 note,
13992673
AD
2690 num_comments,
2691 comments,
db16ae50 2692 int_id,
abb04b76 2693 uuid,
6b461797 2694 lang,
bfd61d3f 2695 hide_images,
494a64ea 2696 unread,feed_id,marked,published,link,last_read,orig_feed_id,
7873d588 2697 last_marked, last_published,
ef393de7
AD
2698 $vfeed_query_part
2699 $content_query_part
ff6e357a 2700 author,score
ef393de7 2701 FROM
e04c18a2 2702 $from_qpart
ef393de7 2703 WHERE
e04c18a2 2704 $feed_check_qpart
ef393de7 2705 ttrss_user_entries.ref_id = ttrss_entries.id AND
c36bf4d5 2706 ttrss_user_entries.owner_uid = '$owner_uid' AND
ef393de7 2707 $search_query_part
36184020 2708 $filter_query_part
ef393de7 2709 $view_query_part
97e5dbb2 2710 $since_id_part
ef393de7 2711 $query_strategy_part ORDER BY $order_by
95a82c08 2712 $limit_query_part $offset_query_part";
4bc311fc 2713
b4e75b2a 2714 if ($_REQUEST["debug"]) print $query;
4bc311fc 2715
a42c55f0 2716 $result = db_query($query);
8d505d78 2717
ef393de7
AD
2718 } else {
2719 // browsing by tag
8d505d78 2720
147f5632
CM
2721 $select_qpart = "SELECT DISTINCT " .
2722 "date_entered," .
2723 "guid," .
2724 "note," .
2725 "ttrss_entries.id as id," .
2726 "title," .
2727 "updated," .
2728 "unread," .
2729 "feed_id," .
2730 "orig_feed_id," .
2731 "marked," .
d1fc2f92
AD
2732 "num_comments, " .
2733 "comments, " .
c0644ee4
AD
2734 "tag_cache," .
2735 "label_cache," .
147f5632 2736 "link," .
6b461797 2737 "lang," .
abb04b76 2738 "uuid," .
147f5632 2739 "last_read," .
94a567df 2740 "(SELECT hide_images FROM ttrss_feeds WHERE id = feed_id) AS hide_images," .
7873d588 2741 "last_marked, last_published, " .
97e5dbb2 2742 $since_id_part .
147f5632
CM
2743 $vfeed_query_part .
2744 $content_query_part .
147f5632
CM
2745 "score ";
2746
ef393de7 2747 $feed_kind = "Tags";
147f5632
CM
2748 $all_tags = explode(",", $feed);
2749 if ($search_mode == 'any') {
2750 $tag_sql = "tag_name in (" . implode(", ", array_map("db_quote", $all_tags)) . ")";
2751 $from_qpart = " FROM ttrss_entries,ttrss_user_entries,ttrss_tags ";
2752 $where_qpart = " WHERE " .
2753 "ref_id = ttrss_entries.id AND " .
2754 "ttrss_user_entries.owner_uid = $owner_uid AND " .
2755 "post_int_id = int_id AND $tag_sql AND " .
2756 $view_query_part .
2757 $search_query_part .
2758 $query_strategy_part . " ORDER BY $order_by " .
2759 $limit_query_part;
8d505d78 2760
147f5632
CM
2761 } else {
2762 $i = 1;
2763 $sub_selects = array();
2764 $sub_ands = array();
2765 foreach ($all_tags as $term) {
2766 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");
2767 $i++;
2768 }
2769 if ($i > 2) {
2770 $x = 1;
2771 $y = 2;
2772 do {
2773 array_push($sub_ands, "A$x.post_int_id = A$y.post_int_id");
2774 $x++;
2775 $y++;
2776 } while ($y < $i);
2777 }
2778 array_push($sub_ands, "A1.post_int_id = ttrss_user_entries.int_id and ttrss_user_entries.owner_uid = $owner_uid");
2779 array_push($sub_ands, "ttrss_user_entries.ref_id = ttrss_entries.id");
2780 $from_qpart = " FROM " . implode(", ", $sub_selects) . ", ttrss_user_entries, ttrss_entries";
2781 $where_qpart = " WHERE " . implode(" AND ", $sub_ands);
2782 }
2783 // error_log("TAG SQL: " . $tag_sql);
2784 // $tag_sql = "tag_name = '$feed'"; DEFAULT way
2785
2786 // error_log("[". $select_qpart . "][" . $from_qpart . "][" .$where_qpart . "]");
a42c55f0 2787 $result = db_query($select_qpart . $from_qpart . $where_qpart);
ef393de7
AD
2788 }
2789
dd90eb2c 2790 return array($result, $feed_title, $feed_site_url, $last_error, $last_updated, $search_words);
8d505d78 2791
ef393de7
AD
2792 }
2793
910592b4 2794 function sanitize($str, $force_remove_images = false, $owner = false, $site_url = false, $highlight_words = false, $article_id = false) {
ceb0cab5
AD
2795 if (!$owner) $owner = $_SESSION["uid"];
2796
96811a55
AD
2797 $res = trim($str); if (!$res) return '';
2798
8cc3c778
AD
2799 $charset_hack = '<head>
2800 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
2801 </head>';
2802
96811a55
AD
2803 $res = trim($res); if (!$res) return '';
2804
8cc3c778
AD
2805 libxml_use_internal_errors(true);
2806
2807 $doc = new DOMDocument();
2808 $doc->loadHTML($charset_hack . $res);
2809 $xpath = new DOMXPath($doc);
8d505d78 2810
8cc3c778
AD
2811 $entries = $xpath->query('(//a[@href]|//img[@src])');
2812
2813 foreach ($entries as $entry) {
2814
2815 if ($site_url) {
2816
891e36f5 2817 if ($entry->hasAttribute('href'))
8cc3c778
AD
2818 $entry->setAttribute('href',
2819 rewrite_relative_url($site_url, $entry->getAttribute('href')));
8d505d78 2820
f0bd8e65
AD
2821 if ($entry->hasAttribute('src')) {
2822 $src = rewrite_relative_url($site_url, $entry->getAttribute('src'));
2823
2824 $cached_filename = CACHE_DIR . '/images/' . sha1($src) . '.png';
2825
2826 if (file_exists($cached_filename)) {
2827 $src = SELF_URL_PATH . '/image.php?hash=' . sha1($src);
2828 }
2829
2830 $entry->setAttribute('src', $src);
2831 }
bfd61d3f
AD
2832
2833 if ($entry->nodeName == 'img') {
a42c55f0 2834 if (($owner && get_pref("STRIP_IMAGES", $owner)) ||
ba79634c 2835 $force_remove_images || $_SESSION["bw_limit"]) {
bfd61d3f
AD
2836
2837 $p = $doc->createElement('p');
2838
2839 $a = $doc->createElement('a');
2840 $a->setAttribute('href', $entry->getAttribute('src'));
2841
2842 $a->appendChild(new DOMText($entry->getAttribute('src')));
2843 $a->setAttribute('target', '_blank');
2844
2845 $p->appendChild($a);
2846
2847 $entry->parentNode->replaceChild($p, $entry);
2848 }
2849 }
8cc3c778
AD
2850 }
2851
fa403733 2852 if (strtolower($entry->nodeName) == "a") {
c401d5c9 2853 $entry->setAttribute("target", "_blank");
fa403733 2854 }
8dccabed 2855 }
8d505d78 2856
254a3f56
AD
2857 $entries = $xpath->query('//iframe');
2858 foreach ($entries as $entry) {
4e404802
AD
2859 $entry->setAttribute('sandbox', 'allow-scripts');
2860
254a3f56 2861 }
8dccabed 2862
1701b965 2863 $allowed_elements = array('a', 'address', 'audio', 'article', 'aside',
2864 'b', 'bdi', 'bdo', 'big', 'blockquote', 'body', 'br',
2865 'caption', 'cite', 'center', 'code', 'col', 'colgroup',
2866 'data', 'dd', 'del', 'details', 'div', 'dl', 'font',
2867 'dt', 'em', 'footer', 'figure', 'figcaption',
2868 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'header', 'html', 'i',
2869 'img', 'ins', 'kbd', 'li', 'main', 'mark', 'nav', 'noscript',
e0d12697 2870 'ol', 'p', 'pre', 'q', 'ruby', 'rp', 'rt', 's', 'samp', 'section',
2871 'small', 'source', 'span', 'strike', 'strong', 'sub', 'summary',
1701b965 2872 'sup', 'table', 'tbody', 'td', 'tfoot', 'th', 'thead', 'time',
b70ccfe6
FE
2873 'tr', 'track', 'tt', 'u', 'ul', 'var', 'wbr', 'video' );
2874
2875 if ($_SESSION['hasSandbox']) $allowed_elements[] = 'iframe';
2876
2877 $disallowed_attributes = array('id', 'style', 'class');
2878
1ffe3391 2879 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_SANITIZE) as $plugin) {
910592b4 2880 $retval = $plugin->hook_sanitize($doc, $site_url, $allowed_elements, $disallowed_attributes, $article_id);
1ffe3391
AD
2881 if (is_array($retval)) {
2882 $doc = $retval[0];
2883 $allowed_elements = $retval[1];
2884 $disallowed_attributes = $retval[2];
2885 } else {
2886 $doc = $retval;
e9b86f0a
AD
2887 }
2888 }
2889
be124dc2 2890 $doc->removeChild($doc->firstChild); //remove doctype
b70ccfe6 2891 $doc = strip_harmful_tags($doc, $allowed_elements, $disallowed_attributes);
dd90eb2c
AD
2892
2893 if ($highlight_words) {
2894 foreach ($highlight_words as $word) {
2895
d41ad037
AD
2896 // http://stackoverflow.com/questions/4081372/highlight-keywords-in-a-paragraph
2897
79834eda
AD
2898 $elements = $xpath->query("//*/text()");
2899
2900 foreach ($elements as $child) {
79834eda
AD
2901
2902 $fragment = $doc->createDocumentFragment();
2903 $text = $child->textContent;
2904 $stubs = array();
2905
2906 while (($pos = mb_stripos($text, $word)) !== false) {
2907 $fragment->appendChild(new DomText(mb_substr($text, 0, $pos)));
2908 $word = mb_substr($text, $pos, mb_strlen($word));
2909 $highlight = $doc->createElement('span');
2910 $highlight->appendChild(new DomText($word));
2911 $highlight->setAttribute('class', 'highlight');
2912 $fragment->appendChild($highlight);
2913 $text = mb_substr($text, $pos + mb_strlen($word));
2914 }
dd90eb2c 2915
79834eda 2916 if (!empty($text)) $fragment->appendChild(new DomText($text));
dd90eb2c 2917
79834eda 2918 $child->parentNode->replaceChild($fragment, $child);
dd90eb2c
AD
2919 }
2920 }
2921 }
2922
be124dc2 2923 $res = $doc->saveHTML();
dd90eb2c 2924
254a3f56
AD
2925 return $res;
2926 }
16ad9085 2927
b70ccfe6 2928 function strip_harmful_tags($doc, $allowed_elements, $disallowed_attributes) {
dcd7ecaa
AD
2929 $xpath = new DOMXPath($doc);
2930 $entries = $xpath->query('//*');
16ad9085 2931
254a3f56
AD
2932 foreach ($entries as $entry) {
2933 if (!in_array($entry->nodeName, $allowed_elements)) {
2934 $entry->parentNode->removeChild($entry);
2935 }
2936
2937 if ($entry->hasAttributes()) {
5f0081b0
AD
2938 $attrs_to_remove = array();
2939
2940 foreach ($entry->attributes as $attr) {
254a3f56
AD
2941
2942 if (strpos($attr->nodeName, 'on') === 0) {
5f0081b0 2943 array_push($attrs_to_remove, $attr);
254a3f56
AD
2944 }
2945
2946 if (in_array($attr->nodeName, $disallowed_attributes)) {
5f0081b0 2947 array_push($attrs_to_remove, $attr);
254a3f56
AD
2948 }
2949 }
5f0081b0
AD
2950
2951 foreach ($attrs_to_remove as $attr) {
2952 $entry->removeAttributeNode($attr);
2953 }
254a3f56
AD
2954 }
2955 }
2956
2957 return $doc;
183ad07b 2958 }
b72c3ef8 2959
6322ac79 2960 function check_for_update() {
63855db1 2961 if (CHECK_FOR_NEW_VERSION && $_SESSION['access_level'] >= 10) {
f6064662
AD
2962 $version_url = "http://tt-rss.org/version.php?ver=" . VERSION .
2963 "&iid=" . sha1(SELF_URL_PATH);
b72c3ef8 2964
63855db1 2965 $version_data = @fetch_file_contents($version_url);
b72c3ef8 2966
63855db1
AD
2967 if ($version_data) {
2968 $version_data = json_decode($version_data, true);
8d505d78 2969 if ($version_data && $version_data['version']) {
74a8b2f6 2970 if (version_compare(VERSION_STATIC, $version_data['version']) == -1) {
e91ad1e9 2971 return $version_data;
63855db1
AD
2972 }
2973 }
f67d9754 2974 }
b72c3ef8 2975 }
63855db1 2976 return false;
b72c3ef8 2977 }
472782e8 2978
a42c55f0 2979 function catchupArticlesById($ids, $cmode, $owner_uid = false) {
9968d46f
AD
2980
2981 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
ed41f171 2982 if (count($ids) == 0) return;
472782e8
AD
2983
2984 $tmp_ids = array();
2985
2986 foreach ($ids as $id) {
2987 array_push($tmp_ids, "ref_id = '$id'");
2988 }
2989
2990 $ids_qpart = join(" OR ", $tmp_ids);
2991
2992 if ($cmode == 0) {
a42c55f0 2993 db_query("UPDATE ttrss_user_entries SET
472782e8 2994 unread = false,last_read = NOW()
9968d46f 2995 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8 2996 } else if ($cmode == 1) {
a42c55f0 2997 db_query("UPDATE ttrss_user_entries SET
472782e8 2998 unread = true
9968d46f 2999 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8 3000 } else {
a42c55f0 3001 db_query("UPDATE ttrss_user_entries SET
472782e8 3002 unread = NOT unread,last_read = NOW()
9968d46f 3003 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8 3004 }
0737b95a
AD
3005
3006 /* update ccache */
3007
a42c55f0 3008 $result = db_query("SELECT DISTINCT feed_id FROM ttrss_user_entries
0737b95a
AD
3009 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
3010
3011 while ($line = db_fetch_assoc($result)) {
a42c55f0 3012 ccache_update($line["feed_id"], $owner_uid);
0737b95a 3013 }
472782e8
AD
3014 }
3015
a42c55f0 3016 function get_article_tags($id, $owner_uid = 0, $tag_cache = false) {
0b126ac2 3017
a42c55f0 3018 $a_id = db_escape_string($id);
0b126ac2 3019
bc976a8c
AD
3020 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
3021
8d505d78 3022 $query = "SELECT DISTINCT tag_name,
0c3d1c68 3023 owner_uid as owner FROM
0b126ac2 3024 ttrss_tags WHERE post_int_id = (SELECT int_id FROM ttrss_user_entries WHERE
bd3f2ade 3025 ref_id = '$a_id' AND owner_uid = '$owner_uid' LIMIT 1) ORDER BY tag_name";
0b126ac2 3026
8d505d78 3027 $tags = array();
bd3f2ade 3028
0e4a7d7a 3029 /* check cache first */
490c366d 3030
0e4a7d7a 3031 if ($tag_cache === false) {
a42c55f0 3032 $result = db_query("SELECT tag_cache FROM ttrss_user_entries
0e4a7d7a 3033 WHERE ref_id = '$id' AND owner_uid = $owner_uid");
490c366d 3034
0e4a7d7a
AD
3035 $tag_cache = db_fetch_result($result, 0, "tag_cache");
3036 }
bd3f2ade 3037
0e4a7d7a
AD
3038 if ($tag_cache) {
3039 $tags = explode(",", $tag_cache);
3040 } else {
490c366d 3041
0e4a7d7a 3042 /* do it the hard way */
490c366d 3043
a42c55f0 3044 $tmp_result = db_query($query);
490c366d 3045
0e4a7d7a
AD
3046 while ($tmp_line = db_fetch_assoc($tmp_result)) {
3047 array_push($tags, $tmp_line["tag_name"]);
3048 }
490c366d 3049
0e4a7d7a 3050 /* update the cache */
490c366d 3051
a42c55f0 3052 $tags_str = db_escape_string(join(",", $tags));
bd3f2ade 3053
a42c55f0 3054 db_query("UPDATE ttrss_user_entries
0e4a7d7a
AD
3055 SET tag_cache = '$tags_str' WHERE ref_id = '$id'
3056 AND owner_uid = $owner_uid");
0b126ac2
AD
3057 }
3058
3059 return $tags;
3060 }
3061
d62a3b63
AD
3062 function trim_array($array) {
3063 $tmp = $array;
3415b075 3064 array_walk($tmp, 'trim');
d62a3b63
AD
3065 return $tmp;
3066 }
3067
be832a1a 3068 function tag_is_valid($tag) {
ef063748
AD
3069 if ($tag == '') return false;
3070 if (preg_match("/^[0-9]*$/", $tag)) return false;
41f7498a 3071 if (mb_strlen($tag) > 250) return false;
ef063748 3072
ef063748
AD
3073 if (!$tag) return false;
3074
3075 return true;
be832a1a
AD
3076 }
3077
6322ac79 3078 function render_login_form() {
bb399c62
AD
3079 header('Cache-Control: public');
3080
d98e76d9 3081 require_once "login_form.php";
97acbaf1 3082 exit;
01a87dff
AD
3083 }
3084
42395d28 3085 function format_warning($msg, $id = "") {
883fee8d 3086 global $link;
8d505d78 3087 return "<div class=\"warning\" id=\"$id\">
2f20dd58 3088 <span><img src=\"images/alert.png\"></span><span>$msg</span></div>";
0d32b41e
AD
3089 }
3090
08ac193a 3091 function format_notice($msg, $id = "") {
883fee8d 3092 global $link;
8d505d78 3093 return "<div class=\"notice\" id=\"$id\">
2f20dd58 3094 <span><img src=\"images/information.png\"></span><span>$msg</span></div>";
0d32b41e
AD
3095 }
3096
08ac193a 3097 function format_error($msg, $id = "") {
883fee8d 3098 global $link;
8d505d78 3099 return "<div class=\"error\" id=\"$id\">
2f20dd58 3100 <span><img src=\"images/alert.png\"></span><span>$msg</span></div>";
68d2f95e
AD
3101 }
3102
4dccf1ed
AD
3103 function print_notice($msg) {
3104 return print format_notice($msg);
3105 }
3106
3107 function print_warning($msg) {
3108 return print format_warning($msg);
3109 }
3110
68d2f95e
AD
3111 function print_error($msg) {
3112 return print format_error($msg);
3113 }
3114
3115
4dccf1ed
AD
3116 function T_sprintf() {
3117 $args = func_get_args();
3118 return vsprintf(__(array_shift($args)), $args);
3119 }
3120
a42c55f0 3121 function format_inline_player($url, $ctype) {
51682b23
AD
3122
3123 $entry = "";
3124
44cd77b6
AD
3125 $url = htmlspecialchars($url);
3126
8d505d78 3127 if (strpos($ctype, "audio/") === 0) {
c3edc667
AD
3128
3129 if ($_SESSION["hasAudio"] && (strpos($ctype, "ogg") !== false ||
40fe2d73 3130 $_SESSION["hasMp3"])) {
c3edc667 3131
afd0849e 3132 $entry .= "<audio preload=\"none\" controls>
ca3bca99 3133 <source type=\"$ctype\" src=\"$url\"></source>
8d505d78 3134 </audio>";
c3edc667 3135
c3edc667 3136 } else {
8d505d78
AD
3137
3138 $entry .= "<object type=\"application/x-shockwave-flash\"
ad95edc2 3139 data=\"lib/button/musicplayer.swf?song_url=$url\"
8d505d78
AD
3140 width=\"17\" height=\"17\" style='float : left; margin-right : 5px;'>
3141 <param name=\"movie\"
ad95edc2 3142 value=\"lib/button/musicplayer.swf?song_url=$url\" />
8d505d78 3143 </object>";
c3edc667 3144 }
ca3bca99 3145
44cd77b6
AD
3146 if ($entry) $entry .= "&nbsp; <a target=\"_blank\"
3147 href=\"$url\">" . basename($url) . "</a>";
ca3bca99
AD
3148
3149 return $entry;
3150
51682b23
AD
3151 }
3152
ca3bca99
AD
3153 return "";
3154
3155/* $filename = substr($url, strrpos($url, "/")+1);
c3edc667
AD
3156
3157 $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
ca3bca99 3158 $filename . " (" . $ctype . ")" . "</a>"; */
c3edc667 3159
51682b23
AD
3160 }
3161
a42c55f0 3162 function format_article($id, $mark_as_read = true, $zoom_mode = false, $owner_uid = false) {
64436e10 3163 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
3de0261a 3164
009646d2
AD
3165 $rv = array();
3166
3167 $rv['id'] = $id;
3168
10eb9da8 3169 /* we can figure out feed_id from article id anyway, why do we
a42c55f0 3170 * pass feed_id here? let's ignore the argument :(*/
10eb9da8 3171
a42c55f0 3172 $result = db_query("SELECT feed_id FROM ttrss_user_entries
10eb9da8
AD
3173 WHERE ref_id = '$id'");
3174
e04c18a2 3175 $feed_id = (int) db_fetch_result($result, 0, "feed_id");
10eb9da8 3176
009646d2
AD
3177 $rv['feed_id'] = $feed_id;
3178
3179 //if (!$zoom_mode) { print "<article id='$id'><![CDATA["; };
3de0261a 3180
3de0261a 3181 if ($mark_as_read) {
a42c55f0 3182 $result = db_query("UPDATE ttrss_user_entries
8d505d78 3183 SET unread = false,last_read = NOW()
64436e10 3184 WHERE ref_id = '$id' AND owner_uid = $owner_uid");
8a4c759e 3185
a42c55f0 3186 ccache_update($feed_id, $owner_uid);
3de0261a
AD
3187 }
3188
6b461797 3189 $result = db_query("SELECT id,title,link,content,feed_id,comments,int_id,lang,
fc2b26a6 3190 ".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
8cc3c778 3191 (SELECT site_url FROM ttrss_feeds WHERE id = feed_id) as site_url,
ff04fe06 3192 (SELECT title FROM ttrss_feeds WHERE id = feed_id) as feed_title,
33de3d37 3193 (SELECT hide_images FROM ttrss_feeds WHERE id = feed_id) as hide_images,
60376e9d 3194 (SELECT always_display_enclosures FROM ttrss_feeds WHERE id = feed_id) as always_display_enclosures,
3de0261a 3195 num_comments,
9c506873 3196 tag_cache,
c7e51de1 3197 author,
ef83538d 3198 orig_feed_id,
c052e25a 3199 note
3de0261a 3200 FROM ttrss_entries,ttrss_user_entries
64436e10 3201 WHERE id = '$id' AND ref_id = id AND owner_uid = $owner_uid");
3de0261a
AD
3202
3203 if ($result) {
3204
3de0261a
AD
3205 $line = db_fetch_assoc($result);
3206
84d952f1
AD
3207 $tag_cache = $line["tag_cache"];
3208
a42c55f0 3209 $line["tags"] = get_article_tags($id, $owner_uid, $line["tag_cache"]);
84d952f1
AD
3210 unset($line["tag_cache"]);
3211
53a49ff8
AD
3212 $line["content"] = sanitize($line["content"],
3213 sql_bool_to_bool($line['hide_images']),
910592b4 3214 $owner_uid, $line["site_url"], false, $line["id"]);
84d952f1 3215
1ffe3391 3216 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_RENDER_ARTICLE) as $p) {
84d952f1
AD
3217 $line = $p->hook_render_article($line);
3218 }
8cc3c778 3219
3de0261a
AD
3220 $num_comments = $line["num_comments"];
3221 $entry_comments = "";
3222
3223 if ($num_comments > 0) {
3224 if ($line["comments"]) {
6e577ba1 3225 $comments_url = htmlspecialchars($line["comments"]);
3de0261a 3226 } else {
6e577ba1 3227 $comments_url = htmlspecialchars($line["link"]);
3de0261a 3228 }
ff04fe06
AD
3229 $entry_comments = "<a class=\"postComments\"
3230 target='_blank' href=\"$comments_url\">$num_comments ".
3231 _ngettext("comment", "comments", $num_comments)."</a>";
3232
3de0261a
AD
3233 } else {
3234 if ($line["comments"] && $line["link"] != $line["comments"]) {
ff04fe06 3235 $entry_comments = "<a class=\"postComments\" target='_blank' href=\"".htmlspecialchars($line["comments"])."\">".__("comments")."</a>";
8d505d78 3236 }
3de0261a
AD
3237 }
3238
eedfb635
AD
3239 if ($zoom_mode) {
3240 header("Content-Type: text/html");
009646d2 3241 $rv['content'] .= "<html><head>
5bb0cc8e 3242 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
eedfb635 3243 <title>Tiny Tiny RSS - ".$line["title"]."</title>
5bbc4bb4 3244 <link rel=\"stylesheet\" type=\"text/css\" href=\"css/tt-rss.css\">
d0ee0f52
AD
3245 <link rel=\"shortcut icon\" type=\"image/png\" href=\"images/favicon.png\">
3246 <link rel=\"icon\" type=\"image/png\" sizes=\"72x72\" href=\"images/favicon-72px.png\">
3247
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?>