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