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