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