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