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