]> git.wh0rd.org - tt-rss.git/blame - functions.php
properly handle on-the-fly adding of categories
[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)) {
2a5c136e
AD
2140 return smart_date_time($link, $user_timestamp,
2141 $user_tz->getOffset($dt), $owner_uid);
324944f3
AD
2142 } else {
2143 if ($long)
2144 $format = get_pref($link, 'LONG_DATE_FORMAT', $owner_uid);
2145 else
2146 $format = get_pref($link, 'SHORT_DATE_FORMAT', $owner_uid);
2147
2148 return date($format, $user_timestamp);
2149 }
2150 }
2151
2a5c136e
AD
2152 function smart_date_time($link, $timestamp, $tz_offset = 0, $owner_uid = false) {
2153 if (!$owner_uid) $owner_uid = $_SESSION['uid'];
2154
2155 if (date("Y.m.d", $timestamp) == date("Y.m.d", time() + $tz_offset)) {
be773442 2156 return date("G:i", $timestamp);
2a5c136e
AD
2157 } else if (date("Y", $timestamp) == date("Y", time() + $tz_offset)) {
2158 $format = get_pref($link, 'SHORT_DATE_FORMAT', $owner_uid);
2159 return date($format, $timestamp);
be773442 2160 } else {
2a5c136e
AD
2161 $format = get_pref($link, 'LONG_DATE_FORMAT', $owner_uid);
2162 return date($format, $timestamp);
be773442
AD
2163 }
2164 }
2165
2166 function smart_date($timestamp) {
2167 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
2168 return "Today";
f26450f1 2169 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
2170 return date("D m", $timestamp);
2171 } else {
b02111c2 2172 return date("Y/m/d", $timestamp);
be773442
AD
2173 }
2174 }
a654a595
AD
2175
2176 function sql_bool_to_string($s) {
2177 if ($s == "t" || $s == "1") {
2178 return "true";
2179 } else {
2180 return "false";
2181 }
2182 }
e3c99f3b
AD
2183
2184 function sql_bool_to_bool($s) {
2185 if ($s == "t" || $s == "1") {
2186 return true;
2187 } else {
2188 return false;
2189 }
2190 }
0ea4fb50 2191
badac687
AD
2192 function bool_to_sql_bool($s) {
2193 if ($s) {
2194 return "true";
2195 } else {
2196 return "false";
2197 }
2198 }
e3c99f3b 2199
0ea4fb50
AD
2200 function toggleEvenOdd($a) {
2201 if ($a == "even")
2202 return "odd";
2203 else
2204 return "even";
2205 }
6043fb7e 2206
199db684
AD
2207 function get_schema_version($link, $nocache = false) {
2208 if (!$_SESSION["schema_version"] || $nocache) {
2209 $result = db_query($link, "SELECT schema_version FROM ttrss_version");
2210 $version = db_fetch_result($result, 0, "schema_version");
2211 $_SESSION["schema_version"] = $version;
2212 return $version;
2213 } else {
2214 return $_SESSION["schema_version"];
2215 }
e4c51a6c
AD
2216 }
2217
6043fb7e 2218 function sanity_check($link) {
9cbca41f 2219
aec3ce39
AD
2220 error_reporting(0);
2221
6043fb7e 2222 $error_code = 0;
05044a59 2223 $schema_version = get_schema_version($link);
6043fb7e
AD
2224
2225 if ($schema_version != SCHEMA_VERSION) {
2226 $error_code = 5;
2227 }
2228
aec3ce39
AD
2229 if (DB_TYPE == "mysql") {
2230 $result = db_query($link, "SELECT true", false);
2231 if (db_num_rows($result) != 1) {
2232 $error_code = 10;
2233 }
2234 }
2235
f29ba148
AD
2236 if (db_escape_string("testTEST") != "testTEST") {
2237 $error_code = 12;
2238 }
2239
aec3ce39
AD
2240 error_reporting (DEFAULT_ERROR_LEVEL);
2241
6043fb7e 2242 if ($error_code != 0) {
aec3ce39 2243 print_error_xml($error_code);
6043fb7e
AD
2244 return false;
2245 } else {
2246 return true;
4220d6b0 2247 }
6043fb7e
AD
2248 }
2249
27981ca3 2250 function file_is_locked($filename) {
31a6d42d
AD
2251 if (function_exists('flock')) {
2252 error_reporting(0);
cfa43e02 2253 $fp = fopen(LOCK_DIRECTORY . "/$filename", "r");
31a6d42d
AD
2254 error_reporting(DEFAULT_ERROR_LEVEL);
2255 if ($fp) {
2256 if (flock($fp, LOCK_EX | LOCK_NB)) {
2257 flock($fp, LOCK_UN);
2258 fclose($fp);
2259 return false;
2260 }
27981ca3 2261 fclose($fp);
31a6d42d 2262 return true;
e89aed7b
AD
2263 } else {
2264 return false;
27981ca3 2265 }
27981ca3 2266 }
c1fb4a5e 2267 return true; // consider the file always locked and skip the test
27981ca3
AD
2268 }
2269
fcb4c0c9 2270 function make_lockfile($filename) {
cfa43e02 2271 $fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
fcb4c0c9 2272
82acc36d 2273 if (flock($fp, LOCK_EX | LOCK_NB)) {
4c59adb1
AD
2274 if (function_exists('posix_getpid')) {
2275 fwrite($fp, posix_getpid() . "\n");
2276 }
fcb4c0c9
AD
2277 return $fp;
2278 } else {
2279 return false;
2280 }
2281 }
2282
bf7fcde8 2283 function make_stampfile($filename) {
cfa43e02 2284 $fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
bf7fcde8 2285
8e00ae9b 2286 if (flock($fp, LOCK_EX | LOCK_NB)) {
bf7fcde8 2287 fwrite($fp, time() . "\n");
8e00ae9b 2288 flock($fp, LOCK_UN);
bf7fcde8
AD
2289 fclose($fp);
2290 return true;
2291 } else {
2292 return false;
2293 }
2294 }
2295
894ebcf5
AD
2296 function sql_random_function() {
2297 if (DB_TYPE == "mysql") {
2298 return "RAND()";
2299 } else {
2300 return "RANDOM()";
2301 }
2302 }
2303
c7e51de1
AD
2304 function catchup_feed($link, $feed, $cat_view, $owner_uid) {
2305
2306 if (!$owner_uid) $owner_uid = $_SESSION['uid'];
88040f57
AD
2307
2308 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
22fdebff 2309
23aa0d16
AD
2310 if ($cat_view) {
2311
72a2f4f5 2312 if ($feed >= 0) {
f9fca8cb
AD
2313
2314 if ($feed > 0) {
2315 $cat_qpart = "cat_id = '$feed'";
2316 } else {
2317 $cat_qpart = "cat_id IS NULL";
2318 }
23aa0d16 2319
f9fca8cb 2320 $tmp_result = db_query($link, "SELECT id
c7e51de1 2321 FROM ttrss_feeds WHERE $cat_qpart AND owner_uid = $owner_uid");
f9fca8cb
AD
2322
2323 while ($tmp_line = db_fetch_assoc($tmp_result)) {
23aa0d16 2324
f9fca8cb 2325 $tmp_feed = $tmp_line["id"];
23aa0d16 2326
f9fca8cb
AD
2327 db_query($link, "UPDATE ttrss_user_entries
2328 SET unread = false,last_read = NOW()
c7e51de1 2329 WHERE feed_id = '$tmp_feed' AND owner_uid = $owner_uid");
f9fca8cb
AD
2330 }
2331 } else if ($feed == -2) {
23aa0d16 2332
6f69764c
AD
2333
2334 db_query($link, "UPDATE ttrss_user_entries
2335 SET unread = false,last_read = NOW() WHERE (SELECT COUNT(*)
2336 FROM ttrss_user_labels2 WHERE article_id = ref_id) > 0
c7e51de1 2337 AND unread = true AND owner_uid = $owner_uid");
23aa0d16
AD
2338 }
2339
2340 } else if ($feed > 0) {
2341
2342 $tmp_result = db_query($link, "SELECT id
2343 FROM ttrss_feeds WHERE parent_feed = '$feed'
2344 ORDER BY cat_id,title");
2345
2346 $parent_ids = array();
2347
2348 if (db_num_rows($tmp_result) > 0) {
2349 while ($p = db_fetch_assoc($tmp_result)) {
2350 array_push($parent_ids, "feed_id = " . $p["id"]);
2351 }
2352
2353 $children_qpart = implode(" OR ", $parent_ids);
2354
2355 db_query($link, "UPDATE ttrss_user_entries
2356 SET unread = false,last_read = NOW()
2357 WHERE (feed_id = '$feed' OR $children_qpart)
c7e51de1 2358 AND owner_uid = $owner_uid");
23aa0d16
AD
2359
2360 } else {
2361 db_query($link, "UPDATE ttrss_user_entries
2362 SET unread = false,last_read = NOW()
c7e51de1 2363 WHERE feed_id = '$feed' AND owner_uid = $owner_uid");
23aa0d16
AD
2364 }
2365
2366 } else if ($feed < 0 && $feed > -10) { // special, like starred
2367
2368 if ($feed == -1) {
2369 db_query($link, "UPDATE ttrss_user_entries
2370 SET unread = false,last_read = NOW()
c7e51de1 2371 WHERE marked = true AND owner_uid = $owner_uid");
23aa0d16 2372 }
e4f4b46f
AD
2373
2374 if ($feed == -2) {
2375 db_query($link, "UPDATE ttrss_user_entries
2376 SET unread = false,last_read = NOW()
c7e51de1 2377 WHERE published = true AND owner_uid = $owner_uid");
e4f4b46f
AD
2378 }
2379
2d24f032
AD
2380 if ($feed == -3) {
2381
c1d7e6c3
AD
2382 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE");
2383
2d24f032 2384 if (DB_TYPE == "pgsql") {
7608b38a 2385 $match_part = "updated > NOW() - INTERVAL '$intl hour' ";
2d24f032 2386 } else {
7608b38a 2387 $match_part = "updated > DATE_SUB(NOW(),
c1d7e6c3 2388 INTERVAL $intl HOUR) ";
2d24f032
AD
2389 }
2390
1f3335dc
AD
2391 $result = db_query($link, "SELECT id FROM ttrss_entries,
2392 ttrss_user_entries WHERE $match_part AND
2393 unread = true AND
2394 ttrss_user_entries.ref_id = ttrss_entries.id AND
c7e51de1 2395 owner_uid = $owner_uid");
1f3335dc
AD
2396
2397 $affected_ids = array();
2398
2399 while ($line = db_fetch_assoc($result)) {
2400 array_push($affected_ids, $line["id"]);
2401 }
2402
2403 catchupArticlesById($link, $affected_ids, 0);
2d24f032
AD
2404 }
2405
3584cb11
AD
2406 if ($feed == -4) {
2407 db_query($link, "UPDATE ttrss_user_entries
2408 SET unread = false,last_read = NOW()
c7e51de1 2409 WHERE owner_uid = $owner_uid");
3584cb11
AD
2410 }
2411
23aa0d16
AD
2412 } else if ($feed < -10) { // label
2413
23aa0d16
AD
2414 $label_id = -$feed - 11;
2415
933ba4ee 2416 db_query($link, "UPDATE ttrss_user_entries, ttrss_user_labels2
338c238d
AD
2417 SET unread = false, last_read = NOW()
2418 WHERE label_id = '$label_id' AND unread = true
c7e51de1 2419 AND owner_uid = '$owner_uid' AND ref_id = article_id");
23aa0d16 2420
23aa0d16 2421 }
ad0056a8 2422
c7e51de1 2423 ccache_update($link, $feed, $owner_uid, $cat_view);
ad0056a8 2424
23aa0d16
AD
2425 } else { // tag
2426 db_query($link, "BEGIN");
2427
2428 $tag_name = db_escape_string($feed);
2429
2430 $result = db_query($link, "SELECT post_int_id FROM ttrss_tags
c7e51de1 2431 WHERE tag_name = '$tag_name' AND owner_uid = $owner_uid");
23aa0d16
AD
2432
2433 while ($line = db_fetch_assoc($result)) {
2434 db_query($link, "UPDATE ttrss_user_entries SET
2435 unread = false, last_read = NOW()
2436 WHERE int_id = " . $line["post_int_id"]);
2437 }
2438 db_query($link, "COMMIT");
2439 }
2440 }
2441
35bf080c 2442 function update_generic_feed($link, $feed, $cat_view, $force_update = false) {
23aa0d16
AD
2443 if ($cat_view) {
2444
2445 if ($feed > 0) {
2446 $cat_qpart = "cat_id = '$feed'";
2447 } else {
2448 $cat_qpart = "cat_id IS NULL";
2449 }
2450
c633e370 2451 $tmp_result = db_query($link, "SELECT id FROM ttrss_feeds
23aa0d16
AD
2452 WHERE $cat_qpart AND owner_uid = " . $_SESSION["uid"]);
2453
2454 while ($tmp_line = db_fetch_assoc($tmp_result)) {
571dad82 2455 $feed_id = $tmp_line["id"];
c633e370 2456 update_rss_feed($link, $feed_id, $force_update);
23aa0d16
AD
2457 }
2458
2459 } else {
c633e370 2460 update_rss_feed($link, $feed, $force_update);
23aa0d16
AD
2461 }
2462 }
a9cb1f83 2463
4ffa126e 2464 function getAllCounters($link, $omode = "flc", $active_feed = false) {
cf4d339c 2465
e33fe293 2466 if (!$omode) $omode = "flc";
0a6e5382 2467
6a7817c1
AD
2468 $data = getGlobalCounters($link);
2469
2470 $data = array_merge($data, getVirtCounters($link));
2471
2472 if (strchr($omode, "l")) $data = array_merge($data, getLabelCounters($link));
2473 if (strchr($omode, "f")) $data = array_merge($data, getFeedCounters($link, $active_feed));
2474 if (strchr($omode, "t")) $data = array_merge($data, getTagCounters($link));
e33fe293
AD
2475 if (strchr($omode, "c")) {
2476 if (get_pref($link, 'ENABLE_FEED_CATS')) {
6a7817c1 2477 $data = array_merge($data, getCategoryCounters($link));
cf4d339c 2478 }
e33fe293 2479 }
6a7817c1
AD
2480
2481 return $data;
a9cb1f83
AD
2482 }
2483
2484 function getCategoryCounters($link) {
6a7817c1 2485 $ret_arr = array();
bba7c4bf 2486
6a7817c1 2487 /* Labels category */
bba7c4bf 2488
8acc449c 2489 $cv = array("id" => -2, "kind" => "cat",
6a7817c1 2490 "counter" => getCategoryUnread($link, -2));
bba7c4bf 2491
6a7817c1 2492 array_push($ret_arr, $cv);
bba7c4bf 2493
14073c0a
AD
2494 $age_qpart = getMaxAgeSubquery();
2495
31375163
AD
2496 $result = db_query($link, "SELECT id AS cat_id, value AS unread
2497 FROM ttrss_feed_categories, ttrss_cat_counters_cache
2498 WHERE ttrss_cat_counters_cache.feed_id = id AND
2499 ttrss_feed_categories.owner_uid = " . $_SESSION["uid"]);
a9cb1f83
AD
2500
2501 while ($line = db_fetch_assoc($result)) {
22fdebff 2502 $line["cat_id"] = (int) $line["cat_id"];
8a4c759e 2503
8acc449c 2504 $cv = array("id" => $line["cat_id"], "kind" => "cat",
6a7817c1
AD
2505 "counter" => $line["unread"]);
2506
2507 array_push($ret_arr, $cv);
a9cb1f83 2508 }
d232a40f
AD
2509
2510 /* Special case: NULL category doesn't actually exist in the DB */
2511
9798b2b4 2512 $cv = array("id" => 0, "kind" => "cat",
6a7817c1 2513 "counter" => ccache_find($link, 0, $_SESSION["uid"], true));
d232a40f 2514
6a7817c1
AD
2515 array_push($ret_arr, $cv);
2516
2517 return $ret_arr;
a9cb1f83
AD
2518 }
2519
b6d486a3
AD
2520 function getCategoryUnread($link, $cat, $owner_uid = false) {
2521
2522 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
f295c368 2523
bba7c4bf 2524 if ($cat >= 0) {
18664970 2525
bba7c4bf
AD
2526 if ($cat != 0) {
2527 $cat_query = "cat_id = '$cat'";
2528 } else {
2529 $cat_query = "cat_id IS NULL";
2530 }
14073c0a
AD
2531
2532 $age_qpart = getMaxAgeSubquery();
2533
bba7c4bf 2534 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE $cat_query
b6d486a3 2535 AND owner_uid = " . $owner_uid);
bba7c4bf
AD
2536
2537 $cat_feeds = array();
2538 while ($line = db_fetch_assoc($result)) {
2539 array_push($cat_feeds, "feed_id = " . $line["id"]);
2540 }
2541
2542 if (count($cat_feeds) == 0) return 0;
2543
2544 $match_part = implode(" OR ", $cat_feeds);
2545
2546 $result = db_query($link, "SELECT COUNT(int_id) AS unread
14073c0a
AD
2547 FROM ttrss_user_entries,ttrss_entries
2548 WHERE unread = true AND ($match_part) AND id = ref_id
b6d486a3 2549 AND $age_qpart AND owner_uid = " . $owner_uid);
bba7c4bf
AD
2550
2551 $unread = 0;
2552
2553 # this needs to be rewritten
2554 while ($line = db_fetch_assoc($result)) {
2555 $unread += $line["unread"];
2556 }
2557
2558 return $unread;
2559 } else if ($cat == -1) {
59e15af4 2560 return getFeedUnread($link, -1) + getFeedUnread($link, -2) + getFeedUnread($link, -3) + getFeedUnread($link, 0);
bba7c4bf 2561 } else if ($cat == -2) {
f295c368 2562
b2531a28
AD
2563 $result = db_query($link, "
2564 SELECT COUNT(unread) AS unread FROM
2565 ttrss_user_entries, ttrss_labels2, ttrss_user_labels2, ttrss_feeds
2566 WHERE label_id = ttrss_labels2.id AND article_id = ref_id AND
2567 ttrss_labels2.owner_uid = '$owner_uid'
117335bf 2568 AND unread = true AND feed_id = ttrss_feeds.id
b2531a28 2569 AND ttrss_user_entries.owner_uid = '$owner_uid'");
ceb30ba4 2570
b2531a28 2571 $unread = db_fetch_result($result, 0, "unread");
f295c368 2572
b2531a28 2573 return $unread;
f295c368 2574
ceb30ba4 2575 }
f295c368
AD
2576 }
2577
14073c0a
AD
2578 function getMaxAgeSubquery($days = COUNTERS_MAX_AGE) {
2579 if (DB_TYPE == "pgsql") {
25ea2805 2580 return "ttrss_entries.date_updated >
14073c0a
AD
2581 NOW() - INTERVAL '$days days'";
2582 } else {
25ea2805 2583 return "ttrss_entries.date_updated >
14073c0a
AD
2584 DATE_SUB(NOW(), INTERVAL $days DAY)";
2585 }
2586 }
2587
f295c368 2588 function getFeedUnread($link, $feed, $is_cat = false) {
2627f2d0 2589 return getFeedArticles($link, $feed, $is_cat, true, $_SESSION["uid"]);
bdb7369b
AD
2590 }
2591
ceb30ba4
AD
2592 function getLabelUnread($link, $label_id, $owner_uid = false) {
2593 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
2594
2595 $result = db_query($link, "
0112162d 2596 SELECT COUNT(unread) AS unread FROM
b0f24af1
AD
2597 ttrss_user_entries, ttrss_labels2, ttrss_user_labels2, ttrss_feeds
2598 WHERE label_id = ttrss_labels2.id AND article_id = ref_id AND
2599 ttrss_labels2.owner_uid = '$owner_uid' AND ttrss_labels2.id = '$label_id'
117335bf 2600 AND unread = true AND feed_id = ttrss_feeds.id
933ba4ee 2601 AND ttrss_user_entries.owner_uid = '$owner_uid'");
ceb30ba4
AD
2602
2603 if (db_num_rows($result) != 0) {
2604 return db_fetch_result($result, 0, "unread");
2605 } else {
2606 return 0;
2607 }
2608 }
2609
2627f2d0
AD
2610 function getFeedArticles($link, $feed, $is_cat = false, $unread_only = false,
2611 $owner_uid = false) {
2612
22fdebff 2613 $n_feed = (int) $feed;
f295c368 2614
2627f2d0
AD
2615 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
2616
bdb7369b
AD
2617 if ($unread_only) {
2618 $unread_qpart = "unread = true";
2619 } else {
2620 $unread_qpart = "true";
2621 }
2622
14073c0a
AD
2623 $age_qpart = getMaxAgeSubquery();
2624
f295c368 2625 if ($is_cat) {
b6d486a3 2626 return getCategoryUnread($link, $n_feed, $owner_uid);
326469fc
AD
2627 } if ($feed != "0" && $n_feed == 0) {
2628
c5701e70
AD
2629 $feed = db_escape_string($feed);
2630
326469fc
AD
2631 $result = db_query($link, "SELECT SUM((SELECT COUNT(int_id)
2632 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
2633 AND ref_id = id AND $age_qpart
2634 AND $unread_qpart)) AS count FROM ttrss_tags
2635 WHERE owner_uid = $owner_uid AND tag_name = '$feed'");
2636 return db_fetch_result($result, 0, "count");
2637
f295c368 2638 } else if ($n_feed == -1) {
a9cb1f83 2639 $match_part = "marked = true";
e4f4b46f
AD
2640 } else if ($n_feed == -2) {
2641 $match_part = "published = true";
2d24f032
AD
2642 } else if ($n_feed == -3) {
2643 $match_part = "unread = true";
2644
b71e188e 2645 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid);
c1d7e6c3 2646
2d24f032 2647 if (DB_TYPE == "pgsql") {
7608b38a 2648 $match_part .= " AND updated > NOW() - INTERVAL '$intl hour' ";
2d24f032 2649 } else {
7608b38a 2650 $match_part .= " AND updated > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
2d24f032 2651 }
b2531a28
AD
2652 } else if ($n_feed == -4) {
2653 $match_part = "true";
e04c18a2 2654 } else if ($n_feed >= 0) {
831ff047 2655
e8b8485f
AD
2656 $result = db_query($link, "SELECT id FROM ttrss_feeds
2657 WHERE parent_feed = '$n_feed'
2627f2d0 2658 AND owner_uid = " . $owner_uid);
831ff047
AD
2659
2660 if (db_num_rows($result) > 0) {
4919fb42 2661
831ff047
AD
2662 $linked_feeds = array();
2663 while ($line = db_fetch_assoc($result)) {
2664 array_push($linked_feeds, "feed_id = " . $line["id"]);
2665 }
e8b8485f
AD
2666
2667 array_push($linked_feeds, "feed_id = $n_feed");
831ff047
AD
2668
2669 $match_part = implode(" OR ", $linked_feeds);
2670
dbfc4365 2671 $tmp_result = db_query($link, "SELECT COUNT(int_id) AS unread
14073c0a 2672 FROM ttrss_user_entries,ttrss_entries
bdb7369b 2673 WHERE $unread_qpart AND
14073c0a
AD
2674 ttrss_user_entries.ref_id = ttrss_entries.id AND
2675 $age_qpart AND
2676 ($match_part) AND
2627f2d0 2677 owner_uid = " . $owner_uid);
4919fb42
AD
2678
2679 $unread = 0;
2680
2681 # this needs to be rewritten
dbfc4365 2682 while ($line = db_fetch_assoc($tmp_result)) {
4919fb42
AD
2683 $unread += $line["unread"];
2684 }
2685
2686 return $unread;
2687
831ff047 2688 } else {
e04c18a2
AD
2689 if ($n_feed != 0) {
2690 $match_part = "feed_id = '$n_feed'";
2691 } else {
2692 $match_part = "feed_id IS NULL";
2693 }
831ff047 2694 }
a9cb1f83 2695 } else if ($feed < -10) {
318260cc 2696
a9cb1f83
AD
2697 $label_id = -$feed - 11;
2698
ceb30ba4 2699 return getLabelUnread($link, $label_id, $owner_uid);
a9cb1f83 2700
a9cb1f83
AD
2701 }
2702
2703 if ($match_part) {
e04c18a2
AD
2704
2705 if ($n_feed != 0) {
2706 $from_qpart = "ttrss_user_entries,ttrss_feeds,ttrss_entries";
117335bf 2707 $feeds_qpart = "ttrss_user_entries.feed_id = ttrss_feeds.id AND";
e04c18a2
AD
2708 } else {
2709 $from_qpart = "ttrss_user_entries,ttrss_entries";
c3fddd05 2710 $feeds_qpart = '';
e04c18a2
AD
2711 }
2712
dbfc4365 2713 $query = "SELECT count(int_id) AS unread
e04c18a2 2714 FROM $from_qpart WHERE
88040f57 2715 ttrss_user_entries.ref_id = ttrss_entries.id AND
14073c0a 2716 $age_qpart AND
dbfc4365
AD
2717 $feeds_qpart
2718 $unread_qpart AND ($match_part) AND ttrss_user_entries.owner_uid = $owner_uid";
2719
2720 $result = db_query($link, $query);
a9cb1f83
AD
2721
2722 } else {
2723
2724 $result = db_query($link, "SELECT COUNT(post_int_id) AS unread
14073c0a 2725 FROM ttrss_tags,ttrss_user_entries,ttrss_entries
828f22b7 2726 WHERE tag_name = '$feed' AND post_int_id = int_id AND ref_id = ttrss_entries.id
bdb7369b 2727 AND $unread_qpart AND $age_qpart AND
2627f2d0 2728 ttrss_tags.owner_uid = " . $owner_uid);
a9cb1f83
AD
2729 }
2730
2731 $unread = db_fetch_result($result, 0, "unread");
cfb02131 2732
a9cb1f83
AD
2733 return $unread;
2734 }
2735
f3acc32e
AD
2736 function getGlobalUnread($link, $user_id = false) {
2737
2738 if (!$user_id) {
2739 $user_id = $_SESSION["uid"];
2740 }
2741
8a4c759e
AD
2742 $result = db_query($link, "SELECT SUM(value) AS c_id FROM ttrss_counters_cache
2743 WHERE owner_uid = '$user_id' AND feed_id > 0");
2744
2745 $c_id = db_fetch_result($result, 0, "c_id");
2746
a9cb1f83
AD
2747 return $c_id;
2748 }
2749
2750 function getGlobalCounters($link, $global_unread = -1) {
6a7817c1
AD
2751 $ret_arr = array();
2752
a9cb1f83
AD
2753 if ($global_unread == -1) {
2754 $global_unread = getGlobalUnread($link);
2755 }
6a7817c1
AD
2756
2757 $cv = array("id" => "global-unread",
2758 "counter" => $global_unread);
2759
2760 array_push($ret_arr, $cv);
7bf7e4d3
AD
2761
2762 $result = db_query($link, "SELECT COUNT(id) AS fn FROM
2763 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
2764
2765 $subscribed_feeds = db_fetch_result($result, 0, "fn");
2766
6a7817c1
AD
2767 $cv = array("id" => "subscribed-feeds",
2768 "counter" => $subscribed_feeds);
7bf7e4d3 2769
6a7817c1
AD
2770 array_push($ret_arr, $cv);
2771
2772 return $ret_arr;
a9cb1f83
AD
2773 }
2774
95004daf
AD
2775 function getSubscribedFeeds($link) {
2776 $result = db_query($link, "SELECT COUNT(id) AS fn FROM
2777 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
2778
2779 return db_fetch_result($result, 0, "fn");
2780 }
2781
3809b278 2782 function getTagCounters($link) {
6a7817c1
AD
2783
2784 $ret_arr = array();
a9cb1f83 2785
14073c0a
AD
2786 $age_qpart = getMaxAgeSubquery();
2787
a9cb1f83 2788 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
14073c0a
AD
2789 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
2790 AND ref_id = id AND $age_qpart
a9cb1f83 2791 AND unread = true)) AS count FROM ttrss_tags
ef1ac7c7
AD
2792 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name
2793 ORDER BY count DESC LIMIT 55");
a9cb1f83
AD
2794
2795 $tags = array();
2796
2797 while ($line = db_fetch_assoc($result)) {
2798 $tags[$line["tag_name"]] += $line["count"];
2799 }
2800
2801 foreach (array_keys($tags) as $tag) {
2802 $unread = $tags[$tag];
a9cb1f83 2803 $tag = htmlspecialchars($tag);
6a7817c1
AD
2804
2805 $cv = array("id" => $tag,
8acc449c 2806 "kind" => "tag",
6a7817c1
AD
2807 "counter" => $unread);
2808
2809 array_push($ret_arr, $cv);
2810 }
2811
2812 return $ret_arr;
a9cb1f83
AD
2813 }
2814
6a7817c1 2815 function getVirtCounters($link) {
a9cb1f83 2816
ef393de7 2817 $ret_arr = array();
bdb7369b 2818
e04c18a2 2819 for ($i = 0; $i >= -4; $i--) {
bdb7369b 2820
ceb30ba4 2821 $count = getFeedUnread($link, $i);
6a7817c1
AD
2822
2823 $cv = array("id" => $i,
2abc7af0 2824 "counter" => $count);
ceb30ba4 2825
6a7817c1
AD
2826 if (get_pref($link, 'EXTENDED_FEEDLIST'))
2827 $cv["xmsg"] = getFeedArticles($link, $i)." ".__("total");
bdb7369b 2828
6a7817c1 2829 array_push($ret_arr, $cv);
0a6e5382
AD
2830 }
2831
2832 return $ret_arr;
2833 }
2834
11232703 2835 function getLabelCounters($link, $descriptions = false) {
6a7817c1
AD
2836
2837 $ret_arr = array();
0a6e5382
AD
2838
2839 $age_qpart = getMaxAgeSubquery();
2840
3809b278 2841 $owner_uid = $_SESSION["uid"];
bdb7369b 2842
3809b278
AD
2843 $result = db_query($link, "SELECT id, caption FROM ttrss_labels2
2844 WHERE owner_uid = '$owner_uid'");
2845
2846 while ($line = db_fetch_assoc($result)) {
2d24f032 2847
3809b278 2848 $id = -$line["id"] - 11;
e4f4b46f 2849
3809b278
AD
2850 $label_name = $line["caption"];
2851 $count = getFeedUnread($link, $id);
3809b278 2852
6a7817c1 2853 $cv = array("id" => $id,
11232703
AD
2854 "counter" => $count);
2855
2856 if ($descriptions)
2857 $cv["description"] = $label_name;
a9cb1f83 2858
6a7817c1
AD
2859 if (get_pref($link, 'EXTENDED_FEEDLIST'))
2860 $cv["xmsg"] = getFeedArticles($link, $id)." ".__("total");
ef393de7 2861
6a7817c1 2862 array_push($ret_arr, $cv);
3809b278
AD
2863 }
2864
ef393de7 2865 return $ret_arr;
a9cb1f83
AD
2866 }
2867
3809b278 2868 function getFeedCounters($link, $active_feed = false) {
a9cb1f83 2869
6a7817c1
AD
2870 $ret_arr = array();
2871
14073c0a
AD
2872 $age_qpart = getMaxAgeSubquery();
2873
8a4c759e
AD
2874 $query = "SELECT ttrss_feeds.id,
2875 ttrss_feeds.title,
2876 ".SUBSTRING_FOR_DATE."(ttrss_feeds.last_updated,1,19) AS last_updated,
de0a2122
AD
2877 last_error, value AS count
2878 FROM ttrss_feeds, ttrss_counters_cache
8a4c759e
AD
2879 WHERE ttrss_feeds.owner_uid = ".$_SESSION["uid"]."
2880 AND parent_feed IS NULL
55e01d7e 2881 AND ttrss_counters_cache.feed_id = id";
a9cb1f83 2882
14073c0a 2883 $result = db_query($link, $query);
a9cb1f83
AD
2884 $fctrs_modified = false;
2885
2886 while ($line = db_fetch_assoc($result)) {
2887
2888 $id = $line["id"];
de0a2122 2889 $count = $line["count"];
a9cb1f83 2890 $last_error = htmlspecialchars($line["last_error"]);
fb1fb4ab 2891
324944f3 2892 $last_updated = make_local_datetime($link, $line['last_updated'], false);
fb1fb4ab 2893
7defa089 2894 $has_img = feed_has_icon($id);
a9cb1f83 2895
de0a2122
AD
2896 $tmp_result = db_query($link,
2897 "SELECT SUM(value) AS unread FROM ttrss_feeds, ttrss_counters_cache
2898 WHERE parent_feed = '$id' AND feed_id = id");
2899
2900 $count += db_fetch_result($tmp_result, 0, "unread");
a9cb1f83 2901
6a7817c1 2902 $cv = array("id" => $id,
21884958 2903 "updated" => $last_updated,
6a7817c1
AD
2904 "counter" => $count,
2905 "has_img" => (int) $has_img);
a9cb1f83 2906
6a7817c1
AD
2907 if ($last_error)
2908 $cv["error"] = $last_error;
4ffa126e 2909
6a7817c1
AD
2910 if (get_pref($link, 'EXTENDED_FEEDLIST'))
2911 $cv["xmsg"] = getFeedArticles($link, $id)." ".__("total");
bdb7369b 2912
6a7817c1
AD
2913 if ($active_feed && $id == $active_feed)
2914 $cv["title"] = $line["title"];
2915
2916 array_push($ret_arr, $cv);
a9cb1f83 2917
a9cb1f83 2918 }
6a7817c1
AD
2919
2920 return $ret_arr;
a9cb1f83
AD
2921 }
2922
6e7f8d26
AD
2923 function get_pgsql_version($link) {
2924 $result = db_query($link, "SELECT version() AS version");
2925 $version = split(" ", db_fetch_result($result, 0, "version"));
2926 return $version[1];
2927 }
2928
af106b0e
AD
2929 function print_error_xml($code, $add_msg = "") {
2930 global $ERRORS;
2931
2932 $error_msg = $ERRORS[$code];
2933
2934 if ($add_msg) {
2935 $error_msg = "$error_msg; $add_msg";
2936 }
2937
4c2abbc1 2938 print "<rpc-reply>";
af106b0e 2939 print "<error error-code=\"$code\" error-msg=\"$error_msg\"/>";
4c2abbc1 2940 print "</rpc-reply>";
af106b0e 2941 }
956c7629 2942
2b8290cd
CW
2943 /**
2944 * Subscribes the user to the given feed
2945 *
2946 * @param resource $link Database connection
2947 * @param string $url Feed URL to subscribe to
2948 * @param integer $cat_id Category ID the feed shall be added to
2949 * @param string $auth_login (optional) Feed username
2950 * @param string $auth_pass (optional) Feed password
2951 *
2952 * @return integer Status code:
2953 * 0 - OK, Feed already exists
2954 * 1 - OK, Feed added
2955 * 2 - Invalid URL
f33479da 2956 * 3 - URL content is HTML, not a feed
2b8290cd 2957 */
a5819bb3 2958 function subscribe_to_feed($link, $url, $cat_id = 0,
f27de515 2959 $auth_login = '', $auth_pass = '') {
bb0f29a4 2960
f0266f51 2961 $url = fix_url($url);
a5819bb3
AD
2962 if (!validate_feed_url($url)) return 2;
2963
956c7629
AD
2964 if ($cat_id == "0" || !$cat_id) {
2965 $cat_qpart = "NULL";
2966 } else {
2967 $cat_qpart = "'$cat_id'";
2968 }
2969
2970 $result = db_query($link,
2971 "SELECT id FROM ttrss_feeds
a5819bb3 2972 WHERE feed_url = '$url' AND owner_uid = ".$_SESSION["uid"]);
956c7629
AD
2973
2974 if (db_num_rows($result) == 0) {
f33479da 2975 if (url_is_html($url)) {
ec16da86
CW
2976 $feedUrls = get_feeds_from_html($url);
2977 if (count($feedUrls) != 1) {
2978 return 3;
2979 }
2980 //use feed url as new URL
2981 $url = key($feedUrls);
f33479da 2982 }
956c7629
AD
2983
2984 $result = db_query($link,
f27de515
AD
2985 "INSERT INTO ttrss_feeds
2986 (owner_uid,feed_url,title,cat_id, auth_login,auth_pass)
a5819bb3 2987 VALUES ('".$_SESSION["uid"]."', '$url',
f27de515 2988 '[Unknown]', $cat_qpart, '$auth_login', '$auth_pass')");
956c7629
AD
2989
2990 $result = db_query($link,
a5819bb3 2991 "SELECT id FROM ttrss_feeds WHERE feed_url = '$url'
f27de515 2992 AND owner_uid = " . $_SESSION["uid"]);
956c7629
AD
2993
2994 $feed_id = db_fetch_result($result, 0, "id");
2995
2996 if ($feed_id) {
c633e370 2997 update_rss_feed($link, $feed_id, true);
956c7629
AD
2998 }
2999
a5819bb3 3000 return 1;
956c7629 3001 } else {
a5819bb3 3002 return 0;
956c7629
AD
3003 }
3004 }
3005
673d54ca
AD
3006 function print_feed_select($link, $id, $default_id = "",
3007 $attributes = "", $include_all_feeds = true) {
3008
79f3553b 3009 print "<select id=\"$id\" name=\"$id\" $attributes>";
673d54ca 3010 if ($include_all_feeds) {
89cb787e 3011 print "<option value=\"0\">".__('All feeds')."</option>";
673d54ca
AD
3012 }
3013
3014 $result = db_query($link, "SELECT id,title FROM ttrss_feeds
3015 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
3016
3017 if (db_num_rows($result) > 0 && $include_all_feeds) {
3018 print "<option disabled>--------</option>";
3019 }
3020
3021 while ($line = db_fetch_assoc($result)) {
3022 if ($line["id"] == $default_id) {
10249c41 3023 $is_selected = "selected=\"1\"";
673d54ca
AD
3024 } else {
3025 $is_selected = "";
3026 }
b1710666
AD
3027
3028 $title = truncate_string(htmlspecialchars($line["title"]), 40);
3029
79f3553b 3030 printf("<option $is_selected value='%d'>%s</option>",
b1710666 3031 $line["id"], $title);
673d54ca
AD
3032 }
3033
3034 print "</select>";
3035 }
3036
3037 function print_feed_cat_select($link, $id, $default_id = "",
3038 $attributes = "", $include_all_cats = true) {
3039
5c7c7da9 3040 print "<select id=\"$id\" name=\"$id\" default=\"$default_id\" onchange=\"catSelectOnChange(this)\" $attributes>";
673d54ca
AD
3041
3042 if ($include_all_cats) {
d1db26aa 3043 print "<option value=\"0\">".__('Uncategorized')."</option>";
673d54ca
AD
3044 }
3045
3046 $result = db_query($link, "SELECT id,title FROM ttrss_feed_categories
3047 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
3048
3049 if (db_num_rows($result) > 0 && $include_all_cats) {
c00907f2 3050 print "<option disabled=\"1\">--------</option>";
673d54ca
AD
3051 }
3052
3053 while ($line = db_fetch_assoc($result)) {
3054 if ($line["id"] == $default_id) {
10249c41 3055 $is_selected = "selected=\"1\"";
673d54ca 3056 } else {
c00907f2 3057 $is_selected = "";
673d54ca 3058 }
c00907f2
AD
3059
3060 if ($line["title"])
3061 printf("<option $is_selected value='%d'>%s</option>",
3062 $line["id"], htmlspecialchars($line["title"]));
673d54ca
AD
3063 }
3064
5c7c7da9
AD
3065 print "<option value=\"ADD_CAT\">" .__("Add category...") . "</option>";
3066
673d54ca
AD
3067 print "</select>";
3068 }
3069
14f69488
AD
3070 function checkbox_to_sql_bool($val) {
3071 return ($val == "on") ? "true" : "false";
3072 }
86b682ce
AD
3073
3074 function getFeedCatTitle($link, $id) {
3075 if ($id == -1) {
d1db26aa 3076 return __("Special");
86b682ce 3077 } else if ($id < -10) {
d1db26aa 3078 return __("Labels");
86b682ce
AD
3079 } else if ($id > 0) {
3080 $result = db_query($link, "SELECT ttrss_feed_categories.title
3081 FROM ttrss_feeds, ttrss_feed_categories WHERE ttrss_feeds.id = '$id' AND
3082 cat_id = ttrss_feed_categories.id");
3083 if (db_num_rows($result) == 1) {
3084 return db_fetch_result($result, 0, "title");
3085 } else {
d1db26aa 3086 return __("Uncategorized");
86b682ce
AD
3087 }
3088 } else {
3089 return "getFeedCatTitle($id) failed";
3090 }
3091
3092 }
3093
af88c48a
AD
3094 function getFeedIcon($id) {
3095 switch ($id) {
4bee8b5f
AD
3096 case 0:
3097 return "images/archive.png";
3098 break;
af88c48a 3099 case -1:
f65ffc2d 3100 return "images/mark_set.png";
af88c48a
AD
3101 break;
3102 case -2:
b97e6e02 3103 return "images/pub_set.png";
af88c48a
AD
3104 break;
3105 case -3:
3106 return "images/fresh.png";
3107 break;
3108 case -4:
3109 return "images/tag.png";
3110 break;
3111 default:
4bee8b5f
AD
3112 if ($id < -10) {
3113 return "images/label.png";
3114 } else {
3115 return ICONS_URL . "/$id.ico";
3116 }
af88c48a
AD
3117 break;
3118 }
3119 }
3120
86b682ce
AD
3121 function getFeedTitle($link, $id) {
3122 if ($id == -1) {
d1db26aa 3123 return __("Starred articles");
945c243e
AD
3124 } else if ($id == -2) {
3125 return __("Published articles");
2d24f032
AD
3126 } else if ($id == -3) {
3127 return __("Fresh articles");
b2531a28
AD
3128 } else if ($id == -4) {
3129 return __("All articles");
80db1113 3130 } else if ($id === 0 || $id === "0") {
e04c18a2 3131 return __("Archived articles");
86b682ce 3132 } else if ($id < -10) {
76626c72 3133 $label_id = -$id - 11;
ceb30ba4 3134 $result = db_query($link, "SELECT caption FROM ttrss_labels2 WHERE id = '$label_id'");
86b682ce 3135 if (db_num_rows($result) == 1) {
ceb30ba4 3136 return db_fetch_result($result, 0, "caption");
86b682ce
AD
3137 } else {
3138 return "Unknown label ($label_id)";
3139 }
3140
3141 } else if ($id > 0) {
3142 $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$id'");
3143 if (db_num_rows($result) == 1) {
3144 return db_fetch_result($result, 0, "title");
3145 } else {
3146 return "Unknown feed ($id)";
3147 }
3148 } else {
22fdebff 3149 return $id;
86b682ce 3150 }
86b682ce 3151 }
3dd46f19
AD
3152
3153 function get_session_cookie_name() {
3154 return ((!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid" : TTRSS_SESSION_NAME);
3155 }
3ac2b520 3156
f1f3a642
AD
3157 function make_init_param($param, $value) {
3158 return array("param" => $param, "value" => $value);
3159 }
e8bd0da9 3160
d8221301 3161 function make_init_params($link) {
f1f3a642 3162 $params = array();
c9268ed5 3163
f1f3a642
AD
3164 array_push($params, make_init_param("theme", get_user_theme($link)));
3165 array_push($params, make_init_param("theme_options", get_user_theme_options($link)));
3166 array_push($params, make_init_param("daemon_enabled", ENABLE_UPDATE_DAEMON));
3167 array_push($params, make_init_param("feeds_frame_refresh", FEEDS_FRAME_REFRESH));
f6d6e22f 3168
f1f3a642
AD
3169 array_push($params, make_init_param("sign_progress",
3170 theme_image($link, "images/indicator_white.gif")));
ac7bcd71 3171
f1f3a642 3172 array_push($params, make_init_param("sign_progress_tiny",
c7adf760 3173 theme_image($link, "images/indicator_tiny.gif")));
66438f29 3174
f1f3a642
AD
3175 array_push($params, make_init_param("sign_excl",
3176 theme_image($link, "images/sign_excl.png")));
8e9c121b 3177
f1f3a642
AD
3178 array_push($params, make_init_param("sign_info",
3179 theme_image($link, "images/sign_info.png")));
be0801a1 3180
f1f3a642
AD
3181 foreach (array("ON_CATCHUP_SHOW_NEXT_FEED", "HIDE_READ_FEEDS",
3182 "ENABLE_FEED_CATS", "FEEDS_SORT_BY_UNREAD", "CONFIRM_FEED_CATCHUP",
3183 "CDM_AUTO_CATCHUP", "FRESH_ARTICLE_MAX_AGE",
3184 "HIDE_READ_SHOWS_SPECIAL", "HIDE_FEEDLIST") as $param) {
40496720 3185
f1f3a642
AD
3186 array_push($params, make_init_param(strtolower($param),
3187 (int) get_pref($link, $param)));
3188 }
40496720 3189
f1f3a642 3190 array_push($params, make_init_param("icons_url", ICONS_URL));
7b4d02a8 3191
f1f3a642 3192 array_push($params, make_init_param("cookie_lifetime", SESSION_COOKIE_LIFETIME));
fe8d2059 3193
f1f3a642
AD
3194 array_push($params, make_init_param("default_view_mode",
3195 get_pref($link, "_DEFAULT_VIEW_MODE")));
465ff90b 3196
f1f3a642
AD
3197 array_push($params, make_init_param("default_view_limit",
3198 (int) get_pref($link, "_DEFAULT_VIEW_LIMIT")));
527c3bf0 3199
f1f3a642
AD
3200 array_push($params, make_init_param("default_view_order_by",
3201 get_pref($link, "_DEFAULT_VIEW_ORDER_BY")));
22f3e356 3202
f1f3a642
AD
3203 array_push($params, make_init_param("prefs_active_tab",
3204 get_pref($link, "_PREFS_ACTIVE_TAB")));
24c1e1c1 3205
f1f3a642
AD
3206 array_push($params, make_init_param("infobox_disable_overlay",
3207 get_pref($link, "_INFOBOX_DISABLE_OVERLAY")));
a598370d 3208
f1f3a642
AD
3209 array_push($params, make_init_param("bw_limit",
3210 (int) $_SESSION["bw_limit"]));
bd090ab4 3211
f1f3a642
AD
3212 array_push($params, make_init_param("offline_enabled",
3213 (int) get_pref($link, "ENABLE_OFFLINE_READING")));
59b223d7 3214
9b7ecc0a
AD
3215 $result = db_query($link, "SELECT COUNT(*) AS cf FROM
3216 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
3217
3218 $num_feeds = db_fetch_result($result, 0, "cf");
3219
f1f3a642
AD
3220 array_push($params, make_init_param("num_feeds",
3221 (int) $num_feeds));
3222
3223 array_push($params, make_init_param("collapsed_feedlist",
3224 (int) get_pref($link, "_COLLAPSED_FEEDLIST")));
9b7ecc0a 3225
d8221301 3226 return $params;
3ac2b520 3227 }
f54f515f
AD
3228
3229 function print_runtime_info($link) {
3230 print "<runtime-info>";
20361063 3231
9b7ecc0a
AD
3232 $result = db_query($link, "SELECT COUNT(*) AS cf FROM
3233 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
3234
3235 $num_feeds = db_fetch_result($result, 0, "cf");
3236
3237 print "<param key=\"num_feeds\" value=\"".
3238 (int)$num_feeds. "\"/>";
3239
71ad883b
AD
3240 if (ENABLE_UPDATE_DAEMON) {
3241 print "<param key=\"daemon_is_running\" value=\"".
22fdebff 3242 (int) file_is_locked("update_daemon.lock") . "\"/>";
8e00ae9b 3243
9041f58b 3244 if (time() - $_SESSION["daemon_stamp_check"] > 30) {
8e00ae9b 3245
1ea20897 3246 $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
fbae93d8 3247
8e00ae9b 3248 if ($stamp) {
9041f58b
AD
3249 $stamp_delta = time() - $stamp;
3250
3251 if ($stamp_delta > 1800) {
f6854e44 3252 $stamp_check = 0;
8e00ae9b 3253 } else {
f6854e44
AD
3254 $stamp_check = 1;
3255 $_SESSION["daemon_stamp_check"] = time();
8e00ae9b
AD
3256 }
3257
f6854e44
AD
3258 print "<param key=\"daemon_stamp_ok\" value=\"$stamp_check\"/>";
3259
8e00ae9b
AD
3260 $stamp_fmt = date("Y.m.d, G:i", $stamp);
3261
3262 print "<param key=\"daemon_stamp\" value=\"$stamp_fmt\"/>";
3263 }
8e00ae9b 3264 }
71ad883b 3265 }
8e00ae9b 3266
d9fa39f1
AD
3267 if (CHECK_FOR_NEW_VERSION && $_SESSION["access_level"] >= 10) {
3268
8742de78 3269 if ($_SESSION["last_version_check"] + 86400 + rand(-1000, 1000) < time()) {
d9fa39f1
AD
3270 $new_version_details = check_for_update($link);
3271
3272 print "<param key=\"new_version_available\" value=\"".
3273 sprintf("%d", $new_version_details != ""). "\"/>";
3274
3275 $_SESSION["last_version_check"] = time();
3276 }
3277 }
3278
1c9df66e 3279// print "<param key=\"new_version_available\" value=\"1\"/>";
b4507bc2 3280
f54f515f
AD
3281 print "</runtime-info>";
3282 }
ef393de7 3283
88040f57 3284 function getSearchSql($search, $match_on) {
ef393de7 3285
88040f57 3286 $search_query_part = "";
e20c9d88 3287
88040f57
AD
3288 $keywords = split(" ", $search);
3289 $query_keywords = array();
e20c9d88 3290
88040f57 3291 if ($match_on == "both") {
e20c9d88 3292
88040f57 3293 foreach ($keywords as $k) {
eb6c7f42
AD
3294 if (strpos($k, "-") === 0) {
3295 $k = substr($k, 1);
3296 $not = "NOT";
3297 } else {
3298 $not = "";
3299 }
3300
3301 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
3302 OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
88040f57 3303 }
e20c9d88 3304
88040f57 3305 $search_query_part = implode("AND", $query_keywords) . " AND ";
e20c9d88 3306
88040f57 3307 } else if ($match_on == "title") {
e20c9d88 3308
88040f57 3309 foreach ($keywords as $k) {
eb6c7f42
AD
3310 if (strpos($k, "-") === 0) {
3311 $k = substr($k, 1);
3312 $not = "NOT";
3313 } else {
3314 $not = "";
3315 }
3316
3317 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%'))");
88040f57 3318 }
e20c9d88 3319
88040f57 3320 $search_query_part = implode("AND", $query_keywords) . " AND ";
e20c9d88 3321
88040f57
AD
3322 } else if ($match_on == "content") {
3323
3324 foreach ($keywords as $k) {
eb6c7f42
AD
3325 if (strpos($k, "-") === 0) {
3326 $k = substr($k, 1);
3327 $not = "NOT";
3328 } else {
3329 $not = "";
3330 }
3331
3332 array_push($query_keywords, "(UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
88040f57
AD
3333 }
3334 }
3335
3336 $search_query_part = implode("AND", $query_keywords);
3337
3338 return $search_query_part;
3339 }
3340
c36bf4d5
AD
3341 function queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view, $search, $search_mode, $match_on, $override_order = false, $offset = 0, $owner_uid = 0) {
3342
3343 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
c1a0b534 3344
c3fddd05
AD
3345 $ext_tables_part = "";
3346
88040f57
AD
3347 if ($search) {
3348
3349 $search_query_part = getSearchSql($search, $match_on);
3350 $search_query_part .= " AND ";
e20c9d88 3351
ef393de7
AD
3352 } else {
3353 $search_query_part = "";
3354 }
3355
3356 $view_query_part = "";
3357
7b4d02a8 3358 if ($view_mode == "adaptive" || $view_query_part == "noscores") {
ef393de7
AD
3359 if ($search) {
3360 $view_query_part = " ";
3361 } else if ($feed != -1) {
f295c368 3362 $unread = getFeedUnread($link, $feed, $cat_view);
ef393de7 3363 if ($unread > 0) {
ff863e00 3364 $view_query_part = " unread = true AND ";
ef393de7
AD
3365 }
3366 }
3367 }
3368
3369 if ($view_mode == "marked") {
3370 $view_query_part = " marked = true AND ";
3371 }
23d72f39
AD
3372
3373 if ($view_mode == "published") {
3374 $view_query_part = " published = true AND ";
3375 }
3376
ef393de7
AD
3377 if ($view_mode == "unread") {
3378 $view_query_part = " unread = true AND ";
3379 }
8b09eac8
AD
3380
3381 if ($view_mode == "updated") {
3382 $view_query_part = " (last_read is null and unread = false) AND ";
3383 }
3384
ef393de7
AD
3385 if ($limit > 0) {
3386 $limit_query_part = "LIMIT " . $limit;
3387 }
3388
3389 $vfeed_query_part = "";
3390
3391 // override query strategy and enable feed display when searching globally
3392 if ($search && $search_mode == "all_feeds") {
3393 $query_strategy_part = "ttrss_entries.id > 0";
3394 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
22fdebff 3395 /* tags */
ef393de7
AD
3396 } else if (preg_match("/^-?[0-9][0-9]*$/", $feed) == false) {
3397 $query_strategy_part = "ttrss_entries.id > 0";
3398 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
3399 id = feed_id) as feed_title,";
e04c18a2 3400 } else if ($feed > 0 && $search && $search_mode == "this_cat") {
ef393de7
AD
3401
3402 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
0a6c4846
AD
3403
3404 $tmp_result = false;
3405
3406 if ($cat_view) {
3407 $tmp_result = db_query($link, "SELECT id
3408 FROM ttrss_feeds WHERE cat_id = '$feed'");
3409 } else {
3410 $tmp_result = db_query($link, "SELECT id
3411 FROM ttrss_feeds WHERE cat_id = (SELECT cat_id FROM ttrss_feeds
3412 WHERE id = '$feed') AND id != '$feed'");
3413 }
ef393de7
AD
3414
3415 $cat_siblings = array();
3416
3417 if (db_num_rows($tmp_result) > 0) {
3418 while ($p = db_fetch_assoc($tmp_result)) {
3419 array_push($cat_siblings, "feed_id = " . $p["id"]);
3420 }
3421
3422 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
3423 $feed, implode(" OR ", $cat_siblings));
3424
3425 } else {
3426 $query_strategy_part = "ttrss_entries.id > 0";
3427 }
3428
e04c18a2 3429 } else if ($feed > 0) {
ef393de7
AD
3430
3431 if ($cat_view) {
5c365f60 3432
ef393de7
AD
3433 if ($feed > 0) {
3434 $query_strategy_part = "cat_id = '$feed'";
3435 } else {
3436 $query_strategy_part = "cat_id IS NULL";
3437 }
3438
3439 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
5c365f60 3440
ef393de7
AD
3441 } else {
3442 $tmp_result = db_query($link, "SELECT id
3443 FROM ttrss_feeds WHERE parent_feed = '$feed'
3444 ORDER BY cat_id,title");
3445
3446 $parent_ids = array();
3447
3448 if (db_num_rows($tmp_result) > 0) {
3449 while ($p = db_fetch_assoc($tmp_result)) {
3450 array_push($parent_ids, "feed_id = " . $p["id"]);
3451 }
3452
3453 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
3454 $feed, implode(" OR ", $parent_ids));
3455
3456 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3457 } else {
3458 $query_strategy_part = "feed_id = '$feed'";
3459 }
3460 }
bfe5ddfc 3461 } else if ($feed == 0 && !$cat_view) { // archive virtual feed
e04c18a2 3462 $query_strategy_part = "feed_id IS NULL";
bfe5ddfc
AD
3463 } else if ($feed == 0 && $cat_view) { // uncategorized
3464 $query_strategy_part = "cat_id IS NULL";
3465 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ef393de7
AD
3466 } else if ($feed == -1) { // starred virtual feed
3467 $query_strategy_part = "marked = true";
3468 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
e6a38cde
AD
3469 } else if ($feed == -2) { // published virtual feed OR labels category
3470
3471 if (!$cat_view) {
3472 $query_strategy_part = "published = true";
3473 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3474 } else {
3475 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3476
3477 $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
3478
3479 $query_strategy_part = "ttrss_labels2.id = ttrss_user_labels2.label_id AND
3480 ttrss_user_labels2.article_id = ref_id";
3481
3482 }
3483
2d24f032
AD
3484 } else if ($feed == -3) { // fresh virtual feed
3485 $query_strategy_part = "unread = true";
3486
7a22dc2a 3487 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid);
c1d7e6c3 3488
2d24f032 3489 if (DB_TYPE == "pgsql") {
7608b38a 3490 $query_strategy_part .= " AND updated > NOW() - INTERVAL '$intl hour' ";
2d24f032 3491 } else {
7608b38a 3492 $query_strategy_part .= " AND updated > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
2d24f032
AD
3493 }
3494
b2531a28
AD
3495 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3496 } else if ($feed == -4) { // all articles virtual feed
3497 $query_strategy_part = "true";
e4f4b46f 3498 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ef393de7
AD
3499 } else if ($feed <= -10) { // labels
3500 $label_id = -$feed - 11;
3de0261a 3501
ceb30ba4
AD
3502 $query_strategy_part = "label_id = '$label_id' AND
3503 ttrss_labels2.id = ttrss_user_labels2.label_id AND
3504 ttrss_user_labels2.article_id = ref_id";
3de0261a 3505
ef393de7 3506 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ceb30ba4
AD
3507 $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
3508
ef393de7
AD
3509 } else {
3510 $query_strategy_part = "id > 0"; // dumb
3511 }
d6e5706d 3512
7a22dc2a 3513 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
f9b2d27c 3514 $order_by = "date_entered";
d6e5706d 3515 } else {
f9b2d27c 3516 $order_by = "date_entered DESC";
d6e5706d 3517 }
e939722a 3518
7b4d02a8
AD
3519 if ($view_mode != "noscores") {
3520 $order_by = "score DESC, $order_by";
3521 }
48b0c4ec 3522
e939722a
AD
3523 if ($override_order) {
3524 $order_by = $override_order;
3525 }
ef393de7
AD
3526
3527 $feed_title = "";
3528
22fdebff
AD
3529 if ($search) {
3530 $feed_title = "Search results";
3531 } else {
ef393de7 3532 if ($cat_view) {
22fdebff 3533 $feed_title = getCategoryTitle($link, $feed);
ef393de7 3534 } else {
22fdebff
AD
3535 if ((int)$feed == $feed && $feed > 0) {
3536 $result = db_query($link, "SELECT title,site_url,last_error
3537 FROM ttrss_feeds WHERE id = '$feed' AND owner_uid = $owner_uid");
ef393de7 3538
22fdebff
AD
3539 $feed_title = db_fetch_result($result, 0, "title");
3540 $feed_site_url = db_fetch_result($result, 0, "site_url");
3541 $last_error = db_fetch_result($result, 0, "last_error");
3542 } else {
3543 $feed_title = getFeedTitle($link, $feed);
3544 }
88040f57 3545 }
ef393de7
AD
3546 }
3547
62129e67
AD
3548 $content_query_part = "content as content_preview,";
3549
ef393de7
AD
3550 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
3551
3552 if ($feed >= 0) {
3553 $feed_kind = "Feeds";
3554 } else {
3555 $feed_kind = "Labels";
3556 }
3557
95a82c08
AD
3558 if ($limit_query_part) {
3559 $offset_query_part = "OFFSET $offset";
3560 }
3561
d00f22ac 3562 if ($vfeed_query_part && get_pref($link, 'VFEED_GROUP_BY_FEED', $owner_uid)) {
6cfea5c7 3563 if (!$override_order) {
43fc671f
AD
3564 $order_by = "ttrss_feeds.title, $order_by";
3565 }
6cfea5c7
AD
3566 }
3567
e04c18a2
AD
3568 if ($feed != "0") {
3569 $from_qpart = "ttrss_entries,ttrss_user_entries,ttrss_feeds$ext_tables_part";
117335bf 3570 $feed_check_qpart = "ttrss_user_entries.feed_id = ttrss_feeds.id AND";
e04c18a2
AD
3571
3572 } else {
3573 $from_qpart = "ttrss_entries,ttrss_user_entries$ext_tables_part
3574 LEFT JOIN ttrss_feeds ON (feed_id = ttrss_feeds.id)";
3575 }
3576
3ebd7ca5 3577 $query = "SELECT DISTINCT
f9b2d27c 3578 date_entered,
1f64b1be 3579 guid,
ef393de7 3580 ttrss_entries.id,ttrss_entries.title,
46921916 3581 updated,
c7e51de1 3582 note,
494a64ea 3583 unread,feed_id,marked,published,link,last_read,orig_feed_id,
fc2b26a6 3584 ".SUBSTRING_FOR_DATE."(last_read,1,19) as last_read_noms,
ef393de7
AD
3585 $vfeed_query_part
3586 $content_query_part
fc2b26a6 3587 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated_noms,
ff6e357a 3588 author,score
ef393de7 3589 FROM
e04c18a2 3590 $from_qpart
ef393de7 3591 WHERE
e04c18a2 3592 $feed_check_qpart
ef393de7 3593 ttrss_user_entries.ref_id = ttrss_entries.id AND
c36bf4d5 3594 ttrss_user_entries.owner_uid = '$owner_uid' AND
ef393de7
AD
3595 $search_query_part
3596 $view_query_part
3597 $query_strategy_part ORDER BY $order_by
95a82c08 3598 $limit_query_part $offset_query_part";
4bc311fc 3599
b4e75b2a 3600 if ($_REQUEST["debug"]) print $query;
4bc311fc
AD
3601
3602 $result = db_query($link, $query);
ef393de7
AD
3603
3604 } else {
3605 // browsing by tag
3606
3607 $feed_kind = "Tags";
3608
3609 $result = db_query($link, "SELECT
1f64b1be 3610 guid,
c7e51de1 3611 note,
ef393de7 3612 ttrss_entries.id as id,title,
46921916 3613 updated,
494a64ea 3614 unread,feed_id,orig_feed_id,
ef393de7 3615 marked,link,last_read,
fc2b26a6 3616 ".SUBSTRING_FOR_DATE."(last_read,1,19) as last_read_noms,
ef393de7
AD
3617 $vfeed_query_part
3618 $content_query_part
4d0b3607
AD
3619 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated_noms,
3620 score
ef393de7
AD
3621 FROM
3622 ttrss_entries,ttrss_user_entries,ttrss_tags
3623 WHERE
546499a9 3624 ref_id = ttrss_entries.id AND
c36bf4d5 3625 ttrss_user_entries.owner_uid = '$owner_uid' AND
ef393de7
AD
3626 post_int_id = int_id AND tag_name = '$feed' AND
3627 $view_query_part
3628 $search_query_part
3629 $query_strategy_part ORDER BY $order_by
3630 $limit_query_part");
3631 }
3632
c7188969 3633 return array($result, $feed_title, $feed_site_url, $last_error);
22fdebff 3634
ef393de7
AD
3635 }
3636
c36bf4d5 3637 function generate_syndicated_feed($link, $owner_uid, $feed, $is_cat,
23d72f39 3638 $limit, $search, $search_mode, $match_on, $view_mode = false) {
ead2715d 3639
db54143e 3640 $note_style = "float : right; background-color : #fff7d5; border-width : 1px; ".
c7e51de1 3641 "padding : 5px; border-style : dashed; border-color : #e7d796;".
db54143e 3642 "margin-bottom : 1em; color : #9a8c59;";
c7e51de1 3643
ead2715d 3644 if (!$limit) $limit = 30;
18664970
AD
3645
3646 $qfh_ret = queryFeedHeadlines($link, $feed,
23d72f39
AD
3647 $limit, $view_mode, $is_cat, $search, $search_mode,
3648 $match_on, "date_entered DESC", 0, $owner_uid);
18664970
AD
3649
3650 $result = $qfh_ret[0];
59e2aab4 3651 $feed_title = htmlspecialchars($qfh_ret[1]);
18664970
AD
3652 $feed_site_url = $qfh_ret[2];
3653 $last_error = $qfh_ret[3];
3654
a5472764 3655// if (!$feed_site_url) $feed_site_url = "http://localhost/";
4bc64807 3656
a5472764
AD
3657 print "<?xml version=\"1.0\" encoding=\"utf-8\"?>
3658 <?xml-stylesheet type=\"text/xsl\" href=\"rss.xsl\"?>
3659 <rss version=\"2.0\">
3baeeeca
AD
3660 <channel>
3661 <title>$feed_title</title>
4bc64807
AD
3662 <link>$feed_site_url</link>
3663 <description>Feed generated by Tiny Tiny RSS</description>";
3baeeeca
AD
3664
3665 while ($line = db_fetch_assoc($result)) {
3666 print "<item>";
4bc64807 3667 print "<guid>" . htmlspecialchars($line["guid"]) . "</guid>";
3baeeeca 3668 print "<link>" . htmlspecialchars($line["link"]) . "</link>";
0c3d1c68 3669
bc976a8c 3670 $tags = get_article_tags($link, $line["id"], $owner_uid);
0c3d1c68
AD
3671
3672 foreach ($tags as $tag) {
3673 print "<category>" . htmlspecialchars($tag) . "</category>";
3674 }
3675
3baeeeca
AD
3676 $rfc822_date = date('r', strtotime($line["updated"]));
3677
2f0903a6
AD
3678 print "<pubDate>$rfc822_date</pubDate>";
3679
3680 if ($line["author"]) {
3681 print "<author>" . htmlspecialchars($line["author"]) . "</author>";
3682 }
3baeeeca 3683
e5208bac
AD
3684 print "<title><![CDATA[" .
3685 htmlspecialchars($line["title"]) . "]]></title>";
3baeeeca 3686
db54143e
AD
3687 print "<description><![CDATA[";
3688
c7e51de1
AD
3689 if ($line["note"]) {
3690 print "<div style='$note_style'>";
3691 print $line["note"];
3692 print "</div>";
3693 }
db54143e 3694
ceb0cab5 3695 print sanitize_rss($link, $line["content_preview"], false, $owner_uid);
c7e51de1 3696 print "]]></description>";
c7845467
AD
3697
3698 $enclosures = get_article_enclosures($link, $line["id"]);
3699
3700 foreach ($enclosures as $e) {
3701 $type = htmlspecialchars($e['content_type']);
3702 $url = htmlspecialchars($e['content_url']);
3703 $length = $e['duration'];
3704 print "<enclosure url=\"$url\" type=\"$type\" length=\"$length\"/>";
3705 }
3706
3baeeeca
AD
3707 print "</item>";
3708 }
3709
3710 print "</channel></rss>";
18664970
AD
3711
3712 }
3713
0a6c4846
AD
3714 function getCategoryTitle($link, $cat_id) {
3715
bba7c4bf
AD
3716 if ($cat_id == -1) {
3717 return __("Special");
3718 } else if ($cat_id == -2) {
3719 return __("Labels");
0a6c4846 3720 } else {
bba7c4bf
AD
3721
3722 $result = db_query($link, "SELECT title FROM ttrss_feed_categories WHERE
3723 id = '$cat_id'");
3724
3725 if (db_num_rows($result) == 1) {
3726 return db_fetch_result($result, 0, "title");
3727 } else {
3728 return "Uncategorized";
3729 }
0a6c4846
AD
3730 }
3731 }
3732
f45a286b
AD
3733 function strip_tags_long($string, $allowed) {
3734
3735 $config = HTMLPurifier_Config::createDefault();
3736
3737 $config->set('HTML', 'Allowed', $allowed);
3738 $purifier = new HTMLPurifier($config);
3739
3740 return $purifier->purify($string);
3741
3742 }
3743
f738aef1
AD
3744 // http://ru2.php.net/strip-tags
3745
f45a286b 3746/* function strip_tags_long($textstring, $allowed){
f738aef1
AD
3747 while($textstring != strip_tags($textstring, $allowed))
3748 {
3749 while (strlen($textstring) != 0)
3750 {
3751 if (strlen($textstring) > 1024) {
3752 $otherlen = 1024;
3753 } else {
3754 $otherlen = strlen($textstring);
3755 }
3756 $temptext = strip_tags(substr($textstring,0,$otherlen), $allowed);
3757 $safetext .= $temptext;
3758 $textstring = substr_replace($textstring,'',0,$otherlen);
3759 }
3760 $textstring = $safetext;
3761 }
3762 return $textstring;
f45a286b 3763} */
f738aef1
AD
3764
3765
ceb0cab5 3766 function sanitize_rss($link, $str, $force_strip_tags = false, $owner = false) {
60452879 3767 $res = $str;
183ad07b 3768
ceb0cab5
AD
3769 if (!$owner) $owner = $_SESSION["uid"];
3770
3771 if (get_pref($link, "STRIP_UNSAFE_TAGS", $owner) || $force_strip_tags) {
f738aef1 3772
f45a286b
AD
3773// $res = strip_tags_long($res,
3774// "<p><a><i><em><b><strong><code><pre><blockquote><br><img><ul><ol><li>");
3775
7e1265ed 3776 $res = strip_tags_long($res,
f45a286b 3777 "p,a[href],i,em,b,strong,code,pre,blockquote,br,img[src|alt|title],ul,ol,li,h1,h2,h3,h4");
f738aef1 3778
f826eee1
AD
3779 }
3780
ceb0cab5 3781 if (get_pref($link, "STRIP_IMAGES", $owner)) {
8dccabed 3782 $res = preg_replace('/<img[^>]+>/is', '', $res);
7514749d 3783 }
8dccabed 3784
a522a767 3785 if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW', $owner)) {
7514749d 3786 $res = preg_replace("/href=/i", "target=\"_blank\" href=", $res);
8dccabed
AD
3787 }
3788
183ad07b
AD
3789 return $res;
3790 }
b72c3ef8 3791
45004d43
AD
3792 /**
3793 * Send by mail a digest of last articles.
3794 *
3795 * @param mixed $link The database connection.
3796 * @param integer $limit The maximum number of articles by digest.
3797 * @return boolean Return false if digests are not enabled.
3798 */
9cd7c995
AD
3799 function send_headlines_digests($link, $limit = 100) {
3800
1ddba275
AD
3801 if (!DIGEST_ENABLE) return false;
3802
9cd7c995 3803 $user_limit = DIGEST_EMAIL_LIMIT;
5430c959 3804 $days = 1;
9cd7c995
AD
3805
3806 print "Sending digests, batch of max $user_limit users, days = $days, headline limit = $limit\n\n";
3807
3808 if (DB_TYPE == "pgsql") {
3809 $interval_query = "last_digest_sent < NOW() - INTERVAL '$days days'";
3810 } else if (DB_TYPE == "mysql") {
3811 $interval_query = "last_digest_sent < DATE_SUB(NOW(), INTERVAL $days DAY)";
3812 }
3813
3814 $result = db_query($link, "SELECT id,email FROM ttrss_users
3815 WHERE email != '' AND (last_digest_sent IS NULL OR $interval_query)");
3816
3817 while ($line = db_fetch_assoc($result)) {
dc85be2b 3818
9cd7c995
AD
3819 if (get_pref($link, 'DIGEST_ENABLE', $line['id'], false)) {
3820 print "Sending digest for UID:" . $line['id'] . " - " . $line["email"] . " ... ";
3821
dc85be2b
AD
3822 $do_catchup = get_pref($link, 'DIGEST_CATCHUP', $line['id'], false);
3823
9cd7c995
AD
3824 $tuple = prepare_headlines_digest($link, $line["id"], $days, $limit);
3825 $digest = $tuple[0];
3826 $headlines_count = $tuple[1];
dc85be2b 3827 $affected_ids = $tuple[2];
c62a2c21 3828 $digest_text = $tuple[3];
9cd7c995
AD
3829
3830 if ($headlines_count > 0) {
a8931123 3831
c62a2c21 3832 $mail = new PHPMailer();
a8931123 3833
d134e3a3
AD
3834 $mail->PluginDir = "lib/phpmailer/";
3835 $mail->SetLanguage("en", "lib/phpmailer/language/");
a8931123 3836
c62a2c21 3837 $mail->CharSet = "UTF-8";
a8931123 3838
c62a2c21
AD
3839 $mail->From = DIGEST_FROM_ADDRESS;
3840 $mail->FromName = DIGEST_FROM_NAME;
3841 $mail->AddAddress($line["email"], $line["login"]);
c7ddac5c 3842
c62a2c21 3843 if (DIGEST_SMTP_HOST) {
a8931123
AD
3844 $mail->Host = DIGEST_SMTP_HOST;
3845 $mail->Mailer = "smtp";
19a1da0d 3846 $mail->SMTPAuth = DIGEST_SMTP_LOGIN != '';
a8931123
AD
3847 $mail->Username = DIGEST_SMTP_LOGIN;
3848 $mail->Password = DIGEST_SMTP_PASSWORD;
c62a2c21 3849 }
a8931123 3850
c62a2c21 3851 $mail->IsHTML(true);
163a295e 3852 $mail->Subject = DIGEST_SUBJECT;
c62a2c21
AD
3853 $mail->Body = $digest;
3854 $mail->AltBody = $digest_text;
a8931123 3855
c62a2c21 3856 $rc = $mail->Send();
a8931123 3857
c62a2c21 3858 if (!$rc) print "ERROR: " . $mail->ErrorInfo;
a8931123 3859
9cd7c995 3860 print "RC=$rc\n";
a8931123 3861
c62a2c21 3862 if ($rc && $do_catchup) {
dc85be2b 3863 print "Marking affected articles as read...\n";
9968d46f 3864 catchupArticlesById($link, $affected_ids, 0, $line["id"]);
dc85be2b 3865 }
9cd7c995
AD
3866 } else {
3867 print "No headlines\n";
3868 }
019dd98d
AD
3869
3870 db_query($link, "UPDATE ttrss_users SET last_digest_sent = NOW()
3871 WHERE id = " . $line["id"]);
9cd7c995
AD
3872 }
3873 }
3874
cedd3e89
AD
3875 print "All done.\n";
3876
9cd7c995
AD
3877 }
3878
7e3634d9 3879 function prepare_headlines_digest($link, $user_id, $days = 1, $limit = 100) {
c62a2c21 3880
fe7537b5 3881 require_once "lib/MiniTemplator.class.php";
c62a2c21
AD
3882
3883 $tpl = new MiniTemplator;
3884 $tpl_t = new MiniTemplator;
3885
3886 $tpl->readTemplateFromFile("templates/digest_template_html.txt");
3887 $tpl_t->readTemplateFromFile("templates/digest_template.txt");
3888
3889 $tpl->setVariable('CUR_DATE', date('Y/m/d'));
3890 $tpl->setVariable('CUR_TIME', date('G:i'));
3891
3892 $tpl_t->setVariable('CUR_DATE', date('Y/m/d'));
3893 $tpl_t->setVariable('CUR_TIME', date('G:i'));
7e3634d9 3894
dc85be2b
AD
3895 $affected_ids = array();
3896
7e3634d9 3897 if (DB_TYPE == "pgsql") {
25ea2805 3898 $interval_query = "ttrss_entries.date_updated > NOW() - INTERVAL '$days days'";
7e3634d9 3899 } else if (DB_TYPE == "mysql") {
25ea2805 3900 $interval_query = "ttrss_entries.date_updated > DATE_SUB(NOW(), INTERVAL $days DAY)";
7e3634d9
AD
3901 }
3902
3903 $result = db_query($link, "SELECT ttrss_entries.title,
3904 ttrss_feeds.title AS feed_title,
25ea2805 3905 date_updated,
dc85be2b 3906 ttrss_user_entries.ref_id,
7e3634d9 3907 link,
c62a2c21 3908 SUBSTRING(content, 1, 120) AS excerpt,
fc2b26a6 3909 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
7e3634d9
AD
3910 FROM
3911 ttrss_user_entries,ttrss_entries,ttrss_feeds
3912 WHERE
3913 ref_id = ttrss_entries.id AND feed_id = ttrss_feeds.id
3dd9183c 3914 AND include_in_digest = true
7e3634d9 3915 AND $interval_query
448b0abd 3916 AND ttrss_user_entries.owner_uid = $user_id
c62a2c21 3917 AND unread = true
25ea2805 3918 ORDER BY ttrss_feeds.title, date_updated DESC
7e3634d9
AD
3919 LIMIT $limit");
3920
3921 $cur_feed_title = "";
3922
9cd7c995
AD
3923 $headlines_count = db_num_rows($result);
3924
c62a2c21
AD
3925 $headlines = array();
3926
7e3634d9 3927 while ($line = db_fetch_assoc($result)) {
c62a2c21
AD
3928 array_push($headlines, $line);
3929 }
3930
3931 for ($i = 0; $i < sizeof($headlines); $i++) {
3932
3933 $line = $headlines[$i];
dc85be2b
AD
3934
3935 array_push($affected_ids, $line["ref_id"]);
3936
324944f3
AD
3937 $updated = make_local_datetime($link, $line['last_updated'], false,
3938 $user_id);
7e3634d9 3939
c62a2c21
AD
3940 $tpl->setVariable('FEED_TITLE', $line["feed_title"]);
3941 $tpl->setVariable('ARTICLE_TITLE', $line["title"]);
3942 $tpl->setVariable('ARTICLE_LINK', $line["link"]);
3943 $tpl->setVariable('ARTICLE_UPDATED', $updated);
163a295e
AD
3944 $tpl->setVariable('ARTICLE_EXCERPT',
3945 truncate_string(strip_tags($line["excerpt"]), 100));
7e3634d9 3946
c62a2c21
AD
3947 $tpl->addBlock('article');
3948
3949 $tpl_t->setVariable('FEED_TITLE', $line["feed_title"]);
3950 $tpl_t->setVariable('ARTICLE_TITLE', $line["title"]);
3951 $tpl_t->setVariable('ARTICLE_LINK', $line["link"]);
3952 $tpl_t->setVariable('ARTICLE_UPDATED', $updated);
3953// $tpl_t->setVariable('ARTICLE_EXCERPT',
3954// truncate_string(strip_tags($line["excerpt"]), 100));
3955
3956 $tpl_t->addBlock('article');
3957
3958 if ($headlines[$i]['feed_title'] != $headlines[$i+1]['feed_title']) {
3959 $tpl->addBlock('feed');
3960 $tpl_t->addBlock('feed');
7e3634d9
AD
3961 }
3962
7e3634d9
AD
3963 }
3964
c62a2c21
AD
3965 $tpl->addBlock('digest');
3966 $tpl->generateOutputToString($tmp);
3967
3968 $tpl_t->addBlock('digest');
3969 $tpl_t->generateOutputToString($tmp_t);
7e3634d9 3970
c62a2c21 3971 return array($tmp, $headlines_count, $affected_ids, $tmp_t);
7e3634d9
AD
3972 }
3973
73495fd1 3974 function check_for_update($link) {
b6d486a3 3975 $releases_feed = "http://tt-rss.org/releases.rss";
b72c3ef8
AD
3976
3977 if (!CHECK_FOR_NEW_VERSION || $_SESSION["access_level"] < 10) {
3978 return;
3979 }
3980
3981 error_reporting(0);
63def06c 3982 if (DEFAULT_UPDATE_METHOD == "1") {
f67d9754
AD
3983 $rss = new SimplePie();
3984 $rss->set_useragent(SIMPLEPIE_USERAGENT . MAGPIE_USER_AGENT_EXT);
4148e809 3985// $rss->set_timeout(MAGPIE_FETCH_TIME_OUT);
f67d9754
AD
3986 $rss->set_feed_url($fetch_url);
3987 $rss->set_output_encoding('UTF-8');
3988 $rss->init();
3989 } else {
3990 $rss = fetch_rss($releases_feed);
3991 }
b72c3ef8
AD
3992 error_reporting (DEFAULT_ERROR_LEVEL);
3993
3994 if ($rss) {
3995
78a5c296 3996 if (DEFAULT_UPDATE_METHOD == "1") {
f67d9754
AD
3997 $items = $rss->get_items();
3998 } else {
3999 $items = $rss->items;
b72c3ef8 4000
f67d9754
AD
4001 if (!$items || !is_array($items)) $items = $rss->entries;
4002 if (!$items || !is_array($items)) $items = $rss;
4003 }
b72c3ef8 4004
da412ad3 4005 if (!is_array($items) || count($items) == 0) {
b72c3ef8 4006 return;
da412ad3 4007 }
b72c3ef8 4008
a41d2c65 4009 $latest_item = $items[0];
b72c3ef8 4010
78a5c296 4011 if (DEFAULT_UPDATE_METHOD == "1") {
f67d9754
AD
4012 $last_title = $latest_item->get_title();
4013 } else {
4014 $last_title = $latest_item["title"];
4015 }
b72c3ef8 4016
f67d9754
AD
4017 $latest_version = trim(preg_replace("/(Milestone)|(completed)/", "", $last_title));
4018
78a5c296 4019 if (DEFAULT_UPDATE_METHOD == "1") {
dcf7fd08
AD
4020 $release_url = sanitize_rss($link, $latest_item->get_link());
4021 $content = sanitize_rss($link, $latest_item->get_description());
f67d9754
AD
4022 } else {
4023 $release_url = sanitize_rss($link, $latest_item["link"]);
4024 $content = sanitize_rss($link, $latest_item["description"]);
4025 }
48e1a342 4026
a41d2c65 4027 if (version_compare(VERSION, $latest_version) == -1) {
73495fd1
AD
4028 return sprintf("New version of Tiny-Tiny RSS (%s) is available:",
4029 $latest_version)."<div class='milestoneDetails'>$content</div>";
4030 } else {
4031 return false;
4032 }
b72c3ef8
AD
4033 }
4034 }
472782e8 4035
18eddb2c
AD
4036 function markArticlesById($link, $ids, $cmode) {
4037
4038 $tmp_ids = array();
4039
4040 foreach ($ids as $id) {
4041 array_push($tmp_ids, "ref_id = '$id'");
4042 }
4043
4044 $ids_qpart = join(" OR ", $tmp_ids);
4045
4046 if ($cmode == 0) {
4047 db_query($link, "UPDATE ttrss_user_entries SET
4048 marked = false,last_read = NOW()
4049 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4050 } else if ($cmode == 1) {
4051 db_query($link, "UPDATE ttrss_user_entries SET
4052 marked = true
4053 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4054 } else {
4055 db_query($link, "UPDATE ttrss_user_entries SET
4056 marked = NOT marked,last_read = NOW()
4057 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4058 }
4059 }
4060
e4f4b46f
AD
4061 function publishArticlesById($link, $ids, $cmode) {
4062
4063 $tmp_ids = array();
4064
4065 foreach ($ids as $id) {
4066 array_push($tmp_ids, "ref_id = '$id'");
4067 }
4068
4069 $ids_qpart = join(" OR ", $tmp_ids);
4070
4071 if ($cmode == 0) {
4072 db_query($link, "UPDATE ttrss_user_entries SET
4073 published = false,last_read = NOW()
4074 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4075 } else if ($cmode == 1) {
4076 db_query($link, "UPDATE ttrss_user_entries SET
4077 published = true
4078 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4079 } else {
4080 db_query($link, "UPDATE ttrss_user_entries SET
4081 published = NOT published,last_read = NOW()
4082 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4083 }
4084 }
4085
9968d46f
AD
4086 function catchupArticlesById($link, $ids, $cmode, $owner_uid = false) {
4087
4088 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
ed41f171 4089 if (count($ids) == 0) return;
472782e8
AD
4090
4091 $tmp_ids = array();
4092
4093 foreach ($ids as $id) {
4094 array_push($tmp_ids, "ref_id = '$id'");
4095 }
4096
4097 $ids_qpart = join(" OR ", $tmp_ids);
4098
4099 if ($cmode == 0) {
4100 db_query($link, "UPDATE ttrss_user_entries SET
4101 unread = false,last_read = NOW()
9968d46f 4102 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8
AD
4103 } else if ($cmode == 1) {
4104 db_query($link, "UPDATE ttrss_user_entries SET
4105 unread = true
9968d46f 4106 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8
AD
4107 } else {
4108 db_query($link, "UPDATE ttrss_user_entries SET
4109 unread = NOT unread,last_read = NOW()
9968d46f 4110 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8 4111 }
0737b95a
AD
4112
4113 /* update ccache */
4114
4115 $result = db_query($link, "SELECT DISTINCT feed_id FROM ttrss_user_entries
4116 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
4117
4118 while ($line = db_fetch_assoc($result)) {
4119 ccache_update($link, $line["feed_id"], $owner_uid);
4120 }
472782e8
AD
4121 }
4122
e097e8be
AD
4123 function catchupArticleById($link, $id, $cmode) {
4124
4125 if ($cmode == 0) {
4126 db_query($link, "UPDATE ttrss_user_entries SET
4127 unread = false,last_read = NOW()
4128 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4129 } else if ($cmode == 1) {
4130 db_query($link, "UPDATE ttrss_user_entries SET
4131 unread = true
4132 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4133 } else {
4134 db_query($link, "UPDATE ttrss_user_entries SET
4135 unread = NOT unread,last_read = NOW()
4136 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4137 }
ab197ae1
AD
4138
4139 $feed_id = getArticleFeed($link, $id);
4140 ccache_update($link, $feed_id, $_SESSION["uid"]);
e097e8be
AD
4141 }
4142
1f64b1be
AD
4143 function make_guid_from_title($title) {
4144 return preg_replace("/[ \"\',.:;]/", "-",
fefef828 4145 mb_strtolower(strip_tags($title), 'utf-8'));
1f64b1be
AD
4146 }
4147
11befbb2 4148 function print_headline_subtoolbar($link, $feed_site_url, $feed_title,
0ef68e6f 4149 $feed_id, $is_cat, $search, $match_on,
23d72f39 4150 $search_mode, $view_mode) {
e6c115b2 4151
0ef68e6f 4152 print "<div class=\"headlinesSubToolbar\">";
11befbb2 4153
e6c115b2
AD
4154 $page_prev_link = "javascript:viewFeedGoPage(-1)";
4155 $page_next_link = "javascript:viewFeedGoPage(1)";
4156 $page_first_link = "javascript:viewFeedGoPage(0)";
203de776 4157
eb28b131
AD
4158 $catchup_page_link = "javascript:catchupPage()";
4159 $catchup_feed_link = "javascript:catchupCurrentFeed()";
a5ae125a 4160 $catchup_sel_link = "javascript:catchupSelection()";
c6008b62 4161
e04c18a2
AD
4162 $archive_sel_link = "javascript:archiveSelection()";
4163 $delete_sel_link = "javascript:deleteSelection()";
4164
11befbb2
AD
4165 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
4166
c6008b62
AD
4167 $sel_all_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, '', true)";
4168 $sel_unread_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true)";
4169 $sel_none_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false)";
e75d70b5 4170 $sel_inv_link = "javascript:invertHeadlineSelection()";
11befbb2 4171
c6008b62
AD
4172 $tog_unread_link = "javascript:selectionToggleUnread()";
4173 $tog_marked_link = "javascript:selectionToggleMarked()";
e4f4b46f 4174 $tog_published_link = "javascript:selectionTogglePublished()";
11befbb2 4175
c6008b62 4176 } else {
11befbb2 4177
c6008b62
AD
4178 $sel_all_link = "javascript:cdmSelectArticles('all')";
4179 $sel_unread_link = "javascript:cdmSelectArticles('unread')";
4180 $sel_none_link = "javascript:cdmSelectArticles('none')";
4181
e75d70b5
AD
4182 $sel_inv_link = "javascript:invertHeadlineSelection()";
4183
50eefedb
AD
4184 $tog_unread_link = "javascript:selectionToggleUnread()";
4185 $tog_marked_link = "javascript:selectionToggleMarked()";
4186 $tog_published_link = "javascript:selectionTogglePublished()";
c6008b62
AD
4187
4188 }
4189
0ef68e6f
AD
4190 print "<div id=\"subtoolbar_ftitle\">";
4191
4192 if ($feed_site_url) {
c3fddd05 4193 $target = "target=\"_blank\"";
9fdeb07e 4194 print "<a title=\"".__("Visit the website")."\"$target href=\"$feed_site_url\">".
0ef68e6f
AD
4195 truncate_string($feed_title,30)."</a>";
4196 } else {
5163fc70
AD
4197 if ($feed_id < -10) {
4198 $label_id = -11-$feed_id;
4199
4200 $result = db_query($link, "SELECT fg_color, bg_color
4201 FROM ttrss_labels2 WHERE id = '$label_id' AND owner_uid = " .
4202 $_SESSION["uid"]);
4203
4204 if (db_num_rows($result) != 0) {
4205 $fg_color = db_fetch_result($result, 0, "fg_color");
4206 $bg_color = db_fetch_result($result, 0, "bg_color");
4207
4208 print "<span style='background : $bg_color; color : $fg_color'>";
4209 print $feed_title;
4210 print "</span>";
4211 } else {
4212 print $feed_title;
4213 }
4214
4215 } else {
4216 print $feed_title;
4217 }
0ef68e6f
AD
4218 }
4219
4220 if ($search) {
4221 $search_q = "&q=$search&m=$match_on&smode=$search_mode";
c3fddd05
AD
4222 } else {
4223 $search_q = "";
0ef68e6f
AD
4224 }
4225
aa1c2aa4
AD
4226 // Adaptive doesn't really make any sense for generated feeds
4227 // All Articles is the default, so no need to insert it either
4228 if ($view_mode == "adaptive" || $view_mode == "all_articles")
4229 $view_mode = "";
4230 else
4231 $view_mode = "&view-mode=$view_mode";
4232
8801fb01 4233 $rss_link = htmlspecialchars(get_self_url_prefix() .
aa1c2aa4 4234 "/backend.php?op=rss&id=$feed_id&is_cat=$is_cat$view_mode$search_q");
8801fb01
AD
4235
4236 #print "
4237 # <a target=\"_blank\"
4238 # title=\"".__("View as RSS feed")."\"
4239 # href=\"$rss_link\">
4240 # <img class=\"noborder\" src=\"images/feed-icon-12x12.png\"></a>";
f0361de2 4241
0ef68e6f 4242 print "
8801fb01 4243 <a href=\"#\"
9c5b98ad 4244 title=\"".__("View as RSS feed")."\"
8801fb01 4245 onclick=\"displayDlg('generatedFeed', '$feed_id:$is_cat:$rss_link')\">
c0105d4e 4246 <img class=\"noborder\" style=\"vertical-align : middle\" src=\"images/feed-icon-12x12.png\"></a>";
b8a637f3 4247
0ef68e6f 4248 print "</div>";
ceb30ba4 4249
d75ed3eb
AD
4250 print __('Select:')."
4251 <a href=\"$sel_all_link\">".__('All')."</a>,
4252 <a href=\"$sel_unread_link\">".__('Unread')."</a>,
4253 <a href=\"$sel_inv_link\">".__('Invert')."</a>,
4254 <a href=\"$sel_none_link\">".__('None')."</a></li>";
bf3c9838 4255
d75ed3eb 4256 print "&nbsp;&nbsp;";
bf3c9838 4257
d75ed3eb
AD
4258 print "<span
4259 onmouseover=\"enable_selection(false)\"
4260 onmouseout=\"enable_selection(true)\"
4261 onclick=\"toggleHeadlineActions()\" id=\"headlineActionsDrop\">".
7d939be7
AD
4262 __("Actions...") . "&nbsp;&nbsp;<img width='11' height'7'
4263 src=\"images/down_arrow.png\">
d75ed3eb 4264 </span>";
bf3c9838 4265
d75ed3eb 4266 print "<ul id=\"headlineActionsBody\" style=\"display : none\">";
bf3c9838 4267
d75ed3eb
AD
4268 print "<li class=\"insensitive\">".__('Selection toggle:')."</li>
4269 <li onclick=\"$tog_unread_link\">&nbsp;&nbsp;".__('Unread')."</li>
4270 <li onclick=\"$tog_marked_link\">&nbsp;&nbsp;".__('Starred')."</li>
4271 <li onclick=\"$tog_published_link\">&nbsp;&nbsp;".__('Published')."</li>
938052ba
AD
4272 <li class=\"insensitive\">".__('Selection:')."</li>
4273 <li onclick=\"$catchup_sel_link\">&nbsp;&nbsp;".__('Mark as read')."</li>";
bf3c9838 4274
938052ba
AD
4275// print "<li onclick=\"$catchup_feed_link\">&nbsp;&nbsp;".__('Entire feed').
4276// "</li>";
bf3c9838 4277
e04c18a2 4278 if ($feed_id != "0") {
938052ba 4279 print "<li onclick=\"$archive_sel_link\">&nbsp;&nbsp;".__('Archive')."</li>";
e04c18a2 4280 } else {
938052ba 4281 print "<li onclick=\"$archive_sel_link\">&nbsp;&nbsp;".__('Move back')."</li>";
84d7198a 4282 print "<li onclick=\"$delete_sel_link\">&nbsp;&nbsp;".__('Delete')."</li>";
e04c18a2 4283
84d7198a 4284 }
938052ba 4285
f72a7b66
AD
4286 print "<li onclick=\"emailArticle(false)\">&nbsp;&nbsp;".
4287 __('Forward by email')."</li>";
4288
d75ed3eb
AD
4289 //print "<li><span class=\"insensitive\">--------</span></li>";
4290 print "<li class=\"insensitive\">".__('Assign label:')."</li>";
bf3c9838 4291
79c88e11 4292 print_labels_headlines_dropdown($link, $feed_id);
c6008b62 4293
f0361de2 4294 print "<li class=\"insensitive\">".__('Feed:')."</li>";
7d4dba8f 4295 print "<li onclick=\"displayDlg('generatedFeed', '$feed_id:$is_cat:$rss_link')\">&nbsp;&nbsp;".__('View as RSS')."</li>";
f0361de2 4296
d75ed3eb 4297 print "</ul>";
11befbb2 4298
0ef68e6f 4299 print "</div>";
11befbb2
AD
4300 }
4301
f0855b88
AD
4302 function printCategoryHeader($link, $cat_id, $hidden = false, $can_browse = true,
4303 $title_override = false) {
bba7c4bf 4304
f0855b88
AD
4305 if (!$title_override)
4306 $tmp_category = getCategoryTitle($link, $cat_id);
4307 else
4308 $tmp_category = $title_override;
cc914918
AD
4309
4310 if ($cat_id > 0) {
4311 $cat_unread = ccache_find($link, $cat_id, $_SESSION["uid"], true);
b2531a28 4312 } else if ($cat_id == 0 || $cat_id == -2) {
cc914918
AD
4313 $cat_unread = getCategoryUnread($link, $cat_id);
4314 }
bba7c4bf
AD
4315
4316 if ($hidden) {
4317 $holder_style = "display:none;";
66a251f9 4318 $ellipsis = "…";
bba7c4bf
AD
4319 } else {
4320 $holder_style = "";
4321 $ellipsis = "";
4322 }
4323
4324 $catctr_class = ($cat_unread > 0) ? "catCtrHasUnread" : "catCtrNoUnread";
4325
bba7c4bf 4326 if ($can_browse) {
4c41e58f
AD
4327 $browse_cat_link = "onclick=\"javascript:viewCategory($cat_id)\"";
4328 $inner_title_class = "catTitle";
bba7c4bf 4329 } else {
4c41e58f
AD
4330 $browse_cat_link = "";
4331 $inner_title_class = "catTitleNL";
bba7c4bf
AD
4332 }
4333
2baedabe 4334 $cat_class = "feedCat";
364e391e
AD
4335
4336 print "<li class=\"$cat_class\" id=\"FCAT-$cat_id\">
98fb6193 4337 <img onclick=\"toggleCollapseCat($cat_id)\" class=\"catCollapse\"
4c41e58f
AD
4338 title=\"".__('Click to collapse category')."\"
4339 src=\"images/cat-collapse.png\"><span class=\"$inner_title_class\"
c6dbeedc 4340 id=\"FCATN-$cat_id\" $browse_cat_link/>$tmp_category</span>";
4c41e58f
AD
4341
4342 print "<span id=\"FCAP-$cat_id\">";
4343
dda1396f 4344 print " <span id=\"FCATCTR-$cat_id\"
bba7c4bf
AD
4345 class=\"$catctr_class\">($cat_unread)</span> $ellipsis";
4346
4c41e58f 4347 print "</span>";
bba7c4bf 4348
782ddd70 4349 //print "</li>";
bba7c4bf 4350
60ea2377 4351 print "<ul class=\"feedCatList\" id=\"FCATLIST-$cat_id\" style='$holder_style'>";
7abee14f 4352
bba7c4bf
AD
4353 }
4354
f407c086
AD
4355 function outputFeedList($link, $tags = false) {
4356
3bd9a780 4357 print "<ul class=\"feedList\" id=\"feedList\">";
f407c086
AD
4358
4359 $owner_uid = $_SESSION["uid"];
4360
cf4d339c 4361 /* virtual feeds */
f407c086 4362
cf4d339c 4363 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3b086176 4364
57937c42 4365 $cat_hidden = get_pref($link, "_COLLAPSED_SPECIAL");
3b086176 4366
bba7c4bf 4367 printCategoryHeader($link, -1, $cat_hidden, false);
cf4d339c 4368 }
f407c086 4369
e1050aec 4370 foreach (array(-4, -3, -1, -2, 0) as $i) {
4bee8b5f
AD
4371 printFeedEntry($i, "virt", false, false,
4372 false, $link);
4373 }
e4f4b46f 4374
cf4d339c 4375 if (get_pref($link, 'ENABLE_FEED_CATS')) {
8b803aa2 4376 print "</ul></li>";
cf4d339c 4377 }
f407c086 4378
cf4d339c 4379 if (!$tags) {
f407c086 4380
ceb30ba4 4381
2eb9c95c 4382 $result = db_query($link, "SELECT * FROM
ceb30ba4 4383 ttrss_labels2 WHERE owner_uid = '$owner_uid' ORDER by caption");
f407c086
AD
4384
4385 if (db_num_rows($result) > 0) {
4386 if (get_pref($link, 'ENABLE_FEED_CATS')) {
bd64489f 4387
57937c42 4388 $cat_hidden = get_pref($link, "_COLLAPSED_LABELS");
bd64489f 4389
e6a38cde 4390 printCategoryHeader($link, -2, $cat_hidden, true);
bd64489f 4391
f407c086 4392 } else {
3bd9a780 4393 print "<li><hr></li>";
f407c086
AD
4394 }
4395 }
4396
4397 while ($line = db_fetch_assoc($result)) {
4398
f407c086
AD
4399 $label_id = -$line['id'] - 11;
4400 $count = getFeedUnread($link, $label_id);
f407c086
AD
4401
4402 printFeedEntry($label_id,
4bee8b5f
AD
4403 "label", $line["caption"],
4404 $count, false, $link,
2eb9c95c
AD
4405 false, false, false,
4406 $line['fg_color'], $line['bg_color']);
f407c086
AD
4407
4408 }
4409
4410 if (db_num_rows($result) > 0) {
4411 if (get_pref($link, 'ENABLE_FEED_CATS')) {
4412 print "</ul>";
4413 }
ceb30ba4 4414 }
f407c086 4415
f407c086
AD
4416
4417 if (!get_pref($link, 'ENABLE_FEED_CATS')) {
3bd9a780 4418 print "<li><hr></li>";
f407c086
AD
4419 }
4420
4421 if (get_pref($link, 'ENABLE_FEED_CATS')) {
4422 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
9d393c84 4423 $order_by_qpart = "order_id,category,unread DESC,title";
f407c086 4424 } else {
9d393c84 4425 $order_by_qpart = "order_id,category,title";
f407c086
AD
4426 }
4427 } else {
4428 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
4429 $order_by_qpart = "unread DESC,title";
4430 } else {
4431 $order_by_qpart = "title";
4432 }
4433 }
4434
14073c0a
AD
4435 $age_qpart = getMaxAgeSubquery();
4436
99509451 4437 $query = "SELECT ttrss_feeds.*,
fc2b26a6 4438 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated_noms,
f407c086
AD
4439 cat_id,last_error,
4440 ttrss_feed_categories.title AS category,
d7135e2a
AD
4441 ttrss_feed_categories.collapsed,
4442 value AS unread
4443 FROM ttrss_feeds LEFT JOIN ttrss_feed_categories
4444 ON (ttrss_feed_categories.id = cat_id)
4445 LEFT JOIN ttrss_counters_cache
4446 ON
4447 (ttrss_feeds.id = feed_id)
f407c086 4448 WHERE
f407c086 4449 ttrss_feeds.owner_uid = '$owner_uid' AND parent_feed IS NULL
99509451
AD
4450 ORDER BY $order_by_qpart";
4451
4452 $result = db_query($link, $query);
f407c086 4453
b4e75b2a 4454 $actid = $_REQUEST["actid"];
f407c086
AD
4455
4456 /* real feeds */
4457
4458 $lnum = 0;
4459
4460 $total_unread = 0;
4461
4462 $category = "";
f407c086
AD
4463
4464 while ($line = db_fetch_assoc($result)) {
4465
70c9b173 4466 $feed = htmlspecialchars(trim($line["title"]));
0f39ae20
AD
4467
4468 if (!$feed) $feed = "[Untitled]";
4469
f407c086 4470 $feed_id = $line["id"];
d7135e2a 4471 $unread = $line["unread"];
f407c086 4472
b4e75b2a 4473 $subop = $_REQUEST["subop"];
f407c086 4474
324944f3
AD
4475 $last_updated = make_local_datetime($link, $line['last_updated_noms'],
4476 false);
f407c086
AD
4477
4478 $rtl_content = sql_bool_to_bool($line["rtl_content"]);
4479
4480 if ($rtl_content) {
4481 $rtl_tag = "dir=\"RTL\"";
4482 } else {
4483 $rtl_tag = "";
4484 }
4485
4486 $tmp_result = db_query($link,
de0a2122
AD
4487 "SELECT SUM(value) AS unread FROM ttrss_feeds, ttrss_counters_cache
4488 WHERE parent_feed = '$feed_id' AND feed_id = id");
f407c086 4489
de0a2122
AD
4490 $unread += db_fetch_result($tmp_result, 0, "unread");
4491
f407c086
AD
4492 $cat_id = $line["cat_id"];
4493
4494 $tmp_category = $line["category"];
4495
4496 if (!$tmp_category) {
d1db26aa 4497 $tmp_category = __("Uncategorized");
f407c086
AD
4498 }
4499
4500 // $class = ($lnum % 2) ? "even" : "odd";
4501
4502 if ($line["last_error"]) {
4503 $class = "error";
4504 } else {
4505 $class = "feed";
4506 }
4507
f407c086
AD
4508 if ($actid == $feed_id) {
4509 $class .= "Selected";
4510 }
4511
4512 $total_unread += $unread;
4513
4514 if ($category != $tmp_category && get_pref($link, 'ENABLE_FEED_CATS')) {
4515
4516 if ($category) {
8b803aa2 4517 print "</ul></li>";
f407c086
AD
4518 }
4519
4520 $category = $tmp_category;
4521
7abee14f 4522 $collapsed = sql_bool_to_bool($line["collapsed"]);
f407c086
AD
4523
4524 // workaround for NULL category
d1db26aa 4525 if ($category == __("Uncategorized")) {
57937c42 4526 $collapsed = get_pref($link, "_COLLAPSED_UNCAT");
f407c086
AD
4527 }
4528
22fdebff 4529 $cat_id = (int) $cat_id;
f407c086 4530
7abee14f
AD
4531 printCategoryHeader($link, $cat_id, $collapsed, true);
4532
f407c086
AD
4533 }
4534
4535 printFeedEntry($feed_id, $class, $feed, $unread,
4bee8b5f 4536 false, $link, $rtl_content,
f407c086
AD
4537 $last_updated, $line["last_error"]);
4538
4539 ++$lnum;
4540 }
4541
4542 if (db_num_rows($result) == 0) {
f0855b88
AD
4543
4544 if (!get_pref($link, 'ENABLE_FEED_CATS')) {
4545 print "<li style='text-align : center'><a href=\"#\"
4546 onclick=\"quickAddFeed()\">".
4547 __('Subscribe to feed...')."</a></li>";
4548 } else {
4549 printCategoryHeader($link, -1, false, false, "Feeds");
4550
4551 print "<li><a href=\"#\"
4552 onclick=\"quickAddFeed()\">".
4553 __('Subscribe to feed...')."</a></li>";
4554
4555 print "</ul>";
4556 }
f407c086
AD
4557 }
4558
4559 } else {
4560
4561 // tags
4562
4563/* $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
4564 FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
4565 post_int_id = ttrss_user_entries.int_id AND
4566 unread = true AND ref_id = ttrss_entries.id
4567 AND ttrss_tags.owner_uid = '$owner_uid' GROUP BY tag_name
4568 UNION
4569 select tag_name,0 as count FROM ttrss_tags WHERE owner_uid = '$owner_uid'
4570 ORDER BY tag_name"); */
4571
4572 if (get_pref($link, 'ENABLE_FEED_CATS')) {
d1db26aa 4573 print "<li class=\"feedCat\">".__('Tags')."</li>";
60ea2377 4574 print "<ul class=\"feedCatList\">";
f407c086
AD
4575 }
4576
14073c0a
AD
4577 $age_qpart = getMaxAgeSubquery();
4578
f407c086 4579 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
14073c0a
AD
4580 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
4581 AND ref_id = id AND $age_qpart
f407c086 4582 AND unread = true)) AS count FROM ttrss_tags
ef1ac7c7
AD
4583 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name
4584 ORDER BY count DESC LIMIT 50");
f407c086
AD
4585
4586 $tags = array();
4587
4588 while ($line = db_fetch_assoc($result)) {
4589 $tags[$line["tag_name"]] += $line["count"];
4590 }
4591
4592 foreach (array_keys($tags) as $tag) {
4593
4594 $unread = $tags[$tag];
f407c086 4595 $class = "tag";
326469fc 4596
f407c086
AD
4597 printFeedEntry($tag, $class, $tag, $unread, "images/tag.png", $link);
4598
4599 }
4600
4601 if (db_num_rows($result) == 0) {
4602 print "<li>No tags to display.</li>";
4603 }
4604
4605 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3bd9a780 4606 print "</ul>";
f407c086
AD
4607 }
4608
4609 }
4610
4611 print "</ul>";
4612
4613 }
4614
bc976a8c 4615 function get_article_tags($link, $id, $owner_uid = 0) {
0b126ac2 4616
bd3f2ade
AD
4617 global $memcache;
4618
0b126ac2
AD
4619 $a_id = db_escape_string($id);
4620
bc976a8c
AD
4621 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
4622
bd3f2ade 4623 $query = "SELECT DISTINCT tag_name,
0c3d1c68 4624 owner_uid as owner FROM
0b126ac2 4625 ttrss_tags WHERE post_int_id = (SELECT int_id FROM ttrss_user_entries WHERE
bd3f2ade 4626 ref_id = '$a_id' AND owner_uid = '$owner_uid' LIMIT 1) ORDER BY tag_name";
0b126ac2 4627
bd3f2ade 4628 $obj_id = md5("TAGS:$owner_uid:$id");
0b126ac2 4629 $tags = array();
bd3f2ade
AD
4630
4631 if ($memcache && $obj = $memcache->get($obj_id)) {
4632 $tags = $obj;
4633 } else {
4634 $tmp_result = db_query($link, $query);
4635
4636 while ($tmp_line = db_fetch_assoc($tmp_result)) {
4637 array_push($tags, $tmp_line["tag_name"]);
4638 }
4639
4640 if ($memcache) $memcache->add($obj_id, $tags, 0, 3600);
0b126ac2
AD
4641 }
4642
4643 return $tags;
4644 }
4645
d62a3b63
AD
4646 function trim_value(&$value) {
4647 $value = trim($value);
4648 }
4649
4650 function trim_array($array) {
4651 $tmp = $array;
4652 array_walk($tmp, 'trim_value');
4653 return $tmp;
4654 }
4655
be832a1a 4656 function tag_is_valid($tag) {
ef063748
AD
4657 if ($tag == '') return false;
4658 if (preg_match("/^[0-9]*$/", $tag)) return false;
41f7498a 4659 if (mb_strlen($tag) > 250) return false;
ef063748 4660
31365729
AD
4661 if (function_exists('iconv')) {
4662 $tag = iconv("utf-8", "utf-8", $tag);
4663 }
4664
ef063748
AD
4665 if (!$tag) return false;
4666
4667 return true;
be832a1a
AD
4668 }
4669
afb12ed0
AD
4670 function render_login_form($link, $mobile = 0) {
4671 switch ($mobile) {
4672 case 0:
793185a9 4673 require_once "login_form.php";
afb12ed0
AD
4674 break;
4675 case 1:
793185a9 4676 require_once "mobile/login_form.php";
afb12ed0
AD
4677 break;
4678 case 2:
4679 require_once "mobile/classic/login_form.php";
793185a9 4680 }
01a87dff
AD
4681 }
4682
dc56b3b7
AD
4683 // from http://developer.apple.com/internet/safari/faq.html
4684 function no_cache_incantation() {
4685 header("Expires: Mon, 22 Dec 1980 00:00:00 GMT"); // Happy birthday to me :)
4686 header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified
4687 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); // HTTP/1.1
4688 header("Cache-Control: post-check=0, pre-check=0", false);
4689 header("Pragma: no-cache"); // HTTP/1.0
4690 }
4691
42395d28 4692 function format_warning($msg, $id = "") {
883fee8d 4693 global $link;
42395d28 4694 return "<div class=\"warning\" id=\"$id\">
883fee8d 4695 <img src=\"".theme_image($link, "images/sign_excl.png")."\">$msg</div>";
0d32b41e
AD
4696 }
4697
4698 function format_notice($msg) {
883fee8d
AD
4699 global $link;
4700 return "<div class=\"notice\" id=\"$id\">
4701 <img src=\"".theme_image($link, "images/sign_info.png")."\">$msg</div>";
0d32b41e
AD
4702 }
4703
68d2f95e 4704 function format_error($msg) {
883fee8d
AD
4705 global $link;
4706 return "<div class=\"error\" id=\"$id\">
4707 <img src=\"".theme_image($link, "images/sign_excl.png")."\">$msg</div>";
68d2f95e
AD
4708 }
4709
4dccf1ed
AD
4710 function print_notice($msg) {
4711 return print format_notice($msg);
4712 }
4713
4714 function print_warning($msg) {
4715 return print format_warning($msg);
4716 }
4717
68d2f95e
AD
4718 function print_error($msg) {
4719 return print format_error($msg);
4720 }
4721
4722
4dccf1ed
AD
4723 function T_sprintf() {
4724 $args = func_get_args();
4725 return vsprintf(__(array_shift($args)), $args);
4726 }
4727
51682b23
AD
4728 function format_inline_player($link, $url, $ctype) {
4729
4730 $entry = "";
4731
4732 if (($ctype == __("audio/mpeg")) && (get_pref($link, "ENABLE_FLASH_PLAYER")) ) {
4733
4734 $entry .= "<object type=\"application/x-shockwave-flash\"
4735 data=\"extras/button/musicplayer.swf?song_url=$url\"
4736 width=\"17\" height=\"17\">
4737 <param name=\"movie\" value=\"extras/button/musicplayer.swf?song_url=$url\" /> </object>";
4738 }
4739
4740 /*
4741
4742 if (substr($ctype,0,6)=="audio/" || $ctype=="application/ogg" || $ctype=="application/x-ogg") {
4743 $entry .= "<audio controls=\"controls\"><source src=\"$url\" type=\"$ctype\" />";
4744 if (($ctype == __("audio/mpeg")) &&
4745 (get_pref($link, "ENABLE_FLASH_PLAYER")) ) {
4746 $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>";
4747 }
4748 $entry .= "</audio> ";
4749 if (($ctype == __("audio/mpeg")) &&
4750 (get_pref($link, "ENABLE_FLASH_PLAYER")) ) {
4751 $entry .= "<a id='switchToFlashLink' href='#' onclick='return switchToFlash(this)'>".__('Switch to Flash Player')."</a>";
4752 $entry .= "<script type='text/javascript'>html5AudioOrFlash('$ctype');</script>";
4753 }
4754 } elseif (substr($ctype,0,6)=="video/") {
4755 $entry .= "<video controls=\"controls\"><source src=\"$url\" type=\"$ctype\" />";
4756 $entry .= "</video>";
4757 } */
4758
4759
4760
4761 return $entry;
4762 }
4763
eedfb635
AD
4764 function outputArticleXML($link, $id, $feed_id, $mark_as_read = true,
4765 $zoom_mode = false) {
3de0261a 4766
10eb9da8 4767 /* we can figure out feed_id from article id anyway, why do we
e04c18a2 4768 * pass feed_id here? let's ignore the argument :( */
10eb9da8
AD
4769
4770 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
4771 WHERE ref_id = '$id'");
4772
e04c18a2 4773 $feed_id = (int) db_fetch_result($result, 0, "feed_id");
10eb9da8 4774
eedfb635 4775 if (!$zoom_mode) { print "<article id='$id'><![CDATA["; };
3de0261a 4776
54e61a68 4777 $result = db_query($link, "SELECT rtl_content, always_display_enclosures FROM ttrss_feeds
3de0261a
AD
4778 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
4779
4780 if (db_num_rows($result) == 1) {
4781 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
54e61a68 4782 $always_display_enclosures = sql_bool_to_bool(db_fetch_result($result, 0, "always_display_enclosures"));
3de0261a
AD
4783 } else {
4784 $rtl_content = false;
54e61a68 4785 $always_display_enclosures = false;
3de0261a
AD
4786 }
4787
4788 if ($rtl_content) {
4789 $rtl_tag = "dir=\"RTL\"";
4790 $rtl_class = "RTL";
4791 } else {
4792 $rtl_tag = "";
4793 $rtl_class = "";
4794 }
4795
4796 if ($mark_as_read) {
4797 $result = db_query($link, "UPDATE ttrss_user_entries
4798 SET unread = false,last_read = NOW()
4799 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
8a4c759e
AD
4800
4801 ccache_update($link, $feed_id, $_SESSION["uid"]);
3de0261a
AD
4802 }
4803
4804 $result = db_query($link, "SELECT title,link,content,feed_id,comments,int_id,
fc2b26a6 4805 ".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
3de0261a
AD
4806 (SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url,
4807 num_comments,
c7e51de1 4808 author,
ef83538d 4809 orig_feed_id,
c7e51de1 4810 note
3de0261a
AD
4811 FROM ttrss_entries,ttrss_user_entries
4812 WHERE id = '$id' AND ref_id = id AND owner_uid = " . $_SESSION["uid"]);
4813
4814 if ($result) {
4815
3de0261a
AD
4816 $line = db_fetch_assoc($result);
4817
4818 if ($line["icon_url"]) {
4819 $feed_icon = "<img class=\"feedIcon\" src=\"" . $line["icon_url"] . "\">";
4820 } else {
4821 $feed_icon = "&nbsp;";
4822 }
4823
3de0261a
AD
4824 $num_comments = $line["num_comments"];
4825 $entry_comments = "";
4826
4827 if ($num_comments > 0) {
4828 if ($line["comments"]) {
4829 $comments_url = $line["comments"];
4830 } else {
4831 $comments_url = $line["link"];
4832 }
7514749d 4833 $entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
3de0261a
AD
4834 } else {
4835 if ($line["comments"] && $line["link"] != $line["comments"]) {
7514749d 4836 $entry_comments = "<a target='_blank' href=\"".$line["comments"]."\">comments</a>";
3de0261a
AD
4837 }
4838 }
4839
eedfb635
AD
4840 if ($zoom_mode) {
4841 header("Content-Type: text/html");
4842 print "<html><head>
5bb0cc8e 4843 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
eedfb635
AD
4844 <title>Tiny Tiny RSS - ".$line["title"]."</title>
4845 <link rel=\"stylesheet\" type=\"text/css\" href=\"tt-rss.css\">
4846 </head><body>";
4847 }
4848
4849
3de0261a 4850 print "<div class=\"postReply\">";
9ed0b90f 4851 print "<div class=\"postHeader\">";
3de0261a
AD
4852
4853 $entry_author = $line["author"];
4854
4855 if ($entry_author) {
60164936 4856 $entry_author = __(" - ") . $entry_author;
3de0261a
AD
4857 }
4858
324944f3
AD
4859 $parsed_updated = make_local_datetime($link, $line["updated"], true,
4860 false, true);
4861
3de0261a
AD
4862 print "<div class=\"postDate$rtl_class\">$parsed_updated</div>";
4863
4864 if ($line["link"]) {
7514749d 4865 print "<div clear='both'><a target='_blank' href=\"" . $line["link"] . "\">" .
06202d88 4866 $line["title"] . "</a><span class='author'>$entry_author</span></div>";
3de0261a
AD
4867 } else {
4868 print "<div clear='both'>" . $line["title"] . "$entry_author</div>";
4869 }
4870
307d187c 4871 $tags_str = format_tags_string(get_article_tags($link, $id), $id);
e7544143 4872
3de0261a
AD
4873 if (!$entry_comments) $entry_comments = "&nbsp;"; # placeholder
4874
5f014cf1 4875 print "<div style='float : right'>
e9823609
AD
4876 <img src='".theme_image($link, 'images/tag.png')."'
4877 class='tagsPic' alt='Tags' title='Tags'>&nbsp;";
eedfb635
AD
4878
4879 if (!$zoom_mode) {
307d187c 4880 print "<span id=\"ATSTR-$id\">$tags_str</span>
eedfb635 4881 <a title=\"".__('Edit tags for this article')."\"
31a53903 4882 href=\"#\" onclick=\"editArticleTags($id, $feed_id)\">(+)</a>";
4710e3dc 4883
e9823609 4884 print "<img src=\"".theme_image($link, 'images/art-zoom.png')."\"
9ed0b90f 4885 class='tagsPic' style=\"cursor : pointer\"
eedfb635
AD
4886 onclick=\"zoomToArticle($id)\"
4887 alt='Zoom' title='".__('Show article summary in new window')."'>";
c7e51de1
AD
4888
4889 $note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
4890
e9823609 4891 print "<img src=\"".theme_image($link, 'images/art-pub-note.png')."\"
9ed0b90f 4892 class='tagsPic' style=\"cursor : pointer\"
c7e51de1
AD
4893 onclick=\"publishWithNote($id, '$note_escaped')\"
4894 alt='PubNote' title='".__('Publish article with a note')."'>";
4895
31a53903
AD
4896 if (DIGEST_ENABLE) {
4897 print "<img src=\"".theme_image($link, 'images/art-email.png')."\"
9ed0b90f 4898 class='tagsPic' style=\"cursor : pointer\"
31a53903
AD
4899 onclick=\"emailArticle($id)\"
4900 alt='Zoom' title='".__('Forward by email')."'>";
4901 }
4902
24ecbcae
AD
4903 } else {
4904 $tags_str = strip_tags($tags_str);
4905 print "<span id=\"ATSTR-$id\">$tags_str</span>";
eedfb635
AD
4906 }
4907 print "</div>";
4908 print "<div clear='both'>$entry_comments</div>";
3de0261a 4909
ef83538d
AD
4910 if ($line["orig_feed_id"]) {
4911
4912 $tmp_result = db_query($link, "SELECT * FROM ttrss_archived_feeds
4913 WHERE id = ".$line["orig_feed_id"]);
4914
4915 if (db_num_rows($tmp_result) != 0) {
4916
4917 print "<div clear='both'>";
4918 print __("Originally from:");
4919
4920 print "&nbsp;";
4921
4922 $tmp_line = db_fetch_assoc($tmp_result);
4923
4924 print "<a target='_blank'
4925 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
4926 $tmp_line['title'] . "</a>";
4927
4928 print "&nbsp;";
4929
4930 print "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
4931 print "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_set.gif'></a>";
4932
4933 print "</div>";
4934 }
4935 }
4936
3de0261a
AD
4937 print "</div>";
4938
4939 print "<div class=\"postIcon\">" . $feed_icon . "</div>";
64ab16ac 4940
3de0261a 4941 print "<div class=\"postContent\">";
64ab16ac 4942
c54526fe 4943 $article_content = sanitize_rss($link, $line["content"]);
c41890b0 4944
c7e51de1
AD
4945 print "<div id=\"POSTNOTE-$id\">";
4946 if ($line['note']) {
4947 print format_article_note($id, $line['note']);
4948 }
4949 print "</div>";
4950
db54143e
AD
4951 print $article_content;
4952
be35798b
AD
4953// $result = db_query($link, "SELECT * FROM ttrss_enclosures WHERE
4954// post_id = '$id' AND content_url != ''");
ce53e200 4955
be35798b
AD
4956 $result = get_article_enclosures($link, $id);
4957
4958// if (db_num_rows($result) > 0) {
4959
4960 if (count($result) > 0) {
ce53e200 4961
9c5ee7e1 4962 $entries_html = array();
ce53e200
AD
4963 $entries = array();
4964
be35798b
AD
4965 //while ($line = db_fetch_assoc($result)) {
4966 foreach ($result as $line) {
ce53e200
AD
4967
4968 $url = $line["content_url"];
4752b041
AD
4969 $ctype = $line["content_type"];
4970
4971 if (!$ctype) $ctype = __("unknown type");
ce53e200
AD
4972
4973 $filename = substr($url, strrpos($url, "/")+1);
4974
51682b23 4975 $entry = format_inline_player($link, $url, $ctype);
8dccabed 4976
51682b23 4977 $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
4752b041 4978 $filename . " (" . $ctype . ")" . "</a>";
ce53e200 4979
9c5ee7e1
AD
4980 array_push($entries_html, $entry);
4981
4982 $entry = array();
4983
4984 $entry["type"] = $ctype;
4985 $entry["filename"] = $filename;
4986 $entry["url"] = $url;
4987
ce53e200
AD
4988 array_push($entries, $entry);
4989 }
4990
9c5ee7e1
AD
4991 print "<div class=\"postEnclosures\">";
4992
fbaca246 4993 if (!get_pref($link, "STRIP_IMAGES")) {
44cfa025
AD
4994 if ($always_display_enclosures ||
4995 !preg_match("/<img/i", $article_content)) {
4996
fbaca246 4997 foreach ($entries as $entry) {
44cfa025
AD
4998
4999 if (preg_match("/image/", $entry["type"]) ||
5000 preg_match("/\.(jpg|png|gif|bmp)/i", $entry["filename"])) {
5001
5002 print "<p><img
fbaca246 5003 alt=\"".htmlspecialchars($entry["filename"])."\"
44cfa025 5004 src=\"" .htmlspecialchars($entry["url"]) . "\"/></p>";
fbaca246 5005 }
9c5ee7e1
AD
5006 }
5007 }
5008 }
5009
9c5ee7e1
AD
5010 if (db_num_rows($result) == 1) {
5011 print __("Attachment:") . " ";
5012 } else {
5013 print __("Attachments:") . " ";
5014 }
5015
5016 print join(", ", $entries_html);
ce53e200
AD
5017
5018 print "</div>";
5019 }
5020
5021 print "</div>";
3de0261a
AD
5022
5023 print "</div>";
5024
5025 }
5026
eedfb635
AD
5027 if (!$zoom_mode) {
5028 print "]]></article>";
5029 } else {
5030 print "
5031 <div style=\"text-align : center\">
2ae69126
AD
5032 <button onclick=\"return window.close()\">".
5033 __("Close this window")."</button></div>";
eedfb635
AD
5034 print "</body></html>";
5035
5036 }
3de0261a
AD
5037
5038 }
5039
5040 function outputHeadlinesList($link, $feed, $subop, $view_mode, $limit, $cat_view,
7b4d02a8
AD
5041 $next_unread_feed, $offset, $vgr_last_feed = false,
5042 $override_order = false) {
3de0261a 5043
52d7e7da
AD
5044 $disable_cache = false;
5045
46921916
AD
5046 $timing_info = getmicrotime();
5047
961f4c73
AD
5048 $topmost_article_ids = array();
5049
ac541432
AD
5050 if (!$offset) {
5051 $offset = 0;
5052 }
3de0261a
AD
5053
5054 if ($subop == "undefined") $subop = "";
5055
a9bcfb8f
AD
5056 $subop_split = split(":", $subop);
5057
3de0261a 5058 if ($subop == "CatchupSelected") {
b4e75b2a
AD
5059 $ids = split(",", db_escape_string($_REQUEST["ids"]));
5060 $cmode = sprintf("%d", $_REQUEST["cmode"]);
3de0261a
AD
5061
5062 catchupArticlesById($link, $ids, $cmode);
5063 }
5064
5065 if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0) {
35bf080c 5066 update_generic_feed($link, $feed, $cat_view, true);
3de0261a
AD
5067 }
5068
5069 if ($subop == "MarkAllRead") {
5070 catchup_feed($link, $feed, $cat_view);
5071
5072 if (get_pref($link, 'ON_CATCHUP_SHOW_NEXT_FEED')) {
5073 if ($next_unread_feed) {
5074 $feed = $next_unread_feed;
5075 }
5076 }
5077 }
5078
a9bcfb8f
AD
5079 if ($subop_split[0] == "MarkAllReadGR") {
5080 catchup_feed($link, $subop_split[1], false);
5081 }
5082
c3fddd05 5083 // FIXME: might break tag display?
a9bcfb8f 5084
e325d700 5085 if ($feed > 0 && !$cat_view) {
3de0261a
AD
5086 $result = db_query($link,
5087 "SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
5088
5089 if (db_num_rows($result) == 0) {
5090 print "<div align='center'>".__('Feed not found.')."</div>";
5091 return;
5092 }
5093 }
5094
5095 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
10eb9da8 5096
3de0261a
AD
5097 $result = db_query($link, "SELECT rtl_content FROM ttrss_feeds
5098 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
5099
5100 if (db_num_rows($result) == 1) {
5101 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
5102 } else {
5103 $rtl_content = false;
5104 }
5105
5106 if ($rtl_content) {
5107 $rtl_tag = "dir=\"RTL\"";
5108 } else {
5109 $rtl_tag = "";
5110 }
5111 } else {
5112 $rtl_tag = "";
5113 $rtl_content = false;
5114 }
5115
3de0261a
AD
5116 /// START /////////////////////////////////////////////////////////////////////////////////
5117
c3fddd05 5118 @$search = db_escape_string($_REQUEST["query"]);
52d7e7da
AD
5119
5120 if ($search) {
5121 $disable_cache = true;
5122 }
5123
c3fddd05
AD
5124 @$search_mode = db_escape_string($_REQUEST["search_mode"]);
5125 @$match_on = db_escape_string($_REQUEST["match_on"]);
3de0261a
AD
5126
5127 if (!$match_on) {
5128 $match_on = "both";
5129 }
5130
5131 $real_offset = $offset * $limit;
5132
b4e75b2a 5133 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H0", $timing_info);
46921916 5134
3de0261a 5135 $qfh_ret = queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view,
7b4d02a8 5136 $search, $search_mode, $match_on, $override_order, $real_offset);
3de0261a 5137
b4e75b2a 5138 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H1", $timing_info);
46921916 5139
3de0261a
AD
5140 $result = $qfh_ret[0];
5141 $feed_title = $qfh_ret[1];
5142 $feed_site_url = $qfh_ret[2];
5143 $last_error = $qfh_ret[3];
f56e3080 5144
081e527d
AD
5145 $vgroup_last_feed = $vgr_last_feed;
5146
8801fb01 5147/* if ($feed == -2) {
f56e3080 5148 $feed_site_url = article_publish_url($link);
8801fb01 5149 } */
f56e3080 5150
3de0261a
AD
5151 /// STOP //////////////////////////////////////////////////////////////////////////////////
5152
ac541432
AD
5153 if (!$offset) {
5154 print "<div id=\"headlinesContainer\" $rtl_tag>";
3de0261a 5155
ac541432
AD
5156 if (!$result) {
5157 print "<div align='center'>".__("Could not display feed (query failed). Please check label match syntax or local configuration.")."</div>";
5158 return;
5159 }
3de0261a 5160
0ef68e6f 5161 print_headline_subtoolbar($link, $feed_site_url, $feed_title,
23d72f39 5162 $feed, $cat_view, $search, $match_on, $search_mode, $view_mode);
3de0261a 5163
ac541432
AD
5164 print "<div id=\"headlinesInnerContainer\" onscroll=\"headlines_scroll_handler()\">";
5165 }
3de0261a 5166
29dfb258
AD
5167 $headlines_count = db_num_rows($result);
5168
3de0261a
AD
5169 if (db_num_rows($result) > 0) {
5170
5171# print "\{$offset}";
5172
ac541432 5173 if (!get_pref($link, 'COMBINED_DISPLAY_MODE') && !$offset) {
3de0261a
AD
5174 print "<table class=\"headlinesList\" id=\"headlinesList\"
5175 cellspacing=\"0\">";
5176 }
5177
4ab4d364
AD
5178 $lnum = $limit*$offset;
5179
3de0261a
AD
5180 error_reporting (DEFAULT_ERROR_LEVEL);
5181
5182 $num_unread = 0;
6cfea5c7
AD
5183 $cur_feed_title = '';
5184
784ac51f
AD
5185 $fresh_intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE") * 60 * 60;
5186
3de0261a
AD
5187 while ($line = db_fetch_assoc($result)) {
5188
5189 $class = ($lnum % 2) ? "even" : "odd";
5190
5191 $id = $line["id"];
5192 $feed_id = $line["feed_id"];
961f4c73 5193
e2549229 5194 $labels = get_article_labels($link, $id);
e2549229 5195
2eb9c95c
AD
5196 $labels_str = "<span id=\"HLLCTR-$id\">";
5197 $labels_str .= format_article_labels($labels, $id);
f9247195 5198 $labels_str .= "</span>";
2eb9c95c 5199
961f4c73
AD
5200 if (count($topmost_article_ids) < 5) {
5201 array_push($topmost_article_ids, $id);
5202 }
5203
784ac51f 5204 if ($line["last_read"] == "" && !sql_bool_to_bool($line["unread"])) {
3de0261a 5205
883fee8d
AD
5206 $update_pic = "<img id='FUPDPIC-$id' src=\"".
5207 theme_image($link, 'images/updated.png')."\"
3de0261a
AD
5208 alt=\"Updated\">";
5209 } else {
5210 $update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.gif\"
5211 alt=\"Updated\">";
5212 }
784ac51f
AD
5213
5214 if (sql_bool_to_bool($line["unread"]) &&
5215 time() - strtotime($line["updated_noms"]) < $fresh_intl) {
5216
e9823609
AD
5217 $update_pic = "<img id='FUPDPIC-$id' src=\"".
5218 theme_image($link, 'images/fresh_sign.png')."\" alt=\"Fresh\">";
784ac51f 5219 }
3de0261a
AD
5220
5221 if ($line["unread"] == "t" || $line["unread"] == "1") {
5222 $class .= "Unread";
5223 ++$num_unread;
5224 $is_unread = true;
5225 } else {
5226 $is_unread = false;
5227 }
abd8a516 5228
3de0261a 5229 if ($line["marked"] == "t" || $line["marked"] == "1") {
e9823609
AD
5230 $marked_pic = "<img id=\"FMPIC-$id\"
5231 src=\"".theme_image($link, 'images/mark_set.png')."\"
5232 class=\"markedPic\" alt=\"Unstar article\"
5233 onclick='javascript:tMark($id)'>";
3de0261a 5234 } else {
e9823609
AD
5235 $marked_pic = "<img id=\"FMPIC-$id\"
5236 src=\"".theme_image($link, 'images/mark_unset.png')."\"
5237 class=\"markedPic\" alt=\"Star article\"
5238 onclick='javascript:tMark($id)'>";
3de0261a
AD
5239 }
5240
e4f4b46f 5241 if ($line["published"] == "t" || $line["published"] == "1") {
e9823609
AD
5242 $published_pic = "<img id=\"FPPIC-$id\" src=\"".theme_image($link,
5243 'images/pub_set.png')."\"
e4f4b46f 5244 class=\"markedPic\"
f5e0338d 5245 alt=\"Unpublish article\" onclick='javascript:tPub($id)'>";
e4f4b46f 5246 } else {
e9823609
AD
5247 $published_pic = "<img id=\"FPPIC-$id\" src=\"".theme_image($link,
5248 'images/pub_unset.png')."\"
e4f4b46f 5249 class=\"markedPic\"
f5e0338d 5250 alt=\"Publish article\" onclick='javascript:tPub($id)'>";
e4f4b46f
AD
5251 }
5252
e944346c 5253# $content_link = "<a target=\"_blank\" href=\"".$line["link"]."\">" .
3de0261a
AD
5254# $line["title"] . "</a>";
5255
f0971fc1
AD
5256# $content_link = "<a
5257# href=\"" . htmlspecialchars($line["link"]) . "\"
5258# onclick=\"view($id,$feed_id);\">" .
5259# $line["title"] . "</a>";
3de0261a
AD
5260
5261# $content_link = "<a href=\"javascript:viewContentUrl('".$line["link"]."');\">" .
5262# $line["title"] . "</a>";
5263
324944f3 5264 $updated_fmt = make_local_datetime($link, $line["updated_noms"], false);
3de0261a
AD
5265
5266 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
5267 $content_preview = truncate_string(strip_tags($line["content_preview"]),
5268 100);
5269 }
5270
ff6e357a
AD
5271 $score = $line["score"];
5272
883fee8d
AD
5273 $score_pic = theme_image($link,
5274 "images/" . get_score_pic($score));
546499a9 5275
9bf3f101
AD
5276/* $score_title = __("(Click to change)");
5277 $score_pic = "<img class='hlScorePic' src=\"images/$score_pic\"
5278 onclick=\"adjustArticleScore($id, $score)\" title=\"$score $score_title\">"; */
546499a9 5279
883fee8d 5280 $score_pic = "<img class='hlScorePic' src=\"$score_pic\"
9bf3f101 5281 title=\"$score\">";
ff6e357a 5282
5daa24f2
AD
5283 if ($score > 500) {
5284 $hlc_suffix = "H";
5285 } else if ($score < -100) {
5286 $hlc_suffix = "L";
5287 } else {
5288 $hlc_suffix = "";
5289 }
5290
3de0261a
AD
5291 $entry_author = $line["author"];
5292
5293 if ($entry_author) {
60164936 5294 $entry_author = " - $entry_author";
3de0261a
AD
5295 }
5296
7defa089 5297 $has_feed_icon = feed_has_icon($feed_id);
bd51294a
AD
5298
5299 if ($has_feed_icon) {
5300 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
5301 } else {
5302 //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">";
20be0cf8 5303 $feed_icon_img = "";
bd51294a
AD
5304 }
5305
3de0261a 5306 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
6cfea5c7 5307
d00f22ac 5308 if (get_pref($link, 'VFEED_GROUP_BY_FEED')) {
bb031f91 5309 if ($feed_id != $vgroup_last_feed && $line["feed_title"]) {
a9bcfb8f
AD
5310
5311 $cur_feed_title = $line["feed_title"];
081e527d 5312 $vgroup_last_feed = $feed_id;
a9bcfb8f 5313
962d8ba4 5314 $cur_feed_title = htmlspecialchars($cur_feed_title);
43fc671f 5315
af163b85 5316 $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>".__('mark as read')."</a>)";
a9bcfb8f 5317
6cfea5c7 5318 print "<tr class='feedTitle'><td colspan='7'>".
dc803347 5319 "<div style=\"float : right\">$feed_icon_img</div>".
6cfea5c7 5320 "<a href=\"javascript:viewfeed($feed_id, '', false)\">".
965fb2af 5321 $line["feed_title"]."</a> $vf_catchup_link</td></tr>";
6cfea5c7
AD
5322 }
5323 }
314fcd2b
AD
5324
5325 $mouseover_attrs = "onmouseover='postMouseIn($id)'
5326 onmouseout='postMouseOut($id)'";
5327
5328 print "<tr class='$class' id='RROW-$id' $mouseover_attrs>";
3de0261a 5329
67343d9f 5330 print "<td class='hlUpdPic'>$update_pic</td>";
3de0261a
AD
5331
5332 print "<td class='hlSelectRow'>
67343d9f
AD
5333 <input type=\"checkbox\" onclick=\"tSR(this)\"
5334 id=\"RCHK-$id\">
3de0261a
AD
5335 </td>";
5336
5337 print "<td class='hlMarkedPic'>$marked_pic</td>";
e4f4b46f 5338 print "<td class='hlMarkedPic'>$published_pic</td>";
3de0261a 5339
df456bb0
AD
5340# if ($line["feed_title"]) {
5341# print "<td class='hlContent'>$content_link</td>";
5342# print "<td class='hlFeed'>
5343# <a href=\"javascript:viewfeed($feed_id, '', false)\">".
5344# truncate_string($line["feed_title"],30)."</a>&nbsp;</td>";
5345# } else {
5346
e04c18a2 5347 print "<td onclick='view($id)' class='hlContent$hlc_suffix' valign='middle' id='HLC-$id'>";
df456bb0 5348
f0971fc1
AD
5349 print "<a id=\"RTITLE-$id\"
5350 href=\"" . htmlspecialchars($line["link"]) . "\"
6e35a862 5351 onclick=\"return false\">" .
df456bb0
AD
5352 $line["title"];
5353
5354 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
5355 if ($content_preview) {
5356 print "<span class=\"contentPreview\"> - $content_preview</span>";
3de0261a 5357 }
3de0261a 5358 }
df456bb0
AD
5359
5360 print "</a>";
5361
e2549229
AD
5362 print $labels_str;
5363
df456bb0
AD
5364# <a href=\"javascript:viewfeed($feed_id, '', false)\">".
5365# $line["feed_title"]."</a>
5366
d00f22ac 5367 if (!get_pref($link, 'VFEED_GROUP_BY_FEED')) {
c3fddd05 5368 if (@$line["feed_title"]) {
6cfea5c7
AD
5369 print "<span class=\"hlFeed\">
5370 (<a href=\"javascript:viewfeed($feed_id, '', false)\">".
5371 $line["feed_title"]."</a>)
5372 </span>";
5373 }
df456bb0 5374 }
6e35a862
AD
5375
5376// print "<img id='HLL-$id' class='hlLoading'
5377// src='images/indicator_tiny.gif' style='display : none'>";
5378
df456bb0 5379 print "</td>";
bd51294a 5380
df456bb0 5381# }
3de0261a 5382
e04c18a2 5383 print "<td class=\"hlUpdated\" onclick='view($id)'><nobr>$updated_fmt&nbsp;</nobr></td>";
546499a9
AD
5384
5385 print "<td class='hlMarkedPic'>$score_pic</td>";
bd51294a 5386
c3fddd05 5387 if (@$line["feed_title"] && !get_pref($link, 'VFEED_GROUP_BY_FEED')) {
d7e83df7 5388 print "<td onclick=\"viewfeed($feed_id)\" class=\"hlFeedIcon\">$feed_icon_img</td>";
bd51294a
AD
5389 }
5390
3de0261a
AD
5391 print "</tr>";
5392
5393 } else {
6cfea5c7 5394
bb031f91 5395 if (get_pref($link, 'VFEED_GROUP_BY_FEED') && $line["feed_title"]) {
081e527d
AD
5396 if ($feed_id != $vgroup_last_feed) {
5397
5398 $cur_feed_title = $line["feed_title"];
5399 $vgroup_last_feed = $feed_id;
5400
962d8ba4
AD
5401 $cur_feed_title = htmlspecialchars($cur_feed_title);
5402
af163b85 5403 $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>".__('mark as read')."</a>)";
081e527d 5404
7defa089 5405 $has_feed_icon = feed_has_icon($feed_id);
dc803347
AD
5406
5407 if ($has_feed_icon) {
5408 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
5409 } else {
5410 //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">";
5411 }
5412
6cfea5c7 5413 print "<div class='cdmFeedTitle'>".
dc803347 5414 "<div style=\"float : right\">$feed_icon_img</div>".
6cfea5c7 5415 "<a href=\"javascript:viewfeed($feed_id, '', false)\">".
081e527d 5416 $line["feed_title"]."</a> $vf_catchup_link</div>";
6cfea5c7
AD
5417 }
5418 }
5419
3de0261a
AD
5420 if ($is_unread) {
5421 $add_class = "Unread";
5422 } else {
5423 $add_class = "";
5424 }
0cacc891
AD
5425
5426 $expand_cdm = get_pref($link, 'CDM_EXPANDED');
3cd4239a 5427 $show_excerpt = false;
0cacc891 5428
5daa24f2 5429 if ($expand_cdm && $score >= -100) {
0cacc891 5430 $cdm_cstyle = "";
3cd4239a 5431 $show_excerpt = false;
0cacc891
AD
5432 } else {
5433 $cdm_cstyle = "style=\"display : none\"";
3cd4239a 5434 $show_excerpt = true;
0cacc891
AD
5435 }
5436
314fcd2b
AD
5437 $mouseover_attrs = "onmouseover='postMouseIn($id)'
5438 onmouseout='postMouseOut($id)'";
5439
e4914b62 5440 print "<div class=\"cdmArticle$add_class\"
3cd4239a 5441 id=\"RROW-$id\"
314fcd2b 5442 $mouseover_attrs'>";
3de0261a
AD
5443
5444 print "<div class=\"cdmHeader\">";
5445
965fb2af
AD
5446 if (!get_pref($link, "VFEED_GROUP_BY_FEED") || !$line["feed_title"]) {
5447 $cdm_feed_icon = "<span style=\"cursor : pointer\" onclick=\"viewfeed($feed_id)\">$feed_icon_img</span>";
5448 }
5449
5450 print "<div class=\"articleUpdated\">$updated_fmt $score_pic $cdm_feed_icon
b3296d36 5451 </div>";
5daa24f2 5452
9617eb94 5453 print "<span id=\"RTITLE-$id\" class=\"titleWrap$hlc_suffix\"><a class=\"title\"
3de0261a 5454 onclick=\"javascript:toggleUnread($id, 0)\"
5daa24f2
AD
5455 target=\"_blank\" href=\"".$line["link"]."\">".$line["title"]."</a>
5456 ";
3de0261a
AD
5457
5458 print $entry_author;
5459
3cd4239a 5460/* if (!$expand_cdm || $score < -100) {
0cacc891
AD
5461 print "&nbsp;<a id=\"CICH-$id\"
5462 href=\"javascript:cdmExpandArticle($id)\">
5463 (".__('Show article').")</a>";
3cd4239a 5464 } */
0cacc891 5465
39f3c580 5466 print $labels_str;
0cacc891 5467
d00f22ac 5468 if (!get_pref($link, 'VFEED_GROUP_BY_FEED')) {
6cfea5c7
AD
5469 if ($line["feed_title"]) {
5470 print "&nbsp;(<a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a>)";
5471 }
3de0261a
AD
5472 }
5473
5daa24f2 5474 print "</span></div>";
3de0261a 5475
3cd4239a
AD
5476 if ($show_excerpt) {
5477 print "<div class=\"cdmExcerpt\" id=\"CEXC-$id\"
5478 onclick=\"cdmExpandArticle($id)\"
5479 title=\"".__('Click to expand article')."\">";
c9efd838
AD
5480
5481 $content_preview = trim(truncate_string(strip_tags($line["content_preview"]), 100));
5482
5483 if (strlen($content_preview) != 0) {
5484 print $content_preview;
5485 } else {
5486 print __('Click to expand article');
5487 }
3cd4239a
AD
5488 print "</div>";
5489 }
5490
5491 print "<div class=\"cdmContent\"
5492 onclick=\"cdmClicked($id)\"
5493 id=\"CICD-$id\" $cdm_cstyle>";
a04c8e8d 5494
494a64ea
AD
5495 if ($line["orig_feed_id"]) {
5496
5497 $tmp_result = db_query($link, "SELECT * FROM ttrss_archived_feeds
5498 WHERE id = ".$line["orig_feed_id"]);
5499
5500 if (db_num_rows($tmp_result) != 0) {
5501
5502 print "<div clear='both'>";
5503 print __("Originally from:");
5504
5505 print "&nbsp;";
5506
5507 $tmp_line = db_fetch_assoc($tmp_result);
5508
5509 print "<a target='_blank'
5510 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
5511 $tmp_line['title'] . "</a>";
5512
5513 print "&nbsp;";
5514
5515 print "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
5516 print "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_set.gif'></a>";
5517
5518 print "</div>";
5519 }
5520 }
5521
0cacc891 5522// print "<div class=\"cdmInnerContent\" id=\"CICD-$id\" $cdm_cstyle>";
621ffb00 5523
c7e51de1
AD
5524 print "<div id=\"POSTNOTE-$id\">";
5525 if ($line['note']) {
5526 print format_article_note($id, $line['note']);
5527 }
5528 print "</div>";
5529
54e61a68
AD
5530 print sanitize_rss($link, $line["content_preview"]);
5531
c54526fe 5532 $article_content = $line["content_preview"];
3c66b582
AD
5533
5534 $e_result = db_query($link, "SELECT * FROM ttrss_enclosures WHERE
4752b041 5535 post_id = '$id' AND content_url != ''");
3c66b582
AD
5536
5537 if (db_num_rows($e_result) > 0) {
3c66b582 5538
a3eeb471 5539 $entries_html = array();
3c66b582
AD
5540 $entries = array();
5541
5542 while ($e_line = db_fetch_assoc($e_result)) {
5543
5544 $url = $e_line["content_url"];
4752b041
AD
5545 $ctype = $e_line["content_type"];
5546 if (!$ctype) $ctype = __("unknown type");
3c66b582
AD
5547
5548 $filename = substr($url, strrpos($url, "/")+1);
5549
51682b23 5550 $entry = format_inline_player($link, $url, $ctype);
8dccabed 5551
51682b23 5552 $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
4752b041 5553 $filename . " (" . $ctype . ")" . "</a>";
3c66b582 5554
a3eeb471
AD
5555 array_push($entries_html, $entry);
5556
5557 $entry = array();
5558
5559 $entry["type"] = $ctype;
5560 $entry["filename"] = $filename;
5561 $entry["url"] = $url;
5562
3c66b582
AD
5563 array_push($entries, $entry);
5564 }
5565
54e61a68 5566 $tmp_result = db_query($link, "SELECT always_display_enclosures FROM
a16a62c0
AD
5567 ttrss_feeds WHERE id = ".
5568 (($line['feed_id'] == null) ? $line['orig_feed_id'] :
5569 $line['feed_id'])." AND owner_uid = ".$_SESSION["uid"]);
54e61a68
AD
5570
5571 $always_display_enclosures = db_fetch_result($tmp_result, 0, "always_display_enclosures");
5572
fbaca246 5573 if (!get_pref($link, "STRIP_IMAGES")) {
44cfa025
AD
5574 if ($always_display_enclosures ||
5575 !preg_match("/img/i", $article_content)) {
5576
fbaca246 5577 foreach ($entries as $entry) {
44cfa025
AD
5578 if (preg_match("/image/", $entry["type"]) ||
5579 preg_match("/\.(jpg|png|gif|bmp)/i", $entry["filename"])) {
fbaca246
AD
5580 print "<p><img
5581 alt=\"".htmlspecialchars($entry["filename"])."\"
5582 src=\"" .htmlspecialchars($entry["url"]) . "\"></p>";
5583 }
a3eeb471
AD
5584 }
5585 }
5586 }
5587
5588 print "<div class=\"cdmEnclosures\">";
5589
5590 if (db_num_rows($e_result) == 1) {
5591 print __("Attachment:") . " ";
5592 } else {
5593 print __("Attachments:") . " ";
5594 }
5595
5596 print join(", ", $entries_html);
3c66b582
AD
5597
5598 print "</div>";
5599 }
5600
a3eeb471 5601
0cacc891
AD
5602 print "<br clear='both'>";
5603// print "</div>";
a04c8e8d 5604
0cacc891 5605/* if (!$expand_cdm) {
12f5d8fe
AD
5606 print "<a id=\"CICH-$id\"
5607 href=\"javascript:cdmExpandArticle($id)\">
5608 Show article</a>";
0cacc891 5609 } */
a04c8e8d 5610
0cacc891 5611 print "</div>";
3de0261a 5612
e2ccbfab 5613 print "<div class=\"cdmFooter\"><span class='s0'>";
3de0261a 5614
e2ccbfab 5615 /* print "<div class=\"markedPic\">Star it: $marked_pic</div>"; */
3de0261a 5616
e2ccbfab
AD
5617 print __("Select:").
5618 " <input type=\"checkbox\" onclick=\"toggleSelectRowById(this,
3de0261a
AD
5619 'RROW-$id')\" class=\"feedCheckBox\" id=\"RCHK-$id\">";
5620
c7e51de1
AD
5621 print "</span><span class='s1'>$marked_pic&nbsp;";
5622 print "$published_pic&nbsp;";
5623 print "<img src=\"images/art-zoom.png\" class='tagsPic'
eedfb635
AD
5624 onclick=\"zoomToArticle($id)\"
5625 style=\"cursor : pointer\"
5626 alt='Zoom'
c7e51de1
AD
5627 title='".__('Show article summary in new window')."'>&nbsp;";
5628
5629 $note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
5630
5631 print "<img src=\"images/art-pub-note.png\" class='tagsPic'
5632 style=\"cursor : pointer\" style=\"cursor : pointer\"
5633 onclick=\"publishWithNote($id, '$note_escaped')\"
5634 alt='PubNote' title='".__('Publish article with a note')."'>";
5635
5636 print "</span>";
e2ccbfab 5637
307d187c 5638 $tags_str = format_tags_string(get_article_tags($link, $id), $id);
e2ccbfab 5639
5f014cf1 5640 print "<span class='s1'>
e9823609
AD
5641 <img class='tagsPic' src='".theme_image($link,
5642 'images/tag.png')."' alt='Tags' title='Tags'>
307d187c
AD
5643 <span id=\"ATSTR-$id\">$tags_str</span>
5644 <a title=\"".__('Edit tags for this article')."\"
5645 href=\"javascript:editArticleTags($id, $feed_id, true)\">(+)</a>";
3de0261a 5646
e2ccbfab 5647 print "</span>";
3de0261a 5648
c7e51de1 5649 print "<span class='s2'><a class=\"cdmToggleLink\"
e2ccbfab 5650 href=\"javascript:toggleUnread($id)\">
c7e51de1 5651 ".__('toggle unread')."</a></span>";
3de0261a 5652
e2ccbfab 5653 print "</div>";
3de0261a
AD
5654 print "</div>";
5655
5656 }
5657
5658 ++$lnum;
5659 }
5660
ac541432 5661 if (!get_pref($link, 'COMBINED_DISPLAY_MODE') && !$offset) {
3de0261a
AD
5662 print "</table>";
5663 }
5664
3de0261a 5665 } else {
93c841c4
AD
5666 $message = "";
5667
5668 switch ($view_mode) {
5669 case "unread":
5670 $message = __("No unread articles found to display.");
5671 break;
8b09eac8
AD
5672 case "updated":
5673 $message = __("No updated articles found to display.");
5674 break;
93c841c4
AD
5675 case "marked":
5676 $message = __("No starred articles found to display.");
5677 break;
5678 default:
215af892
AD
5679 if ($feed < -10) {
5680 $message = __("No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter.");
5681 } else {
5682 $message = __("No articles found to display.");
5683 }
93c841c4
AD
5684 }
5685
5686 if (!$offset) print "<div class='whiteBox'>$message</div>";
3de0261a
AD
5687 }
5688
ac541432
AD
5689 if (!$offset) {
5690 print "</div>";
5691 print "</div>";
5692 }
3de0261a 5693
081e527d 5694 return array($topmost_article_ids, $headlines_count, $feed, $disable_cache, $vgroup_last_feed);
3de0261a 5695 }
0979b696
AD
5696
5697// from here: http://www.roscripts.com/Create_tag_cloud-71.html
5698
5699 function printTagCloud($link) {
35a03bdd 5700
0979b696
AD
5701 $query = "SELECT tag_name, COUNT(post_int_id) AS count
5702 FROM ttrss_tags WHERE owner_uid = ".$_SESSION["uid"]."
b31af972 5703 GROUP BY tag_name ORDER BY count DESC LIMIT 50";
0979b696
AD
5704
5705 $result = db_query($link, $query);
5706
5707 $tags = array();
5708
5709 while ($line = db_fetch_assoc($result)) {
5710 $tags[$line["tag_name"]] = $line["count"];
5711 }
5712
5713 ksort($tags);
5714
5715 $max_size = 32; // max font size in pixels
4548a580 5716 $min_size = 11; // min font size in pixels
0979b696
AD
5717
5718 // largest and smallest array values
5719 $max_qty = max(array_values($tags));
5720 $min_qty = min(array_values($tags));
5721
5722 // find the range of values
5723 $spread = $max_qty - $min_qty;
5724 if ($spread == 0) { // we don't want to divide by zero
5725 $spread = 1;
5726 }
5727
5728 // set the font-size increment
5729 $step = ($max_size - $min_size) / ($spread);
5730
5731 // loop through the tag array
5732 foreach ($tags as $key => $value) {
5733 // calculate font-size
5734 // find the $value in excess of $min_qty
5735 // multiply by the font-size increment ($size)
5736 // and add the $min_size set above
5737 $size = round($min_size + (($value - $min_qty) * $step));
546ffab4
AD
5738
5739 $key_escaped = str_replace("'", "\\'", $key);
5740
5741 echo "<a href=\"javascript:viewfeed('$key_escaped') \" style=\"font-size: " .
0979b696
AD
5742 $size . "px\" title=\"$value articles tagged with " .
5743 $key . '">' . $key . '</a> ';
5744 }
5745 }
46921916
AD
5746
5747 function print_checkpoint($n, $s) {
5748 $ts = getmicrotime();
5749 echo sprintf("<!-- CP[$n] %.4f seconds -->", $ts - $s);
5750 return $ts;
5751 }
14b6c54b
AD
5752
5753 function sanitize_tag($tag) {
5754 $tag = trim($tag);
5755
5756 $tag = mb_strtolower($tag, 'utf-8');
5757
0c3d1c68
AD
5758 $tag = preg_replace('/[\"\+\>\<]/', "", $tag);
5759
5760// $tag = str_replace('"', "", $tag);
5761// $tag = str_replace("+", " ", $tag);
14b6c54b
AD
5762 $tag = str_replace("technorati tag: ", "", $tag);
5763
5764 return $tag;
5765 }
e4f4b46f 5766
8801fb01 5767 function get_self_url_prefix() {
f56e3080 5768
e2749781 5769 $url_path = "";
8801fb01 5770
e2749781
AD
5771 if ($_SERVER['HTTPS'] != "on") {
5772 $url_path = "http://";
5773 } else {
5774 $url_path = "https://";
5775 }
f56e3080 5776
e2749781 5777 $url_path .= $_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']);
f56e3080
AD
5778
5779 return $url_path;
e0dc56d4 5780
8801fb01
AD
5781 }
5782 function opml_publish_url($link){
e0dc56d4 5783
8801fb01 5784 $url_path = get_self_url_prefix();
e0dc56d4 5785 $url_path .= "/opml.php?op=publish&key=" .
2e7f046f 5786 get_feed_access_key($link, 'OPML:Publish', false, $_SESSION["uid"]);
e0dc56d4
MK
5787
5788 return $url_path;
5789 }
f56e3080 5790
45004d43
AD
5791 /**
5792 * Purge a feed contents, marked articles excepted.
5793 *
5794 * @param mixed $link The database connection.
5795 * @param integer $id The id of the feed to purge.
5796 * @return void
5797 */
d1f0c584 5798 function clear_feed_articles($link, $id) {
e04c18a2
AD
5799
5800 if ($id != 0) {
5801 $result = db_query($link, "DELETE FROM ttrss_user_entries
a8ae1b9a 5802 WHERE feed_id = '$id' AND marked = false AND owner_uid = " . $_SESSION["uid"]);
e04c18a2
AD
5803 } else {
5804 $result = db_query($link, "DELETE FROM ttrss_user_entries
5805 WHERE feed_id IS NULL AND marked = false AND owner_uid = " . $_SESSION["uid"]);
5806 }
d1f0c584
AD
5807
5808 $result = db_query($link, "DELETE FROM ttrss_entries WHERE
5809 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
ced46404
AD
5810
5811 ccache_update($link, $id, $_SESSION['uid']);
45004d43
AD
5812 } // function clear_feed_articles
5813
5814 /**
5815 * Compute the Mozilla Firefox feed adding URL from server HOST and REQUEST_URI.
5816 *
5817 * @return string The Mozilla Firefox feed adding URL.
5818 */
5819 function add_feed_url() {
d70c5ae4 5820 $url_path = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
755a43ee
AD
5821 $url_path .= "?op=pref-feeds&quiet=1&subop=add&feed_url=%s";
5822 return $url_path;
45004d43
AD
5823 } // function add_feed_url
5824
5825 /**
5826 * Encrypt a password in SHA1.
5827 *
5828 * @param string $pass The password to encrypt.
5829 * @param string $login A optionnal login.
5830 * @return string The encrypted password.
5831 */
1a9f4d3c
AD
5832 function encrypt_password($pass, $login = '') {
5833 if ($login) {
5834 return "SHA1X:" . sha1("$login:$pass");
5835 } else {
5836 return "SHA1:" . sha1($pass);
5837 }
45004d43
AD
5838 } // function encrypt_password
5839
5840 /**
5841 * Update a feed batch.
5842 * Used by daemons to update n feeds by run.
5843 * Only update feed needing a update, and not being processed
5844 * by another process.
5845 *
5846 * @param mixed $link Database link
5847 * @param integer $limit Maximum number of feeds in update batch. Default to DAEMON_FEED_LIMIT.
5848 * @param boolean $from_http Set to true if you call this function from http to disable cli specific code.
5849 * @param boolean $debug Set to false to disable debug output. Default to true.
5850 * @return void
5851 */
5852 function update_daemon_common($link, $limit = DAEMON_FEED_LIMIT, $from_http = false, $debug = true) {
5853 // Process all other feeds using last_updated and interval parameters
5854
5855 // Test if the user has loggued in recently. If not, it does not update its feeds.
5856 if (DAEMON_UPDATE_LOGIN_LIMIT > 0) {
5857 if (DB_TYPE == "pgsql") {
5858 $login_thresh_qpart = "AND ttrss_users.last_login >= NOW() - INTERVAL '".DAEMON_UPDATE_LOGIN_LIMIT." days'";
5859 } else {
5860 $login_thresh_qpart = "AND ttrss_users.last_login >= DATE_SUB(NOW(), INTERVAL ".DAEMON_UPDATE_LOGIN_LIMIT." DAY)";
5861 }
5862 } else {
5863 $login_thresh_qpart = "";
5864 }
5865
5866 // Test if the feed need a update (update interval exceded).
5867 if (DB_TYPE == "pgsql") {
5868 $update_limit_qpart = "AND ((
5869 ttrss_feeds.update_interval = 0
5870 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_user_prefs.value || ' minutes') AS INTERVAL)
5871 ) OR (
5872 ttrss_feeds.update_interval > 0
5873 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_feeds.update_interval || ' minutes') AS INTERVAL)
da4caf5d 5874 ) OR ttrss_feeds.last_updated IS NULL)";
45004d43
AD
5875 } else {
5876 $update_limit_qpart = "AND ((
5877 ttrss_feeds.update_interval = 0
5878 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL CONVERT(ttrss_user_prefs.value, SIGNED INTEGER) MINUTE)
5879 ) OR (
5880 ttrss_feeds.update_interval > 0
5881 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL ttrss_feeds.update_interval MINUTE)
da4caf5d 5882 ) OR ttrss_feeds.last_updated IS NULL)";
45004d43
AD
5883 }
5884
5885 // Test if feed is currently being updated by another process.
5886 if (DB_TYPE == "pgsql") {
5887 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '120 seconds')";
5888 } else {
5889 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 120 SECOND))";
5890 }
5891
5892 // Test if there is a limit to number of updated feeds
5893 $query_limit = "";
5894 if($limit) $query_limit = sprintf("LIMIT %d", $limit);
5895
51b8c957
AD
5896 $random_qpart = sql_random_function();
5897
45004d43
AD
5898 // We search for feed needing update.
5899 $result = db_query($link, "SELECT ttrss_feeds.feed_url,ttrss_feeds.id, ttrss_feeds.owner_uid,
fc2b26a6 5900 ".SUBSTRING_FOR_DATE."(ttrss_feeds.last_updated,1,19) AS last_updated,
45004d43
AD
5901 ttrss_feeds.update_interval
5902 FROM
5903 ttrss_feeds, ttrss_users, ttrss_user_prefs
5904 WHERE
5905 ttrss_feeds.owner_uid = ttrss_users.id
5906 AND ttrss_users.id = ttrss_user_prefs.owner_uid
5907 AND ttrss_user_prefs.pref_name = 'DEFAULT_UPDATE_INTERVAL'
5908 $login_thresh_qpart $update_limit_qpart
51b8c957
AD
5909 $updstart_thresh_qpart
5910 ORDER BY $random_qpart $query_limit");
45004d43
AD
5911
5912 $user_prefs_cache = array();
5913
5914 if($debug) _debug(sprintf("Scheduled %d feeds to update...\n", db_num_rows($result)));
5915
5916 // Here is a little cache magic in order to minimize risk of double feed updates.
5917 $feeds_to_update = array();
5918 while ($line = db_fetch_assoc($result)) {
5919 $feeds_to_update[$line['id']] = $line;
5920 }
5921
5922 // We update the feed last update started date before anything else.
5923 // There is no lag due to feed contents downloads
5924 // It prevent an other process to update the same feed.
5925 $feed_ids = array_keys($feeds_to_update);
5926 if($feed_ids) {
5927 db_query($link, sprintf("UPDATE ttrss_feeds SET last_update_started = NOW()
5928 WHERE id IN (%s)", implode(',', $feed_ids)));
5929 }
5930
5931 // For each feed, we call the feed update function.
5932 while ($line = array_pop($feeds_to_update)) {
5933
5934 if($debug) _debug("Feed: " . $line["feed_url"] . ", " . $line["last_updated"]);
5935
cce9822a
AD
5936 update_rss_feed($link, $line["id"], true);
5937
45004d43
AD
5938 sleep(1); // prevent flood (FIXME make this an option?)
5939 }
5940
0e0dd486
AD
5941 // Send feed digests by email if needed.
5942 if (DAEMON_SENDS_DIGESTS) send_headlines_digests($link);
5943
5944 purge_orphans($link);
45004d43
AD
5945
5946 } // function update_daemon_common
1a9f4d3c 5947
621ffb00
AD
5948 function sanitize_article_content($text) {
5949 # we don't support CDATA sections in articles, they break our own escaping
5950 $text = preg_replace("/\[\[CDATA/", "", $text);
5951 $text = preg_replace("/\]\]\>/", "", $text);
5952 return $text;
5953 }
fee840fb
AD
5954
5955 function load_filters($link, $feed, $owner_uid, $action_id = false) {
5956 $filters = array();
5957
b8ffa322 5958 global $memcache;
fee840fb 5959
1f011328
AD
5960 $obj_id = md5("FILTER:$feed:$owner_uid:$action_id");
5961
b8ffa322
AD
5962 if ($memcache && $obj = $memcache->get($obj_id)) {
5963
b8ffa322
AD
5964 return $obj;
5965
5966 } else {
fee840fb 5967
b8ffa322
AD
5968 if ($action_id) $ftype_query_part = "action_id = '$action_id' AND";
5969
5970 $result = db_query($link, "SELECT reg_exp,
5971 ttrss_filter_types.name AS name,
5972 ttrss_filter_actions.name AS action,
5973 inverse,
5974 action_param,
5975 filter_param
5976 FROM ttrss_filters,ttrss_filter_types,ttrss_filter_actions WHERE
5977 enabled = true AND
5978 $ftype_query_part
5979 owner_uid = $owner_uid AND
5980 ttrss_filter_types.id = filter_type AND
5981 ttrss_filter_actions.id = action_id AND
5982 (feed_id IS NULL OR feed_id = '$feed') ORDER BY reg_exp");
5983
5984 while ($line = db_fetch_assoc($result)) {
5985 if (!$filters[$line["name"]]) $filters[$line["name"]] = array();
5986 $filter["reg_exp"] = $line["reg_exp"];
5987 $filter["action"] = $line["action"];
5988 $filter["action_param"] = $line["action_param"];
5989 $filter["filter_param"] = $line["filter_param"];
5990 $filter["inverse"] = sql_bool_to_bool($line["inverse"]);
5991
5992 array_push($filters[$line["name"]], $filter);
5993 }
5994
5995 if ($memcache) $memcache->add($obj_id, $filters, 0, 3600*8);
5996
5997 return $filters;
5998 }
fee840fb 5999 }
1e36af0c
AD
6000
6001 function get_score_pic($score) {
1cce3aca 6002 if ($score > 100) {
1e36af0c 6003 return "score_high.png";
1cce3aca 6004 } else if ($score > 0) {
883fee8d 6005 return "score_half_high.png";
1cce3aca 6006 } else if ($score < -100) {
883fee8d 6007 return "score_low.png";
1cce3aca 6008 } else if ($score < 0) {
883fee8d 6009 return "score_half_low.png";
1e36af0c 6010 } else {
883fee8d 6011 return "score_neutral.png";
1e36af0c
AD
6012 }
6013 }
ec92c9d1 6014
0745839a 6015 function rounded_table_start($classname, $header = "&nbsp;") {
ec92c9d1 6016 print "<table width='100%' class='$classname' cellspacing='0' cellpadding='0'>";
74d5c8fa 6017 print "<tr><td class='c1'>&nbsp;</td><td class='top'>$header</td><td class='c2'>&nbsp;</td></tr>";
ec92c9d1
AD
6018 print "<tr><td class='left'>&nbsp;</td><td class='content'>";
6019 }
6020
0745839a 6021 function rounded_table_end($footer = "&nbsp;") {
ec92c9d1 6022 print "</td><td class='right'>&nbsp;</td></tr>";
74d5c8fa 6023 print "<tr><td class='c4'>&nbsp;</td><td class='bottom'>$footer</td><td class='c3'>&nbsp;</td></tr>";
ec92c9d1
AD
6024 print "</table>";
6025 }
6026
7defa089
AD
6027 function feed_has_icon($id) {
6028 return is_file(ICONS_DIR . "/$id.ico") && filesize(ICONS_DIR . "/$id.ico") > 0;
6029 }
f29ba148
AD
6030
6031 function init_connection($link) {
6032 if (DB_TYPE == "pgsql") {
6fc720fd 6033 pg_query($link, "set client_encoding = 'UTF-8'");
f29ba148 6034 pg_set_client_encoding("UNICODE");
045d0ab8 6035 pg_query($link, "set datestyle = 'ISO, european'");
324944f3 6036 pg_query($link, "set TIME ZONE 0");
f29ba148 6037 } else {
324944f3
AD
6038 db_query($link, "SET time_zone = '+0:0'");
6039
f29ba148
AD
6040 if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
6041 db_query($link, "SET NAMES " . MYSQL_CHARSET);
6042 // db_query($link, "SET CHARACTER SET " . MYSQL_CHARSET);
6043 }
6044 }
6045 }
5e96ca9d
AD
6046
6047 function update_feedbrowser_cache($link) {
6048
931dcbc1 6049 $result = db_query($link, "SELECT feed_url,title, COUNT(id) AS subscribers
5e96ca9d
AD
6050 FROM ttrss_feeds WHERE (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf
6051 WHERE tf.feed_url = ttrss_feeds.feed_url
6052 AND (private IS true OR feed_url LIKE '%:%@%/%'))
d460f7aa 6053 GROUP BY feed_url, title ORDER BY subscribers DESC LIMIT 1000");
5e96ca9d
AD
6054
6055 db_query($link, "BEGIN");
6056
6057 db_query($link, "DELETE FROM ttrss_feedbrowser_cache");
6058
6059 $count = 0;
6060
6061 while ($line = db_fetch_assoc($result)) {
6062 $subscribers = db_escape_string($line["subscribers"]);
6063 $feed_url = db_escape_string($line["feed_url"]);
931dcbc1
AD
6064 $title = db_escape_string($line["title"]);
6065
6066 $tmp_result = db_query($link, "SELECT subscribers FROM
6067 ttrss_feedbrowser_cache WHERE feed_url = '$feed_url'");
6068
6069 if (db_num_rows($tmp_result) == 0) {
6070
6071 db_query($link, "INSERT INTO ttrss_feedbrowser_cache
6072 (feed_url, title, subscribers) VALUES ('$feed_url',
6073 '$title', '$subscribers')");
6074
6075 ++$count;
6076
6077 }
5e96ca9d 6078
5e96ca9d
AD
6079 }
6080
6081 db_query($link, "COMMIT");
6082
6083 return $count;
6084
6085 }
2627f2d0 6086
8a4c759e 6087 function ccache_zero($link, $feed_id, $owner_uid) {
2627f2d0
AD
6088 db_query($link, "UPDATE ttrss_counters_cache SET
6089 value = 0, updated = NOW() WHERE
6090 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
8a4c759e 6091 }
2627f2d0 6092
ad0056a8
AD
6093 function ccache_zero_all($link, $owner_uid) {
6094 db_query($link, "UPDATE ttrss_counters_cache SET
6095 value = 0 WHERE owner_uid = '$owner_uid'");
6096
6097 db_query($link, "UPDATE ttrss_cat_counters_cache SET
6098 value = 0 WHERE owner_uid = '$owner_uid'");
6099 }
6100
c7e51de1
AD
6101 function ccache_remove($link, $feed_id, $owner_uid, $is_cat = false) {
6102
6103 if (!$is_cat) {
6104 $table = "ttrss_counters_cache";
6105 } else {
6106 $table = "ttrss_cat_counters_cache";
6107 }
6108
6109 db_query($link, "DELETE FROM $table WHERE
6110 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
6111
6112 }
6113
5f4f7adf
AD
6114 function ccache_update_all($link, $owner_uid) {
6115
6116 if (get_pref($link, 'ENABLE_FEED_CATS', $owner_uid)) {
6117
6118 $result = db_query($link, "SELECT feed_id FROM ttrss_cat_counters_cache
6119 WHERE feed_id > 0 AND owner_uid = '$owner_uid'");
6120
6121 while ($line = db_fetch_assoc($result)) {
6122 ccache_update($link, $line["feed_id"], $owner_uid, true);
6123 }
6124
c5ffeb61
AD
6125 /* We have to manually include category 0 */
6126
6127 ccache_update($link, 0, $owner_uid, true);
6128
8a4c759e 6129 } else {
5f4f7adf
AD
6130 $result = db_query($link, "SELECT feed_id FROM ttrss_counters_cache
6131 WHERE feed_id > 0 AND owner_uid = '$owner_uid'");
8a4c759e 6132
5f4f7adf
AD
6133 while ($line = db_fetch_assoc($result)) {
6134 print ccache_update($link, $line["feed_id"], $owner_uid);
6135
6136 }
6137
6138 }
6139 }
2627f2d0 6140
6b49a3dd
AD
6141 function ccache_find($link, $feed_id, $owner_uid, $is_cat = false,
6142 $no_update = false) {
8a4c759e 6143
5c432ba4
AD
6144 if (!is_numeric($feed_id)) return;
6145
8a4c759e
AD
6146 if (!$is_cat) {
6147 $table = "ttrss_counters_cache";
32d2181b
AD
6148 if ($feed_id > 0) {
6149 $tmp_result = db_query($link, "SELECT owner_uid FROM ttrss_feeds
6150 WHERE id = '$feed_id'");
6151 $owner_uid = db_fetch_result($tmp_result, 0, "owner_uid");
6152 }
8a4c759e
AD
6153 } else {
6154 $table = "ttrss_cat_counters_cache";
6155 }
6156
6157 if (DB_TYPE == "pgsql") {
6158 $date_qpart = "updated > NOW() - INTERVAL '15 minutes'";
6159 } else if (DB_TYPE == "mysql") {
6160 $date_qpart = "updated > DATE_SUB(NOW(), INTERVAL 15 MINUTE)";
6161 }
6162
6163 $result = db_query($link, "SELECT value FROM $table
6164 WHERE owner_uid = '$owner_uid' AND feed_id = '$feed_id'
37fb651d 6165 LIMIT 1");
2627f2d0
AD
6166
6167 if (db_num_rows($result) == 1) {
6168 return db_fetch_result($result, 0, "value");
6169 } else {
6b49a3dd
AD
6170 if ($no_update) {
6171 return -1;
6172 } else {
6173 return ccache_update($link, $feed_id, $owner_uid, $is_cat);
6174 }
2627f2d0
AD
6175 }
6176
6177 }
6178
6c2a9b9e 6179 function ccache_update($link, $feed_id, $owner_uid, $is_cat = false,
6b49a3dd
AD
6180 $update_pcat = true) {
6181
5c432ba4
AD
6182 if (!is_numeric($feed_id)) return;
6183
32d2181b 6184 if (!$is_cat && $feed_id > 0) {
2e93b64c
AD
6185 $tmp_result = db_query($link, "SELECT owner_uid FROM ttrss_feeds
6186 WHERE id = '$feed_id'");
6187 $owner_uid = db_fetch_result($tmp_result, 0, "owner_uid");
6188 }
6189
43ead405
AD
6190 $prev_unread = ccache_find($link, $feed_id, $owner_uid, $is_cat, true);
6191
6192 /* When updating a label, all we need to do is recalculate feed counters
6193 * because labels are not cached */
c98e43db
AD
6194
6195 if ($feed_id < 0) {
43ead405
AD
6196 ccache_update_all($link, $owner_uid);
6197 return;
c98e43db
AD
6198 }
6199
8a4c759e
AD
6200 if (!$is_cat) {
6201 $table = "ttrss_counters_cache";
6202 } else {
6203 $table = "ttrss_cat_counters_cache";
6204 }
6205
b6d486a3 6206 if ($is_cat && $feed_id >= 0) {
37fb651d
AD
6207 if ($feed_id != 0) {
6208 $cat_qpart = "cat_id = '$feed_id'";
6209 } else {
6210 $cat_qpart = "cat_id IS NULL";
6211 }
6212
6b49a3dd
AD
6213 /* Recalculate counters for child feeds */
6214
6215 $result = db_query($link, "SELECT id FROM ttrss_feeds
6216 WHERE owner_uid = '$owner_uid' AND $cat_qpart");
6217
6218 while ($line = db_fetch_assoc($result)) {
6219 ccache_update($link, $line["id"], $owner_uid, false, false);
6220 }
6221
37fb651d
AD
6222 $result = db_query($link, "SELECT SUM(value) AS sv
6223 FROM ttrss_counters_cache, ttrss_feeds
6224 WHERE id = feed_id AND $cat_qpart AND
6225 ttrss_feeds.owner_uid = '$owner_uid'");
6226
51e196de 6227 $unread = (int) db_fetch_result($result, 0, "sv");
37fb651d 6228
f55b0b12
AD
6229 } else {
6230 $unread = (int) getFeedArticles($link, $feed_id, $is_cat, true, $owner_uid);
37fb651d 6231 }
2627f2d0 6232
c7e51de1
AD
6233 db_query($link, "BEGIN");
6234
8a4c759e 6235 $result = db_query($link, "SELECT feed_id FROM $table
2627f2d0
AD
6236 WHERE owner_uid = '$owner_uid' AND feed_id = '$feed_id' LIMIT 1");
6237
6238 if (db_num_rows($result) == 1) {
8a4c759e 6239 db_query($link, "UPDATE $table SET
2627f2d0
AD
6240 value = '$unread', updated = NOW() WHERE
6241 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
6242
6243 } else {
8a4c759e 6244 db_query($link, "INSERT INTO $table
2627f2d0
AD
6245 (feed_id, value, owner_uid, updated)
6246 VALUES
6247 ($feed_id, $unread, $owner_uid, NOW())");
2627f2d0
AD
6248 }
6249
c7e51de1
AD
6250 db_query($link, "COMMIT");
6251
6b49a3dd 6252 if ($feed_id > 0 && $prev_unread != $unread) {
8a4c759e 6253
37fb651d 6254 if (!$is_cat) {
8a4c759e 6255
6b49a3dd 6256 /* Update parent category */
8a4c759e 6257
6b49a3dd 6258 if ($update_pcat) {
37fb651d 6259
6b49a3dd
AD
6260 $result = db_query($link, "SELECT cat_id FROM ttrss_feeds
6261 WHERE owner_uid = '$owner_uid' AND id = '$feed_id'");
8a4c759e 6262
6b49a3dd 6263 $cat_id = (int) db_fetch_result($result, 0, "cat_id");
37fb651d 6264
6b49a3dd 6265 ccache_update($link, $cat_id, $owner_uid, true);
6c2a9b9e 6266
6c2a9b9e 6267 }
8a4c759e 6268 }
5f4f7adf
AD
6269 } else if ($feed_id < 0) {
6270 ccache_update_all($link, $owner_uid);
8a4c759e
AD
6271 }
6272
6273 return $unread;
2627f2d0 6274 }
ceb30ba4
AD
6275
6276 function label_find_id($link, $label, $owner_uid) {
6277 $result = db_query($link,
6278 "SELECT id FROM ttrss_labels2 WHERE caption = '$label'
6279 AND owner_uid = '$owner_uid' LIMIT 1");
6280
6281 if (db_num_rows($result) == 1) {
6282 return db_fetch_result($result, 0, "id");
6283 } else {
6284 return 0;
6285 }
6286 }
6287
814bff66 6288 function get_article_labels($link, $id) {
d721a547
AD
6289 global $memcache;
6290
814bff66 6291 $result = db_query($link,
2eb9c95c 6292 "SELECT DISTINCT label_id,caption,fg_color,bg_color
814bff66
AD
6293 FROM ttrss_labels2, ttrss_user_labels2
6294 WHERE id = label_id
6295 AND article_id = '$id'
e2549229
AD
6296 AND owner_uid = ".$_SESSION["uid"] . "
6297 ORDER BY caption");
814bff66 6298
d721a547
AD
6299 $obj_id = md5("LABELS:$id:" . $_SESSION["uid"]);
6300
814bff66
AD
6301 $rv = array();
6302
d721a547
AD
6303 if ($memcache && $obj = $memcache->get($obj_id)) {
6304 return $obj;
6305 } else {
6306 while ($line = db_fetch_assoc($result)) {
6307 $rk = array($line["label_id"], $line["caption"], $line["fg_color"],
6308 $line["bg_color"]);
6309 array_push($rv, $rk);
6310 }
6311 if ($memcache) $memcache->add($obj_id, $rv, 0, 3600);
814bff66
AD
6312 }
6313
6314 return $rv;
6315 }
6316
6317
b8a637f3
AD
6318 function label_find_caption($link, $label, $owner_uid) {
6319 $result = db_query($link,
6320 "SELECT caption FROM ttrss_labels2 WHERE id = '$label'
6321 AND owner_uid = '$owner_uid' LIMIT 1");
6322
6323 if (db_num_rows($result) == 1) {
6324 return db_fetch_result($result, 0, "caption");
6325 } else {
6326 return "";
6327 }
6328 }
6329
933ba4ee
AD
6330 function label_remove_article($link, $id, $label, $owner_uid) {
6331
6332 $label_id = label_find_id($link, $label, $owner_uid);
6333
6334 if (!$label_id) return;
6335
6336 $result = db_query($link,
6337 "DELETE FROM ttrss_user_labels2
6338 WHERE
6339 label_id = '$label_id' AND
6340 article_id = '$id'");
6341 }
6342
ceb30ba4
AD
6343 function label_add_article($link, $id, $label, $owner_uid) {
6344
d721a547
AD
6345 global $memcache;
6346
6347 if ($memcache) {
6348 $obj_id = md5("LABELS:$id:$owner_uid");
6349 $memcache->delete($obj_id);
6350 }
6351
ceb30ba4
AD
6352 $label_id = label_find_id($link, $label, $owner_uid);
6353
6354 if (!$label_id) return;
6355
6356 $result = db_query($link,
6357 "SELECT
6358 article_id FROM ttrss_labels2, ttrss_user_labels2
6359 WHERE
6360 label_id = id AND
6361 label_id = '$label_id' AND
6362 article_id = '$id' AND owner_uid = '$owner_uid'
6363 LIMIT 1");
6364
6365 if (db_num_rows($result) == 0) {
6366 db_query($link, "INSERT INTO ttrss_user_labels2
6367 (label_id, article_id) VALUES ('$label_id', '$id')");
6368 }
6369 }
1380f8ee
AD
6370
6371 function label_remove($link, $id, $owner_uid) {
d721a547
AD
6372 global $memcache;
6373
6374 if ($memcache) {
6375 $obj_id = md5("LABELS:$id:$owner_uid");
6376 $memcache->delete($obj_id);
6377 }
1380f8ee
AD
6378
6379 db_query($link, "BEGIN");
6380
6381 $result = db_query($link, "SELECT caption FROM ttrss_labels2
6382 WHERE id = '$id'");
6383
6384 $caption = db_fetch_result($result, 0, "caption");
6385
6386 $result = db_query($link, "DELETE FROM ttrss_labels2 WHERE id = '$id'
6387 AND owner_uid = " . $_SESSION["uid"]);
6388
6389 if (db_affected_rows($link, $result) != 0 && $caption) {
6390
8801fb01
AD
6391 /* Remove access key for the label */
6392
6393 $ext_id = -11 - $id;
6394
6395 db_query($link, "DELETE FROM ttrss_access_keys WHERE
6396 feed_id = '$ext_id' AND owner_uid = $owner_uid");
6397
1380f8ee
AD
6398 /* Disable filters that reference label being removed */
6399
6400 db_query($link, "UPDATE ttrss_filters SET
6401 enabled = false WHERE action_param = '$caption'
6402 AND action_id = 7
6403 AND owner_uid = " . $_SESSION["uid"]);
6404 }
6405
6406 db_query($link, "COMMIT");
6407 }
79c88e11 6408
6b2ee18d
AD
6409 function label_create($link, $caption) {
6410
6411 db_query($link, "BEGIN");
6412
6413 $result = false;
6414
6415 $result = db_query($link, "SELECT id FROM ttrss_labels2
6416 WHERE caption = '$caption' AND owner_uid = ". $_SESSION["uid"]);
6417
6418 if (db_num_rows($result) == 0) {
6419 $result = db_query($link,
6420 "INSERT INTO ttrss_labels2 (caption,owner_uid)
6421 VALUES ('$caption', '".$_SESSION["uid"]."')");
6422
6423 $result = db_affected_rows($link, $result) != 0;
6424 }
6425
6426 db_query($link, "COMMIT");
6427
6428 return $result;
6429 }
6430
79c88e11
AD
6431 function print_labels_headlines_dropdown($link, $feed_id) {
6432 print "<li onclick=\"javascript:addLabel()\">
6433 &nbsp;&nbsp;".__("Create label...")."</li>";
6434
6435 $result = db_query($link, "SELECT id, caption FROM ttrss_labels2 WHERE
6436 owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
6437
6438 while ($line = db_fetch_assoc($result)) {
6439
6440 $label_id = $line["id"];
6441 $label_caption = $line["caption"];
c3fddd05 6442 $id = $line["id"];
79c88e11
AD
6443
6444 if ($feed_id < -10 && $feed_id == -11-$label_id) {
6445 print "<li id=\"LHDL-$id\"
6446 onclick=\"javascript:selectionRemoveLabel($label_id)\">
6447 &nbsp;&nbsp;$label_caption ".__('(remove)')."</li>";
6448 } else {
6449 print "<li id=\"LHDL-$id\"
6450 onclick=\"javascript:selectionAssignLabel($label_id)\">
6451 &nbsp;&nbsp;$label_caption</li>";
6452 }
6453 }
6454 }
307d187c
AD
6455
6456 function format_tags_string($tags, $id) {
6457
6458 $tags_str = "";
6459 $tags_nolinks_str = "";
6460
6461 $num_tags = 0;
6462
dce46cad 6463/* if (get_user_theme($link) == "3pane") {
307d187c
AD
6464 $tag_limit = 3;
6465 } else {
6466 $tag_limit = 6;
d9084cf2
AD
6467 } */
6468
6469 $tag_limit = 6;
307d187c
AD
6470
6471 $formatted_tags = array();
6472
6473 foreach ($tags as $tag) {
6474 $num_tags++;
6475 $tag_escaped = str_replace("'", "\\'", $tag);
6476
275a0af2
AD
6477 if (mb_strlen($tag) > 30) {
6478 $tag = truncate_string($tag, 30);
6479 }
6480
307d187c
AD
6481 $tag_str = "<a href=\"javascript:viewfeed('$tag_escaped')\">$tag</a>";
6482
6483 array_push($formatted_tags, $tag_str);
275a0af2
AD
6484
6485 $tmp_tags_str = implode(", ", $formatted_tags);
307d187c 6486
275a0af2 6487 if ($num_tags == $tag_limit || mb_strlen($tmp_tags_str) > 150) {
307d187c
AD
6488 break;
6489 }
6490 }
6491
6492 $tags_str = implode(", ", $formatted_tags);
6493
6494 if ($num_tags < count($tags)) {
6495 $tags_str .= ", &hellip;";
6496 }
6497
6498 if ($num_tags == 0) {
6499 $tags_str = __("no tags");
6500 }
6501
6502 return $tags_str;
6503
6504 }
2eb9c95c
AD
6505
6506 function format_article_labels($labels, $id) {
6507
6508 $labels_str = "";
6509
6510 foreach ($labels as $l) {
6511 $labels_str .= sprintf("<span class='hlLabelRef'
6512 style='color : %s; background-color : %s'>%s</span>",
6513 $l[2], $l[3], $l[1]);
6514 }
6515
6516 return $labels_str;
6517
6518 }
c7e51de1
AD
6519
6520 function format_article_note($id, $note) {
6521
6522 $note_escaped = htmlspecialchars($note, ENT_QUOTES);
6523
6524 $str = "<div class='articleNote'>";
db54143e 6525 $str .= $note;
c7e51de1
AD
6526 $str .= "<div class='articleNoteOps'>";
6527 $str .= "<a href=\"javascript:publishWithNote($id, '$note_escaped')\">".
6528 __('edit note')."</a>";
6529 $str .= "</div>";
c7e51de1
AD
6530 $str .= "</div>";
6531
6532 return $str;
6533 }
7f969260
AD
6534
6535 function toggle_collapse_cat($link, $cat_id) {
6536 if ($cat_id > 0) {
6537 db_query($link, "UPDATE ttrss_feed_categories SET
6538 collapsed = NOT collapsed WHERE id = '$cat_id' AND owner_uid = " .
6539 $_SESSION["uid"]);
6540 } else {
6541 $pref_name = '';
6542
6543 switch ($cat_id) {
6544 case -1:
6545 $pref_name = '_COLLAPSED_SPECIAL';
6546 break;
6547 case -2:
6548 $pref_name = '_COLLAPSED_LABELS';
6549 break;
6550 case 0:
6551 $pref_name = '_COLLAPSED_UNCAT';
6552 break;
6553 }
6554
6555 if ($pref_name) {
6556 if (get_pref($link, $pref_name)) {
6557 set_pref($link, $pref_name, 'false');
6558 } else {
6559 set_pref($link, $pref_name, 'true');
6560 }
6561 }
6562 }
6563 }
7e329f13
AD
6564
6565 function remove_feed($link, $id, $owner_uid) {
6566
6567 if ($id > 0) {
e04c18a2
AD
6568
6569 /* save starred articles in Archived feed */
6570
6571 db_query($link, "BEGIN");
6572
8056ec50
AD
6573 /* prepare feed if necessary */
6574
6575 $result = db_query($link, "SELECT id FROM ttrss_archived_feeds
6576 WHERE id = '$id'");
6577
6578 if (db_num_rows($result) == 0) {
6579 db_query($link, "INSERT INTO ttrss_archived_feeds
6580 (id, owner_uid, title, feed_url, site_url)
6581 SELECT id, owner_uid, title, feed_url, site_url from ttrss_feeds
6582 WHERE id = '$id'");
6583 }
6584
74d22f0c
AD
6585 db_query($link, "UPDATE ttrss_user_entries SET feed_id = NULL,
6586 orig_feed_id = '$id' WHERE feed_id = '$id' AND
e04c18a2
AD
6587 marked = true AND owner_uid = $owner_uid");
6588
8801fb01
AD
6589 /* Remove access key for the feed */
6590
6591 db_query($link, "DELETE FROM ttrss_access_keys WHERE
6592 feed_id = '$id' AND owner_uid = $owner_uid");
6593
e04c18a2
AD
6594 /* remove the feed */
6595
7e329f13
AD
6596 db_query($link, "DELETE FROM ttrss_feeds
6597 WHERE id = '$id' AND owner_uid = $owner_uid");
6598
e04c18a2
AD
6599 db_query($link, "COMMIT");
6600
69877646 6601/* if (file_exists(ICONS_DIR . "/$id.ico")) {
7e329f13 6602 unlink(ICONS_DIR . "/$id.ico");
69877646 6603 } */
7e329f13
AD
6604
6605 ccache_remove($link, $id, $owner_uid);
6606
6607 } else {
6608 label_remove($link, -11-$id, $owner_uid);
6609 ccache_remove($link, -11-$id, $owner_uid);
6610 }
6611 }
6612
5c7c7da9 6613 function add_feed_category($link, $feed_cat) {
c00907f2
AD
6614
6615 if (!$feed_cat) return false;
6616
5c7c7da9
AD
6617 db_query($link, "BEGIN");
6618
6619 $result = db_query($link,
6620 "SELECT id FROM ttrss_feed_categories
6621 WHERE title = '$feed_cat' AND owner_uid = ".$_SESSION["uid"]);
6622
6623 if (db_num_rows($result) == 0) {
6624
6625 $result = db_query($link,
6626 "INSERT INTO ttrss_feed_categories (owner_uid,title)
6627 VALUES ('".$_SESSION["uid"]."', '$feed_cat')");
6628
6629 db_query($link, "COMMIT");
6630
6631 return true;
6632 }
6633
6634 return false;
6635 }
6636
7e329f13
AD
6637 function remove_feed_category($link, $id, $owner_uid) {
6638
6639 db_query($link, "DELETE FROM ttrss_feed_categories
6640 WHERE id = '$id' AND owner_uid = $owner_uid");
6641
6642 ccache_remove($link, $id, $owner_uid, true);
6643 }
6644
16fdac16
AD
6645 function archive_article($link, $id, $owner_uid) {
6646 db_query($link, "BEGIN");
6647
6648 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
6649 WHERE ref_id = '$id' AND owner_uid = $owner_uid");
6650
6651 if (db_num_rows($result) != 0) {
6652
6653 /* prepare the archived table */
6654
6655 $feed_id = (int) db_fetch_result($result, 0, "feed_id");
6656
6657 if ($feed_id) {
6658 $result = db_query($link, "SELECT id FROM ttrss_archived_feeds
6659 WHERE id = '$feed_id'");
6660
6661 if (db_num_rows($result) == 0) {
6662 db_query($link, "INSERT INTO ttrss_archived_feeds
6663 (id, owner_uid, title, feed_url, site_url)
6664 SELECT id, owner_uid, title, feed_url, site_url from ttrss_feeds
6665 WHERE id = '$feed_id'");
6666 }
6667
6668 db_query($link, "UPDATE ttrss_user_entries
6669 SET orig_feed_id = feed_id, feed_id = NULL
6670 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
6671 }
6672 }
6673
6674 db_query($link, "COMMIT");
6675 }
ab197ae1
AD
6676
6677 function getArticleFeed($link, $id) {
6678 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
a545dc31 6679 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
ab197ae1
AD
6680
6681 if (db_num_rows($result) != 0) {
6682 return db_fetch_result($result, 0, "feed_id");
6683 } else {
6684 return 0;
6685 }
6686 }
a5819bb3
AD
6687
6688 function make_url_from_parts($parts) {
6689 $url = $parts['scheme'] . '://' . $parts['host'];
6690
6691 if ($parts['path']) $url .= $parts['path'];
6692 if ($parts['query']) $url .= '?' . $parts['query'];
6693
6694 return $url;
6695 }
6696
f2c6c008
CW
6697 /**
6698 * Fixes incomplete URLs by prepending "http://".
f0266f51
CW
6699 * Also replaces feed:// with http://, and
6700 * prepends a trailing slash if the url is a domain name only.
f2c6c008
CW
6701 *
6702 * @param string $url Possibly incomplete URL
6703 *
6704 * @return string Fixed URL.
6705 */
6706 function fix_url($url) {
6707 if (strpos($url, '://') === false) {
6708 $url = 'http://' . $url;
f0266f51
CW
6709 } else if (substr($url, 0, 5) == 'feed:') {
6710 $url = 'http:' . substr($url, 5);
6711 }
6712
6713 //prepend slash if the URL has no slash in it
6714 // "http://www.example" -> "http://www.example/"
6715 if (strpos($url, '/', 7) === false) {
6716 $url .= '/';
f2c6c008
CW
6717 }
6718 return $url;
6719 }
6720
a5819bb3
AD
6721 function validate_feed_url($url) {
6722 $parts = parse_url($url);
6723
6724 return ($parts['scheme'] == 'http' || $parts['scheme'] == 'feed' || $parts['scheme'] == 'https');
6725
6726 }
d9084cf2 6727
be35798b
AD
6728 function get_article_enclosures($link, $id) {
6729
6730 global $memcache;
6731
6732 $query = "SELECT * FROM ttrss_enclosures
6733 WHERE post_id = '$id' AND content_url != ''";
6734
bd3f2ade 6735 $obj_id = md5("ENCLOSURES:$id");
be35798b
AD
6736
6737 $rv = array();
6738
bd3f2ade 6739 if ($memcache && $obj = $memcache->get($obj_id)) {
be35798b
AD
6740 $rv = $obj;
6741 } else {
6742 $result = db_query($link, $query);
6743
6744 if (db_num_rows($result) > 0) {
6745 while ($line = db_fetch_assoc($result)) {
6746 array_push($rv, $line);
6747 }
bd3f2ade 6748 if ($memcache) $memcache->add($obj_id, $rv, 0, 3600);
be35798b
AD
6749 }
6750 }
6751
6752 return $rv;
6753 }
6754
911d4c08 6755 function api_get_feeds($link, $cat_id, $unread_only, $limit, $offset) {
911d4c08
AD
6756
6757 $feeds = array();
6758
911d4c08
AD
6759 /* Labels */
6760
fb8d17f3 6761 if ($cat_id == -4 || $cat_id == -2) {
911d4c08
AD
6762 $counters = getLabelCounters($link, true);
6763
11232703 6764 foreach (array_values($counters) as $cv) {
911d4c08 6765
11232703 6766 $unread = $cv["counter"];
911d4c08
AD
6767
6768 if ($unread || !$unread_only) {
6769
6770 $row = array(
11232703
AD
6771 "id" => $cv["id"],
6772 "title" => $cv["description"],
6773 "unread" => $cv["counter"],
911d4c08
AD
6774 "cat_id" => -2,
6775 );
6776
6777 array_push($feeds, $row);
6778 }
6779 }
6780 }
6781
6782 /* Virtual feeds */
6783
fb8d17f3 6784 if ($cat_id == -4 || $cat_id == -1) {
911d4c08
AD
6785 foreach (array(-1, -2, -3, -4, 0) as $i) {
6786 $unread = getFeedUnread($link, $i);
6787
6788 if ($unread || !$unread_only) {
6789 $title = getFeedTitle($link, $i);
6790
6791 $row = array(
6792 "id" => $i,
6793 "title" => $title,
6794 "unread" => $unread,
6795 "cat_id" => -1,
6796 );
6797 array_push($feeds, $row);
6798 }
6799
6800 }
6801 }
b41c2549
AD
6802
6803 /* Real feeds */
6804
6805 if ($limit) {
6806 $limit_qpart = "LIMIT $limit OFFSET $offset";
6807 } else {
6808 $limit_qpart = "";
6809 }
6810
fb8d17f3 6811 if ($cat_id == -4 || $cat_id == -3) {
b41c2549
AD
6812 $result = db_query($link, "SELECT
6813 id, feed_url, cat_id, title, ".
6814 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
6815 FROM ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"] .
6816 " ORDER BY cat_id, title " . $limit_qpart);
6817 } else {
fb8d17f3
AD
6818
6819 if ($cat_id)
6820 $cat_qpart = "cat_id = '$cat_id'";
6821 else
6822 $cat_qpart = "cat_id IS NULL";
6823
b41c2549
AD
6824 $result = db_query($link, "SELECT
6825 id, feed_url, cat_id, title, ".
6826 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
6827 FROM ttrss_feeds WHERE
fb8d17f3 6828 $cat_qpart AND owner_uid = " . $_SESSION["uid"] .
b41c2549
AD
6829 " ORDER BY cat_id, title " . $limit_qpart);
6830 }
6831
6832 while ($line = db_fetch_assoc($result)) {
6833
6834 $unread = getFeedUnread($link, $line["id"]);
6835
6836 $has_icon = feed_has_icon($line['id']);
6837
6838 if ($unread || !$unread_only) {
6839
6840 $row = array(
6841 "feed_url" => $line["feed_url"],
6842 "title" => $line["title"],
6843 "id" => (int)$line["id"],
6844 "unread" => (int)$unread,
6845 "has_icon" => $has_icon,
6846 "cat_id" => (int)$line["cat_id"],
6847 "last_updated" => strtotime($line["last_updated"])
6848 );
6849
6850 array_push($feeds, $row);
6851 }
6852 }
6853
911d4c08
AD
6854 return $feeds;
6855 }
6856
6857 function api_get_headlines($link, $feed_id, $limit, $offset,
6858 $filter, $is_cat, $show_excerpt, $show_content, $view_mode, $order) {
6859
6860 /* do not rely on params below */
6861
6862 $search = db_escape_string($_REQUEST["search"]);
6863 $search_mode = db_escape_string($_REQUEST["search_mode"]);
6864 $match_on = db_escape_string($_REQUEST["match_on"]);
6865
6866 $qfh_ret = queryFeedHeadlines($link, $feed_id, $limit,
6867 $view_mode, $is_cat, $search, $search_mode, $match_on,
6868 $order, $offset);
6869
6870 $result = $qfh_ret[0];
6871 $feed_title = $qfh_ret[1];
6872
6873 $headlines = array();
6874
6875 while ($line = db_fetch_assoc($result)) {
6876 $is_updated = ($line["last_read"] == "" &&
6877 ($line["unread"] != "t" && $line["unread"] != "1"));
6878
6879 $headline_row = array(
6880 "id" => (int)$line["id"],
6881 "unread" => sql_bool_to_bool($line["unread"]),
6882 "marked" => sql_bool_to_bool($line["marked"]),
9ed133e7 6883 "published" => sql_bool_to_bool($line["published"]),
911d4c08
AD
6884 "updated" => strtotime($line["updated"]),
6885 "is_updated" => $is_updated,
6886 "title" => $line["title"],
6887 "link" => $line["link"],
6888 "feed_id" => $line["feed_id"],
78ac6caf 6889 "tags" => get_article_tags($link, $line["id"]),
911d4c08
AD
6890 );
6891
6892 if ($show_excerpt) {
6893 $excerpt = truncate_string(strip_tags($line["content_preview"]), 100);
6894 $headline_row["excerpt"] = $excerpt;
6895 }
6896
6897 if ($show_content) {
6898 $headline_row["content"] = $line["content_preview"];
6899 }
6900
6901 array_push($headlines, $headline_row);
6902 }
6903
6904 return $headlines;
6905 }
6906
fe1087fb
AD
6907 function generate_dashboard_feed($link) {
6908 print "<headlines id=\"-5\" is_cat=\"\">";
6909
6910 print '<![CDATA[<div id="headlinesContainer">';
6911
6912 print "<div class='whiteBox'>".__('No feed selected.');
6913
5d128c95
AD
6914 print "<p class=\"small\"><span class=\"insensitive\">";
6915
6916 $result = db_query($link, "SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
6917 WHERE owner_uid = " . $_SESSION['uid']);
6918
6919 $last_updated = db_fetch_result($result, 0, "last_updated");
324944f3 6920 $last_updated = make_local_datetime($link, $last_updated, false);
5d128c95
AD
6921
6922 printf(__("Feeds last updated at %s"), $last_updated);
6923
fe1087fb
AD
6924 $result = db_query($link, "SELECT COUNT(id) AS num_errors
6925 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
6926
6927 $num_errors = db_fetch_result($result, 0, "num_errors");
6928
6929 if ($num_errors > 0) {
5d128c95
AD
6930 print "<br/>";
6931 print "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
fe1087fb
AD
6932 __('Some feeds have update errors (click for details)')."</a>";
6933 }
5d128c95 6934 print "</span></p>";
fe1087fb
AD
6935
6936 print "</div>]]>";
6937 print "</headlines>";
6938
ffbe082d
AD
6939 print "<headlines-info><![CDATA[";
6940
6941 $info = array("count" => 0,
6942 "vgroup_last_feed" => '',
6943 "unread" => 0,
6944 "disable_cache" => true);
6945
6946 print json_encode($info);
6947
6948 print "]]></headlines-info>";
fe1087fb
AD
6949
6950 }
31a53903
AD
6951
6952 function save_email_address($link, $email) {
6953 // FIXME: implement persistent storage of emails
6954
6955 if (!$_SESSION['stored_emails'])
6956 $_SESSION['stored_emails'] = array();
6957
6958 if (!in_array($email, $_SESSION['stored_emails']))
6959 array_push($_SESSION['stored_emails'], $email);
6960 }
8801fb01
AD
6961
6962 function update_feed_access_key($link, $feed_id, $is_cat, $owner_uid = false) {
6963 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
6964
6965 $sql_is_cat = bool_to_sql_bool($is_cat);
6966
6967 $result = db_query($link, "SELECT access_key FROM ttrss_access_keys
6968 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
6969 AND owner_uid = " . $owner_uid);
6970
6971 if (db_num_rows($result) == 1) {
6972 $key = db_escape_string(sha1(uniqid(rand(), true)));
6973
6974 db_query($link, "UPDATE ttrss_access_keys SET access_key = '$key'
6975 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
6976 AND owner_uid = " . $owner_uid);
6977
6978 return $key;
6979
6980 } else {
6981 return get_feed_access_key($link, $feed_id, $is_cat, $owner_uid);
6982 }
6983 }
6984
6985 function get_feed_access_key($link, $feed_id, $is_cat, $owner_uid = false) {
6986
6987 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
6988
6989 $sql_is_cat = bool_to_sql_bool($is_cat);
6990
6991 $result = db_query($link, "SELECT access_key FROM ttrss_access_keys
6992 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
6993 AND owner_uid = " . $owner_uid);
6994
6995 if (db_num_rows($result) == 1) {
6996 return db_fetch_result($result, 0, "access_key");
6997 } else {
6998 $key = db_escape_string(sha1(uniqid(rand(), true)));
6999
7000 $result = db_query($link, "INSERT INTO ttrss_access_keys
7001 (access_key, feed_id, is_cat, owner_uid)
7002 VALUES ('$key', '$feed_id', $sql_is_cat, '$owner_uid')");
7003
7004 return $key;
7005 }
7006 return false;
7007 }
f0266f51
CW
7008
7009 /**
7010 * Extracts RSS/Atom feed URLs from the given HTML URL.
7011 *
7012 * @param string $url HTML page URL
7013 *
7014 * @return array Array of feeds. Key is the full URL, value the title
7015 */
7016 function get_feeds_from_html($url)
7017 {
7018 $url = fix_url($url);
7019 $baseUrl = substr($url, 0, strrpos($url, '/') + 1);
7020
7021 $doc = new DOMDocument();
7022 $doc->loadHTMLFile($url);
7023 $xpath = new DOMXPath($doc);
7024 $entries = $xpath->query('/html/head/link[@rel="alternate"]');
7025 $feedUrls = array();
7026 foreach ($entries as $entry) {
7027 if ($entry->hasAttribute('href')) {
7028 $title = $entry->getAttribute('title');
7029 if ($title == '') {
7030 $title = $entry->getAttribute('type');
7031 }
7032 $feedUrl = $entry->getAttribute('href');
7033 if (strpos($feedUrl, '://') === false) {
7034 //no protocol -> relative URL
7035 $feedUrl = $baseUrl . $feedUrl;
7036 }
7037 $feedUrls[$feedUrl] = $title;
7038 }
7039 }
7040 return $feedUrls;
7041 }
7042
f33479da
CW
7043 /**
7044 * Checks if the content behind the given URL is a HTML file
7045 *
7046 * @param string $url URL to check
7047 *
7048 * @return boolean True if the URL contains HTML content
7049 */
7050 function url_is_html($url) {
7051 $content = substr(fetch_file_contents($url, false), 0, 1000);
7052 if (strpos($content, '<html>') === false
7053 && strpos($content, '<html ') === false
7054 ) {
7055 return false;
7056 }
7057
7058 return true;
7059 }
40d13c28 7060?>