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