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