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