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