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