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