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