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