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