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