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