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