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