]> git.wh0rd.org - tt-rss.git/blame - include/functions.php
rework image caching to work without permanent article content rewriting (refs #582)
[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
f0bd8e65
AD
2593 if ($entry->hasAttribute('src')) {
2594 $src = rewrite_relative_url($site_url, $entry->getAttribute('src'));
2595
2596 $cached_filename = CACHE_DIR . '/images/' . sha1($src) . '.png';
2597
2598 if (file_exists($cached_filename)) {
2599 $src = SELF_URL_PATH . '/image.php?hash=' . sha1($src);
2600 }
2601
2602 $entry->setAttribute('src', $src);
2603 }
8cc3c778
AD
2604 }
2605
fa403733 2606 if (strtolower($entry->nodeName) == "a") {
c401d5c9 2607 $entry->setAttribute("target", "_blank");
fa403733 2608 }
8dccabed 2609 }
8d505d78 2610
18f24d8e 2611 //$node = $doc->getElementsByTagName('body')->item(0);
8dccabed 2612
be124dc2
AD
2613 $doc->removeChild($doc->firstChild); //remove doctype
2614 $res = $doc->saveHTML();
16ad9085 2615
be124dc2
AD
2616 $config = array('safe' => 1, 'deny_attribute' => 'style, width, height, class, id', 'comment' => 1, 'cdata' => 1, 'balance' => 0);
2617 $spec = 'img=width,height';
2618 $res = htmLawed($res, $config, $spec);
16ad9085
AD
2619
2620 return $res;
183ad07b 2621 }
b72c3ef8 2622
73495fd1 2623 function check_for_update($link) {
63855db1 2624 if (CHECK_FOR_NEW_VERSION && $_SESSION['access_level'] >= 10) {
f6064662
AD
2625 $version_url = "http://tt-rss.org/version.php?ver=" . VERSION .
2626 "&iid=" . sha1(SELF_URL_PATH);
b72c3ef8 2627
63855db1 2628 $version_data = @fetch_file_contents($version_url);
b72c3ef8 2629
63855db1
AD
2630 if ($version_data) {
2631 $version_data = json_decode($version_data, true);
8d505d78 2632 if ($version_data && $version_data['version']) {
f67d9754 2633
63855db1 2634 if (version_compare(VERSION, $version_data['version']) == -1) {
e91ad1e9 2635 return $version_data;
63855db1
AD
2636 }
2637 }
f67d9754 2638 }
b72c3ef8 2639 }
63855db1 2640 return false;
b72c3ef8 2641 }
472782e8 2642
9968d46f
AD
2643 function catchupArticlesById($link, $ids, $cmode, $owner_uid = false) {
2644
2645 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
ed41f171 2646 if (count($ids) == 0) return;
472782e8
AD
2647
2648 $tmp_ids = array();
2649
2650 foreach ($ids as $id) {
2651 array_push($tmp_ids, "ref_id = '$id'");
2652 }
2653
2654 $ids_qpart = join(" OR ", $tmp_ids);
2655
2656 if ($cmode == 0) {
8d505d78 2657 db_query($link, "UPDATE ttrss_user_entries SET
472782e8 2658 unread = false,last_read = NOW()
9968d46f 2659 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8 2660 } else if ($cmode == 1) {
8d505d78 2661 db_query($link, "UPDATE ttrss_user_entries SET
472782e8 2662 unread = true
9968d46f 2663 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8 2664 } else {
8d505d78 2665 db_query($link, "UPDATE ttrss_user_entries SET
472782e8 2666 unread = NOT unread,last_read = NOW()
9968d46f 2667 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8 2668 }
0737b95a
AD
2669
2670 /* update ccache */
2671
2672 $result = db_query($link, "SELECT DISTINCT feed_id FROM ttrss_user_entries
2673 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
2674
2675 while ($line = db_fetch_assoc($result)) {
2676 ccache_update($link, $line["feed_id"], $owner_uid);
2677 }
472782e8
AD
2678 }
2679
ca5133cb 2680 function get_article_tags($link, $id, $owner_uid = 0, $tag_cache = false) {
0b126ac2
AD
2681
2682 $a_id = db_escape_string($id);
2683
bc976a8c
AD
2684 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
2685
8d505d78 2686 $query = "SELECT DISTINCT tag_name,
0c3d1c68 2687 owner_uid as owner FROM
0b126ac2 2688 ttrss_tags WHERE post_int_id = (SELECT int_id FROM ttrss_user_entries WHERE
bd3f2ade 2689 ref_id = '$a_id' AND owner_uid = '$owner_uid' LIMIT 1) ORDER BY tag_name";
0b126ac2 2690
bd3f2ade 2691 $obj_id = md5("TAGS:$owner_uid:$id");
8d505d78 2692 $tags = array();
bd3f2ade 2693
0e4a7d7a 2694 /* check cache first */
490c366d 2695
0e4a7d7a
AD
2696 if ($tag_cache === false) {
2697 $result = db_query($link, "SELECT tag_cache FROM ttrss_user_entries
2698 WHERE ref_id = '$id' AND owner_uid = $owner_uid");
490c366d 2699
0e4a7d7a
AD
2700 $tag_cache = db_fetch_result($result, 0, "tag_cache");
2701 }
bd3f2ade 2702
0e4a7d7a
AD
2703 if ($tag_cache) {
2704 $tags = explode(",", $tag_cache);
2705 } else {
490c366d 2706
0e4a7d7a 2707 /* do it the hard way */
490c366d 2708
0e4a7d7a 2709 $tmp_result = db_query($link, $query);
490c366d 2710
0e4a7d7a
AD
2711 while ($tmp_line = db_fetch_assoc($tmp_result)) {
2712 array_push($tags, $tmp_line["tag_name"]);
2713 }
490c366d 2714
0e4a7d7a 2715 /* update the cache */
490c366d 2716
0e4a7d7a 2717 $tags_str = db_escape_string(join(",", $tags));
bd3f2ade 2718
0e4a7d7a
AD
2719 db_query($link, "UPDATE ttrss_user_entries
2720 SET tag_cache = '$tags_str' WHERE ref_id = '$id'
2721 AND owner_uid = $owner_uid");
0b126ac2
AD
2722 }
2723
2724 return $tags;
2725 }
2726
d62a3b63
AD
2727 function trim_array($array) {
2728 $tmp = $array;
3415b075 2729 array_walk($tmp, 'trim');
d62a3b63
AD
2730 return $tmp;
2731 }
2732
be832a1a 2733 function tag_is_valid($tag) {
ef063748
AD
2734 if ($tag == '') return false;
2735 if (preg_match("/^[0-9]*$/", $tag)) return false;
41f7498a 2736 if (mb_strlen($tag) > 250) return false;
ef063748 2737
31365729
AD
2738 if (function_exists('iconv')) {
2739 $tag = iconv("utf-8", "utf-8", $tag);
2740 }
2741
ef063748
AD
2742 if (!$tag) return false;
2743
2744 return true;
be832a1a
AD
2745 }
2746
97acbaf1
AD
2747 function render_login_form($link, $form_id = 0) {
2748 switch ($form_id) {
afb12ed0 2749 case 0:
793185a9 2750 require_once "login_form.php";
afb12ed0
AD
2751 break;
2752 case 1:
793185a9 2753 require_once "mobile/login_form.php";
afb12ed0 2754 break;
793185a9 2755 }
97acbaf1 2756 exit;
01a87dff
AD
2757 }
2758
dc56b3b7
AD
2759 // from http://developer.apple.com/internet/safari/faq.html
2760 function no_cache_incantation() {
2761 header("Expires: Mon, 22 Dec 1980 00:00:00 GMT"); // Happy birthday to me :)
2762 header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified
2763 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); // HTTP/1.1
2764 header("Cache-Control: post-check=0, pre-check=0", false);
2765 header("Pragma: no-cache"); // HTTP/1.0
2766 }
2767
42395d28 2768 function format_warning($msg, $id = "") {
883fee8d 2769 global $link;
8d505d78 2770 return "<div class=\"warning\" id=\"$id\">
c2167866 2771 <img src=\"".theme_image($link, "images/sign_excl.svg")."\">$msg</div>";
0d32b41e
AD
2772 }
2773
08ac193a 2774 function format_notice($msg, $id = "") {
883fee8d 2775 global $link;
8d505d78 2776 return "<div class=\"notice\" id=\"$id\">
c2167866 2777 <img src=\"".theme_image($link, "images/sign_info.svg")."\">$msg</div>";
0d32b41e
AD
2778 }
2779
08ac193a 2780 function format_error($msg, $id = "") {
883fee8d 2781 global $link;
8d505d78 2782 return "<div class=\"error\" id=\"$id\">
c2167866 2783 <img src=\"".theme_image($link, "images/sign_excl.svg")."\">$msg</div>";
68d2f95e
AD
2784 }
2785
4dccf1ed
AD
2786 function print_notice($msg) {
2787 return print format_notice($msg);
2788 }
2789
2790 function print_warning($msg) {
2791 return print format_warning($msg);
2792 }
2793
68d2f95e
AD
2794 function print_error($msg) {
2795 return print format_error($msg);
2796 }
2797
2798
4dccf1ed
AD
2799 function T_sprintf() {
2800 $args = func_get_args();
2801 return vsprintf(__(array_shift($args)), $args);
2802 }
2803
51682b23
AD
2804 function format_inline_player($link, $url, $ctype) {
2805
2806 $entry = "";
2807
8d505d78 2808 if (strpos($ctype, "audio/") === 0) {
c3edc667
AD
2809
2810 if ($_SESSION["hasAudio"] && (strpos($ctype, "ogg") !== false ||
8d505d78 2811 strpos($_SERVER['HTTP_USER_AGENT'], "Chrome") !== false ||
c3edc667
AD
2812 strpos($_SERVER['HTTP_USER_AGENT'], "Safari") !== false )) {
2813
2814 $id = 'AUDIO-' . uniqid();
2815
cb081096 2816 $entry .= "<audio id=\"$id\"\" controls style='display : none'>
ca3bca99 2817 <source type=\"$ctype\" src=\"$url\"></source>
8d505d78 2818 </audio>";
c3edc667 2819
8d505d78 2820 $entry .= "<span onclick=\"player(this)\"
c3edc667
AD
2821 title=\"".__("Click to play")."\" status=\"0\"
2822 class=\"player\" audio-id=\"$id\">".__("Play")."</span>";
2823
2824 } else {
8d505d78
AD
2825
2826 $entry .= "<object type=\"application/x-shockwave-flash\"
ad95edc2 2827 data=\"lib/button/musicplayer.swf?song_url=$url\"
8d505d78
AD
2828 width=\"17\" height=\"17\" style='float : left; margin-right : 5px;'>
2829 <param name=\"movie\"
ad95edc2 2830 value=\"lib/button/musicplayer.swf?song_url=$url\" />
8d505d78 2831 </object>";
c3edc667 2832 }
ca3bca99
AD
2833
2834 if ($entry) $entry .= "&nbsp;" . basename($url);
2835
2836 return $entry;
2837
51682b23
AD
2838 }
2839
ca3bca99
AD
2840 return "";
2841
2842/* $filename = substr($url, strrpos($url, "/")+1);
c3edc667
AD
2843
2844 $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
ca3bca99 2845 $filename . " (" . $ctype . ")" . "</a>"; */
c3edc667 2846
51682b23
AD
2847 }
2848
64436e10 2849 function format_article($link, $id, $mark_as_read = true, $zoom_mode = false, $owner_uid = false) {
64436e10 2850 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
3de0261a 2851
009646d2
AD
2852 $rv = array();
2853
2854 $rv['id'] = $id;
2855
10eb9da8 2856 /* we can figure out feed_id from article id anyway, why do we
e04c18a2 2857 * pass feed_id here? let's ignore the argument :( */
10eb9da8
AD
2858
2859 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
2860 WHERE ref_id = '$id'");
2861
e04c18a2 2862 $feed_id = (int) db_fetch_result($result, 0, "feed_id");
10eb9da8 2863
009646d2
AD
2864 $rv['feed_id'] = $feed_id;
2865
2866 //if (!$zoom_mode) { print "<article id='$id'><![CDATA["; };
3de0261a 2867
3de0261a 2868 if ($mark_as_read) {
8d505d78
AD
2869 $result = db_query($link, "UPDATE ttrss_user_entries
2870 SET unread = false,last_read = NOW()
64436e10 2871 WHERE ref_id = '$id' AND owner_uid = $owner_uid");
8a4c759e 2872
64436e10 2873 ccache_update($link, $feed_id, $owner_uid);
3de0261a
AD
2874 }
2875
7252abe3 2876 $result = db_query($link, "SELECT id,title,link,content,feed_id,comments,int_id,
fc2b26a6 2877 ".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
8cc3c778 2878 (SELECT site_url FROM ttrss_feeds WHERE id = feed_id) as site_url,
3de0261a 2879 num_comments,
9c506873 2880 tag_cache,
c7e51de1 2881 author,
ef83538d 2882 orig_feed_id,
87764a50
AD
2883 note,
2884 cached_content
3de0261a 2885 FROM ttrss_entries,ttrss_user_entries
64436e10 2886 WHERE id = '$id' AND ref_id = id AND owner_uid = $owner_uid");
3de0261a
AD
2887
2888 if ($result) {
2889
3de0261a
AD
2890 $line = db_fetch_assoc($result);
2891
84d952f1
AD
2892 $tag_cache = $line["tag_cache"];
2893
2894 $line["tags"] = get_article_tags($link, $id, $owner_uid, $line["tag_cache"]);
2895 unset($line["tag_cache"]);
2896
2897 $line["content"] = sanitize($link, $line["content"], false, $owner_uid, $line["site_url"]);
2898
2899 global $pluginhost;
2900
2901 foreach ($pluginhost->get_hooks($pluginhost::HOOK_RENDER_ARTICLE) as $p) {
2902 $line = $p->hook_render_article($line);
2903 }
8cc3c778 2904
3de0261a
AD
2905 $num_comments = $line["num_comments"];
2906 $entry_comments = "";
2907
2908 if ($num_comments > 0) {
2909 if ($line["comments"]) {
6e577ba1 2910 $comments_url = htmlspecialchars($line["comments"]);
3de0261a 2911 } else {
6e577ba1 2912 $comments_url = htmlspecialchars($line["link"]);
3de0261a 2913 }
7514749d 2914 $entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
3de0261a
AD
2915 } else {
2916 if ($line["comments"] && $line["link"] != $line["comments"]) {
6e577ba1 2917 $entry_comments = "<a target='_blank' href=\"".htmlspecialchars($line["comments"])."\">comments</a>";
8d505d78 2918 }
3de0261a
AD
2919 }
2920
eedfb635
AD
2921 if ($zoom_mode) {
2922 header("Content-Type: text/html");
009646d2 2923 $rv['content'] .= "<html><head>
5bb0cc8e 2924 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
eedfb635
AD
2925 <title>Tiny Tiny RSS - ".$line["title"]."</title>
2926 <link rel=\"stylesheet\" type=\"text/css\" href=\"tt-rss.css\">
2927 </head><body>";
2928 }
2929
5c568973 2930 $title_escaped = htmlspecialchars($line['title']);
2ea9bbfd 2931
e54dbacb
AD
2932 $rv['content'] .= "<div id=\"PTITLE-FULL-$id\" style=\"display : none\">" .
2933 strip_tags($line['title']) . "</div>";
2934
009646d2 2935 $rv['content'] .= "<div class=\"postReply\" id=\"POST-$id\">";
bc372fe3 2936
126e639a 2937 $rv['content'] .= "<div class=\"postHeader\" id=\"POSTHDR-$id\">";
3de0261a
AD
2938
2939 $entry_author = $line["author"];
2940
2941 if ($entry_author) {
60164936 2942 $entry_author = __(" - ") . $entry_author;
3de0261a
AD
2943 }
2944
8d505d78 2945 $parsed_updated = make_local_datetime($link, $line["updated"], true,
64436e10 2946 $owner_uid, true);
324944f3 2947
5321e775 2948 $rv['content'] .= "<div class=\"postDate\">$parsed_updated</div>";
3de0261a
AD
2949
2950 if ($line["link"]) {
c6c010d9 2951 $rv['content'] .= "<div class='postTitle'><a target='_blank'
a64029e5 2952 title=\"".htmlspecialchars($line['title'])."\"
8d505d78 2953 href=\"" .
5c568973 2954 htmlspecialchars($line["link"]) . "\">" .
c6c010d9 2955 $line["title"] .
a64029e5 2956 "<span class='author'>$entry_author</span></a></div>";
3de0261a 2957 } else {
c6c010d9 2958 $rv['content'] .= "<div class='postTitle'>" . $line["title"] . "$entry_author</div>";
3de0261a
AD
2959 }
2960
84d952f1
AD
2961 $tags_str = format_tags_string($line["tags"], $id);
2962 $tags_str_full = join(", ", $line["tags"]);
0780f4f4
AD
2963
2964 if (!$tags_str_full) $tags_str_full = __("no tags");
e7544143 2965
3de0261a
AD
2966 if (!$entry_comments) $entry_comments = "&nbsp;"; # placeholder
2967
f0755b7c 2968 $rv['content'] .= "<div class='postTags' style='float : right'>
8d505d78 2969 <img src='".theme_image($link, 'images/tag.png')."'
e9823609 2970 class='tagsPic' alt='Tags' title='Tags'>&nbsp;";
eedfb635
AD
2971
2972 if (!$zoom_mode) {
009646d2 2973 $rv['content'] .= "<span id=\"ATSTR-$id\">$tags_str</span>
8d505d78 2974 <a title=\"".__('Edit tags for this article')."\"
31a53903 2975 href=\"#\" onclick=\"editArticleTags($id, $feed_id)\">(+)</a>";
4710e3dc 2976
0780f4f4
AD
2977 $rv['content'] .= "<div dojoType=\"dijit.Tooltip\"
2978 id=\"ATSTRTIP-$id\" connectId=\"ATSTR-$id\"
2979 position=\"below\">$tags_str_full</div>";
2980
19c73507 2981 global $pluginhost;
f9ac31d6 2982
19c73507
AD
2983 foreach ($pluginhost->get_hooks($pluginhost::HOOK_ARTICLE_BUTTON) as $p) {
2984 $rv['content'] .= $p->hook_article_button($line);
411fe209
AD
2985 }
2986
6f3976c9 2987
24ecbcae
AD
2988 } else {
2989 $tags_str = strip_tags($tags_str);
009646d2 2990 $rv['content'] .= "<span id=\"ATSTR-$id\">$tags_str</span>";
eedfb635 2991 }
009646d2
AD
2992 $rv['content'] .= "</div>";
2993 $rv['content'] .= "<div clear='both'>$entry_comments</div>";
3de0261a 2994
ef83538d
AD
2995 if ($line["orig_feed_id"]) {
2996
2997 $tmp_result = db_query($link, "SELECT * FROM ttrss_archived_feeds
2998 WHERE id = ".$line["orig_feed_id"]);
2999
3000 if (db_num_rows($tmp_result) != 0) {
3001
009646d2
AD
3002 $rv['content'] .= "<div clear='both'>";
3003 $rv['content'] .= __("Originally from:");
ef83538d 3004
009646d2 3005 $rv['content'] .= "&nbsp;";
ef83538d
AD
3006
3007 $tmp_line = db_fetch_assoc($tmp_result);
3008
009646d2 3009 $rv['content'] .= "<a target='_blank'
ef83538d
AD
3010 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
3011 $tmp_line['title'] . "</a>";
3012
009646d2 3013 $rv['content'] .= "&nbsp;";
ef83538d 3014
009646d2 3015 $rv['content'] .= "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
c2167866 3016 $rv['content'] .= "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_set.svg'></a>";
ef83538d 3017
009646d2 3018 $rv['content'] .= "</div>";
ef83538d
AD
3019 }
3020 }
3021
009646d2 3022 $rv['content'] .= "</div>";
3de0261a 3023
009646d2 3024 $rv['content'] .= "<div id=\"POSTNOTE-$id\">";
c7e51de1 3025 if ($line['note']) {
16cbc19a 3026 $rv['content'] .= format_article_note($id, $line['note'], !$zoom_mode);
c7e51de1 3027 }
009646d2 3028 $rv['content'] .= "</div>";
c7e51de1 3029
009646d2 3030 $rv['content'] .= "<div class=\"postContent\">";
741b6090 3031
d3d69daa
AD
3032 // N-grams
3033
6f4bd262 3034 if (DB_TYPE == "pgsql" and defined('_NGRAM_TITLE_RELATED_THRESHOLD')) {
d3d69daa
AD
3035
3036 $ngram_result = db_query($link, "SELECT id,title FROM
3037 ttrss_entries,ttrss_user_entries
3038 WHERE ref_id = id AND updated >= NOW() - INTERVAL '7 day'
6f4bd262 3039 AND similarity(title, '$title_escaped') >= "._NGRAM_TITLE_RELATED_THRESHOLD."
d3d69daa
AD
3040 AND title != '$title_escaped'
3041 AND owner_uid = $owner_uid");
3042
3043 if (db_num_rows($ngram_result) > 0) {
3044 $rv['content'] .= "<div dojoType=\"dijit.form.DropDownButton\">".
3045 "<span>" . __('Related')."</span>";
3046 $rv['content'] .= "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
3047
3048 while ($nline = db_fetch_assoc($ngram_result)) {
3049 $rv['content'] .= "<div onclick=\"hlOpenInNewTab(null,".$nline['id'].")\"
3050 dojoType=\"dijit.MenuItem\">".$nline['title']."</div>";
3051
3052 }
3053 $rv['content'] .= "</div></div><br/";
3054 }
3055 }
3056
84d952f1 3057 $rv['content'] .= $line["content"];
db54143e 3058
009646d2 3059 $rv['content'] .= format_article_enclosures($link, $id,
84d952f1 3060 $always_display_enclosures, $line["content"]);
ce53e200 3061
009646d2 3062 $rv['content'] .= "</div>";
dad14b51 3063
009646d2 3064 $rv['content'] .= "</div>";
3de0261a
AD
3065
3066 }
3067
009646d2
AD
3068 if ($zoom_mode) {
3069 $rv['content'] .= "
eedfb635 3070 <div style=\"text-align : center\">
2ae69126
AD
3071 <button onclick=\"return window.close()\">".
3072 __("Close this window")."</button></div>";
009646d2 3073 $rv['content'] .= "</body></html>";
eedfb635 3074 }
3de0261a 3075
009646d2
AD
3076 return $rv;
3077
3de0261a
AD
3078 }
3079
79178062 3080 function print_checkpoint($n, $s) {
fa9e88c3 3081 $ts = microtime(true);
79178062
AD
3082 echo sprintf("<!-- CP[$n] %.4f seconds -->", $ts - $s);
3083 return $ts;
3084 }
3de0261a 3085
79178062
AD
3086 function sanitize_tag($tag) {
3087 $tag = trim($tag);
52d7e7da 3088
79178062 3089 $tag = mb_strtolower($tag, 'utf-8');
bd202c3f 3090
79178062 3091 $tag = preg_replace('/[\'\"\+\>\<]/', "", $tag);
46921916 3092
79178062
AD
3093// $tag = str_replace('"', "", $tag);
3094// $tag = str_replace("+", " ", $tag);
3095 $tag = str_replace("technorati tag: ", "", $tag);
961f4c73 3096
79178062
AD
3097 return $tag;
3098 }
3de0261a 3099
79178062 3100 function get_self_url_prefix() {
51cc3873
AD
3101 if (strrpos(SELF_URL_PATH, "/") === strlen(SELF_URL_PATH)-1) {
3102 return substr(SELF_URL_PATH, 0, strlen(SELF_URL_PATH)-1);
3103 } else {
3104 return SELF_URL_PATH;
3105 }
79178062 3106 }
a9bcfb8f 3107
45004d43
AD
3108 /**
3109 * Compute the Mozilla Firefox feed adding URL from server HOST and REQUEST_URI.
3110 *
3111 * @return string The Mozilla Firefox feed adding URL.
3112 */
3113 function add_feed_url() {
ed102aa0
AD
3114 //$url_path = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
3115
3116 $url_path = get_self_url_prefix() .
97acbaf1 3117 "/public.php?op=subscribe&feed_url=%s";
755a43ee 3118 return $url_path;
45004d43
AD
3119 } // function add_feed_url
3120
e90053fe
AD
3121 function encrypt_password($pass, $salt = '', $mode2 = false) {
3122 if ($salt && $mode2) {
3123 return "MODE2:" . hash('sha256', $salt . $pass);
3124 } else if ($salt) {
3125 return "SHA1X:" . sha1("$salt:$pass");
1a9f4d3c
AD
3126 } else {
3127 return "SHA1:" . sha1($pass);
3128 }
45004d43
AD
3129 } // function encrypt_password
3130
6aff7845 3131 function load_filters($link, $feed_id, $owner_uid, $action_id = false) {
fee840fb
AD
3132 $filters = array();
3133
5574b09e 3134 $cat_id = (int)getFeedCategory($link, $feed_id);
fee840fb 3135
6aff7845
AD
3136 $result = db_query($link, "SELECT * FROM ttrss_filters2 WHERE
3137 owner_uid = $owner_uid AND enabled = true");
8d505d78 3138
67bd0b1f
AD
3139 $check_cats = join(",", array_merge(
3140 getParentCategories($link, $cat_id, $owner_uid),
3141 array($cat_id)));
3142
0e4a7d7a 3143 while ($line = db_fetch_assoc($result)) {
6aff7845
AD
3144 $filter_id = $line["id"];
3145
3146 $result2 = db_query($link, "SELECT
3147 r.reg_exp, r.feed_id, r.cat_id, r.cat_filter, t.name AS type_name
3148 FROM ttrss_filters2_rules AS r,
3149 ttrss_filter_types AS t
3150 WHERE
67bd0b1f 3151 (cat_id IS NULL OR cat_id IN ($check_cats)) AND
6aff7845
AD
3152 (feed_id IS NULL OR feed_id = '$feed_id') AND
3153 filter_type = t.id AND filter_id = '$filter_id'");
3154
3155 $rules = array();
3156 $actions = array();
ba975b2e 3157
6aff7845
AD
3158 while ($rule_line = db_fetch_assoc($result2)) {
3159# print_r($rule_line);
8d505d78 3160
6aff7845
AD
3161 $rule = array();
3162 $rule["reg_exp"] = $rule_line["reg_exp"];
3163 $rule["type"] = $rule_line["type_name"];
3164
3165 array_push($rules, $rule);
3166 }
3167
3168 $result2 = db_query($link, "SELECT a.action_param,t.name AS type_name
3169 FROM ttrss_filters2_actions AS a,
3170 ttrss_filter_actions AS t
3171 WHERE
3172 action_id = t.id AND filter_id = '$filter_id'");
3173
3174 while ($action_line = db_fetch_assoc($result2)) {
3175# print_r($action_line);
3176
3177 $action = array();
3178 $action["type"] = $action_line["type_name"];
3179 $action["param"] = $action_line["action_param"];
3180
3181 array_push($actions, $action);
0e4a7d7a 3182 }
b8ffa322 3183
b8ffa322 3184
6aff7845
AD
3185 $filter = array();
3186 $filter["match_any_rule"] = sql_bool_to_bool($line["match_any_rule"]);
3187 $filter["rules"] = $rules;
3188 $filter["actions"] = $actions;
3189
3190 if (count($rules) > 0 && count($actions) > 0) {
3191 array_push($filters, $filter);
3192 }
3193 }
3194
0e4a7d7a 3195 return $filters;
fee840fb 3196 }
1e36af0c
AD
3197
3198 function get_score_pic($score) {
8d505d78
AD
3199 if ($score > 100) {
3200 return "score_high.png";
3201 } else if ($score > 0) {
883fee8d 3202 return "score_half_high.png";
1cce3aca 3203 } else if ($score < -100) {
883fee8d 3204 return "score_low.png";
1cce3aca 3205 } else if ($score < 0) {
883fee8d 3206 return "score_half_low.png";
8d505d78 3207 } else {
883fee8d 3208 return "score_neutral.png";
1e36af0c
AD
3209 }
3210 }
ec92c9d1 3211
7defa089
AD
3212 function feed_has_icon($id) {
3213 return is_file(ICONS_DIR . "/$id.ico") && filesize(ICONS_DIR . "/$id.ico") > 0;
3214 }
f29ba148
AD
3215
3216 function init_connection($link) {
8c0496f7
AD
3217 if ($link) {
3218
3219 if (DB_TYPE == "pgsql") {
3220 pg_query($link, "set client_encoding = 'UTF-8'");
3221 pg_set_client_encoding("UNICODE");
3222 pg_query($link, "set datestyle = 'ISO, european'");
3223 pg_query($link, "set TIME ZONE 0");
3224 } else {
3225 db_query($link, "SET time_zone = '+0:0'");
3226
3227 if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
3228 db_query($link, "SET NAMES " . MYSQL_CHARSET);
3229 }
3230 }
19c73507
AD
3231
3232 global $pluginhost;
3233
8c0496f7 3234 $pluginhost = new PluginHost($link);
d2a421e3 3235 $pluginhost->load(PLUGINS, $pluginhost::KIND_ALL);
19c73507 3236
5f0a3741
AD
3237 return true;
3238 } else {
3239 print "Unable to connect to database:" . db_last_error();
3240 return false;
f29ba148
AD
3241 }
3242 }
5e96ca9d 3243
307d187c
AD
3244 function format_tags_string($tags, $id) {
3245
3246 $tags_str = "";
3247 $tags_nolinks_str = "";
3248
3249 $num_tags = 0;
3250
d9084cf2 3251 $tag_limit = 6;
307d187c
AD
3252
3253 $formatted_tags = array();
3254
3255 foreach ($tags as $tag) {
3256 $num_tags++;
3257 $tag_escaped = str_replace("'", "\\'", $tag);
3258
275a0af2
AD
3259 if (mb_strlen($tag) > 30) {
3260 $tag = truncate_string($tag, 30);
3261 }
3262
307d187c
AD
3263 $tag_str = "<a href=\"javascript:viewfeed('$tag_escaped')\">$tag</a>";
3264
3265 array_push($formatted_tags, $tag_str);
275a0af2
AD
3266
3267 $tmp_tags_str = implode(", ", $formatted_tags);
8d505d78 3268
275a0af2 3269 if ($num_tags == $tag_limit || mb_strlen($tmp_tags_str) > 150) {
307d187c
AD
3270 break;
3271 }
3272 }
3273
3274 $tags_str = implode(", ", $formatted_tags);
3275
3276 if ($num_tags < count($tags)) {
3277 $tags_str .= ", &hellip;";
3278 }
3279
3280 if ($num_tags == 0) {
3281 $tags_str = __("no tags");
3282 }
3283
3284 return $tags_str;
3285
3286 }
2eb9c95c
AD
3287
3288 function format_article_labels($labels, $id) {
3289
3290 $labels_str = "";
3291
3292 foreach ($labels as $l) {
8d505d78 3293 $labels_str .= sprintf("<span class='hlLabelRef'
2eb9c95c
AD
3294 style='color : %s; background-color : %s'>%s</span>",
3295 $l[2], $l[3], $l[1]);
3296 }
3297
3298 return $labels_str;
3299
3300 }
c7e51de1 3301
16cbc19a 3302 function format_article_note($id, $note, $allow_edit = true) {
c7e51de1 3303
fcfa9ef1
AD
3304 $str = "<div class='articleNote' onclick=\"editArticleNote($id)\">
3305 <div class='noteEdit' onclick=\"editArticleNote($id)\">".
16cbc19a 3306 ($allow_edit ? __('(edit note)') : "")."</div>$note</div>";
c7e51de1
AD
3307
3308 return $str;
3309 }
7f969260 3310
7e329f13 3311
d2a317e3
AD
3312 function get_feed_category($link, $feed_cat, $parent_cat_id = false) {
3313 if ($parent_cat_id) {
3314 $parent_qpart = "parent_cat = '$parent_cat_id'";
3315 $parent_insert = "'$parent_cat_id'";
3316 } else {
3317 $parent_qpart = "parent_cat IS NULL";
3318 $parent_insert = "NULL";
3319 }
3320
3321 $result = db_query($link,
3322 "SELECT id FROM ttrss_feed_categories
3323 WHERE $parent_qpart AND title = '$feed_cat' AND owner_uid = ".$_SESSION["uid"]);
3324
3325 if (db_num_rows($result) == 0) {
3326 return false;
3327 } else {
3328 return db_fetch_result($result, 0, "id");
3329 }
3330 }
3331
3332 function add_feed_category($link, $feed_cat, $parent_cat_id = false) {
c00907f2
AD
3333
3334 if (!$feed_cat) return false;
3335
5c7c7da9
AD
3336 db_query($link, "BEGIN");
3337
d2a317e3
AD
3338 if ($parent_cat_id) {
3339 $parent_qpart = "parent_cat = '$parent_cat_id'";
3340 $parent_insert = "'$parent_cat_id'";
3341 } else {
3342 $parent_qpart = "parent_cat IS NULL";
3343 $parent_insert = "NULL";
3344 }
3345
5c7c7da9
AD
3346 $result = db_query($link,
3347 "SELECT id FROM ttrss_feed_categories
d2a317e3 3348 WHERE $parent_qpart AND title = '$feed_cat' AND owner_uid = ".$_SESSION["uid"]);
5c7c7da9
AD
3349
3350 if (db_num_rows($result) == 0) {
8d505d78 3351
5c7c7da9 3352 $result = db_query($link,
d2a317e3
AD
3353 "INSERT INTO ttrss_feed_categories (owner_uid,title,parent_cat)
3354 VALUES ('".$_SESSION["uid"]."', '$feed_cat', $parent_insert)");
5c7c7da9
AD
3355
3356 db_query($link, "COMMIT");
3357
3358 return true;
3359 }
3360
3361 return false;
8d505d78 3362 }
5c7c7da9 3363
ab197ae1 3364 function getArticleFeed($link, $id) {
8d505d78 3365 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
a545dc31 3366 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
ab197ae1
AD
3367
3368 if (db_num_rows($result) != 0) {
3369 return db_fetch_result($result, 0, "feed_id");
3370 } else {
3371 return 0;
3372 }
3373 }
a5819bb3 3374
f2c6c008
CW
3375 /**
3376 * Fixes incomplete URLs by prepending "http://".
f0266f51
CW
3377 * Also replaces feed:// with http://, and
3378 * prepends a trailing slash if the url is a domain name only.
f2c6c008
CW
3379 *
3380 * @param string $url Possibly incomplete URL
3381 *
3382 * @return string Fixed URL.
3383 */
3384 function fix_url($url) {
3385 if (strpos($url, '://') === false) {
3386 $url = 'http://' . $url;
f0266f51
CW
3387 } else if (substr($url, 0, 5) == 'feed:') {
3388 $url = 'http:' . substr($url, 5);
3389 }
3390
3391 //prepend slash if the URL has no slash in it
3392 // "http://www.example" -> "http://www.example/"
44453773 3393 if (strpos($url, '/', strpos($url, ':') + 3) === false) {
f0266f51 3394 $url .= '/';
f2c6c008 3395 }
ec39a02c
AD
3396
3397 if ($url != "http:///")
3398 return $url;
3399 else
3400 return '';
f2c6c008
CW
3401 }
3402
a5819bb3
AD
3403 function validate_feed_url($url) {
3404 $parts = parse_url($url);
3405
3406 return ($parts['scheme'] == 'http' || $parts['scheme'] == 'feed' || $parts['scheme'] == 'https');
3407
3408 }
d9084cf2 3409
be35798b
AD
3410 function get_article_enclosures($link, $id) {
3411
8d505d78 3412 $query = "SELECT * FROM ttrss_enclosures
be35798b
AD
3413 WHERE post_id = '$id' AND content_url != ''";
3414
be35798b
AD
3415 $rv = array();
3416
0e4a7d7a 3417 $result = db_query($link, $query);
be35798b 3418
0e4a7d7a
AD
3419 if (db_num_rows($result) > 0) {
3420 while ($line = db_fetch_assoc($result)) {
3421 array_push($rv, $line);
be35798b
AD
3422 }
3423 }
3424
3425 return $rv;
3426 }
3427
31a53903
AD
3428 function save_email_address($link, $email) {
3429 // FIXME: implement persistent storage of emails
3430
8d505d78 3431 if (!$_SESSION['stored_emails'])
31a53903
AD
3432 $_SESSION['stored_emails'] = array();
3433
3434 if (!in_array($email, $_SESSION['stored_emails']))
3435 array_push($_SESSION['stored_emails'], $email);
3436 }
8801fb01 3437
8801fb01
AD
3438
3439 function get_feed_access_key($link, $feed_id, $is_cat, $owner_uid = false) {
3440
3441 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
3442
3443 $sql_is_cat = bool_to_sql_bool($is_cat);
3444
8d505d78
AD
3445 $result = db_query($link, "SELECT access_key FROM ttrss_access_keys
3446 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
8801fb01
AD
3447 AND owner_uid = " . $owner_uid);
3448
3449 if (db_num_rows($result) == 1) {
3450 return db_fetch_result($result, 0, "access_key");
3451 } else {
3452 $key = db_escape_string(sha1(uniqid(rand(), true)));
3453
8d505d78 3454 $result = db_query($link, "INSERT INTO ttrss_access_keys
8801fb01
AD
3455 (access_key, feed_id, is_cat, owner_uid)
3456 VALUES ('$key', '$feed_id', $sql_is_cat, '$owner_uid')");
3457
3458 return $key;
3459 }
3460 return false;
3461 }
f0266f51 3462
759e5132 3463 function get_feeds_from_html($url, $content)
f0266f51
CW
3464 {
3465 $url = fix_url($url);
3466 $baseUrl = substr($url, 0, strrpos($url, '/') + 1);
3467
fb074239
AD
3468 libxml_use_internal_errors(true);
3469
f0266f51 3470 $doc = new DOMDocument();
8d505d78 3471 $doc->loadHTML($content);
f0266f51
CW
3472 $xpath = new DOMXPath($doc);
3473 $entries = $xpath->query('/html/head/link[@rel="alternate"]');
3474 $feedUrls = array();
3475 foreach ($entries as $entry) {
3476 if ($entry->hasAttribute('href')) {
3477 $title = $entry->getAttribute('title');
3478 if ($title == '') {
3479 $title = $entry->getAttribute('type');
3480 }
923818fc
CW
3481 $feedUrl = rewrite_relative_url(
3482 $baseUrl, $entry->getAttribute('href')
3483 );
f0266f51
CW
3484 $feedUrls[$feedUrl] = $title;
3485 }
3486 }
3487 return $feedUrls;
3488 }
3489
759e5132 3490 function is_html($content) {
32b86711 3491 return preg_match("/<html|DOCTYPE html/i", substr($content, 0, 20)) !== 0;
759e5132 3492 }
f33479da 3493
759e5132
AD
3494 function url_is_html($url, $login = false, $pass = false) {
3495 return is_html(fetch_file_contents($url, false, $login, $pass));
f33479da 3496 }
24e2bb3a 3497
d90868d7 3498 function print_label_select($link, $name, $value, $attributes = "") {
24e2bb3a
AD
3499
3500 $result = db_query($link, "SELECT caption FROM ttrss_labels2
3501 WHERE owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
3502
8d505d78 3503 print "<select default=\"$value\" name=\"" . htmlspecialchars($name) .
d90868d7 3504 "\" $attributes onchange=\"labelSelectOnChange(this)\" >";
24e2bb3a
AD
3505
3506 while ($line = db_fetch_assoc($result)) {
3507
3508 $issel = ($line["caption"] == $value) ? "selected=\"1\"" : "";
3509
d90868d7
AD
3510 print "<option value=\"".htmlspecialchars($line["caption"])."\"
3511 $issel>" . htmlspecialchars($line["caption"]) . "</option>";
24e2bb3a
AD
3512
3513 }
3514
d90868d7 3515# print "<option value=\"ADD_LABEL\">" .__("Add label...") . "</option>";
24e2bb3a
AD
3516
3517 print "</select>";
3518
3519
3520 }
3521
009646d2 3522 function format_article_enclosures($link, $id, $always_display_enclosures,
dad14b51
AD
3523 $article_content) {
3524
3525 $result = get_article_enclosures($link, $id);
009646d2 3526 $rv = '';
8d505d78 3527
dad14b51 3528 if (count($result) > 0) {
8d505d78 3529
dad14b51
AD
3530 $entries_html = array();
3531 $entries = array();
ca3bca99 3532 $entries_inline = array();
8d505d78 3533
dad14b51 3534 foreach ($result as $line) {
8d505d78 3535
dad14b51
AD
3536 $url = $line["content_url"];
3537 $ctype = $line["content_type"];
8d505d78 3538
dad14b51 3539 if (!$ctype) $ctype = __("unknown type");
8d505d78 3540
749b56bd 3541 $filename = substr($url, strrpos($url, "/")+1);
8d505d78 3542
ca3bca99
AD
3543 $player = format_inline_player($link, $url, $ctype);
3544
3545 if ($player) array_push($entries_inline, $player);
8d505d78 3546
c3edc667
AD
3547# $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
3548# $filename . " (" . $ctype . ")" . "</a>";
8d505d78 3549
749b56bd
AD
3550 $entry = "<div onclick=\"window.open('".htmlspecialchars($url)."')\"
3551 dojoType=\"dijit.MenuItem\">$filename ($ctype)</div>";
3552
dad14b51 3553 array_push($entries_html, $entry);
8d505d78 3554
dad14b51 3555 $entry = array();
8d505d78 3556
dad14b51
AD
3557 $entry["type"] = $ctype;
3558 $entry["filename"] = $filename;
3559 $entry["url"] = $url;
8d505d78 3560
dad14b51
AD
3561 array_push($entries, $entry);
3562 }
8d505d78 3563
dad14b51
AD
3564 if (!get_pref($link, "STRIP_IMAGES")) {
3565 if ($always_display_enclosures ||
3566 !preg_match("/<img/i", $article_content)) {
8d505d78 3567
dad14b51 3568 foreach ($entries as $entry) {
8d505d78 3569
dad14b51
AD
3570 if (preg_match("/image/", $entry["type"]) ||
3571 preg_match("/\.(jpg|png|gif|bmp)/i", $entry["filename"])) {
8d505d78 3572
009646d2 3573 $rv .= "<p><img
dad14b51
AD
3574 alt=\"".htmlspecialchars($entry["filename"])."\"
3575 src=\"" .htmlspecialchars($entry["url"]) . "\"/></p>";
749b56bd 3576
dad14b51
AD
3577 }
3578 }
3579 }
3580 }
8d505d78 3581
ca3bca99
AD
3582 if (count($entries_inline) > 0) {
3583 $rv .= "<hr clear='both'/>";
3584 foreach ($entries_inline as $entry) { $rv .= $entry; };
3585 $rv .= "<hr clear='both'/>";
3586 }
3587
2a3d00bb 3588 $rv .= "<br/><div dojoType=\"dijit.form.DropDownButton\">".
749b56bd
AD
3589 "<span>" . __('Attachments')."</span>";
3590 $rv .= "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
8d505d78 3591
749b56bd 3592 foreach ($entries_html as $entry) { $rv .= $entry; };
8d505d78 3593
749b56bd 3594 $rv .= "</div></div>";
dad14b51 3595 }
009646d2
AD
3596
3597 return $rv;
dad14b51
AD
3598 }
3599
f8fb4498
AD
3600 function getLastArticleId($link) {
3601 $result = db_query($link, "SELECT MAX(ref_id) AS id FROM ttrss_user_entries
3602 WHERE owner_uid = " . $_SESSION["uid"]);
3603
3604 if (db_num_rows($result) == 1) {
3605 return db_fetch_result($result, 0, "id");
3606 } else {
3607 return -1;
3608 }
3609 }
8cc3c778
AD
3610
3611 function build_url($parts) {
3612 return $parts['scheme'] . "://" . $parts['host'] . $parts['path'];
3613 }
3614
f679105c
CW
3615 /**
3616 * Converts a (possibly) relative URL to a absolute one.
3617 *
3618 * @param string $url Base URL (i.e. from where the document is)
3619 * @param string $rel_url Possibly relative URL in the document
3620 *
3621 * @return string Absolute URL
3622 */
8cc3c778 3623 function rewrite_relative_url($url, $rel_url) {
b4520bb8
AD
3624 if (strpos($rel_url, "magnet:") === 0) {
3625 return $rel_url;
3626 } else if (strpos($rel_url, "://") !== false) {
8cc3c778 3627 return $rel_url;
f9052d35 3628 } else if (strpos($rel_url, "//") === 0) {
3629 # protocol-relative URL (rare but they exist)
3630 return $rel_url;
8d505d78 3631 } else if (strpos($rel_url, "/") === 0)
8cc3c778
AD
3632 {
3633 $parts = parse_url($url);
3634 $parts['path'] = $rel_url;
3635
3636 return build_url($parts);
3637
3638 } else {
3639 $parts = parse_url($url);
f679105c
CW
3640 if (!isset($parts['path'])) {
3641 $parts['path'] = '/';
3642 }
3643 $dir = $parts['path'];
3644 if (substr($dir, -1) !== '/') {
3645 $dir = dirname($parts['path']);
3646 $dir !== '/' && $dir .= '/';
3647 }
3648 $parts['path'] = $dir . $rel_url;
8cc3c778
AD
3649
3650 return build_url($parts);
3651 }
3652 }
3653
e4f7f8df 3654 function sphinx_search($query, $offset = 0, $limit = 30) {
31303c6b
AD
3655 require_once 'lib/sphinxapi.php';
3656
e4f7f8df
AD
3657 $sphinxClient = new SphinxClient();
3658
3659 $sphinxClient->SetServer('localhost', 9312);
3660 $sphinxClient->SetConnectTimeout(1);
3661
8d505d78 3662 $sphinxClient->SetFieldWeights(array('title' => 70, 'content' => 30,
e4f7f8df
AD
3663 'feed_title' => 20));
3664
3665 $sphinxClient->SetMatchMode(SPH_MATCH_EXTENDED2);
3666 $sphinxClient->SetRankingMode(SPH_RANK_PROXIMITY_BM25);
3667 $sphinxClient->SetLimits($offset, $limit, 1000);
3668 $sphinxClient->SetArrayResult(false);
3669 $sphinxClient->SetFilter('owner_uid', array($_SESSION['uid']));
8d505d78 3670
e4f7f8df
AD
3671 $result = $sphinxClient->Query($query, SPHINX_INDEX);
3672
3673 $ids = array();
3674
3675 if (is_array($result['matches'])) {
3676 foreach (array_keys($result['matches']) as $int_id) {
3677 $ref_id = $result['matches'][$int_id]['attrs']['ref_id'];
3678 array_push($ids, $ref_id);
3679 }
3680 }
3681
3682 return $ids;
3683 }
3684
868650e4
AD
3685 function cleanup_tags($link, $days = 14, $limit = 1000) {
3686
3687 if (DB_TYPE == "pgsql") {
3688 $interval_query = "date_updated < NOW() - INTERVAL '$days days'";
3689 } else if (DB_TYPE == "mysql") {
3690 $interval_query = "date_updated < DATE_SUB(NOW(), INTERVAL $days DAY)";
3691 }
3692
b5ec13fa 3693 $tags_deleted = 0;
868650e4 3694
b5ec13fa
AD
3695 while ($limit > 0) {
3696 $limit_part = 500;
3697
8d505d78
AD
3698 $query = "SELECT ttrss_tags.id AS id
3699 FROM ttrss_tags, ttrss_user_entries, ttrss_entries
b5ec13fa
AD
3700 WHERE post_int_id = int_id AND $interval_query AND
3701 ref_id = ttrss_entries.id AND tag_cache != '' LIMIT $limit_part";
8d505d78 3702
b5ec13fa
AD
3703 $result = db_query($link, $query);
3704
3705 $ids = array();
3706
3707 while ($line = db_fetch_assoc($result)) {
3708 array_push($ids, $line['id']);
3709 }
3710
3711 if (count($ids) > 0) {
3712 $ids = join(",", $ids);
3713 print ".";
3714
3715 $tmp_result = db_query($link, "DELETE FROM ttrss_tags WHERE id IN ($ids)");
3716 $tags_deleted += db_affected_rows($link, $tmp_result);
3717 } else {
3718 break;
3719 }
3720
3721 $limit -= $limit_part;
3722 }
3723
3724 print "\n";
868650e4 3725
b5ec13fa 3726 return $tags_deleted;
868650e4
AD
3727 }
3728
88e4e597
AD
3729 function print_user_stylesheet($link) {
3730 $value = get_pref($link, 'USER_STYLESHEET');
3731
3732 if ($value) {
3733 print "<style type=\"text/css\">";
5823f9fb 3734 print str_replace("<br/>", "\n", $value);
88e4e597
AD
3735 print "</style>";
3736 }
3737
3738 }
3739
73c32678
AD
3740 function rewrite_urls($html) {
3741 libxml_use_internal_errors(true);
3742
3743 $charset_hack = '<head>
3744 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
3745 </head>';
3746
3747 $doc = new DOMDocument();
3748 $doc->loadHTML($charset_hack . $html);
3749 $xpath = new DOMXPath($doc);
3750
3751 $entries = $xpath->query('//*/text()');
3752
3753 foreach ($entries as $entry) {
3754 if (strstr($entry->wholeText, "://") !== false) {
3755 $text = preg_replace("/((?<!=.)((http|https|ftp)+):\/\/[^ ,!]+)/i",
3756 "<a target=\"_blank\" href=\"\\1\">\\1</a>", $entry->wholeText);
3757
3758 if ($text != $entry->wholeText) {
3759 $cdoc = new DOMDocument();
3760 $cdoc->loadHTML($charset_hack . $text);
3761
3762
3763 foreach ($cdoc->childNodes as $cnode) {
3764 $cnode = $doc->importNode($cnode, true);
3765
3766 if ($cnode) {
3767 $entry->parentNode->insertBefore($cnode);
3768 }
3769 }
3770
3771 $entry->parentNode->removeChild($entry);
3772
3773 }
3774 }
3775 }
3776
3777 $node = $doc->getElementsByTagName('body')->item(0);
3778
376897af
AD
3779 // http://tt-rss.org/forum/viewtopic.php?f=1&t=970
3780 if ($node)
cc38c8e5 3781 return $doc->saveXML($node);
376897af
AD
3782 else
3783 return $html;
533c0ea6
AD
3784 }
3785
2680295b 3786 function filter_to_sql($link, $filter, $owner_uid) {
4e02f582 3787 $query = array();
36184020 3788
4e02f582
AD
3789 if (DB_TYPE == "pgsql")
3790 $reg_qpart = "~";
3791 else
3792 $reg_qpart = "REGEXP";
36184020 3793
4e02f582
AD
3794 foreach ($filter["rules"] AS $rule) {
3795 $regexp_valid = preg_match('/' . $rule['reg_exp'] . '/',
3796 $rule['reg_exp']) !== FALSE;
36184020 3797
4e02f582 3798 if ($regexp_valid) {
36184020 3799
4e02f582 3800 $rule['reg_exp'] = db_escape_string($rule['reg_exp']);
36184020 3801
4e02f582
AD
3802 switch ($rule["type"]) {
3803 case "title":
3804 $qpart = "LOWER(ttrss_entries.title) $reg_qpart LOWER('".
3805 $rule['reg_exp'] . "')";
3806 break;
3807 case "content":
3808 $qpart = "LOWER(ttrss_entries.content) $reg_qpart LOWER('".
3809 $rule['reg_exp'] . "')";
3810 break;
3811 case "both":
3812 $qpart = "LOWER(ttrss_entries.title) $reg_qpart LOWER('".
3813 $rule['reg_exp'] . "') OR LOWER(" .
3814 "ttrss_entries.content) $reg_qpart LOWER('" . $rule['reg_exp'] . "')";
3815 break;
3816 case "tag":
3817 $qpart = "LOWER(ttrss_user_entries.tag_cache) $reg_qpart LOWER('".
3818 $rule['reg_exp'] . "')";
3819 break;
3820 case "link":
3821 $qpart = "LOWER(ttrss_entries.link) $reg_qpart LOWER('".
3822 $rule['reg_exp'] . "')";
3823 break;
3824 case "author":
3825 $qpart = "LOWER(ttrss_entries.author) $reg_qpart LOWER('".
3826 $rule['reg_exp'] . "')";
3827 break;
3828 }
36184020 3829
6b218731
AD
3830 if (isset($rule["feed_id"]) && $rule["feed_id"] > 0) {
3831 $qpart .= " AND feed_id = " . db_escape_string($rule["feed_id"]);
4e02f582 3832 }
6b8b3af8 3833
4e02f582 3834 if (isset($rule["cat_id"])) {
2680295b
AD
3835
3836 if ($rule["cat_id"] > 0) {
3837 $children = getChildCategories($link, $rule["cat_id"], $owner_uid);
3838 array_push($children, $rule["cat_id"]);
3839
3840 $children = join(",", $children);
3841
3842 $cat_qpart = "cat_id IN ($children)";
3843 } else {
3844 $cat_qpart = "cat_id IS NULL";
3845 }
3846
3847 $qpart .= " AND $cat_qpart";
56fbb82c 3848 }
4e02f582
AD
3849
3850 array_push($query, "($qpart)");
3851
56fbb82c 3852 }
4e02f582 3853 }
56fbb82c 3854
4e02f582
AD
3855 if (count($query) > 0) {
3856 return "(" . join($filter["match_any_rule"] ? "OR" : "AND", $query) . ")";
56fbb82c 3857 } else {
4e02f582 3858 return "(false)";
56fbb82c 3859 }
36184020 3860 }
ae5f7bb1 3861
3382bce1
AD
3862 if (!function_exists('gzdecode')) {
3863 function gzdecode($string) { // no support for 2nd argument
3864 return file_get_contents('compress.zlib://data:who/cares;base64,'.
3865 base64_encode($string));
3866 }
3867 }
3868
8db5d8ea
AD
3869 function get_random_bytes($length) {
3870 if (function_exists('openssl_random_pseudo_bytes')) {
3871 return openssl_random_pseudo_bytes($length);
3872 } else {
3873 $output = "";
3874
3875 for ($i = 0; $i < $length; $i++)
3876 $output .= chr(mt_rand(0, 255));
3877
3878 return $output;
3879 }
3880 }
871f0a7a
AD
3881
3882 function read_stdin() {
3883 $fp = fopen("php://stdin", "r");
3884
3885 if ($fp) {
3886 $line = trim(fgets($fp));
3887 fclose($fp);
3888 return $line;
3889 }
3890
3891 return null;
3892 }
e3449aa1
AD
3893
3894 function tmpdirname($path, $prefix) {
3895 // Use PHP's tmpfile function to create a temporary
3896 // directory name. Delete the file and keep the name.
3897 $tempname = tempnam($path,$prefix);
3898 if (!$tempname)
3899 return false;
3900
3901 if (!unlink($tempname))
3902 return false;
3903
3904 return $tempname;
3905 }
3906
6aff7845
AD
3907 function getFeedCategory($link, $feed) {
3908 $result = db_query($link, "SELECT cat_id FROM ttrss_feeds
3909 WHERE id = '$feed'");
3910
3911 if (db_num_rows($result) > 0) {
3912 return db_fetch_result($result, 0, "cat_id");
3913 } else {
3914 return false;
3915 }
3916
3917 }
3918
8dcb2b47
AD
3919 function implements_interface($class, $interface) {
3920 return in_array($interface, class_implements($class));
3921 }
e88c1943 3922
e2b0054b
AD
3923 function geturl($url){
3924
3925 (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');
3926
3927 $curl = curl_init();
3928 $header[0] = "Accept: text/xml,application/xml,application/xhtml+xml,";
3929 $header[0] .= "text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5";
3930 $header[] = "Cache-Control: max-age=0";
3931 $header[] = "Connection: keep-alive";
3932 $header[] = "Keep-Alive: 300";
3933 $header[] = "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7";
3934 $header[] = "Accept-Language: en-us,en;q=0.5";
3935 $header[] = "Pragma: ";
3936
3937 curl_setopt($curl, CURLOPT_URL, $url);
3938 curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 5.1; rv:5.0) Gecko/20100101 Firefox/5.0 Firefox/5.0');
3939 curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
3940 curl_setopt($curl, CURLOPT_HEADER, true);
3941 curl_setopt($curl, CURLOPT_REFERER, $url);
3942 curl_setopt($curl, CURLOPT_ENCODING, 'gzip,deflate');
3943 curl_setopt($curl, CURLOPT_AUTOREFERER, true);
3944 curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
3945 //curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); //CURLOPT_FOLLOWLOCATION Disabled...
3946 curl_setopt($curl, CURLOPT_TIMEOUT, 60);
3947
3948 $html = curl_exec($curl);
3949
3950 $status = curl_getinfo($curl);
3951 curl_close($curl);
3952
3953 if($status['http_code']!=200){
3954 if($status['http_code'] == 301 || $status['http_code'] == 302) {
3955 list($header) = explode("\r\n\r\n", $html, 2);
3956 $matches = array();
3957 preg_match("/(Location:|URI:)[^(\n)]*/", $header, $matches);
3958 $url = trim(str_replace($matches[1],"",$matches[0]));
3959 $url_parsed = parse_url($url);
3960 return (isset($url_parsed))? geturl($url, $referer):'';
3961 }
3962 $oline='';
3963 foreach($status as $key=>$eline){$oline.='['.$key.']'.$eline.' ';}
3964 $line =$oline." \r\n ".$url."\r\n-----------------\r\n";
3965 $handle = @fopen('./curl.error.log', 'a');
3966 fwrite($handle, $line);
3967 return FALSE;
3968 }
3969 return $url;
3970 }
8dcb2b47 3971
c670a80d
AD
3972 function get_minified_js($files) {
3973 require_once 'lib/jshrink/Minifier.php';
3974
3975 $rv = '';
3976
3977 foreach ($files as $js) {
3978 if (!isset($_GET['debug'])) {
3979 $cached_file = CACHE_DIR . "/js/$js.js";
3980
3981 if (file_exists($cached_file) &&
3982 is_readable($cached_file) &&
3983 filemtime($cached_file) >= filemtime("js/$js.js")) {
3984
3985 $rv .= file_get_contents($cached_file);
3986
3987 } else {
3988 $minified = JShrink\Minifier::minify(file_get_contents("js/$js.js"));
3989 file_put_contents($cached_file, $minified);
3990 $rv .= $minified;
3991 }
3992 } else {
3993 $rv .= file_get_contents("js/$js.js");
3994 }
3995 }
3996
3997 return $rv;
3998 }
3999
8c0496f7 4000?>