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