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