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