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