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