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