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