]> git.wh0rd.org - tt-rss.git/blame - functions.php
sanitize_rss: fix wrong element being returned after DOMDocument parsing
[tt-rss.git] / functions.php
CommitLineData
1d3a17c7 1<?php
f1a80dae 2
324944f3 3 date_default_timezone_set('UTC');
fb074239 4 error_reporting(E_ALL & ~E_NOTICE);
cce28758 5
40d13c28 6 require_once 'config.php';
cc17c205 7
fc2b26a6
AD
8 if (DB_TYPE == "pgsql") {
9 define('SUBSTRING_FOR_DATE', 'SUBSTRING_FOR_DATE');
10 } else {
11 define('SUBSTRING_FOR_DATE', 'SUBSTRING');
12 }
13
9632f884
AD
14 /**
15 * Return available translations names.
16 *
17 * @access public
18 * @return array A array of available translations.
19 */
f8c612d4 20 function get_translations() {
6a214f92 21 $tr = array(
a927fe7b 22 "auto" => "Detect automatically",
a3162add 23 "ca_CA" => "Català",
6a214f92 24 "en_US" => "English",
36d0510c 25 "es_ES" => "Español",
a927fe7b 26 "de_DE" => "Deutsch",
6a214f92 27 "fr_FR" => "Français",
e78fd196 28 "hu_HU" => "Magyar (Hungarian)",
bb5d3960 29 "it_IT" => "Italiano",
1d004f12 30 "ja_JP" => "日本語 (Japanese)",
592535d7 31 "nb_NO" => "Norwegian bokmål",
6a214f92 32 "ru_RU" => "Русский",
9a063469 33 "pt_BR" => "Portuguese/Brazil",
6a214f92 34 "zh_CN" => "Simplified Chinese");
f8c612d4
AD
35
36 return $tr;
37 }
38
9632f884 39 if (ENABLE_TRANSLATIONS == true) { // If translations are enabled.
5de668ed 40 require_once "lib/accept-to-gettext.php";
0ba3a127 41 require_once "lib/gettext/gettext.inc";
aba609e0 42
8d039718
AD
43 function startup_gettext() {
44
45 # Get locale from Accept-Language header
6a214f92 46 $lang = al2gt(array_keys(get_translations()), "text/html");
89cb787e
AD
47
48 if (defined('_TRANSLATION_OVERRIDE_DEFAULT')) {
49 $lang = _TRANSLATION_OVERRIDE_DEFAULT;
50 }
51
672f3f3c 52 if ($_COOKIE["ttrss_lang"] && $_COOKIE["ttrss_lang"] != "auto") {
68659d98
AD
53 $lang = $_COOKIE["ttrss_lang"];
54 }
55
7c33dbd4
AD
56 /* In login action of mobile version */
57 if ($_POST["language"] && defined('MOBILE_VERSION')) {
58 $lang = $_POST["language"];
59 $_COOKIE["ttrss_lang"] = $lang;
60 }
61
8d039718 62 if ($lang) {
86e2e1b9
AD
63 if (defined('LC_MESSAGES')) {
64 _setlocale(LC_MESSAGES, $lang);
65 } else if (defined('LC_ALL')) {
66 _setlocale(LC_ALL, $lang);
67 } else {
68 die("can't setlocale(): please set ENABLE_TRANSLATIONS to false in config.php");
69 }
7c33dbd4
AD
70
71 if (defined('MOBILE_VERSION')) {
72 _bindtextdomain("messages", "../locale");
73 } else {
74 _bindtextdomain("messages", "locale");
75 }
76
8d039718
AD
77 _textdomain("messages");
78 _bind_textdomain_codeset("messages", "UTF-8");
79 }
aba609e0 80 }
aba609e0 81
cc17c205 82 startup_gettext();
865220a4 83
9632f884 84 } else { // If translations are enabled.
865220a4
AD
85 function __($msg) {
86 return $msg;
87 }
88 function startup_gettext() {
89 // no-op
90 return true;
91 }
9632f884 92 } // If translations are enabled.
cc17c205 93
be35798b
AD
94 if (defined('MEMCACHE_SERVER')) {
95 $memcache = new Memcache;
96 $memcache->connect(MEMCACHE_SERVER, 11211);
97 }
98
b619ff15 99 require_once 'db-prefs.php';
5bc0bd27 100 require_once 'compat.php';
af106b0e 101 require_once 'errors.php';
8911ac8b 102 require_once 'version.php';
40d13c28 103
d134e3a3 104 require_once 'lib/phpmailer/class.phpmailer.php';
a8931123 105
49f9c923 106 define('MAGPIE_USER_AGENT_EXT', ' (Tiny Tiny RSS/' . VERSION . ')');
a3ee2a38 107 define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');
ba0f7628 108 define('MAGPIE_CACHE_AGE', 60*15); // 15 minutes
a3ee2a38 109
5ef03f15 110 require_once "lib/simplepie/simplepie.inc";
816cdfb7
AD
111 require_once "lib/magpierss/rss_fetch.inc";
112 require_once 'lib/magpierss/rss_utils.inc';
f45a286b 113 require_once 'lib/htmlpurifier/library/HTMLPurifier.auto.php';
49f9c923 114
45004d43
AD
115 /**
116 * Print a timestamped debug message.
117 *
118 * @param string $msg The debug message.
119 * @return void
120 */
6f9e33e4
AD
121 function _debug($msg) {
122 $ts = strftime("%H:%M:%S", time());
2a6a9395
AD
123 if (function_exists('posix_getpid')) {
124 $ts = "$ts/" . posix_getpid();
125 }
6f9e33e4 126 print "[$ts] $msg\n";
45004d43 127 } // function _debug
6f9e33e4 128
9632f884
AD
129 /**
130 * Purge a feed old posts.
131 *
132 * @param mixed $link A database connection.
133 * @param mixed $feed_id The id of the purged feed.
134 * @param mixed $purge_interval Olderness of purged posts.
135 * @param boolean $debug Set to True to enable the debug. False by default.
136 * @access public
137 * @return void
138 */
ad507f85
AD
139 function purge_feed($link, $feed_id, $purge_interval, $debug = false) {
140
07d0efe9 141 if (!$purge_interval) $purge_interval = feed_purge_interval($link, $feed_id);
01299231 142
ad507f85 143 $rows = -1;
4c193675 144
07d0efe9
AD
145 $result = db_query($link,
146 "SELECT owner_uid FROM ttrss_feeds WHERE id = '$feed_id'");
147
148 $owner_uid = false;
149
150 if (db_num_rows($result) == 1) {
151 $owner_uid = db_fetch_result($result, 0, "owner_uid");
152 }
153
ab954dff
AD
154 if ($purge_interval == -1 || !$purge_interval) {
155 if ($owner_uid) {
156 ccache_update($link, $feed_id, $owner_uid);
157 }
158 return;
159 }
160
07d0efe9
AD
161 if (!$owner_uid) return;
162
3907ef71
AD
163 if (FORCE_ARTICLE_PURGE == 0) {
164 $purge_unread = get_pref($link, "PURGE_UNREAD_ARTICLES",
165 $owner_uid, false);
166 } else {
167 $purge_unread = true;
168 $purge_interval = FORCE_ARTICLE_PURGE;
169 }
07d0efe9
AD
170
171 if (!$purge_unread) $query_limit = " unread = false AND ";
172
fefa6ca3 173 if (DB_TYPE == "pgsql") {
44e241cb 174/* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
fefa6ca3 175 marked = false AND feed_id = '$feed_id' AND
25ea2805 176 (SELECT date_updated FROM ttrss_entries WHERE
44e241cb
AD
177 id = ref_id) < NOW() - INTERVAL '$purge_interval days'"); */
178
6e7f8d26
AD
179 $pg_version = get_pgsql_version($link);
180
181 if (preg_match("/^7\./", $pg_version) || preg_match("/^8\.0/", $pg_version)) {
1e59ae35
AD
182
183 $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
184 ttrss_entries.id = ref_id AND
185 marked = false AND
186 feed_id = '$feed_id' AND
07d0efe9 187 $query_limit
25ea2805 188 ttrss_entries.date_updated < NOW() - INTERVAL '$purge_interval days'");
1e59ae35
AD
189
190 } else {
191
192 $result = db_query($link, "DELETE FROM ttrss_user_entries
193 USING ttrss_entries
194 WHERE ttrss_entries.id = ref_id AND
195 marked = false AND
196 feed_id = '$feed_id' AND
07d0efe9 197 $query_limit
25ea2805 198 ttrss_entries.date_updated < NOW() - INTERVAL '$purge_interval days'");
1e59ae35 199 }
ad507f85
AD
200
201 $rows = pg_affected_rows($result);
202
fefa6ca3 203 } else {
1e59ae35 204
30f1746f 205/* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
fefa6ca3 206 marked = false AND feed_id = '$feed_id' AND
25ea2805 207 (SELECT date_updated FROM ttrss_entries WHERE
30f1746f
AD
208 id = ref_id) < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)"); */
209
210 $result = db_query($link, "DELETE FROM ttrss_user_entries
211 USING ttrss_user_entries, ttrss_entries
212 WHERE ttrss_entries.id = ref_id AND
213 marked = false AND
214 feed_id = '$feed_id' AND
07d0efe9 215 $query_limit
25ea2805 216 ttrss_entries.date_updated < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)");
30f1746f 217
ad507f85
AD
218 $rows = mysql_affected_rows($link);
219
220 }
221
ced46404
AD
222 ccache_update($link, $feed_id, $owner_uid);
223
ad507f85 224 if ($debug) {
6f9e33e4 225 _debug("Purged feed $feed_id ($purge_interval): deleted $rows articles");
fefa6ca3 226 }
9632f884 227 } // function purge_feed
fefa6ca3 228
9632f884 229 /**
a2d79981 230 * Purge old posts from old feeds. Not used anymore, purging is done after feed update.
9632f884
AD
231 *
232 * @param mixed $link A database connection
233 * @param boolean $do_output Set to true to enable printed output, false by default.
234 * @param integer $limit The maximal number of removed posts.
235 * @access public
236 * @return void
237 */
a2d79981 238 /* function global_purge_old_posts($link, $do_output = false, $limit = false) {
44e241cb 239
894ebcf5 240 $random_qpart = sql_random_function();
fefa6ca3 241
44e241cb
AD
242 if ($limit) {
243 $limit_qpart = "LIMIT $limit";
244 } else {
245 $limit_qpart = "";
246 }
247
fefa6ca3 248 $result = db_query($link,
44e241cb
AD
249 "SELECT id,purge_interval,owner_uid FROM ttrss_feeds
250 ORDER BY $random_qpart $limit_qpart");
fefa6ca3
AD
251
252 while ($line = db_fetch_assoc($result)) {
253
254 $feed_id = $line["id"];
255 $purge_interval = $line["purge_interval"];
256 $owner_uid = $line["owner_uid"];
257
258 if ($purge_interval == 0) {
259
260 $tmp_result = db_query($link,
261 "SELECT value FROM ttrss_user_prefs WHERE
262 pref_name = 'PURGE_OLD_DAYS' AND owner_uid = '$owner_uid'");
263
264 if (db_num_rows($tmp_result) != 0) {
265 $purge_interval = db_fetch_result($tmp_result, 0, "value");
266 }
267 }
268
269 if ($do_output) {
ad507f85 270// print "Feed $feed_id: purge interval = $purge_interval\n";
fefa6ca3
AD
271 }
272
3907ef71 273 if ($purge_interval > 0 || FORCE_ARTICLE_PURGE) {
ad507f85 274 purge_feed($link, $feed_id, $purge_interval, $do_output);
fefa6ca3
AD
275 }
276 }
277
a2d79981 278 purge_orphans($link, $do_output);
dab52d7b 279
a2d79981 280 } // function global_purge_old_posts */
fefa6ca3 281
07d0efe9
AD
282 function feed_purge_interval($link, $feed_id) {
283
284 $result = db_query($link, "SELECT purge_interval, owner_uid FROM ttrss_feeds
285 WHERE id = '$feed_id'");
286
287 if (db_num_rows($result) == 1) {
288 $purge_interval = db_fetch_result($result, 0, "purge_interval");
289 $owner_uid = db_fetch_result($result, 0, "owner_uid");
290
291 if ($purge_interval == 0) $purge_interval = get_pref($link,
863be6ca 292 'PURGE_OLD_DAYS', $owner_uid);
07d0efe9
AD
293
294 return $purge_interval;
295
296 } else {
297 return -1;
298 }
299 }
300
b6eefba5 301 function purge_old_posts($link) {
5d73494a 302
f1a80dae
AD
303 $user_id = $_SESSION["uid"];
304
305 $result = db_query($link, "SELECT id,purge_interval FROM ttrss_feeds
306 WHERE owner_uid = '$user_id'");
5d73494a
AD
307
308 while ($line = db_fetch_assoc($result)) {
309
310 $feed_id = $line["id"];
311 $purge_interval = $line["purge_interval"];
312
b619ff15 313 if ($purge_interval == 0) $purge_interval = get_pref($link, 'PURGE_OLD_DAYS');
5d73494a 314
140aae81 315 if ($purge_interval > 0) {
fefa6ca3 316 purge_feed($link, $feed_id, $purge_interval);
5d73494a
AD
317 }
318 }
71604ca4 319
0e0dd486
AD
320 purge_orphans($link);
321 }
322
a2d79981
AD
323 function purge_orphans($link, $do_output = false) {
324
71604ca4 325 // purge orphaned posts in main content table
a2d79981 326 $result = db_query($link, "DELETE FROM ttrss_entries WHERE
71604ca4 327 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
a2d79981
AD
328
329 if ($do_output) {
330 $rows = db_affected_rows($link, $result);
331 _debug("Purged $rows orphaned posts.");
332 }
c3a8d71a
AD
333 }
334
c7d57b66
AD
335 function get_feed_update_interval($link, $feed_id) {
336 $result = db_query($link, "SELECT owner_uid, update_interval FROM
337 ttrss_feeds WHERE id = '$feed_id'");
338
339 if (db_num_rows($result) == 1) {
340 $update_interval = db_fetch_result($result, 0, "update_interval");
341 $owner_uid = db_fetch_result($result, 0, "owner_uid");
342
343 if ($update_interval != 0) {
344 return $update_interval;
345 } else {
346 return get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $owner_uid, false);
347 }
348
349 } else {
350 return -1;
351 }
352 }
353
5414ad4c 354 function fetch_file_contents($url, $type = false) {
4065b60b 355 if (USE_CURL_FOR_ICONS) {
4065b60b 356 $ch = curl_init($url);
a1af1574
AD
357
358 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);
359 curl_setopt($ch, CURLOPT_TIMEOUT, 45);
360 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
361 curl_setopt($ch, CURLOPT_MAXREDIRS, 20);
362 curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
363 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
364
fb074239 365 $contents = @curl_exec($ch);
a1af1574
AD
366 if ($contents === false) {
367 curl_close($ch);
368 return false;
4065b60b
AD
369 }
370
a1af1574
AD
371 $content_type = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
372 curl_close($ch);
4065b60b 373
a1af1574
AD
374 if ($type && strpos($content_type, "$type") === false) {
375 return false;
376 }
4065b60b 377
a1af1574 378 return $contents;
4065b60b 379 } else {
fb074239 380 return @file_get_contents($url);
4065b60b
AD
381 }
382
383 }
78800912 384
9632f884
AD
385 /**
386 * Try to determine the favicon URL for a feed.
387 * adapted from wordpress favicon plugin by Jeff Minard (http://thecodepro.com/)
388 * http://dev.wp-plugins.org/file/favatars/trunk/favatars.php
389 *
390 * @param string $url A feed or page URL
391 * @access public
392 * @return mixed The favicon URL, or false if none was found.
393 */
4065b60b 394 function get_favicon_url($url) {
99331724 395
4065b60b 396 if ($html = @fetch_file_contents($url)) {
78800912 397
4065b60b
AD
398 if ( preg_match('/<link[^>]+rel="(?:shortcut )?icon"[^>]+?href="([^"]+?)"/si', $html, $matches)) {
399 // Attempt to grab a favicon link from their webpage url
400 $linkUrl = html_entity_decode($matches[1]);
c798704b 401
4065b60b
AD
402 if (substr($linkUrl, 0, 1) == '/') {
403 $urlParts = parse_url($url);
404 $faviconURL = $urlParts['scheme'].'://'.$urlParts['host'].$linkUrl;
405 } else if (substr($linkUrl, 0, 7) == 'http://') {
406 $faviconURL = $linkUrl;
4065b60b 407 } else {
c7e51de1
AD
408 $pos = strrpos($url, "/");
409 // no "/" in url or "/" is part of "://"
410 if ($pos === false || $pos == (strpos($url, "://")+2)) {
411 $faviconURL = $url.'/'.$linkUrl;
412 } else {
413 $faviconURL = substr($url, 0, $pos+1).$linkUrl;
414 }
e695fdc8 415 }
717f5e64 416
c798704b 417 } else {
4065b60b
AD
418 // If unsuccessful, attempt to "guess" the favicon location
419 $urlParts = parse_url($url);
420 $faviconURL = $urlParts['scheme'].'://'.$urlParts['host'].'/favicon.ico';
421 }
422 }
c798704b 423
4065b60b
AD
424 // Run a test to see if what we have attempted to get actually exists.
425 if(USE_CURL_FOR_ICONS || url_validate($faviconURL)) {
426 return $faviconURL;
427 } else {
428 return false;
429 }
9632f884 430 } // function get_favicon_url
4065b60b 431
9632f884
AD
432 /**
433 * Check if a link is a valid and working URL.
434 *
435 * @param mixed $link A URL to check
436 * @access public
437 * @return boolean True if the URL is valid, false otherwise.
438 */
4065b60b
AD
439 function url_validate($link) {
440
441 $url_parts = @parse_url($link);
442
443 if ( empty( $url_parts["host"] ) )
444 return false;
445
446 if ( !empty( $url_parts["path"] ) ) {
447 $documentpath = $url_parts["path"];
448 } else {
449 $documentpath = "/";
450 }
451
452 if ( !empty( $url_parts["query"] ) )
453 $documentpath .= "?" . $url_parts["query"];
454
455 $host = $url_parts["host"];
456 $port = $url_parts["port"];
457
458 if ( empty($port) )
459 $port = "80";
460
461 $socket = @fsockopen( $host, $port, $errno, $errstr, 30 );
462
463 if ( !$socket )
464 return false;
c798704b 465
4065b60b
AD
466 fwrite ($socket, "HEAD ".$documentpath." HTTP/1.0\r\nHost: $host\r\n\r\n");
467
468 $http_response = fgets( $socket, 22 );
469
c7e51de1 470 $responses = "/(200 OK)|(30[123])/";
4065b60b
AD
471 if ( preg_match($responses, $http_response) ) {
472 fclose($socket);
473 return true;
474 } else {
475 return false;
476 }
477
9632f884 478 } // function url_validate
4065b60b
AD
479
480 function check_feed_favicon($site_url, $feed, $link) {
481 $favicon_url = get_favicon_url($site_url);
482
483# print "FAVICON [$site_url]: $favicon_url\n";
484
4065b60b
AD
485 $icon_file = ICONS_DIR . "/$feed.ico";
486
487 if ($favicon_url && !file_exists($icon_file)) {
a1af1574 488 $contents = fetch_file_contents($favicon_url, "image");
4065b60b 489
a1af1574
AD
490 if ($contents) {
491 $fp = fopen($icon_file, "w");
78800912 492
a1af1574
AD
493 if ($fp) {
494 fwrite($fp, $contents);
495 fclose($fp);
496 chmod($icon_file, 0644);
497 }
4065b60b 498 }
78800912
AD
499 }
500 }
501
c633e370
AD
502 function update_rss_feed($link, $feed, $ignore_daemon = false) {
503
504 global $memcache;
505
506 /* Update all feeds with the same URL to utilize memcache */
507
508 if ($memcache) {
509 $result = db_query($link, "SELECT f1.id
510 FROM ttrss_feeds AS f1, ttrss_feeds AS f2
511 WHERE f2.feed_url = f1.feed_url AND f2.id = '$feed'");
512
513 while ($line = db_fetch_assoc($result)) {
514 update_rss_feed_real($link, $line["id"], $ignore_daemon);
515 }
516 } else {
517 update_rss_feed_real($link, $feed, $ignore_daemon);
518 }
519 }
520
521 function update_rss_feed_real($link, $feed, $ignore_daemon = false) {
40d13c28 522
602690e5
AD
523 global $memcache;
524
b4e75b2a 525 if (!$_REQUEST["daemon"] && !$ignore_daemon) {
45004d43 526 return false;
21cfcdf2
AD
527 }
528
b4e75b2a 529 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb 530 _debug("update_rss_feed: start");
219bd8fc
AD
531 }
532
39a52499
AD
533 if (!$ignore_daemon) {
534
535 if (DB_TYPE == "pgsql") {
536 $updstart_thresh_qpart = "(ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '120 seconds')";
537 } else {
538 $updstart_thresh_qpart = "(ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 120 SECOND))";
539 }
540
541 $result = db_query($link, "SELECT id,update_interval,auth_login,
16211ddb 542 auth_pass,cache_images,update_method
39a52499 543 FROM ttrss_feeds WHERE id = '$feed' AND $updstart_thresh_qpart");
02008cb1 544
39a52499
AD
545 } else {
546
547 $result = db_query($link, "SELECT id,update_interval,auth_login,
c633e370 548 feed_url,auth_pass,cache_images,update_method,last_updated
39a52499
AD
549 FROM ttrss_feeds WHERE id = '$feed'");
550
551 }
a88c1f36 552
5370d37f 553 if (db_num_rows($result) == 0) {
b4e75b2a 554 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
c633e370 555 _debug("update_rss_feed: feed $feed NOT FOUND/SKIPPED");
5370d37f 556 }
45004d43 557 return false;
5370d37f
AD
558 }
559
16211ddb 560 $update_method = db_fetch_result($result, 0, "update_method");
50b2db96 561 $last_updated = db_fetch_result($result, 0, "last_updated");
16211ddb 562
3c50da83
AD
563 db_query($link, "UPDATE ttrss_feeds SET last_update_started = NOW()
564 WHERE id = '$feed'");
565
464bd61e
AD
566 $auth_login = db_fetch_result($result, 0, "auth_login");
567 $auth_pass = db_fetch_result($result, 0, "auth_pass");
568
78a5c296
AD
569 if (DEFAULT_UPDATE_METHOD == "1") {
570 $use_simplepie = $update_method != 1;
16211ddb 571 } else {
78a5c296 572 $use_simplepie = $update_method == 2;
16211ddb
AD
573 }
574
b4e75b2a 575 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
16211ddb
AD
576 _debug("use simplepie: $use_simplepie (feed setting: $update_method)\n");
577 }
578
579 if (!$use_simplepie) {
464bd61e
AD
580 $auth_login = urlencode($auth_login);
581 $auth_pass = urlencode($auth_pass);
582 }
47c6c988 583
a88c1f36 584 $update_interval = db_fetch_result($result, 0, "update_interval");
bc0f0785 585 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
c633e370 586 $fetch_url = db_fetch_result($result, 0, "feed_url");
a88c1f36
AD
587
588 if ($update_interval < 0) { return; }
589
ab3d0b99
AD
590 $feed = db_escape_string($feed);
591
47c6c988
AD
592 if ($auth_login && $auth_pass) {
593 $url_parts = array();
594 preg_match("/(^[^:]*):\/\/(.*)/", $fetch_url, $url_parts);
595
596 if ($url_parts[1] && $url_parts[2]) {
597 $fetch_url = $url_parts[1] . "://$auth_login:$auth_pass@" . $url_parts[2];
598 }
599
600 }
ab3d0b99 601
b4e75b2a 602 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ca872b9d 603 _debug("update_rss_feed: fetching [$fetch_url]...");
219bd8fc
AD
604 }
605
e656b9f7 606 $obj_id = md5("FDATA:$use_simplepie:$fetch_url");
6e4f0519 607
c633e370 608 if ($memcache && $obj = $memcache->get($obj_id)) {
6e4f0519
AD
609
610 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
c633e370 611 _debug("update_rss_feed: data found in memcache.");
6e4f0519
AD
612 }
613
c633e370
AD
614 $rss = $obj;
615
616 } else {
617
618 if (!$use_simplepie) {
fb074239 619 $rss = @fetch_rss($fetch_url);
c633e370
AD
620 } else {
621 if (!is_dir(SIMPLEPIE_CACHE_DIR)) {
622 mkdir(SIMPLEPIE_CACHE_DIR);
623 }
624
625 $rss = new SimplePie();
626 $rss->set_useragent(SIMPLEPIE_USERAGENT . MAGPIE_USER_AGENT_EXT);
627 # $rss->set_timeout(10);
628 $rss->set_feed_url($fetch_url);
629 $rss->set_output_encoding('UTF-8');
630
631 if (SIMPLEPIE_CACHE_IMAGES && $cache_images) {
632 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
633 _debug("enabling image cache");
634 }
635
636 $rss->set_image_handler('./image.php', 'i');
637 }
638
639 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
640 _debug("feed update interval (sec): " .
641 get_feed_update_interval($link, $feed)*60);
642 }
643
644 if (is_dir(SIMPLEPIE_CACHE_DIR)) {
645 $rss->set_cache_location(SIMPLEPIE_CACHE_DIR);
646 $rss->set_cache_duration(get_feed_update_interval($link, $feed) * 60);
647 }
648
649 $rss->init();
6e4f0519
AD
650 }
651
c633e370 652 if ($memcache && $rss) $memcache->add($obj_id, $rss, 0, 300);
9fdf7824
AD
653 }
654
655// print_r($rss);
219bd8fc 656
b4e75b2a 657 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb 658 _debug("update_rss_feed: fetch done, parsing...");
219bd8fc
AD
659 }
660
b6eefba5 661 $feed = db_escape_string($feed);
dcee8f61 662
16211ddb 663 if ($use_simplepie) {
ca872b9d
AD
664 $fetch_ok = !$rss->error();
665 } else {
666 $fetch_ok = !!$rss;
667 }
668
669 if ($fetch_ok) {
50b62214 670
b4e75b2a 671 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
50b62214
AD
672 _debug("update_rss_feed: processing feed data...");
673 }
674
44e241cb 675// db_query($link, "BEGIN");
dd8c76a9 676
a88c1f36 677 $result = db_query($link, "SELECT title,icon_url,site_url,owner_uid
f324892e 678 FROM ttrss_feeds WHERE id = '$feed'");
331900c6 679
b6eefba5
AD
680 $registered_title = db_fetch_result($result, 0, "title");
681 $orig_icon_url = db_fetch_result($result, 0, "icon_url");
f324892e 682 $orig_site_url = db_fetch_result($result, 0, "site_url");
331900c6 683
7fed1940
AD
684 $owner_uid = db_fetch_result($result, 0, "owner_uid");
685
16211ddb 686 if ($use_simplepie) {
9fdf7824
AD
687 $site_url = $rss->get_link();
688 } else {
689 $site_url = $rss->channel["link"];
690 }
691
85a92289
AD
692 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
693 _debug("update_rss_feed: checking favicon...");
a2770077
AD
694 }
695
85a92289
AD
696 check_feed_favicon($site_url, $feed, $link);
697
746b249f 698 if (!$registered_title || $registered_title == "[Unknown]") {
4bc64807 699
16211ddb 700 if ($use_simplepie) {
c2f8aac4 701 $feed_title = db_escape_string($rss->get_title());
fb486a33
AD
702 } else {
703 $feed_title = db_escape_string($rss->channel["title"]);
704 }
4bc64807 705
b4e75b2a 706 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
4bc64807
AD
707 _debug("update_rss_feed: registering title: $feed_title");
708 }
7c5a308d 709
f324892e
AD
710 db_query($link, "UPDATE ttrss_feeds SET
711 title = '$feed_title' WHERE id = '$feed'");
712 }
713
49f9c923 714 // weird, weird Magpie
16211ddb 715 if (!$use_simplepie) {
9fdf7824
AD
716 if (!$site_url) $site_url = db_escape_string($rss->channel["link_"]);
717 }
147f7691
AD
718
719 if ($site_url && $orig_site_url != db_escape_string($site_url)) {
f324892e
AD
720 db_query($link, "UPDATE ttrss_feeds SET
721 site_url = '$site_url' WHERE id = '$feed'");
331900c6 722 }
40d13c28 723
b7f4bda2
AD
724// print "I: " . $rss->channel["image"]["url"];
725
16211ddb 726 if (!$use_simplepie) {
9fdf7824
AD
727 $icon_url = $rss->image["url"];
728 } else {
729 $icon_url = $rss->get_image_url();
730 }
b7f4bda2 731
147f7691 732 if ($icon_url && !$orig_icon_url != db_escape_string($icon_url)) {
b6eefba5
AD
733 $icon_url = db_escape_string($icon_url);
734 db_query($link, "UPDATE ttrss_feeds SET icon_url = '$icon_url' WHERE id = '$feed'");
b7f4bda2
AD
735 }
736
b4e75b2a 737 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
50b62214
AD
738 _debug("update_rss_feed: loading filters...");
739 }
e6155a06 740
5daa24f2 741 $filters = load_filters($link, $feed, $owner_uid);
e6155a06 742
16211ddb 743 if ($use_simplepie) {
9fdf7824
AD
744 $iterator = $rss->get_items();
745 } else {
746 $iterator = $rss->items;
747 if (!$iterator || !is_array($iterator)) $iterator = $rss->entries;
748 if (!$iterator || !is_array($iterator)) $iterator = $rss;
749 }
c22789da
AD
750
751 if (!is_array($iterator)) {
39541e74 752 /* db_query($link, "UPDATE ttrss_feeds
75bd0669 753 SET last_error = 'Parse error: can\'t find any articles.'
77f0a2a7
AD
754 WHERE id = '$feed'"); */
755
756 // clear any errors and mark feed as updated if fetched okay
757 // even if it's blank
758
b4e75b2a 759 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
844012bc
AD
760 _debug("update_rss_feed: entry iterator is not an array, no articles?");
761 }
762
77f0a2a7
AD
763 db_query($link, "UPDATE ttrss_feeds
764 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
765
766 return; // no articles
c22789da 767 }
ddb68b81 768
b4e75b2a 769 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
50b62214
AD
770 _debug("update_rss_feed: processing articles...");
771 }
772
ddb68b81 773 foreach ($iterator as $item) {
7c5a308d 774
b4e75b2a 775 if ($_REQUEST['xdebug'] == 2) {
40ce98f4
AD
776 print_r($item);
777 }
71bd29f6 778
16211ddb 779 if ($use_simplepie) {
9fdf7824
AD
780 $entry_guid = $item->get_id();
781 if (!$entry_guid) $entry_guid = $item->get_link();
782 if (!$entry_guid) $entry_guid = make_guid_from_title($item->get_title());
783
784 } else {
785
786 $entry_guid = $item["id"];
34e420fb 787
9fdf7824
AD
788 if (!$entry_guid) $entry_guid = $item["guid"];
789 if (!$entry_guid) $entry_guid = $item["link"];
790 if (!$entry_guid) $entry_guid = make_guid_from_title($item["title"]);
791 }
be832a1a 792
b4e75b2a 793 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb
AD
794 _debug("update_rss_feed: guid $entry_guid");
795 }
796
be832a1a
AD
797 if (!$entry_guid) continue;
798
799 $entry_timestamp = "";
800
16211ddb 801 if ($use_simplepie) {
9fdf7824
AD
802 $entry_timestamp = strtotime($item->get_date());
803 } else {
804 $rss_2_date = $item['pubdate'];
805 $rss_1_date = $item['dc']['date'];
806 $atom_date = $item['issued'];
807 if (!$atom_date) $atom_date = $item['updated'];
e9558345 808
9fdf7824
AD
809 if ($atom_date != "") $entry_timestamp = parse_w3cdtf($atom_date);
810 if ($rss_1_date != "") $entry_timestamp = parse_w3cdtf($rss_1_date);
811 if ($rss_2_date != "") $entry_timestamp = strtotime($rss_2_date);
e9558345 812
9fdf7824 813 }
9bb36aa0 814
2e930846 815 if ($entry_timestamp == "" || $entry_timestamp == -1 || !$entry_timestamp) {
be832a1a
AD
816 $entry_timestamp = time();
817 $no_orig_date = 'true';
818 } else {
819 $no_orig_date = 'false';
820 }
821
822 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
823
b4e75b2a 824 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
44d0e774
AD
825 _debug("update_rss_feed: date $entry_timestamp [$entry_timestamp_fmt]");
826 }
827
16211ddb 828 if ($use_simplepie) {
9fdf7824
AD
829 $entry_title = $item->get_title();
830 } else {
831 $entry_title = trim(strip_tags($item["title"]));
832 }
be832a1a 833
16211ddb 834 if ($use_simplepie) {
9fdf7824
AD
835 $entry_link = $item->get_link();
836 } else {
837 // strange Magpie workaround
838 $entry_link = $item["link_"];
839 if (!$entry_link) $entry_link = $item["link"];
840 }
be832a1a 841
b4e75b2a 842 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
9bb36aa0
AD
843 _debug("update_rss_feed: title $entry_title");
844 }
845
846 if (!$entry_title) $entry_title = date("Y-m-d H:i:s", $entry_timestamp);;
7d3ab0dd 847
be832a1a 848 $entry_link = strip_tags($entry_link);
7d3ab0dd 849
16211ddb 850 if ($use_simplepie) {
4af7a36a
AD
851 $entry_content = $item->get_content();
852 if (!$entry_content) $entry_content = $item->get_description();
9fdf7824
AD
853 } else {
854 $entry_content = $item["content:escaped"];
855
856 if (!$entry_content) $entry_content = $item["content:encoded"];
e91ab107 857 if (!$entry_content) $entry_content = $item["content"]["encoded"];
9fdf7824 858 if (!$entry_content) $entry_content = $item["content"];
ea322415
AD
859
860 // Magpie bugs are getting ridiculous
861 if (trim($entry_content) == "Array") $entry_content = false;
862
9fdf7824
AD
863 if (!$entry_content) $entry_content = $item["atom_content"];
864 if (!$entry_content) $entry_content = $item["summary"];
e91ab107
AD
865
866 if (!$entry_content ||
867 strlen($entry_content) < strlen($item["description"])) {
868 $entry_content = $item["description"];
869 };
9fdf7824
AD
870
871 // WTF
872 if (is_array($entry_content)) {
873 $entry_content = $entry_content["encoded"];
874 if (!$entry_content) $entry_content = $entry_content["escaped"];
ea322415 875 }
be832a1a
AD
876 }
877
b4e75b2a 878 if ($_REQUEST["xdebug"] == 2) {
ea322415
AD
879 print "update_rss_feed: content: ";
880 print_r(htmlspecialchars($entry_content));
881 }
be832a1a
AD
882
883 $entry_content_unescaped = $entry_content;
be832a1a 884
16211ddb 885 if ($use_simplepie) {
9fdf7824 886 $entry_comments = strip_tags($item->data["comments"]);
30cf38dd 887 if ($item->get_author()) {
e1d600f0 888 $entry_author_item = $item->get_author();
a0c6eafb
AD
889 $entry_author = $entry_author_item->get_name();
890 if (!$entry_author) $entry_author = $entry_author_item->get_email();
d1ee9106
AD
891
892 $entry_author = db_escape_string($entry_author);
30cf38dd 893 }
9fdf7824
AD
894 } else {
895 $entry_comments = strip_tags($item["comments"]);
896
897 $entry_author = db_escape_string(strip_tags($item['dc']['creator']));
4d6e9157 898
9fdf7824
AD
899 if ($item['author']) {
900
901 if (is_array($item['author'])) {
902
903 if (!$entry_author) {
904 $entry_author = db_escape_string(strip_tags($item['author']['name']));
905 }
906
907 if (!$entry_author) {
908 $entry_author = db_escape_string(strip_tags($item['author']['email']));
909 }
4d6e9157 910 }
9fdf7824 911
4d6e9157 912 if (!$entry_author) {
9fdf7824 913 $entry_author = db_escape_string(strip_tags($item['author']));
4d6e9157 914 }
83f114c8 915 }
be832a1a
AD
916 }
917
83f114c8
AD
918 if (preg_match('/^[\t\n\r ]*$/', $entry_author)) $entry_author = '';
919
be832a1a 920 $entry_guid = db_escape_string(strip_tags($entry_guid));
2ad9ee56 921 $entry_guid = mb_substr($entry_guid, 0, 250);
be832a1a
AD
922
923 $result = db_query($link, "SELECT id FROM ttrss_entries
924 WHERE guid = '$entry_guid'");
925
926 $entry_content = db_escape_string($entry_content);
7e43ad58
AD
927
928 $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
929
be832a1a
AD
930 $entry_title = db_escape_string($entry_title);
931 $entry_link = db_escape_string($entry_link);
2544f36b
AD
932 $entry_comments = mb_substr(db_escape_string($entry_comments), 0, 250);
933 $entry_author = mb_substr($entry_author, 0, 250);
be832a1a 934
16211ddb 935 if ($use_simplepie) {
9fdf7824
AD
936 $num_comments = 0; #FIXME#
937 } else {
938 $num_comments = db_escape_string($item["slash"]["comments"]);
939 }
be832a1a
AD
940
941 if (!$num_comments) $num_comments = 0;
942
c3fc5e47
AD
943 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
944 _debug("update_rss_feed: looking for tags [1]...");
945 }
946
fefef828 947 // parse <category> entries into tags
be832a1a 948
e75df19d
AD
949 $additional_tags = array();
950
16211ddb 951 if ($use_simplepie) {
be832a1a 952
9fdf7824 953 $additional_tags_src = $item->get_categories();
3b9e5af4 954
a702e931
AD
955 if (is_array($additional_tags_src)) {
956 foreach ($additional_tags_src as $tobj) {
957 array_push($additional_tags, $tobj->get_term());
958 }
fefef828 959 }
fefef828 960
b4e75b2a 961 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
6af621c7
AD
962 _debug("update_rss_feed: category tags:");
963 print_r($additional_tags);
964 }
965
9fdf7824 966 } else {
fefef828 967
9fdf7824 968 $t_ctr = $item['category#'];
fefef828 969
9fdf7824 970 if ($t_ctr == 0) {
e75df19d 971 $additional_tags = array();
71bd29f6 972 } else if ($t_ctr > 0) {
9fdf7824 973 $additional_tags = array($item['category']);
71bd29f6
AD
974
975 if ($item['category@term']) {
976 array_push($additional_tags, $item['category@term']);
977 }
978
9fdf7824
AD
979 for ($i = 0; $i <= $t_ctr; $i++ ) {
980 if ($item["category#$i"]) {
981 array_push($additional_tags, $item["category#$i"]);
982 }
71bd29f6
AD
983
984 if ($item["category#$i@term"]) {
985 array_push($additional_tags, $item["category#$i@term"]);
986 }
9fdf7824
AD
987 }
988 }
989
990 // parse <dc:subject> elements
991
992 $t_ctr = $item['dc']['subject#'];
993
71bd29f6 994 if ($t_ctr > 0) {
e75df19d 995 array_push($additional_tags, $item['dc']['subject']);
71bd29f6 996
9fdf7824
AD
997 for ($i = 0; $i <= $t_ctr; $i++ ) {
998 if ($item['dc']["subject#$i"]) {
999 array_push($additional_tags, $item['dc']["subject#$i"]);
1000 }
fefef828
AD
1001 }
1002 }
1003 }
8add756a 1004
c3fc5e47
AD
1005 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
1006 _debug("update_rss_feed: looking for tags [2]...");
1007 }
e91ab107 1008
c3fc5e47
AD
1009 /* taaaags */
1010 // <a href="..." rel="tag">Xorg</a>, //
e91ab107 1011
c3fc5e47 1012 $entry_tags = null;
e91ab107 1013
c3fc5e47
AD
1014 preg_match_all("/<a.*?rel=['\"]tag['\"].*?\>([^<]+)<\/a>/i",
1015 $entry_content_unescaped, $entry_tags);
e91ab107 1016
c3fc5e47 1017 $entry_tags = $entry_tags[1];
b652fdae 1018
c3fc5e47 1019 $entry_tags = array_merge($entry_tags, $additional_tags);
b652fdae 1020
c3fc5e47
AD
1021 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
1022 _debug("update_rss_feed: unfiltered tags found:");
1023 print_r($entry_tags);
ce53e200
AD
1024 }
1025
d48d160c 1026 # sanitize content
183ad07b 1027
621ffb00
AD
1028 $entry_content = sanitize_article_content($entry_content);
1029 $entry_title = sanitize_article_content($entry_title);
d48d160c 1030
b4e75b2a 1031 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb
AD
1032 _debug("update_rss_feed: done collecting data [TITLE:$entry_title]");
1033 }
1034
44e241cb
AD
1035 db_query($link, "BEGIN");
1036
4c193675
AD
1037 if (db_num_rows($result) == 0) {
1038
b4e75b2a 1039 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb
AD
1040 _debug("update_rss_feed: base guid not found");
1041 }
1042
4c193675
AD
1043 // base post entry does not exist, create it
1044
4c193675
AD
1045 $result = db_query($link,
1046 "INSERT INTO ttrss_entries
1047 (title,
1048 guid,
1049 link,
1050 updated,
1051 content,
1052 content_hash,
1053 no_orig_date,
25ea2805 1054 date_updated,
4c193675 1055 date_entered,
11b0dce2 1056 comments,
b6104dee
AD
1057 num_comments,
1058 author)
4c193675
AD
1059 VALUES
1060 ('$entry_title',
1061 '$entry_guid',
1062 '$entry_link',
1063 '$entry_timestamp_fmt',
1064 '$entry_content',
1065 '$content_hash',
1066 $no_orig_date,
25ea2805
AD
1067 NOW(),
1068 NOW(),
11b0dce2 1069 '$entry_comments',
b6104dee
AD
1070 '$num_comments',
1071 '$entry_author')");
8926aab8
AD
1072 } else {
1073 // we keep encountering the entry in feeds, so we need to
25ea2805 1074 // update date_updated column so that we don't get horrible
8926aab8
AD
1075 // dupes when the entry gets purged and reinserted again e.g.
1076 // in the case of SLOW SLOW OMG SLOW updating feeds
1077
1078 $base_entry_id = db_fetch_result($result, 0, "id");
1079
25ea2805 1080 db_query($link, "UPDATE ttrss_entries SET date_updated = NOW()
8926aab8 1081 WHERE id = '$base_entry_id'");
4c193675
AD
1082 }
1083
1084 // now it should exist, if not - bad luck then
1085
6385315d
AD
1086 $result = db_query($link, "SELECT
1087 id,content_hash,no_orig_date,title,
25ea2805 1088 ".SUBSTRING_FOR_DATE."(date_updated,1,19) as date_updated,
2ac6b765 1089 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated,
11b0dce2 1090 num_comments
6385315d
AD
1091 FROM
1092 ttrss_entries
1093 WHERE guid = '$entry_guid'");
4c193675 1094
ce53e200
AD
1095 $entry_ref_id = 0;
1096 $entry_int_id = 0;
1097
4c193675
AD
1098 if (db_num_rows($result) == 1) {
1099
b4e75b2a 1100 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
7ca91eb3 1101 _debug("update_rss_feed: base guid found, checking for user record");
34e420fb
AD
1102 }
1103
11b0dce2
AD
1104 // this will be used below in update handler
1105 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
1106 $orig_title = db_fetch_result($result, 0, "title");
1107 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
25ea2805
AD
1108 $orig_date_updated = strtotime(db_fetch_result($result,
1109 0, "date_updated"));
6385315d 1110
11b0dce2 1111 $ref_id = db_fetch_result($result, 0, "id");
ce53e200 1112 $entry_ref_id = $ref_id;
4c193675 1113
11b0dce2 1114 // check for user post link to main table
4c193675 1115
11b0dce2 1116 // do we allow duplicate posts with same GUID in different feeds?
8d0ec6fd 1117 if (get_pref($link, "ALLOW_DUPLICATE_POSTS", $owner_uid, false)) {
e04c18a2 1118 $dupcheck_qpart = "AND (feed_id = '$feed' OR feed_id IS NULL)";
11b0dce2
AD
1119 } else {
1120 $dupcheck_qpart = "";
1121 }
71604ca4 1122
c3fc5e47
AD
1123 /* Collect article tags here so we could filter by them: */
1124
f8382011 1125 $article_filters = get_article_filters($filters, $entry_title,
c3fc5e47 1126 $entry_content, $entry_link, $entry_timestamp, $entry_author, $entry_tags);
19c9cb11 1127
b4e75b2a 1128 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
7ca91eb3
AD
1129 _debug("update_rss_feed: article filters: ");
1130 if (count($article_filters) != 0) {
1131 print_r($article_filters);
1132 }
1133 }
1134
f8382011 1135 if (find_article_filter($article_filters, "filter")) {
ee4a9812 1136 db_query($link, "COMMIT"); // close transaction in progress
11b0dce2
AD
1137 continue;
1138 }
19c9cb11 1139
ff6e357a
AD
1140 $score = calculate_article_score($article_filters);
1141
b4e75b2a 1142 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ff6e357a
AD
1143 _debug("update_rss_feed: initial score: $score");
1144 }
1145
ef83538d 1146 $query = "SELECT ref_id, int_id FROM ttrss_user_entries WHERE
11b0dce2 1147 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
ef83538d
AD
1148 $dupcheck_qpart";
1149
b4e75b2a 1150// if ($_REQUEST["xdebug"]) print "$query\n";
ef83538d
AD
1151
1152 $result = db_query($link, $query);
7ca91eb3 1153
11b0dce2
AD
1154 // okay it doesn't exist - create user entry
1155 if (db_num_rows($result) == 0) {
1156
b4e75b2a 1157 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
7ca91eb3
AD
1158 _debug("update_rss_feed: user record not found, creating...");
1159 }
1160
24605713 1161 if ($score >= -500 && !find_article_filter($article_filters, 'catchup')) {
11b0dce2
AD
1162 $unread = 'true';
1163 $last_read_qpart = 'NULL';
1164 } else {
1165 $unread = 'false';
1166 $last_read_qpart = 'NOW()';
1167 }
dd7d3187 1168
32d59314 1169 if (find_article_filter($article_filters, 'mark') || $score > 1000) {
dd7d3187
AD
1170 $marked = 'true';
1171 } else {
1172 $marked = 'false';
1173 }
a36c0dfe
AD
1174
1175 if (find_article_filter($article_filters, 'publish')) {
1176 $published = 'true';
1177 } else {
1178 $published = 'false';
1179 }
1180
11b0dce2
AD
1181 $result = db_query($link,
1182 "INSERT INTO ttrss_user_entries
ff6e357a 1183 (ref_id, owner_uid, feed_id, unread, last_read, marked,
905ff52a 1184 published, score, tag_cache, label_cache)
11b0dce2 1185 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
905ff52a 1186 $last_read_qpart, $marked, $published, '$score', '', '')");
ce53e200
AD
1187
1188 $result = db_query($link,
1189 "SELECT int_id FROM ttrss_user_entries WHERE
1190 ref_id = '$ref_id' AND owner_uid = '$owner_uid' AND
1191 feed_id = '$feed' LIMIT 1");
1192
1193 if (db_num_rows($result) == 1) {
1194 $entry_int_id = db_fetch_result($result, 0, "int_id");
1195 }
1196 } else {
b4e75b2a 1197 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
e04c18a2
AD
1198 _debug("update_rss_feed: user record FOUND");
1199 }
1200
ce53e200
AD
1201 $entry_ref_id = db_fetch_result($result, 0, "ref_id");
1202 $entry_int_id = db_fetch_result($result, 0, "int_id");
11b0dce2 1203 }
ce53e200 1204
b4e75b2a 1205 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ce53e200
AD
1206 _debug("update_rss_feed: RID: $entry_ref_id, IID: $entry_int_id");
1207 }
1208
6385315d
AD
1209 $post_needs_update = false;
1210
8d0ec6fd 1211 if (get_pref($link, "UPDATE_POST_ON_CHECKSUM_CHANGE", $owner_uid, false) &&
6385315d 1212 ($content_hash != $orig_content_hash)) {
7e43ad58 1213// print "<!-- [$entry_title] $content_hash vs $orig_content_hash -->";
6385315d
AD
1214 $post_needs_update = true;
1215 }
1216
7e43ad58 1217 if (db_escape_string($orig_title) != $entry_title) {
6385315d
AD
1218 $post_needs_update = true;
1219 }
1220
11b0dce2
AD
1221 if ($orig_num_comments != $num_comments) {
1222 $post_needs_update = true;
1223 }
1224
6385315d
AD
1225// this doesn't seem to be very reliable
1226//
1227// if ($orig_timestamp != $entry_timestamp && !$orig_no_orig_date) {
1228// $post_needs_update = true;
1229// }
1230
1231 // if post needs update, update it and mark all user entries
1c73bc0c 1232 // linking to this post as updated
6385315d
AD
1233 if ($post_needs_update) {
1234
7ca91eb3
AD
1235 if (defined('DAEMON_EXTENDED_DEBUG')) {
1236 _debug("update_rss_feed: post $entry_guid needs update...");
1237 }
1238
6385315d
AD
1239// print "<!-- post $orig_title needs update : $post_needs_update -->";
1240
6385315d 1241 db_query($link, "UPDATE ttrss_entries
11b0dce2 1242 SET title = '$entry_title', content = '$entry_content',
7e43ad58 1243 content_hash = '$content_hash',
11b0dce2 1244 num_comments = '$num_comments'
6385315d
AD
1245 WHERE id = '$ref_id'");
1246
8d0ec6fd 1247 if (get_pref($link, "MARK_UNREAD_ON_UPDATE", $owner_uid, false)) {
4919fb42
AD
1248 db_query($link, "UPDATE ttrss_user_entries
1249 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
1250 } else {
1251 db_query($link, "UPDATE ttrss_user_entries
1252 SET last_read = null WHERE ref_id = '$ref_id' AND unread = false");
1253 }
6385315d
AD
1254
1255 }
4c193675
AD
1256 }
1257
44e241cb
AD
1258 db_query($link, "COMMIT");
1259
b4e75b2a 1260 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ceb30ba4
AD
1261 _debug("update_rss_feed: assigning labels...");
1262 }
1263
1264 assign_article_to_labels($link, $entry_ref_id, $article_filters,
1265 $owner_uid);
1266
b4e75b2a 1267 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ce53e200
AD
1268 _debug("update_rss_feed: looking for enclosures...");
1269 }
1270
c3fc5e47
AD
1271 // enclosures
1272
1273 $enclosures = array();
1274
1275 if ($use_simplepie) {
1276 $encs = $item->get_enclosures();
1277
1278 if (is_array($encs)) {
1279 foreach ($encs as $e) {
1280 $e_item = array(
1281 $e->link, $e->type, $e->length);
1282
1283 array_push($enclosures, $e_item);
1284 }
1285 }
1286
1287 } else {
1288 // <enclosure>
1289
1290 $e_ctr = $item['enclosure#'];
1291
1292 if ($e_ctr > 0) {
1293 $e_item = array($item['enclosure@url'],
1294 $item['enclosure@type'],
1295 $item['enclosure@length']);
1296
1297 array_push($enclosures, $e_item);
1298
1299 for ($i = 0; $i <= $e_ctr; $i++ ) {
1300
1301 if ($item["enclosure#$i@url"]) {
1302 $e_item = array($item["enclosure#$i@url"],
1303 $item["enclosure#$i@type"],
1304 $item["enclosure#$i@length"]);
1305 array_push($enclosures, $e_item);
1306 }
1307 }
1308 }
1309
1310 // <media:content>
1311 // can there be many of those? yes -fox
1312
1313 $m_ctr = $item['media']['content#'];
1314
1315 if ($m_ctr > 0) {
1316 $e_item = array($item['media']['content@url'],
1317 $item['media']['content@medium'],
1318 $item['media']['content@length']);
1319
1320 array_push($enclosures, $e_item);
1321
1322 for ($i = 0; $i <= $m_ctr; $i++ ) {
1323
1324 if ($item["media"]["content#$i@url"]) {
1325 $e_item = array($item["media"]["content#$i@url"],
1326 $item["media"]["content#$i@medium"],
1327 $item["media"]["content#$i@length"]);
1328 array_push($enclosures, $e_item);
1329 }
1330 }
1331
1332 }
1333 }
1334
1335
b4e75b2a 1336 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
c3fc5e47 1337 _debug("update_rss_feed: article enclosures:");
ce53e200
AD
1338 print_r($enclosures);
1339 }
1340
1341 db_query($link, "BEGIN");
1342
1343 foreach ($enclosures as $enc) {
1344 $enc_url = db_escape_string($enc[0]);
1345 $enc_type = db_escape_string($enc[1]);
1346 $enc_dur = db_escape_string($enc[2]);
1347
1348 $result = db_query($link, "SELECT id FROM ttrss_enclosures
1349 WHERE content_url = '$enc_url' AND post_id = '$entry_ref_id'");
1350
1351 if (db_num_rows($result) == 0) {
1352 db_query($link, "INSERT INTO ttrss_enclosures
1353 (content_url, content_type, title, duration, post_id) VALUES
1354 ('$enc_url', '$enc_type', '', '$enc_dur', '$entry_ref_id')");
1355 }
1356 }
1357
1358 db_query($link, "COMMIT");
1359
c3fc5e47 1360 // check for manual tags (we have to do it here since they're loaded from filters)
073ca0e6 1361
4d50f419
AD
1362 foreach ($article_filters as $f) {
1363 if ($f[0] == "tag") {
f8382011 1364
4d50f419 1365 $manual_tags = trim_array(split(",", $f[1]));
073ca0e6 1366
4d50f419
AD
1367 foreach ($manual_tags as $tag) {
1368 if (tag_is_valid($tag)) {
1369 array_push($entry_tags, $tag);
1370 }
be832a1a
AD
1371 }
1372 }
1373 }
1374
c3fc5e47
AD
1375 // Skip boring tags
1376
11c9ea1f
AD
1377 $boring_tags = trim_array(split(",", mb_strtolower(get_pref($link,
1378 'BLACKLISTED_TAGS', $owner_uid, ''), 'utf-8')));
8fc70781 1379
c3fc5e47 1380 $filtered_tags = array();
779560b7 1381 $tags_to_cache = array();
c3fc5e47
AD
1382
1383 if ($entry_tags && is_array($entry_tags)) {
1384 foreach ($entry_tags as $tag) {
1385 if (array_search($tag, $boring_tags) === false) {
1386 array_push($filtered_tags, $tag);
073ca0e6
AD
1387 }
1388 }
fefef828
AD
1389 }
1390
779560b7
AD
1391 $filtered_tags = array_unique($filtered_tags);
1392
b4e75b2a 1393 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
c3fc5e47
AD
1394 _debug("update_rss_feed: filtered article tags:");
1395 print_r($filtered_tags);
9fdf7824
AD
1396 }
1397
c3fc5e47
AD
1398 // Save article tags in the database
1399
1400 if (count($filtered_tags) > 0) {
eb36b4eb 1401
44e241cb
AD
1402 db_query($link, "BEGIN");
1403
779560b7 1404 foreach ($filtered_tags as $tag) {
fefef828 1405
779560b7
AD
1406 $tag = sanitize_tag($tag);
1407 $tag = db_escape_string($tag);
1408
1409 if (!tag_is_valid($tag)) continue;
1410
1411 $result = db_query($link, "SELECT id FROM ttrss_tags
1412 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
1413 owner_uid = '$owner_uid' LIMIT 1");
31483fc1 1414
fe99ab12
AD
1415 if ($result && db_num_rows($result) == 0) {
1416
fe99ab12
AD
1417 db_query($link, "INSERT INTO ttrss_tags
1418 (owner_uid,tag_name,post_int_id)
1419 VALUES ('$owner_uid','$tag', '$entry_int_id')");
779560b7 1420 }
490c366d 1421
779560b7
AD
1422 array_push($tags_to_cache, $tag);
1423 }
490c366d 1424
779560b7
AD
1425 /* update the cache */
1426
1427 $tags_to_cache = array_unique($tags_to_cache);
1428
1429 $tags_str = db_escape_string(join(",", $tags_to_cache));
490c366d 1430
779560b7
AD
1431 db_query($link, "UPDATE ttrss_user_entries
1432 SET tag_cache = '$tags_str' WHERE ref_id = '$entry_ref_id'
1433 AND owner_uid = $owner_uid");
ce53e200 1434
44e241cb 1435 db_query($link, "COMMIT");
05732aa0 1436 }
9fdf7824 1437
b4e75b2a 1438 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
9fdf7824
AD
1439 _debug("update_rss_feed: article processed");
1440 }
4c193675 1441 }
40d13c28 1442
50b2db96 1443 if (!$last_updated) {
b4e75b2a 1444 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
50b2db96
AD
1445 _debug("update_rss_feed: new feed, catching it up...");
1446 }
c7e51de1 1447 catchup_feed($link, $feed, false, $owner_uid);
50b2db96
AD
1448 }
1449
0e70ed51 1450 purge_feed($link, $feed, 0);
3907ef71 1451
ab3d0b99
AD
1452 db_query($link, "UPDATE ttrss_feeds
1453 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
eb36b4eb 1454
44e241cb 1455// db_query($link, "COMMIT");
dd8c76a9 1456
ab3d0b99 1457 } else {
ca872b9d 1458
16211ddb 1459 if ($use_simplepie) {
ca872b9d 1460 $error_msg = mb_substr($rss->error(), 0, 250);
9fdf7824 1461 } else {
ca872b9d 1462 $error_msg = mb_substr(magpie_error(), 0, 250);
9fdf7824 1463 }
ca872b9d 1464
b4e75b2a 1465 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ca872b9d
AD
1466 _debug("update_rss_feed: error fetching feed: $error_msg");
1467 }
1468
1469 $error_msg = db_escape_string($error_msg);
1470
ab3d0b99 1471 db_query($link,
aa5f9f5f
AD
1472 "UPDATE ttrss_feeds SET last_error = '$error_msg',
1473 last_updated = NOW() WHERE id = '$feed'");
40d13c28
AD
1474 }
1475
16211ddb 1476 if ($use_simplepie) {
ac6ebdb3
AD
1477 unset($rss);
1478 }
1479
b4e75b2a 1480 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb 1481 _debug("update_rss_feed: done");
219bd8fc
AD
1482 }
1483
40d13c28
AD
1484 }
1485
f175937c 1486 function print_select($id, $default, $values, $attributes = "") {
79f3553b 1487 print "<select name=\"$id\" id=\"$id\" $attributes>";
a0d53889
AD
1488 foreach ($values as $v) {
1489 if ($v == $default)
1490 $sel = " selected";
1491 else
1492 $sel = "";
1493
1494 print "<option$sel>$v</option>";
1495 }
1496 print "</select>";
1497 }
40d13c28 1498
79f3553b
AD
1499 function print_select_hash($id, $default, $values, $attributes = "") {
1500 print "<select name=\"$id\" id='$id' $attributes>";
673d54ca
AD
1501 foreach (array_keys($values) as $v) {
1502 if ($v == $default)
74d5c8fa 1503 $sel = 'selected="selected"';
673d54ca
AD
1504 else
1505 $sel = "";
1506
1507 print "<option $sel value=\"$v\">".$values[$v]."</option>";
1508 }
1509
1510 print "</select>";
1511 }
1512
c3fc5e47 1513 function get_article_filters($filters, $title, $content, $link, $timestamp, $author, $tags) {
240054f1 1514 $matches = array();
c2d9322b 1515
240054f1
AD
1516 if ($filters["title"]) {
1517 foreach ($filters["title"] as $filter) {
c2d9322b
AD
1518 $reg_exp = $filter["reg_exp"];
1519 $inverse = $filter["inverse"];
1520 if ((!$inverse && preg_match("/$reg_exp/i", $title)) ||
1521 ($inverse && !preg_match("/$reg_exp/i", $title))) {
1522
240054f1
AD
1523 array_push($matches, array($filter["action"], $filter["action_param"]));
1524 }
1525 }
1526 }
1527
1528 if ($filters["content"]) {
1529 foreach ($filters["content"] as $filter) {
c2d9322b
AD
1530 $reg_exp = $filter["reg_exp"];
1531 $inverse = $filter["inverse"];
1532
1533 if ((!$inverse && preg_match("/$reg_exp/i", $content)) ||
1534 ($inverse && !preg_match("/$reg_exp/i", $content))) {
1535
240054f1
AD
1536 array_push($matches, array($filter["action"], $filter["action_param"]));
1537 }
1538 }
1539 }
1540
1541 if ($filters["both"]) {
1542 foreach ($filters["both"] as $filter) {
1543 $reg_exp = $filter["reg_exp"];
c2d9322b
AD
1544 $inverse = $filter["inverse"];
1545
1546 if ($inverse) {
d404ae81 1547 if (!preg_match("/$reg_exp/i", $title) && !preg_match("/$reg_exp/i", $content)) {
c2d9322b
AD
1548 array_push($matches, array($filter["action"], $filter["action_param"]));
1549 }
1550 } else {
1551 if (preg_match("/$reg_exp/i", $title) || preg_match("/$reg_exp/i", $content)) {
1552 array_push($matches, array($filter["action"], $filter["action_param"]));
1553 }
240054f1
AD
1554 }
1555 }
1556 }
1557
1558 if ($filters["link"]) {
1559 $reg_exp = $filter["reg_exp"];
1560 foreach ($filters["link"] as $filter) {
1561 $reg_exp = $filter["reg_exp"];
c2d9322b
AD
1562 $inverse = $filter["inverse"];
1563
1564 if ((!$inverse && preg_match("/$reg_exp/i", $link)) ||
1565 ($inverse && !preg_match("/$reg_exp/i", $link))) {
1566
240054f1
AD
1567 array_push($matches, array($filter["action"], $filter["action_param"]));
1568 }
1569 }
1570 }
1571
44d0e774
AD
1572 if ($filters["date"]) {
1573 $reg_exp = $filter["reg_exp"];
1574 foreach ($filters["date"] as $filter) {
1575 $date_modifier = $filter["filter_param"];
1576 $inverse = $filter["inverse"];
1577 $check_timestamp = strtotime($filter["reg_exp"]);
1578
1579 # no-op when timestamp doesn't parse to prevent misfires
1580
1581 if ($check_timestamp) {
1582 $match_ok = false;
1583
1584 if ($date_modifier == "before" && $timestamp < $check_timestamp ||
1585 $date_modifier == "after" && $timestamp > $check_timestamp) {
1586 $match_ok = true;
1587 }
1588
1589 if ($inverse) $match_ok = !$match_ok;
1590
1591 if ($match_ok) {
1592 array_push($matches, array($filter["action"], $filter["action_param"]));
1593 }
1594 }
1595 }
1596 }
1597
fa3317be
AD
1598 if ($filters["author"]) {
1599 foreach ($filters["author"] as $filter) {
1600 $reg_exp = $filter["reg_exp"];
1601 $inverse = $filter["inverse"];
1602 if ((!$inverse && preg_match("/$reg_exp/i", $author)) ||
1603 ($inverse && !preg_match("/$reg_exp/i", $author))) {
1604
1605 array_push($matches, array($filter["action"], $filter["action_param"]));
1606 }
1607 }
1608 }
1609
c3fc5e47
AD
1610 if ($filters["tag"]) {
1611
1612 $tag_string = join(",", $tags);
1613
1614 foreach ($filters["tag"] as $filter) {
1615 $reg_exp = $filter["reg_exp"];
1616 $inverse = $filter["inverse"];
1617
1618 if ((!$inverse && preg_match("/$reg_exp/i", $tag_string)) ||
1619 ($inverse && !preg_match("/$reg_exp/i", $tag_string))) {
1620
1621 array_push($matches, array($filter["action"], $filter["action_param"]));
1622 }
1623 }
1624 }
1625
1626
240054f1
AD
1627 return $matches;
1628 }
1629
f8382011
AD
1630 function find_article_filter($filters, $filter_name) {
1631 foreach ($filters as $f) {
1632 if ($f[0] == $filter_name) {
1633 return $f;
1634 };
1635 }
1636 return false;
1637 }
1638
ff6e357a
AD
1639 function calculate_article_score($filters) {
1640 $score = 0;
1641
1642 foreach ($filters as $f) {
1643 if ($f[0] == "score") {
1644 $score += $f[1];
1645 };
1646 }
1647 return $score;
1648 }
1649
ceb30ba4
AD
1650 function assign_article_to_labels($link, $id, $filters, $owner_uid) {
1651 foreach ($filters as $f) {
1652 if ($f[0] == "label") {
1653 label_add_article($link, $id, $f[1], $owner_uid);
1654 };
1655 }
1656 }
ff6e357a 1657
9323147e 1658 function printFeedEntry($feed_id, $class, $feed_title, $unread, $icon_file, $link,
2eb9c95c
AD
1659 $rtl_content = false, $last_updated = false, $last_error = false,
1660 $fg_content = false, $bg_content = false) {
254e0e4b 1661
e04c18a2 1662 if (!$feed_title) $feed_title = getFeedTitle($link, $feed_id, false);
4bee8b5f
AD
1663 if (!$unread) $unread = getFeedUnread($link, $feed_id);
1664
1665 if ($unread > 0) $class .= "Unread";
1666
1667 if (!$icon_file) $icon_file = getFeedIcon($feed_id);
e04c18a2 1668
e9823609
AD
1669 if (strpos($icon_file, "images") !== false) {
1670 $icon_file = theme_image($link, $icon_file);
b97e6e02
AD
1671 }
1672
254e0e4b 1673 if (file_exists($icon_file) && filesize($icon_file) > 0) {
023fe037 1674 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"$icon_file\">";
254e0e4b 1675 } else {
023fe037 1676 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"images/blank_icon.gif\">";
254e0e4b
AD
1677 }
1678
9323147e
AD
1679 if ($rtl_content) {
1680 $rtl_tag = "dir=\"rtl\"";
1681 } else {
1682 $rtl_tag = "dir=\"ltr\"";
1683 }
1684
78d5212c
AD
1685 $error_notify_msg = "";
1686
fb1fb4ab
AD
1687 if ($last_error) {
1688 $link_title = "Error: $last_error ($last_updated)";
78d5212c 1689 $error_notify_msg = "(Error)";
ad780e9c 1690 } else if ($last_updated) {
fb1fb4ab
AD
1691 $link_title = "Updated: $last_updated";
1692 }
1693
02b289d6
AD
1694 $feed = "<span class='feedlink' title=\"$link_title\" id=\"FEEDL-$feed_id\" href=\"#\"
1695 onclick=\"viewfeed('$feed_id');\">$feed_title</span>";
254e0e4b 1696
2eb9c95c
AD
1697/* if ($feed_id < -10) {
1698 $bg_color = "#00ccff";
1699 $fg_color = "white";
1700 }
1701
1702 if ($fg_color || $bg_color) {
1703 $color_str = "<div class='labelColorIndicator'
1704 style='color : $fg_color; background-color : $bg_color'>l</div>";
1705 }
1706
1707 print $color_str; */
1708
8836613c 1709 print "<li id=\"FEEDR-$feed_id\" class=\"$class\">";
85a92289 1710 print "$feed_icon";
9323147e 1711 print "<span $rtl_tag id=\"FEEDN-$feed_id\">$feed</span>";
254e0e4b
AD
1712
1713 if ($unread != 0) {
d7e83df7 1714 $fctr_class = "class=\"feedCtrHasUnread\"";
254e0e4b 1715 } else {
d7e83df7 1716 $fctr_class = "class=\"feedCtrNoUnread\"";
254e0e4b
AD
1717 }
1718
9323147e 1719 print " <span $rtl_tag $fctr_class id=\"FEEDCTR-$feed_id\">
254e0e4b 1720 (<span id=\"FEEDU-$feed_id\">$unread</span>)</span>";
78d5212c
AD
1721
1722 if (get_pref($link, "EXTENDED_FEEDLIST")) {
bdb7369b 1723 $total = getFeedArticles($link, $feed_id);
78d5212c 1724 print "<div class=\"feedExtInfo\">
bdb7369b 1725 <span id=\"FLUPD-$feed_id\">$last_updated ($total total) $error_notify_msg</span></div>";
78d5212c 1726 }
2eb9c95c 1727
254e0e4b
AD
1728 print "</li>";
1729
1730 }
1731
406d9489
AD
1732 function getmicrotime() {
1733 list($usec, $sec) = explode(" ",microtime());
1734 return ((float)$usec + (float)$sec);
1735 }
1736
f541eb78 1737 function print_radio($id, $default, $true_is, $values, $attributes = "") {
77e96719
AD
1738 foreach ($values as $v) {
1739
1740 if ($v == $default)
5da169d9 1741 $sel = "checked";
77e96719 1742 else
5da169d9
AD
1743 $sel = "";
1744
f541eb78 1745 if ($v == $true_is) {
5da169d9
AD
1746 $sel .= " value=\"1\"";
1747 } else {
1748 $sel .= " value=\"0\"";
1749 }
77e96719 1750
69654950
AD
1751 print "<input class=\"noborder\"
1752 type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
77e96719
AD
1753
1754 }
1755 }
1756
d9084cf2 1757 function initialize_user_prefs($link, $uid, $profile = false) {
ff485f1d
AD
1758
1759 $uid = db_escape_string($uid);
1760
d9084cf2
AD
1761 if (!$profile) {
1762 $profile = "NULL";
f9aa6a89 1763 $profile_qpart = "AND profile IS NULL";
d9084cf2 1764 } else {
f9aa6a89 1765 $profile_qpart = "AND profile = '$profile'";
d9084cf2
AD
1766 }
1767
f9aa6a89
AD
1768 if (get_schema_version($link) < 63) $profile_qpart = "";
1769
ff485f1d
AD
1770 db_query($link, "BEGIN");
1771
1772 $result = db_query($link, "SELECT pref_name,def_value FROM ttrss_prefs");
1773
1774 $u_result = db_query($link, "SELECT pref_name
f9aa6a89 1775 FROM ttrss_user_prefs WHERE owner_uid = '$uid' $profile_qpart");
ff485f1d
AD
1776
1777 $active_prefs = array();
1778
1779 while ($line = db_fetch_assoc($u_result)) {
1780 array_push($active_prefs, $line["pref_name"]);
1781 }
1782
1783 while ($line = db_fetch_assoc($result)) {
1784 if (array_search($line["pref_name"], $active_prefs) === FALSE) {
1785// print "adding " . $line["pref_name"] . "<br>";
1786
f9aa6a89
AD
1787 if (get_schema_version($link) < 63) {
1788 db_query($link, "INSERT INTO ttrss_user_prefs
1789 (owner_uid,pref_name,value) VALUES
1790 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."')");
1791
1792 } else {
1793 db_query($link, "INSERT INTO ttrss_user_prefs
1794 (owner_uid,pref_name,value, profile) VALUES
1795 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."', $profile)");
1796 }
ff485f1d
AD
1797
1798 }
1799 }
1800
1801 db_query($link, "COMMIT");
1802
1803 }
956c7629
AD
1804
1805 function lookup_user_id($link, $user) {
1806
1807 $result = db_query($link, "SELECT id FROM ttrss_users WHERE
1808 login = '$login'");
1809
1810 if (db_num_rows($result) == 1) {
1811 return db_fetch_result($result, 0, "id");
1812 } else {
1813 return false;
1814 }
1815 }
1816
18664970
AD
1817 function http_authenticate_user($link) {
1818
99ea1043 1819// error_log("http_authenticate_user: ".$_SERVER["PHP_AUTH_USER"]."\n", 3, '/tmp/tt-rss.log');
4bc64807 1820
18664970
AD
1821 if (!$_SERVER["PHP_AUTH_USER"]) {
1822
1823 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
1824 header('HTTP/1.0 401 Unauthorized');
1825 exit;
1826
1827 } else {
1828 $auth_result = authenticate_user($link,
1829 $_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"]);
1830
1831 if (!$auth_result) {
1832 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
1833 header('HTTP/1.0 401 Unauthorized');
1834 exit;
1835 }
1836 }
1837
1838 return true;
1839 }
1840
461766f3 1841 function authenticate_user($link, $login, $password, $force_auth = false) {
c8437f35 1842
131b01b3 1843 if (!SINGLE_USER_MODE) {
c8437f35 1844
1a9f4d3c
AD
1845 $pwd_hash1 = encrypt_password($password);
1846 $pwd_hash2 = encrypt_password($password, $login);
2d969845 1847 $login = db_escape_string($login);
461766f3 1848
66917e70 1849 if (defined('ALLOW_REMOTE_USER_AUTH') && ALLOW_REMOTE_USER_AUTH
73f5f114 1850 && $_SERVER["REMOTE_USER"] && $login != "admin") {
66917e70
AD
1851
1852 $login = db_escape_string($_SERVER["REMOTE_USER"]);
1853
73f5f114 1854 $query = "SELECT id,login,access_level,pwd_hash
461766f3 1855 FROM ttrss_users WHERE
66917e70
AD
1856 login = '$login'";
1857
461766f3 1858 } else {
1a9f4d3c 1859 $query = "SELECT id,login,access_level,pwd_hash
461766f3 1860 FROM ttrss_users WHERE
1a9f4d3c
AD
1861 login = '$login' AND (pwd_hash = '$pwd_hash1' OR
1862 pwd_hash = '$pwd_hash2')";
461766f3
AD
1863 }
1864
1865 $result = db_query($link, $query);
131b01b3
AD
1866
1867 if (db_num_rows($result) == 1) {
1868 $_SESSION["uid"] = db_fetch_result($result, 0, "id");
1869 $_SESSION["name"] = db_fetch_result($result, 0, "login");
1870 $_SESSION["access_level"] = db_fetch_result($result, 0, "access_level");
1871
1872 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
1873 $_SESSION["uid"]);
1874
131b01b3 1875 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1a9f4d3c 1876 $_SESSION["pwd_hash"] = db_fetch_result($result, 0, "pwd_hash");
91c5f229
AD
1877
1878 $_SESSION["last_version_check"] = time();
131b01b3
AD
1879
1880 initialize_user_prefs($link, $_SESSION["uid"]);
1881
1882 return true;
1883 }
1884
1885 return false;
503eb349 1886
131b01b3 1887 } else {
503eb349 1888
131b01b3
AD
1889 $_SESSION["uid"] = 1;
1890 $_SESSION["name"] = "admin";
f557cd78 1891
0bbba72d
AD
1892 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1893
1894 initialize_user_prefs($link, $_SESSION["uid"]);
1895
c8437f35
AD
1896 return true;
1897 }
c8437f35
AD
1898 }
1899
e6cb77a0
AD
1900 function make_password($length = 8) {
1901
1902 $password = "";
798f722b
AD
1903 $possible = "0123456789abcdfghjkmnpqrstvwxyzABCDFGHJKMNPQRSTVWXYZ";
1904
1905 $i = 0;
e6cb77a0
AD
1906
1907 while ($i < $length) {
1908 $char = substr($possible, mt_rand(0, strlen($possible)-1), 1);
1909
1910 if (!strstr($password, $char)) {
1911 $password .= $char;
1912 $i++;
1913 }
1914 }
1915 return $password;
1916 }
1917
1918 // this is called after user is created to initialize default feeds, labels
1919 // or whatever else
1920
1921 // user preferences are checked on every login, not here
1922
1923 function initialize_user($link, $uid) {
1924
e6cb77a0 1925 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
74bff337 1926 values ('$uid', 'Tiny Tiny RSS: New Releases',
b6d486a3 1927 'http://tt-rss.org/releases.rss')");
3b0feb9b 1928
cd2cd415
AD
1929 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
1930 values ('$uid', 'Tiny Tiny RSS: Forum',
f0855b88 1931 'http://tt-rss.org/forum/rss.php')");
3b0feb9b 1932 }
e6cb77a0 1933
b8aa49bc 1934 function logout_user() {
5ccc1cf5
AD
1935 session_destroy();
1936 if (isset($_COOKIE[session_name()])) {
1937 setcookie(session_name(), '', time()-42000, '/');
1938 }
b8aa49bc
AD
1939 }
1940
75836f33 1941 function get_script_urlpath() {
87a79fa4 1942 return preg_replace('/\/[^\/]*$/', "", $_SERVER["REQUEST_URI"]);
75836f33
AD
1943 }
1944
916f788a 1945 function validate_session($link) {
741edab2
AD
1946 if (SINGLE_USER_MODE) {
1947 return true;
1948 }
1949
a2e9b457 1950 if (SESSION_CHECK_ADDRESS && $_SESSION["uid"]) {
916f788a
AD
1951 if ($_SESSION["ip_address"]) {
1952 if ($_SESSION["ip_address"] != $_SERVER["REMOTE_ADDR"]) {
af163b85 1953 $_SESSION["login_error_msg"] = __("Session failed to validate (incorrect IP)");
916f788a
AD
1954 return false;
1955 }
1956 }
1957 }
d620cfe7 1958
05044a59
AD
1959 if ($_SESSION["ref_schema_version"] != get_schema_version($link, true)) {
1960 return false;
1961 }
1962
e6684130
AD
1963 if ($_SESSION["uid"]) {
1964
1965 $result = db_query($link,
1966 "SELECT pwd_hash FROM ttrss_users WHERE id = '".$_SESSION["uid"]."'");
1967
1968 $pwd_hash = db_fetch_result($result, 0, "pwd_hash");
1969
1970 if ($pwd_hash != $_SESSION["pwd_hash"]) {
1971 return false;
1972 }
1973 }
1974
a885f0ec 1975/* if ($_SESSION["cookie_lifetime"] && $_SESSION["uid"]) {
d620cfe7 1976
8e849206 1977 //print_r($_SESSION);
d620cfe7
AD
1978
1979 if (time() > $_SESSION["cookie_lifetime"]) {
1980 return false;
1981 }
a885f0ec
AD
1982 } */
1983
916f788a
AD
1984 return true;
1985 }
1986
793185a9 1987 function login_sequence($link, $mobile = false) {
b8aa49bc 1988 if (!SINGLE_USER_MODE) {
75836f33 1989
7f0acba7 1990 $login_action = $_POST["login_action"];
a885f0ec 1991
01a87dff 1992 # try to authenticate user if called from login form
7f0acba7 1993 if ($login_action == "do_login") {
01a87dff
AD
1994 $login = $_POST["login"];
1995 $password = $_POST["password"];
d620cfe7 1996 $remember_me = $_POST["remember_me"];
f557cd78 1997
01a87dff
AD
1998 if (authenticate_user($link, $login, $password)) {
1999 $_POST["password"] = "";
d620cfe7 2000
f8c612d4 2001 $_SESSION["language"] = $_POST["language"];
05044a59 2002 $_SESSION["ref_schema_version"] = get_schema_version($link, true);
a598370d 2003 $_SESSION["bw_limit"] = !!$_POST["bw_limit"];
f8c612d4 2004
d9084cf2
AD
2005 if ($_POST["profile"]) {
2006
2007 $profile = db_escape_string($_POST["profile"]);
2008
2009 $result = db_query($link, "SELECT id FROM ttrss_settings_profiles
2010 WHERE id = '$profile' AND owner_uid = " . $_SESSION["uid"]);
2011
2012 if (db_num_rows($result) != 0) {
2013 $_SESSION["profile"] = $profile;
2014 $_SESSION["prefs_cache"] = array();
2015 }
2016 }
2017
d620cfe7
AD
2018 header("Location: " . $_SERVER["REQUEST_URI"]);
2019 exit;
2020
01a87dff 2021 return;
7f0acba7 2022 } else {
af163b85 2023 $_SESSION["login_error_msg"] = __("Incorrect username or password");
01a87dff
AD
2024 }
2025 }
2026
7f0acba7 2027 if (!$_SESSION["uid"] || !validate_session($link)) {
206d4967
AD
2028 render_login_form($link, $mobile);
2029 //header("Location: login.php");
01a87dff 2030 exit;
d3687e7a
AD
2031 } else {
2032 /* bump login timestamp */
2033 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
2034 $_SESSION["uid"]);
019bd5a9 2035
d54780bc 2036 if ($_SESSION["language"] && SESSION_COOKIE_LIFETIME > 0) {
019bd5a9
AD
2037 setcookie("ttrss_lang", $_SESSION["language"],
2038 time() + SESSION_COOKIE_LIFETIME);
2039 }
b8aa49bc 2040 }
d620cfe7 2041
b8aa49bc 2042 } else {
0bbba72d 2043 return authenticate_user($link, "admin", null);
b8aa49bc
AD
2044 }
2045 }
3547842a
AD
2046
2047 function truncate_string($str, $max_len) {
12db369c 2048 if (mb_strlen($str, "utf-8") > $max_len - 3) {
66a251f9 2049 return mb_substr($str, 0, $max_len, "utf-8") . "&hellip;";
3547842a
AD
2050 } else {
2051 return $str;
2052 }
2053 }
54a60e1a 2054
e9823609 2055 function theme_image($link, $filename) {
883fee8d
AD
2056 if ($link) {
2057 $theme_path = get_user_theme_path($link);
e9823609 2058
883fee8d
AD
2059 if ($theme_path && is_file($theme_path.$filename)) {
2060 return $theme_path.$filename;
2061 } else {
2062 return $filename;
2063 }
e9823609
AD
2064 } else {
2065 return $filename;
2066 }
2067 }
2068
dce46cad 2069 function get_user_theme($link) {
e4c51a6c 2070
b92fbcd8 2071 if (get_schema_version($link) >= 63 && $_SESSION["uid"]) {
b97e6e02
AD
2072 $theme_name = get_pref($link, "_THEME_ID");
2073 if (is_dir("themes/$theme_name")) {
2074 return $theme_name;
2075 } else {
2076 return '';
2077 }
e4c51a6c 2078 } else {
b97e6e02 2079 return '';
e4c51a6c 2080 }
d9084cf2 2081
dce46cad
AD
2082 }
2083
2084 function get_user_theme_path($link) {
c3fddd05 2085 $theme_path = '';
dce46cad 2086
b92fbcd8 2087 if (get_schema_version($link) >= 63 && $_SESSION["uid"]) {
dce46cad
AD
2088 $theme_name = get_pref($link, "_THEME_ID");
2089
b97e6e02 2090 if ($theme_name && is_dir("themes/$theme_name")) {
dce46cad 2091 $theme_path = "themes/$theme_name/";
6ba50622 2092 } else {
dce46cad 2093 $theme_name = '';
6ba50622 2094 }
54a60e1a 2095 } else {
dce46cad
AD
2096 $theme_path = '';
2097 }
2098
2099 return $theme_path;
2100 }
2101
e71f2610
AD
2102 function get_user_theme_options($link) {
2103 $t = get_user_theme_path($link);
2104
2105 if ($t) {
2106 if (is_file("$t/theme.ini")) {
2107 $ini = parse_ini_file("$t/theme.ini", true);
2108 if ($ini['theme']['version']) {
2109 return $ini['theme']['options'];
2110 }
2111 }
2112 }
f1f3a642 2113 return '';
e71f2610
AD
2114 }
2115
2116
dce46cad
AD
2117 function get_all_themes() {
2118 $themes = glob("themes/*");
2119
b97e6e02
AD
2120 asort($themes);
2121
dce46cad
AD
2122 $rv = array();
2123
2124 foreach ($themes as $t) {
2125 if (is_file("$t/theme.ini")) {
2126 $ini = parse_ini_file("$t/theme.ini", true);
b97e6e02 2127 if ($ini['theme']['version'] && !$ini['theme']['disabled']) {
dce46cad
AD
2128 $entry = array();
2129 $entry["path"] = $t;
2130 $entry["base"] = basename($t);
2131 $entry["name"] = $ini['theme']['name'];
2132 $entry["version"] = $ini['theme']['version'];
2133 $entry["author"] = $ini['theme']['author'];
e71f2610 2134 $entry["options"] = $ini['theme']['options'];
dce46cad
AD
2135 array_push($rv, $entry);
2136 }
2137 }
54a60e1a 2138 }
dce46cad
AD
2139
2140 return $rv;
54a60e1a 2141 }
be773442 2142
324944f3
AD
2143 function make_local_datetime($link, $timestamp, $long, $owner_uid = false,
2144 $no_smart_dt = false) {
2145
2146 if (!$owner_uid) $owner_uid = $_SESSION['uid'];
2147 if (!$timestamp) $timestamp = '1970-01-01 0:00';
2148
2149 $user_tz_string = get_pref($link, 'USER_TIMEZONE', $owner_uid);
2150
2151 try {
2152 $user_tz = new DateTimeZone($user_tz_string);
2153 } catch (Exception $e) {
2154 $user_tz = new DateTimeZone('UTC');
2155 }
2156
2157 # We store date in UTC internally
2158 $dt = new DateTime($timestamp, new DateTimeZone('UTC'));
2159 $user_timestamp = $dt->format('U') + $user_tz->getOffset($dt);
2160
2161 if (!$no_smart_dt && get_pref($link, 'HEADLINES_SMART_DATE', $owner_uid)) {
2a5c136e
AD
2162 return smart_date_time($link, $user_timestamp,
2163 $user_tz->getOffset($dt), $owner_uid);
324944f3
AD
2164 } else {
2165 if ($long)
2166 $format = get_pref($link, 'LONG_DATE_FORMAT', $owner_uid);
2167 else
2168 $format = get_pref($link, 'SHORT_DATE_FORMAT', $owner_uid);
2169
2170 return date($format, $user_timestamp);
2171 }
2172 }
2173
2a5c136e
AD
2174 function smart_date_time($link, $timestamp, $tz_offset = 0, $owner_uid = false) {
2175 if (!$owner_uid) $owner_uid = $_SESSION['uid'];
2176
2177 if (date("Y.m.d", $timestamp) == date("Y.m.d", time() + $tz_offset)) {
be773442 2178 return date("G:i", $timestamp);
2a5c136e
AD
2179 } else if (date("Y", $timestamp) == date("Y", time() + $tz_offset)) {
2180 $format = get_pref($link, 'SHORT_DATE_FORMAT', $owner_uid);
2181 return date($format, $timestamp);
be773442 2182 } else {
2a5c136e
AD
2183 $format = get_pref($link, 'LONG_DATE_FORMAT', $owner_uid);
2184 return date($format, $timestamp);
be773442
AD
2185 }
2186 }
2187
2188 function smart_date($timestamp) {
2189 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
2190 return "Today";
f26450f1 2191 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
2192 return date("D m", $timestamp);
2193 } else {
b02111c2 2194 return date("Y/m/d", $timestamp);
be773442
AD
2195 }
2196 }
a654a595
AD
2197
2198 function sql_bool_to_string($s) {
2199 if ($s == "t" || $s == "1") {
2200 return "true";
2201 } else {
2202 return "false";
2203 }
2204 }
e3c99f3b
AD
2205
2206 function sql_bool_to_bool($s) {
2207 if ($s == "t" || $s == "1") {
2208 return true;
2209 } else {
2210 return false;
2211 }
2212 }
0ea4fb50 2213
badac687
AD
2214 function bool_to_sql_bool($s) {
2215 if ($s) {
2216 return "true";
2217 } else {
2218 return "false";
2219 }
2220 }
e3c99f3b 2221
0ea4fb50
AD
2222 function toggleEvenOdd($a) {
2223 if ($a == "even")
2224 return "odd";
2225 else
2226 return "even";
2227 }
6043fb7e 2228
199db684
AD
2229 function get_schema_version($link, $nocache = false) {
2230 if (!$_SESSION["schema_version"] || $nocache) {
2231 $result = db_query($link, "SELECT schema_version FROM ttrss_version");
2232 $version = db_fetch_result($result, 0, "schema_version");
2233 $_SESSION["schema_version"] = $version;
2234 return $version;
2235 } else {
2236 return $_SESSION["schema_version"];
2237 }
e4c51a6c
AD
2238 }
2239
6043fb7e 2240 function sanity_check($link) {
9cbca41f 2241
6043fb7e 2242 $error_code = 0;
05044a59 2243 $schema_version = get_schema_version($link);
6043fb7e
AD
2244
2245 if ($schema_version != SCHEMA_VERSION) {
2246 $error_code = 5;
2247 }
2248
aec3ce39
AD
2249 if (DB_TYPE == "mysql") {
2250 $result = db_query($link, "SELECT true", false);
2251 if (db_num_rows($result) != 1) {
2252 $error_code = 10;
2253 }
2254 }
2255
f29ba148
AD
2256 if (db_escape_string("testTEST") != "testTEST") {
2257 $error_code = 12;
2258 }
2259
6043fb7e 2260 if ($error_code != 0) {
aec3ce39 2261 print_error_xml($error_code);
6043fb7e
AD
2262 return false;
2263 } else {
2264 return true;
4220d6b0 2265 }
6043fb7e
AD
2266 }
2267
27981ca3 2268 function file_is_locked($filename) {
31a6d42d 2269 if (function_exists('flock')) {
fb074239 2270 $fp = @fopen(LOCK_DIRECTORY . "/$filename", "r");
31a6d42d
AD
2271 if ($fp) {
2272 if (flock($fp, LOCK_EX | LOCK_NB)) {
2273 flock($fp, LOCK_UN);
2274 fclose($fp);
2275 return false;
2276 }
27981ca3 2277 fclose($fp);
31a6d42d 2278 return true;
e89aed7b
AD
2279 } else {
2280 return false;
27981ca3 2281 }
27981ca3 2282 }
c1fb4a5e 2283 return true; // consider the file always locked and skip the test
27981ca3
AD
2284 }
2285
fcb4c0c9 2286 function make_lockfile($filename) {
cfa43e02 2287 $fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
fcb4c0c9 2288
82acc36d 2289 if (flock($fp, LOCK_EX | LOCK_NB)) {
4c59adb1
AD
2290 if (function_exists('posix_getpid')) {
2291 fwrite($fp, posix_getpid() . "\n");
2292 }
fcb4c0c9
AD
2293 return $fp;
2294 } else {
2295 return false;
2296 }
2297 }
2298
bf7fcde8 2299 function make_stampfile($filename) {
cfa43e02 2300 $fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
bf7fcde8 2301
8e00ae9b 2302 if (flock($fp, LOCK_EX | LOCK_NB)) {
bf7fcde8 2303 fwrite($fp, time() . "\n");
8e00ae9b 2304 flock($fp, LOCK_UN);
bf7fcde8
AD
2305 fclose($fp);
2306 return true;
2307 } else {
2308 return false;
2309 }
2310 }
2311
894ebcf5
AD
2312 function sql_random_function() {
2313 if (DB_TYPE == "mysql") {
2314 return "RAND()";
2315 } else {
2316 return "RANDOM()";
2317 }
2318 }
2319
c7e51de1
AD
2320 function catchup_feed($link, $feed, $cat_view, $owner_uid) {
2321
2322 if (!$owner_uid) $owner_uid = $_SESSION['uid'];
88040f57
AD
2323
2324 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
22fdebff 2325
23aa0d16
AD
2326 if ($cat_view) {
2327
72a2f4f5 2328 if ($feed >= 0) {
f9fca8cb
AD
2329
2330 if ($feed > 0) {
2331 $cat_qpart = "cat_id = '$feed'";
2332 } else {
2333 $cat_qpart = "cat_id IS NULL";
2334 }
23aa0d16 2335
f9fca8cb 2336 $tmp_result = db_query($link, "SELECT id
c7e51de1 2337 FROM ttrss_feeds WHERE $cat_qpart AND owner_uid = $owner_uid");
f9fca8cb
AD
2338
2339 while ($tmp_line = db_fetch_assoc($tmp_result)) {
23aa0d16 2340
f9fca8cb 2341 $tmp_feed = $tmp_line["id"];
23aa0d16 2342
f9fca8cb
AD
2343 db_query($link, "UPDATE ttrss_user_entries
2344 SET unread = false,last_read = NOW()
c7e51de1 2345 WHERE feed_id = '$tmp_feed' AND owner_uid = $owner_uid");
f9fca8cb
AD
2346 }
2347 } else if ($feed == -2) {
23aa0d16 2348
6f69764c
AD
2349
2350 db_query($link, "UPDATE ttrss_user_entries
2351 SET unread = false,last_read = NOW() WHERE (SELECT COUNT(*)
2352 FROM ttrss_user_labels2 WHERE article_id = ref_id) > 0
c7e51de1 2353 AND unread = true AND owner_uid = $owner_uid");
23aa0d16
AD
2354 }
2355
2356 } else if ($feed > 0) {
2357
6e63a7c3 2358 db_query($link, "UPDATE ttrss_user_entries
23aa0d16 2359 SET unread = false,last_read = NOW()
c7e51de1 2360 WHERE feed_id = '$feed' AND owner_uid = $owner_uid");
6e63a7c3 2361
23aa0d16
AD
2362 } else if ($feed < 0 && $feed > -10) { // special, like starred
2363
2364 if ($feed == -1) {
2365 db_query($link, "UPDATE ttrss_user_entries
2366 SET unread = false,last_read = NOW()
c7e51de1 2367 WHERE marked = true AND owner_uid = $owner_uid");
23aa0d16 2368 }
e4f4b46f
AD
2369
2370 if ($feed == -2) {
2371 db_query($link, "UPDATE ttrss_user_entries
2372 SET unread = false,last_read = NOW()
c7e51de1 2373 WHERE published = true AND owner_uid = $owner_uid");
e4f4b46f
AD
2374 }
2375
2d24f032
AD
2376 if ($feed == -3) {
2377
c1d7e6c3
AD
2378 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE");
2379
2d24f032 2380 if (DB_TYPE == "pgsql") {
7608b38a 2381 $match_part = "updated > NOW() - INTERVAL '$intl hour' ";
2d24f032 2382 } else {
7608b38a 2383 $match_part = "updated > DATE_SUB(NOW(),
c1d7e6c3 2384 INTERVAL $intl HOUR) ";
2d24f032
AD
2385 }
2386
1f3335dc
AD
2387 $result = db_query($link, "SELECT id FROM ttrss_entries,
2388 ttrss_user_entries WHERE $match_part AND
2389 unread = true AND
2390 ttrss_user_entries.ref_id = ttrss_entries.id AND
c7e51de1 2391 owner_uid = $owner_uid");
1f3335dc
AD
2392
2393 $affected_ids = array();
2394
2395 while ($line = db_fetch_assoc($result)) {
2396 array_push($affected_ids, $line["id"]);
2397 }
2398
2399 catchupArticlesById($link, $affected_ids, 0);
2d24f032
AD
2400 }
2401
3584cb11
AD
2402 if ($feed == -4) {
2403 db_query($link, "UPDATE ttrss_user_entries
2404 SET unread = false,last_read = NOW()
c7e51de1 2405 WHERE owner_uid = $owner_uid");
3584cb11
AD
2406 }
2407
23aa0d16
AD
2408 } else if ($feed < -10) { // label
2409
23aa0d16
AD
2410 $label_id = -$feed - 11;
2411
933ba4ee 2412 db_query($link, "UPDATE ttrss_user_entries, ttrss_user_labels2
338c238d
AD
2413 SET unread = false, last_read = NOW()
2414 WHERE label_id = '$label_id' AND unread = true
c7e51de1 2415 AND owner_uid = '$owner_uid' AND ref_id = article_id");
23aa0d16 2416
23aa0d16 2417 }
ad0056a8 2418
c7e51de1 2419 ccache_update($link, $feed, $owner_uid, $cat_view);
ad0056a8 2420
23aa0d16
AD
2421 } else { // tag
2422 db_query($link, "BEGIN");
2423
2424 $tag_name = db_escape_string($feed);
2425
2426 $result = db_query($link, "SELECT post_int_id FROM ttrss_tags
c7e51de1 2427 WHERE tag_name = '$tag_name' AND owner_uid = $owner_uid");
23aa0d16
AD
2428
2429 while ($line = db_fetch_assoc($result)) {
2430 db_query($link, "UPDATE ttrss_user_entries SET
2431 unread = false, last_read = NOW()
2432 WHERE int_id = " . $line["post_int_id"]);
2433 }
2434 db_query($link, "COMMIT");
2435 }
2436 }
2437
35bf080c 2438 function update_generic_feed($link, $feed, $cat_view, $force_update = false) {
23aa0d16
AD
2439 if ($cat_view) {
2440
2441 if ($feed > 0) {
2442 $cat_qpart = "cat_id = '$feed'";
2443 } else {
2444 $cat_qpart = "cat_id IS NULL";
2445 }
2446
c633e370 2447 $tmp_result = db_query($link, "SELECT id FROM ttrss_feeds
23aa0d16
AD
2448 WHERE $cat_qpart AND owner_uid = " . $_SESSION["uid"]);
2449
2450 while ($tmp_line = db_fetch_assoc($tmp_result)) {
571dad82 2451 $feed_id = $tmp_line["id"];
c633e370 2452 update_rss_feed($link, $feed_id, $force_update);
23aa0d16
AD
2453 }
2454
2455 } else {
c633e370 2456 update_rss_feed($link, $feed, $force_update);
23aa0d16
AD
2457 }
2458 }
a9cb1f83 2459
4ffa126e 2460 function getAllCounters($link, $omode = "flc", $active_feed = false) {
cf4d339c 2461
e33fe293 2462 if (!$omode) $omode = "flc";
0a6e5382 2463
6a7817c1
AD
2464 $data = getGlobalCounters($link);
2465
2466 $data = array_merge($data, getVirtCounters($link));
2467
2468 if (strchr($omode, "l")) $data = array_merge($data, getLabelCounters($link));
2469 if (strchr($omode, "f")) $data = array_merge($data, getFeedCounters($link, $active_feed));
2470 if (strchr($omode, "t")) $data = array_merge($data, getTagCounters($link));
e33fe293
AD
2471 if (strchr($omode, "c")) {
2472 if (get_pref($link, 'ENABLE_FEED_CATS')) {
6a7817c1 2473 $data = array_merge($data, getCategoryCounters($link));
cf4d339c 2474 }
e33fe293 2475 }
6a7817c1
AD
2476
2477 return $data;
a9cb1f83
AD
2478 }
2479
2480 function getCategoryCounters($link) {
6a7817c1 2481 $ret_arr = array();
bba7c4bf 2482
6a7817c1 2483 /* Labels category */
bba7c4bf 2484
8acc449c 2485 $cv = array("id" => -2, "kind" => "cat",
6a7817c1 2486 "counter" => getCategoryUnread($link, -2));
bba7c4bf 2487
6a7817c1 2488 array_push($ret_arr, $cv);
bba7c4bf 2489
14073c0a
AD
2490 $age_qpart = getMaxAgeSubquery();
2491
31375163
AD
2492 $result = db_query($link, "SELECT id AS cat_id, value AS unread
2493 FROM ttrss_feed_categories, ttrss_cat_counters_cache
2494 WHERE ttrss_cat_counters_cache.feed_id = id AND
2495 ttrss_feed_categories.owner_uid = " . $_SESSION["uid"]);
a9cb1f83
AD
2496
2497 while ($line = db_fetch_assoc($result)) {
22fdebff 2498 $line["cat_id"] = (int) $line["cat_id"];
8a4c759e 2499
8acc449c 2500 $cv = array("id" => $line["cat_id"], "kind" => "cat",
6a7817c1
AD
2501 "counter" => $line["unread"]);
2502
2503 array_push($ret_arr, $cv);
a9cb1f83 2504 }
d232a40f
AD
2505
2506 /* Special case: NULL category doesn't actually exist in the DB */
2507
9798b2b4 2508 $cv = array("id" => 0, "kind" => "cat",
6a7817c1 2509 "counter" => ccache_find($link, 0, $_SESSION["uid"], true));
d232a40f 2510
6a7817c1
AD
2511 array_push($ret_arr, $cv);
2512
2513 return $ret_arr;
a9cb1f83
AD
2514 }
2515
b6d486a3
AD
2516 function getCategoryUnread($link, $cat, $owner_uid = false) {
2517
2518 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
f295c368 2519
bba7c4bf 2520 if ($cat >= 0) {
18664970 2521
bba7c4bf
AD
2522 if ($cat != 0) {
2523 $cat_query = "cat_id = '$cat'";
2524 } else {
2525 $cat_query = "cat_id IS NULL";
2526 }
14073c0a
AD
2527
2528 $age_qpart = getMaxAgeSubquery();
2529
bba7c4bf 2530 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE $cat_query
b6d486a3 2531 AND owner_uid = " . $owner_uid);
bba7c4bf
AD
2532
2533 $cat_feeds = array();
2534 while ($line = db_fetch_assoc($result)) {
2535 array_push($cat_feeds, "feed_id = " . $line["id"]);
2536 }
2537
2538 if (count($cat_feeds) == 0) return 0;
2539
2540 $match_part = implode(" OR ", $cat_feeds);
2541
2542 $result = db_query($link, "SELECT COUNT(int_id) AS unread
14073c0a
AD
2543 FROM ttrss_user_entries,ttrss_entries
2544 WHERE unread = true AND ($match_part) AND id = ref_id
b6d486a3 2545 AND $age_qpart AND owner_uid = " . $owner_uid);
bba7c4bf
AD
2546
2547 $unread = 0;
2548
2549 # this needs to be rewritten
2550 while ($line = db_fetch_assoc($result)) {
2551 $unread += $line["unread"];
2552 }
2553
2554 return $unread;
2555 } else if ($cat == -1) {
59e15af4 2556 return getFeedUnread($link, -1) + getFeedUnread($link, -2) + getFeedUnread($link, -3) + getFeedUnread($link, 0);
bba7c4bf 2557 } else if ($cat == -2) {
f295c368 2558
b2531a28
AD
2559 $result = db_query($link, "
2560 SELECT COUNT(unread) AS unread FROM
2561 ttrss_user_entries, ttrss_labels2, ttrss_user_labels2, ttrss_feeds
2562 WHERE label_id = ttrss_labels2.id AND article_id = ref_id AND
2563 ttrss_labels2.owner_uid = '$owner_uid'
117335bf 2564 AND unread = true AND feed_id = ttrss_feeds.id
b2531a28 2565 AND ttrss_user_entries.owner_uid = '$owner_uid'");
ceb30ba4 2566
b2531a28 2567 $unread = db_fetch_result($result, 0, "unread");
f295c368 2568
b2531a28 2569 return $unread;
f295c368 2570
ceb30ba4 2571 }
f295c368
AD
2572 }
2573
14073c0a
AD
2574 function getMaxAgeSubquery($days = COUNTERS_MAX_AGE) {
2575 if (DB_TYPE == "pgsql") {
25ea2805 2576 return "ttrss_entries.date_updated >
14073c0a
AD
2577 NOW() - INTERVAL '$days days'";
2578 } else {
25ea2805 2579 return "ttrss_entries.date_updated >
14073c0a
AD
2580 DATE_SUB(NOW(), INTERVAL $days DAY)";
2581 }
2582 }
2583
f295c368 2584 function getFeedUnread($link, $feed, $is_cat = false) {
2627f2d0 2585 return getFeedArticles($link, $feed, $is_cat, true, $_SESSION["uid"]);
bdb7369b
AD
2586 }
2587
ceb30ba4
AD
2588 function getLabelUnread($link, $label_id, $owner_uid = false) {
2589 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
2590
2591 $result = db_query($link, "
0112162d 2592 SELECT COUNT(unread) AS unread FROM
b0f24af1
AD
2593 ttrss_user_entries, ttrss_labels2, ttrss_user_labels2, ttrss_feeds
2594 WHERE label_id = ttrss_labels2.id AND article_id = ref_id AND
2595 ttrss_labels2.owner_uid = '$owner_uid' AND ttrss_labels2.id = '$label_id'
117335bf 2596 AND unread = true AND feed_id = ttrss_feeds.id
933ba4ee 2597 AND ttrss_user_entries.owner_uid = '$owner_uid'");
ceb30ba4
AD
2598
2599 if (db_num_rows($result) != 0) {
2600 return db_fetch_result($result, 0, "unread");
2601 } else {
2602 return 0;
2603 }
2604 }
2605
2627f2d0
AD
2606 function getFeedArticles($link, $feed, $is_cat = false, $unread_only = false,
2607 $owner_uid = false) {
2608
22fdebff 2609 $n_feed = (int) $feed;
f295c368 2610
2627f2d0
AD
2611 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
2612
bdb7369b
AD
2613 if ($unread_only) {
2614 $unread_qpart = "unread = true";
2615 } else {
2616 $unread_qpart = "true";
2617 }
2618
14073c0a
AD
2619 $age_qpart = getMaxAgeSubquery();
2620
f295c368 2621 if ($is_cat) {
b6d486a3 2622 return getCategoryUnread($link, $n_feed, $owner_uid);
326469fc
AD
2623 } if ($feed != "0" && $n_feed == 0) {
2624
c5701e70
AD
2625 $feed = db_escape_string($feed);
2626
326469fc
AD
2627 $result = db_query($link, "SELECT SUM((SELECT COUNT(int_id)
2628 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
2629 AND ref_id = id AND $age_qpart
2630 AND $unread_qpart)) AS count FROM ttrss_tags
2631 WHERE owner_uid = $owner_uid AND tag_name = '$feed'");
2632 return db_fetch_result($result, 0, "count");
2633
f295c368 2634 } else if ($n_feed == -1) {
a9cb1f83 2635 $match_part = "marked = true";
e4f4b46f
AD
2636 } else if ($n_feed == -2) {
2637 $match_part = "published = true";
2d24f032
AD
2638 } else if ($n_feed == -3) {
2639 $match_part = "unread = true";
2640
b71e188e 2641 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid);
c1d7e6c3 2642
2d24f032 2643 if (DB_TYPE == "pgsql") {
7608b38a 2644 $match_part .= " AND updated > NOW() - INTERVAL '$intl hour' ";
2d24f032 2645 } else {
7608b38a 2646 $match_part .= " AND updated > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
2d24f032 2647 }
b2531a28
AD
2648 } else if ($n_feed == -4) {
2649 $match_part = "true";
e04c18a2 2650 } else if ($n_feed >= 0) {
831ff047 2651
6e63a7c3
AD
2652 if ($n_feed != 0) {
2653 $match_part = "feed_id = '$n_feed'";
831ff047 2654 } else {
6e63a7c3 2655 $match_part = "feed_id IS NULL";
831ff047 2656 }
6e63a7c3 2657
a9cb1f83 2658 } else if ($feed < -10) {
318260cc 2659
a9cb1f83
AD
2660 $label_id = -$feed - 11;
2661
ceb30ba4 2662 return getLabelUnread($link, $label_id, $owner_uid);
a9cb1f83 2663
a9cb1f83
AD
2664 }
2665
2666 if ($match_part) {
e04c18a2
AD
2667
2668 if ($n_feed != 0) {
2669 $from_qpart = "ttrss_user_entries,ttrss_feeds,ttrss_entries";
117335bf 2670 $feeds_qpart = "ttrss_user_entries.feed_id = ttrss_feeds.id AND";
e04c18a2
AD
2671 } else {
2672 $from_qpart = "ttrss_user_entries,ttrss_entries";
c3fddd05 2673 $feeds_qpart = '';
e04c18a2
AD
2674 }
2675
dbfc4365 2676 $query = "SELECT count(int_id) AS unread
e04c18a2 2677 FROM $from_qpart WHERE
88040f57 2678 ttrss_user_entries.ref_id = ttrss_entries.id AND
14073c0a 2679 $age_qpart AND
dbfc4365
AD
2680 $feeds_qpart
2681 $unread_qpart AND ($match_part) AND ttrss_user_entries.owner_uid = $owner_uid";
2682
2683 $result = db_query($link, $query);
a9cb1f83
AD
2684
2685 } else {
2686
2687 $result = db_query($link, "SELECT COUNT(post_int_id) AS unread
14073c0a 2688 FROM ttrss_tags,ttrss_user_entries,ttrss_entries
828f22b7 2689 WHERE tag_name = '$feed' AND post_int_id = int_id AND ref_id = ttrss_entries.id
bdb7369b 2690 AND $unread_qpart AND $age_qpart AND
2627f2d0 2691 ttrss_tags.owner_uid = " . $owner_uid);
a9cb1f83
AD
2692 }
2693
2694 $unread = db_fetch_result($result, 0, "unread");
cfb02131 2695
a9cb1f83
AD
2696 return $unread;
2697 }
2698
f3acc32e
AD
2699 function getGlobalUnread($link, $user_id = false) {
2700
2701 if (!$user_id) {
2702 $user_id = $_SESSION["uid"];
2703 }
2704
8a4c759e
AD
2705 $result = db_query($link, "SELECT SUM(value) AS c_id FROM ttrss_counters_cache
2706 WHERE owner_uid = '$user_id' AND feed_id > 0");
2707
2708 $c_id = db_fetch_result($result, 0, "c_id");
2709
a9cb1f83
AD
2710 return $c_id;
2711 }
2712
2713 function getGlobalCounters($link, $global_unread = -1) {
6a7817c1
AD
2714 $ret_arr = array();
2715
a9cb1f83
AD
2716 if ($global_unread == -1) {
2717 $global_unread = getGlobalUnread($link);
2718 }
6a7817c1
AD
2719
2720 $cv = array("id" => "global-unread",
2721 "counter" => $global_unread);
2722
2723 array_push($ret_arr, $cv);
7bf7e4d3
AD
2724
2725 $result = db_query($link, "SELECT COUNT(id) AS fn FROM
2726 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
2727
2728 $subscribed_feeds = db_fetch_result($result, 0, "fn");
2729
6a7817c1
AD
2730 $cv = array("id" => "subscribed-feeds",
2731 "counter" => $subscribed_feeds);
7bf7e4d3 2732
6a7817c1
AD
2733 array_push($ret_arr, $cv);
2734
2735 return $ret_arr;
a9cb1f83
AD
2736 }
2737
95004daf
AD
2738 function getSubscribedFeeds($link) {
2739 $result = db_query($link, "SELECT COUNT(id) AS fn FROM
2740 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
2741
2742 return db_fetch_result($result, 0, "fn");
2743 }
2744
3809b278 2745 function getTagCounters($link) {
6a7817c1
AD
2746
2747 $ret_arr = array();
a9cb1f83 2748
14073c0a
AD
2749 $age_qpart = getMaxAgeSubquery();
2750
a9cb1f83 2751 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
14073c0a
AD
2752 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
2753 AND ref_id = id AND $age_qpart
a9cb1f83 2754 AND unread = true)) AS count FROM ttrss_tags
ef1ac7c7
AD
2755 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name
2756 ORDER BY count DESC LIMIT 55");
a9cb1f83
AD
2757
2758 $tags = array();
2759
2760 while ($line = db_fetch_assoc($result)) {
2761 $tags[$line["tag_name"]] += $line["count"];
2762 }
2763
2764 foreach (array_keys($tags) as $tag) {
2765 $unread = $tags[$tag];
a9cb1f83 2766 $tag = htmlspecialchars($tag);
6a7817c1
AD
2767
2768 $cv = array("id" => $tag,
8acc449c 2769 "kind" => "tag",
6a7817c1
AD
2770 "counter" => $unread);
2771
2772 array_push($ret_arr, $cv);
2773 }
2774
2775 return $ret_arr;
a9cb1f83
AD
2776 }
2777
6a7817c1 2778 function getVirtCounters($link) {
a9cb1f83 2779
ef393de7 2780 $ret_arr = array();
bdb7369b 2781
e04c18a2 2782 for ($i = 0; $i >= -4; $i--) {
bdb7369b 2783
ceb30ba4 2784 $count = getFeedUnread($link, $i);
6a7817c1
AD
2785
2786 $cv = array("id" => $i,
2abc7af0 2787 "counter" => $count);
ceb30ba4 2788
6a7817c1
AD
2789 if (get_pref($link, 'EXTENDED_FEEDLIST'))
2790 $cv["xmsg"] = getFeedArticles($link, $i)." ".__("total");
bdb7369b 2791
6a7817c1 2792 array_push($ret_arr, $cv);
0a6e5382
AD
2793 }
2794
2795 return $ret_arr;
2796 }
2797
11232703 2798 function getLabelCounters($link, $descriptions = false) {
6a7817c1
AD
2799
2800 $ret_arr = array();
0a6e5382
AD
2801
2802 $age_qpart = getMaxAgeSubquery();
2803
3809b278 2804 $owner_uid = $_SESSION["uid"];
bdb7369b 2805
3809b278
AD
2806 $result = db_query($link, "SELECT id, caption FROM ttrss_labels2
2807 WHERE owner_uid = '$owner_uid'");
2808
2809 while ($line = db_fetch_assoc($result)) {
2d24f032 2810
3809b278 2811 $id = -$line["id"] - 11;
e4f4b46f 2812
3809b278
AD
2813 $label_name = $line["caption"];
2814 $count = getFeedUnread($link, $id);
3809b278 2815
6a7817c1 2816 $cv = array("id" => $id,
11232703
AD
2817 "counter" => $count);
2818
2819 if ($descriptions)
2820 $cv["description"] = $label_name;
a9cb1f83 2821
6a7817c1
AD
2822 if (get_pref($link, 'EXTENDED_FEEDLIST'))
2823 $cv["xmsg"] = getFeedArticles($link, $id)." ".__("total");
ef393de7 2824
6a7817c1 2825 array_push($ret_arr, $cv);
3809b278
AD
2826 }
2827
ef393de7 2828 return $ret_arr;
a9cb1f83
AD
2829 }
2830
3809b278 2831 function getFeedCounters($link, $active_feed = false) {
a9cb1f83 2832
6a7817c1
AD
2833 $ret_arr = array();
2834
14073c0a
AD
2835 $age_qpart = getMaxAgeSubquery();
2836
8a4c759e
AD
2837 $query = "SELECT ttrss_feeds.id,
2838 ttrss_feeds.title,
2839 ".SUBSTRING_FOR_DATE."(ttrss_feeds.last_updated,1,19) AS last_updated,
de0a2122
AD
2840 last_error, value AS count
2841 FROM ttrss_feeds, ttrss_counters_cache
8a4c759e 2842 WHERE ttrss_feeds.owner_uid = ".$_SESSION["uid"]."
55e01d7e 2843 AND ttrss_counters_cache.feed_id = id";
a9cb1f83 2844
14073c0a 2845 $result = db_query($link, $query);
a9cb1f83
AD
2846 $fctrs_modified = false;
2847
2848 while ($line = db_fetch_assoc($result)) {
2849
2850 $id = $line["id"];
de0a2122 2851 $count = $line["count"];
a9cb1f83 2852 $last_error = htmlspecialchars($line["last_error"]);
fb1fb4ab 2853
324944f3 2854 $last_updated = make_local_datetime($link, $line['last_updated'], false);
fb1fb4ab 2855
7defa089 2856 $has_img = feed_has_icon($id);
a9cb1f83 2857
6a7817c1 2858 $cv = array("id" => $id,
21884958 2859 "updated" => $last_updated,
6a7817c1
AD
2860 "counter" => $count,
2861 "has_img" => (int) $has_img);
a9cb1f83 2862
6a7817c1
AD
2863 if ($last_error)
2864 $cv["error"] = $last_error;
4ffa126e 2865
6a7817c1
AD
2866 if (get_pref($link, 'EXTENDED_FEEDLIST'))
2867 $cv["xmsg"] = getFeedArticles($link, $id)." ".__("total");
bdb7369b 2868
6a7817c1
AD
2869 if ($active_feed && $id == $active_feed)
2870 $cv["title"] = $line["title"];
2871
2872 array_push($ret_arr, $cv);
a9cb1f83 2873
a9cb1f83 2874 }
6a7817c1
AD
2875
2876 return $ret_arr;
a9cb1f83
AD
2877 }
2878
6e7f8d26
AD
2879 function get_pgsql_version($link) {
2880 $result = db_query($link, "SELECT version() AS version");
2881 $version = split(" ", db_fetch_result($result, 0, "version"));
2882 return $version[1];
2883 }
2884
af106b0e
AD
2885 function print_error_xml($code, $add_msg = "") {
2886 global $ERRORS;
2887
2888 $error_msg = $ERRORS[$code];
2889
2890 if ($add_msg) {
2891 $error_msg = "$error_msg; $add_msg";
2892 }
2893
4c2abbc1 2894 print "<rpc-reply>";
af106b0e 2895 print "<error error-code=\"$code\" error-msg=\"$error_msg\"/>";
4c2abbc1 2896 print "</rpc-reply>";
af106b0e 2897 }
956c7629 2898
2b8290cd
CW
2899 /**
2900 * Subscribes the user to the given feed
2901 *
2902 * @param resource $link Database connection
2903 * @param string $url Feed URL to subscribe to
2904 * @param integer $cat_id Category ID the feed shall be added to
2905 * @param string $auth_login (optional) Feed username
2906 * @param string $auth_pass (optional) Feed password
2907 *
2908 * @return integer Status code:
2909 * 0 - OK, Feed already exists
2910 * 1 - OK, Feed added
2911 * 2 - Invalid URL
9a8ce956
CW
2912 * 3 - URL content is HTML, no feeds available
2913 * 4 - URL content is HTML which contains multiple feeds.
2914 * Here you should call extractfeedurls in rpc-backend
2915 * to get all possible feeds.
5414ad4c 2916 * 5 - Couldn't download the URL content.
2b8290cd 2917 */
a5819bb3 2918 function subscribe_to_feed($link, $url, $cat_id = 0,
f27de515 2919 $auth_login = '', $auth_pass = '') {
bb0f29a4 2920
f0266f51 2921 $url = fix_url($url);
a5819bb3 2922 if (!validate_feed_url($url)) return 2;
5414ad4c 2923 if (!fetch_file_contents($url)) return 5;
a5819bb3 2924
f6d8345b
CW
2925 if (url_is_html($url)) {
2926 $feedUrls = get_feeds_from_html($url);
9a8ce956 2927 if (count($feedUrls) == 0) {
f6d8345b 2928 return 3;
9a8ce956
CW
2929 } else if (count($feedUrls) > 1) {
2930 return 4;
f6d8345b
CW
2931 }
2932 //use feed url as new URL
2933 $url = key($feedUrls);
2934 }
2935
956c7629
AD
2936 if ($cat_id == "0" || !$cat_id) {
2937 $cat_qpart = "NULL";
2938 } else {
2939 $cat_qpart = "'$cat_id'";
2940 }
2941
2942 $result = db_query($link,
2943 "SELECT id FROM ttrss_feeds
a5819bb3 2944 WHERE feed_url = '$url' AND owner_uid = ".$_SESSION["uid"]);
956c7629
AD
2945
2946 if (db_num_rows($result) == 0) {
956c7629 2947 $result = db_query($link,
f27de515
AD
2948 "INSERT INTO ttrss_feeds
2949 (owner_uid,feed_url,title,cat_id, auth_login,auth_pass)
a5819bb3 2950 VALUES ('".$_SESSION["uid"]."', '$url',
f27de515 2951 '[Unknown]', $cat_qpart, '$auth_login', '$auth_pass')");
956c7629
AD
2952
2953 $result = db_query($link,
a5819bb3 2954 "SELECT id FROM ttrss_feeds WHERE feed_url = '$url'
f27de515 2955 AND owner_uid = " . $_SESSION["uid"]);
956c7629
AD
2956
2957 $feed_id = db_fetch_result($result, 0, "id");
2958
2959 if ($feed_id) {
c633e370 2960 update_rss_feed($link, $feed_id, true);
956c7629
AD
2961 }
2962
a5819bb3 2963 return 1;
956c7629 2964 } else {
a5819bb3 2965 return 0;
956c7629
AD
2966 }
2967 }
2968
673d54ca
AD
2969 function print_feed_select($link, $id, $default_id = "",
2970 $attributes = "", $include_all_feeds = true) {
2971
79f3553b 2972 print "<select id=\"$id\" name=\"$id\" $attributes>";
673d54ca 2973 if ($include_all_feeds) {
89cb787e 2974 print "<option value=\"0\">".__('All feeds')."</option>";
673d54ca
AD
2975 }
2976
2977 $result = db_query($link, "SELECT id,title FROM ttrss_feeds
2978 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
2979
2980 if (db_num_rows($result) > 0 && $include_all_feeds) {
2981 print "<option disabled>--------</option>";
2982 }
2983
2984 while ($line = db_fetch_assoc($result)) {
2985 if ($line["id"] == $default_id) {
10249c41 2986 $is_selected = "selected=\"1\"";
673d54ca
AD
2987 } else {
2988 $is_selected = "";
2989 }
b1710666
AD
2990
2991 $title = truncate_string(htmlspecialchars($line["title"]), 40);
2992
79f3553b 2993 printf("<option $is_selected value='%d'>%s</option>",
b1710666 2994 $line["id"], $title);
673d54ca
AD
2995 }
2996
2997 print "</select>";
2998 }
2999
3000 function print_feed_cat_select($link, $id, $default_id = "",
3001 $attributes = "", $include_all_cats = true) {
3002
5c7c7da9 3003 print "<select id=\"$id\" name=\"$id\" default=\"$default_id\" onchange=\"catSelectOnChange(this)\" $attributes>";
673d54ca
AD
3004
3005 if ($include_all_cats) {
d1db26aa 3006 print "<option value=\"0\">".__('Uncategorized')."</option>";
673d54ca
AD
3007 }
3008
3009 $result = db_query($link, "SELECT id,title FROM ttrss_feed_categories
3010 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
3011
3012 if (db_num_rows($result) > 0 && $include_all_cats) {
c00907f2 3013 print "<option disabled=\"1\">--------</option>";
673d54ca
AD
3014 }
3015
3016 while ($line = db_fetch_assoc($result)) {
3017 if ($line["id"] == $default_id) {
10249c41 3018 $is_selected = "selected=\"1\"";
673d54ca 3019 } else {
c00907f2 3020 $is_selected = "";
673d54ca 3021 }
c00907f2
AD
3022
3023 if ($line["title"])
3024 printf("<option $is_selected value='%d'>%s</option>",
3025 $line["id"], htmlspecialchars($line["title"]));
673d54ca
AD
3026 }
3027
5c7c7da9
AD
3028 print "<option value=\"ADD_CAT\">" .__("Add category...") . "</option>";
3029
673d54ca
AD
3030 print "</select>";
3031 }
3032
14f69488
AD
3033 function checkbox_to_sql_bool($val) {
3034 return ($val == "on") ? "true" : "false";
3035 }
86b682ce
AD
3036
3037 function getFeedCatTitle($link, $id) {
3038 if ($id == -1) {
d1db26aa 3039 return __("Special");
86b682ce 3040 } else if ($id < -10) {
d1db26aa 3041 return __("Labels");
86b682ce
AD
3042 } else if ($id > 0) {
3043 $result = db_query($link, "SELECT ttrss_feed_categories.title
3044 FROM ttrss_feeds, ttrss_feed_categories WHERE ttrss_feeds.id = '$id' AND
3045 cat_id = ttrss_feed_categories.id");
3046 if (db_num_rows($result) == 1) {
3047 return db_fetch_result($result, 0, "title");
3048 } else {
d1db26aa 3049 return __("Uncategorized");
86b682ce
AD
3050 }
3051 } else {
3052 return "getFeedCatTitle($id) failed";
3053 }
3054
3055 }
3056
af88c48a
AD
3057 function getFeedIcon($id) {
3058 switch ($id) {
4bee8b5f
AD
3059 case 0:
3060 return "images/archive.png";
3061 break;
af88c48a 3062 case -1:
f65ffc2d 3063 return "images/mark_set.png";
af88c48a
AD
3064 break;
3065 case -2:
b97e6e02 3066 return "images/pub_set.png";
af88c48a
AD
3067 break;
3068 case -3:
3069 return "images/fresh.png";
3070 break;
3071 case -4:
3072 return "images/tag.png";
3073 break;
3074 default:
4bee8b5f
AD
3075 if ($id < -10) {
3076 return "images/label.png";
3077 } else {
3078 return ICONS_URL . "/$id.ico";
3079 }
af88c48a
AD
3080 break;
3081 }
3082 }
3083
86b682ce
AD
3084 function getFeedTitle($link, $id) {
3085 if ($id == -1) {
d1db26aa 3086 return __("Starred articles");
945c243e
AD
3087 } else if ($id == -2) {
3088 return __("Published articles");
2d24f032
AD
3089 } else if ($id == -3) {
3090 return __("Fresh articles");
b2531a28
AD
3091 } else if ($id == -4) {
3092 return __("All articles");
80db1113 3093 } else if ($id === 0 || $id === "0") {
e04c18a2 3094 return __("Archived articles");
86b682ce 3095 } else if ($id < -10) {
76626c72 3096 $label_id = -$id - 11;
ceb30ba4 3097 $result = db_query($link, "SELECT caption FROM ttrss_labels2 WHERE id = '$label_id'");
86b682ce 3098 if (db_num_rows($result) == 1) {
ceb30ba4 3099 return db_fetch_result($result, 0, "caption");
86b682ce
AD
3100 } else {
3101 return "Unknown label ($label_id)";
3102 }
3103
3104 } else if ($id > 0) {
3105 $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$id'");
3106 if (db_num_rows($result) == 1) {
3107 return db_fetch_result($result, 0, "title");
3108 } else {
3109 return "Unknown feed ($id)";
3110 }
3111 } else {
22fdebff 3112 return $id;
86b682ce 3113 }
86b682ce 3114 }
3dd46f19
AD
3115
3116 function get_session_cookie_name() {
3117 return ((!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid" : TTRSS_SESSION_NAME);
3118 }
3ac2b520 3119
f1f3a642
AD
3120 function make_init_param($param, $value) {
3121 return array("param" => $param, "value" => $value);
3122 }
e8bd0da9 3123
d8221301 3124 function make_init_params($link) {
f1f3a642 3125 $params = array();
c9268ed5 3126
c4f7ba80
AD
3127 $params["theme"] = get_user_theme($link);
3128 $params["theme_options"] = get_user_theme_options($link);
3129 $params["daemon_enabled"] = ENABLE_UPDATE_DAEMON;
f6d6e22f 3130
c4f7ba80
AD
3131 $params["sign_progress"] = theme_image($link, "images/indicator_white.gif");
3132 $params["sign_progress_tiny"] = theme_image($link, "images/indicator_tiny.gif");
3133 $params["sign_excl"] = theme_image($link, "images/sign_excl.png");
3134 $params["sign_info"] = theme_image($link, "images/sign_info.png");
be0801a1 3135
f1f3a642
AD
3136 foreach (array("ON_CATCHUP_SHOW_NEXT_FEED", "HIDE_READ_FEEDS",
3137 "ENABLE_FEED_CATS", "FEEDS_SORT_BY_UNREAD", "CONFIRM_FEED_CATCHUP",
3138 "CDM_AUTO_CATCHUP", "FRESH_ARTICLE_MAX_AGE",
3139 "HIDE_READ_SHOWS_SPECIAL", "HIDE_FEEDLIST") as $param) {
40496720 3140
c4f7ba80 3141 $params[strtolower($param)] = (int) get_pref($link, $param);
f1f3a642 3142 }
40496720 3143
c4f7ba80
AD
3144 $params["icons_url"] = ICONS_URL;
3145 $params["cookie_lifetime"] = SESSION_COOKIE_LIFETIME;
3146 $params["default_view_mode"] = get_pref($link, "_DEFAULT_VIEW_MODE");
3147 $params["default_view_limit"] = (int) get_pref($link, "_DEFAULT_VIEW_LIMIT");
3148 $params["default_view_order_by"] = get_pref($link, "_DEFAULT_VIEW_ORDER_BY");
3149 $params["prefs_active_tab"] = get_pref($link, "_PREFS_ACTIVE_TAB");
3150 $params["infobox_disable_overlay"] = get_pref($link, "_INFOBOX_DISABLE_OVERLAY");
3151 $params["bw_limit"] = (int) $_SESSION["bw_limit"];
3152 $params["offline_enabled"] = (int) get_pref($link, "ENABLE_OFFLINE_READING");
59b223d7 3153
9b7ecc0a
AD
3154 $result = db_query($link, "SELECT COUNT(*) AS cf FROM
3155 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
3156
3157 $num_feeds = db_fetch_result($result, 0, "cf");
3158
c4f7ba80
AD
3159 $params["num_feeds"] = (int) $num_feeds;
3160 $params["collapsed_feedlist"] = (int) get_pref($link, "_COLLAPSED_FEEDLIST");
9b7ecc0a 3161
d8221301 3162 return $params;
3ac2b520 3163 }
f54f515f
AD
3164
3165 function print_runtime_info($link) {
c4f7ba80
AD
3166 print "<runtime-info><![CDATA[";
3167 print json_encode(make_runtime_info($link));
3168 print "]]></runtime-info>";
3169 }
20361063 3170
c4f7ba80 3171 function make_runtime_info($link) {
9b7ecc0a
AD
3172 $result = db_query($link, "SELECT COUNT(*) AS cf FROM
3173 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
3174
3175 $num_feeds = db_fetch_result($result, 0, "cf");
3176
c4f7ba80
AD
3177 $data = array();
3178
3179 $data['num_feeds'] = (int) $num_feeds;
9b7ecc0a 3180
f8fb4498
AD
3181 $data['last_article_id'] = getLastArticleId($link);
3182
71ad883b 3183 if (ENABLE_UPDATE_DAEMON) {
c4f7ba80
AD
3184
3185 $data['daemon_is_running'] = (int) file_is_locked("update_daemon.lock");
8e00ae9b 3186
9041f58b 3187 if (time() - $_SESSION["daemon_stamp_check"] > 30) {
8e00ae9b 3188
fb074239 3189 $stamp = (int) @file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
fbae93d8 3190
8e00ae9b 3191 if ($stamp) {
9041f58b
AD
3192 $stamp_delta = time() - $stamp;
3193
3194 if ($stamp_delta > 1800) {
f6854e44 3195 $stamp_check = 0;
8e00ae9b 3196 } else {
f6854e44
AD
3197 $stamp_check = 1;
3198 $_SESSION["daemon_stamp_check"] = time();
8e00ae9b
AD
3199 }
3200
c4f7ba80 3201 $data['daemon_stamp_ok'] = $stamp_check;
f6854e44 3202
8e00ae9b
AD
3203 $stamp_fmt = date("Y.m.d, G:i", $stamp);
3204
c4f7ba80 3205 $data['daemon_stamp'] = $stamp_fmt;
8e00ae9b 3206 }
8e00ae9b 3207 }
71ad883b 3208 }
8e00ae9b 3209
d9fa39f1
AD
3210 if (CHECK_FOR_NEW_VERSION && $_SESSION["access_level"] >= 10) {
3211
8742de78 3212 if ($_SESSION["last_version_check"] + 86400 + rand(-1000, 1000) < time()) {
fb074239 3213 $new_version_details = @check_for_update($link);
d9fa39f1
AD
3214
3215 print "<param key=\"new_version_available\" value=\"".
3216 sprintf("%d", $new_version_details != ""). "\"/>";
3217
3218 $_SESSION["last_version_check"] = time();
3219 }
3220 }
3221
1c9df66e 3222// print "<param key=\"new_version_available\" value=\"1\"/>";
b4507bc2 3223
c4f7ba80 3224 return $data;
f54f515f 3225 }
ef393de7 3226
88040f57 3227 function getSearchSql($search, $match_on) {
ef393de7 3228
88040f57 3229 $search_query_part = "";
e20c9d88 3230
88040f57
AD
3231 $keywords = split(" ", $search);
3232 $query_keywords = array();
e20c9d88 3233
88040f57 3234 if ($match_on == "both") {
e20c9d88 3235
88040f57 3236 foreach ($keywords as $k) {
eb6c7f42
AD
3237 if (strpos($k, "-") === 0) {
3238 $k = substr($k, 1);
3239 $not = "NOT";
3240 } else {
3241 $not = "";
3242 }
3243
3244 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
3245 OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
88040f57 3246 }
e20c9d88 3247
88040f57 3248 $search_query_part = implode("AND", $query_keywords) . " AND ";
e20c9d88 3249
88040f57 3250 } else if ($match_on == "title") {
e20c9d88 3251
88040f57 3252 foreach ($keywords as $k) {
eb6c7f42
AD
3253 if (strpos($k, "-") === 0) {
3254 $k = substr($k, 1);
3255 $not = "NOT";
3256 } else {
3257 $not = "";
3258 }
3259
3260 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%'))");
88040f57 3261 }
e20c9d88 3262
88040f57 3263 $search_query_part = implode("AND", $query_keywords) . " AND ";
e20c9d88 3264
88040f57
AD
3265 } else if ($match_on == "content") {
3266
3267 foreach ($keywords as $k) {
eb6c7f42
AD
3268 if (strpos($k, "-") === 0) {
3269 $k = substr($k, 1);
3270 $not = "NOT";
3271 } else {
3272 $not = "";
3273 }
3274
3275 array_push($query_keywords, "(UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
88040f57
AD
3276 }
3277 }
3278
3279 $search_query_part = implode("AND", $query_keywords);
3280
3281 return $search_query_part;
3282 }
3283
c36bf4d5
AD
3284 function queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view, $search, $search_mode, $match_on, $override_order = false, $offset = 0, $owner_uid = 0) {
3285
3286 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
c1a0b534 3287
c3fddd05
AD
3288 $ext_tables_part = "";
3289
88040f57
AD
3290 if ($search) {
3291
3292 $search_query_part = getSearchSql($search, $match_on);
3293 $search_query_part .= " AND ";
e20c9d88 3294
ef393de7
AD
3295 } else {
3296 $search_query_part = "";
3297 }
3298
3299 $view_query_part = "";
3300
7b4d02a8 3301 if ($view_mode == "adaptive" || $view_query_part == "noscores") {
ef393de7
AD
3302 if ($search) {
3303 $view_query_part = " ";
3304 } else if ($feed != -1) {
f295c368 3305 $unread = getFeedUnread($link, $feed, $cat_view);
ef393de7 3306 if ($unread > 0) {
ff863e00 3307 $view_query_part = " unread = true AND ";
ef393de7
AD
3308 }
3309 }
3310 }
3311
3312 if ($view_mode == "marked") {
3313 $view_query_part = " marked = true AND ";
3314 }
23d72f39
AD
3315
3316 if ($view_mode == "published") {
3317 $view_query_part = " published = true AND ";
3318 }
3319
ef393de7
AD
3320 if ($view_mode == "unread") {
3321 $view_query_part = " unread = true AND ";
3322 }
8b09eac8
AD
3323
3324 if ($view_mode == "updated") {
3325 $view_query_part = " (last_read is null and unread = false) AND ";
3326 }
3327
ef393de7
AD
3328 if ($limit > 0) {
3329 $limit_query_part = "LIMIT " . $limit;
3330 }
3331
3332 $vfeed_query_part = "";
3333
3334 // override query strategy and enable feed display when searching globally
3335 if ($search && $search_mode == "all_feeds") {
3336 $query_strategy_part = "ttrss_entries.id > 0";
3337 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
22fdebff 3338 /* tags */
ef393de7
AD
3339 } else if (preg_match("/^-?[0-9][0-9]*$/", $feed) == false) {
3340 $query_strategy_part = "ttrss_entries.id > 0";
3341 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
3342 id = feed_id) as feed_title,";
e04c18a2 3343 } else if ($feed > 0 && $search && $search_mode == "this_cat") {
ef393de7
AD
3344
3345 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
0a6c4846
AD
3346
3347 $tmp_result = false;
3348
3349 if ($cat_view) {
3350 $tmp_result = db_query($link, "SELECT id
3351 FROM ttrss_feeds WHERE cat_id = '$feed'");
3352 } else {
3353 $tmp_result = db_query($link, "SELECT id
3354 FROM ttrss_feeds WHERE cat_id = (SELECT cat_id FROM ttrss_feeds
3355 WHERE id = '$feed') AND id != '$feed'");
3356 }
ef393de7
AD
3357
3358 $cat_siblings = array();
3359
3360 if (db_num_rows($tmp_result) > 0) {
3361 while ($p = db_fetch_assoc($tmp_result)) {
3362 array_push($cat_siblings, "feed_id = " . $p["id"]);
3363 }
3364
3365 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
3366 $feed, implode(" OR ", $cat_siblings));
3367
3368 } else {
3369 $query_strategy_part = "ttrss_entries.id > 0";
3370 }
3371
e04c18a2 3372 } else if ($feed > 0) {
ef393de7
AD
3373
3374 if ($cat_view) {
5c365f60 3375
ef393de7
AD
3376 if ($feed > 0) {
3377 $query_strategy_part = "cat_id = '$feed'";
3378 } else {
3379 $query_strategy_part = "cat_id IS NULL";
3380 }
3381
3382 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
5c365f60 3383
ef393de7 3384 } else {
6e63a7c3 3385 $query_strategy_part = "feed_id = '$feed'";
ef393de7 3386 }
bfe5ddfc 3387 } else if ($feed == 0 && !$cat_view) { // archive virtual feed
e04c18a2 3388 $query_strategy_part = "feed_id IS NULL";
bfe5ddfc
AD
3389 } else if ($feed == 0 && $cat_view) { // uncategorized
3390 $query_strategy_part = "cat_id IS NULL";
3391 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ef393de7
AD
3392 } else if ($feed == -1) { // starred virtual feed
3393 $query_strategy_part = "marked = true";
3394 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
e6a38cde
AD
3395 } else if ($feed == -2) { // published virtual feed OR labels category
3396
3397 if (!$cat_view) {
3398 $query_strategy_part = "published = true";
3399 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3400 } else {
3401 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3402
3403 $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
3404
3405 $query_strategy_part = "ttrss_labels2.id = ttrss_user_labels2.label_id AND
3406 ttrss_user_labels2.article_id = ref_id";
3407
3408 }
3409
2d24f032
AD
3410 } else if ($feed == -3) { // fresh virtual feed
3411 $query_strategy_part = "unread = true";
3412
7a22dc2a 3413 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid);
c1d7e6c3 3414
2d24f032 3415 if (DB_TYPE == "pgsql") {
7608b38a 3416 $query_strategy_part .= " AND updated > NOW() - INTERVAL '$intl hour' ";
2d24f032 3417 } else {
7608b38a 3418 $query_strategy_part .= " AND updated > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
2d24f032
AD
3419 }
3420
b2531a28
AD
3421 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3422 } else if ($feed == -4) { // all articles virtual feed
3423 $query_strategy_part = "true";
e4f4b46f 3424 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ef393de7
AD
3425 } else if ($feed <= -10) { // labels
3426 $label_id = -$feed - 11;
3de0261a 3427
ceb30ba4
AD
3428 $query_strategy_part = "label_id = '$label_id' AND
3429 ttrss_labels2.id = ttrss_user_labels2.label_id AND
3430 ttrss_user_labels2.article_id = ref_id";
3de0261a 3431
ef393de7 3432 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ceb30ba4
AD
3433 $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
3434
ef393de7
AD
3435 } else {
3436 $query_strategy_part = "id > 0"; // dumb
3437 }
d6e5706d 3438
b3990c92
AD
3439 if (get_pref($link, "SORT_HEADLINES_BY_FEED_DATE", $owner_uid)) {
3440 $date_sort_field = "updated";
3441 } else {
3442 $date_sort_field = "date_entered";
3443 }
3444
7a22dc2a 3445 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
b3990c92 3446 $order_by = "$date_sort_field";
d6e5706d 3447 } else {
b3990c92 3448 $order_by = "$date_sort_field DESC";
d6e5706d 3449 }
e939722a 3450
7b4d02a8
AD
3451 if ($view_mode != "noscores") {
3452 $order_by = "score DESC, $order_by";
3453 }
48b0c4ec 3454
e939722a
AD
3455 if ($override_order) {
3456 $order_by = $override_order;
3457 }
ef393de7
AD
3458
3459 $feed_title = "";
3460
22fdebff
AD
3461 if ($search) {
3462 $feed_title = "Search results";
3463 } else {
ef393de7 3464 if ($cat_view) {
22fdebff 3465 $feed_title = getCategoryTitle($link, $feed);
ef393de7 3466 } else {
22fdebff
AD
3467 if ((int)$feed == $feed && $feed > 0) {
3468 $result = db_query($link, "SELECT title,site_url,last_error
3469 FROM ttrss_feeds WHERE id = '$feed' AND owner_uid = $owner_uid");
ef393de7 3470
22fdebff
AD
3471 $feed_title = db_fetch_result($result, 0, "title");
3472 $feed_site_url = db_fetch_result($result, 0, "site_url");
3473 $last_error = db_fetch_result($result, 0, "last_error");
3474 } else {
3475 $feed_title = getFeedTitle($link, $feed);
3476 }
88040f57 3477 }
ef393de7
AD
3478 }
3479
62129e67
AD
3480 $content_query_part = "content as content_preview,";
3481
ef393de7
AD
3482 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
3483
3484 if ($feed >= 0) {
3485 $feed_kind = "Feeds";
3486 } else {
3487 $feed_kind = "Labels";
3488 }
3489
95a82c08
AD
3490 if ($limit_query_part) {
3491 $offset_query_part = "OFFSET $offset";
3492 }
3493
d00f22ac 3494 if ($vfeed_query_part && get_pref($link, 'VFEED_GROUP_BY_FEED', $owner_uid)) {
6cfea5c7 3495 if (!$override_order) {
43fc671f
AD
3496 $order_by = "ttrss_feeds.title, $order_by";
3497 }
6cfea5c7
AD
3498 }
3499
e04c18a2
AD
3500 if ($feed != "0") {
3501 $from_qpart = "ttrss_entries,ttrss_user_entries,ttrss_feeds$ext_tables_part";
117335bf 3502 $feed_check_qpart = "ttrss_user_entries.feed_id = ttrss_feeds.id AND";
e04c18a2
AD
3503
3504 } else {
3505 $from_qpart = "ttrss_entries,ttrss_user_entries$ext_tables_part
3506 LEFT JOIN ttrss_feeds ON (feed_id = ttrss_feeds.id)";
3507 }
3508
3ebd7ca5 3509 $query = "SELECT DISTINCT
f9b2d27c 3510 date_entered,
1f64b1be 3511 guid,
ef393de7 3512 ttrss_entries.id,ttrss_entries.title,
46921916 3513 updated,
c7e51de1 3514 note,
494a64ea 3515 unread,feed_id,marked,published,link,last_read,orig_feed_id,
fc2b26a6 3516 ".SUBSTRING_FOR_DATE."(last_read,1,19) as last_read_noms,
ef393de7
AD
3517 $vfeed_query_part
3518 $content_query_part
fc2b26a6 3519 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated_noms,
ff6e357a 3520 author,score
ef393de7 3521 FROM
e04c18a2 3522 $from_qpart
ef393de7 3523 WHERE
e04c18a2 3524 $feed_check_qpart
ef393de7 3525 ttrss_user_entries.ref_id = ttrss_entries.id AND
c36bf4d5 3526 ttrss_user_entries.owner_uid = '$owner_uid' AND
ef393de7
AD
3527 $search_query_part
3528 $view_query_part
3529 $query_strategy_part ORDER BY $order_by
95a82c08 3530 $limit_query_part $offset_query_part";
4bc311fc 3531
b4e75b2a 3532 if ($_REQUEST["debug"]) print $query;
4bc311fc
AD
3533
3534 $result = db_query($link, $query);
ef393de7
AD
3535
3536 } else {
3537 // browsing by tag
3538
3539 $feed_kind = "Tags";
3540
3541 $result = db_query($link, "SELECT
1f64b1be 3542 guid,
c7e51de1 3543 note,
ef393de7 3544 ttrss_entries.id as id,title,
46921916 3545 updated,
494a64ea 3546 unread,feed_id,orig_feed_id,
ef393de7 3547 marked,link,last_read,
fc2b26a6 3548 ".SUBSTRING_FOR_DATE."(last_read,1,19) as last_read_noms,
ef393de7
AD
3549 $vfeed_query_part
3550 $content_query_part
4d0b3607
AD
3551 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated_noms,
3552 score
ef393de7
AD
3553 FROM
3554 ttrss_entries,ttrss_user_entries,ttrss_tags
3555 WHERE
546499a9 3556 ref_id = ttrss_entries.id AND
c36bf4d5 3557 ttrss_user_entries.owner_uid = '$owner_uid' AND
ef393de7
AD
3558 post_int_id = int_id AND tag_name = '$feed' AND
3559 $view_query_part
3560 $search_query_part
3561 $query_strategy_part ORDER BY $order_by
3562 $limit_query_part");
3563 }
3564
c7188969 3565 return array($result, $feed_title, $feed_site_url, $last_error);
22fdebff 3566
ef393de7
AD
3567 }
3568
c36bf4d5 3569 function generate_syndicated_feed($link, $owner_uid, $feed, $is_cat,
23d72f39 3570 $limit, $search, $search_mode, $match_on, $view_mode = false) {
ead2715d 3571
db54143e 3572 $note_style = "float : right; background-color : #fff7d5; border-width : 1px; ".
c7e51de1 3573 "padding : 5px; border-style : dashed; border-color : #e7d796;".
db54143e 3574 "margin-bottom : 1em; color : #9a8c59;";
c7e51de1 3575
ead2715d 3576 if (!$limit) $limit = 30;
18664970 3577
b3990c92
AD
3578 if (get_pref($link, "SORT_HEADLINES_BY_FEED_DATE", $owner_uid)) {
3579 $date_sort_field = "updated";
3580 } else {
3581 $date_sort_field = "date_entered";
3582 }
3583
18664970 3584 $qfh_ret = queryFeedHeadlines($link, $feed,
23d72f39 3585 $limit, $view_mode, $is_cat, $search, $search_mode,
b3990c92 3586 $match_on, "$date_sort_field DESC", 0, $owner_uid);
18664970
AD
3587
3588 $result = $qfh_ret[0];
59e2aab4 3589 $feed_title = htmlspecialchars($qfh_ret[1]);
18664970
AD
3590 $feed_site_url = $qfh_ret[2];
3591 $last_error = $qfh_ret[3];
3592
a5472764 3593// if (!$feed_site_url) $feed_site_url = "http://localhost/";
4bc64807 3594
a5472764
AD
3595 print "<?xml version=\"1.0\" encoding=\"utf-8\"?>
3596 <?xml-stylesheet type=\"text/xsl\" href=\"rss.xsl\"?>
3597 <rss version=\"2.0\">
3baeeeca
AD
3598 <channel>
3599 <title>$feed_title</title>
4bc64807
AD
3600 <link>$feed_site_url</link>
3601 <description>Feed generated by Tiny Tiny RSS</description>";
3baeeeca
AD
3602
3603 while ($line = db_fetch_assoc($result)) {
3604 print "<item>";
4bc64807 3605 print "<guid>" . htmlspecialchars($line["guid"]) . "</guid>";
3baeeeca 3606 print "<link>" . htmlspecialchars($line["link"]) . "</link>";
0c3d1c68 3607
bc976a8c 3608 $tags = get_article_tags($link, $line["id"], $owner_uid);
0c3d1c68
AD
3609
3610 foreach ($tags as $tag) {
3611 print "<category>" . htmlspecialchars($tag) . "</category>";
3612 }
3613
3baeeeca
AD
3614 $rfc822_date = date('r', strtotime($line["updated"]));
3615
2f0903a6
AD
3616 print "<pubDate>$rfc822_date</pubDate>";
3617
3618 if ($line["author"]) {
3619 print "<author>" . htmlspecialchars($line["author"]) . "</author>";
3620 }
3baeeeca 3621
e5208bac
AD
3622 print "<title><![CDATA[" .
3623 htmlspecialchars($line["title"]) . "]]></title>";
3baeeeca 3624
db54143e
AD
3625 print "<description><![CDATA[";
3626
c7e51de1
AD
3627 if ($line["note"]) {
3628 print "<div style='$note_style'>";
3629 print $line["note"];
3630 print "</div>";
3631 }
db54143e 3632
ceb0cab5 3633 print sanitize_rss($link, $line["content_preview"], false, $owner_uid);
c7e51de1 3634 print "]]></description>";
c7845467
AD
3635
3636 $enclosures = get_article_enclosures($link, $line["id"]);
3637
3638 foreach ($enclosures as $e) {
3639 $type = htmlspecialchars($e['content_type']);
3640 $url = htmlspecialchars($e['content_url']);
3641 $length = $e['duration'];
3642 print "<enclosure url=\"$url\" type=\"$type\" length=\"$length\"/>";
3643 }
3644
3baeeeca
AD
3645 print "</item>";
3646 }
3647
3648 print "</channel></rss>";
18664970
AD
3649
3650 }
3651
0a6c4846
AD
3652 function getCategoryTitle($link, $cat_id) {
3653
bba7c4bf
AD
3654 if ($cat_id == -1) {
3655 return __("Special");
3656 } else if ($cat_id == -2) {
3657 return __("Labels");
0a6c4846 3658 } else {
bba7c4bf
AD
3659
3660 $result = db_query($link, "SELECT title FROM ttrss_feed_categories WHERE
3661 id = '$cat_id'");
3662
3663 if (db_num_rows($result) == 1) {
3664 return db_fetch_result($result, 0, "title");
3665 } else {
3666 return "Uncategorized";
3667 }
0a6c4846
AD
3668 }
3669 }
3670
f45a286b
AD
3671 function strip_tags_long($string, $allowed) {
3672
3673 $config = HTMLPurifier_Config::createDefault();
3674
3675 $config->set('HTML', 'Allowed', $allowed);
3676 $purifier = new HTMLPurifier($config);
3677
3678 return $purifier->purify($string);
3679
3680 }
3681
f738aef1
AD
3682 // http://ru2.php.net/strip-tags
3683
f45a286b 3684/* function strip_tags_long($textstring, $allowed){
f738aef1
AD
3685 while($textstring != strip_tags($textstring, $allowed))
3686 {
3687 while (strlen($textstring) != 0)
3688 {
3689 if (strlen($textstring) > 1024) {
3690 $otherlen = 1024;
3691 } else {
3692 $otherlen = strlen($textstring);
3693 }
3694 $temptext = strip_tags(substr($textstring,0,$otherlen), $allowed);
3695 $safetext .= $temptext;
3696 $textstring = substr_replace($textstring,'',0,$otherlen);
3697 }
3698 $textstring = $safetext;
3699 }
3700 return $textstring;
f45a286b 3701} */
f738aef1
AD
3702
3703
8cc3c778
AD
3704 function sanitize_rss($link, $str, $force_strip_tags = false, $owner = false, $site_url = false) {
3705
60452879 3706 $res = $str;
183ad07b 3707
ceb0cab5
AD
3708 if (!$owner) $owner = $_SESSION["uid"];
3709
3710 if (get_pref($link, "STRIP_UNSAFE_TAGS", $owner) || $force_strip_tags) {
f738aef1 3711
f45a286b
AD
3712// $res = strip_tags_long($res,
3713// "<p><a><i><em><b><strong><code><pre><blockquote><br><img><ul><ol><li>");
3714
7e1265ed 3715 $res = strip_tags_long($res,
f45a286b 3716 "p,a[href],i,em,b,strong,code,pre,blockquote,br,img[src|alt|title],ul,ol,li,h1,h2,h3,h4");
f738aef1 3717
f826eee1
AD
3718 }
3719
ceb0cab5 3720 if (get_pref($link, "STRIP_IMAGES", $owner)) {
8dccabed 3721 $res = preg_replace('/<img[^>]+>/is', '', $res);
7514749d 3722 }
8dccabed 3723
8cc3c778
AD
3724 $charset_hack = '<head>
3725 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
3726 </head>';
3727
3728 libxml_use_internal_errors(true);
3729
3730 $doc = new DOMDocument();
3731 $doc->loadHTML($charset_hack . $res);
3732 $xpath = new DOMXPath($doc);
3733
3734 $entries = $xpath->query('(//a[@href]|//img[@src])');
3735
3736 foreach ($entries as $entry) {
3737
3738 if ($site_url) {
3739
3740 if ($entry->hasAttribute('href'))
3741 $entry->setAttribute('href',
3742 rewrite_relative_url($site_url, $entry->getAttribute('href')));
3743
3744 if ($entry->hasAttribute('src'))
3745 $entry->setAttribute('src',
3746 rewrite_relative_url($site_url, $entry->getAttribute('src')));
3747 }
3748
3749 if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW', $owner)) {
3750 $entry->setAttribute("target", "_blank");
3751 }
8dccabed 3752 }
8cc3c778 3753
1f6131f5 3754 $node = $doc->getElementsByTagName('body')->item(0);
8dccabed 3755
8cc3c778 3756 return $doc->saveXML($node);
183ad07b 3757 }
b72c3ef8 3758
45004d43
AD
3759 /**
3760 * Send by mail a digest of last articles.
3761 *
3762 * @param mixed $link The database connection.
3763 * @param integer $limit The maximum number of articles by digest.
3764 * @return boolean Return false if digests are not enabled.
3765 */
9cd7c995
AD
3766 function send_headlines_digests($link, $limit = 100) {
3767
1ddba275
AD
3768 if (!DIGEST_ENABLE) return false;
3769
9cd7c995 3770 $user_limit = DIGEST_EMAIL_LIMIT;
5430c959 3771 $days = 1;
9cd7c995
AD
3772
3773 print "Sending digests, batch of max $user_limit users, days = $days, headline limit = $limit\n\n";
3774
3775 if (DB_TYPE == "pgsql") {
3776 $interval_query = "last_digest_sent < NOW() - INTERVAL '$days days'";
3777 } else if (DB_TYPE == "mysql") {
3778 $interval_query = "last_digest_sent < DATE_SUB(NOW(), INTERVAL $days DAY)";
3779 }
3780
3781 $result = db_query($link, "SELECT id,email FROM ttrss_users
3782 WHERE email != '' AND (last_digest_sent IS NULL OR $interval_query)");
3783
3784 while ($line = db_fetch_assoc($result)) {
dc85be2b 3785
9cd7c995
AD
3786 if (get_pref($link, 'DIGEST_ENABLE', $line['id'], false)) {
3787 print "Sending digest for UID:" . $line['id'] . " - " . $line["email"] . " ... ";
3788
dc85be2b
AD
3789 $do_catchup = get_pref($link, 'DIGEST_CATCHUP', $line['id'], false);
3790
9cd7c995
AD
3791 $tuple = prepare_headlines_digest($link, $line["id"], $days, $limit);
3792 $digest = $tuple[0];
3793 $headlines_count = $tuple[1];
dc85be2b 3794 $affected_ids = $tuple[2];
c62a2c21 3795 $digest_text = $tuple[3];
9cd7c995
AD
3796
3797 if ($headlines_count > 0) {
a8931123 3798
c62a2c21 3799 $mail = new PHPMailer();
a8931123 3800
d134e3a3
AD
3801 $mail->PluginDir = "lib/phpmailer/";
3802 $mail->SetLanguage("en", "lib/phpmailer/language/");
a8931123 3803
c62a2c21 3804 $mail->CharSet = "UTF-8";
a8931123 3805
c62a2c21
AD
3806 $mail->From = DIGEST_FROM_ADDRESS;
3807 $mail->FromName = DIGEST_FROM_NAME;
3808 $mail->AddAddress($line["email"], $line["login"]);
c7ddac5c 3809
c62a2c21 3810 if (DIGEST_SMTP_HOST) {
a8931123
AD
3811 $mail->Host = DIGEST_SMTP_HOST;
3812 $mail->Mailer = "smtp";
19a1da0d 3813 $mail->SMTPAuth = DIGEST_SMTP_LOGIN != '';
a8931123
AD
3814 $mail->Username = DIGEST_SMTP_LOGIN;
3815 $mail->Password = DIGEST_SMTP_PASSWORD;
c62a2c21 3816 }
a8931123 3817
c62a2c21 3818 $mail->IsHTML(true);
163a295e 3819 $mail->Subject = DIGEST_SUBJECT;
c62a2c21
AD
3820 $mail->Body = $digest;
3821 $mail->AltBody = $digest_text;
a8931123 3822
c62a2c21 3823 $rc = $mail->Send();
a8931123 3824
c62a2c21 3825 if (!$rc) print "ERROR: " . $mail->ErrorInfo;
a8931123 3826
9cd7c995 3827 print "RC=$rc\n";
a8931123 3828
c62a2c21 3829 if ($rc && $do_catchup) {
dc85be2b 3830 print "Marking affected articles as read...\n";
9968d46f 3831 catchupArticlesById($link, $affected_ids, 0, $line["id"]);
dc85be2b 3832 }
9cd7c995
AD
3833 } else {
3834 print "No headlines\n";
3835 }
019dd98d
AD
3836
3837 db_query($link, "UPDATE ttrss_users SET last_digest_sent = NOW()
3838 WHERE id = " . $line["id"]);
9cd7c995
AD
3839 }
3840 }
3841
cedd3e89
AD
3842 print "All done.\n";
3843
9cd7c995
AD
3844 }
3845
7e3634d9 3846 function prepare_headlines_digest($link, $user_id, $days = 1, $limit = 100) {
c62a2c21 3847
fe7537b5 3848 require_once "lib/MiniTemplator.class.php";
c62a2c21
AD
3849
3850 $tpl = new MiniTemplator;
3851 $tpl_t = new MiniTemplator;
3852
3853 $tpl->readTemplateFromFile("templates/digest_template_html.txt");
3854 $tpl_t->readTemplateFromFile("templates/digest_template.txt");
3855
3856 $tpl->setVariable('CUR_DATE', date('Y/m/d'));
3857 $tpl->setVariable('CUR_TIME', date('G:i'));
3858
3859 $tpl_t->setVariable('CUR_DATE', date('Y/m/d'));
3860 $tpl_t->setVariable('CUR_TIME', date('G:i'));
7e3634d9 3861
dc85be2b
AD
3862 $affected_ids = array();
3863
7e3634d9 3864 if (DB_TYPE == "pgsql") {
25ea2805 3865 $interval_query = "ttrss_entries.date_updated > NOW() - INTERVAL '$days days'";
7e3634d9 3866 } else if (DB_TYPE == "mysql") {
25ea2805 3867 $interval_query = "ttrss_entries.date_updated > DATE_SUB(NOW(), INTERVAL $days DAY)";
7e3634d9
AD
3868 }
3869
3870 $result = db_query($link, "SELECT ttrss_entries.title,
3871 ttrss_feeds.title AS feed_title,
25ea2805 3872 date_updated,
dc85be2b 3873 ttrss_user_entries.ref_id,
7e3634d9 3874 link,
c62a2c21 3875 SUBSTRING(content, 1, 120) AS excerpt,
fc2b26a6 3876 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
7e3634d9
AD
3877 FROM
3878 ttrss_user_entries,ttrss_entries,ttrss_feeds
3879 WHERE
3880 ref_id = ttrss_entries.id AND feed_id = ttrss_feeds.id
3dd9183c 3881 AND include_in_digest = true
7e3634d9 3882 AND $interval_query
448b0abd 3883 AND ttrss_user_entries.owner_uid = $user_id
c62a2c21 3884 AND unread = true
25ea2805 3885 ORDER BY ttrss_feeds.title, date_updated DESC
7e3634d9
AD
3886 LIMIT $limit");
3887
3888 $cur_feed_title = "";
3889
9cd7c995
AD
3890 $headlines_count = db_num_rows($result);
3891
c62a2c21
AD
3892 $headlines = array();
3893
7e3634d9 3894 while ($line = db_fetch_assoc($result)) {
c62a2c21
AD
3895 array_push($headlines, $line);
3896 }
3897
3898 for ($i = 0; $i < sizeof($headlines); $i++) {
3899
3900 $line = $headlines[$i];
dc85be2b
AD
3901
3902 array_push($affected_ids, $line["ref_id"]);
3903
324944f3
AD
3904 $updated = make_local_datetime($link, $line['last_updated'], false,
3905 $user_id);
7e3634d9 3906
c62a2c21
AD
3907 $tpl->setVariable('FEED_TITLE', $line["feed_title"]);
3908 $tpl->setVariable('ARTICLE_TITLE', $line["title"]);
3909 $tpl->setVariable('ARTICLE_LINK', $line["link"]);
3910 $tpl->setVariable('ARTICLE_UPDATED', $updated);
163a295e
AD
3911 $tpl->setVariable('ARTICLE_EXCERPT',
3912 truncate_string(strip_tags($line["excerpt"]), 100));
7e3634d9 3913
c62a2c21
AD
3914 $tpl->addBlock('article');
3915
3916 $tpl_t->setVariable('FEED_TITLE', $line["feed_title"]);
3917 $tpl_t->setVariable('ARTICLE_TITLE', $line["title"]);
3918 $tpl_t->setVariable('ARTICLE_LINK', $line["link"]);
3919 $tpl_t->setVariable('ARTICLE_UPDATED', $updated);
3920// $tpl_t->setVariable('ARTICLE_EXCERPT',
3921// truncate_string(strip_tags($line["excerpt"]), 100));
3922
3923 $tpl_t->addBlock('article');
3924
3925 if ($headlines[$i]['feed_title'] != $headlines[$i+1]['feed_title']) {
3926 $tpl->addBlock('feed');
3927 $tpl_t->addBlock('feed');
7e3634d9
AD
3928 }
3929
7e3634d9
AD
3930 }
3931
c62a2c21
AD
3932 $tpl->addBlock('digest');
3933 $tpl->generateOutputToString($tmp);
3934
3935 $tpl_t->addBlock('digest');
3936 $tpl_t->generateOutputToString($tmp_t);
7e3634d9 3937
c62a2c21 3938 return array($tmp, $headlines_count, $affected_ids, $tmp_t);
7e3634d9
AD
3939 }
3940
73495fd1 3941 function check_for_update($link) {
b6d486a3 3942 $releases_feed = "http://tt-rss.org/releases.rss";
b72c3ef8
AD
3943
3944 if (!CHECK_FOR_NEW_VERSION || $_SESSION["access_level"] < 10) {
3945 return;
3946 }
3947
63def06c 3948 if (DEFAULT_UPDATE_METHOD == "1") {
f67d9754
AD
3949 $rss = new SimplePie();
3950 $rss->set_useragent(SIMPLEPIE_USERAGENT . MAGPIE_USER_AGENT_EXT);
f67d9754
AD
3951 $rss->set_feed_url($fetch_url);
3952 $rss->set_output_encoding('UTF-8');
3953 $rss->init();
3954 } else {
3955 $rss = fetch_rss($releases_feed);
3956 }
b72c3ef8
AD
3957
3958 if ($rss) {
3959
78a5c296 3960 if (DEFAULT_UPDATE_METHOD == "1") {
f67d9754
AD
3961 $items = $rss->get_items();
3962 } else {
3963 $items = $rss->items;
b72c3ef8 3964
f67d9754
AD
3965 if (!$items || !is_array($items)) $items = $rss->entries;
3966 if (!$items || !is_array($items)) $items = $rss;
3967 }
b72c3ef8 3968
da412ad3 3969 if (!is_array($items) || count($items) == 0) {
b72c3ef8 3970 return;
da412ad3 3971 }
b72c3ef8 3972
a41d2c65 3973 $latest_item = $items[0];
b72c3ef8 3974
78a5c296 3975 if (DEFAULT_UPDATE_METHOD == "1") {
f67d9754
AD
3976 $last_title = $latest_item->get_title();
3977 } else {
3978 $last_title = $latest_item["title"];
3979 }
b72c3ef8 3980
f67d9754
AD
3981 $latest_version = trim(preg_replace("/(Milestone)|(completed)/", "", $last_title));
3982
78a5c296 3983 if (DEFAULT_UPDATE_METHOD == "1") {
dcf7fd08
AD
3984 $release_url = sanitize_rss($link, $latest_item->get_link());
3985 $content = sanitize_rss($link, $latest_item->get_description());
f67d9754
AD
3986 } else {
3987 $release_url = sanitize_rss($link, $latest_item["link"]);
3988 $content = sanitize_rss($link, $latest_item["description"]);
3989 }
48e1a342 3990
a41d2c65 3991 if (version_compare(VERSION, $latest_version) == -1) {
73495fd1
AD
3992 return sprintf("New version of Tiny-Tiny RSS (%s) is available:",
3993 $latest_version)."<div class='milestoneDetails'>$content</div>";
3994 } else {
3995 return false;
3996 }
b72c3ef8
AD
3997 }
3998 }
472782e8 3999
18eddb2c
AD
4000 function markArticlesById($link, $ids, $cmode) {
4001
4002 $tmp_ids = array();
4003
4004 foreach ($ids as $id) {
4005 array_push($tmp_ids, "ref_id = '$id'");
4006 }
4007
4008 $ids_qpart = join(" OR ", $tmp_ids);
4009
4010 if ($cmode == 0) {
4011 db_query($link, "UPDATE ttrss_user_entries SET
4012 marked = false,last_read = NOW()
4013 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4014 } else if ($cmode == 1) {
4015 db_query($link, "UPDATE ttrss_user_entries SET
4016 marked = true
4017 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4018 } else {
4019 db_query($link, "UPDATE ttrss_user_entries SET
4020 marked = NOT marked,last_read = NOW()
4021 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4022 }
4023 }
4024
e4f4b46f
AD
4025 function publishArticlesById($link, $ids, $cmode) {
4026
4027 $tmp_ids = array();
4028
4029 foreach ($ids as $id) {
4030 array_push($tmp_ids, "ref_id = '$id'");
4031 }
4032
4033 $ids_qpart = join(" OR ", $tmp_ids);
4034
4035 if ($cmode == 0) {
4036 db_query($link, "UPDATE ttrss_user_entries SET
4037 published = false,last_read = NOW()
4038 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4039 } else if ($cmode == 1) {
4040 db_query($link, "UPDATE ttrss_user_entries SET
4041 published = true
4042 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4043 } else {
4044 db_query($link, "UPDATE ttrss_user_entries SET
4045 published = NOT published,last_read = NOW()
4046 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4047 }
4048 }
4049
9968d46f
AD
4050 function catchupArticlesById($link, $ids, $cmode, $owner_uid = false) {
4051
4052 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
ed41f171 4053 if (count($ids) == 0) return;
472782e8
AD
4054
4055 $tmp_ids = array();
4056
4057 foreach ($ids as $id) {
4058 array_push($tmp_ids, "ref_id = '$id'");
4059 }
4060
4061 $ids_qpart = join(" OR ", $tmp_ids);
4062
4063 if ($cmode == 0) {
4064 db_query($link, "UPDATE ttrss_user_entries SET
4065 unread = false,last_read = NOW()
9968d46f 4066 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8
AD
4067 } else if ($cmode == 1) {
4068 db_query($link, "UPDATE ttrss_user_entries SET
4069 unread = true
9968d46f 4070 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8
AD
4071 } else {
4072 db_query($link, "UPDATE ttrss_user_entries SET
4073 unread = NOT unread,last_read = NOW()
9968d46f 4074 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8 4075 }
0737b95a
AD
4076
4077 /* update ccache */
4078
4079 $result = db_query($link, "SELECT DISTINCT feed_id FROM ttrss_user_entries
4080 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
4081
4082 while ($line = db_fetch_assoc($result)) {
4083 ccache_update($link, $line["feed_id"], $owner_uid);
4084 }
472782e8
AD
4085 }
4086
e097e8be
AD
4087 function catchupArticleById($link, $id, $cmode) {
4088
4089 if ($cmode == 0) {
4090 db_query($link, "UPDATE ttrss_user_entries SET
4091 unread = false,last_read = NOW()
4092 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4093 } else if ($cmode == 1) {
4094 db_query($link, "UPDATE ttrss_user_entries SET
4095 unread = true
4096 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4097 } else {
4098 db_query($link, "UPDATE ttrss_user_entries SET
4099 unread = NOT unread,last_read = NOW()
4100 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4101 }
ab197ae1
AD
4102
4103 $feed_id = getArticleFeed($link, $id);
4104 ccache_update($link, $feed_id, $_SESSION["uid"]);
e097e8be
AD
4105 }
4106
1f64b1be
AD
4107 function make_guid_from_title($title) {
4108 return preg_replace("/[ \"\',.:;]/", "-",
fefef828 4109 mb_strtolower(strip_tags($title), 'utf-8'));
1f64b1be
AD
4110 }
4111
11befbb2 4112 function print_headline_subtoolbar($link, $feed_site_url, $feed_title,
0ef68e6f 4113 $feed_id, $is_cat, $search, $match_on,
23d72f39 4114 $search_mode, $view_mode) {
e6c115b2 4115
0ef68e6f 4116 print "<div class=\"headlinesSubToolbar\">";
11befbb2 4117
e6c115b2
AD
4118 $page_prev_link = "javascript:viewFeedGoPage(-1)";
4119 $page_next_link = "javascript:viewFeedGoPage(1)";
4120 $page_first_link = "javascript:viewFeedGoPage(0)";
203de776 4121
eb28b131
AD
4122 $catchup_page_link = "javascript:catchupPage()";
4123 $catchup_feed_link = "javascript:catchupCurrentFeed()";
a5ae125a 4124 $catchup_sel_link = "javascript:catchupSelection()";
c6008b62 4125
e04c18a2
AD
4126 $archive_sel_link = "javascript:archiveSelection()";
4127 $delete_sel_link = "javascript:deleteSelection()";
4128
11befbb2
AD
4129 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
4130
c6008b62
AD
4131 $sel_all_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, '', true)";
4132 $sel_unread_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true)";
4133 $sel_none_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false)";
e75d70b5 4134 $sel_inv_link = "javascript:invertHeadlineSelection()";
11befbb2 4135
c6008b62
AD
4136 $tog_unread_link = "javascript:selectionToggleUnread()";
4137 $tog_marked_link = "javascript:selectionToggleMarked()";
e4f4b46f 4138 $tog_published_link = "javascript:selectionTogglePublished()";
11befbb2 4139
c6008b62 4140 } else {
11befbb2 4141
c6008b62
AD
4142 $sel_all_link = "javascript:cdmSelectArticles('all')";
4143 $sel_unread_link = "javascript:cdmSelectArticles('unread')";
4144 $sel_none_link = "javascript:cdmSelectArticles('none')";
4145
e75d70b5
AD
4146 $sel_inv_link = "javascript:invertHeadlineSelection()";
4147
50eefedb
AD
4148 $tog_unread_link = "javascript:selectionToggleUnread()";
4149 $tog_marked_link = "javascript:selectionToggleMarked()";
4150 $tog_published_link = "javascript:selectionTogglePublished()";
c6008b62
AD
4151
4152 }
4153
0ef68e6f
AD
4154 print "<div id=\"subtoolbar_ftitle\">";
4155
4156 if ($feed_site_url) {
c3fddd05 4157 $target = "target=\"_blank\"";
9fdeb07e 4158 print "<a title=\"".__("Visit the website")."\"$target href=\"$feed_site_url\">".
0ef68e6f
AD
4159 truncate_string($feed_title,30)."</a>";
4160 } else {
5163fc70
AD
4161 if ($feed_id < -10) {
4162 $label_id = -11-$feed_id;
4163
4164 $result = db_query($link, "SELECT fg_color, bg_color
4165 FROM ttrss_labels2 WHERE id = '$label_id' AND owner_uid = " .
4166 $_SESSION["uid"]);
4167
4168 if (db_num_rows($result) != 0) {
4169 $fg_color = db_fetch_result($result, 0, "fg_color");
4170 $bg_color = db_fetch_result($result, 0, "bg_color");
4171
4172 print "<span style='background : $bg_color; color : $fg_color'>";
4173 print $feed_title;
4174 print "</span>";
4175 } else {
4176 print $feed_title;
4177 }
4178
4179 } else {
4180 print $feed_title;
4181 }
0ef68e6f
AD
4182 }
4183
4184 if ($search) {
4185 $search_q = "&q=$search&m=$match_on&smode=$search_mode";
c3fddd05
AD
4186 } else {
4187 $search_q = "";
0ef68e6f
AD
4188 }
4189
aa1c2aa4
AD
4190 // Adaptive doesn't really make any sense for generated feeds
4191 // All Articles is the default, so no need to insert it either
4192 if ($view_mode == "adaptive" || $view_mode == "all_articles")
4193 $view_mode = "";
4194 else
4195 $view_mode = "&view-mode=$view_mode";
4196
8801fb01 4197 $rss_link = htmlspecialchars(get_self_url_prefix() .
aa1c2aa4 4198 "/backend.php?op=rss&id=$feed_id&is_cat=$is_cat$view_mode$search_q");
8801fb01
AD
4199
4200 #print "
4201 # <a target=\"_blank\"
4202 # title=\"".__("View as RSS feed")."\"
4203 # href=\"$rss_link\">
4204 # <img class=\"noborder\" src=\"images/feed-icon-12x12.png\"></a>";
f0361de2 4205
0ef68e6f 4206 print "
8801fb01 4207 <a href=\"#\"
9c5b98ad 4208 title=\"".__("View as RSS feed")."\"
8801fb01 4209 onclick=\"displayDlg('generatedFeed', '$feed_id:$is_cat:$rss_link')\">
c0105d4e 4210 <img class=\"noborder\" style=\"vertical-align : middle\" src=\"images/feed-icon-12x12.png\"></a>";
b8a637f3 4211
0ef68e6f 4212 print "</div>";
ceb30ba4 4213
d75ed3eb
AD
4214 print __('Select:')."
4215 <a href=\"$sel_all_link\">".__('All')."</a>,
4216 <a href=\"$sel_unread_link\">".__('Unread')."</a>,
4217 <a href=\"$sel_inv_link\">".__('Invert')."</a>,
4218 <a href=\"$sel_none_link\">".__('None')."</a></li>";
bf3c9838 4219
d75ed3eb 4220 print "&nbsp;&nbsp;";
bf3c9838 4221
d75ed3eb
AD
4222 print "<span
4223 onmouseover=\"enable_selection(false)\"
4224 onmouseout=\"enable_selection(true)\"
4225 onclick=\"toggleHeadlineActions()\" id=\"headlineActionsDrop\">".
7d939be7
AD
4226 __("Actions...") . "&nbsp;&nbsp;<img width='11' height'7'
4227 src=\"images/down_arrow.png\">
d75ed3eb 4228 </span>";
bf3c9838 4229
d75ed3eb 4230 print "<ul id=\"headlineActionsBody\" style=\"display : none\">";
bf3c9838 4231
d75ed3eb
AD
4232 print "<li class=\"insensitive\">".__('Selection toggle:')."</li>
4233 <li onclick=\"$tog_unread_link\">&nbsp;&nbsp;".__('Unread')."</li>
4234 <li onclick=\"$tog_marked_link\">&nbsp;&nbsp;".__('Starred')."</li>
4235 <li onclick=\"$tog_published_link\">&nbsp;&nbsp;".__('Published')."</li>
938052ba
AD
4236 <li class=\"insensitive\">".__('Selection:')."</li>
4237 <li onclick=\"$catchup_sel_link\">&nbsp;&nbsp;".__('Mark as read')."</li>";
bf3c9838 4238
938052ba
AD
4239// print "<li onclick=\"$catchup_feed_link\">&nbsp;&nbsp;".__('Entire feed').
4240// "</li>";
bf3c9838 4241
e04c18a2 4242 if ($feed_id != "0") {
938052ba 4243 print "<li onclick=\"$archive_sel_link\">&nbsp;&nbsp;".__('Archive')."</li>";
e04c18a2 4244 } else {
938052ba 4245 print "<li onclick=\"$archive_sel_link\">&nbsp;&nbsp;".__('Move back')."</li>";
84d7198a 4246 print "<li onclick=\"$delete_sel_link\">&nbsp;&nbsp;".__('Delete')."</li>";
e04c18a2 4247
84d7198a 4248 }
938052ba 4249
f72a7b66
AD
4250 print "<li onclick=\"emailArticle(false)\">&nbsp;&nbsp;".
4251 __('Forward by email')."</li>";
4252
d75ed3eb
AD
4253 //print "<li><span class=\"insensitive\">--------</span></li>";
4254 print "<li class=\"insensitive\">".__('Assign label:')."</li>";
bf3c9838 4255
79c88e11 4256 print_labels_headlines_dropdown($link, $feed_id);
c6008b62 4257
f0361de2 4258 print "<li class=\"insensitive\">".__('Feed:')."</li>";
7d4dba8f 4259 print "<li onclick=\"displayDlg('generatedFeed', '$feed_id:$is_cat:$rss_link')\">&nbsp;&nbsp;".__('View as RSS')."</li>";
f0361de2 4260
d75ed3eb 4261 print "</ul>";
11befbb2 4262
0ef68e6f 4263 print "</div>";
11befbb2
AD
4264 }
4265
f0855b88
AD
4266 function printCategoryHeader($link, $cat_id, $hidden = false, $can_browse = true,
4267 $title_override = false) {
bba7c4bf 4268
f0855b88
AD
4269 if (!$title_override)
4270 $tmp_category = getCategoryTitle($link, $cat_id);
4271 else
4272 $tmp_category = $title_override;
cc914918
AD
4273
4274 if ($cat_id > 0) {
4275 $cat_unread = ccache_find($link, $cat_id, $_SESSION["uid"], true);
b2531a28 4276 } else if ($cat_id == 0 || $cat_id == -2) {
cc914918
AD
4277 $cat_unread = getCategoryUnread($link, $cat_id);
4278 }
bba7c4bf
AD
4279
4280 if ($hidden) {
4281 $holder_style = "display:none;";
66a251f9 4282 $ellipsis = "…";
bba7c4bf
AD
4283 } else {
4284 $holder_style = "";
4285 $ellipsis = "";
4286 }
4287
4288 $catctr_class = ($cat_unread > 0) ? "catCtrHasUnread" : "catCtrNoUnread";
4289
bba7c4bf 4290 if ($can_browse) {
4c41e58f
AD
4291 $browse_cat_link = "onclick=\"javascript:viewCategory($cat_id)\"";
4292 $inner_title_class = "catTitle";
bba7c4bf 4293 } else {
4c41e58f
AD
4294 $browse_cat_link = "";
4295 $inner_title_class = "catTitleNL";
bba7c4bf
AD
4296 }
4297
2baedabe 4298 $cat_class = "feedCat";
364e391e
AD
4299
4300 print "<li class=\"$cat_class\" id=\"FCAT-$cat_id\">
98fb6193 4301 <img onclick=\"toggleCollapseCat($cat_id)\" class=\"catCollapse\"
4c41e58f
AD
4302 title=\"".__('Click to collapse category')."\"
4303 src=\"images/cat-collapse.png\"><span class=\"$inner_title_class\"
c6dbeedc 4304 id=\"FCATN-$cat_id\" $browse_cat_link/>$tmp_category</span>";
4c41e58f
AD
4305
4306 print "<span id=\"FCAP-$cat_id\">";
4307
dda1396f 4308 print " <span id=\"FCATCTR-$cat_id\"
bba7c4bf
AD
4309 class=\"$catctr_class\">($cat_unread)</span> $ellipsis";
4310
4c41e58f 4311 print "</span>";
bba7c4bf 4312
782ddd70 4313 //print "</li>";
bba7c4bf 4314
60ea2377 4315 print "<ul class=\"feedCatList\" id=\"FCATLIST-$cat_id\" style='$holder_style'>";
7abee14f 4316
bba7c4bf
AD
4317 }
4318
f407c086
AD
4319 function outputFeedList($link, $tags = false) {
4320
3bd9a780 4321 print "<ul class=\"feedList\" id=\"feedList\">";
f407c086
AD
4322
4323 $owner_uid = $_SESSION["uid"];
4324
cf4d339c 4325 /* virtual feeds */
f407c086 4326
cf4d339c 4327 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3b086176 4328
57937c42 4329 $cat_hidden = get_pref($link, "_COLLAPSED_SPECIAL");
3b086176 4330
bba7c4bf 4331 printCategoryHeader($link, -1, $cat_hidden, false);
cf4d339c 4332 }
f407c086 4333
e1050aec 4334 foreach (array(-4, -3, -1, -2, 0) as $i) {
4bee8b5f
AD
4335 printFeedEntry($i, "virt", false, false,
4336 false, $link);
4337 }
e4f4b46f 4338
cf4d339c 4339 if (get_pref($link, 'ENABLE_FEED_CATS')) {
8b803aa2 4340 print "</ul></li>";
cf4d339c 4341 }
f407c086 4342
cf4d339c 4343 if (!$tags) {
f407c086 4344
ceb30ba4 4345
2eb9c95c 4346 $result = db_query($link, "SELECT * FROM
ceb30ba4 4347 ttrss_labels2 WHERE owner_uid = '$owner_uid' ORDER by caption");
f407c086
AD
4348
4349 if (db_num_rows($result) > 0) {
4350 if (get_pref($link, 'ENABLE_FEED_CATS')) {
bd64489f 4351
57937c42 4352 $cat_hidden = get_pref($link, "_COLLAPSED_LABELS");
bd64489f 4353
e6a38cde 4354 printCategoryHeader($link, -2, $cat_hidden, true);
bd64489f 4355
f407c086 4356 } else {
3bd9a780 4357 print "<li><hr></li>";
f407c086
AD
4358 }
4359 }
4360
4361 while ($line = db_fetch_assoc($result)) {
4362
f407c086
AD
4363 $label_id = -$line['id'] - 11;
4364 $count = getFeedUnread($link, $label_id);
f407c086
AD
4365
4366 printFeedEntry($label_id,
4bee8b5f
AD
4367 "label", $line["caption"],
4368 $count, false, $link,
2eb9c95c
AD
4369 false, false, false,
4370 $line['fg_color'], $line['bg_color']);
f407c086
AD
4371
4372 }
4373
4374 if (db_num_rows($result) > 0) {
4375 if (get_pref($link, 'ENABLE_FEED_CATS')) {
4376 print "</ul>";
4377 }
ceb30ba4 4378 }
f407c086 4379
f407c086
AD
4380
4381 if (!get_pref($link, 'ENABLE_FEED_CATS')) {
3bd9a780 4382 print "<li><hr></li>";
f407c086
AD
4383 }
4384
4385 if (get_pref($link, 'ENABLE_FEED_CATS')) {
4386 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
9d393c84 4387 $order_by_qpart = "order_id,category,unread DESC,title";
f407c086 4388 } else {
9d393c84 4389 $order_by_qpart = "order_id,category,title";
f407c086
AD
4390 }
4391 } else {
4392 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
4393 $order_by_qpart = "unread DESC,title";
4394 } else {
4395 $order_by_qpart = "title";
4396 }
4397 }
4398
14073c0a
AD
4399 $age_qpart = getMaxAgeSubquery();
4400
99509451 4401 $query = "SELECT ttrss_feeds.*,
fc2b26a6 4402 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated_noms,
f407c086
AD
4403 cat_id,last_error,
4404 ttrss_feed_categories.title AS category,
d7135e2a
AD
4405 ttrss_feed_categories.collapsed,
4406 value AS unread
4407 FROM ttrss_feeds LEFT JOIN ttrss_feed_categories
4408 ON (ttrss_feed_categories.id = cat_id)
4409 LEFT JOIN ttrss_counters_cache
4410 ON
4411 (ttrss_feeds.id = feed_id)
f407c086 4412 WHERE
6e63a7c3 4413 ttrss_feeds.owner_uid = '$owner_uid'
99509451
AD
4414 ORDER BY $order_by_qpart";
4415
4416 $result = db_query($link, $query);
f407c086 4417
b4e75b2a 4418 $actid = $_REQUEST["actid"];
f407c086
AD
4419
4420 /* real feeds */
4421
4422 $lnum = 0;
4423
4424 $total_unread = 0;
4425
4426 $category = "";
f407c086
AD
4427
4428 while ($line = db_fetch_assoc($result)) {
4429
70c9b173 4430 $feed = htmlspecialchars(trim($line["title"]));
0f39ae20
AD
4431
4432 if (!$feed) $feed = "[Untitled]";
4433
f407c086 4434 $feed_id = $line["id"];
d7135e2a 4435 $unread = $line["unread"];
f407c086 4436
b4e75b2a 4437 $subop = $_REQUEST["subop"];
f407c086 4438
324944f3
AD
4439 $last_updated = make_local_datetime($link, $line['last_updated_noms'],
4440 false);
f407c086
AD
4441
4442 $rtl_content = sql_bool_to_bool($line["rtl_content"]);
4443
4444 if ($rtl_content) {
4445 $rtl_tag = "dir=\"RTL\"";
4446 } else {
4447 $rtl_tag = "";
4448 }
4449
f407c086
AD
4450 $cat_id = $line["cat_id"];
4451
4452 $tmp_category = $line["category"];
4453
4454 if (!$tmp_category) {
d1db26aa 4455 $tmp_category = __("Uncategorized");
f407c086
AD
4456 }
4457
4458 // $class = ($lnum % 2) ? "even" : "odd";
4459
4460 if ($line["last_error"]) {
4461 $class = "error";
4462 } else {
4463 $class = "feed";
4464 }
4465
f407c086
AD
4466 if ($actid == $feed_id) {
4467 $class .= "Selected";
4468 }
4469
4470 $total_unread += $unread;
4471
4472 if ($category != $tmp_category && get_pref($link, 'ENABLE_FEED_CATS')) {
4473
4474 if ($category) {
8b803aa2 4475 print "</ul></li>";
f407c086
AD
4476 }
4477
4478 $category = $tmp_category;
4479
7abee14f 4480 $collapsed = sql_bool_to_bool($line["collapsed"]);
f407c086
AD
4481
4482 // workaround for NULL category
d1db26aa 4483 if ($category == __("Uncategorized")) {
57937c42 4484 $collapsed = get_pref($link, "_COLLAPSED_UNCAT");
f407c086
AD
4485 }
4486
22fdebff 4487 $cat_id = (int) $cat_id;
f407c086 4488
7abee14f
AD
4489 printCategoryHeader($link, $cat_id, $collapsed, true);
4490
f407c086
AD
4491 }
4492
4493 printFeedEntry($feed_id, $class, $feed, $unread,
4bee8b5f 4494 false, $link, $rtl_content,
f407c086
AD
4495 $last_updated, $line["last_error"]);
4496
4497 ++$lnum;
4498 }
4499
4500 if (db_num_rows($result) == 0) {
f0855b88
AD
4501
4502 if (!get_pref($link, 'ENABLE_FEED_CATS')) {
4503 print "<li style='text-align : center'><a href=\"#\"
4504 onclick=\"quickAddFeed()\">".
4505 __('Subscribe to feed...')."</a></li>";
4506 } else {
4507 printCategoryHeader($link, -1, false, false, "Feeds");
4508
4509 print "<li><a href=\"#\"
4510 onclick=\"quickAddFeed()\">".
4511 __('Subscribe to feed...')."</a></li>";
4512
4513 print "</ul>";
4514 }
f407c086
AD
4515 }
4516
4517 } else {
4518
4519 // tags
4520
4521/* $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
4522 FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
4523 post_int_id = ttrss_user_entries.int_id AND
4524 unread = true AND ref_id = ttrss_entries.id
4525 AND ttrss_tags.owner_uid = '$owner_uid' GROUP BY tag_name
4526 UNION
4527 select tag_name,0 as count FROM ttrss_tags WHERE owner_uid = '$owner_uid'
4528 ORDER BY tag_name"); */
4529
4530 if (get_pref($link, 'ENABLE_FEED_CATS')) {
d1db26aa 4531 print "<li class=\"feedCat\">".__('Tags')."</li>";
60ea2377 4532 print "<ul class=\"feedCatList\">";
f407c086
AD
4533 }
4534
14073c0a
AD
4535 $age_qpart = getMaxAgeSubquery();
4536
f407c086 4537 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
14073c0a
AD
4538 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
4539 AND ref_id = id AND $age_qpart
f407c086 4540 AND unread = true)) AS count FROM ttrss_tags
ef1ac7c7
AD
4541 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name
4542 ORDER BY count DESC LIMIT 50");
f407c086
AD
4543
4544 $tags = array();
4545
4546 while ($line = db_fetch_assoc($result)) {
4547 $tags[$line["tag_name"]] += $line["count"];
4548 }
4549
4550 foreach (array_keys($tags) as $tag) {
4551
4552 $unread = $tags[$tag];
f407c086 4553 $class = "tag";
326469fc 4554
f407c086
AD
4555 printFeedEntry($tag, $class, $tag, $unread, "images/tag.png", $link);
4556
4557 }
4558
4559 if (db_num_rows($result) == 0) {
4560 print "<li>No tags to display.</li>";
4561 }
4562
4563 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3bd9a780 4564 print "</ul>";
f407c086
AD
4565 }
4566
4567 }
4568
4569 print "</ul>";
4570
4571 }
4572
bc976a8c 4573 function get_article_tags($link, $id, $owner_uid = 0) {
0b126ac2 4574
bd3f2ade
AD
4575 global $memcache;
4576
0b126ac2
AD
4577 $a_id = db_escape_string($id);
4578
bc976a8c
AD
4579 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
4580
bd3f2ade 4581 $query = "SELECT DISTINCT tag_name,
0c3d1c68 4582 owner_uid as owner FROM
0b126ac2 4583 ttrss_tags WHERE post_int_id = (SELECT int_id FROM ttrss_user_entries WHERE
bd3f2ade 4584 ref_id = '$a_id' AND owner_uid = '$owner_uid' LIMIT 1) ORDER BY tag_name";
0b126ac2 4585
bd3f2ade 4586 $obj_id = md5("TAGS:$owner_uid:$id");
0b126ac2 4587 $tags = array();
bd3f2ade
AD
4588
4589 if ($memcache && $obj = $memcache->get($obj_id)) {
4590 $tags = $obj;
4591 } else {
490c366d
AD
4592 /* check cache first */
4593
4594 $result = db_query($link, "SELECT tag_cache FROM ttrss_user_entries
4595 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4596
4597 $tag_cache = db_fetch_result($result, 0, "tag_cache");
4598
4599 if ($tag_cache) {
4600 $tags = explode(",", $tag_cache);
4601 } else {
bd3f2ade 4602
490c366d
AD
4603 /* do it the hard way */
4604
4605 $tmp_result = db_query($link, $query);
4606
4607 while ($tmp_line = db_fetch_assoc($tmp_result)) {
4608 array_push($tags, $tmp_line["tag_name"]);
4609 }
4610
4611 /* update the cache */
4612
4613 $tags_str = db_escape_string(join(",", $tags));
4614
4615 db_query($link, "UPDATE ttrss_user_entries
4616 SET tag_cache = '$tags_str' WHERE ref_id = '$id'
4617 AND owner_uid = " . $_SESSION["uid"]);
bd3f2ade
AD
4618 }
4619
4620 if ($memcache) $memcache->add($obj_id, $tags, 0, 3600);
0b126ac2
AD
4621 }
4622
4623 return $tags;
4624 }
4625
d62a3b63
AD
4626 function trim_value(&$value) {
4627 $value = trim($value);
4628 }
4629
4630 function trim_array($array) {
4631 $tmp = $array;
4632 array_walk($tmp, 'trim_value');
4633 return $tmp;
4634 }
4635
be832a1a 4636 function tag_is_valid($tag) {
ef063748
AD
4637 if ($tag == '') return false;
4638 if (preg_match("/^[0-9]*$/", $tag)) return false;
41f7498a 4639 if (mb_strlen($tag) > 250) return false;
ef063748 4640
31365729
AD
4641 if (function_exists('iconv')) {
4642 $tag = iconv("utf-8", "utf-8", $tag);
4643 }
4644
ef063748
AD
4645 if (!$tag) return false;
4646
4647 return true;
be832a1a
AD
4648 }
4649
afb12ed0
AD
4650 function render_login_form($link, $mobile = 0) {
4651 switch ($mobile) {
4652 case 0:
793185a9 4653 require_once "login_form.php";
afb12ed0
AD
4654 break;
4655 case 1:
793185a9 4656 require_once "mobile/login_form.php";
afb12ed0
AD
4657 break;
4658 case 2:
4659 require_once "mobile/classic/login_form.php";
793185a9 4660 }
01a87dff
AD
4661 }
4662
dc56b3b7
AD
4663 // from http://developer.apple.com/internet/safari/faq.html
4664 function no_cache_incantation() {
4665 header("Expires: Mon, 22 Dec 1980 00:00:00 GMT"); // Happy birthday to me :)
4666 header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified
4667 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); // HTTP/1.1
4668 header("Cache-Control: post-check=0, pre-check=0", false);
4669 header("Pragma: no-cache"); // HTTP/1.0
4670 }
4671
42395d28 4672 function format_warning($msg, $id = "") {
883fee8d 4673 global $link;
42395d28 4674 return "<div class=\"warning\" id=\"$id\">
883fee8d 4675 <img src=\"".theme_image($link, "images/sign_excl.png")."\">$msg</div>";
0d32b41e
AD
4676 }
4677
4678 function format_notice($msg) {
883fee8d
AD
4679 global $link;
4680 return "<div class=\"notice\" id=\"$id\">
4681 <img src=\"".theme_image($link, "images/sign_info.png")."\">$msg</div>";
0d32b41e
AD
4682 }
4683
68d2f95e 4684 function format_error($msg) {
883fee8d
AD
4685 global $link;
4686 return "<div class=\"error\" id=\"$id\">
4687 <img src=\"".theme_image($link, "images/sign_excl.png")."\">$msg</div>";
68d2f95e
AD
4688 }
4689
4dccf1ed
AD
4690 function print_notice($msg) {
4691 return print format_notice($msg);
4692 }
4693
4694 function print_warning($msg) {
4695 return print format_warning($msg);
4696 }
4697
68d2f95e
AD
4698 function print_error($msg) {
4699 return print format_error($msg);
4700 }
4701
4702
4dccf1ed
AD
4703 function T_sprintf() {
4704 $args = func_get_args();
4705 return vsprintf(__(array_shift($args)), $args);
4706 }
4707
51682b23
AD
4708 function format_inline_player($link, $url, $ctype) {
4709
4710 $entry = "";
4711
4712 if (($ctype == __("audio/mpeg")) && (get_pref($link, "ENABLE_FLASH_PLAYER")) ) {
4713
4714 $entry .= "<object type=\"application/x-shockwave-flash\"
4715 data=\"extras/button/musicplayer.swf?song_url=$url\"
4716 width=\"17\" height=\"17\">
4717 <param name=\"movie\" value=\"extras/button/musicplayer.swf?song_url=$url\" /> </object>";
4718 }
4719
4720 /*
4721
4722 if (substr($ctype,0,6)=="audio/" || $ctype=="application/ogg" || $ctype=="application/x-ogg") {
4723 $entry .= "<audio controls=\"controls\"><source src=\"$url\" type=\"$ctype\" />";
4724 if (($ctype == __("audio/mpeg")) &&
4725 (get_pref($link, "ENABLE_FLASH_PLAYER")) ) {
4726 $entry .= "<span><object type=\"application/x-shockwave-flash\" data=\"extras/button/musicplayer.swf?song_url=$url\" width=\"17\" height=\"17\"> <param name=\"movie\" value=\"extras/button/musicplayer.swf?song_url=$url\" /> </object></span>";
4727 }
4728 $entry .= "</audio> ";
4729 if (($ctype == __("audio/mpeg")) &&
4730 (get_pref($link, "ENABLE_FLASH_PLAYER")) ) {
4731 $entry .= "<a id='switchToFlashLink' href='#' onclick='return switchToFlash(this)'>".__('Switch to Flash Player')."</a>";
4732 $entry .= "<script type='text/javascript'>html5AudioOrFlash('$ctype');</script>";
4733 }
4734 } elseif (substr($ctype,0,6)=="video/") {
4735 $entry .= "<video controls=\"controls\"><source src=\"$url\" type=\"$ctype\" />";
4736 $entry .= "</video>";
4737 } */
4738
4739
4740
4741 return $entry;
4742 }
4743
eedfb635
AD
4744 function outputArticleXML($link, $id, $feed_id, $mark_as_read = true,
4745 $zoom_mode = false) {
3de0261a 4746
10eb9da8 4747 /* we can figure out feed_id from article id anyway, why do we
e04c18a2 4748 * pass feed_id here? let's ignore the argument :( */
10eb9da8
AD
4749
4750 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
4751 WHERE ref_id = '$id'");
4752
e04c18a2 4753 $feed_id = (int) db_fetch_result($result, 0, "feed_id");
10eb9da8 4754
eedfb635 4755 if (!$zoom_mode) { print "<article id='$id'><![CDATA["; };
3de0261a 4756
54e61a68 4757 $result = db_query($link, "SELECT rtl_content, always_display_enclosures FROM ttrss_feeds
3de0261a
AD
4758 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
4759
4760 if (db_num_rows($result) == 1) {
4761 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
54e61a68 4762 $always_display_enclosures = sql_bool_to_bool(db_fetch_result($result, 0, "always_display_enclosures"));
3de0261a
AD
4763 } else {
4764 $rtl_content = false;
54e61a68 4765 $always_display_enclosures = false;
3de0261a
AD
4766 }
4767
4768 if ($rtl_content) {
4769 $rtl_tag = "dir=\"RTL\"";
4770 $rtl_class = "RTL";
4771 } else {
4772 $rtl_tag = "";
4773 $rtl_class = "";
4774 }
4775
4776 if ($mark_as_read) {
4777 $result = db_query($link, "UPDATE ttrss_user_entries
4778 SET unread = false,last_read = NOW()
4779 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
8a4c759e
AD
4780
4781 ccache_update($link, $feed_id, $_SESSION["uid"]);
3de0261a
AD
4782 }
4783
4784 $result = db_query($link, "SELECT title,link,content,feed_id,comments,int_id,
fc2b26a6 4785 ".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
3de0261a 4786 (SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url,
8cc3c778 4787 (SELECT site_url FROM ttrss_feeds WHERE id = feed_id) as site_url,
3de0261a 4788 num_comments,
c7e51de1 4789 author,
ef83538d 4790 orig_feed_id,
c7e51de1 4791 note
3de0261a
AD
4792 FROM ttrss_entries,ttrss_user_entries
4793 WHERE id = '$id' AND ref_id = id AND owner_uid = " . $_SESSION["uid"]);
4794
4795 if ($result) {
4796
3de0261a
AD
4797 $line = db_fetch_assoc($result);
4798
4799 if ($line["icon_url"]) {
4800 $feed_icon = "<img class=\"feedIcon\" src=\"" . $line["icon_url"] . "\">";
4801 } else {
4802 $feed_icon = "&nbsp;";
4803 }
4804
8cc3c778
AD
4805 $feed_site_url = $line['site_url'];
4806
3de0261a
AD
4807 $num_comments = $line["num_comments"];
4808 $entry_comments = "";
4809
4810 if ($num_comments > 0) {
4811 if ($line["comments"]) {
4812 $comments_url = $line["comments"];
4813 } else {
4814 $comments_url = $line["link"];
4815 }
7514749d 4816 $entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
3de0261a
AD
4817 } else {
4818 if ($line["comments"] && $line["link"] != $line["comments"]) {
7514749d 4819 $entry_comments = "<a target='_blank' href=\"".$line["comments"]."\">comments</a>";
3de0261a
AD
4820 }
4821 }
4822
eedfb635
AD
4823 if ($zoom_mode) {
4824 header("Content-Type: text/html");
4825 print "<html><head>
5bb0cc8e 4826 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
eedfb635
AD
4827 <title>Tiny Tiny RSS - ".$line["title"]."</title>
4828 <link rel=\"stylesheet\" type=\"text/css\" href=\"tt-rss.css\">
4829 </head><body>";
4830 }
4831
4832
3de0261a 4833 print "<div class=\"postReply\">";
9ed0b90f 4834 print "<div class=\"postHeader\">";
3de0261a
AD
4835
4836 $entry_author = $line["author"];
4837
4838 if ($entry_author) {
60164936 4839 $entry_author = __(" - ") . $entry_author;
3de0261a
AD
4840 }
4841
324944f3
AD
4842 $parsed_updated = make_local_datetime($link, $line["updated"], true,
4843 false, true);
4844
3de0261a
AD
4845 print "<div class=\"postDate$rtl_class\">$parsed_updated</div>";
4846
4847 if ($line["link"]) {
7514749d 4848 print "<div clear='both'><a target='_blank' href=\"" . $line["link"] . "\">" .
06202d88 4849 $line["title"] . "</a><span class='author'>$entry_author</span></div>";
3de0261a
AD
4850 } else {
4851 print "<div clear='both'>" . $line["title"] . "$entry_author</div>";
4852 }
4853
307d187c 4854 $tags_str = format_tags_string(get_article_tags($link, $id), $id);
e7544143 4855
3de0261a
AD
4856 if (!$entry_comments) $entry_comments = "&nbsp;"; # placeholder
4857
5f014cf1 4858 print "<div style='float : right'>
e9823609
AD
4859 <img src='".theme_image($link, 'images/tag.png')."'
4860 class='tagsPic' alt='Tags' title='Tags'>&nbsp;";
eedfb635
AD
4861
4862 if (!$zoom_mode) {
307d187c 4863 print "<span id=\"ATSTR-$id\">$tags_str</span>
eedfb635 4864 <a title=\"".__('Edit tags for this article')."\"
31a53903 4865 href=\"#\" onclick=\"editArticleTags($id, $feed_id)\">(+)</a>";
4710e3dc 4866
e9823609 4867 print "<img src=\"".theme_image($link, 'images/art-zoom.png')."\"
9ed0b90f 4868 class='tagsPic' style=\"cursor : pointer\"
eedfb635
AD
4869 onclick=\"zoomToArticle($id)\"
4870 alt='Zoom' title='".__('Show article summary in new window')."'>";
c7e51de1
AD
4871
4872 $note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
4873
e9823609 4874 print "<img src=\"".theme_image($link, 'images/art-pub-note.png')."\"
9ed0b90f 4875 class='tagsPic' style=\"cursor : pointer\"
c7e51de1
AD
4876 onclick=\"publishWithNote($id, '$note_escaped')\"
4877 alt='PubNote' title='".__('Publish article with a note')."'>";
4878
31a53903
AD
4879 if (DIGEST_ENABLE) {
4880 print "<img src=\"".theme_image($link, 'images/art-email.png')."\"
9ed0b90f 4881 class='tagsPic' style=\"cursor : pointer\"
31a53903
AD
4882 onclick=\"emailArticle($id)\"
4883 alt='Zoom' title='".__('Forward by email')."'>";
4884 }
4885
24ecbcae
AD
4886 } else {
4887 $tags_str = strip_tags($tags_str);
4888 print "<span id=\"ATSTR-$id\">$tags_str</span>";
eedfb635
AD
4889 }
4890 print "</div>";
4891 print "<div clear='both'>$entry_comments</div>";
3de0261a 4892
ef83538d
AD
4893 if ($line["orig_feed_id"]) {
4894
4895 $tmp_result = db_query($link, "SELECT * FROM ttrss_archived_feeds
4896 WHERE id = ".$line["orig_feed_id"]);
4897
4898 if (db_num_rows($tmp_result) != 0) {
4899
4900 print "<div clear='both'>";
4901 print __("Originally from:");
4902
4903 print "&nbsp;";
4904
4905 $tmp_line = db_fetch_assoc($tmp_result);
4906
4907 print "<a target='_blank'
4908 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
4909 $tmp_line['title'] . "</a>";
4910
4911 print "&nbsp;";
4912
4913 print "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
4914 print "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_set.gif'></a>";
4915
4916 print "</div>";
4917 }
4918 }
4919
3de0261a
AD
4920 print "</div>";
4921
4922 print "<div class=\"postIcon\">" . $feed_icon . "</div>";
64ab16ac 4923
3de0261a 4924 print "<div class=\"postContent\">";
64ab16ac 4925
8cc3c778
AD
4926 $article_content = sanitize_rss($link, $line["content"], false, false,
4927 $feed_site_url);
c41890b0 4928
c7e51de1
AD
4929 print "<div id=\"POSTNOTE-$id\">";
4930 if ($line['note']) {
4931 print format_article_note($id, $line['note']);
4932 }
4933 print "</div>";
4934
db54143e
AD
4935 print $article_content;
4936
dad14b51
AD
4937 print_article_enclosures($link, $id, $always_display_enclosures,
4938 $article_content);
ce53e200 4939
ce53e200 4940 print "</div>";
dad14b51 4941
3de0261a
AD
4942 print "</div>";
4943
4944 }
4945
eedfb635
AD
4946 if (!$zoom_mode) {
4947 print "]]></article>";
4948 } else {
4949 print "
4950 <div style=\"text-align : center\">
2ae69126
AD
4951 <button onclick=\"return window.close()\">".
4952 __("Close this window")."</button></div>";
eedfb635
AD
4953 print "</body></html>";
4954
4955 }
3de0261a
AD
4956
4957 }
4958
4959 function outputHeadlinesList($link, $feed, $subop, $view_mode, $limit, $cat_view,
7b4d02a8
AD
4960 $next_unread_feed, $offset, $vgr_last_feed = false,
4961 $override_order = false) {
3de0261a 4962
52d7e7da
AD
4963 $disable_cache = false;
4964
46921916
AD
4965 $timing_info = getmicrotime();
4966
961f4c73
AD
4967 $topmost_article_ids = array();
4968
ac541432
AD
4969 if (!$offset) {
4970 $offset = 0;
4971 }
3de0261a
AD
4972
4973 if ($subop == "undefined") $subop = "";
4974
a9bcfb8f
AD
4975 $subop_split = split(":", $subop);
4976
3de0261a 4977 if ($subop == "CatchupSelected") {
b4e75b2a
AD
4978 $ids = split(",", db_escape_string($_REQUEST["ids"]));
4979 $cmode = sprintf("%d", $_REQUEST["cmode"]);
3de0261a
AD
4980
4981 catchupArticlesById($link, $ids, $cmode);
4982 }
4983
bd40aca6 4984 if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0 && !$cat_view) {
35bf080c 4985 update_generic_feed($link, $feed, $cat_view, true);
3de0261a
AD
4986 }
4987
4988 if ($subop == "MarkAllRead") {
4989 catchup_feed($link, $feed, $cat_view);
4990
4991 if (get_pref($link, 'ON_CATCHUP_SHOW_NEXT_FEED')) {
4992 if ($next_unread_feed) {
4993 $feed = $next_unread_feed;
4994 }
4995 }
4996 }
4997
a9bcfb8f
AD
4998 if ($subop_split[0] == "MarkAllReadGR") {
4999 catchup_feed($link, $subop_split[1], false);
5000 }
5001
c3fddd05 5002 // FIXME: might break tag display?
a9bcfb8f 5003
e325d700 5004 if ($feed > 0 && !$cat_view) {
3de0261a
AD
5005 $result = db_query($link,
5006 "SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
5007
5008 if (db_num_rows($result) == 0) {
5009 print "<div align='center'>".__('Feed not found.')."</div>";
5010 return;
5011 }
5012 }
5013
5014 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
10eb9da8 5015
3de0261a
AD
5016 $result = db_query($link, "SELECT rtl_content FROM ttrss_feeds
5017 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
5018
5019 if (db_num_rows($result) == 1) {
5020 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
5021 } else {
5022 $rtl_content = false;
5023 }
5024
5025 if ($rtl_content) {
5026 $rtl_tag = "dir=\"RTL\"";
5027 } else {
5028 $rtl_tag = "";
5029 }
5030 } else {
5031 $rtl_tag = "";
5032 $rtl_content = false;
5033 }
5034
3de0261a
AD
5035 /// START /////////////////////////////////////////////////////////////////////////////////
5036
c3fddd05 5037 @$search = db_escape_string($_REQUEST["query"]);
52d7e7da
AD
5038
5039 if ($search) {
5040 $disable_cache = true;
5041 }
5042
c3fddd05
AD
5043 @$search_mode = db_escape_string($_REQUEST["search_mode"]);
5044 @$match_on = db_escape_string($_REQUEST["match_on"]);
3de0261a
AD
5045
5046 if (!$match_on) {
5047 $match_on = "both";
5048 }
5049
5050 $real_offset = $offset * $limit;
5051
b4e75b2a 5052 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H0", $timing_info);
46921916 5053
3de0261a 5054 $qfh_ret = queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view,
7b4d02a8 5055 $search, $search_mode, $match_on, $override_order, $real_offset);
3de0261a 5056
b4e75b2a 5057 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H1", $timing_info);
46921916 5058
3de0261a
AD
5059 $result = $qfh_ret[0];
5060 $feed_title = $qfh_ret[1];
5061 $feed_site_url = $qfh_ret[2];
5062 $last_error = $qfh_ret[3];
f56e3080 5063
081e527d
AD
5064 $vgroup_last_feed = $vgr_last_feed;
5065
8801fb01 5066/* if ($feed == -2) {
f56e3080 5067 $feed_site_url = article_publish_url($link);
8801fb01 5068 } */
f56e3080 5069
3de0261a
AD
5070 /// STOP //////////////////////////////////////////////////////////////////////////////////
5071
ac541432
AD
5072 if (!$offset) {
5073 print "<div id=\"headlinesContainer\" $rtl_tag>";
3de0261a 5074
ac541432
AD
5075 if (!$result) {
5076 print "<div align='center'>".__("Could not display feed (query failed). Please check label match syntax or local configuration.")."</div>";
5077 return;
5078 }
3de0261a 5079
0ef68e6f 5080 print_headline_subtoolbar($link, $feed_site_url, $feed_title,
23d72f39 5081 $feed, $cat_view, $search, $match_on, $search_mode, $view_mode);
3de0261a 5082
ac541432
AD
5083 print "<div id=\"headlinesInnerContainer\" onscroll=\"headlines_scroll_handler()\">";
5084 }
3de0261a 5085
29dfb258
AD
5086 $headlines_count = db_num_rows($result);
5087
3de0261a
AD
5088 if (db_num_rows($result) > 0) {
5089
5090# print "\{$offset}";
5091
ac541432 5092 if (!get_pref($link, 'COMBINED_DISPLAY_MODE') && !$offset) {
3de0261a
AD
5093 print "<table class=\"headlinesList\" id=\"headlinesList\"
5094 cellspacing=\"0\">";
5095 }
5096
4ab4d364
AD
5097 $lnum = $limit*$offset;
5098
3de0261a 5099 $num_unread = 0;
6cfea5c7
AD
5100 $cur_feed_title = '';
5101
784ac51f
AD
5102 $fresh_intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE") * 60 * 60;
5103
3de0261a
AD
5104 while ($line = db_fetch_assoc($result)) {
5105
5106 $class = ($lnum % 2) ? "even" : "odd";
5107
5108 $id = $line["id"];
5109 $feed_id = $line["feed_id"];
961f4c73 5110
e2549229 5111 $labels = get_article_labels($link, $id);
e2549229 5112
2eb9c95c
AD
5113 $labels_str = "<span id=\"HLLCTR-$id\">";
5114 $labels_str .= format_article_labels($labels, $id);
f9247195 5115 $labels_str .= "</span>";
2eb9c95c 5116
905ff52a 5117 if (count($topmost_article_ids) < 3) {
961f4c73
AD
5118 array_push($topmost_article_ids, $id);
5119 }
5120
784ac51f 5121 if ($line["last_read"] == "" && !sql_bool_to_bool($line["unread"])) {
3de0261a 5122
883fee8d
AD
5123 $update_pic = "<img id='FUPDPIC-$id' src=\"".
5124 theme_image($link, 'images/updated.png')."\"
3de0261a
AD
5125 alt=\"Updated\">";
5126 } else {
5127 $update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.gif\"
5128 alt=\"Updated\">";
5129 }
784ac51f
AD
5130
5131 if (sql_bool_to_bool($line["unread"]) &&
5132 time() - strtotime($line["updated_noms"]) < $fresh_intl) {
5133
e9823609
AD
5134 $update_pic = "<img id='FUPDPIC-$id' src=\"".
5135 theme_image($link, 'images/fresh_sign.png')."\" alt=\"Fresh\">";
784ac51f 5136 }
3de0261a
AD
5137
5138 if ($line["unread"] == "t" || $line["unread"] == "1") {
5139 $class .= "Unread";
5140 ++$num_unread;
5141 $is_unread = true;
5142 } else {
5143 $is_unread = false;
5144 }
abd8a516 5145
3de0261a 5146 if ($line["marked"] == "t" || $line["marked"] == "1") {
e9823609
AD
5147 $marked_pic = "<img id=\"FMPIC-$id\"
5148 src=\"".theme_image($link, 'images/mark_set.png')."\"
5149 class=\"markedPic\" alt=\"Unstar article\"
5150 onclick='javascript:tMark($id)'>";
3de0261a 5151 } else {
e9823609
AD
5152 $marked_pic = "<img id=\"FMPIC-$id\"
5153 src=\"".theme_image($link, 'images/mark_unset.png')."\"
5154 class=\"markedPic\" alt=\"Star article\"
5155 onclick='javascript:tMark($id)'>";
3de0261a
AD
5156 }
5157
e4f4b46f 5158 if ($line["published"] == "t" || $line["published"] == "1") {
e9823609
AD
5159 $published_pic = "<img id=\"FPPIC-$id\" src=\"".theme_image($link,
5160 'images/pub_set.png')."\"
e4f4b46f 5161 class=\"markedPic\"
f5e0338d 5162 alt=\"Unpublish article\" onclick='javascript:tPub($id)'>";
e4f4b46f 5163 } else {
e9823609
AD
5164 $published_pic = "<img id=\"FPPIC-$id\" src=\"".theme_image($link,
5165 'images/pub_unset.png')."\"
e4f4b46f 5166 class=\"markedPic\"
f5e0338d 5167 alt=\"Publish article\" onclick='javascript:tPub($id)'>";
e4f4b46f
AD
5168 }
5169
e944346c 5170# $content_link = "<a target=\"_blank\" href=\"".$line["link"]."\">" .
3de0261a
AD
5171# $line["title"] . "</a>";
5172
f0971fc1
AD
5173# $content_link = "<a
5174# href=\"" . htmlspecialchars($line["link"]) . "\"
5175# onclick=\"view($id,$feed_id);\">" .
5176# $line["title"] . "</a>";
3de0261a
AD
5177
5178# $content_link = "<a href=\"javascript:viewContentUrl('".$line["link"]."');\">" .
5179# $line["title"] . "</a>";
5180
324944f3 5181 $updated_fmt = make_local_datetime($link, $line["updated_noms"], false);
3de0261a
AD
5182
5183 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
5184 $content_preview = truncate_string(strip_tags($line["content_preview"]),
5185 100);
5186 }
5187
ff6e357a
AD
5188 $score = $line["score"];
5189
883fee8d
AD
5190 $score_pic = theme_image($link,
5191 "images/" . get_score_pic($score));
546499a9 5192
9bf3f101
AD
5193/* $score_title = __("(Click to change)");
5194 $score_pic = "<img class='hlScorePic' src=\"images/$score_pic\"
5195 onclick=\"adjustArticleScore($id, $score)\" title=\"$score $score_title\">"; */
546499a9 5196
883fee8d 5197 $score_pic = "<img class='hlScorePic' src=\"$score_pic\"
9bf3f101 5198 title=\"$score\">";
ff6e357a 5199
5daa24f2
AD
5200 if ($score > 500) {
5201 $hlc_suffix = "H";
5202 } else if ($score < -100) {
5203 $hlc_suffix = "L";
5204 } else {
5205 $hlc_suffix = "";
5206 }
5207
3de0261a
AD
5208 $entry_author = $line["author"];
5209
5210 if ($entry_author) {
60164936 5211 $entry_author = " - $entry_author";
3de0261a
AD
5212 }
5213
7defa089 5214 $has_feed_icon = feed_has_icon($feed_id);
bd51294a
AD
5215
5216 if ($has_feed_icon) {
5217 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
5218 } else {
5219 //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">";
20be0cf8 5220 $feed_icon_img = "";
bd51294a
AD
5221 }
5222
3de0261a 5223 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
6cfea5c7 5224
d00f22ac 5225 if (get_pref($link, 'VFEED_GROUP_BY_FEED')) {
bb031f91 5226 if ($feed_id != $vgroup_last_feed && $line["feed_title"]) {
a9bcfb8f
AD
5227
5228 $cur_feed_title = $line["feed_title"];
081e527d 5229 $vgroup_last_feed = $feed_id;
a9bcfb8f 5230
962d8ba4 5231 $cur_feed_title = htmlspecialchars($cur_feed_title);
43fc671f 5232
af163b85 5233 $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>".__('mark as read')."</a>)";
a9bcfb8f 5234
6cfea5c7 5235 print "<tr class='feedTitle'><td colspan='7'>".
dc803347 5236 "<div style=\"float : right\">$feed_icon_img</div>".
6cfea5c7 5237 "<a href=\"javascript:viewfeed($feed_id, '', false)\">".
965fb2af 5238 $line["feed_title"]."</a> $vf_catchup_link</td></tr>";
6cfea5c7
AD
5239 }
5240 }
314fcd2b
AD
5241
5242 $mouseover_attrs = "onmouseover='postMouseIn($id)'
5243 onmouseout='postMouseOut($id)'";
5244
5245 print "<tr class='$class' id='RROW-$id' $mouseover_attrs>";
3de0261a 5246
67343d9f 5247 print "<td class='hlUpdPic'>$update_pic</td>";
3de0261a
AD
5248
5249 print "<td class='hlSelectRow'>
67343d9f
AD
5250 <input type=\"checkbox\" onclick=\"tSR(this)\"
5251 id=\"RCHK-$id\">
3de0261a
AD
5252 </td>";
5253
5254 print "<td class='hlMarkedPic'>$marked_pic</td>";
e4f4b46f 5255 print "<td class='hlMarkedPic'>$published_pic</td>";
3de0261a 5256
df456bb0
AD
5257# if ($line["feed_title"]) {
5258# print "<td class='hlContent'>$content_link</td>";
5259# print "<td class='hlFeed'>
5260# <a href=\"javascript:viewfeed($feed_id, '', false)\">".
5261# truncate_string($line["feed_title"],30)."</a>&nbsp;</td>";
5262# } else {
5263
e04c18a2 5264 print "<td onclick='view($id)' class='hlContent$hlc_suffix' valign='middle' id='HLC-$id'>";
df456bb0 5265
f0971fc1
AD
5266 print "<a id=\"RTITLE-$id\"
5267 href=\"" . htmlspecialchars($line["link"]) . "\"
6e35a862 5268 onclick=\"return false\">" .
df456bb0
AD
5269 $line["title"];
5270
5271 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
5272 if ($content_preview) {
5273 print "<span class=\"contentPreview\"> - $content_preview</span>";
3de0261a 5274 }
3de0261a 5275 }
df456bb0
AD
5276
5277 print "</a>";
5278
e2549229
AD
5279 print $labels_str;
5280
df456bb0
AD
5281# <a href=\"javascript:viewfeed($feed_id, '', false)\">".
5282# $line["feed_title"]."</a>
5283
d00f22ac 5284 if (!get_pref($link, 'VFEED_GROUP_BY_FEED')) {
c3fddd05 5285 if (@$line["feed_title"]) {
6cfea5c7
AD
5286 print "<span class=\"hlFeed\">
5287 (<a href=\"javascript:viewfeed($feed_id, '', false)\">".
5288 $line["feed_title"]."</a>)
5289 </span>";
5290 }
df456bb0 5291 }
6e35a862
AD
5292
5293// print "<img id='HLL-$id' class='hlLoading'
5294// src='images/indicator_tiny.gif' style='display : none'>";
5295
df456bb0 5296 print "</td>";
bd51294a 5297
df456bb0 5298# }
3de0261a 5299
e04c18a2 5300 print "<td class=\"hlUpdated\" onclick='view($id)'><nobr>$updated_fmt&nbsp;</nobr></td>";
546499a9
AD
5301
5302 print "<td class='hlMarkedPic'>$score_pic</td>";
bd51294a 5303
c3fddd05 5304 if (@$line["feed_title"] && !get_pref($link, 'VFEED_GROUP_BY_FEED')) {
d7e83df7 5305 print "<td onclick=\"viewfeed($feed_id)\" class=\"hlFeedIcon\">$feed_icon_img</td>";
bd51294a
AD
5306 }
5307
3de0261a
AD
5308 print "</tr>";
5309
5310 } else {
6cfea5c7 5311
bb031f91 5312 if (get_pref($link, 'VFEED_GROUP_BY_FEED') && $line["feed_title"]) {
081e527d
AD
5313 if ($feed_id != $vgroup_last_feed) {
5314
5315 $cur_feed_title = $line["feed_title"];
5316 $vgroup_last_feed = $feed_id;
5317
962d8ba4
AD
5318 $cur_feed_title = htmlspecialchars($cur_feed_title);
5319
af163b85 5320 $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>".__('mark as read')."</a>)";
081e527d 5321
7defa089 5322 $has_feed_icon = feed_has_icon($feed_id);
dc803347
AD
5323
5324 if ($has_feed_icon) {
5325 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
5326 } else {
5327 //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">";
5328 }
5329
6cfea5c7 5330 print "<div class='cdmFeedTitle'>".
dc803347 5331 "<div style=\"float : right\">$feed_icon_img</div>".
6cfea5c7 5332 "<a href=\"javascript:viewfeed($feed_id, '', false)\">".
081e527d 5333 $line["feed_title"]."</a> $vf_catchup_link</div>";
6cfea5c7
AD
5334 }
5335 }
5336
3de0261a
AD
5337 if ($is_unread) {
5338 $add_class = "Unread";
5339 } else {
5340 $add_class = "";
5341 }
0cacc891
AD
5342
5343 $expand_cdm = get_pref($link, 'CDM_EXPANDED');
0cacc891 5344
314fcd2b
AD
5345 $mouseover_attrs = "onmouseover='postMouseIn($id)'
5346 onmouseout='postMouseOut($id)'";
5347
dad14b51 5348 print "<div class=\"$class\"
3cd4239a 5349 id=\"RROW-$id\"
314fcd2b 5350 $mouseover_attrs'>";
3de0261a
AD
5351
5352 print "<div class=\"cdmHeader\">";
5353
dad14b51
AD
5354 print "<div style='float : right'>";
5355 print "<span class='updated'>$updated_fmt</span>";
5356 print "$marked_pic";
5357 print "$published_pic";
5358 print "$score_pic";
965fb2af 5359
dad14b51
AD
5360 if (!get_pref($link, "VFEED_GROUP_BY_FEED") && $line["feed_title"]) {
5361 print "<span style=\"cursor : pointer\"
5362 title=\"".htmlspecialchars($line["feed_title"])."\"
5363 onclick=\"viewfeed($feed_id)\">$feed_icon_img</span>";
5364 }
5365 print "</div>";
5366
5367 print "<input type=\"checkbox\" onclick=\"toggleSelectRowById(this,
5368 'RROW-$id')\" class=\"feedCheckBox\" id=\"RCHK-$id\"/>";
5daa24f2 5369
dad14b51
AD
5370 print "<span id=\"RTITLE-$id\"
5371 onclick=\"return cdmExpandArticle($id)\"
5372 class=\"titleWrap$hlc_suffix\">
5373 <a class=\"title\"
5daa24f2 5374 target=\"_blank\" href=\"".$line["link"]."\">".$line["title"]."</a>
dad14b51 5375 </span>";
0cacc891 5376
39f3c580 5377 print $labels_str;
0cacc891 5378
02ef7e02 5379 if (!$expand_cdm)
dad14b51
AD
5380 $content_hidden = "style=\"display : none\"";
5381 else
5382 $excerpt_hidden = "style=\"display : none\"";
3de0261a 5383
dad14b51
AD
5384 print "<span $excerpt_hidden
5385 onclick=\"return cdmExpandArticle($id)\"
5386 id=\"CEXC-$id\" class=\"cdmExcerpt\"> - $content_preview</span>";
3de0261a 5387
dad14b51 5388 print "</div>";
c9efd838 5389
bfa0e792
AD
5390 print "<div class=\"cdmContent\" $content_hidden
5391 title=\"".__("Click to select article")."\"
5392 onclick=\"toggleSelected($id);\"
dad14b51 5393 id=\"CICD-$id\">";
c9efd838 5394
dad14b51 5395 print "<div class=\"cdmContentInner\">";
a04c8e8d 5396
dad14b51 5397 if ($line["orig_feed_id"]) {
494a64ea 5398
dad14b51
AD
5399 $tmp_result = db_query($link, "SELECT * FROM ttrss_archived_feeds
5400 WHERE id = ".$line["orig_feed_id"]);
494a64ea
AD
5401
5402 if (db_num_rows($tmp_result) != 0) {
dad14b51
AD
5403
5404 print "<div clear='both'>";
5405 print __("Originally from:");
5406
5407 print "&nbsp;";
5408
5409 $tmp_line = db_fetch_assoc($tmp_result);
5410
5411 print "<a target='_blank'
5412 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
5413 $tmp_line['title'] . "</a>";
5414
5415 print "&nbsp;";
5416
5417 print "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
5418 print "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_set.gif'></a>";
5419
5420 print "</div>";
5421 }
494a64ea 5422 }
494a64ea 5423
9d3c031d
AD
5424 // FIXME: make this less of a hack
5425
5426 $feed_site_url = false;
5427
5428 if ($line["feed_id"]) {
5429 $tmp_result = db_query($link, "SELECT site_url FROM ttrss_feeds
5430 WHERE id = " . $line["feed_id"]);
5431
5432 if (db_num_rows($tmp_result) == 1) {
5433 $feed_site_url = db_fetch_result($tmp_result, 0, "site_url");
5434 }
5435 }
5436
8cc3c778
AD
5437 $article_content = sanitize_rss($link, $line["content_preview"],
5438 false, false, $feed_site_url);
621ffb00 5439
c7e51de1
AD
5440 print "<div id=\"POSTNOTE-$id\">";
5441 if ($line['note']) {
5442 print format_article_note($id, $line['note']);
5443 }
5444 print "</div>";
5445
dad14b51 5446 print $article_content;
a3eeb471 5447
dad14b51
AD
5448 $tmp_result = db_query($link, "SELECT always_display_enclosures FROM
5449 ttrss_feeds WHERE id = ".
a16a62c0
AD
5450 (($line['feed_id'] == null) ? $line['orig_feed_id'] :
5451 $line['feed_id'])." AND owner_uid = ".$_SESSION["uid"]);
54e61a68 5452
dad14b51
AD
5453 $always_display_enclosures = sql_bool_to_bool(db_fetch_result($tmp_result,
5454 0, "always_display_enclosures"));
a04c8e8d 5455
dad14b51
AD
5456 print_article_enclosures($link, $id, $always_display_enclosures,
5457 $article_content);
a04c8e8d 5458
0cacc891 5459 print "</div>";
3de0261a 5460
dad14b51 5461 print "<div class=\"cdmFooter\">";
3de0261a 5462
dad14b51
AD
5463 $tags_str = format_tags_string(get_article_tags($link, $id), $id);
5464
5465 print "<img src='".theme_image($link,
5466 'images/tag.png')."' alt='Tags' title='Tags'>
5467 <span id=\"ATSTR-$id\">$tags_str</span>
5468 <a title=\"".__('Edit tags for this article')."\"
5469 href=\"javascript:editArticleTags($id, $feed_id, true)\">(+)</a>";
3de0261a 5470
dad14b51 5471 print "<div style=\"float : right\">";
3de0261a 5472
dad14b51 5473 print "<img src=\"images/art-zoom.png\"
eedfb635
AD
5474 onclick=\"zoomToArticle($id)\"
5475 style=\"cursor : pointer\"
5476 alt='Zoom'
dad14b51
AD
5477 title='".__('Show article summary in new window')."'>";
5478
5479 if (DIGEST_ENABLE) {
5480 print "<img src=\"".theme_image($link, 'images/art-email.png')."\"
5481 style=\"cursor : pointer\"
5482 onclick=\"emailArticle($id)\"
5483 alt='Zoom' title='".__('Forward by email')."'>";
5484 }
c7e51de1
AD
5485
5486 $note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
5487
dad14b51 5488 print "<img src=\"images/art-pub-note.png\"
c7e51de1
AD
5489 style=\"cursor : pointer\" style=\"cursor : pointer\"
5490 onclick=\"publishWithNote($id, '$note_escaped')\"
5491 alt='PubNote' title='".__('Publish article with a note')."'>";
5492
dad14b51
AD
5493 print "<img src=\"images/digest_checkbox.png\"
5494 style=\"cursor : pointer\" style=\"cursor : pointer\"
5495 onclick=\"cdmDismissArticle($id)\"
5496 alt='Dismiss' title='".__('Dismiss article')."'>";
3de0261a 5497
dad14b51
AD
5498 print "</div>";
5499 print "</div>";
3de0261a 5500
dad14b51 5501 print "</div>";
3de0261a 5502
e2ccbfab 5503 print "</div>";
3de0261a 5504
dad14b51 5505 }
3de0261a
AD
5506
5507 ++$lnum;
dad14b51 5508 }
3de0261a 5509
ac541432 5510 if (!get_pref($link, 'COMBINED_DISPLAY_MODE') && !$offset) {
3de0261a
AD
5511 print "</table>";
5512 }
5513
3de0261a 5514 } else {
93c841c4
AD
5515 $message = "";
5516
5517 switch ($view_mode) {
5518 case "unread":
5519 $message = __("No unread articles found to display.");
5520 break;
8b09eac8
AD
5521 case "updated":
5522 $message = __("No updated articles found to display.");
5523 break;
93c841c4
AD
5524 case "marked":
5525 $message = __("No starred articles found to display.");
5526 break;
5527 default:
215af892
AD
5528 if ($feed < -10) {
5529 $message = __("No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter.");
5530 } else {
5531 $message = __("No articles found to display.");
5532 }
93c841c4
AD
5533 }
5534
5535 if (!$offset) print "<div class='whiteBox'>$message</div>";
3de0261a
AD
5536 }
5537
ac541432
AD
5538 if (!$offset) {
5539 print "</div>";
5540 print "</div>";
5541 }
3de0261a 5542
081e527d 5543 return array($topmost_article_ids, $headlines_count, $feed, $disable_cache, $vgroup_last_feed);
3de0261a 5544 }
0979b696
AD
5545
5546// from here: http://www.roscripts.com/Create_tag_cloud-71.html
5547
5548 function printTagCloud($link) {
35a03bdd 5549
0979b696
AD
5550 $query = "SELECT tag_name, COUNT(post_int_id) AS count
5551 FROM ttrss_tags WHERE owner_uid = ".$_SESSION["uid"]."
b31af972 5552 GROUP BY tag_name ORDER BY count DESC LIMIT 50";
0979b696
AD
5553
5554 $result = db_query($link, $query);
5555
5556 $tags = array();
5557
5558 while ($line = db_fetch_assoc($result)) {
5559 $tags[$line["tag_name"]] = $line["count"];
5560 }
5561
5562 ksort($tags);
5563
5564 $max_size = 32; // max font size in pixels
4548a580 5565 $min_size = 11; // min font size in pixels
0979b696
AD
5566
5567 // largest and smallest array values
5568 $max_qty = max(array_values($tags));
5569 $min_qty = min(array_values($tags));
5570
5571 // find the range of values
5572 $spread = $max_qty - $min_qty;
5573 if ($spread == 0) { // we don't want to divide by zero
5574 $spread = 1;
5575 }
5576
5577 // set the font-size increment
5578 $step = ($max_size - $min_size) / ($spread);
5579
5580 // loop through the tag array
5581 foreach ($tags as $key => $value) {
5582 // calculate font-size
5583 // find the $value in excess of $min_qty
5584 // multiply by the font-size increment ($size)
5585 // and add the $min_size set above
5586 $size = round($min_size + (($value - $min_qty) * $step));
546ffab4
AD
5587
5588 $key_escaped = str_replace("'", "\\'", $key);
5589
5590 echo "<a href=\"javascript:viewfeed('$key_escaped') \" style=\"font-size: " .
0979b696
AD
5591 $size . "px\" title=\"$value articles tagged with " .
5592 $key . '">' . $key . '</a> ';
5593 }
5594 }
46921916
AD
5595
5596 function print_checkpoint($n, $s) {
5597 $ts = getmicrotime();
5598 echo sprintf("<!-- CP[$n] %.4f seconds -->", $ts - $s);
5599 return $ts;
5600 }
14b6c54b
AD
5601
5602 function sanitize_tag($tag) {
5603 $tag = trim($tag);
5604
5605 $tag = mb_strtolower($tag, 'utf-8');
5606
0c3d1c68
AD
5607 $tag = preg_replace('/[\"\+\>\<]/', "", $tag);
5608
5609// $tag = str_replace('"', "", $tag);
5610// $tag = str_replace("+", " ", $tag);
14b6c54b
AD
5611 $tag = str_replace("technorati tag: ", "", $tag);
5612
5613 return $tag;
5614 }
e4f4b46f 5615
8801fb01 5616 function get_self_url_prefix() {
f56e3080 5617
e2749781 5618 $url_path = "";
8801fb01 5619
e2749781
AD
5620 if ($_SERVER['HTTPS'] != "on") {
5621 $url_path = "http://";
5622 } else {
5623 $url_path = "https://";
5624 }
f56e3080 5625
e2749781 5626 $url_path .= $_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']);
f56e3080
AD
5627
5628 return $url_path;
e0dc56d4 5629
8801fb01
AD
5630 }
5631 function opml_publish_url($link){
e0dc56d4 5632
8801fb01 5633 $url_path = get_self_url_prefix();
e0dc56d4 5634 $url_path .= "/opml.php?op=publish&key=" .
2e7f046f 5635 get_feed_access_key($link, 'OPML:Publish', false, $_SESSION["uid"]);
e0dc56d4
MK
5636
5637 return $url_path;
5638 }
f56e3080 5639
45004d43
AD
5640 /**
5641 * Purge a feed contents, marked articles excepted.
5642 *
5643 * @param mixed $link The database connection.
5644 * @param integer $id The id of the feed to purge.
5645 * @return void
5646 */
d1f0c584 5647 function clear_feed_articles($link, $id) {
e04c18a2
AD
5648
5649 if ($id != 0) {
5650 $result = db_query($link, "DELETE FROM ttrss_user_entries
a8ae1b9a 5651 WHERE feed_id = '$id' AND marked = false AND owner_uid = " . $_SESSION["uid"]);
e04c18a2
AD
5652 } else {
5653 $result = db_query($link, "DELETE FROM ttrss_user_entries
5654 WHERE feed_id IS NULL AND marked = false AND owner_uid = " . $_SESSION["uid"]);
5655 }
d1f0c584
AD
5656
5657 $result = db_query($link, "DELETE FROM ttrss_entries WHERE
5658 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
ced46404
AD
5659
5660 ccache_update($link, $id, $_SESSION['uid']);
45004d43
AD
5661 } // function clear_feed_articles
5662
5663 /**
5664 * Compute the Mozilla Firefox feed adding URL from server HOST and REQUEST_URI.
5665 *
5666 * @return string The Mozilla Firefox feed adding URL.
5667 */
5668 function add_feed_url() {
d70c5ae4 5669 $url_path = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
755a43ee
AD
5670 $url_path .= "?op=pref-feeds&quiet=1&subop=add&feed_url=%s";
5671 return $url_path;
45004d43
AD
5672 } // function add_feed_url
5673
5674 /**
5675 * Encrypt a password in SHA1.
5676 *
5677 * @param string $pass The password to encrypt.
5678 * @param string $login A optionnal login.
5679 * @return string The encrypted password.
5680 */
1a9f4d3c
AD
5681 function encrypt_password($pass, $login = '') {
5682 if ($login) {
5683 return "SHA1X:" . sha1("$login:$pass");
5684 } else {
5685 return "SHA1:" . sha1($pass);
5686 }
45004d43
AD
5687 } // function encrypt_password
5688
5689 /**
5690 * Update a feed batch.
5691 * Used by daemons to update n feeds by run.
5692 * Only update feed needing a update, and not being processed
5693 * by another process.
5694 *
5695 * @param mixed $link Database link
5696 * @param integer $limit Maximum number of feeds in update batch. Default to DAEMON_FEED_LIMIT.
5697 * @param boolean $from_http Set to true if you call this function from http to disable cli specific code.
5698 * @param boolean $debug Set to false to disable debug output. Default to true.
5699 * @return void
5700 */
5701 function update_daemon_common($link, $limit = DAEMON_FEED_LIMIT, $from_http = false, $debug = true) {
5702 // Process all other feeds using last_updated and interval parameters
5703
5704 // Test if the user has loggued in recently. If not, it does not update its feeds.
5705 if (DAEMON_UPDATE_LOGIN_LIMIT > 0) {
5706 if (DB_TYPE == "pgsql") {
5707 $login_thresh_qpart = "AND ttrss_users.last_login >= NOW() - INTERVAL '".DAEMON_UPDATE_LOGIN_LIMIT." days'";
5708 } else {
5709 $login_thresh_qpart = "AND ttrss_users.last_login >= DATE_SUB(NOW(), INTERVAL ".DAEMON_UPDATE_LOGIN_LIMIT." DAY)";
5710 }
5711 } else {
5712 $login_thresh_qpart = "";
5713 }
5714
5715 // Test if the feed need a update (update interval exceded).
5716 if (DB_TYPE == "pgsql") {
5717 $update_limit_qpart = "AND ((
5718 ttrss_feeds.update_interval = 0
5719 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_user_prefs.value || ' minutes') AS INTERVAL)
5720 ) OR (
5721 ttrss_feeds.update_interval > 0
5722 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_feeds.update_interval || ' minutes') AS INTERVAL)
da4caf5d 5723 ) OR ttrss_feeds.last_updated IS NULL)";
45004d43
AD
5724 } else {
5725 $update_limit_qpart = "AND ((
5726 ttrss_feeds.update_interval = 0
5727 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL CONVERT(ttrss_user_prefs.value, SIGNED INTEGER) MINUTE)
5728 ) OR (
5729 ttrss_feeds.update_interval > 0
5730 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL ttrss_feeds.update_interval MINUTE)
da4caf5d 5731 ) OR ttrss_feeds.last_updated IS NULL)";
45004d43
AD
5732 }
5733
5734 // Test if feed is currently being updated by another process.
5735 if (DB_TYPE == "pgsql") {
5736 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '120 seconds')";
5737 } else {
5738 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 120 SECOND))";
5739 }
5740
5741 // Test if there is a limit to number of updated feeds
5742 $query_limit = "";
5743 if($limit) $query_limit = sprintf("LIMIT %d", $limit);
5744
51b8c957
AD
5745 $random_qpart = sql_random_function();
5746
45004d43
AD
5747 // We search for feed needing update.
5748 $result = db_query($link, "SELECT ttrss_feeds.feed_url,ttrss_feeds.id, ttrss_feeds.owner_uid,
fc2b26a6 5749 ".SUBSTRING_FOR_DATE."(ttrss_feeds.last_updated,1,19) AS last_updated,
45004d43
AD
5750 ttrss_feeds.update_interval
5751 FROM
5752 ttrss_feeds, ttrss_users, ttrss_user_prefs
5753 WHERE
5754 ttrss_feeds.owner_uid = ttrss_users.id
5755 AND ttrss_users.id = ttrss_user_prefs.owner_uid
5756 AND ttrss_user_prefs.pref_name = 'DEFAULT_UPDATE_INTERVAL'
5757 $login_thresh_qpart $update_limit_qpart
51b8c957
AD
5758 $updstart_thresh_qpart
5759 ORDER BY $random_qpart $query_limit");
45004d43
AD
5760
5761 $user_prefs_cache = array();
5762
5763 if($debug) _debug(sprintf("Scheduled %d feeds to update...\n", db_num_rows($result)));
5764
5765 // Here is a little cache magic in order to minimize risk of double feed updates.
5766 $feeds_to_update = array();
5767 while ($line = db_fetch_assoc($result)) {
5768 $feeds_to_update[$line['id']] = $line;
5769 }
5770
5771 // We update the feed last update started date before anything else.
5772 // There is no lag due to feed contents downloads
5773 // It prevent an other process to update the same feed.
5774 $feed_ids = array_keys($feeds_to_update);
5775 if($feed_ids) {
5776 db_query($link, sprintf("UPDATE ttrss_feeds SET last_update_started = NOW()
5777 WHERE id IN (%s)", implode(',', $feed_ids)));
5778 }
5779
5780 // For each feed, we call the feed update function.
5781 while ($line = array_pop($feeds_to_update)) {
5782
5783 if($debug) _debug("Feed: " . $line["feed_url"] . ", " . $line["last_updated"]);
5784
cce9822a
AD
5785 update_rss_feed($link, $line["id"], true);
5786
45004d43
AD
5787 sleep(1); // prevent flood (FIXME make this an option?)
5788 }
5789
0e0dd486
AD
5790 // Send feed digests by email if needed.
5791 if (DAEMON_SENDS_DIGESTS) send_headlines_digests($link);
5792
5793 purge_orphans($link);
45004d43
AD
5794
5795 } // function update_daemon_common
1a9f4d3c 5796
621ffb00
AD
5797 function sanitize_article_content($text) {
5798 # we don't support CDATA sections in articles, they break our own escaping
5799 $text = preg_replace("/\[\[CDATA/", "", $text);
5800 $text = preg_replace("/\]\]\>/", "", $text);
5801 return $text;
5802 }
fee840fb
AD
5803
5804 function load_filters($link, $feed, $owner_uid, $action_id = false) {
5805 $filters = array();
5806
b8ffa322 5807 global $memcache;
fee840fb 5808
1f011328
AD
5809 $obj_id = md5("FILTER:$feed:$owner_uid:$action_id");
5810
b8ffa322
AD
5811 if ($memcache && $obj = $memcache->get($obj_id)) {
5812
b8ffa322
AD
5813 return $obj;
5814
5815 } else {
fee840fb 5816
b8ffa322
AD
5817 if ($action_id) $ftype_query_part = "action_id = '$action_id' AND";
5818
5819 $result = db_query($link, "SELECT reg_exp,
5820 ttrss_filter_types.name AS name,
5821 ttrss_filter_actions.name AS action,
5822 inverse,
5823 action_param,
5824 filter_param
5825 FROM ttrss_filters,ttrss_filter_types,ttrss_filter_actions WHERE
5826 enabled = true AND
5827 $ftype_query_part
5828 owner_uid = $owner_uid AND
5829 ttrss_filter_types.id = filter_type AND
5830 ttrss_filter_actions.id = action_id AND
5831 (feed_id IS NULL OR feed_id = '$feed') ORDER BY reg_exp");
5832
5833 while ($line = db_fetch_assoc($result)) {
5834 if (!$filters[$line["name"]]) $filters[$line["name"]] = array();
5835 $filter["reg_exp"] = $line["reg_exp"];
5836 $filter["action"] = $line["action"];
5837 $filter["action_param"] = $line["action_param"];
5838 $filter["filter_param"] = $line["filter_param"];
5839 $filter["inverse"] = sql_bool_to_bool($line["inverse"]);
5840
5841 array_push($filters[$line["name"]], $filter);
5842 }
5843
5844 if ($memcache) $memcache->add($obj_id, $filters, 0, 3600*8);
5845
5846 return $filters;
5847 }
fee840fb 5848 }
1e36af0c
AD
5849
5850 function get_score_pic($score) {
1cce3aca 5851 if ($score > 100) {
1e36af0c 5852 return "score_high.png";
1cce3aca 5853 } else if ($score > 0) {
883fee8d 5854 return "score_half_high.png";
1cce3aca 5855 } else if ($score < -100) {
883fee8d 5856 return "score_low.png";
1cce3aca 5857 } else if ($score < 0) {
883fee8d 5858 return "score_half_low.png";
1e36af0c 5859 } else {
883fee8d 5860 return "score_neutral.png";
1e36af0c
AD
5861 }
5862 }
ec92c9d1 5863
0745839a 5864 function rounded_table_start($classname, $header = "&nbsp;") {
ec92c9d1 5865 print "<table width='100%' class='$classname' cellspacing='0' cellpadding='0'>";
74d5c8fa 5866 print "<tr><td class='c1'>&nbsp;</td><td class='top'>$header</td><td class='c2'>&nbsp;</td></tr>";
ec92c9d1
AD
5867 print "<tr><td class='left'>&nbsp;</td><td class='content'>";
5868 }
5869
0745839a 5870 function rounded_table_end($footer = "&nbsp;") {
ec92c9d1 5871 print "</td><td class='right'>&nbsp;</td></tr>";
74d5c8fa 5872 print "<tr><td class='c4'>&nbsp;</td><td class='bottom'>$footer</td><td class='c3'>&nbsp;</td></tr>";
ec92c9d1
AD
5873 print "</table>";
5874 }
5875
7defa089
AD
5876 function feed_has_icon($id) {
5877 return is_file(ICONS_DIR . "/$id.ico") && filesize(ICONS_DIR . "/$id.ico") > 0;
5878 }
f29ba148
AD
5879
5880 function init_connection($link) {
5881 if (DB_TYPE == "pgsql") {
6fc720fd 5882 pg_query($link, "set client_encoding = 'UTF-8'");
f29ba148 5883 pg_set_client_encoding("UNICODE");
045d0ab8 5884 pg_query($link, "set datestyle = 'ISO, european'");
324944f3 5885 pg_query($link, "set TIME ZONE 0");
f29ba148 5886 } else {
324944f3
AD
5887 db_query($link, "SET time_zone = '+0:0'");
5888
f29ba148
AD
5889 if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
5890 db_query($link, "SET NAMES " . MYSQL_CHARSET);
5891 // db_query($link, "SET CHARACTER SET " . MYSQL_CHARSET);
5892 }
5893 }
5894 }
5e96ca9d
AD
5895
5896 function update_feedbrowser_cache($link) {
5897
931dcbc1 5898 $result = db_query($link, "SELECT feed_url,title, COUNT(id) AS subscribers
5e96ca9d
AD
5899 FROM ttrss_feeds WHERE (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf
5900 WHERE tf.feed_url = ttrss_feeds.feed_url
5901 AND (private IS true OR feed_url LIKE '%:%@%/%'))
d460f7aa 5902 GROUP BY feed_url, title ORDER BY subscribers DESC LIMIT 1000");
5e96ca9d
AD
5903
5904 db_query($link, "BEGIN");
5905
5906 db_query($link, "DELETE FROM ttrss_feedbrowser_cache");
5907
5908 $count = 0;
5909
5910 while ($line = db_fetch_assoc($result)) {
5911 $subscribers = db_escape_string($line["subscribers"]);
5912 $feed_url = db_escape_string($line["feed_url"]);
931dcbc1
AD
5913 $title = db_escape_string($line["title"]);
5914
5915 $tmp_result = db_query($link, "SELECT subscribers FROM
5916 ttrss_feedbrowser_cache WHERE feed_url = '$feed_url'");
5917
5918 if (db_num_rows($tmp_result) == 0) {
5919
5920 db_query($link, "INSERT INTO ttrss_feedbrowser_cache
5921 (feed_url, title, subscribers) VALUES ('$feed_url',
5922 '$title', '$subscribers')");
5923
5924 ++$count;
5925
5926 }
5e96ca9d 5927
5e96ca9d
AD
5928 }
5929
5930 db_query($link, "COMMIT");
5931
5932 return $count;
5933
5934 }
2627f2d0 5935
8a4c759e 5936 function ccache_zero($link, $feed_id, $owner_uid) {
2627f2d0
AD
5937 db_query($link, "UPDATE ttrss_counters_cache SET
5938 value = 0, updated = NOW() WHERE
5939 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
8a4c759e 5940 }
2627f2d0 5941
ad0056a8
AD
5942 function ccache_zero_all($link, $owner_uid) {
5943 db_query($link, "UPDATE ttrss_counters_cache SET
5944 value = 0 WHERE owner_uid = '$owner_uid'");
5945
5946 db_query($link, "UPDATE ttrss_cat_counters_cache SET
5947 value = 0 WHERE owner_uid = '$owner_uid'");
5948 }
5949
c7e51de1
AD
5950 function ccache_remove($link, $feed_id, $owner_uid, $is_cat = false) {
5951
5952 if (!$is_cat) {
5953 $table = "ttrss_counters_cache";
5954 } else {
5955 $table = "ttrss_cat_counters_cache";
5956 }
5957
5958 db_query($link, "DELETE FROM $table WHERE
5959 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
5960
5961 }
5962
5f4f7adf
AD
5963 function ccache_update_all($link, $owner_uid) {
5964
5965 if (get_pref($link, 'ENABLE_FEED_CATS', $owner_uid)) {
5966
5967 $result = db_query($link, "SELECT feed_id FROM ttrss_cat_counters_cache
5968 WHERE feed_id > 0 AND owner_uid = '$owner_uid'");
5969
5970 while ($line = db_fetch_assoc($result)) {
5971 ccache_update($link, $line["feed_id"], $owner_uid, true);
5972 }
5973
c5ffeb61
AD
5974 /* We have to manually include category 0 */
5975
5976 ccache_update($link, 0, $owner_uid, true);
5977
8a4c759e 5978 } else {
5f4f7adf
AD
5979 $result = db_query($link, "SELECT feed_id FROM ttrss_counters_cache
5980 WHERE feed_id > 0 AND owner_uid = '$owner_uid'");
8a4c759e 5981
5f4f7adf
AD
5982 while ($line = db_fetch_assoc($result)) {
5983 print ccache_update($link, $line["feed_id"], $owner_uid);
5984
5985 }
5986
5987 }
5988 }
2627f2d0 5989
6b49a3dd
AD
5990 function ccache_find($link, $feed_id, $owner_uid, $is_cat = false,
5991 $no_update = false) {
8a4c759e 5992
5c432ba4
AD
5993 if (!is_numeric($feed_id)) return;
5994
8a4c759e
AD
5995 if (!$is_cat) {
5996 $table = "ttrss_counters_cache";
32d2181b
AD
5997 if ($feed_id > 0) {
5998 $tmp_result = db_query($link, "SELECT owner_uid FROM ttrss_feeds
5999 WHERE id = '$feed_id'");
6000 $owner_uid = db_fetch_result($tmp_result, 0, "owner_uid");
6001 }
8a4c759e
AD
6002 } else {
6003 $table = "ttrss_cat_counters_cache";
6004 }
6005
6006 if (DB_TYPE == "pgsql") {
6007 $date_qpart = "updated > NOW() - INTERVAL '15 minutes'";
6008 } else if (DB_TYPE == "mysql") {
6009 $date_qpart = "updated > DATE_SUB(NOW(), INTERVAL 15 MINUTE)";
6010 }
6011
6012 $result = db_query($link, "SELECT value FROM $table
6013 WHERE owner_uid = '$owner_uid' AND feed_id = '$feed_id'
37fb651d 6014 LIMIT 1");
2627f2d0
AD
6015
6016 if (db_num_rows($result) == 1) {
6017 return db_fetch_result($result, 0, "value");
6018 } else {
6b49a3dd
AD
6019 if ($no_update) {
6020 return -1;
6021 } else {
6022 return ccache_update($link, $feed_id, $owner_uid, $is_cat);
6023 }
2627f2d0
AD
6024 }
6025
6026 }
6027
6c2a9b9e 6028 function ccache_update($link, $feed_id, $owner_uid, $is_cat = false,
6b49a3dd
AD
6029 $update_pcat = true) {
6030
5c432ba4
AD
6031 if (!is_numeric($feed_id)) return;
6032
32d2181b 6033 if (!$is_cat && $feed_id > 0) {
2e93b64c
AD
6034 $tmp_result = db_query($link, "SELECT owner_uid FROM ttrss_feeds
6035 WHERE id = '$feed_id'");
6036 $owner_uid = db_fetch_result($tmp_result, 0, "owner_uid");
6037 }
6038
43ead405
AD
6039 $prev_unread = ccache_find($link, $feed_id, $owner_uid, $is_cat, true);
6040
6041 /* When updating a label, all we need to do is recalculate feed counters
6042 * because labels are not cached */
c98e43db
AD
6043
6044 if ($feed_id < 0) {
43ead405
AD
6045 ccache_update_all($link, $owner_uid);
6046 return;
c98e43db
AD
6047 }
6048
8a4c759e
AD
6049 if (!$is_cat) {
6050 $table = "ttrss_counters_cache";
6051 } else {
6052 $table = "ttrss_cat_counters_cache";
6053 }
6054
b6d486a3 6055 if ($is_cat && $feed_id >= 0) {
37fb651d
AD
6056 if ($feed_id != 0) {
6057 $cat_qpart = "cat_id = '$feed_id'";
6058 } else {
6059 $cat_qpart = "cat_id IS NULL";
6060 }
6061
6b49a3dd
AD
6062 /* Recalculate counters for child feeds */
6063
6064 $result = db_query($link, "SELECT id FROM ttrss_feeds
6065 WHERE owner_uid = '$owner_uid' AND $cat_qpart");
6066
6067 while ($line = db_fetch_assoc($result)) {
6068 ccache_update($link, $line["id"], $owner_uid, false, false);
6069 }
6070
37fb651d
AD
6071 $result = db_query($link, "SELECT SUM(value) AS sv
6072 FROM ttrss_counters_cache, ttrss_feeds
6073 WHERE id = feed_id AND $cat_qpart AND
6074 ttrss_feeds.owner_uid = '$owner_uid'");
6075
51e196de 6076 $unread = (int) db_fetch_result($result, 0, "sv");
37fb651d 6077
f55b0b12
AD
6078 } else {
6079 $unread = (int) getFeedArticles($link, $feed_id, $is_cat, true, $owner_uid);
37fb651d 6080 }
2627f2d0 6081
c7e51de1
AD
6082 db_query($link, "BEGIN");
6083
8a4c759e 6084 $result = db_query($link, "SELECT feed_id FROM $table
2627f2d0
AD
6085 WHERE owner_uid = '$owner_uid' AND feed_id = '$feed_id' LIMIT 1");
6086
6087 if (db_num_rows($result) == 1) {
8a4c759e 6088 db_query($link, "UPDATE $table SET
2627f2d0
AD
6089 value = '$unread', updated = NOW() WHERE
6090 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
6091
6092 } else {
8a4c759e 6093 db_query($link, "INSERT INTO $table
2627f2d0
AD
6094 (feed_id, value, owner_uid, updated)
6095 VALUES
6096 ($feed_id, $unread, $owner_uid, NOW())");
2627f2d0
AD
6097 }
6098
c7e51de1
AD
6099 db_query($link, "COMMIT");
6100
6b49a3dd 6101 if ($feed_id > 0 && $prev_unread != $unread) {
8a4c759e 6102
37fb651d 6103 if (!$is_cat) {
8a4c759e 6104
6b49a3dd 6105 /* Update parent category */
8a4c759e 6106
6b49a3dd 6107 if ($update_pcat) {
37fb651d 6108
6b49a3dd
AD
6109 $result = db_query($link, "SELECT cat_id FROM ttrss_feeds
6110 WHERE owner_uid = '$owner_uid' AND id = '$feed_id'");
8a4c759e 6111
6b49a3dd 6112 $cat_id = (int) db_fetch_result($result, 0, "cat_id");
37fb651d 6113
6b49a3dd 6114 ccache_update($link, $cat_id, $owner_uid, true);
6c2a9b9e 6115
6c2a9b9e 6116 }
8a4c759e 6117 }
5f4f7adf
AD
6118 } else if ($feed_id < 0) {
6119 ccache_update_all($link, $owner_uid);
8a4c759e
AD
6120 }
6121
6122 return $unread;
2627f2d0 6123 }
ceb30ba4
AD
6124
6125 function label_find_id($link, $label, $owner_uid) {
6126 $result = db_query($link,
6127 "SELECT id FROM ttrss_labels2 WHERE caption = '$label'
6128 AND owner_uid = '$owner_uid' LIMIT 1");
6129
6130 if (db_num_rows($result) == 1) {
6131 return db_fetch_result($result, 0, "id");
6132 } else {
6133 return 0;
6134 }
6135 }
6136
814bff66 6137 function get_article_labels($link, $id) {
d721a547
AD
6138 global $memcache;
6139
d721a547
AD
6140 $obj_id = md5("LABELS:$id:" . $_SESSION["uid"]);
6141
814bff66
AD
6142 $rv = array();
6143
d721a547
AD
6144 if ($memcache && $obj = $memcache->get($obj_id)) {
6145 return $obj;
6146 } else {
905ff52a
AD
6147
6148 $result = db_query($link, "SELECT label_cache FROM
6149 ttrss_user_entries WHERE ref_id = '$id' AND owner_uid = " .
6150 $_SESSION["uid"]);
6151
6152 $label_cache = db_fetch_result($result, 0, "label_cache");
6153
6154 if ($label_cache) {
6155
6156 $label_cache = json_decode($label_cache, true);
6157
6158 if ($label_cache["no-labels"] == 1)
6159 return $rv;
6160 else
6161 return $label_cache;
6162 }
6163
6164 $result = db_query($link,
6165 "SELECT DISTINCT label_id,caption,fg_color,bg_color
6166 FROM ttrss_labels2, ttrss_user_labels2
6167 WHERE id = label_id
6168 AND article_id = '$id'
6169 AND owner_uid = ".$_SESSION["uid"] . "
6170 ORDER BY caption");
6171
d721a547
AD
6172 while ($line = db_fetch_assoc($result)) {
6173 $rk = array($line["label_id"], $line["caption"], $line["fg_color"],
6174 $line["bg_color"]);
6175 array_push($rv, $rk);
6176 }
6177 if ($memcache) $memcache->add($obj_id, $rv, 0, 3600);
905ff52a
AD
6178
6179 if (count($rv) > 0)
6180 label_update_cache($link, $id, $rv);
6181 else
6182 label_update_cache($link, $id, array("no-labels" => 1));
814bff66
AD
6183 }
6184
6185 return $rv;
6186 }
6187
6188
b8a637f3
AD
6189 function label_find_caption($link, $label, $owner_uid) {
6190 $result = db_query($link,
6191 "SELECT caption FROM ttrss_labels2 WHERE id = '$label'
6192 AND owner_uid = '$owner_uid' LIMIT 1");
6193
6194 if (db_num_rows($result) == 1) {
6195 return db_fetch_result($result, 0, "caption");
6196 } else {
6197 return "";
6198 }
6199 }
6200
905ff52a
AD
6201 function label_update_cache($link, $id, $labels = false, $force = false) {
6202
6203 if ($force)
6204 label_clear_cache($link, $id);
6205
6206 if (!$labels)
6207 $labels = get_article_labels($link, $id);
6208
6209 $labels = db_escape_string(json_encode($labels));
6210
6211 db_query($link, "UPDATE ttrss_user_entries SET
6212 label_cache = '$labels' WHERE ref_id = '$id'");
6213
6214 }
6215
6216 function label_clear_cache($link, $id) {
6217
6218 db_query($link, "UPDATE ttrss_user_entries SET
6219 label_cache = '' WHERE ref_id = '$id'");
6220
6221 }
6222
933ba4ee
AD
6223 function label_remove_article($link, $id, $label, $owner_uid) {
6224
6225 $label_id = label_find_id($link, $label, $owner_uid);
6226
6227 if (!$label_id) return;
6228
6229 $result = db_query($link,
6230 "DELETE FROM ttrss_user_labels2
6231 WHERE
6232 label_id = '$label_id' AND
6233 article_id = '$id'");
905ff52a
AD
6234
6235 label_clear_cache($link, $id);
933ba4ee
AD
6236 }
6237
ceb30ba4
AD
6238 function label_add_article($link, $id, $label, $owner_uid) {
6239
d721a547
AD
6240 global $memcache;
6241
6242 if ($memcache) {
6243 $obj_id = md5("LABELS:$id:$owner_uid");
6244 $memcache->delete($obj_id);
6245 }
6246
ceb30ba4
AD
6247 $label_id = label_find_id($link, $label, $owner_uid);
6248
6249 if (!$label_id) return;
6250
6251 $result = db_query($link,
6252 "SELECT
6253 article_id FROM ttrss_labels2, ttrss_user_labels2
6254 WHERE
6255 label_id = id AND
6256 label_id = '$label_id' AND
6257 article_id = '$id' AND owner_uid = '$owner_uid'
6258 LIMIT 1");
6259
6260 if (db_num_rows($result) == 0) {
6261 db_query($link, "INSERT INTO ttrss_user_labels2
6262 (label_id, article_id) VALUES ('$label_id', '$id')");
6263 }
905ff52a
AD
6264
6265 label_clear_cache($link, $id);
6266
ceb30ba4 6267 }
1380f8ee
AD
6268
6269 function label_remove($link, $id, $owner_uid) {
d721a547
AD
6270 global $memcache;
6271
905ff52a
AD
6272 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
6273
d721a547
AD
6274 if ($memcache) {
6275 $obj_id = md5("LABELS:$id:$owner_uid");
6276 $memcache->delete($obj_id);
6277 }
1380f8ee
AD
6278
6279 db_query($link, "BEGIN");
6280
6281 $result = db_query($link, "SELECT caption FROM ttrss_labels2
6282 WHERE id = '$id'");
6283
6284 $caption = db_fetch_result($result, 0, "caption");
6285
6286 $result = db_query($link, "DELETE FROM ttrss_labels2 WHERE id = '$id'
905ff52a 6287 AND owner_uid = " . $owner_uid);
1380f8ee
AD
6288
6289 if (db_affected_rows($link, $result) != 0 && $caption) {
6290
8801fb01
AD
6291 /* Remove access key for the label */
6292
6293 $ext_id = -11 - $id;
6294
6295 db_query($link, "DELETE FROM ttrss_access_keys WHERE
6296 feed_id = '$ext_id' AND owner_uid = $owner_uid");
6297
1380f8ee
AD
6298 /* Disable filters that reference label being removed */
6299
6300 db_query($link, "UPDATE ttrss_filters SET
6301 enabled = false WHERE action_param = '$caption'
6302 AND action_id = 7
905ff52a
AD
6303 AND owner_uid = " . $owner_uid);
6304
6305 /* Remove cached data */
6306
6307 db_query($link, "UPDATE ttrss_user_entries SET label_cache = ''
6308 WHERE label_cache LIKE '%$caption%' AND owner_uid = " . $owner_uid);
6309
6310 }
1380f8ee
AD
6311
6312 db_query($link, "COMMIT");
6313 }
79c88e11 6314
6b2ee18d
AD
6315 function label_create($link, $caption) {
6316
6317 db_query($link, "BEGIN");
6318
6319 $result = false;
6320
6321 $result = db_query($link, "SELECT id FROM ttrss_labels2
6322 WHERE caption = '$caption' AND owner_uid = ". $_SESSION["uid"]);
6323
6324 if (db_num_rows($result) == 0) {
6325 $result = db_query($link,
6326 "INSERT INTO ttrss_labels2 (caption,owner_uid)
6327 VALUES ('$caption', '".$_SESSION["uid"]."')");
6328
6329 $result = db_affected_rows($link, $result) != 0;
6330 }
6331
6332 db_query($link, "COMMIT");
6333
6334 return $result;
6335 }
6336
79c88e11
AD
6337 function print_labels_headlines_dropdown($link, $feed_id) {
6338 print "<li onclick=\"javascript:addLabel()\">
6339 &nbsp;&nbsp;".__("Create label...")."</li>";
6340
6341 $result = db_query($link, "SELECT id, caption FROM ttrss_labels2 WHERE
6342 owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
6343
6344 while ($line = db_fetch_assoc($result)) {
6345
6346 $label_id = $line["id"];
6347 $label_caption = $line["caption"];
c3fddd05 6348 $id = $line["id"];
79c88e11
AD
6349
6350 if ($feed_id < -10 && $feed_id == -11-$label_id) {
6351 print "<li id=\"LHDL-$id\"
6352 onclick=\"javascript:selectionRemoveLabel($label_id)\">
6353 &nbsp;&nbsp;$label_caption ".__('(remove)')."</li>";
6354 } else {
6355 print "<li id=\"LHDL-$id\"
6356 onclick=\"javascript:selectionAssignLabel($label_id)\">
6357 &nbsp;&nbsp;$label_caption</li>";
6358 }
6359 }
6360 }
307d187c
AD
6361
6362 function format_tags_string($tags, $id) {
6363
6364 $tags_str = "";
6365 $tags_nolinks_str = "";
6366
6367 $num_tags = 0;
6368
dce46cad 6369/* if (get_user_theme($link) == "3pane") {
307d187c
AD
6370 $tag_limit = 3;
6371 } else {
6372 $tag_limit = 6;
d9084cf2
AD
6373 } */
6374
6375 $tag_limit = 6;
307d187c
AD
6376
6377 $formatted_tags = array();
6378
6379 foreach ($tags as $tag) {
6380 $num_tags++;
6381 $tag_escaped = str_replace("'", "\\'", $tag);
6382
275a0af2
AD
6383 if (mb_strlen($tag) > 30) {
6384 $tag = truncate_string($tag, 30);
6385 }
6386
307d187c
AD
6387 $tag_str = "<a href=\"javascript:viewfeed('$tag_escaped')\">$tag</a>";
6388
6389 array_push($formatted_tags, $tag_str);
275a0af2
AD
6390
6391 $tmp_tags_str = implode(", ", $formatted_tags);
307d187c 6392
275a0af2 6393 if ($num_tags == $tag_limit || mb_strlen($tmp_tags_str) > 150) {
307d187c
AD
6394 break;
6395 }
6396 }
6397
6398 $tags_str = implode(", ", $formatted_tags);
6399
6400 if ($num_tags < count($tags)) {
6401 $tags_str .= ", &hellip;";
6402 }
6403
6404 if ($num_tags == 0) {
6405 $tags_str = __("no tags");
6406 }
6407
6408 return $tags_str;
6409
6410 }
2eb9c95c
AD
6411
6412 function format_article_labels($labels, $id) {
6413
6414 $labels_str = "";
6415
6416 foreach ($labels as $l) {
6417 $labels_str .= sprintf("<span class='hlLabelRef'
6418 style='color : %s; background-color : %s'>%s</span>",
6419 $l[2], $l[3], $l[1]);
6420 }
6421
6422 return $labels_str;
6423
6424 }
c7e51de1
AD
6425
6426 function format_article_note($id, $note) {
6427
6428 $note_escaped = htmlspecialchars($note, ENT_QUOTES);
6429
6430 $str = "<div class='articleNote'>";
db54143e 6431 $str .= $note;
c7e51de1
AD
6432 $str .= "<div class='articleNoteOps'>";
6433 $str .= "<a href=\"javascript:publishWithNote($id, '$note_escaped')\">".
6434 __('edit note')."</a>";
6435 $str .= "</div>";
c7e51de1
AD
6436 $str .= "</div>";
6437
6438 return $str;
6439 }
7f969260
AD
6440
6441 function toggle_collapse_cat($link, $cat_id) {
6442 if ($cat_id > 0) {
6443 db_query($link, "UPDATE ttrss_feed_categories SET
6444 collapsed = NOT collapsed WHERE id = '$cat_id' AND owner_uid = " .
6445 $_SESSION["uid"]);
6446 } else {
6447 $pref_name = '';
6448
6449 switch ($cat_id) {
6450 case -1:
6451 $pref_name = '_COLLAPSED_SPECIAL';
6452 break;
6453 case -2:
6454 $pref_name = '_COLLAPSED_LABELS';
6455 break;
6456 case 0:
6457 $pref_name = '_COLLAPSED_UNCAT';
6458 break;
6459 }
6460
6461 if ($pref_name) {
6462 if (get_pref($link, $pref_name)) {
6463 set_pref($link, $pref_name, 'false');
6464 } else {
6465 set_pref($link, $pref_name, 'true');
6466 }
6467 }
6468 }
6469 }
7e329f13
AD
6470
6471 function remove_feed($link, $id, $owner_uid) {
6472
6473 if ($id > 0) {
e04c18a2
AD
6474
6475 /* save starred articles in Archived feed */
6476
6477 db_query($link, "BEGIN");
6478
8056ec50
AD
6479 /* prepare feed if necessary */
6480
6481 $result = db_query($link, "SELECT id FROM ttrss_archived_feeds
6482 WHERE id = '$id'");
6483
6484 if (db_num_rows($result) == 0) {
6485 db_query($link, "INSERT INTO ttrss_archived_feeds
6486 (id, owner_uid, title, feed_url, site_url)
6487 SELECT id, owner_uid, title, feed_url, site_url from ttrss_feeds
6488 WHERE id = '$id'");
6489 }
6490
74d22f0c
AD
6491 db_query($link, "UPDATE ttrss_user_entries SET feed_id = NULL,
6492 orig_feed_id = '$id' WHERE feed_id = '$id' AND
e04c18a2
AD
6493 marked = true AND owner_uid = $owner_uid");
6494
8801fb01
AD
6495 /* Remove access key for the feed */
6496
6497 db_query($link, "DELETE FROM ttrss_access_keys WHERE
6498 feed_id = '$id' AND owner_uid = $owner_uid");
6499
e04c18a2
AD
6500 /* remove the feed */
6501
7e329f13
AD
6502 db_query($link, "DELETE FROM ttrss_feeds
6503 WHERE id = '$id' AND owner_uid = $owner_uid");
6504
e04c18a2
AD
6505 db_query($link, "COMMIT");
6506
69877646 6507/* if (file_exists(ICONS_DIR . "/$id.ico")) {
7e329f13 6508 unlink(ICONS_DIR . "/$id.ico");
69877646 6509 } */
7e329f13
AD
6510
6511 ccache_remove($link, $id, $owner_uid);
6512
6513 } else {
6514 label_remove($link, -11-$id, $owner_uid);
6515 ccache_remove($link, -11-$id, $owner_uid);
6516 }
6517 }
6518
5c7c7da9 6519 function add_feed_category($link, $feed_cat) {
c00907f2
AD
6520
6521 if (!$feed_cat) return false;
6522
5c7c7da9
AD
6523 db_query($link, "BEGIN");
6524
6525 $result = db_query($link,
6526 "SELECT id FROM ttrss_feed_categories
6527 WHERE title = '$feed_cat' AND owner_uid = ".$_SESSION["uid"]);
6528
6529 if (db_num_rows($result) == 0) {
6530
6531 $result = db_query($link,
6532 "INSERT INTO ttrss_feed_categories (owner_uid,title)
6533 VALUES ('".$_SESSION["uid"]."', '$feed_cat')");
6534
6535 db_query($link, "COMMIT");
6536
6537 return true;
6538 }
6539
6540 return false;
6541 }
6542
7e329f13
AD
6543 function remove_feed_category($link, $id, $owner_uid) {
6544
6545 db_query($link, "DELETE FROM ttrss_feed_categories
6546 WHERE id = '$id' AND owner_uid = $owner_uid");
6547
6548 ccache_remove($link, $id, $owner_uid, true);
6549 }
6550
16fdac16
AD
6551 function archive_article($link, $id, $owner_uid) {
6552 db_query($link, "BEGIN");
6553
6554 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
6555 WHERE ref_id = '$id' AND owner_uid = $owner_uid");
6556
6557 if (db_num_rows($result) != 0) {
6558
6559 /* prepare the archived table */
6560
6561 $feed_id = (int) db_fetch_result($result, 0, "feed_id");
6562
6563 if ($feed_id) {
6564 $result = db_query($link, "SELECT id FROM ttrss_archived_feeds
6565 WHERE id = '$feed_id'");
6566
6567 if (db_num_rows($result) == 0) {
6568 db_query($link, "INSERT INTO ttrss_archived_feeds
6569 (id, owner_uid, title, feed_url, site_url)
6570 SELECT id, owner_uid, title, feed_url, site_url from ttrss_feeds
6571 WHERE id = '$feed_id'");
6572 }
6573
6574 db_query($link, "UPDATE ttrss_user_entries
6575 SET orig_feed_id = feed_id, feed_id = NULL
6576 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
6577 }
6578 }
6579
6580 db_query($link, "COMMIT");
6581 }
ab197ae1
AD
6582
6583 function getArticleFeed($link, $id) {
6584 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
a545dc31 6585 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
ab197ae1
AD
6586
6587 if (db_num_rows($result) != 0) {
6588 return db_fetch_result($result, 0, "feed_id");
6589 } else {
6590 return 0;
6591 }
6592 }
a5819bb3
AD
6593
6594 function make_url_from_parts($parts) {
6595 $url = $parts['scheme'] . '://' . $parts['host'];
6596
6597 if ($parts['path']) $url .= $parts['path'];
6598 if ($parts['query']) $url .= '?' . $parts['query'];
6599
6600 return $url;
6601 }
6602
f2c6c008
CW
6603 /**
6604 * Fixes incomplete URLs by prepending "http://".
f0266f51
CW
6605 * Also replaces feed:// with http://, and
6606 * prepends a trailing slash if the url is a domain name only.
f2c6c008
CW
6607 *
6608 * @param string $url Possibly incomplete URL
6609 *
6610 * @return string Fixed URL.
6611 */
6612 function fix_url($url) {
6613 if (strpos($url, '://') === false) {
6614 $url = 'http://' . $url;
f0266f51
CW
6615 } else if (substr($url, 0, 5) == 'feed:') {
6616 $url = 'http:' . substr($url, 5);
6617 }
6618
6619 //prepend slash if the URL has no slash in it
6620 // "http://www.example" -> "http://www.example/"
6621 if (strpos($url, '/', 7) === false) {
6622 $url .= '/';
f2c6c008
CW
6623 }
6624 return $url;
6625 }
6626
a5819bb3
AD
6627 function validate_feed_url($url) {
6628 $parts = parse_url($url);
6629
6630 return ($parts['scheme'] == 'http' || $parts['scheme'] == 'feed' || $parts['scheme'] == 'https');
6631
6632 }
d9084cf2 6633
be35798b
AD
6634 function get_article_enclosures($link, $id) {
6635
6636 global $memcache;
6637
6638 $query = "SELECT * FROM ttrss_enclosures
6639 WHERE post_id = '$id' AND content_url != ''";
6640
bd3f2ade 6641 $obj_id = md5("ENCLOSURES:$id");
be35798b
AD
6642
6643 $rv = array();
6644
bd3f2ade 6645 if ($memcache && $obj = $memcache->get($obj_id)) {
be35798b
AD
6646 $rv = $obj;
6647 } else {
6648 $result = db_query($link, $query);
6649
6650 if (db_num_rows($result) > 0) {
6651 while ($line = db_fetch_assoc($result)) {
6652 array_push($rv, $line);
6653 }
bd3f2ade 6654 if ($memcache) $memcache->add($obj_id, $rv, 0, 3600);
be35798b
AD
6655 }
6656 }
6657
6658 return $rv;
6659 }
6660
911d4c08 6661 function api_get_feeds($link, $cat_id, $unread_only, $limit, $offset) {
911d4c08
AD
6662
6663 $feeds = array();
6664
911d4c08
AD
6665 /* Labels */
6666
fb8d17f3 6667 if ($cat_id == -4 || $cat_id == -2) {
911d4c08
AD
6668 $counters = getLabelCounters($link, true);
6669
11232703 6670 foreach (array_values($counters) as $cv) {
911d4c08 6671
11232703 6672 $unread = $cv["counter"];
911d4c08
AD
6673
6674 if ($unread || !$unread_only) {
6675
6676 $row = array(
11232703
AD
6677 "id" => $cv["id"],
6678 "title" => $cv["description"],
6679 "unread" => $cv["counter"],
911d4c08
AD
6680 "cat_id" => -2,
6681 );
6682
6683 array_push($feeds, $row);
6684 }
6685 }
6686 }
6687
6688 /* Virtual feeds */
6689
fb8d17f3 6690 if ($cat_id == -4 || $cat_id == -1) {
911d4c08
AD
6691 foreach (array(-1, -2, -3, -4, 0) as $i) {
6692 $unread = getFeedUnread($link, $i);
6693
6694 if ($unread || !$unread_only) {
6695 $title = getFeedTitle($link, $i);
6696
6697 $row = array(
6698 "id" => $i,
6699 "title" => $title,
6700 "unread" => $unread,
6701 "cat_id" => -1,
6702 );
6703 array_push($feeds, $row);
6704 }
6705
6706 }
6707 }
b41c2549
AD
6708
6709 /* Real feeds */
6710
6711 if ($limit) {
6712 $limit_qpart = "LIMIT $limit OFFSET $offset";
6713 } else {
6714 $limit_qpart = "";
6715 }
6716
fb8d17f3 6717 if ($cat_id == -4 || $cat_id == -3) {
b41c2549
AD
6718 $result = db_query($link, "SELECT
6719 id, feed_url, cat_id, title, ".
6720 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
6721 FROM ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"] .
6722 " ORDER BY cat_id, title " . $limit_qpart);
6723 } else {
fb8d17f3
AD
6724
6725 if ($cat_id)
6726 $cat_qpart = "cat_id = '$cat_id'";
6727 else
6728 $cat_qpart = "cat_id IS NULL";
6729
b41c2549
AD
6730 $result = db_query($link, "SELECT
6731 id, feed_url, cat_id, title, ".
6732 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
6733 FROM ttrss_feeds WHERE
fb8d17f3 6734 $cat_qpart AND owner_uid = " . $_SESSION["uid"] .
b41c2549
AD
6735 " ORDER BY cat_id, title " . $limit_qpart);
6736 }
6737
6738 while ($line = db_fetch_assoc($result)) {
6739
6740 $unread = getFeedUnread($link, $line["id"]);
6741
6742 $has_icon = feed_has_icon($line['id']);
6743
6744 if ($unread || !$unread_only) {
6745
6746 $row = array(
6747 "feed_url" => $line["feed_url"],
6748 "title" => $line["title"],
6749 "id" => (int)$line["id"],
6750 "unread" => (int)$unread,
6751 "has_icon" => $has_icon,
6752 "cat_id" => (int)$line["cat_id"],
6753 "last_updated" => strtotime($line["last_updated"])
6754 );
6755
6756 array_push($feeds, $row);
6757 }
6758 }
6759
911d4c08
AD
6760 return $feeds;
6761 }
6762
6763 function api_get_headlines($link, $feed_id, $limit, $offset,
6764 $filter, $is_cat, $show_excerpt, $show_content, $view_mode, $order) {
6765
6766 /* do not rely on params below */
6767
6768 $search = db_escape_string($_REQUEST["search"]);
6769 $search_mode = db_escape_string($_REQUEST["search_mode"]);
6770 $match_on = db_escape_string($_REQUEST["match_on"]);
6771
6772 $qfh_ret = queryFeedHeadlines($link, $feed_id, $limit,
6773 $view_mode, $is_cat, $search, $search_mode, $match_on,
6774 $order, $offset);
6775
6776 $result = $qfh_ret[0];
6777 $feed_title = $qfh_ret[1];
6778
6779 $headlines = array();
6780
6781 while ($line = db_fetch_assoc($result)) {
6782 $is_updated = ($line["last_read"] == "" &&
6783 ($line["unread"] != "t" && $line["unread"] != "1"));
6784
6785 $headline_row = array(
6786 "id" => (int)$line["id"],
6787 "unread" => sql_bool_to_bool($line["unread"]),
6788 "marked" => sql_bool_to_bool($line["marked"]),
9ed133e7 6789 "published" => sql_bool_to_bool($line["published"]),
911d4c08
AD
6790 "updated" => strtotime($line["updated"]),
6791 "is_updated" => $is_updated,
6792 "title" => $line["title"],
6793 "link" => $line["link"],
6794 "feed_id" => $line["feed_id"],
78ac6caf 6795 "tags" => get_article_tags($link, $line["id"]),
911d4c08
AD
6796 );
6797
6798 if ($show_excerpt) {
6799 $excerpt = truncate_string(strip_tags($line["content_preview"]), 100);
6800 $headline_row["excerpt"] = $excerpt;
6801 }
6802
6803 if ($show_content) {
6804 $headline_row["content"] = $line["content_preview"];
6805 }
6806
6807 array_push($headlines, $headline_row);
6808 }
6809
6810 return $headlines;
6811 }
6812
fe1087fb
AD
6813 function generate_dashboard_feed($link) {
6814 print "<headlines id=\"-5\" is_cat=\"\">";
6815
6816 print '<![CDATA[<div id="headlinesContainer">';
6817
6818 print "<div class='whiteBox'>".__('No feed selected.');
6819
5d128c95
AD
6820 print "<p class=\"small\"><span class=\"insensitive\">";
6821
6822 $result = db_query($link, "SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
6823 WHERE owner_uid = " . $_SESSION['uid']);
6824
6825 $last_updated = db_fetch_result($result, 0, "last_updated");
324944f3 6826 $last_updated = make_local_datetime($link, $last_updated, false);
5d128c95
AD
6827
6828 printf(__("Feeds last updated at %s"), $last_updated);
6829
fe1087fb
AD
6830 $result = db_query($link, "SELECT COUNT(id) AS num_errors
6831 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
6832
6833 $num_errors = db_fetch_result($result, 0, "num_errors");
6834
6835 if ($num_errors > 0) {
5d128c95
AD
6836 print "<br/>";
6837 print "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
fe1087fb
AD
6838 __('Some feeds have update errors (click for details)')."</a>";
6839 }
5d128c95 6840 print "</span></p>";
fe1087fb
AD
6841
6842 print "</div>]]>";
6843 print "</headlines>";
6844
ffbe082d
AD
6845 print "<headlines-info><![CDATA[";
6846
6847 $info = array("count" => 0,
6848 "vgroup_last_feed" => '',
6849 "unread" => 0,
6850 "disable_cache" => true);
6851
6852 print json_encode($info);
6853
6854 print "]]></headlines-info>";
fe1087fb
AD
6855
6856 }
31a53903
AD
6857
6858 function save_email_address($link, $email) {
6859 // FIXME: implement persistent storage of emails
6860
6861 if (!$_SESSION['stored_emails'])
6862 $_SESSION['stored_emails'] = array();
6863
6864 if (!in_array($email, $_SESSION['stored_emails']))
6865 array_push($_SESSION['stored_emails'], $email);
6866 }
8801fb01
AD
6867
6868 function update_feed_access_key($link, $feed_id, $is_cat, $owner_uid = false) {
6869 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
6870
6871 $sql_is_cat = bool_to_sql_bool($is_cat);
6872
6873 $result = db_query($link, "SELECT access_key FROM ttrss_access_keys
6874 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
6875 AND owner_uid = " . $owner_uid);
6876
6877 if (db_num_rows($result) == 1) {
6878 $key = db_escape_string(sha1(uniqid(rand(), true)));
6879
6880 db_query($link, "UPDATE ttrss_access_keys SET access_key = '$key'
6881 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
6882 AND owner_uid = " . $owner_uid);
6883
6884 return $key;
6885
6886 } else {
6887 return get_feed_access_key($link, $feed_id, $is_cat, $owner_uid);
6888 }
6889 }
6890
6891 function get_feed_access_key($link, $feed_id, $is_cat, $owner_uid = false) {
6892
6893 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
6894
6895 $sql_is_cat = bool_to_sql_bool($is_cat);
6896
6897 $result = db_query($link, "SELECT access_key FROM ttrss_access_keys
6898 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
6899 AND owner_uid = " . $owner_uid);
6900
6901 if (db_num_rows($result) == 1) {
6902 return db_fetch_result($result, 0, "access_key");
6903 } else {
6904 $key = db_escape_string(sha1(uniqid(rand(), true)));
6905
6906 $result = db_query($link, "INSERT INTO ttrss_access_keys
6907 (access_key, feed_id, is_cat, owner_uid)
6908 VALUES ('$key', '$feed_id', $sql_is_cat, '$owner_uid')");
6909
6910 return $key;
6911 }
6912 return false;
6913 }
f0266f51
CW
6914
6915 /**
6916 * Extracts RSS/Atom feed URLs from the given HTML URL.
6917 *
6918 * @param string $url HTML page URL
6919 *
6920 * @return array Array of feeds. Key is the full URL, value the title
6921 */
6922 function get_feeds_from_html($url)
6923 {
6924 $url = fix_url($url);
6925 $baseUrl = substr($url, 0, strrpos($url, '/') + 1);
6926
fb074239
AD
6927 libxml_use_internal_errors(true);
6928
f0266f51
CW
6929 $doc = new DOMDocument();
6930 $doc->loadHTMLFile($url);
6931 $xpath = new DOMXPath($doc);
6932 $entries = $xpath->query('/html/head/link[@rel="alternate"]');
6933 $feedUrls = array();
6934 foreach ($entries as $entry) {
6935 if ($entry->hasAttribute('href')) {
6936 $title = $entry->getAttribute('title');
6937 if ($title == '') {
6938 $title = $entry->getAttribute('type');
6939 }
6940 $feedUrl = $entry->getAttribute('href');
6941 if (strpos($feedUrl, '://') === false) {
6942 //no protocol -> relative URL
6943 $feedUrl = $baseUrl . $feedUrl;
6944 }
6945 $feedUrls[$feedUrl] = $title;
6946 }
6947 }
6948 return $feedUrls;
6949 }
6950
f33479da
CW
6951 /**
6952 * Checks if the content behind the given URL is a HTML file
6953 *
6954 * @param string $url URL to check
6955 *
6956 * @return boolean True if the URL contains HTML content
6957 */
6958 function url_is_html($url) {
6959 $content = substr(fetch_file_contents($url, false), 0, 1000);
6960 if (strpos($content, '<html>') === false
6961 && strpos($content, '<html ') === false
6962 ) {
6963 return false;
6964 }
6965
6966 return true;
6967 }
24e2bb3a
AD
6968
6969 function print_label_select($link, $name, $value, $style = "") {
6970
6971 $result = db_query($link, "SELECT caption FROM ttrss_labels2
6972 WHERE owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
6973
6974 print "<select default=\"$value\" name=\"" . htmlspecialchars($name) .
6975 "\" style=\"$style\" onchange=\"labelSelectOnChange(this)\" >";
6976
6977 while ($line = db_fetch_assoc($result)) {
6978
6979 $issel = ($line["caption"] == $value) ? "selected=\"1\"" : "";
6980
6981 print "<option $issel>" . htmlspecialchars($line["caption"]) . "</option>";
6982
6983 }
6984
6985 print "<option value=\"ADD_LABEL\">" .__("Add label...") . "</option>";
6986
6987 print "</select>";
6988
6989
6990 }
6991
dad14b51
AD
6992 function print_article_enclosures($link, $id, $always_display_enclosures,
6993 $article_content) {
6994
6995 $result = get_article_enclosures($link, $id);
6996
6997 if (count($result) > 0) {
6998
6999 $entries_html = array();
7000 $entries = array();
7001
7002 foreach ($result as $line) {
7003
7004 $url = $line["content_url"];
7005 $ctype = $line["content_type"];
7006
7007 if (!$ctype) $ctype = __("unknown type");
7008
7009 $filename = substr($url, strrpos($url, "/")+1);
7010
7011 $entry = format_inline_player($link, $url, $ctype);
7012
7013 $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
7014 $filename . " (" . $ctype . ")" . "</a>";
7015
7016 array_push($entries_html, $entry);
7017
7018 $entry = array();
7019
7020 $entry["type"] = $ctype;
7021 $entry["filename"] = $filename;
7022 $entry["url"] = $url;
7023
7024 array_push($entries, $entry);
7025 }
7026
7027 print "<div class=\"postEnclosures\">";
7028
7029 if (!get_pref($link, "STRIP_IMAGES")) {
7030 if ($always_display_enclosures ||
7031 !preg_match("/<img/i", $article_content)) {
7032
7033 foreach ($entries as $entry) {
7034
7035 if (preg_match("/image/", $entry["type"]) ||
7036 preg_match("/\.(jpg|png|gif|bmp)/i", $entry["filename"])) {
7037
7038 print "<p><img
7039 alt=\"".htmlspecialchars($entry["filename"])."\"
7040 src=\"" .htmlspecialchars($entry["url"]) . "\"/></p>";
7041 }
7042 }
7043 }
7044 }
7045
905ff52a 7046 if (count($entries) == 1) {
dad14b51
AD
7047 print __("Attachment:") . " ";
7048 } else {
7049 print __("Attachments:") . " ";
7050 }
7051
7052 print join(", ", $entries_html);
7053
7054 print "</div>";
7055 }
7056 }
7057
f8fb4498
AD
7058 function getLastArticleId($link) {
7059 $result = db_query($link, "SELECT MAX(ref_id) AS id FROM ttrss_user_entries
7060 WHERE owner_uid = " . $_SESSION["uid"]);
7061
7062 if (db_num_rows($result) == 1) {
7063 return db_fetch_result($result, 0, "id");
7064 } else {
7065 return -1;
7066 }
7067 }
8cc3c778
AD
7068
7069 function build_url($parts) {
7070 return $parts['scheme'] . "://" . $parts['host'] . $parts['path'];
7071 }
7072
7073 function rewrite_relative_url($url, $rel_url) {
7074 if (strpos($rel_url, "://") !== false) {
7075 return $rel_url;
7076 } else if (strpos($rel_url, "/") === 0)
7077 {
7078 $parts = parse_url($url);
7079 $parts['path'] = $rel_url;
7080
7081 return build_url($parts);
7082
7083 } else {
7084 $parts = parse_url($url);
7085
7086 $parts['path'] = dirname($parts['path']) . "/$rel_url";
7087
7088 return build_url($parts);
7089 }
7090 }
7091
40d13c28 7092?>