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