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