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