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