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