]> git.wh0rd.org - tt-rss.git/blame - functions.php
sanity check: properly check for ISCONFIGURED
[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);
3234 $params["daemon_enabled"] = ENABLE_UPDATE_DAEMON;
f6d6e22f 3235
c4f7ba80
AD
3236 $params["sign_progress"] = theme_image($link, "images/indicator_white.gif");
3237 $params["sign_progress_tiny"] = theme_image($link, "images/indicator_tiny.gif");
3238 $params["sign_excl"] = theme_image($link, "images/sign_excl.png");
3239 $params["sign_info"] = theme_image($link, "images/sign_info.png");
be0801a1 3240
f1f3a642
AD
3241 foreach (array("ON_CATCHUP_SHOW_NEXT_FEED", "HIDE_READ_FEEDS",
3242 "ENABLE_FEED_CATS", "FEEDS_SORT_BY_UNREAD", "CONFIRM_FEED_CATCHUP",
7d12b6c8 3243 "CDM_AUTO_CATCHUP", "FRESH_ARTICLE_MAX_AGE", "DEFAULT_ARTICLE_LIMIT",
30b6ee8c 3244 "HIDE_READ_SHOWS_SPECIAL", "COMBINED_DISPLAY_MODE") as $param) {
40496720 3245
c4f7ba80 3246 $params[strtolower($param)] = (int) get_pref($link, $param);
f1f3a642 3247 }
40496720 3248
c4f7ba80
AD
3249 $params["icons_url"] = ICONS_URL;
3250 $params["cookie_lifetime"] = SESSION_COOKIE_LIFETIME;
3251 $params["default_view_mode"] = get_pref($link, "_DEFAULT_VIEW_MODE");
3252 $params["default_view_limit"] = (int) get_pref($link, "_DEFAULT_VIEW_LIMIT");
3253 $params["default_view_order_by"] = get_pref($link, "_DEFAULT_VIEW_ORDER_BY");
c4f7ba80 3254 $params["bw_limit"] = (int) $_SESSION["bw_limit"];
59b223d7 3255
8cd576a1 3256 $result = db_query($link, "SELECT MAX(id) AS mid, COUNT(*) AS nf FROM
9b7ecc0a
AD
3257 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
3258
8cd576a1
AD
3259 $max_feed_id = db_fetch_result($result, 0, "mid");
3260 $num_feeds = db_fetch_result($result, 0, "nf");
9b7ecc0a 3261
8cd576a1 3262 $params["max_feed_id"] = (int) $max_feed_id;
c4f7ba80 3263 $params["num_feeds"] = (int) $num_feeds;
8cd576a1 3264
c4f7ba80 3265 $params["collapsed_feedlist"] = (int) get_pref($link, "_COLLAPSED_FEEDLIST");
9b7ecc0a 3266
d8221301 3267 return $params;
3ac2b520 3268 }
f54f515f
AD
3269
3270 function print_runtime_info($link) {
c4f7ba80
AD
3271 print "<runtime-info><![CDATA[";
3272 print json_encode(make_runtime_info($link));
3273 print "]]></runtime-info>";
3274 }
20361063 3275
c4f7ba80 3276 function make_runtime_info($link) {
8cd576a1
AD
3277 $data = array();
3278
3279 $result = db_query($link, "SELECT MAX(id) AS mid, COUNT(*) AS nf FROM
9b7ecc0a
AD
3280 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
3281
8cd576a1
AD
3282 $max_feed_id = db_fetch_result($result, 0, "mid");
3283 $num_feeds = db_fetch_result($result, 0, "nf");
9b7ecc0a 3284
8cd576a1
AD
3285 $data["max_feed_id"] = (int) $max_feed_id;
3286 $data["num_feeds"] = (int) $num_feeds;
c4f7ba80 3287
f8fb4498 3288 $data['last_article_id'] = getLastArticleId($link);
5ae8f858 3289 $data['cdm_expanded'] = get_pref($link, 'CDM_EXPANDED');
f8fb4498 3290
71ad883b 3291 if (ENABLE_UPDATE_DAEMON) {
c4f7ba80
AD
3292
3293 $data['daemon_is_running'] = (int) file_is_locked("update_daemon.lock");
8e00ae9b 3294
9041f58b 3295 if (time() - $_SESSION["daemon_stamp_check"] > 30) {
8e00ae9b 3296
fb074239 3297 $stamp = (int) @file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
fbae93d8 3298
8e00ae9b 3299 if ($stamp) {
9041f58b
AD
3300 $stamp_delta = time() - $stamp;
3301
3302 if ($stamp_delta > 1800) {
f6854e44 3303 $stamp_check = 0;
8e00ae9b 3304 } else {
f6854e44
AD
3305 $stamp_check = 1;
3306 $_SESSION["daemon_stamp_check"] = time();
8e00ae9b
AD
3307 }
3308
c4f7ba80 3309 $data['daemon_stamp_ok'] = $stamp_check;
f6854e44 3310
8e00ae9b
AD
3311 $stamp_fmt = date("Y.m.d, G:i", $stamp);
3312
c4f7ba80 3313 $data['daemon_stamp'] = $stamp_fmt;
8e00ae9b 3314 }
8e00ae9b 3315 }
71ad883b 3316 }
8e00ae9b 3317
63855db1 3318 if ($_SESSION["last_version_check"] + 86400 + rand(-1000, 1000) < time()) {
fb074239 3319 $new_version_details = @check_for_update($link);
d9fa39f1 3320
63855db1 3321 $data['new_version_available'] = (int) ($new_version_details != false);
d9fa39f1
AD
3322
3323 $_SESSION["last_version_check"] = time();
d9fa39f1
AD
3324 }
3325
c4f7ba80 3326 return $data;
f54f515f 3327 }
ef393de7 3328
ab4b768f 3329 function getSearchSql($link, $search, $match_on) {
ef393de7 3330
88040f57 3331 $search_query_part = "";
e20c9d88 3332
88040f57
AD
3333 $keywords = split(" ", $search);
3334 $query_keywords = array();
e20c9d88 3335
ab4b768f
AD
3336 foreach ($keywords as $k) {
3337 if (strpos($k, "-") === 0) {
3338 $k = substr($k, 1);
3339 $not = "NOT";
3340 } else {
3341 $not = "";
88040f57 3342 }
e20c9d88 3343
ab4b768f 3344 if (strpos($k, "@") === 0) {
e20c9d88 3345
ab4b768f
AD
3346 $user_tz_string = get_pref($link, 'USER_TIMEZONE', $_SESSION['uid']);
3347 $orig_ts = strtotime(substr($k, 1));
eb6c7f42 3348
ab4b768f 3349 $k = date("Y-m-d", convert_timestamp($orig_ts, $user_tz_string, 'UTC'));
8d505d78 3350
ab4b768f
AD
3351 array_push($query_keywords, "(".SUBSTRING_FOR_DATE."(updated,1,LENGTH('$k')) $not = '$k')");
3352 } else if ($match_on == "both") {
3353 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
3354 OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
3355 } else if ($match_on == "title") {
eb6c7f42 3356 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%'))");
ab4b768f 3357 } else if ($match_on == "content") {
eb6c7f42 3358 array_push($query_keywords, "(UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
88040f57
AD
3359 }
3360 }
3361
3362 $search_query_part = implode("AND", $query_keywords);
3363
3364 return $search_query_part;
3365 }
3366
c36bf4d5
AD
3367 function queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view, $search, $search_mode, $match_on, $override_order = false, $offset = 0, $owner_uid = 0) {
3368
3369 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
c1a0b534 3370
c3fddd05
AD
3371 $ext_tables_part = "";
3372
88040f57 3373 if ($search) {
e4f7f8df
AD
3374
3375 if (SPHINX_ENABLED) {
3376 $ids = join(",", @sphinx_search($search, 0, 500));
3377
8d505d78 3378 if ($ids)
e4f7f8df
AD
3379 $search_query_part = "ref_id IN ($ids) AND ";
3380 else
3381 $search_query_part = "ref_id = -1 AND ";
3382
3383 } else {
ab4b768f 3384 $search_query_part = getSearchSql($link, $search, $match_on);
e4f7f8df 3385 $search_query_part .= " AND ";
8d505d78 3386 }
e20c9d88 3387
ef393de7
AD
3388 } else {
3389 $search_query_part = "";
3390 }
3391
3392 $view_query_part = "";
8d505d78 3393
7b4d02a8 3394 if ($view_mode == "adaptive" || $view_query_part == "noscores") {
ef393de7
AD
3395 if ($search) {
3396 $view_query_part = " ";
3397 } else if ($feed != -1) {
f295c368 3398 $unread = getFeedUnread($link, $feed, $cat_view);
ef393de7 3399 if ($unread > 0) {
ff863e00 3400 $view_query_part = " unread = true AND ";
ef393de7
AD
3401 }
3402 }
3403 }
8d505d78 3404
ef393de7
AD
3405 if ($view_mode == "marked") {
3406 $view_query_part = " marked = true AND ";
3407 }
23d72f39
AD
3408
3409 if ($view_mode == "published") {
3410 $view_query_part = " published = true AND ";
3411 }
3412
ef393de7
AD
3413 if ($view_mode == "unread") {
3414 $view_query_part = " unread = true AND ";
3415 }
8b09eac8
AD
3416
3417 if ($view_mode == "updated") {
3418 $view_query_part = " (last_read is null and unread = false) AND ";
3419 }
3420
ef393de7
AD
3421 if ($limit > 0) {
3422 $limit_query_part = "LIMIT " . $limit;
8d505d78 3423 }
ef393de7
AD
3424
3425 $vfeed_query_part = "";
8d505d78 3426
ef393de7
AD
3427 // override query strategy and enable feed display when searching globally
3428 if ($search && $search_mode == "all_feeds") {
3429 $query_strategy_part = "ttrss_entries.id > 0";
8d505d78 3430 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
22fdebff 3431 /* tags */
ef393de7
AD
3432 } else if (preg_match("/^-?[0-9][0-9]*$/", $feed) == false) {
3433 $query_strategy_part = "ttrss_entries.id > 0";
3434 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
3435 id = feed_id) as feed_title,";
e04c18a2 3436 } else if ($feed > 0 && $search && $search_mode == "this_cat") {
8d505d78
AD
3437
3438 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
0a6c4846
AD
3439
3440 $tmp_result = false;
3441
3442 if ($cat_view) {
8d505d78 3443 $tmp_result = db_query($link, "SELECT id
0a6c4846
AD
3444 FROM ttrss_feeds WHERE cat_id = '$feed'");
3445 } else {
3446 $tmp_result = db_query($link, "SELECT id
8d505d78 3447 FROM ttrss_feeds WHERE cat_id = (SELECT cat_id FROM ttrss_feeds
0a6c4846
AD
3448 WHERE id = '$feed') AND id != '$feed'");
3449 }
8d505d78 3450
ef393de7 3451 $cat_siblings = array();
8d505d78 3452
ef393de7
AD
3453 if (db_num_rows($tmp_result) > 0) {
3454 while ($p = db_fetch_assoc($tmp_result)) {
3455 array_push($cat_siblings, "feed_id = " . $p["id"]);
3456 }
8d505d78
AD
3457
3458 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
ef393de7 3459 $feed, implode(" OR ", $cat_siblings));
8d505d78 3460
ef393de7
AD
3461 } else {
3462 $query_strategy_part = "ttrss_entries.id > 0";
3463 }
8d505d78 3464
e04c18a2 3465 } else if ($feed > 0) {
8d505d78 3466
ef393de7 3467 if ($cat_view) {
5c365f60 3468
ef393de7
AD
3469 if ($feed > 0) {
3470 $query_strategy_part = "cat_id = '$feed'";
3471 } else {
3472 $query_strategy_part = "cat_id IS NULL";
3473 }
8d505d78 3474
ef393de7 3475 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
5c365f60 3476
8d505d78 3477 } else {
6e63a7c3 3478 $query_strategy_part = "feed_id = '$feed'";
ef393de7 3479 }
bfe5ddfc 3480 } else if ($feed == 0 && !$cat_view) { // archive virtual feed
e04c18a2 3481 $query_strategy_part = "feed_id IS NULL";
bfe5ddfc
AD
3482 } else if ($feed == 0 && $cat_view) { // uncategorized
3483 $query_strategy_part = "cat_id IS NULL";
3484 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ef393de7
AD
3485 } else if ($feed == -1) { // starred virtual feed
3486 $query_strategy_part = "marked = true";
3487 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
e6a38cde
AD
3488 } else if ($feed == -2) { // published virtual feed OR labels category
3489
3490 if (!$cat_view) {
3491 $query_strategy_part = "published = true";
3492 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3493 } else {
3494 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3495
3496 $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
8d505d78 3497
e6a38cde
AD
3498 $query_strategy_part = "ttrss_labels2.id = ttrss_user_labels2.label_id AND
3499 ttrss_user_labels2.article_id = ref_id";
3500
3501 }
3502
2d24f032 3503 } else if ($feed == -3) { // fresh virtual feed
cd2cc43d 3504 $query_strategy_part = "unread = true AND score >= 0";
2d24f032 3505
7a22dc2a 3506 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid);
c1d7e6c3 3507
2d24f032 3508 if (DB_TYPE == "pgsql") {
8d505d78 3509 $query_strategy_part .= " AND updated > NOW() - INTERVAL '$intl hour' ";
2d24f032 3510 } else {
7608b38a 3511 $query_strategy_part .= " AND updated > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
2d24f032
AD
3512 }
3513
b2531a28
AD
3514 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3515 } else if ($feed == -4) { // all articles virtual feed
3516 $query_strategy_part = "true";
e4f4b46f 3517 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ef393de7
AD
3518 } else if ($feed <= -10) { // labels
3519 $label_id = -$feed - 11;
3de0261a 3520
ceb30ba4
AD
3521 $query_strategy_part = "label_id = '$label_id' AND
3522 ttrss_labels2.id = ttrss_user_labels2.label_id AND
3523 ttrss_user_labels2.article_id = ref_id";
3de0261a 3524
ef393de7 3525 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ceb30ba4 3526 $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
8d505d78 3527
ef393de7
AD
3528 } else {
3529 $query_strategy_part = "id > 0"; // dumb
3530 }
d6e5706d 3531
b3990c92
AD
3532 if (get_pref($link, "SORT_HEADLINES_BY_FEED_DATE", $owner_uid)) {
3533 $date_sort_field = "updated";
3534 } else {
3535 $date_sort_field = "date_entered";
3536 }
3537
7a22dc2a 3538 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
b3990c92 3539 $order_by = "$date_sort_field";
8d505d78 3540 } else {
b3990c92 3541 $order_by = "$date_sort_field DESC";
d6e5706d 3542 }
e939722a 3543
7b4d02a8
AD
3544 if ($view_mode != "noscores") {
3545 $order_by = "score DESC, $order_by";
3546 }
48b0c4ec 3547
e939722a
AD
3548 if ($override_order) {
3549 $order_by = $override_order;
3550 }
8d505d78 3551
ef393de7
AD
3552 $feed_title = "";
3553
22fdebff
AD
3554 if ($search) {
3555 $feed_title = "Search results";
3556 } else {
ef393de7 3557 if ($cat_view) {
22fdebff 3558 $feed_title = getCategoryTitle($link, $feed);
ef393de7 3559 } else {
22fdebff 3560 if ((int)$feed == $feed && $feed > 0) {
8d505d78 3561 $result = db_query($link, "SELECT title,site_url,last_error
22fdebff 3562 FROM ttrss_feeds WHERE id = '$feed' AND owner_uid = $owner_uid");
8d505d78 3563
22fdebff
AD
3564 $feed_title = db_fetch_result($result, 0, "title");
3565 $feed_site_url = db_fetch_result($result, 0, "site_url");
3566 $last_error = db_fetch_result($result, 0, "last_error");
3567 } else {
3568 $feed_title = getFeedTitle($link, $feed);
8d505d78 3569 }
88040f57 3570 }
ef393de7
AD
3571 }
3572
62129e67
AD
3573 $content_query_part = "content as content_preview,";
3574
ef393de7 3575 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
8d505d78 3576
ef393de7
AD
3577 if ($feed >= 0) {
3578 $feed_kind = "Feeds";
3579 } else {
3580 $feed_kind = "Labels";
3581 }
8d505d78 3582
95a82c08
AD
3583 if ($limit_query_part) {
3584 $offset_query_part = "OFFSET $offset";
3585 }
3586
d00f22ac 3587 if ($vfeed_query_part && get_pref($link, 'VFEED_GROUP_BY_FEED', $owner_uid)) {
6cfea5c7 3588 if (!$override_order) {
8d505d78 3589 $order_by = "ttrss_feeds.title, $order_by";
43fc671f 3590 }
6cfea5c7
AD
3591 }
3592
e04c18a2
AD
3593 if ($feed != "0") {
3594 $from_qpart = "ttrss_entries,ttrss_user_entries,ttrss_feeds$ext_tables_part";
117335bf 3595 $feed_check_qpart = "ttrss_user_entries.feed_id = ttrss_feeds.id AND";
e04c18a2
AD
3596
3597 } else {
3598 $from_qpart = "ttrss_entries,ttrss_user_entries$ext_tables_part
3599 LEFT JOIN ttrss_feeds ON (feed_id = ttrss_feeds.id)";
3600 }
3601
8d505d78 3602 $query = "SELECT DISTINCT
f9b2d27c 3603 date_entered,
1f64b1be 3604 guid,
ef393de7 3605 ttrss_entries.id,ttrss_entries.title,
46921916 3606 updated,
c7e51de1 3607 note,
494a64ea 3608 unread,feed_id,marked,published,link,last_read,orig_feed_id,
fc2b26a6 3609 ".SUBSTRING_FOR_DATE."(last_read,1,19) as last_read_noms,
ef393de7
AD
3610 $vfeed_query_part
3611 $content_query_part
fc2b26a6 3612 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated_noms,
ff6e357a 3613 author,score
ef393de7 3614 FROM
e04c18a2 3615 $from_qpart
ef393de7 3616 WHERE
e04c18a2 3617 $feed_check_qpart
ef393de7 3618 ttrss_user_entries.ref_id = ttrss_entries.id AND
c36bf4d5 3619 ttrss_user_entries.owner_uid = '$owner_uid' AND
ef393de7
AD
3620 $search_query_part
3621 $view_query_part
3622 $query_strategy_part ORDER BY $order_by
95a82c08 3623 $limit_query_part $offset_query_part";
4bc311fc 3624
b4e75b2a 3625 if ($_REQUEST["debug"]) print $query;
4bc311fc
AD
3626
3627 $result = db_query($link, $query);
8d505d78 3628
ef393de7
AD
3629 } else {
3630 // browsing by tag
8d505d78 3631
ef393de7 3632 $feed_kind = "Tags";
8d505d78 3633
dcb38ced
AD
3634 $result = db_query($link, "SELECT DISTINCT
3635 date_entered,
1f64b1be 3636 guid,
c7e51de1 3637 note,
ef393de7 3638 ttrss_entries.id as id,title,
46921916 3639 updated,
494a64ea 3640 unread,feed_id,orig_feed_id,
8d505d78 3641 marked,link,last_read,
fc2b26a6 3642 ".SUBSTRING_FOR_DATE."(last_read,1,19) as last_read_noms,
ef393de7
AD
3643 $vfeed_query_part
3644 $content_query_part
4d0b3607
AD
3645 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated_noms,
3646 score
ef393de7
AD
3647 FROM
3648 ttrss_entries,ttrss_user_entries,ttrss_tags
3649 WHERE
8d505d78 3650 ref_id = ttrss_entries.id AND
c36bf4d5 3651 ttrss_user_entries.owner_uid = '$owner_uid' AND
ef393de7
AD
3652 post_int_id = int_id AND tag_name = '$feed' AND
3653 $view_query_part
3654 $search_query_part
3655 $query_strategy_part ORDER BY $order_by
8d505d78 3656 $limit_query_part");
ef393de7
AD
3657 }
3658
c7188969 3659 return array($result, $feed_title, $feed_site_url, $last_error);
8d505d78 3660
ef393de7
AD
3661 }
3662
c36bf4d5 3663 function generate_syndicated_feed($link, $owner_uid, $feed, $is_cat,
23d72f39 3664 $limit, $search, $search_mode, $match_on, $view_mode = false) {
ead2715d 3665
20e43935
AD
3666 require_once "lib/MiniTemplator.class.php";
3667
db54143e 3668 $note_style = "float : right; background-color : #fff7d5; border-width : 1px; ".
c7e51de1 3669 "padding : 5px; border-style : dashed; border-color : #e7d796;".
db54143e 3670 "margin-bottom : 1em; color : #9a8c59;";
c7e51de1 3671
ead2715d 3672 if (!$limit) $limit = 30;
18664970 3673
b3990c92
AD
3674 if (get_pref($link, "SORT_HEADLINES_BY_FEED_DATE", $owner_uid)) {
3675 $date_sort_field = "updated";
3676 } else {
3677 $date_sort_field = "date_entered";
3678 }
3679
8d505d78
AD
3680 $qfh_ret = queryFeedHeadlines($link, $feed,
3681 $limit, $view_mode, $is_cat, $search, $search_mode,
b3990c92 3682 $match_on, "$date_sort_field DESC", 0, $owner_uid);
18664970
AD
3683
3684 $result = $qfh_ret[0];
59e2aab4 3685 $feed_title = htmlspecialchars($qfh_ret[1]);
18664970
AD
3686 $feed_site_url = $qfh_ret[2];
3687 $last_error = $qfh_ret[3];
3688
20e43935
AD
3689 $feed_self_url = get_self_url_prefix() .
3690 "/backend.php?op=rss&id=-2&key=" .
3691 get_feed_access_key($link, -2, false);
3692
b0f379df 3693 if (!$feed_site_url) $feed_site_url = get_self_url_prefix();
4bc64807 3694
20e43935
AD
3695 $tpl = new MiniTemplator;
3696
3697 $tpl->readTemplateFromFile("templates/generated_feed.txt");
b0f379df 3698
20e43935
AD
3699 $tpl->setVariable('FEED_TITLE', $feed_title);
3700 $tpl->setVariable('VERSION', VERSION);
3701 $tpl->setVariable('FEED_URL', htmlspecialchars($feed_self_url));
3702
364e3c85 3703 if (PUBSUBHUBBUB_HUB && $feed == -2) {
20e43935
AD
3704 $tpl->setVariable('HUB_URL', htmlspecialchars(PUBSUBHUBBUB_HUB));
3705 $tpl->addBlock('feed_hub');
b0f379df
AD
3706 }
3707
20e43935 3708 $tpl->setVariable('SELF_URL', htmlspecialchars(get_self_url_prefix()));
8d505d78 3709
3baeeeca 3710 while ($line = db_fetch_assoc($result)) {
20e43935
AD
3711 $tpl->setVariable('ARTICLE_ID', htmlspecialchars($line['link']));
3712 $tpl->setVariable('ARTICLE_LINK', htmlspecialchars($line['link']));
3713 $tpl->setVariable('ARTICLE_TITLE', htmlspecialchars($line['title']));
3714 $tpl->setVariable('ARTICLE_EXCERPT',
3715 truncate_string(strip_tags($line["content_preview"]), 100, '...'));
9b1a7081
AD
3716
3717 $content = sanitize_rss($link, $line["content_preview"], false, $owner_uid);
3718
3719 if ($line['note']) {
3720 $content = "<div style=\"$note_style\">" . $line['note'] . "</div>" .
3721 $content;
3722 }
3723
3724 $tpl->setVariable('ARTICLE_CONTENT', $content);
20e43935
AD
3725
3726 $tpl->setVariable('ARTICLE_UPDATED', date('c', strtotime($line["updated"])));
3727 $tpl->setVariable('ARTICLE_AUTHOR', htmlspecialchars($line['author']));
0c3d1c68 3728
bc976a8c 3729 $tags = get_article_tags($link, $line["id"], $owner_uid);
0c3d1c68
AD
3730
3731 foreach ($tags as $tag) {
20e43935
AD
3732 $tpl->setVariable('ARTICLE_CATEGORY', htmlspecialchars($tag));
3733 $tpl->addBlock('category');
2f0903a6 3734 }
8d505d78 3735
c7845467
AD
3736 $enclosures = get_article_enclosures($link, $line["id"]);
3737
3738 foreach ($enclosures as $e) {
3739 $type = htmlspecialchars($e['content_type']);
3740 $url = htmlspecialchars($e['content_url']);
3741 $length = $e['duration'];
20e43935
AD
3742
3743 $tpl->setVariable('ARTICLE_ENCLOSURE_URL', $url);
3744 $tpl->setVariable('ARTICLE_ENCLOSURE_TYPE', $type);
3745 $tpl->setVariable('ARTICLE_ENCLOSURE_LENGTH', $length);
3746
3747 $tpl->addBlock('enclosure');
c7845467
AD
3748 }
3749
20e43935
AD
3750 $tpl->addBlock('entry');
3751 }
3752
3753 $tmp = "";
8d505d78 3754
20e43935
AD
3755 $tpl->addBlock('feed');
3756 $tpl->generateOutputToString($tmp);
18664970 3757
20e43935 3758 print $tmp;
18664970
AD
3759 }
3760
0a6c4846
AD
3761 function getCategoryTitle($link, $cat_id) {
3762
bba7c4bf
AD
3763 if ($cat_id == -1) {
3764 return __("Special");
3765 } else if ($cat_id == -2) {
3766 return __("Labels");
0a6c4846 3767 } else {
bba7c4bf
AD
3768
3769 $result = db_query($link, "SELECT title FROM ttrss_feed_categories WHERE
3770 id = '$cat_id'");
3771
3772 if (db_num_rows($result) == 1) {
3773 return db_fetch_result($result, 0, "title");
3774 } else {
3775 return "Uncategorized";
3776 }
0a6c4846
AD
3777 }
3778 }
3779
8cc3c778 3780 function sanitize_rss($link, $str, $force_strip_tags = false, $owner = false, $site_url = false) {
35ffb5b9 3781 global $purifier;
8cc3c778 3782
ceb0cab5
AD
3783 if (!$owner) $owner = $_SESSION["uid"];
3784
96811a55
AD
3785 $res = trim($str); if (!$res) return '';
3786
388c645a
AD
3787// if (get_pref($link, "STRIP_UNSAFE_TAGS", $owner) || $force_strip_tags) {
3788 $res = $purifier->purify($res);
3789// }
f826eee1 3790
ceb0cab5 3791 if (get_pref($link, "STRIP_IMAGES", $owner)) {
8dccabed 3792 $res = preg_replace('/<img[^>]+>/is', '', $res);
7514749d 3793 }
8dccabed 3794
46137483
AD
3795 if (strpos($res, "href=") === false)
3796 $res = rewrite_urls($res);
533c0ea6 3797
8cc3c778
AD
3798 $charset_hack = '<head>
3799 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
3800 </head>';
3801
96811a55
AD
3802 $res = trim($res); if (!$res) return '';
3803
8cc3c778
AD
3804 libxml_use_internal_errors(true);
3805
3806 $doc = new DOMDocument();
3807 $doc->loadHTML($charset_hack . $res);
3808 $xpath = new DOMXPath($doc);
8d505d78 3809
8cc3c778 3810 $entries = $xpath->query('(//a[@href]|//img[@src])');
3f770c87 3811 $br_inserted = 0;
8cc3c778
AD
3812
3813 foreach ($entries as $entry) {
3814
3815 if ($site_url) {
3816
3817 if ($entry->hasAttribute('href'))
3818 $entry->setAttribute('href',
3819 rewrite_relative_url($site_url, $entry->getAttribute('href')));
8d505d78 3820
8cc3c778 3821 if ($entry->hasAttribute('src'))
8d505d78 3822 if (preg_match('/^image.php\?i=[a-z0-9]+$/', $entry->getAttribute('src')) == 0)
b8998470
AD
3823 $entry->setAttribute('src',
3824 rewrite_relative_url($site_url, $entry->getAttribute('src')));
8cc3c778
AD
3825 }
3826
fa403733 3827 if (strtolower($entry->nodeName) == "a") {
c401d5c9 3828 $entry->setAttribute("target", "_blank");
fa403733
AD
3829 }
3830
3f770c87 3831 if (strtolower($entry->nodeName) == "img" && !$br_inserted) {
fa403733
AD
3832 $br = $doc->createElement("br");
3833
3f770c87 3834 if ($entry->parentNode->nextSibling) {
fa403733 3835 $entry->parentNode->insertBefore($br, $entry->nextSibling);
3f770c87
AD
3836 $br_inserted = 1;
3837 }
fa403733 3838
8cc3c778 3839 }
8dccabed 3840 }
8d505d78 3841
1f6131f5 3842 $node = $doc->getElementsByTagName('body')->item(0);
8dccabed 3843
8d505d78 3844 return $doc->saveXML($node);
183ad07b 3845 }
b72c3ef8 3846
45004d43
AD
3847 /**
3848 * Send by mail a digest of last articles.
8d505d78 3849 *
45004d43
AD
3850 * @param mixed $link The database connection.
3851 * @param integer $limit The maximum number of articles by digest.
3852 * @return boolean Return false if digests are not enabled.
3853 */
9cd7c995
AD
3854 function send_headlines_digests($link, $limit = 100) {
3855
1ddba275
AD
3856 if (!DIGEST_ENABLE) return false;
3857
9cd7c995 3858 $user_limit = DIGEST_EMAIL_LIMIT;
5430c959 3859 $days = 1;
9cd7c995
AD
3860
3861 print "Sending digests, batch of max $user_limit users, days = $days, headline limit = $limit\n\n";
3862
3863 if (DB_TYPE == "pgsql") {
3864 $interval_query = "last_digest_sent < NOW() - INTERVAL '$days days'";
3865 } else if (DB_TYPE == "mysql") {
3866 $interval_query = "last_digest_sent < DATE_SUB(NOW(), INTERVAL $days DAY)";
3867 }
3868
8d505d78 3869 $result = db_query($link, "SELECT id,email FROM ttrss_users
9cd7c995
AD
3870 WHERE email != '' AND (last_digest_sent IS NULL OR $interval_query)");
3871
3872 while ($line = db_fetch_assoc($result)) {
dc85be2b 3873
9cd7c995
AD
3874 if (get_pref($link, 'DIGEST_ENABLE', $line['id'], false)) {
3875 print "Sending digest for UID:" . $line['id'] . " - " . $line["email"] . " ... ";
3876
dc85be2b
AD
3877 $do_catchup = get_pref($link, 'DIGEST_CATCHUP', $line['id'], false);
3878
9cd7c995
AD
3879 $tuple = prepare_headlines_digest($link, $line["id"], $days, $limit);
3880 $digest = $tuple[0];
3881 $headlines_count = $tuple[1];
dc85be2b 3882 $affected_ids = $tuple[2];
c62a2c21 3883 $digest_text = $tuple[3];
9cd7c995
AD
3884
3885 if ($headlines_count > 0) {
a8931123 3886
c62a2c21 3887 $mail = new PHPMailer();
a8931123 3888
d134e3a3
AD
3889 $mail->PluginDir = "lib/phpmailer/";
3890 $mail->SetLanguage("en", "lib/phpmailer/language/");
a8931123 3891
c62a2c21 3892 $mail->CharSet = "UTF-8";
a8931123 3893
c62a2c21
AD
3894 $mail->From = DIGEST_FROM_ADDRESS;
3895 $mail->FromName = DIGEST_FROM_NAME;
3896 $mail->AddAddress($line["email"], $line["login"]);
c7ddac5c 3897
c62a2c21 3898 if (DIGEST_SMTP_HOST) {
a8931123
AD
3899 $mail->Host = DIGEST_SMTP_HOST;
3900 $mail->Mailer = "smtp";
19a1da0d 3901 $mail->SMTPAuth = DIGEST_SMTP_LOGIN != '';
a8931123
AD
3902 $mail->Username = DIGEST_SMTP_LOGIN;
3903 $mail->Password = DIGEST_SMTP_PASSWORD;
c62a2c21 3904 }
a8931123 3905
c62a2c21 3906 $mail->IsHTML(true);
163a295e 3907 $mail->Subject = DIGEST_SUBJECT;
c62a2c21
AD
3908 $mail->Body = $digest;
3909 $mail->AltBody = $digest_text;
a8931123 3910
c62a2c21 3911 $rc = $mail->Send();
a8931123 3912
c62a2c21 3913 if (!$rc) print "ERROR: " . $mail->ErrorInfo;
a8931123 3914
9cd7c995 3915 print "RC=$rc\n";
a8931123 3916
c62a2c21 3917 if ($rc && $do_catchup) {
dc85be2b 3918 print "Marking affected articles as read...\n";
9968d46f 3919 catchupArticlesById($link, $affected_ids, 0, $line["id"]);
dc85be2b 3920 }
9cd7c995
AD
3921 } else {
3922 print "No headlines\n";
3923 }
019dd98d 3924
8d505d78 3925 db_query($link, "UPDATE ttrss_users SET last_digest_sent = NOW()
019dd98d 3926 WHERE id = " . $line["id"]);
9cd7c995
AD
3927 }
3928 }
3929
cedd3e89
AD
3930 print "All done.\n";
3931
9cd7c995
AD
3932 }
3933
7e3634d9 3934 function prepare_headlines_digest($link, $user_id, $days = 1, $limit = 100) {
c62a2c21 3935
fe7537b5 3936 require_once "lib/MiniTemplator.class.php";
c62a2c21
AD
3937
3938 $tpl = new MiniTemplator;
3939 $tpl_t = new MiniTemplator;
3940
3941 $tpl->readTemplateFromFile("templates/digest_template_html.txt");
3942 $tpl_t->readTemplateFromFile("templates/digest_template.txt");
3943
3944 $tpl->setVariable('CUR_DATE', date('Y/m/d'));
3945 $tpl->setVariable('CUR_TIME', date('G:i'));
3946
3947 $tpl_t->setVariable('CUR_DATE', date('Y/m/d'));
3948 $tpl_t->setVariable('CUR_TIME', date('G:i'));
7e3634d9 3949
dc85be2b
AD
3950 $affected_ids = array();
3951
7e3634d9 3952 if (DB_TYPE == "pgsql") {
25ea2805 3953 $interval_query = "ttrss_entries.date_updated > NOW() - INTERVAL '$days days'";
7e3634d9 3954 } else if (DB_TYPE == "mysql") {
25ea2805 3955 $interval_query = "ttrss_entries.date_updated > DATE_SUB(NOW(), INTERVAL $days DAY)";
7e3634d9
AD
3956 }
3957
3958 $result = db_query($link, "SELECT ttrss_entries.title,
3959 ttrss_feeds.title AS feed_title,
25ea2805 3960 date_updated,
dc85be2b 3961 ttrss_user_entries.ref_id,
7e3634d9 3962 link,
c62a2c21 3963 SUBSTRING(content, 1, 120) AS excerpt,
fc2b26a6 3964 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
8d505d78
AD
3965 FROM
3966 ttrss_user_entries,ttrss_entries,ttrss_feeds
3967 WHERE
3968 ref_id = ttrss_entries.id AND feed_id = ttrss_feeds.id
3dd9183c 3969 AND include_in_digest = true
7e3634d9 3970 AND $interval_query
448b0abd 3971 AND ttrss_user_entries.owner_uid = $user_id
8d505d78 3972 AND unread = true
25ea2805 3973 ORDER BY ttrss_feeds.title, date_updated DESC
7e3634d9
AD
3974 LIMIT $limit");
3975
3976 $cur_feed_title = "";
3977
9cd7c995
AD
3978 $headlines_count = db_num_rows($result);
3979
c62a2c21
AD
3980 $headlines = array();
3981
7e3634d9 3982 while ($line = db_fetch_assoc($result)) {
c62a2c21
AD
3983 array_push($headlines, $line);
3984 }
3985
8d505d78 3986 for ($i = 0; $i < sizeof($headlines); $i++) {
c62a2c21
AD
3987
3988 $line = $headlines[$i];
dc85be2b
AD
3989
3990 array_push($affected_ids, $line["ref_id"]);
3991
324944f3
AD
3992 $updated = make_local_datetime($link, $line['last_updated'], false,
3993 $user_id);
7e3634d9 3994
c62a2c21
AD
3995 $tpl->setVariable('FEED_TITLE', $line["feed_title"]);
3996 $tpl->setVariable('ARTICLE_TITLE', $line["title"]);
3997 $tpl->setVariable('ARTICLE_LINK', $line["link"]);
3998 $tpl->setVariable('ARTICLE_UPDATED', $updated);
8d505d78 3999 $tpl->setVariable('ARTICLE_EXCERPT',
163a295e 4000 truncate_string(strip_tags($line["excerpt"]), 100));
7e3634d9 4001
c62a2c21
AD
4002 $tpl->addBlock('article');
4003
4004 $tpl_t->setVariable('FEED_TITLE', $line["feed_title"]);
4005 $tpl_t->setVariable('ARTICLE_TITLE', $line["title"]);
4006 $tpl_t->setVariable('ARTICLE_LINK', $line["link"]);
4007 $tpl_t->setVariable('ARTICLE_UPDATED', $updated);
8d505d78 4008// $tpl_t->setVariable('ARTICLE_EXCERPT',
c62a2c21
AD
4009// truncate_string(strip_tags($line["excerpt"]), 100));
4010
4011 $tpl_t->addBlock('article');
4012
4013 if ($headlines[$i]['feed_title'] != $headlines[$i+1]['feed_title']) {
4014 $tpl->addBlock('feed');
4015 $tpl_t->addBlock('feed');
7e3634d9
AD
4016 }
4017
7e3634d9
AD
4018 }
4019
c62a2c21
AD
4020 $tpl->addBlock('digest');
4021 $tpl->generateOutputToString($tmp);
4022
4023 $tpl_t->addBlock('digest');
4024 $tpl_t->generateOutputToString($tmp_t);
7e3634d9 4025
c62a2c21 4026 return array($tmp, $headlines_count, $affected_ids, $tmp_t);
7e3634d9
AD
4027 }
4028
73495fd1 4029 function check_for_update($link) {
63855db1
AD
4030 if (CHECK_FOR_NEW_VERSION && $_SESSION['access_level'] >= 10) {
4031 $version_url = "http://tt-rss.org/version.php?ver=" . VERSION;
b72c3ef8 4032
63855db1 4033 $version_data = @fetch_file_contents($version_url);
b72c3ef8 4034
63855db1
AD
4035 if ($version_data) {
4036 $version_data = json_decode($version_data, true);
8d505d78 4037 if ($version_data && $version_data['version']) {
f67d9754 4038
63855db1 4039 if (version_compare(VERSION, $version_data['version']) == -1) {
e91ad1e9 4040 return $version_data;
63855db1
AD
4041 }
4042 }
f67d9754 4043 }
b72c3ef8 4044 }
63855db1 4045 return false;
b72c3ef8 4046 }
472782e8 4047
18eddb2c
AD
4048 function markArticlesById($link, $ids, $cmode) {
4049
4050 $tmp_ids = array();
4051
4052 foreach ($ids as $id) {
4053 array_push($tmp_ids, "ref_id = '$id'");
4054 }
4055
4056 $ids_qpart = join(" OR ", $tmp_ids);
4057
4058 if ($cmode == 0) {
8d505d78 4059 db_query($link, "UPDATE ttrss_user_entries SET
18eddb2c
AD
4060 marked = false,last_read = NOW()
4061 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4062 } else if ($cmode == 1) {
8d505d78 4063 db_query($link, "UPDATE ttrss_user_entries SET
18eddb2c
AD
4064 marked = true
4065 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4066 } else {
8d505d78 4067 db_query($link, "UPDATE ttrss_user_entries SET
18eddb2c
AD
4068 marked = NOT marked,last_read = NOW()
4069 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4070 }
4071 }
4072
e4f4b46f
AD
4073 function publishArticlesById($link, $ids, $cmode) {
4074
4075 $tmp_ids = array();
4076
4077 foreach ($ids as $id) {
4078 array_push($tmp_ids, "ref_id = '$id'");
4079 }
4080
4081 $ids_qpart = join(" OR ", $tmp_ids);
4082
4083 if ($cmode == 0) {
8d505d78 4084 db_query($link, "UPDATE ttrss_user_entries SET
e4f4b46f
AD
4085 published = false,last_read = NOW()
4086 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4087 } else if ($cmode == 1) {
8d505d78 4088 db_query($link, "UPDATE ttrss_user_entries SET
e4f4b46f
AD
4089 published = true
4090 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4091 } else {
8d505d78 4092 db_query($link, "UPDATE ttrss_user_entries SET
e4f4b46f
AD
4093 published = NOT published,last_read = NOW()
4094 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4095 }
2fcec4c4
AD
4096
4097 if (PUBSUBHUBBUB_HUB) {
4098 $rss_link = get_self_url_prefix() .
4099 "/backend.php?op=rss&id=-2&key=" .
4100 get_feed_access_key($link, -2, false);
4101
4102 $p = new Publisher(PUBSUBHUBBUB_HUB);
4103
4104 $pubsub_result = $p->publish_update($rss_link);
4105 }
e4f4b46f
AD
4106 }
4107
9968d46f
AD
4108 function catchupArticlesById($link, $ids, $cmode, $owner_uid = false) {
4109
4110 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
ed41f171 4111 if (count($ids) == 0) return;
472782e8
AD
4112
4113 $tmp_ids = array();
4114
4115 foreach ($ids as $id) {
4116 array_push($tmp_ids, "ref_id = '$id'");
4117 }
4118
4119 $ids_qpart = join(" OR ", $tmp_ids);
4120
4121 if ($cmode == 0) {
8d505d78 4122 db_query($link, "UPDATE ttrss_user_entries SET
472782e8 4123 unread = false,last_read = NOW()
9968d46f 4124 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8 4125 } else if ($cmode == 1) {
8d505d78 4126 db_query($link, "UPDATE ttrss_user_entries SET
472782e8 4127 unread = true
9968d46f 4128 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8 4129 } else {
8d505d78 4130 db_query($link, "UPDATE ttrss_user_entries SET
472782e8 4131 unread = NOT unread,last_read = NOW()
9968d46f 4132 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8 4133 }
0737b95a
AD
4134
4135 /* update ccache */
4136
4137 $result = db_query($link, "SELECT DISTINCT feed_id FROM ttrss_user_entries
4138 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
4139
4140 while ($line = db_fetch_assoc($result)) {
4141 ccache_update($link, $line["feed_id"], $owner_uid);
4142 }
472782e8
AD
4143 }
4144
e097e8be
AD
4145 function catchupArticleById($link, $id, $cmode) {
4146
4147 if ($cmode == 0) {
8d505d78 4148 db_query($link, "UPDATE ttrss_user_entries SET
e097e8be
AD
4149 unread = false,last_read = NOW()
4150 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4151 } else if ($cmode == 1) {
8d505d78 4152 db_query($link, "UPDATE ttrss_user_entries SET
e097e8be
AD
4153 unread = true
4154 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4155 } else {
8d505d78 4156 db_query($link, "UPDATE ttrss_user_entries SET
e097e8be
AD
4157 unread = NOT unread,last_read = NOW()
4158 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4159 }
ab197ae1
AD
4160
4161 $feed_id = getArticleFeed($link, $id);
4162 ccache_update($link, $feed_id, $_SESSION["uid"]);
e097e8be
AD
4163 }
4164
1f64b1be 4165 function make_guid_from_title($title) {
8d505d78 4166 return preg_replace("/[ \"\',.:;]/", "-",
fefef828 4167 mb_strtolower(strip_tags($title), 'utf-8'));
1f64b1be
AD
4168 }
4169
bd202c3f 4170 function format_headline_subtoolbar($link, $feed_site_url, $feed_title,
0ef68e6f 4171 $feed_id, $is_cat, $search, $match_on,
26a1e185 4172 $search_mode, $view_mode, $error) {
e6c115b2 4173
bd202c3f
AD
4174 $page_prev_link = "viewFeedGoPage(-1)";
4175 $page_next_link = "viewFeedGoPage(1)";
4176 $page_first_link = "viewFeedGoPage(0)";
203de776 4177
bd202c3f
AD
4178 $catchup_page_link = "catchupPage()";
4179 $catchup_feed_link = "catchupCurrentFeed()";
4180 $catchup_sel_link = "catchupSelection()";
c6008b62 4181
bd202c3f
AD
4182 $archive_sel_link = "archiveSelection()";
4183 $delete_sel_link = "deleteSelection()";
e04c18a2 4184
bd202c3f
AD
4185 $sel_all_link = "selectArticles('all')";
4186 $sel_unread_link = "selectArticles('unread')";
4187 $sel_none_link = "selectArticles('none')";
4188 $sel_inv_link = "selectArticles('invert')";
11befbb2 4189
bd202c3f
AD
4190 $tog_unread_link = "selectionToggleUnread()";
4191 $tog_marked_link = "selectionToggleMarked()";
4192 $tog_published_link = "selectionTogglePublished()";
fcf70c51 4193
bd202c3f 4194 $reply = "<div id=\"subtoolbar_main\">";
fcf70c51 4195
bd202c3f
AD
4196 $reply .= __('Select:')."
4197 <a href=\"#\" onclick=\"$sel_all_link\">".__('All')."</a>,
4198 <a href=\"#\" onclick=\"$sel_unread_link\">".__('Unread')."</a>,
4199 <a href=\"#\" onclick=\"$sel_inv_link\">".__('Invert')."</a>,
4200 <a href=\"#\" onclick=\"$sel_none_link\">".__('None')."</a></li>";
fcf70c51 4201
bd202c3f 4202 $reply .= " ";
fcf70c51 4203
bd202c3f
AD
4204 $reply .= "<select dojoType=\"dijit.form.Select\"
4205 onchange=\"headlineActionsChange(this)\">";
4206 $reply .= "<option value=\"false\">".__('Actions...')."</option>";
fcf70c51 4207
bd202c3f 4208 $reply .= "<option value=\"0\" disabled=\"1\">".__('Selection toggle:')."</option>";
fcf70c51 4209
bd202c3f
AD
4210 $reply .= "<option value=\"$tog_unread_link\">".__('Unread')."</option>
4211 <option value=\"$tog_marked_link\">".__('Starred')."</option>
4212 <option value=\"$tog_published_link\">".__('Published')."</option>";
fcf70c51 4213
bd202c3f 4214 $reply .= "<option value=\"0\" disabled=\"1\">".__('Selection:')."</option>";
fcf70c51 4215
bd202c3f 4216 $reply .= "<option value=\"$catchup_sel_link\">".__('Mark as read')."</option>";
fcf70c51 4217
bd202c3f
AD
4218 if ($feed_id != "0") {
4219 $reply .= "<option value=\"$archive_sel_link\">".__('Archive')."</option>";
4220 } else {
4221 $reply .= "<option value=\"$archive_sel_link\">".__('Move back')."</option>";
4222 $reply .= "<option value=\"$delete_sel_link\">".__('Delete')."</option>";
fcf70c51 4223
bd202c3f 4224 }
fcf70c51 4225
bd202c3f
AD
4226 $reply .= "<option value=\"emailArticle(false)\">".__('Forward by email').
4227 "</option>";
fcf70c51 4228
b0f379df
AD
4229 if ($is_cat) $cat_q = "&is_cat=$is_cat";
4230
bd202c3f 4231 $rss_link = htmlspecialchars(get_self_url_prefix() .
b0f379df 4232 "/backend.php?op=rss&id=$feed_id$cat_q$search_q");
0f9b4a60 4233
bd202c3f 4234 $reply .= "<option value=\"0\" disabled=\"1\">".__('Feed:')."</option>";
176b8ba6 4235
bd202c3f 4236 $reply .= "<option value=\"catchupPage()\">".__('Mark as read')."</option>";
fcf70c51 4237
bd202c3f 4238 $reply .= "<option value=\"displayDlg('generatedFeed', '$feed_id:$is_cat:$rss_link')\">".__('View as RSS')."</option>";
fcf70c51 4239
bd202c3f 4240 $reply .= "</select>";
c6008b62 4241
bd202c3f 4242 $reply .= "</div>";
0ef68e6f 4243
bd202c3f 4244 $reply .= "<div id=\"subtoolbar_ftitle\">";
26a1e185 4245
bd202c3f
AD
4246 if ($feed_site_url) {
4247 $target = "target=\"_blank\"";
4248 $reply .= "<a title=\"".__("Visit the website")."\" $target href=\"$feed_site_url\">".
4249 truncate_string($feed_title,30)."</a>";
26a1e185 4250
bd202c3f
AD
4251 if ($error) {
4252 $reply .= " (<span class=\"error\" title=\"$error\">Error</span>)";
4253 }
5163fc70 4254
bd202c3f
AD
4255 } else {
4256 if ($feed_id < -10) {
4257 $label_id = -11-$feed_id;
5163fc70 4258
bd202c3f
AD
4259 $result = db_query($link, "SELECT fg_color, bg_color
4260 FROM ttrss_labels2 WHERE id = '$label_id' AND owner_uid = " .
4261 $_SESSION["uid"]);
5163fc70 4262
bd202c3f
AD
4263 if (db_num_rows($result) != 0) {
4264 $fg_color = db_fetch_result($result, 0, "fg_color");
4265 $bg_color = db_fetch_result($result, 0, "bg_color");
5163fc70 4266
bd202c3f
AD
4267 $reply .= "<span style='background : $bg_color; color : $fg_color'>";
4268 $reply .= $feed_title;
4269 $reply .= "</span>";
5163fc70 4270 } else {
bd202c3f 4271 $reply .= $feed_title;
5163fc70 4272 }
0ef68e6f 4273
c3fddd05 4274 } else {
bd202c3f 4275 $reply .= $feed_title;
0ef68e6f 4276 }
bd202c3f 4277 }
0ef68e6f 4278
bd202c3f
AD
4279 if ($search) {
4280 $search_q = "&q=$search&m=$match_on&smode=$search_mode";
4281 } else {
4282 $search_q = "";
4283 }
aa1c2aa4 4284
bd202c3f
AD
4285 $reply .= "
4286 <a href=\"#\"
4287 title=\"".__("View as RSS feed")."\"
4288 onclick=\"displayDlg('generatedFeed', '$feed_id:$is_cat:$rss_link')\">
4289 <img class=\"noborder\" style=\"vertical-align : middle\" src=\"images/feed-icon-12x12.png\"></a>";
ceb30ba4 4290
bd202c3f
AD
4291 $reply .= "</div>";
4292
4293 return $reply;
4294 }
8d505d78 4295
1985a5e0 4296 function outputFeedList($link, $special = true) {
f407c086 4297
13e785e0
AD
4298 $feedlist = array();
4299
4300 $enable_cats = get_pref($link, 'ENABLE_FEED_CATS');
4301
4302 $feedlist['identifier'] = 'id';
4303 $feedlist['label'] = 'name';
4304 $feedlist['items'] = array();
f407c086
AD
4305
4306 $owner_uid = $_SESSION["uid"];
4307
cf4d339c 4308 /* virtual feeds */
f407c086 4309
1985a5e0 4310 if ($special) {
e4f4b46f 4311
1985a5e0
AD
4312 if ($enable_cats) {
4313 $cat_hidden = get_pref($link, "_COLLAPSED_SPECIAL");
4314 $cat = feedlist_init_cat($link, -1, $cat_hidden);
4315 } else {
4316 $cat['items'] = array();
4317 }
8d505d78 4318
1985a5e0
AD
4319 foreach (array(-4, -3, -1, -2, 0) as $i) {
4320 array_push($cat['items'], feedlist_init_feed($link, $i));
4321 }
8d505d78 4322
1985a5e0
AD
4323 if ($enable_cats) {
4324 array_push($feedlist['items'], $cat);
4325 } else {
4326 $feedlist['items'] = array_merge($feedlist['items'], $cat['items']);
4327 }
8d505d78 4328
1985a5e0
AD
4329 $result = db_query($link, "SELECT * FROM
4330 ttrss_labels2 WHERE owner_uid = '$owner_uid' ORDER by caption");
9fe80bcd 4331
d4f46bc1 4332 if (db_num_rows($result) > 0) {
9fe80bcd 4333
d4f46bc1
AD
4334 if (get_pref($link, 'ENABLE_FEED_CATS')) {
4335 $cat_hidden = get_pref($link, "_COLLAPSED_LABELS");
4336 $cat = feedlist_init_cat($link, -2, $cat_hidden);
4337 } else {
4338 $cat['items'] = array();
4339 }
9fe80bcd 4340
d4f46bc1 4341 while ($line = db_fetch_assoc($result)) {
8d505d78 4342
d4f46bc1
AD
4343 $label_id = -$line['id'] - 11;
4344 $count = getFeedUnread($link, $label_id);
8d505d78 4345
d4f46bc1 4346 $feed = feedlist_init_feed($link, $label_id, false, $count);
8d505d78 4347
d4f46bc1
AD
4348 $feed['fg_color'] = $line['fg_color'];
4349 $feed['bg_color'] = $line['bg_color'];
8d505d78 4350
d4f46bc1
AD
4351 array_push($cat['items'], $feed);
4352 }
8d505d78 4353
d4f46bc1
AD
4354 if ($enable_cats) {
4355 array_push($feedlist['items'], $cat);
4356 } else {
4357 $feedlist['items'] = array_merge($feedlist['items'], $cat['items']);
4358 }
1985a5e0 4359 }
9c99281f 4360 }
8d505d78 4361
76657c46 4362/* if (get_pref($link, 'ENABLE_FEED_CATS')) {
9c99281f
AD
4363 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
4364 $order_by_qpart = "order_id,category,unread DESC,title";
13e785e0 4365 } else {
9c99281f 4366 $order_by_qpart = "order_id,category,title";
f407c086 4367 }
9c99281f
AD
4368 } else {
4369 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
4370 $order_by_qpart = "unread DESC,title";
8d505d78 4371 } else {
9c99281f 4372 $order_by_qpart = "title";
f407c086 4373 }
76657c46
AD
4374 } */
4375
4d65b7df
AD
4376 /* real feeds */
4377
76657c46 4378 if ($enable_cats)
7b8a143f
AD
4379 $order_by_qpart = "ttrss_feed_categories.order_id,category,
4380 ttrss_feeds.order_id,title";
76657c46
AD
4381 else
4382 $order_by_qpart = "title";
f407c086 4383
9c99281f 4384 $age_qpart = getMaxAgeSubquery();
f407c086 4385
9c99281f
AD
4386 $query = "SELECT ttrss_feeds.id, ttrss_feeds.title,
4387 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated_noms,
4388 cat_id,last_error,
4389 ttrss_feed_categories.title AS category,
4390 ttrss_feed_categories.collapsed,
8d505d78 4391 value AS unread
9c99281f 4392 FROM ttrss_feeds LEFT JOIN ttrss_feed_categories
8d505d78
AD
4393 ON (ttrss_feed_categories.id = cat_id)
4394 LEFT JOIN ttrss_counters_cache
9c99281f
AD
4395 ON
4396 (ttrss_feeds.id = feed_id)
8d505d78 4397 WHERE
9c99281f 4398 ttrss_feeds.owner_uid = '$owner_uid'
8d505d78 4399 ORDER BY $order_by_qpart";
13e785e0 4400
9c99281f 4401 $result = db_query($link, $query);
13e785e0 4402
9c99281f 4403 $actid = $_REQUEST["actid"];
0f39ae20 4404
4d65b7df 4405 if (db_num_rows($result) > 0) {
f407c086 4406
4d65b7df 4407 $category = "";
8d505d78
AD
4408
4409 if (!$enable_cats)
4d65b7df
AD
4410 $cat['items'] = array();
4411 else
4412 $cat = false;
8d505d78 4413
4d65b7df 4414 while ($line = db_fetch_assoc($result)) {
8d505d78 4415
4d65b7df 4416 $feed = htmlspecialchars(trim($line["title"]));
8d505d78 4417
4d65b7df 4418 if (!$feed) $feed = "[Untitled]";
8d505d78
AD
4419
4420 $feed_id = $line["id"];
4d65b7df 4421 $unread = $line["unread"];
8d505d78 4422
4d65b7df
AD
4423 $cat_id = $line["cat_id"];
4424 $tmp_category = $line["category"];
4425 if (!$tmp_category) $tmp_category = __("Uncategorized");
8d505d78 4426
4d65b7df 4427 if ($category != $tmp_category && $enable_cats) {
8d505d78 4428
4d65b7df 4429 $category = $tmp_category;
8d505d78 4430
4d65b7df 4431 $collapsed = sql_bool_to_bool($line["collapsed"]);
8d505d78 4432
4d65b7df
AD
4433 // workaround for NULL category
4434 if ($category == __("Uncategorized")) {
4435 $collapsed = get_pref($link, "_COLLAPSED_UNCAT");
4436 }
8d505d78 4437
4d65b7df 4438 if ($cat) array_push($feedlist['items'], $cat);
8d505d78 4439
4d65b7df 4440 $cat = feedlist_init_cat($link, $cat_id, $collapsed);
f0855b88 4441 }
8d505d78
AD
4442
4443 $updated = make_local_datetime($link, $line["updated_noms"], false);
4444
4445 array_push($cat['items'], feedlist_init_feed($link, $feed_id,
4d65b7df
AD
4446 $feed, $unread, $line['last_error'], $updated));
4447 }
8d505d78 4448
4d65b7df
AD
4449 if ($enable_cats) {
4450 array_push($feedlist['items'], $cat);
8d505d78 4451 } else {
4d65b7df 4452 $feedlist['items'] = array_merge($feedlist['items'], $cat['items']);
f407c086
AD
4453 }
4454
9c99281f 4455 }
13e785e0
AD
4456
4457 return $feedlist;
f407c086
AD
4458 }
4459
bc976a8c 4460 function get_article_tags($link, $id, $owner_uid = 0) {
0b126ac2 4461
bd3f2ade
AD
4462 global $memcache;
4463
0b126ac2
AD
4464 $a_id = db_escape_string($id);
4465
bc976a8c
AD
4466 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
4467
8d505d78 4468 $query = "SELECT DISTINCT tag_name,
0c3d1c68 4469 owner_uid as owner FROM
0b126ac2 4470 ttrss_tags WHERE post_int_id = (SELECT int_id FROM ttrss_user_entries WHERE
bd3f2ade 4471 ref_id = '$a_id' AND owner_uid = '$owner_uid' LIMIT 1) ORDER BY tag_name";
0b126ac2 4472
bd3f2ade 4473 $obj_id = md5("TAGS:$owner_uid:$id");
8d505d78 4474 $tags = array();
bd3f2ade
AD
4475
4476 if ($memcache && $obj = $memcache->get($obj_id)) {
4477 $tags = $obj;
4478 } else {
490c366d
AD
4479 /* check cache first */
4480
4481 $result = db_query($link, "SELECT tag_cache FROM ttrss_user_entries
4482 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4483
4484 $tag_cache = db_fetch_result($result, 0, "tag_cache");
4485
4486 if ($tag_cache) {
4487 $tags = explode(",", $tag_cache);
4488 } else {
bd3f2ade 4489
490c366d
AD
4490 /* do it the hard way */
4491
4492 $tmp_result = db_query($link, $query);
4493
4494 while ($tmp_line = db_fetch_assoc($tmp_result)) {
8d505d78 4495 array_push($tags, $tmp_line["tag_name"]);
490c366d
AD
4496 }
4497
4498 /* update the cache */
4499
4500 $tags_str = db_escape_string(join(",", $tags));
4501
8d505d78 4502 db_query($link, "UPDATE ttrss_user_entries
490c366d
AD
4503 SET tag_cache = '$tags_str' WHERE ref_id = '$id'
4504 AND owner_uid = " . $_SESSION["uid"]);
bd3f2ade
AD
4505 }
4506
4507 if ($memcache) $memcache->add($obj_id, $tags, 0, 3600);
0b126ac2
AD
4508 }
4509
4510 return $tags;
4511 }
4512
d62a3b63
AD
4513 function trim_value(&$value) {
4514 $value = trim($value);
8d505d78 4515 }
d62a3b63
AD
4516
4517 function trim_array($array) {
4518 $tmp = $array;
4519 array_walk($tmp, 'trim_value');
4520 return $tmp;
4521 }
4522
be832a1a 4523 function tag_is_valid($tag) {
ef063748
AD
4524 if ($tag == '') return false;
4525 if (preg_match("/^[0-9]*$/", $tag)) return false;
41f7498a 4526 if (mb_strlen($tag) > 250) return false;
ef063748 4527
31365729
AD
4528 if (function_exists('iconv')) {
4529 $tag = iconv("utf-8", "utf-8", $tag);
4530 }
4531
ef063748
AD
4532 if (!$tag) return false;
4533
4534 return true;
be832a1a
AD
4535 }
4536
afb12ed0
AD
4537 function render_login_form($link, $mobile = 0) {
4538 switch ($mobile) {
4539 case 0:
793185a9 4540 require_once "login_form.php";
afb12ed0
AD
4541 break;
4542 case 1:
793185a9 4543 require_once "mobile/login_form.php";
afb12ed0
AD
4544 break;
4545 case 2:
4546 require_once "mobile/classic/login_form.php";
793185a9 4547 }
01a87dff
AD
4548 }
4549
dc56b3b7
AD
4550 // from http://developer.apple.com/internet/safari/faq.html
4551 function no_cache_incantation() {
4552 header("Expires: Mon, 22 Dec 1980 00:00:00 GMT"); // Happy birthday to me :)
4553 header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified
4554 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); // HTTP/1.1
4555 header("Cache-Control: post-check=0, pre-check=0", false);
4556 header("Pragma: no-cache"); // HTTP/1.0
4557 }
4558
42395d28 4559 function format_warning($msg, $id = "") {
883fee8d 4560 global $link;
8d505d78 4561 return "<div class=\"warning\" id=\"$id\">
883fee8d 4562 <img src=\"".theme_image($link, "images/sign_excl.png")."\">$msg</div>";
0d32b41e
AD
4563 }
4564
08ac193a 4565 function format_notice($msg, $id = "") {
883fee8d 4566 global $link;
8d505d78 4567 return "<div class=\"notice\" id=\"$id\">
883fee8d 4568 <img src=\"".theme_image($link, "images/sign_info.png")."\">$msg</div>";
0d32b41e
AD
4569 }
4570
08ac193a 4571 function format_error($msg, $id = "") {
883fee8d 4572 global $link;
8d505d78 4573 return "<div class=\"error\" id=\"$id\">
883fee8d 4574 <img src=\"".theme_image($link, "images/sign_excl.png")."\">$msg</div>";
68d2f95e
AD
4575 }
4576
4dccf1ed
AD
4577 function print_notice($msg) {
4578 return print format_notice($msg);
4579 }
4580
4581 function print_warning($msg) {
4582 return print format_warning($msg);
4583 }
4584
68d2f95e
AD
4585 function print_error($msg) {
4586 return print format_error($msg);
4587 }
4588
4589
4dccf1ed
AD
4590 function T_sprintf() {
4591 $args = func_get_args();
4592 return vsprintf(__(array_shift($args)), $args);
4593 }
4594
51682b23
AD
4595 function format_inline_player($link, $url, $ctype) {
4596
4597 $entry = "";
4598
8d505d78 4599 if (strpos($ctype, "audio/") === 0) {
c3edc667
AD
4600
4601 if ($_SESSION["hasAudio"] && (strpos($ctype, "ogg") !== false ||
8d505d78 4602 strpos($_SERVER['HTTP_USER_AGENT'], "Chrome") !== false ||
c3edc667
AD
4603 strpos($_SERVER['HTTP_USER_AGENT'], "Safari") !== false )) {
4604
4605 $id = 'AUDIO-' . uniqid();
4606
4607 $entry .= "<audio id=\"$id\"\">
4608 <source src=\"$url\"></source>
8d505d78 4609 </audio>";
c3edc667 4610
8d505d78 4611 $entry .= "<span onclick=\"player(this)\"
c3edc667
AD
4612 title=\"".__("Click to play")."\" status=\"0\"
4613 class=\"player\" audio-id=\"$id\">".__("Play")."</span>";
4614
4615 } else {
8d505d78
AD
4616
4617 $entry .= "<object type=\"application/x-shockwave-flash\"
4618 data=\"extras/button/musicplayer.swf?song_url=$url\"
4619 width=\"17\" height=\"17\" style='float : left; margin-right : 5px;'>
4620 <param name=\"movie\"
c3edc667 4621 value=\"extras/button/musicplayer.swf?song_url=$url\" />
8d505d78 4622 </object>";
c3edc667 4623 }
51682b23
AD
4624 }
4625
c3edc667
AD
4626 $filename = substr($url, strrpos($url, "/")+1);
4627
4628 $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
4629 $filename . " (" . $ctype . ")" . "</a>";
4630
51682b23
AD
4631 return $entry;
4632 }
4633
009646d2 4634 function format_article($link, $id, $feed_id, $mark_as_read = true,
eedfb635 4635 $zoom_mode = false) {
3de0261a 4636
009646d2
AD
4637 $rv = array();
4638
4639 $rv['id'] = $id;
4640
10eb9da8 4641 /* we can figure out feed_id from article id anyway, why do we
e04c18a2 4642 * pass feed_id here? let's ignore the argument :( */
10eb9da8
AD
4643
4644 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
4645 WHERE ref_id = '$id'");
4646
e04c18a2 4647 $feed_id = (int) db_fetch_result($result, 0, "feed_id");
10eb9da8 4648
009646d2
AD
4649 $rv['feed_id'] = $feed_id;
4650
4651 //if (!$zoom_mode) { print "<article id='$id'><![CDATA["; };
3de0261a 4652
54e61a68 4653 $result = db_query($link, "SELECT rtl_content, always_display_enclosures FROM ttrss_feeds
3de0261a
AD
4654 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
4655
4656 if (db_num_rows($result) == 1) {
4657 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
54e61a68 4658 $always_display_enclosures = sql_bool_to_bool(db_fetch_result($result, 0, "always_display_enclosures"));
3de0261a
AD
4659 } else {
4660 $rtl_content = false;
54e61a68 4661 $always_display_enclosures = false;
3de0261a
AD
4662 }
4663
4664 if ($rtl_content) {
4665 $rtl_tag = "dir=\"RTL\"";
4666 $rtl_class = "RTL";
4667 } else {
4668 $rtl_tag = "";
4669 $rtl_class = "";
4670 }
4671
4672 if ($mark_as_read) {
8d505d78
AD
4673 $result = db_query($link, "UPDATE ttrss_user_entries
4674 SET unread = false,last_read = NOW()
3de0261a 4675 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
8a4c759e
AD
4676
4677 ccache_update($link, $feed_id, $_SESSION["uid"]);
3de0261a
AD
4678 }
4679
4680 $result = db_query($link, "SELECT title,link,content,feed_id,comments,int_id,
fc2b26a6 4681 ".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
3de0261a 4682 (SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url,
8cc3c778 4683 (SELECT site_url FROM ttrss_feeds WHERE id = feed_id) as site_url,
3de0261a 4684 num_comments,
c7e51de1 4685 author,
ef83538d 4686 orig_feed_id,
c7e51de1 4687 note
3de0261a
AD
4688 FROM ttrss_entries,ttrss_user_entries
4689 WHERE id = '$id' AND ref_id = id AND owner_uid = " . $_SESSION["uid"]);
4690
4691 if ($result) {
4692
3de0261a
AD
4693 $line = db_fetch_assoc($result);
4694
4695 if ($line["icon_url"]) {
8e289ca1 4696 $feed_icon = "<img src=\"" . $line["icon_url"] . "\">";
3de0261a
AD
4697 } else {
4698 $feed_icon = "&nbsp;";
4699 }
4700
8cc3c778
AD
4701 $feed_site_url = $line['site_url'];
4702
3de0261a
AD
4703 $num_comments = $line["num_comments"];
4704 $entry_comments = "";
4705
4706 if ($num_comments > 0) {
4707 if ($line["comments"]) {
4708 $comments_url = $line["comments"];
4709 } else {
4710 $comments_url = $line["link"];
4711 }
7514749d 4712 $entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
3de0261a
AD
4713 } else {
4714 if ($line["comments"] && $line["link"] != $line["comments"]) {
7514749d 4715 $entry_comments = "<a target='_blank' href=\"".$line["comments"]."\">comments</a>";
8d505d78 4716 }
3de0261a
AD
4717 }
4718
eedfb635
AD
4719 if ($zoom_mode) {
4720 header("Content-Type: text/html");
009646d2 4721 $rv['content'] .= "<html><head>
5bb0cc8e 4722 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
eedfb635
AD
4723 <title>Tiny Tiny RSS - ".$line["title"]."</title>
4724 <link rel=\"stylesheet\" type=\"text/css\" href=\"tt-rss.css\">
4725 </head><body>";
4726 }
4727
009646d2 4728 $rv['content'] .= "<div id=\"PTITLE-$id\" style=\"display : none\">" .
6f3976c9 4729 truncate_string(strip_tags($line['title']), 15) . "</div>";
eedfb635 4730
009646d2 4731 $rv['content'] .= "<div class=\"postReply\" id=\"POST-$id\">";
bc372fe3 4732
009646d2 4733 $rv['content'] .= "<div onclick=\"return postClicked(event, $id)\"
bc372fe3 4734 class=\"postHeader\" id=\"POSTHDR-$id\">";
3de0261a
AD
4735
4736 $entry_author = $line["author"];
4737
4738 if ($entry_author) {
60164936 4739 $entry_author = __(" - ") . $entry_author;
3de0261a
AD
4740 }
4741
8d505d78 4742 $parsed_updated = make_local_datetime($link, $line["updated"], true,
324944f3
AD
4743 false, true);
4744
009646d2 4745 $rv['content'] .= "<div class=\"postDate$rtl_class\">$parsed_updated</div>";
3de0261a
AD
4746
4747 if ($line["link"]) {
009646d2 4748 $rv['content'] .= "<div clear='both'><a target='_blank'
a64029e5 4749 title=\"".htmlspecialchars($line['title'])."\"
8d505d78
AD
4750 href=\"" .
4751 $line["link"] . "\">" .
4752 truncate_string($line["title"], 100) .
a64029e5 4753 "<span class='author'>$entry_author</span></a></div>";
3de0261a 4754 } else {
009646d2 4755 $rv['content'] .= "<div clear='both'>" . $line["title"] . "$entry_author</div>";
3de0261a
AD
4756 }
4757
307d187c 4758 $tags_str = format_tags_string(get_article_tags($link, $id), $id);
e7544143 4759
3de0261a
AD
4760 if (!$entry_comments) $entry_comments = "&nbsp;"; # placeholder
4761
009646d2 4762 $rv['content'] .= "<div style='float : right'>
8d505d78 4763 <img src='".theme_image($link, 'images/tag.png')."'
e9823609 4764 class='tagsPic' alt='Tags' title='Tags'>&nbsp;";
eedfb635
AD
4765
4766 if (!$zoom_mode) {
009646d2 4767 $rv['content'] .= "<span id=\"ATSTR-$id\">$tags_str</span>
8d505d78 4768 <a title=\"".__('Edit tags for this article')."\"
31a53903 4769 href=\"#\" onclick=\"editArticleTags($id, $feed_id)\">(+)</a>";
4710e3dc 4770
009646d2 4771 $rv['content'] .= "<img src=\"".theme_image($link, 'images/art-zoom.png')."\"
9ed0b90f 4772 class='tagsPic' style=\"cursor : pointer\"
ca07f49e 4773 onclick=\"postOpenInNewTab(event, $id)\"
6f3976c9 4774 alt='Zoom' title='".__('Open article in new tab')."'>";
c7e51de1 4775
741b6090 4776 //$note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
c7e51de1 4777
009646d2 4778 $rv['content'] .= "<img src=\"".theme_image($link, 'images/art-pub-note.png')."\"
9ed0b90f 4779 class='tagsPic' style=\"cursor : pointer\"
741b6090
AD
4780 onclick=\"editArticleNote($id)\"
4781 alt='PubNote' title='".__('Edit article note')."'>";
c7e51de1 4782
31a53903 4783 if (DIGEST_ENABLE) {
009646d2 4784 $rv['content'] .= "<img src=\"".theme_image($link, 'images/art-email.png')."\"
9ed0b90f 4785 class='tagsPic' style=\"cursor : pointer\"
31a53903
AD
4786 onclick=\"emailArticle($id)\"
4787 alt='Zoom' title='".__('Forward by email')."'>";
4788 }
4789
411fe209 4790 if (ENABLE_TWEET_BUTTON) {
009646d2 4791 $rv['content'] .= "<img src=\"".theme_image($link, 'images/art-tweet.png')."\"
411fe209
AD
4792 class='tagsPic' style=\"cursor : pointer\"
4793 onclick=\"tweetArticle($id)\"
4794 alt='Zoom' title='".__('Share on Twitter')."'>";
4795 }
4796
009646d2 4797 $rv['content'] .= "<img src=\"".theme_image($link, 'images/digest_checkbox.png')."\"
6f3976c9 4798 class='tagsPic' style=\"cursor : pointer\"
e3387e2d 4799 onclick=\"closeArticlePanel($id)\"
6f3976c9
AD
4800 alt='Zoom' title='".__('Close this panel')."'>";
4801
24ecbcae
AD
4802 } else {
4803 $tags_str = strip_tags($tags_str);
009646d2 4804 $rv['content'] .= "<span id=\"ATSTR-$id\">$tags_str</span>";
eedfb635 4805 }
009646d2
AD
4806 $rv['content'] .= "</div>";
4807 $rv['content'] .= "<div clear='both'>$entry_comments</div>";
3de0261a 4808
ef83538d
AD
4809 if ($line["orig_feed_id"]) {
4810
4811 $tmp_result = db_query($link, "SELECT * FROM ttrss_archived_feeds
4812 WHERE id = ".$line["orig_feed_id"]);
4813
4814 if (db_num_rows($tmp_result) != 0) {
4815
009646d2
AD
4816 $rv['content'] .= "<div clear='both'>";
4817 $rv['content'] .= __("Originally from:");
ef83538d 4818
009646d2 4819 $rv['content'] .= "&nbsp;";
ef83538d
AD
4820
4821 $tmp_line = db_fetch_assoc($tmp_result);
4822
009646d2 4823 $rv['content'] .= "<a target='_blank'
ef83538d
AD
4824 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
4825 $tmp_line['title'] . "</a>";
4826
009646d2 4827 $rv['content'] .= "&nbsp;";
ef83538d 4828
009646d2
AD
4829 $rv['content'] .= "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
4830 $rv['content'] .= "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_set.gif'></a>";
ef83538d 4831
009646d2 4832 $rv['content'] .= "</div>";
ef83538d
AD
4833 }
4834 }
4835
009646d2 4836 $rv['content'] .= "</div>";
3de0261a 4837
009646d2 4838 $rv['content'] .= "<div class=\"postIcon\">" .
8d505d78 4839 "<a target=\"_blank\" title=\"".__("Visit the website")."\"$
f412e5ad
AD
4840 href=\"".htmlspecialchars($feed_site_url)."\">".
4841 $feed_icon . "</a></div>";
64ab16ac 4842
009646d2 4843 $rv['content'] .= "<div id=\"POSTNOTE-$id\">";
c7e51de1 4844 if ($line['note']) {
009646d2 4845 $rv['content'] .= format_article_note($id, $line['note']);
c7e51de1 4846 }
009646d2 4847 $rv['content'] .= "</div>";
c7e51de1 4848
009646d2 4849 $rv['content'] .= "<div class=\"postContent\">";
741b6090
AD
4850
4851 $article_content = sanitize_rss($link, $line["content"], false, false,
4852 $feed_site_url);
4853
009646d2 4854 $rv['content'] .= $article_content;
db54143e 4855
009646d2
AD
4856 $rv['content'] .= format_article_enclosures($link, $id,
4857 $always_display_enclosures, $article_content);
ce53e200 4858
009646d2 4859 $rv['content'] .= "</div>";
dad14b51 4860
009646d2 4861 $rv['content'] .= "</div>";
3de0261a
AD
4862
4863 }
4864
009646d2
AD
4865 if ($zoom_mode) {
4866 $rv['content'] .= "
eedfb635 4867 <div style=\"text-align : center\">
2ae69126
AD
4868 <button onclick=\"return window.close()\">".
4869 __("Close this window")."</button></div>";
009646d2 4870 $rv['content'] .= "</body></html>";
eedfb635 4871 }
3de0261a 4872
009646d2
AD
4873 return $rv;
4874
3de0261a
AD
4875 }
4876
bd202c3f 4877 function format_headlines_list($link, $feed, $subop, $view_mode, $limit, $cat_view,
8d505d78 4878 $next_unread_feed, $offset, $vgr_last_feed = false,
7b4d02a8 4879 $override_order = false) {
3de0261a 4880
52d7e7da
AD
4881 $disable_cache = false;
4882
bd202c3f
AD
4883 $reply = array();
4884
46921916
AD
4885 $timing_info = getmicrotime();
4886
961f4c73
AD
4887 $topmost_article_ids = array();
4888
ac541432
AD
4889 if (!$offset) {
4890 $offset = 0;
4891 }
3de0261a
AD
4892
4893 if ($subop == "undefined") $subop = "";
4894
a9bcfb8f
AD
4895 $subop_split = split(":", $subop);
4896
3de0261a 4897 if ($subop == "CatchupSelected") {
b4e75b2a
AD
4898 $ids = split(",", db_escape_string($_REQUEST["ids"]));
4899 $cmode = sprintf("%d", $_REQUEST["cmode"]);
3de0261a
AD
4900
4901 catchupArticlesById($link, $ids, $cmode);
4902 }
4903
0569a712
AD
4904 if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0) {
4905 update_rss_feed($link, $feed, true);
4906 }
4907
3de0261a
AD
4908 if ($subop == "MarkAllRead") {
4909 catchup_feed($link, $feed, $cat_view);
4910
4911 if (get_pref($link, 'ON_CATCHUP_SHOW_NEXT_FEED')) {
4912 if ($next_unread_feed) {
4913 $feed = $next_unread_feed;
4914 }
4915 }
4916 }
4917
a9bcfb8f
AD
4918 if ($subop_split[0] == "MarkAllReadGR") {
4919 catchup_feed($link, $subop_split[1], false);
4920 }
4921
c3fddd05 4922 // FIXME: might break tag display?
a9bcfb8f 4923
8d505d78 4924 if ($feed > 0 && !$cat_view) {
3de0261a
AD
4925 $result = db_query($link,
4926 "SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
8d505d78 4927
3de0261a 4928 if (db_num_rows($result) == 0) {
bd202c3f 4929 $reply['content'] = "<div align='center'>".__('Feed not found.')."</div>";
3de0261a
AD
4930 }
4931 }
4932
4933 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
10eb9da8 4934
3de0261a
AD
4935 $result = db_query($link, "SELECT rtl_content FROM ttrss_feeds
4936 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
4937
4938 if (db_num_rows($result) == 1) {
4939 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
4940 } else {
4941 $rtl_content = false;
4942 }
8d505d78 4943
3de0261a
AD
4944 if ($rtl_content) {
4945 $rtl_tag = "dir=\"RTL\"";
4946 } else {
4947 $rtl_tag = "";
4948 }
4949 } else {
4950 $rtl_tag = "";
4951 $rtl_content = false;
4952 }
4953
3de0261a
AD
4954 /// START /////////////////////////////////////////////////////////////////////////////////
4955
c3fddd05 4956 @$search = db_escape_string($_REQUEST["query"]);
52d7e7da 4957
8d505d78 4958 if ($search) {
52d7e7da
AD
4959 $disable_cache = true;
4960 }
4961
c3fddd05
AD
4962 @$search_mode = db_escape_string($_REQUEST["search_mode"]);
4963 @$match_on = db_escape_string($_REQUEST["match_on"]);
3de0261a
AD
4964
4965 if (!$match_on) {
4966 $match_on = "both";
4967 }
4968
4969 $real_offset = $offset * $limit;
4970
b4e75b2a 4971 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H0", $timing_info);
46921916 4972
8d505d78 4973 $qfh_ret = queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view,
7b4d02a8 4974 $search, $search_mode, $match_on, $override_order, $real_offset);
3de0261a 4975
b4e75b2a 4976 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H1", $timing_info);
46921916 4977
3de0261a
AD
4978 $result = $qfh_ret[0];
4979 $feed_title = $qfh_ret[1];
4980 $feed_site_url = $qfh_ret[2];
4981 $last_error = $qfh_ret[3];
f56e3080 4982
081e527d
AD
4983 $vgroup_last_feed = $vgr_last_feed;
4984
3de0261a
AD
4985 /// STOP //////////////////////////////////////////////////////////////////////////////////
4986
ac541432 4987 if (!$offset) {
3de0261a 4988
6b32516b 4989 if (db_num_rows($result) > 0) {
bd202c3f 4990 $reply['toolbar'] = format_headline_subtoolbar($link, $feed_site_url, $feed_title,
8d505d78 4991 $feed, $cat_view, $search, $match_on, $search_mode, $view_mode,
26a1e185 4992 $last_error);
6b32516b 4993 }
ac541432 4994 }
3de0261a 4995
29dfb258
AD
4996 $headlines_count = db_num_rows($result);
4997
3de0261a
AD
4998 if (db_num_rows($result) > 0) {
4999
4ab4d364
AD
5000 $lnum = $limit*$offset;
5001
3de0261a 5002 $num_unread = 0;
6cfea5c7
AD
5003 $cur_feed_title = '';
5004
784ac51f
AD
5005 $fresh_intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE") * 60 * 60;
5006
3de0261a
AD
5007 while ($line = db_fetch_assoc($result)) {
5008
5009 $class = ($lnum % 2) ? "even" : "odd";
8d505d78 5010
3de0261a
AD
5011 $id = $line["id"];
5012 $feed_id = $line["feed_id"];
961f4c73 5013
e2549229 5014 $labels = get_article_labels($link, $id);
e2549229 5015
2eb9c95c
AD
5016 $labels_str = "<span id=\"HLLCTR-$id\">";
5017 $labels_str .= format_article_labels($labels, $id);
f9247195 5018 $labels_str .= "</span>";
8d505d78 5019
905ff52a 5020 if (count($topmost_article_ids) < 3) {
961f4c73
AD
5021 array_push($topmost_article_ids, $id);
5022 }
5023
784ac51f 5024 if ($line["last_read"] == "" && !sql_bool_to_bool($line["unread"])) {
8d505d78 5025
883fee8d 5026 $update_pic = "<img id='FUPDPIC-$id' src=\"".
8d505d78 5027 theme_image($link, 'images/updated.png')."\"
3de0261a
AD
5028 alt=\"Updated\">";
5029 } else {
8d505d78 5030 $update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.gif\"
3de0261a
AD
5031 alt=\"Updated\">";
5032 }
784ac51f 5033
8d505d78 5034 if (sql_bool_to_bool($line["unread"]) &&
784ac51f
AD
5035 time() - strtotime($line["updated_noms"]) < $fresh_intl) {
5036
e9823609
AD
5037 $update_pic = "<img id='FUPDPIC-$id' src=\"".
5038 theme_image($link, 'images/fresh_sign.png')."\" alt=\"Fresh\">";
784ac51f 5039 }
8d505d78 5040
3de0261a 5041 if ($line["unread"] == "t" || $line["unread"] == "1") {
ca8e3d75 5042 $class .= " Unread";
3de0261a
AD
5043 ++$num_unread;
5044 $is_unread = true;
5045 } else {
5046 $is_unread = false;
5047 }
abd8a516 5048
3de0261a 5049 if ($line["marked"] == "t" || $line["marked"] == "1") {
8d505d78
AD
5050 $marked_pic = "<img id=\"FMPIC-$id\"
5051 src=\"".theme_image($link, 'images/mark_set.png')."\"
5052 class=\"markedPic\" alt=\"Unstar article\"
e9823609 5053 onclick='javascript:tMark($id)'>";
3de0261a 5054 } else {
8d505d78
AD
5055 $marked_pic = "<img id=\"FMPIC-$id\"
5056 src=\"".theme_image($link, 'images/mark_unset.png')."\"
5057 class=\"markedPic\" alt=\"Star article\"
e9823609 5058 onclick='javascript:tMark($id)'>";
3de0261a
AD
5059 }
5060
e4f4b46f 5061 if ($line["published"] == "t" || $line["published"] == "1") {
8d505d78
AD
5062 $published_pic = "<img id=\"FPPIC-$id\" src=\"".theme_image($link,
5063 'images/pub_set.png')."\"
e4f4b46f 5064 class=\"markedPic\"
f5e0338d 5065 alt=\"Unpublish article\" onclick='javascript:tPub($id)'>";
e4f4b46f 5066 } else {
e9823609 5067 $published_pic = "<img id=\"FPPIC-$id\" src=\"".theme_image($link,
8d505d78 5068 'images/pub_unset.png')."\"
e4f4b46f 5069 class=\"markedPic\"
f5e0338d 5070 alt=\"Publish article\" onclick='javascript:tPub($id)'>";
e4f4b46f
AD
5071 }
5072
e944346c 5073# $content_link = "<a target=\"_blank\" href=\"".$line["link"]."\">" .
3de0261a
AD
5074# $line["title"] . "</a>";
5075
8d505d78 5076# $content_link = "<a
f0971fc1
AD
5077# href=\"" . htmlspecialchars($line["link"]) . "\"
5078# onclick=\"view($id,$feed_id);\">" .
5079# $line["title"] . "</a>";
3de0261a
AD
5080
5081# $content_link = "<a href=\"javascript:viewContentUrl('".$line["link"]."');\">" .
5082# $line["title"] . "</a>";
5083
8d505d78 5084 $updated_fmt = make_local_datetime($link, $line["updated_noms"], false);
3de0261a
AD
5085
5086 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
8d505d78 5087 $content_preview = truncate_string(strip_tags($line["content_preview"]),
3de0261a
AD
5088 100);
5089 }
5090
ff6e357a
AD
5091 $score = $line["score"];
5092
8d505d78 5093 $score_pic = theme_image($link,
883fee8d 5094 "images/" . get_score_pic($score));
546499a9 5095
9bf3f101 5096/* $score_title = __("(Click to change)");
8d505d78 5097 $score_pic = "<img class='hlScorePic' src=\"images/$score_pic\"
9bf3f101 5098 onclick=\"adjustArticleScore($id, $score)\" title=\"$score $score_title\">"; */
546499a9 5099
8d505d78 5100 $score_pic = "<img class='hlScorePic' src=\"$score_pic\"
9bf3f101 5101 title=\"$score\">";
ff6e357a 5102
5daa24f2
AD
5103 if ($score > 500) {
5104 $hlc_suffix = "H";
5105 } else if ($score < -100) {
5106 $hlc_suffix = "L";
5107 } else {
5108 $hlc_suffix = "";
5109 }
5110
3de0261a
AD
5111 $entry_author = $line["author"];
5112
5113 if ($entry_author) {
60164936 5114 $entry_author = " - $entry_author";
3de0261a
AD
5115 }
5116
7defa089 5117 $has_feed_icon = feed_has_icon($feed_id);
bd51294a
AD
5118
5119 if ($has_feed_icon) {
5120 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
5121 } else {
da4fb53f 5122 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/feed-icon-12x12.png\" alt=\"\">";
bd51294a
AD
5123 }
5124
3de0261a 5125 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
6cfea5c7 5126
d00f22ac 5127 if (get_pref($link, 'VFEED_GROUP_BY_FEED')) {
bb031f91 5128 if ($feed_id != $vgroup_last_feed && $line["feed_title"]) {
a9bcfb8f
AD
5129
5130 $cur_feed_title = $line["feed_title"];
081e527d 5131 $vgroup_last_feed = $feed_id;
a9bcfb8f 5132
962d8ba4 5133 $cur_feed_title = htmlspecialchars($cur_feed_title);
43fc671f 5134
af163b85 5135 $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>".__('mark as read')."</a>)";
a9bcfb8f 5136
bd202c3f 5137 $reply['content'] .= "<div class='cdmFeedTitle'>".
dc803347 5138 "<div style=\"float : right\">$feed_icon_img</div>".
4169bb67 5139 "<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
8cc5e965
AD
5140 $line["feed_title"]."</a> $vf_catchup_link</div>";
5141
6cfea5c7
AD
5142 }
5143 }
314fcd2b 5144
8d505d78 5145 $mouseover_attrs = "onmouseover='postMouseIn($id)'
314fcd2b
AD
5146 onmouseout='postMouseOut($id)'";
5147
bd202c3f 5148 $reply['content'] .= "<div class='$class' id='RROW-$id' $mouseover_attrs>";
8cc5e965 5149
bd202c3f 5150 $reply['content'] .= "<div class='hlUpdPic'>$update_pic</div>";
8cc5e965 5151
bd202c3f 5152 $reply['content'] .= "<div class='hlLeft'>";
8cc5e965 5153
bd202c3f 5154 $reply['content'] .= "<input type=\"checkbox\" onclick=\"tSR(this)\"
8cc5e965 5155 id=\"RCHK-$id\">";
8d505d78 5156
bd202c3f
AD
5157 $reply['content'] .= "$marked_pic";
5158 $reply['content'] .= "$published_pic";
3de0261a 5159
bd202c3f 5160 $reply['content'] .= "</div>";
df456bb0 5161
bd202c3f 5162 $reply['content'] .= "<div onclick='return hlClicked(event, $id)'
8cc5e965 5163 class=\"hlTitle\"><span class='hlContent$hlc_suffix'>";
bd202c3f 5164 $reply['content'] .= "<a id=\"RTITLE-$id\"
f0971fc1 5165 href=\"" . htmlspecialchars($line["link"]) . "\"
ccdddcc2 5166 onclick=\"\">" .
df456bb0
AD
5167 $line["title"];
5168
5169 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
5170 if ($content_preview) {
bd202c3f 5171 $reply['content'] .= "<span class=\"contentPreview\"> - $content_preview</span>";
3de0261a 5172 }
3de0261a 5173 }
df456bb0 5174
bd202c3f 5175 $reply['content'] .= "</a></span>";
df456bb0 5176
bd202c3f 5177 $reply['content'] .= $labels_str;
e2549229 5178
af32a59a 5179 /* if (!get_pref($link, 'VFEED_GROUP_BY_FEED')) {
8d505d78 5180 if (@$line["feed_title"]) {
6cfea5c7 5181 print "<span class=\"hlFeed\">
4169bb67 5182 (<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
6cfea5c7
AD
5183 $line["feed_title"]."</a>)
5184 </span>";
5185 }
af32a59a 5186 } */
6e35a862 5187
bd202c3f 5188 $reply['content'] .= "</div>";
7b5e74c7 5189
bd202c3f
AD
5190 $reply['content'] .= "<div class=\"hlRight\">";
5191 $reply['content'] .= "<span class=\"hlUpdated\">$updated_fmt</span>";
5192 $reply['content'] .= $score_pic;
546499a9 5193
8cc5e965 5194 if ($line["feed_title"] && !get_pref($link, 'VFEED_GROUP_BY_FEED')) {
bd51294a 5195
bd202c3f 5196 $reply['content'] .= "<span onclick=\"viewfeed($feed_id)\"
8cc5e965
AD
5197 title=\"".htmlspecialchars($line['feed_title'])."\">
5198 $feed_icon_img<span>";
bd51294a
AD
5199 }
5200
bd202c3f
AD
5201 $reply['content'] .= "</div>";
5202 $reply['content'] .= "</div>";
3de0261a
AD
5203
5204 } else {
6cfea5c7 5205
bb031f91 5206 if (get_pref($link, 'VFEED_GROUP_BY_FEED') && $line["feed_title"]) {
081e527d
AD
5207 if ($feed_id != $vgroup_last_feed) {
5208
5209 $cur_feed_title = $line["feed_title"];
5210 $vgroup_last_feed = $feed_id;
5211
962d8ba4
AD
5212 $cur_feed_title = htmlspecialchars($cur_feed_title);
5213
af163b85 5214 $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>".__('mark as read')."</a>)";
081e527d 5215
7defa089 5216 $has_feed_icon = feed_has_icon($feed_id);
dc803347
AD
5217
5218 if ($has_feed_icon) {
5219 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
5220 } else {
5221 //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">";
5222 }
5223
bd202c3f 5224 $reply['content'] .= "<div class='cdmFeedTitle'>".
dc803347 5225 "<div style=\"float : right\">$feed_icon_img</div>".
4169bb67 5226 "<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
081e527d 5227 $line["feed_title"]."</a> $vf_catchup_link</div>";
6cfea5c7
AD
5228 }
5229 }
5230
0cacc891 5231 $expand_cdm = get_pref($link, 'CDM_EXPANDED');
0cacc891 5232
8d505d78 5233 $mouseover_attrs = "onmouseover='postMouseIn($id)'
314fcd2b
AD
5234 onmouseout='postMouseOut($id)'";
5235
bd202c3f 5236 $reply['content'] .= "<div class=\"$class\"
dd4c8697 5237 id=\"RROW-$id\" $mouseover_attrs'>";
3de0261a 5238
bd202c3f 5239 $reply['content'] .= "<div class=\"cdmHeader\">";
3de0261a 5240
bd202c3f
AD
5241 $reply['content'] .= "<div style='float : right'>";
5242 $reply['content'] .= "<span class='updated'>$updated_fmt</span>";
5243 $reply['content'] .= "$score_pic";
965fb2af 5244
dad14b51 5245 if (!get_pref($link, "VFEED_GROUP_BY_FEED") && $line["feed_title"]) {
bd202c3f 5246 $reply['content'] .= "<span style=\"cursor : pointer\"
dad14b51
AD
5247 title=\"".htmlspecialchars($line["feed_title"])."\"
5248 onclick=\"viewfeed($feed_id)\">$feed_icon_img</span>";
5249 }
bd202c3f 5250 $reply['content'] .= "<div class=\"updPic\">$update_pic</div>";
dd1c0680 5251
bd202c3f 5252 $reply['content'] .= "</div>";
8d505d78 5253
bd202c3f 5254 $reply['content'] .= "<input type=\"checkbox\" onclick=\"toggleSelectRowById(this,
ca8e3d75 5255 'RROW-$id')\" id=\"RCHK-$id\"/>";
5daa24f2 5256
bd202c3f
AD
5257 $reply['content'] .= "$marked_pic";
5258 $reply['content'] .= "$published_pic";
a7f003e0 5259
bd202c3f 5260 $reply['content'] .= "<span id=\"RTITLE-$id\"
dd4c8697 5261 onclick=\"return cdmClicked(event, $id);\"
dad14b51
AD
5262 class=\"titleWrap$hlc_suffix\">
5263 <a class=\"title\"
a64029e5 5264 title=\"".htmlspecialchars($line['title'])."\"
96d44601 5265 target=\"_blank\" href=\"".
a64029e5 5266 htmlspecialchars($line["link"])."\">".
8d505d78 5267 truncate_string($line["title"], 100) .
2547c9ec 5268 " $entry_author</a>";
0cacc891 5269
bd202c3f 5270 $reply['content'] .= $labels_str;
0cacc891 5271
02ef7e02 5272 if (!$expand_cdm)
dad14b51
AD
5273 $content_hidden = "style=\"display : none\"";
5274 else
5275 $excerpt_hidden = "style=\"display : none\"";
3de0261a 5276
bd202c3f 5277 $reply['content'] .= "<span $excerpt_hidden
dad14b51 5278 id=\"CEXC-$id\" class=\"cdmExcerpt\"> - $content_preview</span>";
3de0261a 5279
bd202c3f 5280 $reply['content'] .= "</span>";
dd4c8697 5281
bd202c3f 5282 $reply['content'] .= "</div>";
c9efd838 5283
bd202c3f 5284 $reply['content'] .= "<div class=\"cdmContent\" $content_hidden
dd4c8697 5285 onclick=\"return cdmClicked(event, $id);\"
dad14b51 5286 id=\"CICD-$id\">";
c9efd838 5287
bd202c3f 5288 $reply['content'] .= "<div class=\"cdmContentInner\">";
a04c8e8d 5289
dad14b51 5290 if ($line["orig_feed_id"]) {
494a64ea 5291
dad14b51
AD
5292 $tmp_result = db_query($link, "SELECT * FROM ttrss_archived_feeds
5293 WHERE id = ".$line["orig_feed_id"]);
494a64ea
AD
5294
5295 if (db_num_rows($tmp_result) != 0) {
8d505d78 5296
bd202c3f
AD
5297 $reply['content'] .= "<div clear='both'>";
5298 $reply['content'] .= __("Originally from:");
8d505d78 5299
bd202c3f 5300 $reply['content'] .= "&nbsp;";
8d505d78 5301
dad14b51 5302 $tmp_line = db_fetch_assoc($tmp_result);
8d505d78 5303
bd202c3f 5304 $reply['content'] .= "<a target='_blank'
dad14b51
AD
5305 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
5306 $tmp_line['title'] . "</a>";
8d505d78 5307
bd202c3f 5308 $reply['content'] .= "&nbsp;";
8d505d78 5309
bd202c3f
AD
5310 $reply['content'] .= "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
5311 $reply['content'] .= "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_set.gif'></a>";
8d505d78 5312
bd202c3f 5313 $reply['content'] .= "</div>";
dad14b51 5314 }
494a64ea 5315 }
494a64ea 5316
9d3c031d
AD
5317 // FIXME: make this less of a hack
5318
5319 $feed_site_url = false;
5320
5321 if ($line["feed_id"]) {
5322 $tmp_result = db_query($link, "SELECT site_url FROM ttrss_feeds
5323 WHERE id = " . $line["feed_id"]);
5324
5325 if (db_num_rows($tmp_result) == 1) {
5326 $feed_site_url = db_fetch_result($tmp_result, 0, "site_url");
5327 }
5328 }
5329
dd1c0680 5330 if ($expand_cdm) {
8d505d78 5331 $article_content = sanitize_rss($link, $line["content_preview"],
62b800b4 5332 false, false, $feed_site_url);
621ffb00 5333
62b800b4 5334 if (!$article_content) $article_content = "&nbsp;";
dd1c0680
AD
5335 } else {
5336 $article_content = '';
5337 }
1ede5814 5338
bd202c3f 5339 $reply['content'] .= "<div id=\"POSTNOTE-$id\">";
c7e51de1 5340 if ($line['note']) {
bd202c3f 5341 $reply['content'] .= format_article_note($id, $line['note']);
c7e51de1 5342 }
bd202c3f 5343 $reply['content'] .= "</div>";
c7e51de1 5344
bd202c3f 5345 $reply['content'] .= "<span id=\"CWRAP-$id\">$article_content</span>";
a3eeb471 5346
dad14b51
AD
5347 $tmp_result = db_query($link, "SELECT always_display_enclosures FROM
5348 ttrss_feeds WHERE id = ".
8d505d78 5349 (($line['feed_id'] == null) ? $line['orig_feed_id'] :
a16a62c0 5350 $line['feed_id'])." AND owner_uid = ".$_SESSION["uid"]);
54e61a68 5351
8d505d78 5352 $always_display_enclosures = sql_bool_to_bool(db_fetch_result($tmp_result,
dad14b51 5353 0, "always_display_enclosures"));
a04c8e8d 5354
bd202c3f 5355 $reply['content'] .= format_article_enclosures($link, $id, $always_display_enclosures,
dad14b51 5356 $article_content);
a04c8e8d 5357
bd202c3f 5358 $reply['content'] .= "</div>";
3de0261a 5359
bd202c3f 5360 $reply['content'] .= "<div class=\"cdmFooter\">";
3de0261a 5361
dad14b51
AD
5362 $tags_str = format_tags_string(get_article_tags($link, $id), $id);
5363
bd202c3f 5364 $reply['content'] .= "<img src='".theme_image($link,
dad14b51
AD
5365 'images/tag.png')."' alt='Tags' title='Tags'>
5366 <span id=\"ATSTR-$id\">$tags_str</span>
8d505d78 5367 <a title=\"".__('Edit tags for this article')."\"
4169bb67 5368 href=\"#\" onclick=\"editArticleTags($id, $feed_id, true)\">(+)</a>";
3de0261a 5369
bd202c3f 5370 $reply['content'] .= "<div style=\"float : right\">";
3de0261a 5371
bd202c3f 5372 $reply['content'] .= "<img src=\"images/art-zoom.png\"
8a6702ad 5373 onclick=\"zoomToArticle(event, $id)\"
eedfb635 5374 style=\"cursor : pointer\"
8d505d78 5375 alt='Zoom'
6f3976c9 5376 title='".__('Open article in new tab')."'>";
dad14b51 5377
741b6090 5378 //$note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
411fe209 5379
bd202c3f 5380 $reply['content'] .= "<img src=\"images/art-pub-note.png\"
411fe209 5381 style=\"cursor : pointer\" style=\"cursor : pointer\"
741b6090
AD
5382 onclick=\"editArticleNote($id)\"
5383 alt='PubNote' title='".__('Edit article note')."'>";
411fe209 5384
dad14b51 5385 if (DIGEST_ENABLE) {
bd202c3f 5386 $reply['content'] .= "<img src=\"".theme_image($link, 'images/art-email.png')."\"
dad14b51
AD
5387 style=\"cursor : pointer\"
5388 onclick=\"emailArticle($id)\"
5389 alt='Zoom' title='".__('Forward by email')."'>";
5390 }
c7e51de1 5391
411fe209 5392 if (ENABLE_TWEET_BUTTON) {
bd202c3f 5393 $reply['content'] .= "<img src=\"".theme_image($link, 'images/art-tweet.png')."\"
411fe209
AD
5394 class='tagsPic' style=\"cursor : pointer\"
5395 onclick=\"tweetArticle($id)\"
5396 alt='Zoom' title='".__('Share on Twitter')."'>";
5397 }
c7e51de1 5398
bd202c3f 5399 $reply['content'] .= "<img src=\"images/digest_checkbox.png\"
dad14b51 5400 style=\"cursor : pointer\" style=\"cursor : pointer\"
1ede5814 5401 onclick=\"dismissArticle($id)\"
dad14b51 5402 alt='Dismiss' title='".__('Dismiss article')."'>";
3de0261a 5403
bd202c3f
AD
5404 $reply['content'] .= "</div>";
5405 $reply['content'] .= "</div>";
3de0261a 5406
bd202c3f 5407 $reply['content'] .= "</div>";
3de0261a 5408
bd202c3f 5409 $reply['content'] .= "</div>";
3de0261a 5410
8d505d78
AD
5411 }
5412
3de0261a 5413 ++$lnum;
8d505d78 5414 }
3de0261a 5415
3de0261a 5416 } else {
93c841c4
AD
5417 $message = "";
5418
5419 switch ($view_mode) {
5420 case "unread":
5421 $message = __("No unread articles found to display.");
5422 break;
8b09eac8
AD
5423 case "updated":
5424 $message = __("No updated articles found to display.");
5425 break;
93c841c4
AD
5426 case "marked":
5427 $message = __("No starred articles found to display.");
5428 break;
5429 default:
215af892
AD
5430 if ($feed < -10) {
5431 $message = __("No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter.");
5432 } else {
5433 $message = __("No articles found to display.");
5434 }
93c841c4
AD
5435 }
5436
8f7c631e 5437 if (!$offset && $message) {
bd202c3f 5438 $reply['content'] .= "<div class='whiteBox'>$message";
8f7c631e 5439
bd202c3f 5440 $reply['content'] .= "<p class=\"small\"><span class=\"insensitive\">";
8f7c631e
AD
5441
5442 $result = db_query($link, "SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
5443 WHERE owner_uid = " . $_SESSION['uid']);
8d505d78 5444
8f7c631e
AD
5445 $last_updated = db_fetch_result($result, 0, "last_updated");
5446 $last_updated = make_local_datetime($link, $last_updated, false);
8d505d78 5447
bd202c3f 5448 $reply['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
8d505d78 5449
8f7c631e
AD
5450 $result = db_query($link, "SELECT COUNT(id) AS num_errors
5451 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
8d505d78 5452
8f7c631e 5453 $num_errors = db_fetch_result($result, 0, "num_errors");
8d505d78 5454
8f7c631e 5455 if ($num_errors > 0) {
bd202c3f
AD
5456 $reply['content'] .= "<br/>";
5457 $reply['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
8f7c631e
AD
5458 __('Some feeds have update errors (click for details)')."</a>";
5459 }
bd202c3f 5460 $reply['content'] .= "</span></p></div>";
8f7c631e 5461 }
3de0261a
AD
5462 }
5463
6e4f4ce1
AD
5464# if (!$offset) {
5465# if ($headlines_count > 0) print "</div>";
5466# print "</div>";
5467# }
5468
bd202c3f 5469 #print "]]></content>";
3de0261a 5470
bd202c3f
AD
5471 return array($topmost_article_ids, $headlines_count, $feed, $disable_cache,
5472 $vgroup_last_feed, $reply['content'], $reply['toolbar']);
3de0261a 5473 }
0979b696
AD
5474
5475// from here: http://www.roscripts.com/Create_tag_cloud-71.html
5476
5477 function printTagCloud($link) {
35a03bdd 5478
8d505d78
AD
5479 $query = "SELECT tag_name, COUNT(post_int_id) AS count
5480 FROM ttrss_tags WHERE owner_uid = ".$_SESSION["uid"]."
b31af972 5481 GROUP BY tag_name ORDER BY count DESC LIMIT 50";
0979b696
AD
5482
5483 $result = db_query($link, $query);
5484
5485 $tags = array();
5486
5487 while ($line = db_fetch_assoc($result)) {
5488 $tags[$line["tag_name"]] = $line["count"];
5489 }
5490
5491 ksort($tags);
5492
5493 $max_size = 32; // max font size in pixels
4548a580 5494 $min_size = 11; // min font size in pixels
8d505d78 5495
0979b696
AD
5496 // largest and smallest array values
5497 $max_qty = max(array_values($tags));
5498 $min_qty = min(array_values($tags));
8d505d78 5499
0979b696
AD
5500 // find the range of values
5501 $spread = $max_qty - $min_qty;
5502 if ($spread == 0) { // we don't want to divide by zero
5503 $spread = 1;
5504 }
8d505d78 5505
0979b696
AD
5506 // set the font-size increment
5507 $step = ($max_size - $min_size) / ($spread);
8d505d78 5508
0979b696
AD
5509 // loop through the tag array
5510 foreach ($tags as $key => $value) {
5511 // calculate font-size
5512 // find the $value in excess of $min_qty
5513 // multiply by the font-size increment ($size)
5514 // and add the $min_size set above
5515 $size = round($min_size + (($value - $min_qty) * $step));
546ffab4
AD
5516
5517 $key_escaped = str_replace("'", "\\'", $key);
5518
8d505d78
AD
5519 echo "<a href=\"javascript:viewfeed('$key_escaped') \" style=\"font-size: " .
5520 $size . "px\" title=\"$value articles tagged with " .
0979b696
AD
5521 $key . '">' . $key . '</a> ';
5522 }
5523 }
46921916
AD
5524
5525 function print_checkpoint($n, $s) {
8d505d78 5526 $ts = getmicrotime();
46921916
AD
5527 echo sprintf("<!-- CP[$n] %.4f seconds -->", $ts - $s);
5528 return $ts;
5529 }
14b6c54b
AD
5530
5531 function sanitize_tag($tag) {
5532 $tag = trim($tag);
5533
5534 $tag = mb_strtolower($tag, 'utf-8');
5535
78ccac0b 5536 $tag = preg_replace('/[\'\"\+\>\<]/', "", $tag);
0c3d1c68 5537
8d505d78
AD
5538// $tag = str_replace('"', "", $tag);
5539// $tag = str_replace("+", " ", $tag);
14b6c54b
AD
5540 $tag = str_replace("technorati tag: ", "", $tag);
5541
5542 return $tag;
5543 }
e4f4b46f 5544
8801fb01 5545 function get_self_url_prefix() {
f56e3080 5546
ed102aa0 5547 /* $url_path = "";
8d505d78 5548
e2749781
AD
5549 if ($_SERVER['HTTPS'] != "on") {
5550 $url_path = "http://";
5551 } else {
5552 $url_path = "https://";
5553 }
f56e3080 5554
e2749781 5555 $url_path .= $_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']);
f56e3080 5556
ed102aa0
AD
5557 return $url_path; */
5558
5559 return SELF_URL_PATH;
e0dc56d4 5560
8801fb01
AD
5561 }
5562 function opml_publish_url($link){
e0dc56d4 5563
8801fb01 5564 $url_path = get_self_url_prefix();
8d505d78 5565 $url_path .= "/opml.php?op=publish&key=" .
2e7f046f 5566 get_feed_access_key($link, 'OPML:Publish', false, $_SESSION["uid"]);
e0dc56d4
MK
5567
5568 return $url_path;
5569 }
f56e3080 5570
45004d43
AD
5571 /**
5572 * Purge a feed contents, marked articles excepted.
8d505d78 5573 *
45004d43
AD
5574 * @param mixed $link The database connection.
5575 * @param integer $id The id of the feed to purge.
5576 * @return void
5577 */
d1f0c584 5578 function clear_feed_articles($link, $id) {
e04c18a2
AD
5579
5580 if ($id != 0) {
5581 $result = db_query($link, "DELETE FROM ttrss_user_entries
a8ae1b9a 5582 WHERE feed_id = '$id' AND marked = false AND owner_uid = " . $_SESSION["uid"]);
e04c18a2
AD
5583 } else {
5584 $result = db_query($link, "DELETE FROM ttrss_user_entries
5585 WHERE feed_id IS NULL AND marked = false AND owner_uid = " . $_SESSION["uid"]);
5586 }
d1f0c584 5587
8d505d78 5588 $result = db_query($link, "DELETE FROM ttrss_entries WHERE
d1f0c584 5589 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
ced46404
AD
5590
5591 ccache_update($link, $id, $_SESSION['uid']);
45004d43
AD
5592 } // function clear_feed_articles
5593
5594 /**
5595 * Compute the Mozilla Firefox feed adding URL from server HOST and REQUEST_URI.
5596 *
5597 * @return string The Mozilla Firefox feed adding URL.
5598 */
5599 function add_feed_url() {
ed102aa0
AD
5600 //$url_path = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
5601
5602 $url_path = get_self_url_prefix() .
5603 "/backend.php?op=pref-feeds&quiet=1&subop=add&feed_url=%s";
755a43ee 5604 return $url_path;
45004d43
AD
5605 } // function add_feed_url
5606
5607 /**
5608 * Encrypt a password in SHA1.
8d505d78 5609 *
45004d43
AD
5610 * @param string $pass The password to encrypt.
5611 * @param string $login A optionnal login.
5612 * @return string The encrypted password.
5613 */
1a9f4d3c
AD
5614 function encrypt_password($pass, $login = '') {
5615 if ($login) {
5616 return "SHA1X:" . sha1("$login:$pass");
5617 } else {
5618 return "SHA1:" . sha1($pass);
5619 }
45004d43
AD
5620 } // function encrypt_password
5621
5622 /**
5623 * Update a feed batch.
5624 * Used by daemons to update n feeds by run.
5625 * Only update feed needing a update, and not being processed
5626 * by another process.
8d505d78 5627 *
45004d43
AD
5628 * @param mixed $link Database link
5629 * @param integer $limit Maximum number of feeds in update batch. Default to DAEMON_FEED_LIMIT.
5630 * @param boolean $from_http Set to true if you call this function from http to disable cli specific code.
5631 * @param boolean $debug Set to false to disable debug output. Default to true.
5632 * @return void
5633 */
5634 function update_daemon_common($link, $limit = DAEMON_FEED_LIMIT, $from_http = false, $debug = true) {
5635 // Process all other feeds using last_updated and interval parameters
5636
5637 // Test if the user has loggued in recently. If not, it does not update its feeds.
5638 if (DAEMON_UPDATE_LOGIN_LIMIT > 0) {
5639 if (DB_TYPE == "pgsql") {
5640 $login_thresh_qpart = "AND ttrss_users.last_login >= NOW() - INTERVAL '".DAEMON_UPDATE_LOGIN_LIMIT." days'";
5641 } else {
5642 $login_thresh_qpart = "AND ttrss_users.last_login >= DATE_SUB(NOW(), INTERVAL ".DAEMON_UPDATE_LOGIN_LIMIT." DAY)";
8d505d78 5643 }
45004d43
AD
5644 } else {
5645 $login_thresh_qpart = "";
5646 }
5647
5648 // Test if the feed need a update (update interval exceded).
5649 if (DB_TYPE == "pgsql") {
5650 $update_limit_qpart = "AND ((
5651 ttrss_feeds.update_interval = 0
5652 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_user_prefs.value || ' minutes') AS INTERVAL)
5653 ) OR (
5654 ttrss_feeds.update_interval > 0
5655 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_feeds.update_interval || ' minutes') AS INTERVAL)
da4caf5d 5656 ) OR ttrss_feeds.last_updated IS NULL)";
45004d43
AD
5657 } else {
5658 $update_limit_qpart = "AND ((
5659 ttrss_feeds.update_interval = 0
5660 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL CONVERT(ttrss_user_prefs.value, SIGNED INTEGER) MINUTE)
5661 ) OR (
5662 ttrss_feeds.update_interval > 0
5663 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL ttrss_feeds.update_interval MINUTE)
da4caf5d 5664 ) OR ttrss_feeds.last_updated IS NULL)";
45004d43
AD
5665 }
5666
5667 // Test if feed is currently being updated by another process.
5668 if (DB_TYPE == "pgsql") {
5669 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '120 seconds')";
5670 } else {
5671 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 120 SECOND))";
5672 }
5673
5674 // Test if there is a limit to number of updated feeds
5675 $query_limit = "";
5676 if($limit) $query_limit = sprintf("LIMIT %d", $limit);
5677
51b8c957
AD
5678 $random_qpart = sql_random_function();
5679
45004d43
AD
5680 // We search for feed needing update.
5681 $result = db_query($link, "SELECT ttrss_feeds.feed_url,ttrss_feeds.id, ttrss_feeds.owner_uid,
fc2b26a6 5682 ".SUBSTRING_FOR_DATE."(ttrss_feeds.last_updated,1,19) AS last_updated,
8d505d78
AD
5683 ttrss_feeds.update_interval
5684 FROM
45004d43
AD
5685 ttrss_feeds, ttrss_users, ttrss_user_prefs
5686 WHERE
5687 ttrss_feeds.owner_uid = ttrss_users.id
5688 AND ttrss_users.id = ttrss_user_prefs.owner_uid
5689 AND ttrss_user_prefs.pref_name = 'DEFAULT_UPDATE_INTERVAL'
5690 $login_thresh_qpart $update_limit_qpart
51b8c957
AD
5691 $updstart_thresh_qpart
5692 ORDER BY $random_qpart $query_limit");
45004d43
AD
5693
5694 $user_prefs_cache = array();
5695
5696 if($debug) _debug(sprintf("Scheduled %d feeds to update...\n", db_num_rows($result)));
5697
5698 // Here is a little cache magic in order to minimize risk of double feed updates.
5699 $feeds_to_update = array();
5700 while ($line = db_fetch_assoc($result)) {
5701 $feeds_to_update[$line['id']] = $line;
5702 }
5703
5704 // We update the feed last update started date before anything else.
5705 // There is no lag due to feed contents downloads
5706 // It prevent an other process to update the same feed.
5707 $feed_ids = array_keys($feeds_to_update);
5708 if($feed_ids) {
5709 db_query($link, sprintf("UPDATE ttrss_feeds SET last_update_started = NOW()
5710 WHERE id IN (%s)", implode(',', $feed_ids)));
5711 }
5712
5713 // For each feed, we call the feed update function.
5714 while ($line = array_pop($feeds_to_update)) {
5715
5716 if($debug) _debug("Feed: " . $line["feed_url"] . ", " . $line["last_updated"]);
5717
cce9822a
AD
5718 update_rss_feed($link, $line["id"], true);
5719
45004d43
AD
5720 sleep(1); // prevent flood (FIXME make this an option?)
5721 }
5722
0e0dd486
AD
5723 // Send feed digests by email if needed.
5724 if (DAEMON_SENDS_DIGESTS) send_headlines_digests($link);
5725
45004d43 5726 } // function update_daemon_common
1a9f4d3c 5727
621ffb00
AD
5728 function sanitize_article_content($text) {
5729 # we don't support CDATA sections in articles, they break our own escaping
5730 $text = preg_replace("/\[\[CDATA/", "", $text);
5731 $text = preg_replace("/\]\]\>/", "", $text);
5732 return $text;
5733 }
fee840fb
AD
5734
5735 function load_filters($link, $feed, $owner_uid, $action_id = false) {
5736 $filters = array();
5737
b8ffa322 5738 global $memcache;
fee840fb 5739
1f011328
AD
5740 $obj_id = md5("FILTER:$feed:$owner_uid:$action_id");
5741
b8ffa322
AD
5742 if ($memcache && $obj = $memcache->get($obj_id)) {
5743
b8ffa322
AD
5744 return $obj;
5745
5746 } else {
fee840fb 5747
b8ffa322 5748 if ($action_id) $ftype_query_part = "action_id = '$action_id' AND";
8d505d78 5749
b8ffa322
AD
5750 $result = db_query($link, "SELECT reg_exp,
5751 ttrss_filter_types.name AS name,
5752 ttrss_filter_actions.name AS action,
5753 inverse,
5754 action_param,
5755 filter_param
8d505d78 5756 FROM ttrss_filters,ttrss_filter_types,ttrss_filter_actions WHERE
b8ffa322
AD
5757 enabled = true AND
5758 $ftype_query_part
5759 owner_uid = $owner_uid AND
5760 ttrss_filter_types.id = filter_type AND
5761 ttrss_filter_actions.id = action_id AND
5762 (feed_id IS NULL OR feed_id = '$feed') ORDER BY reg_exp");
8d505d78 5763
b8ffa322
AD
5764 while ($line = db_fetch_assoc($result)) {
5765 if (!$filters[$line["name"]]) $filters[$line["name"]] = array();
5766 $filter["reg_exp"] = $line["reg_exp"];
5767 $filter["action"] = $line["action"];
5768 $filter["action_param"] = $line["action_param"];
5769 $filter["filter_param"] = $line["filter_param"];
5770 $filter["inverse"] = sql_bool_to_bool($line["inverse"]);
8d505d78 5771
b8ffa322
AD
5772 array_push($filters[$line["name"]], $filter);
5773 }
5774
5775 if ($memcache) $memcache->add($obj_id, $filters, 0, 3600*8);
5776
5777 return $filters;
5778 }
fee840fb 5779 }
1e36af0c
AD
5780
5781 function get_score_pic($score) {
8d505d78
AD
5782 if ($score > 100) {
5783 return "score_high.png";
5784 } else if ($score > 0) {
883fee8d 5785 return "score_half_high.png";
1cce3aca 5786 } else if ($score < -100) {
883fee8d 5787 return "score_low.png";
1cce3aca 5788 } else if ($score < 0) {
883fee8d 5789 return "score_half_low.png";
8d505d78 5790 } else {
883fee8d 5791 return "score_neutral.png";
1e36af0c
AD
5792 }
5793 }
ec92c9d1 5794
0745839a 5795 function rounded_table_start($classname, $header = "&nbsp;") {
ec92c9d1 5796 print "<table width='100%' class='$classname' cellspacing='0' cellpadding='0'>";
74d5c8fa 5797 print "<tr><td class='c1'>&nbsp;</td><td class='top'>$header</td><td class='c2'>&nbsp;</td></tr>";
ec92c9d1
AD
5798 print "<tr><td class='left'>&nbsp;</td><td class='content'>";
5799 }
5800
0745839a 5801 function rounded_table_end($footer = "&nbsp;") {
ec92c9d1 5802 print "</td><td class='right'>&nbsp;</td></tr>";
74d5c8fa 5803 print "<tr><td class='c4'>&nbsp;</td><td class='bottom'>$footer</td><td class='c3'>&nbsp;</td></tr>";
ec92c9d1
AD
5804 print "</table>";
5805 }
5806
7defa089
AD
5807 function feed_has_icon($id) {
5808 return is_file(ICONS_DIR . "/$id.ico") && filesize(ICONS_DIR . "/$id.ico") > 0;
5809 }
f29ba148
AD
5810
5811 function init_connection($link) {
5812 if (DB_TYPE == "pgsql") {
6fc720fd 5813 pg_query($link, "set client_encoding = 'UTF-8'");
f29ba148 5814 pg_set_client_encoding("UNICODE");
045d0ab8 5815 pg_query($link, "set datestyle = 'ISO, european'");
324944f3 5816 pg_query($link, "set TIME ZONE 0");
f29ba148 5817 } else {
324944f3
AD
5818 db_query($link, "SET time_zone = '+0:0'");
5819
f29ba148
AD
5820 if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
5821 db_query($link, "SET NAMES " . MYSQL_CHARSET);
5822 // db_query($link, "SET CHARACTER SET " . MYSQL_CHARSET);
5823 }
5824 }
5825 }
5e96ca9d
AD
5826
5827 function update_feedbrowser_cache($link) {
5828
931dcbc1 5829 $result = db_query($link, "SELECT feed_url,title, COUNT(id) AS subscribers
8d505d78
AD
5830 FROM ttrss_feeds WHERE (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf
5831 WHERE tf.feed_url = ttrss_feeds.feed_url
5832 AND (private IS true OR feed_url LIKE '%:%@%/%'))
d460f7aa 5833 GROUP BY feed_url, title ORDER BY subscribers DESC LIMIT 1000");
8d505d78 5834
5e96ca9d 5835 db_query($link, "BEGIN");
8d505d78 5836
5e96ca9d 5837 db_query($link, "DELETE FROM ttrss_feedbrowser_cache");
8d505d78 5838
5e96ca9d 5839 $count = 0;
8d505d78 5840
5e96ca9d
AD
5841 while ($line = db_fetch_assoc($result)) {
5842 $subscribers = db_escape_string($line["subscribers"]);
5843 $feed_url = db_escape_string($line["feed_url"]);
931dcbc1
AD
5844 $title = db_escape_string($line["title"]);
5845
5846 $tmp_result = db_query($link, "SELECT subscribers FROM
5847 ttrss_feedbrowser_cache WHERE feed_url = '$feed_url'");
5848
5849 if (db_num_rows($tmp_result) == 0) {
5850
8d505d78
AD
5851 db_query($link, "INSERT INTO ttrss_feedbrowser_cache
5852 (feed_url, title, subscribers) VALUES ('$feed_url',
931dcbc1
AD
5853 '$title', '$subscribers')");
5854
5855 ++$count;
5856
5857 }
8d505d78 5858
5e96ca9d 5859 }
8d505d78 5860
5e96ca9d
AD
5861 db_query($link, "COMMIT");
5862
5863 return $count;
5864
5865 }
2627f2d0 5866
8a4c759e 5867 function ccache_zero($link, $feed_id, $owner_uid) {
2627f2d0
AD
5868 db_query($link, "UPDATE ttrss_counters_cache SET
5869 value = 0, updated = NOW() WHERE
5870 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
8a4c759e 5871 }
2627f2d0 5872
ad0056a8
AD
5873 function ccache_zero_all($link, $owner_uid) {
5874 db_query($link, "UPDATE ttrss_counters_cache SET
5875 value = 0 WHERE owner_uid = '$owner_uid'");
5876
5877 db_query($link, "UPDATE ttrss_cat_counters_cache SET
5878 value = 0 WHERE owner_uid = '$owner_uid'");
5879 }
5880
c7e51de1
AD
5881 function ccache_remove($link, $feed_id, $owner_uid, $is_cat = false) {
5882
5883 if (!$is_cat) {
5884 $table = "ttrss_counters_cache";
5885 } else {
5886 $table = "ttrss_cat_counters_cache";
5887 }
5888
5889 db_query($link, "DELETE FROM $table WHERE
5890 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
5891
5892 }
5893
5f4f7adf
AD
5894 function ccache_update_all($link, $owner_uid) {
5895
5896 if (get_pref($link, 'ENABLE_FEED_CATS', $owner_uid)) {
5897
5898 $result = db_query($link, "SELECT feed_id FROM ttrss_cat_counters_cache
5899 WHERE feed_id > 0 AND owner_uid = '$owner_uid'");
5900
5901 while ($line = db_fetch_assoc($result)) {
5902 ccache_update($link, $line["feed_id"], $owner_uid, true);
5903 }
5904
c5ffeb61
AD
5905 /* We have to manually include category 0 */
5906
5907 ccache_update($link, 0, $owner_uid, true);
5908
8a4c759e 5909 } else {
5f4f7adf
AD
5910 $result = db_query($link, "SELECT feed_id FROM ttrss_counters_cache
5911 WHERE feed_id > 0 AND owner_uid = '$owner_uid'");
8a4c759e 5912
5f4f7adf
AD
5913 while ($line = db_fetch_assoc($result)) {
5914 print ccache_update($link, $line["feed_id"], $owner_uid);
5915
5916 }
5917
5918 }
5919 }
2627f2d0 5920
8d505d78 5921 function ccache_find($link, $feed_id, $owner_uid, $is_cat = false,
6b49a3dd 5922 $no_update = false) {
8a4c759e 5923
5c432ba4
AD
5924 if (!is_numeric($feed_id)) return;
5925
8a4c759e
AD
5926 if (!$is_cat) {
5927 $table = "ttrss_counters_cache";
32d2181b 5928 if ($feed_id > 0) {
8d505d78 5929 $tmp_result = db_query($link, "SELECT owner_uid FROM ttrss_feeds
32d2181b
AD
5930 WHERE id = '$feed_id'");
5931 $owner_uid = db_fetch_result($tmp_result, 0, "owner_uid");
5932 }
8a4c759e
AD
5933 } else {
5934 $table = "ttrss_cat_counters_cache";
5935 }
5936
5937 if (DB_TYPE == "pgsql") {
5938 $date_qpart = "updated > NOW() - INTERVAL '15 minutes'";
5939 } else if (DB_TYPE == "mysql") {
5940 $date_qpart = "updated > DATE_SUB(NOW(), INTERVAL 15 MINUTE)";
5941 }
5942
5943 $result = db_query($link, "SELECT value FROM $table
8d505d78 5944 WHERE owner_uid = '$owner_uid' AND feed_id = '$feed_id'
37fb651d 5945 LIMIT 1");
2627f2d0
AD
5946
5947 if (db_num_rows($result) == 1) {
5948 return db_fetch_result($result, 0, "value");
5949 } else {
6b49a3dd
AD
5950 if ($no_update) {
5951 return -1;
5952 } else {
5953 return ccache_update($link, $feed_id, $owner_uid, $is_cat);
5954 }
2627f2d0
AD
5955 }
5956
5957 }
5958
8d505d78 5959 function ccache_update($link, $feed_id, $owner_uid, $is_cat = false,
6b49a3dd
AD
5960 $update_pcat = true) {
5961
5c432ba4
AD
5962 if (!is_numeric($feed_id)) return;
5963
32d2181b 5964 if (!$is_cat && $feed_id > 0) {
8d505d78 5965 $tmp_result = db_query($link, "SELECT owner_uid FROM ttrss_feeds
2e93b64c
AD
5966 WHERE id = '$feed_id'");
5967 $owner_uid = db_fetch_result($tmp_result, 0, "owner_uid");
5968 }
5969
43ead405
AD
5970 $prev_unread = ccache_find($link, $feed_id, $owner_uid, $is_cat, true);
5971
5972 /* When updating a label, all we need to do is recalculate feed counters
5973 * because labels are not cached */
c98e43db
AD
5974
5975 if ($feed_id < 0) {
43ead405
AD
5976 ccache_update_all($link, $owner_uid);
5977 return;
c98e43db
AD
5978 }
5979
8a4c759e
AD
5980 if (!$is_cat) {
5981 $table = "ttrss_counters_cache";
5982 } else {
5983 $table = "ttrss_cat_counters_cache";
5984 }
5985
b6d486a3 5986 if ($is_cat && $feed_id >= 0) {
37fb651d
AD
5987 if ($feed_id != 0) {
5988 $cat_qpart = "cat_id = '$feed_id'";
5989 } else {
5990 $cat_qpart = "cat_id IS NULL";
5991 }
5992
6b49a3dd
AD
5993 /* Recalculate counters for child feeds */
5994
5995 $result = db_query($link, "SELECT id FROM ttrss_feeds
5996 WHERE owner_uid = '$owner_uid' AND $cat_qpart");
5997
5998 while ($line = db_fetch_assoc($result)) {
5999 ccache_update($link, $line["id"], $owner_uid, false, false);
6000 }
6001
8d505d78
AD
6002 $result = db_query($link, "SELECT SUM(value) AS sv
6003 FROM ttrss_counters_cache, ttrss_feeds
6004 WHERE id = feed_id AND $cat_qpart AND
37fb651d
AD
6005 ttrss_feeds.owner_uid = '$owner_uid'");
6006
51e196de 6007 $unread = (int) db_fetch_result($result, 0, "sv");
37fb651d 6008
f55b0b12
AD
6009 } else {
6010 $unread = (int) getFeedArticles($link, $feed_id, $is_cat, true, $owner_uid);
37fb651d 6011 }
2627f2d0 6012
c7e51de1
AD
6013 db_query($link, "BEGIN");
6014
8a4c759e 6015 $result = db_query($link, "SELECT feed_id FROM $table
2627f2d0
AD
6016 WHERE owner_uid = '$owner_uid' AND feed_id = '$feed_id' LIMIT 1");
6017
6018 if (db_num_rows($result) == 1) {
8a4c759e 6019 db_query($link, "UPDATE $table SET
2627f2d0
AD
6020 value = '$unread', updated = NOW() WHERE
6021 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
6022
6023 } else {
8a4c759e 6024 db_query($link, "INSERT INTO $table
8d505d78
AD
6025 (feed_id, value, owner_uid, updated)
6026 VALUES
2627f2d0 6027 ($feed_id, $unread, $owner_uid, NOW())");
2627f2d0
AD
6028 }
6029
c7e51de1
AD
6030 db_query($link, "COMMIT");
6031
6b49a3dd 6032 if ($feed_id > 0 && $prev_unread != $unread) {
8a4c759e 6033
37fb651d 6034 if (!$is_cat) {
8a4c759e 6035
6b49a3dd 6036 /* Update parent category */
8a4c759e 6037
6b49a3dd 6038 if ($update_pcat) {
37fb651d 6039
6b49a3dd
AD
6040 $result = db_query($link, "SELECT cat_id FROM ttrss_feeds
6041 WHERE owner_uid = '$owner_uid' AND id = '$feed_id'");
8a4c759e 6042
6b49a3dd 6043 $cat_id = (int) db_fetch_result($result, 0, "cat_id");
37fb651d 6044
6b49a3dd 6045 ccache_update($link, $cat_id, $owner_uid, true);
6c2a9b9e 6046
6c2a9b9e 6047 }
8a4c759e 6048 }
5f4f7adf
AD
6049 } else if ($feed_id < 0) {
6050 ccache_update_all($link, $owner_uid);
8a4c759e
AD
6051 }
6052
6053 return $unread;
2627f2d0 6054 }
ceb30ba4
AD
6055
6056 function label_find_id($link, $label, $owner_uid) {
8d505d78
AD
6057 $result = db_query($link,
6058 "SELECT id FROM ttrss_labels2 WHERE caption = '$label'
ceb30ba4
AD
6059 AND owner_uid = '$owner_uid' LIMIT 1");
6060
6061 if (db_num_rows($result) == 1) {
6062 return db_fetch_result($result, 0, "id");
6063 } else {
6064 return 0;
6065 }
6066 }
6067
814bff66 6068 function get_article_labels($link, $id) {
d721a547
AD
6069 global $memcache;
6070
d721a547
AD
6071 $obj_id = md5("LABELS:$id:" . $_SESSION["uid"]);
6072
814bff66
AD
6073 $rv = array();
6074
d721a547
AD
6075 if ($memcache && $obj = $memcache->get($obj_id)) {
6076 return $obj;
6077 } else {
905ff52a
AD
6078
6079 $result = db_query($link, "SELECT label_cache FROM
6080 ttrss_user_entries WHERE ref_id = '$id' AND owner_uid = " .
6081 $_SESSION["uid"]);
6082
6083 $label_cache = db_fetch_result($result, 0, "label_cache");
6084
6085 if ($label_cache) {
6086
6087 $label_cache = json_decode($label_cache, true);
6088
6089 if ($label_cache["no-labels"] == 1)
6090 return $rv;
6091 else
6092 return $label_cache;
6093 }
6094
8d505d78
AD
6095 $result = db_query($link,
6096 "SELECT DISTINCT label_id,caption,fg_color,bg_color
6097 FROM ttrss_labels2, ttrss_user_labels2
6098 WHERE id = label_id
6099 AND article_id = '$id'
905ff52a
AD
6100 AND owner_uid = ".$_SESSION["uid"] . "
6101 ORDER BY caption");
6102
d721a547
AD
6103 while ($line = db_fetch_assoc($result)) {
6104 $rk = array($line["label_id"], $line["caption"], $line["fg_color"],
6105 $line["bg_color"]);
6106 array_push($rv, $rk);
6107 }
6108 if ($memcache) $memcache->add($obj_id, $rv, 0, 3600);
905ff52a 6109
8d505d78 6110 if (count($rv) > 0)
905ff52a
AD
6111 label_update_cache($link, $id, $rv);
6112 else
6113 label_update_cache($link, $id, array("no-labels" => 1));
814bff66
AD
6114 }
6115
6116 return $rv;
6117 }
6118
6119
b8a637f3 6120 function label_find_caption($link, $label, $owner_uid) {
8d505d78
AD
6121 $result = db_query($link,
6122 "SELECT caption FROM ttrss_labels2 WHERE id = '$label'
b8a637f3
AD
6123 AND owner_uid = '$owner_uid' LIMIT 1");
6124
6125 if (db_num_rows($result) == 1) {
6126 return db_fetch_result($result, 0, "caption");
6127 } else {
6128 return "";
6129 }
6130 }
6131
905ff52a
AD
6132 function label_update_cache($link, $id, $labels = false, $force = false) {
6133
6134 if ($force)
6135 label_clear_cache($link, $id);
6136
8d505d78 6137 if (!$labels)
905ff52a
AD
6138 $labels = get_article_labels($link, $id);
6139
6140 $labels = db_escape_string(json_encode($labels));
6141
6142 db_query($link, "UPDATE ttrss_user_entries SET
6143 label_cache = '$labels' WHERE ref_id = '$id'");
6144
6145 }
6146
6147 function label_clear_cache($link, $id) {
6148
6149 db_query($link, "UPDATE ttrss_user_entries SET
6150 label_cache = '' WHERE ref_id = '$id'");
6151
6152 }
6153
933ba4ee
AD
6154 function label_remove_article($link, $id, $label, $owner_uid) {
6155
6156 $label_id = label_find_id($link, $label, $owner_uid);
6157
6158 if (!$label_id) return;
6159
8d505d78 6160 $result = db_query($link,
933ba4ee 6161 "DELETE FROM ttrss_user_labels2
8d505d78 6162 WHERE
933ba4ee
AD
6163 label_id = '$label_id' AND
6164 article_id = '$id'");
905ff52a
AD
6165
6166 label_clear_cache($link, $id);
933ba4ee
AD
6167 }
6168
ceb30ba4
AD
6169 function label_add_article($link, $id, $label, $owner_uid) {
6170
d721a547
AD
6171 global $memcache;
6172
6173 if ($memcache) {
6174 $obj_id = md5("LABELS:$id:$owner_uid");
6175 $memcache->delete($obj_id);
6176 }
6177
ceb30ba4
AD
6178 $label_id = label_find_id($link, $label, $owner_uid);
6179
6180 if (!$label_id) return;
6181
8d505d78
AD
6182 $result = db_query($link,
6183 "SELECT
ceb30ba4 6184 article_id FROM ttrss_labels2, ttrss_user_labels2
8d505d78
AD
6185 WHERE
6186 label_id = id AND
ceb30ba4
AD
6187 label_id = '$label_id' AND
6188 article_id = '$id' AND owner_uid = '$owner_uid'
6189 LIMIT 1");
6190
6191 if (db_num_rows($result) == 0) {
8d505d78 6192 db_query($link, "INSERT INTO ttrss_user_labels2
ceb30ba4
AD
6193 (label_id, article_id) VALUES ('$label_id', '$id')");
6194 }
905ff52a 6195
8d505d78 6196 label_clear_cache($link, $id);
905ff52a 6197
ceb30ba4 6198 }
1380f8ee
AD
6199
6200 function label_remove($link, $id, $owner_uid) {
d721a547
AD
6201 global $memcache;
6202
905ff52a
AD
6203 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
6204
d721a547
AD
6205 if ($memcache) {
6206 $obj_id = md5("LABELS:$id:$owner_uid");
6207 $memcache->delete($obj_id);
6208 }
1380f8ee
AD
6209
6210 db_query($link, "BEGIN");
6211
6212 $result = db_query($link, "SELECT caption FROM ttrss_labels2
6213 WHERE id = '$id'");
6214
6215 $caption = db_fetch_result($result, 0, "caption");
6216
6217 $result = db_query($link, "DELETE FROM ttrss_labels2 WHERE id = '$id'
905ff52a 6218 AND owner_uid = " . $owner_uid);
1380f8ee
AD
6219
6220 if (db_affected_rows($link, $result) != 0 && $caption) {
6221
8801fb01
AD
6222 /* Remove access key for the label */
6223
6224 $ext_id = -11 - $id;
6225
6226 db_query($link, "DELETE FROM ttrss_access_keys WHERE
6227 feed_id = '$ext_id' AND owner_uid = $owner_uid");
6228
1380f8ee 6229 /* Disable filters that reference label being removed */
8d505d78 6230
1380f8ee
AD
6231 db_query($link, "UPDATE ttrss_filters SET
6232 enabled = false WHERE action_param = '$caption'
6233 AND action_id = 7
905ff52a
AD
6234 AND owner_uid = " . $owner_uid);
6235
6236 /* Remove cached data */
6237
6238 db_query($link, "UPDATE ttrss_user_entries SET label_cache = ''
6239 WHERE label_cache LIKE '%$caption%' AND owner_uid = " . $owner_uid);
6240
6241 }
1380f8ee
AD
6242
6243 db_query($link, "COMMIT");
6244 }
79c88e11 6245
6b2ee18d
AD
6246 function label_create($link, $caption) {
6247
6248 db_query($link, "BEGIN");
6249
6250 $result = false;
6251
6252 $result = db_query($link, "SELECT id FROM ttrss_labels2
6253 WHERE caption = '$caption' AND owner_uid = ". $_SESSION["uid"]);
6254
6255 if (db_num_rows($result) == 0) {
6256 $result = db_query($link,
8d505d78 6257 "INSERT INTO ttrss_labels2 (caption,owner_uid)
6b2ee18d
AD
6258 VALUES ('$caption', '".$_SESSION["uid"]."')");
6259
6260 $result = db_affected_rows($link, $result) != 0;
6261 }
6262
6263 db_query($link, "COMMIT");
6264
6265 return $result;
6266 }
6267
79c88e11 6268 function print_labels_headlines_dropdown($link, $feed_id) {
fcf70c51 6269 print "<option value=\"addLabel()\">".__("Create label...")."</option>";
79c88e11
AD
6270
6271 $result = db_query($link, "SELECT id, caption FROM ttrss_labels2 WHERE
6272 owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
6273
6274 while ($line = db_fetch_assoc($result)) {
6275
6276 $label_id = $line["id"];
6277 $label_caption = $line["caption"];
c3fddd05 6278 $id = $line["id"];
79c88e11
AD
6279
6280 if ($feed_id < -10 && $feed_id == -11-$label_id) {
8d505d78 6281 print "<option id=\"LHDL-$id\"
fcf70c51
AD
6282 value=\"selectionRemoveLabel($label_id)\">".
6283 __('Remove:') . " $label_caption</option>";
8d505d78
AD
6284 } else {
6285 print "<option id=\"LHDL-$id\"
fcf70c51
AD
6286 value=\"selectionAssignLabel($label_id)\">".
6287 __('Assign:') . " $label_caption</option>";
79c88e11
AD
6288 }
6289 }
6290 }
307d187c
AD
6291
6292 function format_tags_string($tags, $id) {
6293
6294 $tags_str = "";
6295 $tags_nolinks_str = "";
6296
6297 $num_tags = 0;
6298
dce46cad 6299/* if (get_user_theme($link) == "3pane") {
307d187c
AD
6300 $tag_limit = 3;
6301 } else {
6302 $tag_limit = 6;
d9084cf2
AD
6303 } */
6304
6305 $tag_limit = 6;
307d187c
AD
6306
6307 $formatted_tags = array();
6308
6309 foreach ($tags as $tag) {
6310 $num_tags++;
6311 $tag_escaped = str_replace("'", "\\'", $tag);
6312
275a0af2
AD
6313 if (mb_strlen($tag) > 30) {
6314 $tag = truncate_string($tag, 30);
6315 }
6316
307d187c
AD
6317 $tag_str = "<a href=\"javascript:viewfeed('$tag_escaped')\">$tag</a>";
6318
6319 array_push($formatted_tags, $tag_str);
275a0af2
AD
6320
6321 $tmp_tags_str = implode(", ", $formatted_tags);
8d505d78 6322
275a0af2 6323 if ($num_tags == $tag_limit || mb_strlen($tmp_tags_str) > 150) {
307d187c
AD
6324 break;
6325 }
6326 }
6327
6328 $tags_str = implode(", ", $formatted_tags);
6329
6330 if ($num_tags < count($tags)) {
6331 $tags_str .= ", &hellip;";
6332 }
6333
6334 if ($num_tags == 0) {
6335 $tags_str = __("no tags");
6336 }
6337
6338 return $tags_str;
6339
6340 }
2eb9c95c
AD
6341
6342 function format_article_labels($labels, $id) {
6343
6344 $labels_str = "";
6345
6346 foreach ($labels as $l) {
8d505d78 6347 $labels_str .= sprintf("<span class='hlLabelRef'
2eb9c95c
AD
6348 style='color : %s; background-color : %s'>%s</span>",
6349 $l[2], $l[3], $l[1]);
6350 }
6351
6352 return $labels_str;
6353
6354 }
c7e51de1
AD
6355
6356 function format_article_note($id, $note) {
6357
8d505d78 6358 $str = "<div class='articleNote' title=\"".__('edit note')."\"
741b6090 6359 onclick=\"editArticleNote($id)\">$note</div>";
c7e51de1
AD
6360
6361 return $str;
6362 }
7f969260 6363
fcf70c51 6364 function toggle_collapse_cat($link, $cat_id, $mode) {
7f969260 6365 if ($cat_id > 0) {
fcf70c51
AD
6366 $mode = bool_to_sql_bool($mode);
6367
7f969260 6368 db_query($link, "UPDATE ttrss_feed_categories SET
8d505d78 6369 collapsed = $mode WHERE id = '$cat_id' AND owner_uid = " .
7f969260
AD
6370 $_SESSION["uid"]);
6371 } else {
6372 $pref_name = '';
6373
6374 switch ($cat_id) {
6375 case -1:
6376 $pref_name = '_COLLAPSED_SPECIAL';
6377 break;
6378 case -2:
6379 $pref_name = '_COLLAPSED_LABELS';
6380 break;
6381 case 0:
6382 $pref_name = '_COLLAPSED_UNCAT';
6383 break;
6384 }
6385
6386 if ($pref_name) {
fcf70c51 6387 if ($mode) {
7f969260 6388 set_pref($link, $pref_name, 'true');
fcf70c51
AD
6389 } else {
6390 set_pref($link, $pref_name, 'false');
7f969260
AD
6391 }
6392 }
6393 }
6394 }
7e329f13
AD
6395
6396 function remove_feed($link, $id, $owner_uid) {
6397
6398 if ($id > 0) {
e04c18a2
AD
6399
6400 /* save starred articles in Archived feed */
6401
6402 db_query($link, "BEGIN");
6403
8056ec50
AD
6404 /* prepare feed if necessary */
6405
6406 $result = db_query($link, "SELECT id FROM ttrss_archived_feeds
6407 WHERE id = '$id'");
6408
6409 if (db_num_rows($result) == 0) {
8d505d78 6410 db_query($link, "INSERT INTO ttrss_archived_feeds
8056ec50
AD
6411 (id, owner_uid, title, feed_url, site_url)
6412 SELECT id, owner_uid, title, feed_url, site_url from ttrss_feeds
6413 WHERE id = '$id'");
6414 }
6415
74d22f0c 6416 db_query($link, "UPDATE ttrss_user_entries SET feed_id = NULL,
8d505d78 6417 orig_feed_id = '$id' WHERE feed_id = '$id' AND
e04c18a2
AD
6418 marked = true AND owner_uid = $owner_uid");
6419
8801fb01
AD
6420 /* Remove access key for the feed */
6421
6422 db_query($link, "DELETE FROM ttrss_access_keys WHERE
6423 feed_id = '$id' AND owner_uid = $owner_uid");
6424
e04c18a2
AD
6425 /* remove the feed */
6426
8d505d78 6427 db_query($link, "DELETE FROM ttrss_feeds
7e329f13
AD
6428 WHERE id = '$id' AND owner_uid = $owner_uid");
6429
e04c18a2
AD
6430 db_query($link, "COMMIT");
6431
69877646 6432/* if (file_exists(ICONS_DIR . "/$id.ico")) {
7e329f13 6433 unlink(ICONS_DIR . "/$id.ico");
69877646 6434 } */
7e329f13
AD
6435
6436 ccache_remove($link, $id, $owner_uid);
6437
6438 } else {
6439 label_remove($link, -11-$id, $owner_uid);
6440 ccache_remove($link, -11-$id, $owner_uid);
6441 }
6442 }
6443
5c7c7da9 6444 function add_feed_category($link, $feed_cat) {
c00907f2
AD
6445
6446 if (!$feed_cat) return false;
6447
5c7c7da9
AD
6448 db_query($link, "BEGIN");
6449
6450 $result = db_query($link,
6451 "SELECT id FROM ttrss_feed_categories
6452 WHERE title = '$feed_cat' AND owner_uid = ".$_SESSION["uid"]);
6453
6454 if (db_num_rows($result) == 0) {
8d505d78 6455
5c7c7da9 6456 $result = db_query($link,
8d505d78 6457 "INSERT INTO ttrss_feed_categories (owner_uid,title)
5c7c7da9
AD
6458 VALUES ('".$_SESSION["uid"]."', '$feed_cat')");
6459
6460 db_query($link, "COMMIT");
6461
6462 return true;
6463 }
6464
6465 return false;
8d505d78 6466 }
5c7c7da9 6467
7e329f13
AD
6468 function remove_feed_category($link, $id, $owner_uid) {
6469
6470 db_query($link, "DELETE FROM ttrss_feed_categories
6471 WHERE id = '$id' AND owner_uid = $owner_uid");
6472
6473 ccache_remove($link, $id, $owner_uid, true);
6474 }
6475
16fdac16
AD
6476 function archive_article($link, $id, $owner_uid) {
6477 db_query($link, "BEGIN");
6478
6479 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
6480 WHERE ref_id = '$id' AND owner_uid = $owner_uid");
6481
6482 if (db_num_rows($result) != 0) {
6483
6484 /* prepare the archived table */
6485
6486 $feed_id = (int) db_fetch_result($result, 0, "feed_id");
6487
6488 if ($feed_id) {
6489 $result = db_query($link, "SELECT id FROM ttrss_archived_feeds
6490 WHERE id = '$feed_id'");
6491
6492 if (db_num_rows($result) == 0) {
8d505d78 6493 db_query($link, "INSERT INTO ttrss_archived_feeds
16fdac16
AD
6494 (id, owner_uid, title, feed_url, site_url)
6495 SELECT id, owner_uid, title, feed_url, site_url from ttrss_feeds
6496 WHERE id = '$feed_id'");
6497 }
6498
8d505d78 6499 db_query($link, "UPDATE ttrss_user_entries
16fdac16
AD
6500 SET orig_feed_id = feed_id, feed_id = NULL
6501 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
6502 }
6503 }
6504
6505 db_query($link, "COMMIT");
6506 }
ab197ae1
AD
6507
6508 function getArticleFeed($link, $id) {
8d505d78 6509 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
a545dc31 6510 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
ab197ae1
AD
6511
6512 if (db_num_rows($result) != 0) {
6513 return db_fetch_result($result, 0, "feed_id");
6514 } else {
6515 return 0;
6516 }
6517 }
a5819bb3
AD
6518
6519 function make_url_from_parts($parts) {
6520 $url = $parts['scheme'] . '://' . $parts['host'];
6521
6522 if ($parts['path']) $url .= $parts['path'];
6523 if ($parts['query']) $url .= '?' . $parts['query'];
6524
6525 return $url;
6526 }
6527
f2c6c008
CW
6528 /**
6529 * Fixes incomplete URLs by prepending "http://".
f0266f51
CW
6530 * Also replaces feed:// with http://, and
6531 * prepends a trailing slash if the url is a domain name only.
f2c6c008
CW
6532 *
6533 * @param string $url Possibly incomplete URL
6534 *
6535 * @return string Fixed URL.
6536 */
6537 function fix_url($url) {
6538 if (strpos($url, '://') === false) {
6539 $url = 'http://' . $url;
f0266f51
CW
6540 } else if (substr($url, 0, 5) == 'feed:') {
6541 $url = 'http:' . substr($url, 5);
6542 }
6543
6544 //prepend slash if the URL has no slash in it
6545 // "http://www.example" -> "http://www.example/"
44453773 6546 if (strpos($url, '/', strpos($url, ':') + 3) === false) {
f0266f51 6547 $url .= '/';
f2c6c008 6548 }
ec39a02c
AD
6549
6550 if ($url != "http:///")
6551 return $url;
6552 else
6553 return '';
f2c6c008
CW
6554 }
6555
a5819bb3
AD
6556 function validate_feed_url($url) {
6557 $parts = parse_url($url);
6558
6559 return ($parts['scheme'] == 'http' || $parts['scheme'] == 'feed' || $parts['scheme'] == 'https');
6560
6561 }
d9084cf2 6562
be35798b
AD
6563 function get_article_enclosures($link, $id) {
6564
6565 global $memcache;
6566
8d505d78 6567 $query = "SELECT * FROM ttrss_enclosures
be35798b
AD
6568 WHERE post_id = '$id' AND content_url != ''";
6569
bd3f2ade 6570 $obj_id = md5("ENCLOSURES:$id");
be35798b
AD
6571
6572 $rv = array();
6573
bd3f2ade 6574 if ($memcache && $obj = $memcache->get($obj_id)) {
be35798b
AD
6575 $rv = $obj;
6576 } else {
6577 $result = db_query($link, $query);
6578
6579 if (db_num_rows($result) > 0) {
6580 while ($line = db_fetch_assoc($result)) {
6581 array_push($rv, $line);
6582 }
bd3f2ade 6583 if ($memcache) $memcache->add($obj_id, $rv, 0, 3600);
be35798b
AD
6584 }
6585 }
6586
6587 return $rv;
6588 }
6589
911d4c08 6590 function api_get_feeds($link, $cat_id, $unread_only, $limit, $offset) {
911d4c08
AD
6591
6592 $feeds = array();
6593
911d4c08
AD
6594 /* Labels */
6595
fb8d17f3 6596 if ($cat_id == -4 || $cat_id == -2) {
911d4c08
AD
6597 $counters = getLabelCounters($link, true);
6598
11232703 6599 foreach (array_values($counters) as $cv) {
911d4c08 6600
11232703 6601 $unread = $cv["counter"];
8d505d78 6602
911d4c08 6603 if ($unread || !$unread_only) {
8d505d78 6604
911d4c08 6605 $row = array(
11232703
AD
6606 "id" => $cv["id"],
6607 "title" => $cv["description"],
6608 "unread" => $cv["counter"],
911d4c08
AD
6609 "cat_id" => -2,
6610 );
8d505d78 6611
911d4c08
AD
6612 array_push($feeds, $row);
6613 }
6614 }
6615 }
6616
6617 /* Virtual feeds */
6618
fb8d17f3 6619 if ($cat_id == -4 || $cat_id == -1) {
911d4c08
AD
6620 foreach (array(-1, -2, -3, -4, 0) as $i) {
6621 $unread = getFeedUnread($link, $i);
6622
6623 if ($unread || !$unread_only) {
6624 $title = getFeedTitle($link, $i);
6625
6626 $row = array(
6627 "id" => $i,
6628 "title" => $title,
6629 "unread" => $unread,
6630 "cat_id" => -1,
6631 );
6632 array_push($feeds, $row);
6633 }
6634
8d505d78 6635 }
911d4c08 6636 }
b41c2549
AD
6637
6638 /* Real feeds */
6639
6640 if ($limit) {
6641 $limit_qpart = "LIMIT $limit OFFSET $offset";
6642 } else {
6643 $limit_qpart = "";
6644 }
6645
fb8d17f3 6646 if ($cat_id == -4 || $cat_id == -3) {
8d505d78 6647 $result = db_query($link, "SELECT
b41c2549
AD
6648 id, feed_url, cat_id, title, ".
6649 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
8d505d78 6650 FROM ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"] .
b41c2549
AD
6651 " ORDER BY cat_id, title " . $limit_qpart);
6652 } else {
fb8d17f3
AD
6653
6654 if ($cat_id)
6655 $cat_qpart = "cat_id = '$cat_id'";
6656 else
6657 $cat_qpart = "cat_id IS NULL";
6658
8d505d78 6659 $result = db_query($link, "SELECT
b41c2549
AD
6660 id, feed_url, cat_id, title, ".
6661 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
8d505d78
AD
6662 FROM ttrss_feeds WHERE
6663 $cat_qpart AND owner_uid = " . $_SESSION["uid"] .
b41c2549
AD
6664 " ORDER BY cat_id, title " . $limit_qpart);
6665 }
6666
6667 while ($line = db_fetch_assoc($result)) {
6668
6669 $unread = getFeedUnread($link, $line["id"]);
6670
6671 $has_icon = feed_has_icon($line['id']);
6672
6673 if ($unread || !$unread_only) {
6674
6675 $row = array(
6676 "feed_url" => $line["feed_url"],
6677 "title" => $line["title"],
6678 "id" => (int)$line["id"],
6679 "unread" => (int)$unread,
6680 "has_icon" => $has_icon,
6681 "cat_id" => (int)$line["cat_id"],
6682 "last_updated" => strtotime($line["last_updated"])
6683 );
8d505d78 6684
b41c2549
AD
6685 array_push($feeds, $row);
6686 }
6687 }
6688
911d4c08
AD
6689 return $feeds;
6690 }
6691
6692 function api_get_headlines($link, $feed_id, $limit, $offset,
6693 $filter, $is_cat, $show_excerpt, $show_content, $view_mode, $order) {
6694
6695 /* do not rely on params below */
6696
6697 $search = db_escape_string($_REQUEST["search"]);
6698 $search_mode = db_escape_string($_REQUEST["search_mode"]);
6699 $match_on = db_escape_string($_REQUEST["match_on"]);
8d505d78
AD
6700
6701 $qfh_ret = queryFeedHeadlines($link, $feed_id, $limit,
911d4c08
AD
6702 $view_mode, $is_cat, $search, $search_mode, $match_on,
6703 $order, $offset);
6704
6705 $result = $qfh_ret[0];
6706 $feed_title = $qfh_ret[1];
6707
6708 $headlines = array();
6709
6710 while ($line = db_fetch_assoc($result)) {
8d505d78 6711 $is_updated = ($line["last_read"] == "" &&
911d4c08
AD
6712 ($line["unread"] != "t" && $line["unread"] != "1"));
6713
6714 $headline_row = array(
6715 "id" => (int)$line["id"],
6716 "unread" => sql_bool_to_bool($line["unread"]),
6717 "marked" => sql_bool_to_bool($line["marked"]),
9ed133e7 6718 "published" => sql_bool_to_bool($line["published"]),
911d4c08
AD
6719 "updated" => strtotime($line["updated"]),
6720 "is_updated" => $is_updated,
6721 "title" => $line["title"],
6722 "link" => $line["link"],
6723 "feed_id" => $line["feed_id"],
78ac6caf 6724 "tags" => get_article_tags($link, $line["id"]),
911d4c08
AD
6725 );
6726
6727 if ($show_excerpt) {
6728 $excerpt = truncate_string(strip_tags($line["content_preview"]), 100);
6729 $headline_row["excerpt"] = $excerpt;
6730 }
6731
6732 if ($show_content) {
6733 $headline_row["content"] = $line["content_preview"];
6734 }
6735
6736 array_push($headlines, $headline_row);
6737 }
6738
6739 return $headlines;
6740 }
6741
bd202c3f
AD
6742 function generate_error_feed($link, $error) {
6743 $reply = array();
6744
6745 $reply['headlines']['id'] = -6;
6746 $reply['headlines']['is_cat'] = false;
6747
6748 $reply['headlines']['toolbar'] = '';
6749 $reply['headlines']['content'] = "<div class='whiteBox'>". $error . "</div>";
6750
6751 $reply['headlines-info'] = array("count" => 0,
6752 "vgroup_last_feed" => '',
6753 "unread" => 0,
6754 "disable_cache" => true);
6755
6756 return $reply;
6757 }
fe1087fb 6758
13e785e0 6759
bd202c3f
AD
6760 function generate_dashboard_feed($link) {
6761 $reply = array();
6762
6763 $reply['headlines']['id'] = -5;
6764 $reply['headlines']['is_cat'] = false;
fe1087fb 6765
bd202c3f
AD
6766 $reply['headlines']['toolbar'] = '';
6767 $reply['headlines']['content'] = "<div class='whiteBox'>".__('No feed selected.');
fe1087fb 6768
bd202c3f 6769 $reply['headlines']['content'] .= "<p class=\"small\"><span class=\"insensitive\">";
5d128c95
AD
6770
6771 $result = db_query($link, "SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
6772 WHERE owner_uid = " . $_SESSION['uid']);
6773
6774 $last_updated = db_fetch_result($result, 0, "last_updated");
324944f3 6775 $last_updated = make_local_datetime($link, $last_updated, false);
5d128c95 6776
bd202c3f 6777 $reply['headlines']['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
5d128c95 6778
fe1087fb
AD
6779 $result = db_query($link, "SELECT COUNT(id) AS num_errors
6780 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
6781
6782 $num_errors = db_fetch_result($result, 0, "num_errors");
6783
6784 if ($num_errors > 0) {
bd202c3f
AD
6785 $reply['headlines']['content'] .= "<br/>";
6786 $reply['headlines']['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
fe1087fb
AD
6787 __('Some feeds have update errors (click for details)')."</a>";
6788 }
bd202c3f 6789 $reply['headlines']['content'] .= "</span></p>";
fe1087fb 6790
bd202c3f 6791 $reply['headlines-info'] = array("count" => 0,
ffbe082d
AD
6792 "vgroup_last_feed" => '',
6793 "unread" => 0,
6794 "disable_cache" => true);
6795
bd202c3f 6796 return $reply;
fe1087fb 6797 }
31a53903
AD
6798
6799 function save_email_address($link, $email) {
6800 // FIXME: implement persistent storage of emails
6801
8d505d78 6802 if (!$_SESSION['stored_emails'])
31a53903
AD
6803 $_SESSION['stored_emails'] = array();
6804
6805 if (!in_array($email, $_SESSION['stored_emails']))
6806 array_push($_SESSION['stored_emails'], $email);
6807 }
8801fb01
AD
6808
6809 function update_feed_access_key($link, $feed_id, $is_cat, $owner_uid = false) {
6810 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
6811
6812 $sql_is_cat = bool_to_sql_bool($is_cat);
6813
8d505d78
AD
6814 $result = db_query($link, "SELECT access_key FROM ttrss_access_keys
6815 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
8801fb01
AD
6816 AND owner_uid = " . $owner_uid);
6817
6818 if (db_num_rows($result) == 1) {
6819 $key = db_escape_string(sha1(uniqid(rand(), true)));
6820
6821 db_query($link, "UPDATE ttrss_access_keys SET access_key = '$key'
8d505d78 6822 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
8801fb01
AD
6823 AND owner_uid = " . $owner_uid);
6824
6825 return $key;
6826
6827 } else {
6828 return get_feed_access_key($link, $feed_id, $is_cat, $owner_uid);
6829 }
6830 }
6831
6832 function get_feed_access_key($link, $feed_id, $is_cat, $owner_uid = false) {
6833
6834 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
6835
6836 $sql_is_cat = bool_to_sql_bool($is_cat);
6837
8d505d78
AD
6838 $result = db_query($link, "SELECT access_key FROM ttrss_access_keys
6839 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
8801fb01
AD
6840 AND owner_uid = " . $owner_uid);
6841
6842 if (db_num_rows($result) == 1) {
6843 return db_fetch_result($result, 0, "access_key");
6844 } else {
6845 $key = db_escape_string(sha1(uniqid(rand(), true)));
6846
8d505d78 6847 $result = db_query($link, "INSERT INTO ttrss_access_keys
8801fb01
AD
6848 (access_key, feed_id, is_cat, owner_uid)
6849 VALUES ('$key', '$feed_id', $sql_is_cat, '$owner_uid')");
6850
6851 return $key;
6852 }
6853 return false;
6854 }
f0266f51
CW
6855
6856 /**
6857 * Extracts RSS/Atom feed URLs from the given HTML URL.
6858 *
6859 * @param string $url HTML page URL
6860 *
6861 * @return array Array of feeds. Key is the full URL, value the title
6862 */
8d505d78 6863 function get_feeds_from_html($url, $login = false, $pass = false)
f0266f51
CW
6864 {
6865 $url = fix_url($url);
6866 $baseUrl = substr($url, 0, strrpos($url, '/') + 1);
6867
fb074239
AD
6868 libxml_use_internal_errors(true);
6869
8d505d78
AD
6870 $content = @fetch_file_contents($url, false, $login, $pass);
6871
f0266f51 6872 $doc = new DOMDocument();
8d505d78 6873 $doc->loadHTML($content);
f0266f51
CW
6874 $xpath = new DOMXPath($doc);
6875 $entries = $xpath->query('/html/head/link[@rel="alternate"]');
6876 $feedUrls = array();
6877 foreach ($entries as $entry) {
6878 if ($entry->hasAttribute('href')) {
6879 $title = $entry->getAttribute('title');
6880 if ($title == '') {
6881 $title = $entry->getAttribute('type');
6882 }
923818fc
CW
6883 $feedUrl = rewrite_relative_url(
6884 $baseUrl, $entry->getAttribute('href')
6885 );
f0266f51
CW
6886 $feedUrls[$feedUrl] = $title;
6887 }
6888 }
6889 return $feedUrls;
6890 }
6891
f33479da
CW
6892 /**
6893 * Checks if the content behind the given URL is a HTML file
6894 *
6895 * @param string $url URL to check
6896 *
6897 * @return boolean True if the URL contains HTML content
6898 */
8d505d78
AD
6899 function url_is_html($url, $login = false, $pass = false) {
6900 $content = substr(fetch_file_contents($url, false, $login, $pass), 0, 1000);
6901
24eb4c78
CW
6902 if (stripos($content, '<html>') === false
6903 && stripos($content, '<html ') === false
f33479da
CW
6904 ) {
6905 return false;
6906 }
6907
6908 return true;
6909 }
24e2bb3a 6910
d90868d7 6911 function print_label_select($link, $name, $value, $attributes = "") {
24e2bb3a
AD
6912
6913 $result = db_query($link, "SELECT caption FROM ttrss_labels2
6914 WHERE owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
6915
8d505d78 6916 print "<select default=\"$value\" name=\"" . htmlspecialchars($name) .
d90868d7 6917 "\" $attributes onchange=\"labelSelectOnChange(this)\" >";
24e2bb3a
AD
6918
6919 while ($line = db_fetch_assoc($result)) {
6920
6921 $issel = ($line["caption"] == $value) ? "selected=\"1\"" : "";
6922
d90868d7
AD
6923 print "<option value=\"".htmlspecialchars($line["caption"])."\"
6924 $issel>" . htmlspecialchars($line["caption"]) . "</option>";
24e2bb3a
AD
6925
6926 }
6927
d90868d7 6928# print "<option value=\"ADD_LABEL\">" .__("Add label...") . "</option>";
24e2bb3a
AD
6929
6930 print "</select>";
6931
6932
6933 }
6934
009646d2 6935 function format_article_enclosures($link, $id, $always_display_enclosures,
dad14b51
AD
6936 $article_content) {
6937
6938 $result = get_article_enclosures($link, $id);
009646d2 6939 $rv = '';
8d505d78 6940
dad14b51 6941 if (count($result) > 0) {
8d505d78 6942
dad14b51
AD
6943 $entries_html = array();
6944 $entries = array();
8d505d78 6945
dad14b51 6946 foreach ($result as $line) {
8d505d78 6947
dad14b51
AD
6948 $url = $line["content_url"];
6949 $ctype = $line["content_type"];
8d505d78 6950
dad14b51 6951 if (!$ctype) $ctype = __("unknown type");
8d505d78 6952
c3edc667 6953# $filename = substr($url, strrpos($url, "/")+1);
8d505d78 6954
dad14b51 6955 $entry = format_inline_player($link, $url, $ctype);
8d505d78 6956
c3edc667
AD
6957# $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
6958# $filename . " (" . $ctype . ")" . "</a>";
8d505d78 6959
dad14b51 6960 array_push($entries_html, $entry);
8d505d78 6961
dad14b51 6962 $entry = array();
8d505d78 6963
dad14b51
AD
6964 $entry["type"] = $ctype;
6965 $entry["filename"] = $filename;
6966 $entry["url"] = $url;
8d505d78 6967
dad14b51
AD
6968 array_push($entries, $entry);
6969 }
8d505d78 6970
009646d2 6971 $rv .= "<div class=\"postEnclosures\">";
8d505d78 6972
dad14b51
AD
6973 if (!get_pref($link, "STRIP_IMAGES")) {
6974 if ($always_display_enclosures ||
6975 !preg_match("/<img/i", $article_content)) {
8d505d78 6976
dad14b51 6977 foreach ($entries as $entry) {
8d505d78 6978
dad14b51
AD
6979 if (preg_match("/image/", $entry["type"]) ||
6980 preg_match("/\.(jpg|png|gif|bmp)/i", $entry["filename"])) {
8d505d78 6981
009646d2 6982 $rv .= "<p><img
dad14b51
AD
6983 alt=\"".htmlspecialchars($entry["filename"])."\"
6984 src=\"" .htmlspecialchars($entry["url"]) . "\"/></p>";
6985 }
6986 }
6987 }
6988 }
8d505d78 6989
905ff52a 6990 if (count($entries) == 1) {
009646d2 6991 $rv .= __("Attachment:") . " ";
dad14b51 6992 } else {
009646d2 6993 $rv .= __("Attachments:") . " ";
dad14b51 6994 }
8d505d78 6995
009646d2 6996 $rv .= join(", ", $entries_html);
8d505d78 6997
009646d2 6998 $rv .= "</div>";
dad14b51 6999 }
009646d2
AD
7000
7001 return $rv;
dad14b51
AD
7002 }
7003
f8fb4498
AD
7004 function getLastArticleId($link) {
7005 $result = db_query($link, "SELECT MAX(ref_id) AS id FROM ttrss_user_entries
7006 WHERE owner_uid = " . $_SESSION["uid"]);
7007
7008 if (db_num_rows($result) == 1) {
7009 return db_fetch_result($result, 0, "id");
7010 } else {
7011 return -1;
7012 }
7013 }
8cc3c778
AD
7014
7015 function build_url($parts) {
7016 return $parts['scheme'] . "://" . $parts['host'] . $parts['path'];
7017 }
7018
f679105c
CW
7019 /**
7020 * Converts a (possibly) relative URL to a absolute one.
7021 *
7022 * @param string $url Base URL (i.e. from where the document is)
7023 * @param string $rel_url Possibly relative URL in the document
7024 *
7025 * @return string Absolute URL
7026 */
8cc3c778
AD
7027 function rewrite_relative_url($url, $rel_url) {
7028 if (strpos($rel_url, "://") !== false) {
7029 return $rel_url;
8d505d78 7030 } else if (strpos($rel_url, "/") === 0)
8cc3c778
AD
7031 {
7032 $parts = parse_url($url);
7033 $parts['path'] = $rel_url;
7034
7035 return build_url($parts);
7036
7037 } else {
7038 $parts = parse_url($url);
f679105c
CW
7039 if (!isset($parts['path'])) {
7040 $parts['path'] = '/';
7041 }
7042 $dir = $parts['path'];
7043 if (substr($dir, -1) !== '/') {
7044 $dir = dirname($parts['path']);
7045 $dir !== '/' && $dir .= '/';
7046 }
7047 $parts['path'] = $dir . $rel_url;
8cc3c778
AD
7048
7049 return build_url($parts);
7050 }
7051 }
7052
e4f7f8df
AD
7053 function sphinx_search($query, $offset = 0, $limit = 30) {
7054 $sphinxClient = new SphinxClient();
7055
7056 $sphinxClient->SetServer('localhost', 9312);
7057 $sphinxClient->SetConnectTimeout(1);
7058
8d505d78 7059 $sphinxClient->SetFieldWeights(array('title' => 70, 'content' => 30,
e4f7f8df
AD
7060 'feed_title' => 20));
7061
7062 $sphinxClient->SetMatchMode(SPH_MATCH_EXTENDED2);
7063 $sphinxClient->SetRankingMode(SPH_RANK_PROXIMITY_BM25);
7064 $sphinxClient->SetLimits($offset, $limit, 1000);
7065 $sphinxClient->SetArrayResult(false);
7066 $sphinxClient->SetFilter('owner_uid', array($_SESSION['uid']));
8d505d78 7067
e4f7f8df
AD
7068 $result = $sphinxClient->Query($query, SPHINX_INDEX);
7069
7070 $ids = array();
7071
7072 if (is_array($result['matches'])) {
7073 foreach (array_keys($result['matches']) as $int_id) {
7074 $ref_id = $result['matches'][$int_id]['attrs']['ref_id'];
7075 array_push($ids, $ref_id);
7076 }
7077 }
7078
7079 return $ids;
7080 }
7081
868650e4
AD
7082 function cleanup_tags($link, $days = 14, $limit = 1000) {
7083
7084 if (DB_TYPE == "pgsql") {
7085 $interval_query = "date_updated < NOW() - INTERVAL '$days days'";
7086 } else if (DB_TYPE == "mysql") {
7087 $interval_query = "date_updated < DATE_SUB(NOW(), INTERVAL $days DAY)";
7088 }
7089
b5ec13fa 7090 $tags_deleted = 0;
868650e4 7091
b5ec13fa
AD
7092 while ($limit > 0) {
7093 $limit_part = 500;
7094
8d505d78
AD
7095 $query = "SELECT ttrss_tags.id AS id
7096 FROM ttrss_tags, ttrss_user_entries, ttrss_entries
b5ec13fa
AD
7097 WHERE post_int_id = int_id AND $interval_query AND
7098 ref_id = ttrss_entries.id AND tag_cache != '' LIMIT $limit_part";
8d505d78 7099
b5ec13fa
AD
7100 $result = db_query($link, $query);
7101
7102 $ids = array();
7103
7104 while ($line = db_fetch_assoc($result)) {
7105 array_push($ids, $line['id']);
7106 }
7107
7108 if (count($ids) > 0) {
7109 $ids = join(",", $ids);
7110 print ".";
7111
7112 $tmp_result = db_query($link, "DELETE FROM ttrss_tags WHERE id IN ($ids)");
7113 $tags_deleted += db_affected_rows($link, $tmp_result);
7114 } else {
7115 break;
7116 }
7117
7118 $limit -= $limit_part;
7119 }
7120
7121 print "\n";
868650e4 7122
b5ec13fa 7123 return $tags_deleted;
868650e4
AD
7124 }
7125
13e785e0
AD
7126 function feedlist_init_cat($link, $cat_id, $hidden = false) {
7127 $obj = array();
db34e084 7128 $cat_id = (int) $cat_id;
13e785e0
AD
7129
7130 if ($cat_id > 0) {
7131 $cat_unread = ccache_find($link, $cat_id, $_SESSION["uid"], true);
7132 } else if ($cat_id == 0 || $cat_id == -2) {
7133 $cat_unread = getCategoryUnread($link, $cat_id);
7134 }
7135
1985a5e0 7136 $obj['id'] = 'CAT:' . $cat_id;
13e785e0
AD
7137 $obj['items'] = array();
7138 $obj['name'] = getCategoryTitle($link, $cat_id);
7139 $obj['type'] = 'feed';
7140 $obj['unread'] = (int) $cat_unread;
7141 $obj['hidden'] = $hidden;
1985a5e0 7142 $obj['bare_id'] = $cat_id;
13e785e0
AD
7143
7144 return $obj;
7145 }
7146
fcf70c51 7147 function feedlist_init_feed($link, $feed_id, $title = false, $unread = false, $error = '', $updated = '') {
13e785e0 7148 $obj = array();
1985a5e0 7149 $feed_id = (int) $feed_id;
13e785e0 7150
8d505d78 7151 if (!$title)
13e785e0
AD
7152 $title = getFeedTitle($link, $feed_id, false);
7153
cd1bb36d 7154 if ($unread === false)
13e785e0
AD
7155 $unread = getFeedUnread($link, $feed_id, false);
7156
7157 $obj['id'] = 'FEED:' . $feed_id;
7158 $obj['name'] = $title;
7159 $obj['unread'] = (int) $unread;
7160 $obj['type'] = 'feed';
fcf70c51
AD
7161 $obj['error'] = $error;
7162 $obj['updated'] = $updated;
2ef5c21f 7163 $obj['icon'] = getFeedIcon($feed_id);
1985a5e0 7164 $obj['bare_id'] = $feed_id;
13e785e0
AD
7165
7166 return $obj;
7167 }
7168
54a3dd8d 7169
57e24c82 7170 function fetch_twitter_rss($link, $url, $owner_uid) {
8d505d78 7171 $result = db_query($link, "SELECT twitter_oauth FROM ttrss_users
57e24c82
AD
7172 WHERE id = $owner_uid");
7173
7174 $access_token = json_decode(db_fetch_result($result, 0, 'twitter_oauth'), true);
54a3dd8d 7175 $url_escaped = db_escape_string($url);
57e24c82
AD
7176
7177 if ($access_token) {
57e24c82 7178
54a3dd8d
AD
7179 $tmhOAuth = new tmhOAuth(array(
7180 'consumer_key' => CONSUMER_KEY,
7181 'consumer_secret' => CONSUMER_SECRET,
7182 'user_token' => $access_token['oauth_token'],
7183 'user_secret' => $access_token['oauth_token_secret'],
7184 ));
7185
7186 $code = $tmhOAuth->request('GET', $url);
7187
7188 if ($code == 200) {
7189
7190 $content = $tmhOAuth->response['response'];
7191
5ab9791f
AD
7192 define('MAGPIE_CACHE_ON', false);
7193
8d505d78 7194 $rss = new MagpieRSS($content, MAGPIE_OUTPUT_ENCODING,
54a3dd8d
AD
7195 MAGPIE_INPUT_ENCODING, MAGPIE_DETECT_ENCODING );
7196
7197 return $rss;
7198
7199 } else {
7200
8d505d78 7201 db_query($link, "UPDATE ttrss_feeds
54a3dd8d
AD
7202 SET last_error = 'OAuth authorization failed ($code).'
7203 WHERE feed_url = '$url_escaped' AND owner_uid = $owner_uid");
7204 }
57e24c82 7205
57e24c82 7206 } else {
54a3dd8d 7207
8d505d78 7208 db_query($link, "UPDATE ttrss_feeds
54a3dd8d 7209 SET last_error = 'OAuth information not found.'
dc891b12 7210 WHERE feed_url = '$url_escaped' AND owner_uid = $owner_uid");
54a3dd8d 7211
57e24c82
AD
7212 return false;
7213 }
7214 }
7215
88e4e597
AD
7216 function print_user_stylesheet($link) {
7217 $value = get_pref($link, 'USER_STYLESHEET');
7218
7219 if ($value) {
7220 print "<style type=\"text/css\">";
5823f9fb 7221 print str_replace("<br/>", "\n", $value);
88e4e597
AD
7222 print "</style>";
7223 }
7224
7225 }
7226
533c0ea6
AD
7227 function rewrite_urls($line) {
7228 global $url_regex;
7229
7230 $urls = null;
7231
8d505d78 7232 $result = preg_replace("/((?<!=.)((http|https|ftp)+):\/\/[^ ,!]+)/i",
533c0ea6
AD
7233 "<a target=\"_blank\" href=\"\\1\">\\1</a>", $line);
7234
7235 return $result;
7236 }
7237
40d13c28 7238?>