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