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