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