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