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