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