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