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