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