]> git.wh0rd.org - tt-rss.git/blame - functions.php
update translations
[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
f8c612d4 11 function get_translations() {
6a214f92 12 $tr = array(
019bd5a9 13 "auto" => "Detect automatically",
6a214f92
AD
14 "en_US" => "English",
15 "fr_FR" => "Français",
16 "ru_RU" => "Русский",
17 "zh_CN" => "Simplified Chinese");
f8c612d4
AD
18
19 return $tr;
20 }
21
8d039718 22 if (ENABLE_TRANSLATIONS == true) {
865220a4
AD
23 require_once "accept-to-gettext.php";
24 require_once "gettext/gettext.inc";
aba609e0 25
8d039718
AD
26 function startup_gettext() {
27
28 # Get locale from Accept-Language header
6a214f92 29 $lang = al2gt(array_keys(get_translations()), "text/html");
89cb787e
AD
30
31 if (defined('_TRANSLATION_OVERRIDE_DEFAULT')) {
32 $lang = _TRANSLATION_OVERRIDE_DEFAULT;
33 }
34
672f3f3c 35 if ($_COOKIE["ttrss_lang"] && $_COOKIE["ttrss_lang"] != "auto") {
68659d98
AD
36 $lang = $_COOKIE["ttrss_lang"];
37 }
38
8d039718
AD
39 if ($lang) {
40 _setlocale(LC_MESSAGES, $lang);
41 _bindtextdomain("messages", "locale");
42 _textdomain("messages");
43 _bind_textdomain_codeset("messages", "UTF-8");
44 }
aba609e0 45 }
aba609e0 46
cc17c205 47 startup_gettext();
865220a4
AD
48
49 } else {
50 function __($msg) {
51 return $msg;
52 }
53 function startup_gettext() {
54 // no-op
55 return true;
56 }
cc17c205
AD
57 }
58
b619ff15 59 require_once 'db-prefs.php';
5bc0bd27 60 require_once 'compat.php';
af106b0e 61 require_once 'errors.php';
8911ac8b 62 require_once 'version.php';
40d13c28 63
49f9c923 64 define('MAGPIE_USER_AGENT_EXT', ' (Tiny Tiny RSS/' . VERSION . ')');
a3ee2a38
AD
65 define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');
66
49f9c923
AD
67 require_once "magpierss/rss_fetch.inc";
68 require_once 'magpierss/rss_utils.inc';
69
f738aef1
AD
70 include_once "tw/tw-config.php";
71 include_once "tw/tw.php";
72 include_once TW_SETUP . "paranoya.php";
73
74 $tw_parser = new twParser();
75
6f9e33e4
AD
76 function _debug($msg) {
77 $ts = strftime("%H:%M:%S", time());
78 print "[$ts] $msg\n";
79 }
80
ad507f85
AD
81 function purge_feed($link, $feed_id, $purge_interval, $debug = false) {
82
83 $rows = -1;
4c193675 84
fefa6ca3 85 if (DB_TYPE == "pgsql") {
44e241cb 86/* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
fefa6ca3 87 marked = false AND feed_id = '$feed_id' AND
35d8cf43 88 (SELECT date_entered FROM ttrss_entries WHERE
44e241cb
AD
89 id = ref_id) < NOW() - INTERVAL '$purge_interval days'"); */
90
6e7f8d26
AD
91 $pg_version = get_pgsql_version($link);
92
93 if (preg_match("/^7\./", $pg_version) || preg_match("/^8\.0/", $pg_version)) {
1e59ae35
AD
94
95 $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
96 ttrss_entries.id = ref_id AND
97 marked = false AND
98 feed_id = '$feed_id' AND
99 ttrss_entries.date_entered < NOW() - INTERVAL '$purge_interval days'");
100
101 } else {
102
103 $result = db_query($link, "DELETE FROM ttrss_user_entries
104 USING ttrss_entries
105 WHERE ttrss_entries.id = ref_id AND
106 marked = false AND
107 feed_id = '$feed_id' AND
fc774155 108 ttrss_entries.date_entered < NOW() - INTERVAL '$purge_interval days'");
1e59ae35 109 }
ad507f85
AD
110
111 $rows = pg_affected_rows($result);
112
fefa6ca3 113 } else {
1e59ae35 114
30f1746f 115/* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
fefa6ca3 116 marked = false AND feed_id = '$feed_id' AND
35d8cf43 117 (SELECT date_entered FROM ttrss_entries WHERE
30f1746f
AD
118 id = ref_id) < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)"); */
119
120 $result = db_query($link, "DELETE FROM ttrss_user_entries
121 USING ttrss_user_entries, ttrss_entries
122 WHERE ttrss_entries.id = ref_id AND
123 marked = false AND
124 feed_id = '$feed_id' AND
125 ttrss_entries.date_entered < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)");
126
ad507f85
AD
127 $rows = mysql_affected_rows($link);
128
129 }
130
131 if ($debug) {
6f9e33e4 132 _debug("Purged feed $feed_id ($purge_interval): deleted $rows articles");
fefa6ca3
AD
133 }
134 }
135
44e241cb
AD
136 function global_purge_old_posts($link, $do_output = false, $limit = false) {
137
894ebcf5 138 $random_qpart = sql_random_function();
fefa6ca3 139
44e241cb
AD
140 if ($limit) {
141 $limit_qpart = "LIMIT $limit";
142 } else {
143 $limit_qpart = "";
144 }
145
fefa6ca3 146 $result = db_query($link,
44e241cb
AD
147 "SELECT id,purge_interval,owner_uid FROM ttrss_feeds
148 ORDER BY $random_qpart $limit_qpart");
fefa6ca3
AD
149
150 while ($line = db_fetch_assoc($result)) {
151
152 $feed_id = $line["id"];
153 $purge_interval = $line["purge_interval"];
154 $owner_uid = $line["owner_uid"];
155
156 if ($purge_interval == 0) {
157
158 $tmp_result = db_query($link,
159 "SELECT value FROM ttrss_user_prefs WHERE
160 pref_name = 'PURGE_OLD_DAYS' AND owner_uid = '$owner_uid'");
161
162 if (db_num_rows($tmp_result) != 0) {
163 $purge_interval = db_fetch_result($tmp_result, 0, "value");
164 }
165 }
166
167 if ($do_output) {
ad507f85 168// print "Feed $feed_id: purge interval = $purge_interval\n";
fefa6ca3
AD
169 }
170
171 if ($purge_interval > 0) {
ad507f85 172 purge_feed($link, $feed_id, $purge_interval, $do_output);
fefa6ca3
AD
173 }
174 }
175
71604ca4
AD
176 // purge orphaned posts in main content table
177 db_query($link, "DELETE FROM ttrss_entries WHERE
178 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
179
fefa6ca3
AD
180 }
181
b6eefba5 182 function purge_old_posts($link) {
5d73494a 183
f1a80dae
AD
184 $user_id = $_SESSION["uid"];
185
186 $result = db_query($link, "SELECT id,purge_interval FROM ttrss_feeds
187 WHERE owner_uid = '$user_id'");
5d73494a
AD
188
189 while ($line = db_fetch_assoc($result)) {
190
191 $feed_id = $line["id"];
192 $purge_interval = $line["purge_interval"];
193
b619ff15 194 if ($purge_interval == 0) $purge_interval = get_pref($link, 'PURGE_OLD_DAYS');
5d73494a 195
140aae81 196 if ($purge_interval > 0) {
fefa6ca3 197 purge_feed($link, $feed_id, $purge_interval);
5d73494a
AD
198 }
199 }
71604ca4
AD
200
201 // purge orphaned posts in main content table
202 db_query($link, "DELETE FROM ttrss_entries WHERE
203 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
c3a8d71a
AD
204 }
205
1f2b01ed 206 function update_all_feeds($link, $fetch, $user_id = false, $force_daemon = false) {
40d13c28 207
4769ddaf 208 if (WEB_DEMO_MODE) return;
b0b4abcf 209
a2770077
AD
210 if (!$user_id) {
211 $user_id = $_SESSION["uid"];
212 purge_old_posts($link);
213 }
214
25af8dad 215// db_query($link, "BEGIN");
b82af8c3 216
cbd8650d
AD
217 if (MAX_UPDATE_TIME > 0) {
218 if (DB_TYPE == "mysql") {
219 $q_order = "RAND()";
220 } else {
221 $q_order = "RANDOM()";
222 }
223 } else {
224 $q_order = "last_updated DESC";
225 }
226
d148926e 227 $result = db_query($link, "SELECT feed_url,id,
798f722b 228 SUBSTRING(last_updated,1,19) AS last_updated,
5c563acd 229 update_interval FROM ttrss_feeds WHERE owner_uid = '$user_id'
cbd8650d
AD
230 ORDER BY $q_order");
231
232 $upd_start = time();
40d13c28 233
b6eefba5 234 while ($line = db_fetch_assoc($result)) {
d148926e
AD
235 $upd_intl = $line["update_interval"];
236
b619ff15 237 if (!$upd_intl || $upd_intl == 0) {
e289ca71 238 $upd_intl = get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $user_id, false);
b619ff15 239 }
d148926e 240
c1e202b7
AD
241 if ($upd_intl < 0) {
242 // Updates for this feed are disabled
243 continue;
244 }
245
93d40f50
AD
246 if ($fetch || (!$line["last_updated"] ||
247 time() - strtotime($line["last_updated"]) > ($upd_intl * 60))) {
c5142cca 248
cbd8650d
AD
249// print "<!-- feed: ".$line["feed_url"]." -->";
250
1f2b01ed 251 update_rss_feed($link, $line["feed_url"], $line["id"], $force_daemon);
cbd8650d
AD
252
253 $upd_elapsed = time() - $upd_start;
254
255 if (MAX_UPDATE_TIME > 0 && $upd_elapsed > MAX_UPDATE_TIME) {
256 return;
257 }
d148926e 258 }
40d13c28
AD
259 }
260
25af8dad 261// db_query($link, "COMMIT");
b82af8c3 262
40d13c28
AD
263 }
264
4065b60b
AD
265 function fetch_file_contents($url) {
266 if (USE_CURL_FOR_ICONS) {
267 $tmpfile = tempnam(TMP_DIRECTORY, "ttrss-tmp");
268
269 $ch = curl_init($url);
270 $fp = fopen($tmpfile, "w");
271
272 if ($fp) {
273 curl_setopt($ch, CURLOPT_FILE, $fp);
dd966fed
AD
274 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);
275 curl_setopt($ch, CURLOPT_TIMEOUT, 45);
4065b60b
AD
276 curl_exec($ch);
277 curl_close($ch);
278 fclose($fp);
279 }
280
281 $contents = file_get_contents($tmpfile);
282 unlink($tmpfile);
283
284 return $contents;
285
286 } else {
287 return file_get_contents($url);
288 }
289
290 }
78800912 291
4065b60b
AD
292 // adapted from wordpress favicon plugin by Jeff Minard (http://thecodepro.com/)
293 // http://dev.wp-plugins.org/file/favatars/trunk/favatars.php
78800912 294
4065b60b 295 function get_favicon_url($url) {
99331724 296
4065b60b 297 if ($html = @fetch_file_contents($url)) {
78800912 298
4065b60b
AD
299 if ( preg_match('/<link[^>]+rel="(?:shortcut )?icon"[^>]+?href="([^"]+?)"/si', $html, $matches)) {
300 // Attempt to grab a favicon link from their webpage url
301 $linkUrl = html_entity_decode($matches[1]);
c798704b 302
4065b60b
AD
303 if (substr($linkUrl, 0, 1) == '/') {
304 $urlParts = parse_url($url);
305 $faviconURL = $urlParts['scheme'].'://'.$urlParts['host'].$linkUrl;
306 } else if (substr($linkUrl, 0, 7) == 'http://') {
307 $faviconURL = $linkUrl;
308 } else if (substr($url, -1, 1) == '/') {
309 $faviconURL = $url.$linkUrl;
310 } else {
311 $faviconURL = $url.'/'.$linkUrl;
e695fdc8 312 }
717f5e64 313
c798704b 314 } else {
4065b60b
AD
315 // If unsuccessful, attempt to "guess" the favicon location
316 $urlParts = parse_url($url);
317 $faviconURL = $urlParts['scheme'].'://'.$urlParts['host'].'/favicon.ico';
318 }
319 }
c798704b 320
4065b60b
AD
321 // Run a test to see if what we have attempted to get actually exists.
322 if(USE_CURL_FOR_ICONS || url_validate($faviconURL)) {
323 return $faviconURL;
324 } else {
325 return false;
326 }
327 }
328
329 function url_validate($link) {
330
331 $url_parts = @parse_url($link);
332
333 if ( empty( $url_parts["host"] ) )
334 return false;
335
336 if ( !empty( $url_parts["path"] ) ) {
337 $documentpath = $url_parts["path"];
338 } else {
339 $documentpath = "/";
340 }
341
342 if ( !empty( $url_parts["query"] ) )
343 $documentpath .= "?" . $url_parts["query"];
344
345 $host = $url_parts["host"];
346 $port = $url_parts["port"];
347
348 if ( empty($port) )
349 $port = "80";
350
351 $socket = @fsockopen( $host, $port, $errno, $errstr, 30 );
352
353 if ( !$socket )
354 return false;
c798704b 355
4065b60b
AD
356 fwrite ($socket, "HEAD ".$documentpath." HTTP/1.0\r\nHost: $host\r\n\r\n");
357
358 $http_response = fgets( $socket, 22 );
359
360 $responses = "/(200 OK)|(30[0-9] Moved)/";
361 if ( preg_match($responses, $http_response) ) {
362 fclose($socket);
363 return true;
364 } else {
365 return false;
366 }
367
368 }
369
370 function check_feed_favicon($site_url, $feed, $link) {
371 $favicon_url = get_favicon_url($site_url);
372
373# print "FAVICON [$site_url]: $favicon_url\n";
374
375 error_reporting(0);
376
377 $icon_file = ICONS_DIR . "/$feed.ico";
378
379 if ($favicon_url && !file_exists($icon_file)) {
380 $contents = fetch_file_contents($favicon_url);
381
382 $fp = fopen($icon_file, "w");
78800912 383
4065b60b
AD
384 if ($fp) {
385 fwrite($fp, $contents);
386 fclose($fp);
387 chmod($icon_file, 0644);
388 }
78800912 389 }
4065b60b
AD
390
391 error_reporting(DEFAULT_ERROR_LEVEL);
392
78800912
AD
393 }
394
ddb68b81 395 function update_rss_feed($link, $feed_url, $feed, $ignore_daemon = false) {
40d13c28 396
ddb68b81 397 if (DAEMON_REFRESH_ONLY && !$_GET["daemon"] && !$ignore_daemon) {
21cfcdf2
AD
398 return;
399 }
400
4bc64807 401 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
34e420fb 402 _debug("update_rss_feed: start");
219bd8fc
AD
403 }
404
47c6c988 405 $result = db_query($link, "SELECT update_interval,auth_login,auth_pass
a88c1f36
AD
406 FROM ttrss_feeds WHERE id = '$feed'");
407
47439031
AD
408 $auth_login = db_fetch_result($result, 0, "auth_login");
409 $auth_pass = db_fetch_result($result, 0, "auth_pass");
47c6c988 410
a88c1f36
AD
411 $update_interval = db_fetch_result($result, 0, "update_interval");
412
413 if ($update_interval < 0) { return; }
414
ab3d0b99
AD
415 $feed = db_escape_string($feed);
416
47c6c988
AD
417 $fetch_url = $feed_url;
418
419 if ($auth_login && $auth_pass) {
420 $url_parts = array();
421 preg_match("/(^[^:]*):\/\/(.*)/", $fetch_url, $url_parts);
422
423 if ($url_parts[1] && $url_parts[2]) {
424 $fetch_url = $url_parts[1] . "://$auth_login:$auth_pass@" . $url_parts[2];
425 }
426
427 }
ab3d0b99 428
4bc64807 429 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
34e420fb 430 _debug("update_rss_feed: fetching...");
219bd8fc
AD
431 }
432
51e456d6 433 if (!defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
219bd8fc
AD
434 error_reporting(0);
435 }
436
49f9c923 437 $rss = fetch_rss($fetch_url);
219bd8fc 438
4bc64807 439 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
34e420fb 440 _debug("update_rss_feed: fetch done, parsing...");
219bd8fc
AD
441 } else {
442 error_reporting (DEFAULT_ERROR_LEVEL);
443 }
444
b6eefba5 445 $feed = db_escape_string($feed);
dcee8f61 446
49f9c923 447 if ($rss) {
50b62214 448
4bc64807 449 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
50b62214
AD
450 _debug("update_rss_feed: processing feed data...");
451 }
452
44e241cb 453// db_query($link, "BEGIN");
dd8c76a9 454
a88c1f36 455 $result = db_query($link, "SELECT title,icon_url,site_url,owner_uid
f324892e 456 FROM ttrss_feeds WHERE id = '$feed'");
331900c6 457
b6eefba5
AD
458 $registered_title = db_fetch_result($result, 0, "title");
459 $orig_icon_url = db_fetch_result($result, 0, "icon_url");
f324892e 460 $orig_site_url = db_fetch_result($result, 0, "site_url");
331900c6 461
7fed1940
AD
462 $owner_uid = db_fetch_result($result, 0, "owner_uid");
463
8d0ec6fd 464 if (get_pref($link, 'ENABLE_FEED_ICONS', $owner_uid, false)) {
4bc64807 465 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
50b62214
AD
466 _debug("update_rss_feed: checking favicon...");
467 }
4065b60b 468 check_feed_favicon($rss->channel["link"], $feed, $link);
a2770077
AD
469 }
470
746b249f 471 if (!$registered_title || $registered_title == "[Unknown]") {
4bc64807 472
49f9c923 473 $feed_title = db_escape_string($rss->channel["title"]);
4bc64807
AD
474
475 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
476 _debug("update_rss_feed: registering title: $feed_title");
477 }
7c5a308d 478
f324892e
AD
479 db_query($link, "UPDATE ttrss_feeds SET
480 title = '$feed_title' WHERE id = '$feed'");
481 }
482
49f9c923
AD
483 $site_url = $rss->channel["link"];
484 // weird, weird Magpie
485 if (!$site_url) $site_url = db_escape_string($rss->channel["link_"]);
147f7691
AD
486
487 if ($site_url && $orig_site_url != db_escape_string($site_url)) {
f324892e
AD
488 db_query($link, "UPDATE ttrss_feeds SET
489 site_url = '$site_url' WHERE id = '$feed'");
331900c6 490 }
40d13c28 491
b7f4bda2
AD
492// print "I: " . $rss->channel["image"]["url"];
493
49f9c923 494 $icon_url = $rss->image["url"];
b7f4bda2 495
147f7691 496 if ($icon_url && !$orig_icon_url != db_escape_string($icon_url)) {
b6eefba5
AD
497 $icon_url = db_escape_string($icon_url);
498 db_query($link, "UPDATE ttrss_feeds SET icon_url = '$icon_url' WHERE id = '$feed'");
b7f4bda2
AD
499 }
500
51e456d6 501 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
50b62214
AD
502 _debug("update_rss_feed: loading filters...");
503 }
e6155a06
AD
504
505 $filters = array();
506
4b3dff6e 507 $result = db_query($link, "SELECT reg_exp,
db42b934 508 ttrss_filter_types.name AS name,
073ca0e6 509 ttrss_filter_actions.name AS action,
c2d9322b 510 inverse,
073ca0e6 511 action_param
db42b934 512 FROM ttrss_filters,ttrss_filter_types,ttrss_filter_actions WHERE
e8b79d16 513 enabled = true AND
db42b934
AD
514 owner_uid = $owner_uid AND
515 ttrss_filter_types.id = filter_type AND
516 ttrss_filter_actions.id = action_id AND
f8382011 517 (feed_id IS NULL OR feed_id = '$feed') ORDER BY reg_exp");
e6155a06 518
b6eefba5 519 while ($line = db_fetch_assoc($result)) {
e6155a06 520 if (!$filters[$line["name"]]) $filters[$line["name"]] = array();
19c9cb11
AD
521
522 $filter["reg_exp"] = $line["reg_exp"];
523 $filter["action"] = $line["action"];
073ca0e6 524 $filter["action_param"] = $line["action_param"];
c2d9322b 525 $filter["inverse"] = sql_bool_to_bool($line["inverse"]);
073ca0e6 526
19c9cb11 527 array_push($filters[$line["name"]], $filter);
e6155a06
AD
528 }
529
49f9c923 530 $iterator = $rss->items;
7c5a308d 531
49f9c923
AD
532 if (!$iterator || !is_array($iterator)) $iterator = $rss->entries;
533 if (!$iterator || !is_array($iterator)) $iterator = $rss;
c22789da
AD
534
535 if (!is_array($iterator)) {
39541e74 536 /* db_query($link, "UPDATE ttrss_feeds
75bd0669 537 SET last_error = 'Parse error: can\'t find any articles.'
77f0a2a7
AD
538 WHERE id = '$feed'"); */
539
540 // clear any errors and mark feed as updated if fetched okay
541 // even if it's blank
542
51e456d6 543 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
844012bc
AD
544 _debug("update_rss_feed: entry iterator is not an array, no articles?");
545 }
546
77f0a2a7
AD
547 db_query($link, "UPDATE ttrss_feeds
548 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
549
550 return; // no articles
c22789da 551 }
ddb68b81 552
51e456d6 553 if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) {
50b62214
AD
554 _debug("update_rss_feed: processing articles...");
555 }
556
ddb68b81 557 foreach ($iterator as $item) {
7c5a308d 558
be832a1a 559 $entry_guid = $item["id"];
34e420fb 560
be832a1a
AD
561 if (!$entry_guid) $entry_guid = $item["guid"];
562 if (!$entry_guid) $entry_guid = $item["link"];
563 if (!$entry_guid) $entry_guid = make_guid_from_title($item["title"]);
564
34e420fb
AD
565 if (defined('DAEMON_EXTENDED_DEBUG')) {
566 _debug("update_rss_feed: guid $entry_guid");
567 }
568
be832a1a
AD
569 if (!$entry_guid) continue;
570
571 $entry_timestamp = "";
572
573 $rss_2_date = $item['pubdate'];
574 $rss_1_date = $item['dc']['date'];
575 $atom_date = $item['issued'];
576 if (!$atom_date) $atom_date = $item['updated'];
577
578 if ($atom_date != "") $entry_timestamp = parse_w3cdtf($atom_date);
579 if ($rss_1_date != "") $entry_timestamp = parse_w3cdtf($rss_1_date);
580 if ($rss_2_date != "") $entry_timestamp = strtotime($rss_2_date);
b82af8c3 581
2e930846 582 if ($entry_timestamp == "" || $entry_timestamp == -1 || !$entry_timestamp) {
be832a1a
AD
583 $entry_timestamp = time();
584 $no_orig_date = 'true';
585 } else {
586 $no_orig_date = 'false';
587 }
588
589 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
590
591 $entry_title = trim(strip_tags($item["title"]));
592
593 // strange Magpie workaround
594 $entry_link = $item["link_"];
595 if (!$entry_link) $entry_link = $item["link"];
596
597 if (!$entry_title) continue;
1f64b1be 598# if (!$entry_link) continue;
7d3ab0dd 599
be832a1a 600 $entry_link = strip_tags($entry_link);
7d3ab0dd 601
be832a1a 602 $entry_content = $item["content:escaped"];
bbb416e5 603
be832a1a
AD
604 if (!$entry_content) $entry_content = $item["content:encoded"];
605 if (!$entry_content) $entry_content = $item["content"];
606 if (!$entry_content) $entry_content = $item["atom_content"];
607 if (!$entry_content) $entry_content = $item["summary"];
608 if (!$entry_content) $entry_content = $item["description"];
bbb416e5 609
be832a1a 610// if (!$entry_content) continue;
bbb416e5 611
be832a1a
AD
612 // WTF
613 if (is_array($entry_content)) {
614 $entry_content = $entry_content["encoded"];
615 if (!$entry_content) $entry_content = $entry_content["escaped"];
616 }
617
618// print_r($item);
619// print_r(htmlspecialchars($entry_content));
620// print "<br>";
621
622 $entry_content_unescaped = $entry_content;
be832a1a
AD
623
624 $entry_comments = strip_tags($item["comments"]);
625
626 $entry_author = db_escape_string(strip_tags($item['dc']['creator']));
627
83f114c8 628 if ($item['author']) {
83f114c8 629
4d6e9157
AD
630 if (is_array($item['author'])) {
631
632 if (!$entry_author) {
633 $entry_author = db_escape_string(strip_tags($item['author']['name']));
634 }
635
636 if (!$entry_author) {
637 $entry_author = db_escape_string(strip_tags($item['author']['email']));
638 }
83f114c8
AD
639 }
640
641 if (!$entry_author) {
642 $entry_author = db_escape_string(strip_tags($item['author']));
643 }
be832a1a
AD
644 }
645
83f114c8
AD
646 if (preg_match('/^[\t\n\r ]*$/', $entry_author)) $entry_author = '';
647
be832a1a
AD
648 $entry_guid = db_escape_string(strip_tags($entry_guid));
649
650 $result = db_query($link, "SELECT id FROM ttrss_entries
651 WHERE guid = '$entry_guid'");
652
653 $entry_content = db_escape_string($entry_content);
7e43ad58
AD
654
655 $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
656
be832a1a
AD
657 $entry_title = db_escape_string($entry_title);
658 $entry_link = db_escape_string($entry_link);
2544f36b
AD
659 $entry_comments = mb_substr(db_escape_string($entry_comments), 0, 250);
660 $entry_author = mb_substr($entry_author, 0, 250);
be832a1a
AD
661
662 $num_comments = db_escape_string($item["slash"]["comments"]);
663
664 if (!$num_comments) $num_comments = 0;
665
fefef828 666 // parse <category> entries into tags
be832a1a 667
fefef828 668 $t_ctr = $item['category#'];
be832a1a 669
fefef828
AD
670 $additional_tags = false;
671
672 if ($t_ctr == 0) {
673 $additional_tags = false;
674 } else if ($t_ctr == 1) {
675 $additional_tags = array($item['category']);
676 } else {
677 $additional_tags = array();
678 for ($i = 0; $i <= $t_ctr; $i++ ) {
679 if ($item["category#$i"]) {
680 array_push($additional_tags, $item["category#$i"]);
681 }
682 }
683 }
684
685 // parse <dc:subject> elements
686
687 $t_ctr = $item['dc']['subject#'];
688
689 if ($t_ctr == 1) {
690 $additional_tags = array($item['dc']['subject']);
691 } else if ($t_ctr > 1) {
692 $additional_tags = array();
693 for ($i = 0; $i <= $t_ctr; $i++ ) {
694 if ($item['dc']["subject#$i"]) {
695 array_push($additional_tags, $item['dc']["subject#$i"]);
696 }
697 }
698 }
8add756a 699
d48d160c 700 # sanitize content
183ad07b 701
007a38d4 702// $entry_content = sanitize_rss($entry_content);
d48d160c 703
34e420fb
AD
704 if (defined('DAEMON_EXTENDED_DEBUG')) {
705 _debug("update_rss_feed: done collecting data [TITLE:$entry_title]");
706 }
707
44e241cb
AD
708 db_query($link, "BEGIN");
709
4c193675
AD
710 if (db_num_rows($result) == 0) {
711
34e420fb
AD
712 if (defined('DAEMON_EXTENDED_DEBUG')) {
713 _debug("update_rss_feed: base guid not found");
714 }
715
4c193675
AD
716 // base post entry does not exist, create it
717
4c193675
AD
718 $result = db_query($link,
719 "INSERT INTO ttrss_entries
720 (title,
721 guid,
722 link,
723 updated,
724 content,
725 content_hash,
726 no_orig_date,
727 date_entered,
11b0dce2 728 comments,
b6104dee
AD
729 num_comments,
730 author)
4c193675
AD
731 VALUES
732 ('$entry_title',
733 '$entry_guid',
734 '$entry_link',
735 '$entry_timestamp_fmt',
736 '$entry_content',
737 '$content_hash',
738 $no_orig_date,
739 NOW(),
11b0dce2 740 '$entry_comments',
b6104dee
AD
741 '$num_comments',
742 '$entry_author')");
8926aab8
AD
743 } else {
744 // we keep encountering the entry in feeds, so we need to
745 // update date_entered column so that we don't get horrible
746 // dupes when the entry gets purged and reinserted again e.g.
747 // in the case of SLOW SLOW OMG SLOW updating feeds
748
749 $base_entry_id = db_fetch_result($result, 0, "id");
750
751 db_query($link, "UPDATE ttrss_entries SET date_entered = NOW()
752 WHERE id = '$base_entry_id'");
4c193675
AD
753 }
754
755 // now it should exist, if not - bad luck then
756
6385315d
AD
757 $result = db_query($link, "SELECT
758 id,content_hash,no_orig_date,title,
8926aab8 759 substring(date_entered,1,19) as date_entered,
11b0dce2
AD
760 substring(updated,1,19) as updated,
761 num_comments
6385315d
AD
762 FROM
763 ttrss_entries
764 WHERE guid = '$entry_guid'");
4c193675
AD
765
766 if (db_num_rows($result) == 1) {
767
34e420fb 768 if (defined('DAEMON_EXTENDED_DEBUG')) {
7ca91eb3 769 _debug("update_rss_feed: base guid found, checking for user record");
34e420fb
AD
770 }
771
11b0dce2
AD
772 // this will be used below in update handler
773 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
774 $orig_title = db_fetch_result($result, 0, "title");
775 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
8926aab8
AD
776 $orig_date_entered = strtotime(db_fetch_result($result,
777 0, "date_entered"));
6385315d 778
11b0dce2 779 $ref_id = db_fetch_result($result, 0, "id");
4c193675 780
11b0dce2 781 // check for user post link to main table
4c193675 782
11b0dce2 783 // do we allow duplicate posts with same GUID in different feeds?
8d0ec6fd 784 if (get_pref($link, "ALLOW_DUPLICATE_POSTS", $owner_uid, false)) {
11b0dce2
AD
785 $dupcheck_qpart = "AND feed_id = '$feed'";
786 } else {
787 $dupcheck_qpart = "";
788 }
71604ca4 789
11b0dce2 790// error_reporting(0);
19c9cb11 791
f8382011
AD
792 $article_filters = get_article_filters($filters, $entry_title,
793 $entry_content, $entry_link);
19c9cb11 794
7ca91eb3
AD
795 if (defined('DAEMON_EXTENDED_DEBUG')) {
796 _debug("update_rss_feed: article filters: ");
797 if (count($article_filters) != 0) {
798 print_r($article_filters);
799 }
800 }
801
f8382011 802 if (find_article_filter($article_filters, "filter")) {
11b0dce2
AD
803 continue;
804 }
19c9cb11 805
11b0dce2 806// error_reporting (DEFAULT_ERROR_LEVEL);
3a933f22 807
11b0dce2
AD
808 $result = db_query($link,
809 "SELECT ref_id FROM ttrss_user_entries WHERE
810 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
811 $dupcheck_qpart");
7ca91eb3 812
11b0dce2
AD
813 // okay it doesn't exist - create user entry
814 if (db_num_rows($result) == 0) {
815
7ca91eb3
AD
816 if (defined('DAEMON_EXTENDED_DEBUG')) {
817 _debug("update_rss_feed: user record not found, creating...");
818 }
819
f8382011 820 if (!find_article_filter($article_filters, 'catchup')) {
11b0dce2
AD
821 $unread = 'true';
822 $last_read_qpart = 'NULL';
823 } else {
824 $unread = 'false';
825 $last_read_qpart = 'NOW()';
826 }
dd7d3187 827
f8382011 828 if (find_article_filter($article_filters, 'mark')) {
dd7d3187
AD
829 $marked = 'true';
830 } else {
831 $marked = 'false';
832 }
a36c0dfe
AD
833
834 if (find_article_filter($article_filters, 'publish')) {
835 $published = 'true';
836 } else {
837 $published = 'false';
838 }
839
11b0dce2
AD
840 $result = db_query($link,
841 "INSERT INTO ttrss_user_entries
a36c0dfe 842 (ref_id, owner_uid, feed_id, unread, last_read, marked, published)
11b0dce2 843 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
a36c0dfe 844 $last_read_qpart, $marked, $published)");
11b0dce2
AD
845 }
846
6385315d
AD
847 $post_needs_update = false;
848
8d0ec6fd 849 if (get_pref($link, "UPDATE_POST_ON_CHECKSUM_CHANGE", $owner_uid, false) &&
6385315d 850 ($content_hash != $orig_content_hash)) {
7e43ad58 851// print "<!-- [$entry_title] $content_hash vs $orig_content_hash -->";
6385315d
AD
852 $post_needs_update = true;
853 }
854
7e43ad58 855 if (db_escape_string($orig_title) != $entry_title) {
6385315d
AD
856 $post_needs_update = true;
857 }
858
11b0dce2
AD
859 if ($orig_num_comments != $num_comments) {
860 $post_needs_update = true;
861 }
862
6385315d
AD
863// this doesn't seem to be very reliable
864//
865// if ($orig_timestamp != $entry_timestamp && !$orig_no_orig_date) {
866// $post_needs_update = true;
867// }
868
869 // if post needs update, update it and mark all user entries
1c73bc0c 870 // linking to this post as updated
6385315d
AD
871 if ($post_needs_update) {
872
7ca91eb3
AD
873 if (defined('DAEMON_EXTENDED_DEBUG')) {
874 _debug("update_rss_feed: post $entry_guid needs update...");
875 }
876
6385315d
AD
877// print "<!-- post $orig_title needs update : $post_needs_update -->";
878
6385315d 879 db_query($link, "UPDATE ttrss_entries
11b0dce2 880 SET title = '$entry_title', content = '$entry_content',
7e43ad58 881 content_hash = '$content_hash',
11b0dce2 882 num_comments = '$num_comments'
6385315d
AD
883 WHERE id = '$ref_id'");
884
8d0ec6fd 885 if (get_pref($link, "MARK_UNREAD_ON_UPDATE", $owner_uid, false)) {
4919fb42
AD
886 db_query($link, "UPDATE ttrss_user_entries
887 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
888 } else {
889 db_query($link, "UPDATE ttrss_user_entries
890 SET last_read = null WHERE ref_id = '$ref_id' AND unread = false");
891 }
6385315d
AD
892
893 }
4c193675
AD
894 }
895
44e241cb
AD
896 db_query($link, "COMMIT");
897
34e420fb
AD
898 if (defined('DAEMON_EXTENDED_DEBUG')) {
899 _debug("update_rss_feed: looking for tags...");
900 }
901
eb36b4eb 902 /* taaaags */
40e1a95b 903 // <a href="..." rel="tag">Xorg</a>, //
eb36b4eb 904
05732aa0 905 $entry_tags = null;
eb36b4eb 906
40e1a95b 907 preg_match_all("/<a.*?rel=['\"]tag['\"].*?>([^<]+)<\/a>/i",
ee2c3050
AD
908 $entry_content_unescaped, $entry_tags);
909
fefef828
AD
910/* print "<p><br/>$entry_title : $entry_content_unescaped<br>";
911 print_r($entry_tags);
912 print "<br/></p>"; */
eb36b4eb
AD
913
914 $entry_tags = $entry_tags[1];
915
073ca0e6
AD
916 # check for manual tags
917
f8382011
AD
918 $tag_filter = find_article_filter($article_filters, "tag");
919
920 if ($tag_filter) {
073ca0e6 921
f8382011 922 $manual_tags = trim_array(split(",", $tag_filter[1]));
073ca0e6 923
f8382011 924 foreach ($manual_tags as $tag) {
be832a1a
AD
925 if (tag_is_valid($tag)) {
926 array_push($entry_tags, $tag);
927 }
928 }
929 }
930
11c9ea1f
AD
931 $boring_tags = trim_array(split(",", mb_strtolower(get_pref($link,
932 'BLACKLISTED_TAGS', $owner_uid, ''), 'utf-8')));
8fc70781 933
fefef828
AD
934 if ($additional_tags && is_array($additional_tags)) {
935 foreach ($additional_tags as $tag) {
156a785d
AD
936 if (tag_is_valid($tag) &&
937 array_search($tag, $boring_tags) === FALSE) {
073ca0e6
AD
938 array_push($entry_tags, $tag);
939 }
940 }
fefef828
AD
941 }
942
fcc95e24 943// print "<p>TAGS: "; print_r($entry_tags); print "</p>";
073ca0e6 944
eb36b4eb
AD
945 if (count($entry_tags) > 0) {
946
44e241cb
AD
947 db_query($link, "BEGIN");
948
05732aa0
AD
949 $result = db_query($link, "SELECT id,int_id
950 FROM ttrss_entries,ttrss_user_entries
25da6909 951 WHERE guid = '$entry_guid'
05732aa0 952 AND feed_id = '$feed' AND ref_id = id
7fed1940 953 AND owner_uid = '$owner_uid'");
eb36b4eb 954
fe99ab12 955 if (db_num_rows($result) == 1) {
eb36b4eb 956
fe99ab12
AD
957 $entry_id = db_fetch_result($result, 0, "id");
958 $entry_int_id = db_fetch_result($result, 0, "int_id");
959
960 foreach ($entry_tags as $tag) {
fefef828 961
14b6c54b 962 $tag = sanitize_tag($tag);
fefef828 963 $tag = db_escape_string($tag);
31483fc1 964
ef063748
AD
965 if (!tag_is_valid($tag)) continue;
966
fe99ab12
AD
967 $result = db_query($link, "SELECT id FROM ttrss_tags
968 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
969 owner_uid = '$owner_uid' LIMIT 1");
970
971 // print db_fetch_result($result, 0, "id");
972
973 if ($result && db_num_rows($result) == 0) {
974
fe99ab12
AD
975 db_query($link, "INSERT INTO ttrss_tags
976 (owner_uid,tag_name,post_int_id)
977 VALUES ('$owner_uid','$tag', '$entry_int_id')");
978 }
979 }
eb36b4eb 980 }
44e241cb 981 db_query($link, "COMMIT");
05732aa0 982 }
4c193675 983 }
40d13c28 984
ab3d0b99
AD
985 db_query($link, "UPDATE ttrss_feeds
986 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
eb36b4eb 987
44e241cb 988// db_query($link, "COMMIT");
dd8c76a9 989
ab3d0b99 990 } else {
0d276d67 991 $error_msg = mb_substr(db_escape_string(magpie_error()), 0, 250);
ab3d0b99 992 db_query($link,
aa5f9f5f
AD
993 "UPDATE ttrss_feeds SET last_error = '$error_msg',
994 last_updated = NOW() WHERE id = '$feed'");
40d13c28
AD
995 }
996
219bd8fc 997 if (defined('DAEMON_EXTENDED_DEBUG')) {
34e420fb 998 _debug("update_rss_feed: done");
219bd8fc
AD
999 }
1000
40d13c28
AD
1001 }
1002
f175937c 1003 function print_select($id, $default, $values, $attributes = "") {
79f3553b 1004 print "<select name=\"$id\" id=\"$id\" $attributes>";
a0d53889
AD
1005 foreach ($values as $v) {
1006 if ($v == $default)
1007 $sel = " selected";
1008 else
1009 $sel = "";
1010
1011 print "<option$sel>$v</option>";
1012 }
1013 print "</select>";
1014 }
40d13c28 1015
79f3553b
AD
1016 function print_select_hash($id, $default, $values, $attributes = "") {
1017 print "<select name=\"$id\" id='$id' $attributes>";
673d54ca
AD
1018 foreach (array_keys($values) as $v) {
1019 if ($v == $default)
1020 $sel = "selected";
1021 else
1022 $sel = "";
1023
1024 print "<option $sel value=\"$v\">".$values[$v]."</option>";
1025 }
1026
1027 print "</select>";
1028 }
1029
f8382011 1030 function get_article_filters($filters, $title, $content, $link) {
240054f1 1031 $matches = array();
c2d9322b 1032
240054f1
AD
1033 if ($filters["title"]) {
1034 foreach ($filters["title"] as $filter) {
c2d9322b
AD
1035 $reg_exp = $filter["reg_exp"];
1036 $inverse = $filter["inverse"];
1037 if ((!$inverse && preg_match("/$reg_exp/i", $title)) ||
1038 ($inverse && !preg_match("/$reg_exp/i", $title))) {
1039
240054f1
AD
1040 array_push($matches, array($filter["action"], $filter["action_param"]));
1041 }
1042 }
1043 }
1044
1045 if ($filters["content"]) {
1046 foreach ($filters["content"] as $filter) {
c2d9322b
AD
1047 $reg_exp = $filter["reg_exp"];
1048 $inverse = $filter["inverse"];
1049
1050 if ((!$inverse && preg_match("/$reg_exp/i", $content)) ||
1051 ($inverse && !preg_match("/$reg_exp/i", $content))) {
1052
240054f1
AD
1053 array_push($matches, array($filter["action"], $filter["action_param"]));
1054 }
1055 }
1056 }
1057
1058 if ($filters["both"]) {
1059 foreach ($filters["both"] as $filter) {
1060 $reg_exp = $filter["reg_exp"];
c2d9322b
AD
1061 $inverse = $filter["inverse"];
1062
1063 if ($inverse) {
1064 if (!preg_match("/$reg_exp/i", $title) || !preg_match("/$reg_exp/i", $content)) {
1065 array_push($matches, array($filter["action"], $filter["action_param"]));
1066 }
1067 } else {
1068 if (preg_match("/$reg_exp/i", $title) || preg_match("/$reg_exp/i", $content)) {
1069 array_push($matches, array($filter["action"], $filter["action_param"]));
1070 }
240054f1
AD
1071 }
1072 }
1073 }
1074
1075 if ($filters["link"]) {
1076 $reg_exp = $filter["reg_exp"];
1077 foreach ($filters["link"] as $filter) {
1078 $reg_exp = $filter["reg_exp"];
c2d9322b
AD
1079 $inverse = $filter["inverse"];
1080
1081 if ((!$inverse && preg_match("/$reg_exp/i", $link)) ||
1082 ($inverse && !preg_match("/$reg_exp/i", $link))) {
1083
240054f1
AD
1084 array_push($matches, array($filter["action"], $filter["action_param"]));
1085 }
1086 }
1087 }
1088
1089 return $matches;
1090 }
1091
f8382011
AD
1092 function find_article_filter($filters, $filter_name) {
1093 foreach ($filters as $f) {
1094 if ($f[0] == $filter_name) {
1095 return $f;
1096 };
1097 }
1098 return false;
1099 }
1100
9323147e 1101 function printFeedEntry($feed_id, $class, $feed_title, $unread, $icon_file, $link,
fb1fb4ab 1102 $rtl_content = false, $last_updated = false, $last_error = false) {
254e0e4b
AD
1103
1104 if (file_exists($icon_file) && filesize($icon_file) > 0) {
023fe037 1105 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"$icon_file\">";
254e0e4b 1106 } else {
023fe037 1107 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"images/blank_icon.gif\">";
254e0e4b
AD
1108 }
1109
9323147e
AD
1110 if ($rtl_content) {
1111 $rtl_tag = "dir=\"rtl\"";
1112 } else {
1113 $rtl_tag = "dir=\"ltr\"";
1114 }
1115
78d5212c
AD
1116 $error_notify_msg = "";
1117
fb1fb4ab
AD
1118 if ($last_error) {
1119 $link_title = "Error: $last_error ($last_updated)";
78d5212c 1120 $error_notify_msg = "(Error)";
ad780e9c 1121 } else if ($last_updated) {
fb1fb4ab
AD
1122 $link_title = "Updated: $last_updated";
1123 }
1124
7210613a 1125 $feed = "<a title=\"$link_title\" id=\"FEEDL-$feed_id\"
c50e2b30 1126 href=\"javascript:viewfeed('$feed_id', '', false, '', false, 0);\">$feed_title</a>";
254e0e4b
AD
1127
1128 print "<li id=\"FEEDR-$feed_id\" class=\"$class\">";
b619ff15 1129 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
254e0e4b
AD
1130 print "$feed_icon";
1131 }
1132
9323147e 1133 print "<span $rtl_tag id=\"FEEDN-$feed_id\">$feed</span>";
254e0e4b
AD
1134
1135 if ($unread != 0) {
1136 $fctr_class = "";
1137 } else {
1138 $fctr_class = "class=\"invisible\"";
1139 }
1140
9323147e 1141 print " <span $rtl_tag $fctr_class id=\"FEEDCTR-$feed_id\">
254e0e4b 1142 (<span id=\"FEEDU-$feed_id\">$unread</span>)</span>";
78d5212c
AD
1143
1144 if (get_pref($link, "EXTENDED_FEEDLIST")) {
1145 print "<div class=\"feedExtInfo\">
1146 <span id=\"FLUPD-$feed_id\">$last_updated $error_notify_msg</span></div>";
1147 }
1148
254e0e4b
AD
1149 print "</li>";
1150
1151 }
1152
406d9489
AD
1153 function getmicrotime() {
1154 list($usec, $sec) = explode(" ",microtime());
1155 return ((float)$usec + (float)$sec);
1156 }
1157
f541eb78 1158 function print_radio($id, $default, $true_is, $values, $attributes = "") {
77e96719
AD
1159 foreach ($values as $v) {
1160
1161 if ($v == $default)
5da169d9 1162 $sel = "checked";
77e96719 1163 else
5da169d9
AD
1164 $sel = "";
1165
f541eb78 1166 if ($v == $true_is) {
5da169d9
AD
1167 $sel .= " value=\"1\"";
1168 } else {
1169 $sel .= " value=\"0\"";
1170 }
77e96719 1171
69654950
AD
1172 print "<input class=\"noborder\"
1173 type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
77e96719
AD
1174
1175 }
1176 }
1177
ff485f1d
AD
1178 function initialize_user_prefs($link, $uid) {
1179
1180 $uid = db_escape_string($uid);
1181
1182 db_query($link, "BEGIN");
1183
1184 $result = db_query($link, "SELECT pref_name,def_value FROM ttrss_prefs");
1185
1186 $u_result = db_query($link, "SELECT pref_name
1187 FROM ttrss_user_prefs WHERE owner_uid = '$uid'");
1188
1189 $active_prefs = array();
1190
1191 while ($line = db_fetch_assoc($u_result)) {
1192 array_push($active_prefs, $line["pref_name"]);
1193 }
1194
1195 while ($line = db_fetch_assoc($result)) {
1196 if (array_search($line["pref_name"], $active_prefs) === FALSE) {
1197// print "adding " . $line["pref_name"] . "<br>";
1198
1199 db_query($link, "INSERT INTO ttrss_user_prefs
1200 (owner_uid,pref_name,value) VALUES
1201 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."')");
1202
1203 }
1204 }
1205
1206 db_query($link, "COMMIT");
1207
1208 }
956c7629
AD
1209
1210 function lookup_user_id($link, $user) {
1211
1212 $result = db_query($link, "SELECT id FROM ttrss_users WHERE
1213 login = '$login'");
1214
1215 if (db_num_rows($result) == 1) {
1216 return db_fetch_result($result, 0, "id");
1217 } else {
1218 return false;
1219 }
1220 }
1221
18664970
AD
1222 function http_authenticate_user($link) {
1223
4bc64807
AD
1224 error_log("http_authenticate_user: ".$_SERVER["PHP_AUTH_USER"]."\n", 3, '/tmp/tt-rss.log');
1225
18664970
AD
1226 if (!$_SERVER["PHP_AUTH_USER"]) {
1227
1228 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
1229 header('HTTP/1.0 401 Unauthorized');
1230 exit;
1231
1232 } else {
1233 $auth_result = authenticate_user($link,
1234 $_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"]);
1235
1236 if (!$auth_result) {
1237 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
1238 header('HTTP/1.0 401 Unauthorized');
1239 exit;
1240 }
1241 }
1242
1243 return true;
1244 }
1245
461766f3 1246 function authenticate_user($link, $login, $password, $force_auth = false) {
c8437f35 1247
131b01b3 1248 if (!SINGLE_USER_MODE) {
c8437f35 1249
131b01b3 1250 $pwd_hash = 'SHA1:' . sha1($password);
461766f3
AD
1251
1252 if ($force_auth && defined('_DEBUG_USER_SWITCH')) {
1253 $query = "SELECT id,login,access_level
1254 FROM ttrss_users WHERE
1255 login = '$login'";
1256 } else {
1257 $query = "SELECT id,login,access_level
1258 FROM ttrss_users WHERE
1259 login = '$login' AND pwd_hash = '$pwd_hash'";
1260 }
1261
1262 $result = db_query($link, $query);
131b01b3
AD
1263
1264 if (db_num_rows($result) == 1) {
1265 $_SESSION["uid"] = db_fetch_result($result, 0, "id");
1266 $_SESSION["name"] = db_fetch_result($result, 0, "login");
1267 $_SESSION["access_level"] = db_fetch_result($result, 0, "access_level");
1268
1269 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
1270 $_SESSION["uid"]);
1271
1272 $user_theme = get_user_theme_path($link);
1273
1274 $_SESSION["theme"] = $user_theme;
1275 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1276
1277 initialize_user_prefs($link, $_SESSION["uid"]);
1278
1279 return true;
1280 }
1281
1282 return false;
503eb349 1283
131b01b3 1284 } else {
503eb349 1285
131b01b3
AD
1286 $_SESSION["uid"] = 1;
1287 $_SESSION["name"] = "admin";
f557cd78 1288
0bbba72d
AD
1289 $user_theme = get_user_theme_path($link);
1290
1291 $_SESSION["theme"] = $user_theme;
1292 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1293
1294 initialize_user_prefs($link, $_SESSION["uid"]);
1295
c8437f35
AD
1296 return true;
1297 }
c8437f35
AD
1298 }
1299
e6cb77a0
AD
1300 function make_password($length = 8) {
1301
1302 $password = "";
798f722b
AD
1303 $possible = "0123456789abcdfghjkmnpqrstvwxyzABCDFGHJKMNPQRSTVWXYZ";
1304
1305 $i = 0;
e6cb77a0
AD
1306
1307 while ($i < $length) {
1308 $char = substr($possible, mt_rand(0, strlen($possible)-1), 1);
1309
1310 if (!strstr($password, $char)) {
1311 $password .= $char;
1312 $i++;
1313 }
1314 }
1315 return $password;
1316 }
1317
1318 // this is called after user is created to initialize default feeds, labels
1319 // or whatever else
1320
1321 // user preferences are checked on every login, not here
1322
1323 function initialize_user($link, $uid) {
1324
1325 db_query($link, "insert into ttrss_labels (owner_uid,sql_exp,description)
1326 values ('$uid','unread = true', 'Unread articles')");
1327
1328 db_query($link, "insert into ttrss_labels (owner_uid,sql_exp,description)
1329 values ('$uid','last_read is null and unread = false', 'Updated articles')");
1330
1331 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
74bff337 1332 values ('$uid', 'Tiny Tiny RSS: New Releases',
628fcd2c 1333 'http://tt-rss.spb.ru/releases.rss')");
3b0feb9b 1334
cd2cd415
AD
1335 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
1336 values ('$uid', 'Tiny Tiny RSS: Forum',
1337 'http://tt-rss.spb.ru/forum/rss.php')");
3b0feb9b 1338 }
e6cb77a0 1339
b8aa49bc 1340 function logout_user() {
5ccc1cf5
AD
1341 session_destroy();
1342 if (isset($_COOKIE[session_name()])) {
1343 setcookie(session_name(), '', time()-42000, '/');
1344 }
b8aa49bc
AD
1345 }
1346
75836f33 1347 function get_script_urlpath() {
87a79fa4 1348 return preg_replace('/\/[^\/]*$/', "", $_SERVER["REQUEST_URI"]);
75836f33
AD
1349 }
1350
916f788a 1351 function validate_session($link) {
a2e9b457 1352 if (SESSION_CHECK_ADDRESS && $_SESSION["uid"]) {
916f788a
AD
1353 if ($_SESSION["ip_address"]) {
1354 if ($_SESSION["ip_address"] != $_SERVER["REMOTE_ADDR"]) {
7f0acba7 1355 $_SESSION["login_error_msg"] = "Session failed to validate (incorrect IP)";
916f788a
AD
1356 return false;
1357 }
1358 }
1359 }
d620cfe7 1360
a885f0ec 1361/* if ($_SESSION["cookie_lifetime"] && $_SESSION["uid"]) {
d620cfe7 1362
8e849206 1363 //print_r($_SESSION);
d620cfe7
AD
1364
1365 if (time() > $_SESSION["cookie_lifetime"]) {
1366 return false;
1367 }
a885f0ec
AD
1368 } */
1369
916f788a
AD
1370 return true;
1371 }
1372
793185a9 1373 function login_sequence($link, $mobile = false) {
b8aa49bc 1374 if (!SINGLE_USER_MODE) {
75836f33 1375
461766f3
AD
1376 if (defined('_DEBUG_USER_SWITCH') && $_SESSION["uid"]) {
1377 $swu = db_escape_string($_REQUEST["swu"]);
1378 if ($swu) {
1379 $_SESSION["prefs_cache"] = false;
1380 return authenticate_user($link, $swu, null, true);
1381 }
1382 }
1383
7f0acba7 1384 $login_action = $_POST["login_action"];
a885f0ec 1385
01a87dff 1386 # try to authenticate user if called from login form
7f0acba7 1387 if ($login_action == "do_login") {
01a87dff
AD
1388 $login = $_POST["login"];
1389 $password = $_POST["password"];
d620cfe7 1390 $remember_me = $_POST["remember_me"];
f557cd78 1391
01a87dff
AD
1392 if (authenticate_user($link, $login, $password)) {
1393 $_POST["password"] = "";
d620cfe7 1394
f8c612d4
AD
1395 $_SESSION["language"] = $_POST["language"];
1396
d620cfe7
AD
1397 header("Location: " . $_SERVER["REQUEST_URI"]);
1398 exit;
1399
01a87dff 1400 return;
7f0acba7
AD
1401 } else {
1402 $_SESSION["login_error_msg"] = "Incorrect username or password";
01a87dff
AD
1403 }
1404 }
1405
1df0f48b
AD
1406// print session_id();
1407// print_r($_SESSION);
7f0acba7
AD
1408
1409 if (!$_SESSION["uid"] || !validate_session($link)) {
793185a9 1410 render_login_form($link, $mobile);
01a87dff 1411 exit;
d3687e7a
AD
1412 } else {
1413 /* bump login timestamp */
1414 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
1415 $_SESSION["uid"]);
019bd5a9 1416
d54780bc 1417 if ($_SESSION["language"] && SESSION_COOKIE_LIFETIME > 0) {
019bd5a9
AD
1418 setcookie("ttrss_lang", $_SESSION["language"],
1419 time() + SESSION_COOKIE_LIFETIME);
1420 }
b8aa49bc 1421 }
d620cfe7 1422
b8aa49bc 1423 } else {
0bbba72d 1424 return authenticate_user($link, "admin", null);
b8aa49bc
AD
1425 }
1426 }
3547842a
AD
1427
1428 function truncate_string($str, $max_len) {
12db369c
AD
1429 if (mb_strlen($str, "utf-8") > $max_len - 3) {
1430 return mb_substr($str, 0, $max_len, "utf-8") . "...";
3547842a
AD
1431 } else {
1432 return $str;
1433 }
1434 }
54a60e1a
AD
1435
1436 function get_user_theme_path($link) {
798f722b
AD
1437 $result = db_query($link, "SELECT theme_path
1438 FROM
1439 ttrss_themes,ttrss_users
1440 WHERE ttrss_themes.id = theme_id AND ttrss_users.id = " . $_SESSION["uid"]);
54a60e1a
AD
1441 if (db_num_rows($result) != 0) {
1442 return db_fetch_result($result, 0, "theme_path");
1443 } else {
1444 return null;
1445 }
1446 }
be773442
AD
1447
1448 function smart_date_time($timestamp) {
1449 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
1450 return date("G:i", $timestamp);
f26450f1 1451 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
1452 return date("M d, G:i", $timestamp);
1453 } else {
7d7e0509 1454 return date("Y/m/d, G:i", $timestamp);
be773442
AD
1455 }
1456 }
1457
1458 function smart_date($timestamp) {
1459 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
1460 return "Today";
f26450f1 1461 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
1462 return date("D m", $timestamp);
1463 } else {
b02111c2 1464 return date("Y/m/d", $timestamp);
be773442
AD
1465 }
1466 }
a654a595
AD
1467
1468 function sql_bool_to_string($s) {
1469 if ($s == "t" || $s == "1") {
1470 return "true";
1471 } else {
1472 return "false";
1473 }
1474 }
e3c99f3b
AD
1475
1476 function sql_bool_to_bool($s) {
1477 if ($s == "t" || $s == "1") {
1478 return true;
1479 } else {
1480 return false;
1481 }
1482 }
0ea4fb50 1483
e3c99f3b 1484
0ea4fb50
AD
1485 function toggleEvenOdd($a) {
1486 if ($a == "even")
1487 return "odd";
1488 else
1489 return "even";
1490 }
6043fb7e
AD
1491
1492 function sanity_check($link) {
9cbca41f 1493
aec3ce39
AD
1494 error_reporting(0);
1495
6043fb7e
AD
1496 $error_code = 0;
1497 $result = db_query($link, "SELECT schema_version FROM ttrss_version");
1498 $schema_version = db_fetch_result($result, 0, "schema_version");
1499
1500 if ($schema_version != SCHEMA_VERSION) {
1501 $error_code = 5;
1502 }
1503
aec3ce39
AD
1504 if (DB_TYPE == "mysql") {
1505 $result = db_query($link, "SELECT true", false);
1506 if (db_num_rows($result) != 1) {
1507 $error_code = 10;
1508 }
1509 }
1510
1511 error_reporting (DEFAULT_ERROR_LEVEL);
1512
6043fb7e 1513 if ($error_code != 0) {
aec3ce39 1514 print_error_xml($error_code);
6043fb7e
AD
1515 return false;
1516 } else {
1517 return true;
4220d6b0 1518 }
6043fb7e
AD
1519 }
1520
27981ca3
AD
1521 function file_is_locked($filename) {
1522 error_reporting(0);
1523 $fp = fopen($filename, "r");
1524 error_reporting(DEFAULT_ERROR_LEVEL);
1525 if ($fp) {
1526 if (flock($fp, LOCK_EX | LOCK_NB)) {
1527 flock($fp, LOCK_UN);
1528 fclose($fp);
1529 return false;
1530 }
1531 fclose($fp);
1532 return true;
1533 }
1534 return false;
1535 }
1536
fcb4c0c9
AD
1537 function make_lockfile($filename) {
1538 $fp = fopen($filename, "w");
1539
1540 if (flock($fp, LOCK_EX | LOCK_NB)) {
1541 return $fp;
1542 } else {
1543 return false;
1544 }
1545 }
1546
bf7fcde8
AD
1547 function make_stampfile($filename) {
1548 $fp = fopen($filename, "w");
1549
8e00ae9b 1550 if (flock($fp, LOCK_EX | LOCK_NB)) {
bf7fcde8 1551 fwrite($fp, time() . "\n");
8e00ae9b 1552 flock($fp, LOCK_UN);
bf7fcde8
AD
1553 fclose($fp);
1554 return true;
1555 } else {
1556 return false;
1557 }
1558 }
1559
8e00ae9b
AD
1560 function read_stampfile($filename) {
1561
1562 error_reporting(0);
1563 $fp = fopen($filename, "r");
1564 error_reporting (DEFAULT_ERROR_LEVEL);
1565
1566 if (flock($fp, LOCK_EX)) {
1567 $stamp = fgets($fp);
1568 flock($fp, LOCK_UN);
1569 fclose($fp);
1570 return $stamp;
1571 } else {
1572 return false;
1573 }
1574 }
bf7fcde8 1575
894ebcf5
AD
1576 function sql_random_function() {
1577 if (DB_TYPE == "mysql") {
1578 return "RAND()";
1579 } else {
1580 return "RANDOM()";
1581 }
1582 }
1583
23aa0d16 1584 function catchup_feed($link, $feed, $cat_view) {
88040f57
AD
1585
1586 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
23aa0d16
AD
1587
1588 if ($cat_view) {
1589
1590 if ($feed > 0) {
1591 $cat_qpart = "cat_id = '$feed'";
1592 } else {
1593 $cat_qpart = "cat_id IS NULL";
1594 }
1595
1596 $tmp_result = db_query($link, "SELECT id
1597 FROM ttrss_feeds WHERE $cat_qpart AND owner_uid = " .
1598 $_SESSION["uid"]);
1599
1600 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1601
1602 $tmp_feed = $tmp_line["id"];
1603
1604 db_query($link, "UPDATE ttrss_user_entries
1605 SET unread = false,last_read = NOW()
1606 WHERE feed_id = '$tmp_feed' AND owner_uid = " . $_SESSION["uid"]);
1607 }
1608
1609 } else if ($feed > 0) {
1610
1611 $tmp_result = db_query($link, "SELECT id
1612 FROM ttrss_feeds WHERE parent_feed = '$feed'
1613 ORDER BY cat_id,title");
1614
1615 $parent_ids = array();
1616
1617 if (db_num_rows($tmp_result) > 0) {
1618 while ($p = db_fetch_assoc($tmp_result)) {
1619 array_push($parent_ids, "feed_id = " . $p["id"]);
1620 }
1621
1622 $children_qpart = implode(" OR ", $parent_ids);
1623
1624 db_query($link, "UPDATE ttrss_user_entries
1625 SET unread = false,last_read = NOW()
1626 WHERE (feed_id = '$feed' OR $children_qpart)
1627 AND owner_uid = " . $_SESSION["uid"]);
1628
1629 } else {
1630 db_query($link, "UPDATE ttrss_user_entries
1631 SET unread = false,last_read = NOW()
1632 WHERE feed_id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
1633 }
1634
1635 } else if ($feed < 0 && $feed > -10) { // special, like starred
1636
1637 if ($feed == -1) {
1638 db_query($link, "UPDATE ttrss_user_entries
1639 SET unread = false,last_read = NOW()
1640 WHERE marked = true AND owner_uid = ".$_SESSION["uid"]);
1641 }
e4f4b46f
AD
1642
1643 if ($feed == -2) {
1644 db_query($link, "UPDATE ttrss_user_entries
1645 SET unread = false,last_read = NOW()
1646 WHERE published = true AND owner_uid = ".$_SESSION["uid"]);
1647 }
1648
2d24f032
AD
1649 if ($feed == -3) {
1650
c1d7e6c3
AD
1651 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE");
1652
2d24f032 1653 if (DB_TYPE == "pgsql") {
c1d7e6c3 1654 $match_part .= " AND date_entered > NOW() - INTERVAL '$intl hour' ";
2d24f032
AD
1655 } else {
1656 $match_part .= " AND date_entered > DATE_SUB(NOW(),
c1d7e6c3 1657 INTERVAL $intl HOUR) ";
2d24f032
AD
1658 }
1659
1660 db_query($link, "UPDATE ttrss_user_entries
1661 SET unread = false,last_read = NOW()
1662 WHERE $match_part AND owner_uid = ".$_SESSION["uid"]);
1663 }
1664
23aa0d16
AD
1665 } else if ($feed < -10) { // label
1666
1667 // TODO make this more efficient
1668
1669 $label_id = -$feed - 11;
1670
1671 $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
1672 WHERE id = '$label_id'");
1673
1674 if ($tmp_result) {
1675 $sql_exp = db_fetch_result($tmp_result, 0, "sql_exp");
1676
1677 db_query($link, "BEGIN");
1678
1679 $tmp2_result = db_query($link,
1680 "SELECT
1681 int_id
1682 FROM
88040f57 1683 ttrss_user_entries,ttrss_entries,ttrss_feeds
23aa0d16 1684 WHERE
88040f57
AD
1685 ref_id = ttrss_entries.id AND
1686 ttrss_user_entries.feed_id = ttrss_feeds.id AND
23aa0d16 1687 $sql_exp AND
88040f57 1688 ttrss_user_entries.owner_uid = " . $_SESSION["uid"]);
23aa0d16
AD
1689
1690 while ($tmp_line = db_fetch_assoc($tmp2_result)) {
1691 db_query($link, "UPDATE
1692 ttrss_user_entries
1693 SET
1694 unread = false, last_read = NOW()
1695 WHERE
1696 int_id = " . $tmp_line["int_id"]);
1697 }
1698
1699 db_query($link, "COMMIT");
1700
1701/* db_query($link, "UPDATE ttrss_user_entries,ttrss_entries
1702 SET unread = false,last_read = NOW()
1703 WHERE $sql_exp
1704 AND ref_id = id
1705 AND owner_uid = ".$_SESSION["uid"]); */
1706 }
1707 }
1708 } else { // tag
1709 db_query($link, "BEGIN");
1710
1711 $tag_name = db_escape_string($feed);
1712
1713 $result = db_query($link, "SELECT post_int_id FROM ttrss_tags
1714 WHERE tag_name = '$tag_name' AND owner_uid = " . $_SESSION["uid"]);
1715
1716 while ($line = db_fetch_assoc($result)) {
1717 db_query($link, "UPDATE ttrss_user_entries SET
1718 unread = false, last_read = NOW()
1719 WHERE int_id = " . $line["post_int_id"]);
1720 }
1721 db_query($link, "COMMIT");
1722 }
1723 }
1724
1725 function update_generic_feed($link, $feed, $cat_view) {
1726 if ($cat_view) {
1727
1728 if ($feed > 0) {
1729 $cat_qpart = "cat_id = '$feed'";
1730 } else {
1731 $cat_qpart = "cat_id IS NULL";
1732 }
1733
1734 $tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
1735 WHERE $cat_qpart AND owner_uid = " . $_SESSION["uid"]);
1736
1737 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1738 $feed_url = $tmp_line["feed_url"];
1739 update_rss_feed($link, $feed_url, $feed, ENABLE_UPDATE_DAEMON);
1740 }
1741
1742 } else {
1743 $tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
1744 WHERE id = '$feed'");
1745 $feed_url = db_fetch_result($tmp_result, 0, "feed_url");
1746 update_rss_feed($link, $feed_url, $feed, ENABLE_UPDATE_DAEMON);
1747 }
1748 }
a9cb1f83 1749
2bc2147f 1750 function getAllCounters($link, $omode = "flc") {
cf4d339c 1751/* getLabelCounters($link);
a9cb1f83
AD
1752 getFeedCounters($link);
1753 getTagCounters($link);
1754 getGlobalCounters($link);
1755 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1756 getCategoryCounters($link);
cf4d339c
AD
1757 } */
1758
2bc2147f 1759 if (!$omode) $omode = "flc";
cf4d339c
AD
1760
1761 getGlobalCounters($link);
1762
1763 if (strchr($omode, "l")) getLabelCounters($link);
1764 if (strchr($omode, "f")) getFeedCounters($link);
1765 if (strchr($omode, "t")) getTagCounters($link);
1766 if (strchr($omode, "c")) {
1767 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1768 getCategoryCounters($link);
1769 }
a9cb1f83
AD
1770 }
1771 }
1772
1773 function getCategoryCounters($link) {
bba7c4bf
AD
1774 # two special categories are -1 and -2 (all virtuals; all labels)
1775
1776 $ctr = getCategoryUnread($link, -1);
1777
1778 print "<counter type=\"category\" id=\"-1\" counter=\"$ctr\"/>";
1779
1780 $ctr = getCategoryUnread($link, -2);
1781
1782 print "<counter type=\"category\" id=\"-2\" counter=\"$ctr\"/>";
1783
a9cb1f83
AD
1784 $result = db_query($link, "SELECT cat_id,SUM((SELECT COUNT(int_id)
1785 FROM ttrss_user_entries WHERE feed_id = ttrss_feeds.id
1786 AND unread = true)) AS unread FROM ttrss_feeds
1787 WHERE
cfb02131 1788 hidden = false AND owner_uid = ".$_SESSION["uid"]." GROUP BY cat_id");
a9cb1f83
AD
1789
1790 while ($line = db_fetch_assoc($result)) {
1791 $line["cat_id"] = sprintf("%d", $line["cat_id"]);
1792 print "<counter type=\"category\" id=\"".$line["cat_id"]."\" counter=\"".
1793 $line["unread"]."\"/>";
1794 }
1795 }
1796
f295c368
AD
1797 function getCategoryUnread($link, $cat) {
1798
bba7c4bf 1799 if ($cat >= 0) {
18664970 1800
bba7c4bf
AD
1801 if ($cat != 0) {
1802 $cat_query = "cat_id = '$cat'";
1803 } else {
1804 $cat_query = "cat_id IS NULL";
1805 }
1806
1807 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE $cat_query
1808 AND hidden = false
1809 AND owner_uid = " . $_SESSION["uid"]);
1810
1811 $cat_feeds = array();
1812 while ($line = db_fetch_assoc($result)) {
1813 array_push($cat_feeds, "feed_id = " . $line["id"]);
1814 }
1815
1816 if (count($cat_feeds) == 0) return 0;
1817
1818 $match_part = implode(" OR ", $cat_feeds);
1819
1820 $result = db_query($link, "SELECT COUNT(int_id) AS unread
1821 FROM ttrss_user_entries
1822 WHERE unread = true AND ($match_part) AND owner_uid = " . $_SESSION["uid"]);
1823
1824 $unread = 0;
1825
1826 # this needs to be rewritten
1827 while ($line = db_fetch_assoc($result)) {
1828 $unread += $line["unread"];
1829 }
1830
1831 return $unread;
1832 } else if ($cat == -1) {
2d24f032 1833 return getFeedUnread($link, -1) + getFeedUnread($link, -2) + getFeedUnread($link, -3);
bba7c4bf 1834 } else if ($cat == -2) {
f295c368 1835
bba7c4bf
AD
1836 $rv = getLabelCounters($link, false, true);
1837 $ctr = 0;
f295c368 1838
bba7c4bf
AD
1839 foreach (array_keys($rv) as $k) {
1840 if ($k < -10) {
1841 $ctr += $rv[$k]["counter"];
1842 }
1843 }
f295c368 1844
bba7c4bf 1845 return $ctr;
f295c368 1846 }
f295c368
AD
1847 }
1848
1849 function getFeedUnread($link, $feed, $is_cat = false) {
a9cb1f83 1850 $n_feed = sprintf("%d", $feed);
f295c368
AD
1851
1852 if ($is_cat) {
831ff047 1853 return getCategoryUnread($link, $n_feed);
f295c368 1854 } else if ($n_feed == -1) {
a9cb1f83 1855 $match_part = "marked = true";
e4f4b46f
AD
1856 } else if ($n_feed == -2) {
1857 $match_part = "published = true";
2d24f032
AD
1858 } else if ($n_feed == -3) {
1859 $match_part = "unread = true";
1860
c1d7e6c3
AD
1861 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE");
1862
2d24f032 1863 if (DB_TYPE == "pgsql") {
c1d7e6c3 1864 $match_part .= " AND date_entered > NOW() - INTERVAL '$intl hour' ";
2d24f032 1865 } else {
c1d7e6c3 1866 $match_part .= " AND date_entered > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
2d24f032
AD
1867 }
1868
4919fb42 1869 } else if ($n_feed > 0) {
831ff047 1870
e8b8485f
AD
1871 $result = db_query($link, "SELECT id FROM ttrss_feeds
1872 WHERE parent_feed = '$n_feed'
318260cc 1873 AND hidden = false
4919fb42 1874 AND owner_uid = " . $_SESSION["uid"]);
831ff047
AD
1875
1876 if (db_num_rows($result) > 0) {
4919fb42 1877
831ff047
AD
1878 $linked_feeds = array();
1879 while ($line = db_fetch_assoc($result)) {
1880 array_push($linked_feeds, "feed_id = " . $line["id"]);
1881 }
e8b8485f
AD
1882
1883 array_push($linked_feeds, "feed_id = $n_feed");
831ff047
AD
1884
1885 $match_part = implode(" OR ", $linked_feeds);
1886
4919fb42 1887 $result = db_query($link, "SELECT COUNT(int_id) AS unread
318260cc 1888 FROM ttrss_user_entries
e8b8485f
AD
1889 WHERE unread = true AND ($match_part)
1890 AND owner_uid = " . $_SESSION["uid"]);
4919fb42
AD
1891
1892 $unread = 0;
1893
1894 # this needs to be rewritten
1895 while ($line = db_fetch_assoc($result)) {
1896 $unread += $line["unread"];
1897 }
1898
1899 return $unread;
1900
831ff047
AD
1901 } else {
1902 $match_part = "feed_id = '$n_feed'";
1903 }
a9cb1f83 1904 } else if ($feed < -10) {
318260cc 1905
a9cb1f83
AD
1906 $label_id = -$feed - 11;
1907
1908 $result = db_query($link, "SELECT sql_exp FROM ttrss_labels WHERE
1909 id = '$label_id' AND owner_uid = " . $_SESSION["uid"]);
1910
1911 $match_part = db_fetch_result($result, 0, "sql_exp");
1912 }
1913
1914 if ($match_part) {
1915
1916 $result = db_query($link, "SELECT count(int_id) AS unread
88040f57
AD
1917 FROM ttrss_user_entries,ttrss_feeds,ttrss_entries WHERE
1918 ttrss_user_entries.feed_id = ttrss_feeds.id AND
1919 ttrss_user_entries.ref_id = ttrss_entries.id AND
cfb02131 1920 ttrss_feeds.hidden = false AND
88040f57 1921 unread = true AND ($match_part) AND ttrss_user_entries.owner_uid = " . $_SESSION["uid"]);
a9cb1f83
AD
1922
1923 } else {
1924
1925 $result = db_query($link, "SELECT COUNT(post_int_id) AS unread
1926 FROM ttrss_tags,ttrss_user_entries
1927 WHERE tag_name = '$feed' AND post_int_id = int_id AND unread = true AND
1928 ttrss_tags.owner_uid = " . $_SESSION["uid"]);
1929 }
1930
1931 $unread = db_fetch_result($result, 0, "unread");
cfb02131 1932
a9cb1f83
AD
1933 return $unread;
1934 }
1935
1936 /* FIXME this needs reworking */
1937
f3acc32e
AD
1938 function getGlobalUnread($link, $user_id = false) {
1939
1940 if (!$user_id) {
1941 $user_id = $_SESSION["uid"];
1942 }
1943
3831db41 1944 $result = db_query($link, "SELECT count(ttrss_entries.id) as c_id FROM ttrss_entries,ttrss_user_entries,ttrss_feeds
a9cb1f83 1945 WHERE unread = true AND
3831db41 1946 ttrss_user_entries.feed_id = ttrss_feeds.id AND
a9cb1f83 1947 ttrss_user_entries.ref_id = ttrss_entries.id AND
3831db41 1948 hidden = false AND
f3acc32e 1949 ttrss_user_entries.owner_uid = '$user_id'");
a9cb1f83
AD
1950 $c_id = db_fetch_result($result, 0, "c_id");
1951 return $c_id;
1952 }
1953
1954 function getGlobalCounters($link, $global_unread = -1) {
1955 if ($global_unread == -1) {
1956 $global_unread = getGlobalUnread($link);
1957 }
7bf7e4d3
AD
1958 print "<counter type=\"global\" id='global-unread'
1959 counter='$global_unread'/>";
1960
1961 $result = db_query($link, "SELECT COUNT(id) AS fn FROM
1962 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
1963
1964 $subscribed_feeds = db_fetch_result($result, 0, "fn");
1965
1966 print "<counter type=\"global\" id='subscribed-feeds'
1967 counter='$subscribed_feeds'/>";
1968
a9cb1f83
AD
1969 }
1970
1971 function getTagCounters($link, $smart_mode = SMART_RPC_COUNTERS) {
1972
1973 if ($smart_mode) {
1974 if (!$_SESSION["tctr_last_value"]) {
1975 $_SESSION["tctr_last_value"] = array();
1976 }
1977 }
1978
1979 $old_counters = $_SESSION["tctr_last_value"];
1980
1981 $tctrs_modified = false;
1982
1983/* $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
1984 FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
1985 ttrss_user_entries.ref_id = ttrss_entries.id AND
1986 ttrss_tags.owner_uid = ".$_SESSION["uid"]." AND
1987 post_int_id = ttrss_user_entries.int_id AND unread = true GROUP BY tag_name
1988 UNION
1989 select tag_name,0 as count FROM ttrss_tags
1990 WHERE ttrss_tags.owner_uid = ".$_SESSION["uid"]); */
1991
1992 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
1993 FROM ttrss_user_entries WHERE int_id = post_int_id
1994 AND unread = true)) AS count FROM ttrss_tags
ef1ac7c7
AD
1995 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name
1996 ORDER BY count DESC LIMIT 55");
a9cb1f83
AD
1997
1998 $tags = array();
1999
2000 while ($line = db_fetch_assoc($result)) {
2001 $tags[$line["tag_name"]] += $line["count"];
2002 }
2003
2004 foreach (array_keys($tags) as $tag) {
2005 $unread = $tags[$tag];
2006
2007 $tag = htmlspecialchars($tag);
2008
2009 if (!$smart_mode || $old_counters[$tag] != $unread) {
2010 $old_counters[$tag] = $unread;
2011 $tctrs_modified = true;
2012 print "<counter type=\"tag\" id=\"$tag\" counter=\"$unread\"/>";
2013 }
2014
2015 }
2016
2017 if ($smart_mode && $tctrs_modified) {
2018 $_SESSION["tctr_last_value"] = $old_counters;
2019 }
2020
2021 }
2022
ef393de7 2023 function getLabelCounters($link, $smart_mode = SMART_RPC_COUNTERS, $ret_mode = false) {
a9cb1f83
AD
2024
2025 if ($smart_mode) {
2026 if (!$_SESSION["lctr_last_value"]) {
2027 $_SESSION["lctr_last_value"] = array();
2028 }
2029 }
2030
ef393de7
AD
2031 $ret_arr = array();
2032
a9cb1f83
AD
2033 $old_counters = $_SESSION["lctr_last_value"];
2034 $lctrs_modified = false;
2035
2d24f032 2036 $count = getFeedUnread($link, -1);
a9cb1f83 2037
ef393de7
AD
2038 if (!$ret_mode) {
2039 print "<counter type=\"label\" id=\"-1\" counter=\"$count\"/>";
2040 } else {
2041 $ret_arr["-1"]["counter"] = $count;
bba7c4bf 2042 $ret_arr["-1"]["description"] = __("Starred articles");
ef393de7 2043 }
a9cb1f83 2044
2d24f032 2045 $count = getFeedUnread($link, -2);
e4f4b46f
AD
2046
2047 if (!$ret_mode) {
2048 print "<counter type=\"label\" id=\"-2\" counter=\"$count\"/>";
2049 } else {
2050 $ret_arr["-2"]["counter"] = $count;
bba7c4bf 2051 $ret_arr["-2"]["description"] = __("Published articles");
e4f4b46f
AD
2052 }
2053
2d24f032
AD
2054 $count = getFeedUnread($link, -3);
2055
2056 if (!$ret_mode) {
2057 print "<counter type=\"label\" id=\"-3\" counter=\"$count\"/>";
2058 } else {
2059 $ret_arr["-3"]["counter"] = $count;
2060 $ret_arr["-3"]["description"] = __("Fresh articles");
2061 }
2062
e4f4b46f 2063
a9cb1f83
AD
2064 $result = db_query($link, "SELECT owner_uid,id,sql_exp,description FROM
2065 ttrss_labels WHERE owner_uid = ".$_SESSION["uid"]." ORDER by description");
2066
2067 while ($line = db_fetch_assoc($result)) {
2068
2069 $id = -$line["id"] - 11;
2070
ef393de7
AD
2071 $label_name = $line["description"];
2072
a9cb1f83
AD
2073 error_reporting (0);
2074
88040f57 2075 $tmp_result = db_query($link, "SELECT count(ttrss_entries.id) as count FROM ttrss_user_entries,ttrss_entries,ttrss_feeds
a9cb1f83 2076 WHERE (" . $line["sql_exp"] . ") AND unread = true AND
cfb02131 2077 ttrss_feeds.hidden = false AND
88040f57 2078 ttrss_user_entries.feed_id = ttrss_feeds.id AND
a9cb1f83 2079 ttrss_user_entries.ref_id = ttrss_entries.id AND
88040f57 2080 ttrss_user_entries.owner_uid = ".$_SESSION["uid"]);
a9cb1f83
AD
2081
2082 $count = db_fetch_result($tmp_result, 0, "count");
2083
2084 if (!$smart_mode || $old_counters[$id] != $count) {
2085 $old_counters[$id] = $count;
2086 $lctrs_modified = true;
ef393de7
AD
2087 if (!$ret_mode) {
2088 print "<counter type=\"label\" id=\"$id\" counter=\"$count\"/>";
2089 } else {
2090 $ret_arr[$id]["counter"] = $count;
2091 $ret_arr[$id]["description"] = $label_name;
2092 }
a9cb1f83
AD
2093 }
2094
2095 error_reporting (DEFAULT_ERROR_LEVEL);
2096 }
2097
2098 if ($smart_mode && $lctrs_modified) {
2099 $_SESSION["lctr_last_value"] = $old_counters;
2100 }
ef393de7
AD
2101
2102 return $ret_arr;
a9cb1f83
AD
2103 }
2104
2105/* function getFeedCounter($link, $id) {
2106
2107 $result = db_query($link, "SELECT
2108 count(id) as count,last_error
2109 FROM ttrss_entries,ttrss_user_entries,ttrss_feeds
2110 WHERE feed_id = '$id' AND unread = true
2111 AND ttrss_user_entries.feed_id = ttrss_feeds.id
2112 AND ttrss_user_entries.ref_id = ttrss_entries.id");
2113
2114 $count = db_fetch_result($result, 0, "count");
2115 $last_error = htmlspecialchars(db_fetch_result($result, 0, "last_error"));
2116
2117 print "<counter type=\"feed\" id=\"$id\" counter=\"$count\" error=\"$last_error\"/>";
2118 } */
2119
2120 function getFeedCounters($link, $smart_mode = SMART_RPC_COUNTERS) {
2121
2122 if ($smart_mode) {
2123 if (!$_SESSION["fctr_last_value"]) {
2124 $_SESSION["fctr_last_value"] = array();
2125 }
2126 }
2127
2128 $old_counters = $_SESSION["fctr_last_value"];
2129
1b1b8a7b 2130/* $result = db_query($link, "SELECT id,last_error,parent_feed,
fb1fb4ab 2131 SUBSTRING(last_updated,1,19) AS last_updated,
a9cb1f83
AD
2132 (SELECT count(id)
2133 FROM ttrss_entries,ttrss_user_entries
2134 WHERE feed_id = ttrss_feeds.id AND
2135 ttrss_user_entries.ref_id = ttrss_entries.id
2136 AND unread = true AND owner_uid = ".$_SESSION["uid"].") as count
2137 FROM ttrss_feeds WHERE owner_uid = ".$_SESSION["uid"] . "
1b1b8a7b
AD
2138 AND parent_feed IS NULL"); */
2139
2140 $result = db_query($link, "SELECT ttrss_feeds.id,
2141 SUBSTRING(ttrss_feeds.last_updated,1,19) AS last_updated,
2142 last_error,
bc60fda3 2143 COUNT(ttrss_entries.id) AS count
1b1b8a7b
AD
2144 FROM ttrss_feeds
2145 LEFT JOIN ttrss_user_entries ON (ttrss_user_entries.feed_id = ttrss_feeds.id
2146 AND ttrss_user_entries.owner_uid = ttrss_feeds.owner_uid
2147 AND ttrss_user_entries.unread = true)
2148 LEFT JOIN ttrss_entries ON (ttrss_user_entries.ref_id = ttrss_entries.id)
2149 WHERE ttrss_feeds.owner_uid = ".$_SESSION["uid"]."
2150 AND parent_feed IS NULL
2151 GROUP BY ttrss_feeds.id, ttrss_feeds.title, ttrss_feeds.last_updated, last_error");
a9cb1f83
AD
2152
2153 $fctrs_modified = false;
2154
fb1fb4ab
AD
2155 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
2156
a9cb1f83
AD
2157 while ($line = db_fetch_assoc($result)) {
2158
2159 $id = $line["id"];
2160 $count = $line["count"];
2161 $last_error = htmlspecialchars($line["last_error"]);
fb1fb4ab
AD
2162
2163 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
2164 $last_updated = smart_date_time(strtotime($line["last_updated"]));
2165 } else {
2166 $last_updated = date($short_date, strtotime($line["last_updated"]));
2167 }
2168
a9cb1f83
AD
2169 $has_img = is_file(ICONS_DIR . "/$id.ico");
2170
2171 $tmp_result = db_query($link,
2172 "SELECT id,COUNT(unread) AS unread
2173 FROM ttrss_feeds LEFT JOIN ttrss_user_entries
2174 ON (ttrss_feeds.id = ttrss_user_entries.feed_id)
2175 WHERE parent_feed = '$id' AND unread = true GROUP BY ttrss_feeds.id");
2176
2177 if (db_num_rows($tmp_result) > 0) {
2178 while ($l = db_fetch_assoc($tmp_result)) {
2179 $count += $l["unread"];
2180 }
2181 }
2182
2183 if (!$smart_mode || $old_counters[$id] != $count) {
2184 $old_counters[$id] = $count;
2185 $fctrs_modified = true;
2186
2187 if ($last_error) {
2188 $error_part = "error=\"$last_error\"";
2189 } else {
2190 $error_part = "";
2191 }
2192
2193 if ($has_img) {
2194 $has_img_part = "hi=\"$has_img\"";
2195 } else {
2196 $has_img_part = "";
2197 }
2198
fb1fb4ab 2199 print "<counter type=\"feed\" id=\"$id\" counter=\"$count\" $has_img_part $error_part updated=\"$last_updated\"/>";
a9cb1f83
AD
2200 }
2201 }
2202
2203 if ($smart_mode && $fctrs_modified) {
2204 $_SESSION["fctr_last_value"] = $old_counters;
2205 }
2206 }
2207
1b758780 2208 function get_script_dt_add() {
34e420fb 2209 if (strpos(VERSION, ".99") === false) {
1b758780
AD
2210 return VERSION;
2211 } else {
2212 return time();
2213 }
2214 }
2215
6e7f8d26
AD
2216 function get_pgsql_version($link) {
2217 $result = db_query($link, "SELECT version() AS version");
2218 $version = split(" ", db_fetch_result($result, 0, "version"));
2219 return $version[1];
2220 }
2221
af106b0e
AD
2222 function print_error_xml($code, $add_msg = "") {
2223 global $ERRORS;
2224
2225 $error_msg = $ERRORS[$code];
2226
2227 if ($add_msg) {
2228 $error_msg = "$error_msg; $add_msg";
2229 }
2230
4c2abbc1 2231 print "<rpc-reply>";
af106b0e 2232 print "<error error-code=\"$code\" error-msg=\"$error_msg\"/>";
4c2abbc1 2233 print "</rpc-reply>";
af106b0e 2234 }
956c7629 2235
f27de515
AD
2236 function subscribe_to_feed($link, $feed_link, $cat_id = 0,
2237 $auth_login = '', $auth_pass = '') {
bb0f29a4 2238
b3dfe8ba 2239 # check for feed:http://url
c91c2249
AD
2240 $feed_link = trim(preg_replace("/^feed:/", "", $feed_link));
2241
b3dfe8ba 2242 # check for feed://URL
e2d84cdb 2243 if (strpos($feed_link, "//") === 0) {
b3dfe8ba
AD
2244 $feed_link = "http:$feed_link";
2245 }
2246
c91c2249 2247 if ($feed_link == "") return;
bb0f29a4 2248
956c7629
AD
2249 if ($cat_id == "0" || !$cat_id) {
2250 $cat_qpart = "NULL";
2251 } else {
2252 $cat_qpart = "'$cat_id'";
2253 }
2254
2255 $result = db_query($link,
2256 "SELECT id FROM ttrss_feeds
2257 WHERE feed_url = '$feed_link' AND owner_uid = ".$_SESSION["uid"]);
2258
2259 if (db_num_rows($result) == 0) {
2260
2261 $result = db_query($link,
f27de515
AD
2262 "INSERT INTO ttrss_feeds
2263 (owner_uid,feed_url,title,cat_id, auth_login,auth_pass)
956c7629 2264 VALUES ('".$_SESSION["uid"]."', '$feed_link',
f27de515 2265 '[Unknown]', $cat_qpart, '$auth_login', '$auth_pass')");
956c7629
AD
2266
2267 $result = db_query($link,
2268 "SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_link'
f27de515 2269 AND owner_uid = " . $_SESSION["uid"]);
956c7629
AD
2270
2271 $feed_id = db_fetch_result($result, 0, "id");
2272
2273 if ($feed_id) {
2274 update_rss_feed($link, $feed_link, $feed_id, true);
2275 }
2276
2277 return true;
2278 } else {
2279 return false;
2280 }
2281 }
2282
673d54ca
AD
2283 function print_feed_select($link, $id, $default_id = "",
2284 $attributes = "", $include_all_feeds = true) {
2285
79f3553b 2286 print "<select id=\"$id\" name=\"$id\" $attributes>";
673d54ca 2287 if ($include_all_feeds) {
89cb787e 2288 print "<option value=\"0\">".__('All feeds')."</option>";
673d54ca
AD
2289 }
2290
2291 $result = db_query($link, "SELECT id,title FROM ttrss_feeds
2292 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
2293
2294 if (db_num_rows($result) > 0 && $include_all_feeds) {
2295 print "<option disabled>--------</option>";
2296 }
2297
2298 while ($line = db_fetch_assoc($result)) {
2299 if ($line["id"] == $default_id) {
2300 $is_selected = "selected";
2301 } else {
2302 $is_selected = "";
2303 }
79f3553b 2304 printf("<option $is_selected value='%d'>%s</option>",
47439031 2305 $line["id"], htmlspecialchars($line["title"]));
673d54ca
AD
2306 }
2307
2308 print "</select>";
2309 }
2310
2311 function print_feed_cat_select($link, $id, $default_id = "",
2312 $attributes = "", $include_all_cats = true) {
2313
79f3553b 2314 print "<select id=\"$id\" name=\"$id\" $attributes>";
673d54ca
AD
2315
2316 if ($include_all_cats) {
d1db26aa 2317 print "<option value=\"0\">".__('Uncategorized')."</option>";
673d54ca
AD
2318 }
2319
2320 $result = db_query($link, "SELECT id,title FROM ttrss_feed_categories
2321 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
2322
2323 if (db_num_rows($result) > 0 && $include_all_cats) {
2324 print "<option disabled>--------</option>";
2325 }
2326
2327 while ($line = db_fetch_assoc($result)) {
2328 if ($line["id"] == $default_id) {
2329 $is_selected = "selected";
2330 } else {
2331 $is_selected = "";
2332 }
14f69488 2333 printf("<option $is_selected value='%d'>%s</option>",
47439031 2334 $line["id"], htmlspecialchars($line["title"]));
673d54ca
AD
2335 }
2336
2337 print "</select>";
2338 }
2339
14f69488
AD
2340 function checkbox_to_sql_bool($val) {
2341 return ($val == "on") ? "true" : "false";
2342 }
86b682ce
AD
2343
2344 function getFeedCatTitle($link, $id) {
2345 if ($id == -1) {
d1db26aa 2346 return __("Special");
86b682ce 2347 } else if ($id < -10) {
d1db26aa 2348 return __("Labels");
86b682ce
AD
2349 } else if ($id > 0) {
2350 $result = db_query($link, "SELECT ttrss_feed_categories.title
2351 FROM ttrss_feeds, ttrss_feed_categories WHERE ttrss_feeds.id = '$id' AND
2352 cat_id = ttrss_feed_categories.id");
2353 if (db_num_rows($result) == 1) {
2354 return db_fetch_result($result, 0, "title");
2355 } else {
d1db26aa 2356 return __("Uncategorized");
86b682ce
AD
2357 }
2358 } else {
2359 return "getFeedCatTitle($id) failed";
2360 }
2361
2362 }
2363
2364 function getFeedTitle($link, $id) {
2365 if ($id == -1) {
d1db26aa 2366 return __("Starred articles");
945c243e
AD
2367 } else if ($id == -2) {
2368 return __("Published articles");
2d24f032
AD
2369 } else if ($id == -3) {
2370 return __("Fresh articles");
86b682ce
AD
2371 } else if ($id < -10) {
2372 $label_id = -10 - $id;
2373 $result = db_query($link, "SELECT description FROM ttrss_labels WHERE id = '$label_id'");
2374 if (db_num_rows($result) == 1) {
2375 return db_fetch_result($result, 0, "description");
2376 } else {
2377 return "Unknown label ($label_id)";
2378 }
2379
2380 } else if ($id > 0) {
2381 $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$id'");
2382 if (db_num_rows($result) == 1) {
2383 return db_fetch_result($result, 0, "title");
2384 } else {
2385 return "Unknown feed ($id)";
2386 }
2387 } else {
2388 return "getFeedTitle($id) failed";
2389 }
2390
2391 }
3dd46f19
AD
2392
2393 function get_session_cookie_name() {
2394 return ((!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid" : TTRSS_SESSION_NAME);
2395 }
3ac2b520
AD
2396
2397 function print_init_params($link) {
2398 print "<init-params>";
2399 if ($_SESSION["stored-params"]) {
2400 foreach (array_keys($_SESSION["stored-params"]) as $key) {
5f57b06d
AD
2401 if ($key) {
2402 $value = htmlspecialchars($_SESSION["stored-params"][$key]);
2403 print "<param key=\"$key\" value=\"$value\"/>";
2404 }
3ac2b520
AD
2405 }
2406 }
2407
2408 print "<param key=\"daemon_enabled\" value=\"" . ENABLE_UPDATE_DAEMON . "\"/>";
2409 print "<param key=\"feeds_frame_refresh\" value=\"" . FEEDS_FRAME_REFRESH . "\"/>";
0d51e25d 2410 print "<param key=\"daemon_refresh_only\" value=\"" . DAEMON_REFRESH_ONLY . "\"/>";
3ac2b520
AD
2411
2412 print "<param key=\"on_catchup_show_next_feed\" value=\"" .
2413 get_pref($link, "ON_CATCHUP_SHOW_NEXT_FEED") . "\"/>";
2414
e8bd0da9 2415 print "<param key=\"hide_read_feeds\" value=\"" .
465ff90b 2416 (int) get_pref($link, "HIDE_READ_FEEDS") . "\"/>";
e8bd0da9 2417
c9268ed5 2418 print "<param key=\"feeds_sort_by_unread\" value=\"" .
465ff90b 2419 (int) get_pref($link, "FEEDS_SORT_BY_UNREAD") . "\"/>";
c9268ed5 2420
f6d6e22f 2421 print "<param key=\"confirm_feed_catchup\" value=\"" .
465ff90b 2422 (int) get_pref($link, "CONFIRM_FEED_CATCHUP") . "\"/>";
f6d6e22f 2423
ac7bcd71 2424 print "<param key=\"cdm_auto_catchup\" value=\"" .
465ff90b 2425 (int) get_pref($link, "CDM_AUTO_CATCHUP") . "\"/>";
ac7bcd71 2426
8e9c121b
AD
2427 print "<param key=\"icons_url\" value=\"" . ICONS_URL . "\"/>";
2428
be0801a1
AD
2429 print "<param key=\"cookie_lifetime\" value=\"" . SESSION_COOKIE_LIFETIME . "\"/>";
2430
40496720
AD
2431 print "<param key=\"default_view_mode\" value=\"" .
2432 get_pref($link, "_DEFAULT_VIEW_MODE") . "\"/>";
2433
2434 print "<param key=\"default_view_limit\" value=\"" .
465ff90b 2435 (int) get_pref($link, "_DEFAULT_VIEW_LIMIT") . "\"/>";
40496720 2436
fe8d2059
AD
2437 print "<param key=\"prefs_active_tab\" value=\"" .
2438 get_pref($link, "_PREFS_ACTIVE_TAB") . "\"/>";
2439
465ff90b
AD
2440 print "<param key=\"infobox_disable_overlay\" value=\"" .
2441 get_pref($link, "_INFOBOX_DISABLE_OVERLAY") . "\"/>";
2442
527c3bf0
AD
2443 print "<param key=\"icons_location\" value=\"" .
2444 ICONS_URL . "\"/>";
2445
3ac2b520
AD
2446 print "</init-params>";
2447 }
f54f515f
AD
2448
2449 function print_runtime_info($link) {
2450 print "<runtime-info>";
71ad883b
AD
2451 if (ENABLE_UPDATE_DAEMON) {
2452 print "<param key=\"daemon_is_running\" value=\"".
2453 sprintf("%d", file_is_locked("update_daemon.lock")) . "\"/>";
8e00ae9b 2454
784b47a3 2455 if ($_SESSION["daemon_stamp_check"] + 600 < time()) {
8e00ae9b
AD
2456
2457 $stamp = (int)read_stampfile("update_daemon.stamp");
2458
2459 if ($stamp) {
2460 if ($stamp + 86400*3 < time()) {
2461 print "<param key=\"daemon_stamp_ok\" value=\"0\"/>";
2462 } else {
2463 print "<param key=\"daemon_stamp_ok\" value=\"1\"/>";
2464 }
2465
2466 $stamp_fmt = date("Y.m.d, G:i", $stamp);
2467
2468 print "<param key=\"daemon_stamp\" value=\"$stamp_fmt\"/>";
2469 }
2470
2471 $_SESSION["daemon_stamp_check"] = time();
2472 }
71ad883b 2473 }
8e00ae9b 2474
d9fa39f1
AD
2475 if (CHECK_FOR_NEW_VERSION && $_SESSION["access_level"] >= 10) {
2476
c04206e5 2477 if ($_SESSION["last_version_check"] + 7200 < time()) {
d9fa39f1
AD
2478 $new_version_details = check_for_update($link);
2479
2480 print "<param key=\"new_version_available\" value=\"".
2481 sprintf("%d", $new_version_details != ""). "\"/>";
2482
2483 $_SESSION["last_version_check"] = time();
2484 }
2485 }
2486
f54f515f
AD
2487 print "</runtime-info>";
2488 }
ef393de7 2489
88040f57 2490 function getSearchSql($search, $match_on) {
ef393de7 2491
88040f57 2492 $search_query_part = "";
e20c9d88 2493
88040f57
AD
2494 $keywords = split(" ", $search);
2495 $query_keywords = array();
e20c9d88 2496
88040f57 2497 if ($match_on == "both") {
e20c9d88 2498
88040f57
AD
2499 foreach ($keywords as $k) {
2500 array_push($query_keywords, "(UPPER(ttrss_entries.title) LIKE UPPER('%$k%')
2501 OR UPPER(ttrss_entries.content) LIKE UPPER('%$k%'))");
2502 }
e20c9d88 2503
88040f57 2504 $search_query_part = implode("AND", $query_keywords) . " AND ";
e20c9d88 2505
88040f57 2506 } else if ($match_on == "title") {
e20c9d88 2507
88040f57
AD
2508 foreach ($keywords as $k) {
2509 array_push($query_keywords, "(UPPER(ttrss_entries.title) LIKE UPPER('%$k%'))");
2510 }
e20c9d88 2511
88040f57 2512 $search_query_part = implode("AND", $query_keywords) . " AND ";
e20c9d88 2513
88040f57
AD
2514 } else if ($match_on == "content") {
2515
2516 foreach ($keywords as $k) {
2517 array_push($query_keywords, "(UPPER(ttrss_entries.content) LIKE UPPER('%$k%'))");
2518 }
2519 }
2520
2521 $search_query_part = implode("AND", $query_keywords);
2522
2523 return $search_query_part;
2524 }
2525
c36bf4d5
AD
2526 function queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view, $search, $search_mode, $match_on, $override_order = false, $offset = 0, $owner_uid = 0) {
2527
2528 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
c1a0b534 2529
88040f57
AD
2530 if ($search) {
2531
2532 $search_query_part = getSearchSql($search, $match_on);
2533 $search_query_part .= " AND ";
e20c9d88 2534
ef393de7
AD
2535 } else {
2536 $search_query_part = "";
2537 }
2538
2539 $view_query_part = "";
2540
2541 if ($view_mode == "adaptive") {
2542 if ($search) {
2543 $view_query_part = " ";
2544 } else if ($feed != -1) {
f295c368 2545 $unread = getFeedUnread($link, $feed, $cat_view);
ef393de7
AD
2546 if ($unread > 0) {
2547 $view_query_part = " unread = true AND ";
2548 }
2549 }
2550 }
2551
2552 if ($view_mode == "marked") {
2553 $view_query_part = " marked = true AND ";
2554 }
2555
2556 if ($view_mode == "unread") {
2557 $view_query_part = " unread = true AND ";
2558 }
2559
2560 if ($limit > 0) {
2561 $limit_query_part = "LIMIT " . $limit;
2562 }
2563
2564 $vfeed_query_part = "";
2565
2566 // override query strategy and enable feed display when searching globally
2567 if ($search && $search_mode == "all_feeds") {
2568 $query_strategy_part = "ttrss_entries.id > 0";
2569 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2570 } else if (preg_match("/^-?[0-9][0-9]*$/", $feed) == false) {
2571 $query_strategy_part = "ttrss_entries.id > 0";
2572 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
2573 id = feed_id) as feed_title,";
2574 } else if ($feed >= 0 && $search && $search_mode == "this_cat") {
2575
2576 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
0a6c4846
AD
2577
2578 $tmp_result = false;
2579
2580 if ($cat_view) {
2581 $tmp_result = db_query($link, "SELECT id
2582 FROM ttrss_feeds WHERE cat_id = '$feed'");
2583 } else {
2584 $tmp_result = db_query($link, "SELECT id
2585 FROM ttrss_feeds WHERE cat_id = (SELECT cat_id FROM ttrss_feeds
2586 WHERE id = '$feed') AND id != '$feed'");
2587 }
ef393de7
AD
2588
2589 $cat_siblings = array();
2590
2591 if (db_num_rows($tmp_result) > 0) {
2592 while ($p = db_fetch_assoc($tmp_result)) {
2593 array_push($cat_siblings, "feed_id = " . $p["id"]);
2594 }
2595
2596 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
2597 $feed, implode(" OR ", $cat_siblings));
2598
2599 } else {
2600 $query_strategy_part = "ttrss_entries.id > 0";
2601 }
2602
2603 } else if ($feed >= 0) {
2604
2605 if ($cat_view) {
5c365f60 2606
ef393de7
AD
2607 if ($feed > 0) {
2608 $query_strategy_part = "cat_id = '$feed'";
2609 } else {
2610 $query_strategy_part = "cat_id IS NULL";
2611 }
2612
2613 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
5c365f60 2614
ef393de7
AD
2615 } else {
2616 $tmp_result = db_query($link, "SELECT id
2617 FROM ttrss_feeds WHERE parent_feed = '$feed'
2618 ORDER BY cat_id,title");
2619
2620 $parent_ids = array();
2621
2622 if (db_num_rows($tmp_result) > 0) {
2623 while ($p = db_fetch_assoc($tmp_result)) {
2624 array_push($parent_ids, "feed_id = " . $p["id"]);
2625 }
2626
2627 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
2628 $feed, implode(" OR ", $parent_ids));
2629
2630 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2631 } else {
2632 $query_strategy_part = "feed_id = '$feed'";
2633 }
2634 }
2635 } else if ($feed == -1) { // starred virtual feed
2636 $query_strategy_part = "marked = true";
2637 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
e4f4b46f
AD
2638 } else if ($feed == -2) { // published virtual feed
2639 $query_strategy_part = "published = true";
2d24f032
AD
2640 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2641 } else if ($feed == -3) { // fresh virtual feed
2642 $query_strategy_part = "unread = true";
2643
c1d7e6c3
AD
2644 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE");
2645
2d24f032 2646 if (DB_TYPE == "pgsql") {
c1d7e6c3 2647 $query_strategy_part .= " AND date_entered > NOW() - INTERVAL '$intl hour' ";
2d24f032 2648 } else {
c1d7e6c3 2649 $query_strategy_part .= " AND date_entered > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
2d24f032
AD
2650 }
2651
e4f4b46f 2652 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ef393de7
AD
2653 } else if ($feed <= -10) { // labels
2654 $label_id = -$feed - 11;
2655
2656 $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
2657 WHERE id = '$label_id'");
2658
2659 $query_strategy_part = db_fetch_result($tmp_result, 0, "sql_exp");
3de0261a
AD
2660
2661 if (!$query_strategy_part) {
2662 return false;
2663 }
2664
ef393de7
AD
2665 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2666 } else {
2667 $query_strategy_part = "id > 0"; // dumb
2668 }
d6e5706d
AD
2669
2670 if (get_pref($link, 'REVERSE_HEADLINES')) {
2671 $order_by = "updated";
2672 } else {
2673 $order_by = "updated DESC";
2674 }
e939722a
AD
2675
2676 if ($override_order) {
2677 $order_by = $override_order;
2678 }
ef393de7
AD
2679
2680 $feed_title = "";
2681
2682 if ($search && $search_mode == "all_feeds") {
b36e002f 2683 $feed_title = __("Search results")." ($search)";
ef393de7 2684 } else if ($search && preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
b36e002f 2685 $feed_title = __("Search results")." ($search, $feed)";
ef393de7
AD
2686 } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
2687 $feed_title = $feed;
2688 } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) != false && $feed >= 0) {
2689
2690 if ($cat_view) {
5c365f60 2691
ef393de7
AD
2692 if ($feed != 0) {
2693 $result = db_query($link, "SELECT title FROM ttrss_feed_categories
c36bf4d5 2694 WHERE id = '$feed' AND owner_uid = $owner_uid");
ef393de7
AD
2695 $feed_title = db_fetch_result($result, 0, "title");
2696 } else {
d1db26aa 2697 $feed_title = __("Uncategorized");
ef393de7 2698 }
e1eb2147
AD
2699
2700 if ($search) {
b36e002f 2701 $feed_title = __("Searched for")." $search ($feed_title)";
e1eb2147
AD
2702 }
2703
ef393de7
AD
2704 } else {
2705
2706 $result = db_query($link, "SELECT title,site_url,last_error FROM ttrss_feeds
c36bf4d5 2707 WHERE id = '$feed' AND owner_uid = $owner_uid");
ef393de7
AD
2708
2709 $feed_title = db_fetch_result($result, 0, "title");
2710 $feed_site_url = db_fetch_result($result, 0, "site_url");
2711 $last_error = db_fetch_result($result, 0, "last_error");
e1eb2147
AD
2712
2713 if ($search) {
b36e002f 2714 $feed_title = __("Searched for") . " $search ($feed_title)";
e1eb2147 2715 }
ef393de7
AD
2716 }
2717
2718 } else if ($feed == -1) {
d1db26aa 2719 $feed_title = __("Starred articles");
e4f4b46f
AD
2720 } else if ($feed == -2) {
2721 $feed_title = __("Published articles");
2d24f032
AD
2722 } else if ($feed == -3) {
2723 $feed_title = __("Fresh articles");
ef393de7
AD
2724 } else if ($feed < -10) {
2725 $label_id = -$feed - 11;
2726 $result = db_query($link, "SELECT description FROM ttrss_labels
2727 WHERE id = '$label_id'");
2728 $feed_title = db_fetch_result($result, 0, "description");
88040f57
AD
2729
2730 if ($search) {
b36e002f 2731 $feed_title = __("Searched for") . " $search ($feed_title)";
88040f57 2732 }
ef393de7
AD
2733 } else {
2734 $feed_title = "?";
2735 }
2736
ef393de7
AD
2737 if ($feed < -10) error_reporting (0);
2738
2739 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
2740
2741 if ($feed >= 0) {
2742 $feed_kind = "Feeds";
2743 } else {
2744 $feed_kind = "Labels";
2745 }
2746
2747 $content_query_part = "content as content_preview,";
203de776 2748
95a82c08
AD
2749 if ($limit_query_part) {
2750 $offset_query_part = "OFFSET $offset";
2751 }
2752
ef393de7 2753 $query = "SELECT
1f64b1be 2754 guid,
ef393de7 2755 ttrss_entries.id,ttrss_entries.title,
46921916 2756 updated,
e4f4b46f 2757 unread,feed_id,marked,published,link,last_read,
ef393de7
AD
2758 SUBSTRING(last_read,1,19) as last_read_noms,
2759 $vfeed_query_part
2760 $content_query_part
d4b4b9de
AD
2761 SUBSTRING(updated,1,19) as updated_noms,
2762 author
ef393de7
AD
2763 FROM
2764 ttrss_entries,ttrss_user_entries,ttrss_feeds
2765 WHERE
cfb02131 2766 ttrss_feeds.hidden = false AND
ef393de7
AD
2767 ttrss_user_entries.feed_id = ttrss_feeds.id AND
2768 ttrss_user_entries.ref_id = ttrss_entries.id AND
c36bf4d5 2769 ttrss_user_entries.owner_uid = '$owner_uid' AND
ef393de7
AD
2770 $search_query_part
2771 $view_query_part
2772 $query_strategy_part ORDER BY $order_by
95a82c08 2773 $limit_query_part $offset_query_part";
ef393de7
AD
2774
2775 $result = db_query($link, $query);
2776
2777 if ($_GET["debug"]) print $query;
2778
2779 } else {
2780 // browsing by tag
2781
2782 $feed_kind = "Tags";
2783
2784 $result = db_query($link, "SELECT
1f64b1be 2785 guid,
ef393de7 2786 ttrss_entries.id as id,title,
46921916 2787 updated,
ef393de7
AD
2788 unread,feed_id,
2789 marked,link,last_read,
2790 SUBSTRING(last_read,1,19) as last_read_noms,
2791 $vfeed_query_part
2792 $content_query_part
2793 SUBSTRING(updated,1,19) as updated_noms
2794 FROM
2795 ttrss_entries,ttrss_user_entries,ttrss_tags
2796 WHERE
2797 ref_id = ttrss_entries.id AND
c36bf4d5 2798 ttrss_user_entries.owner_uid = '$owner_uid' AND
ef393de7
AD
2799 post_int_id = int_id AND tag_name = '$feed' AND
2800 $view_query_part
2801 $search_query_part
2802 $query_strategy_part ORDER BY $order_by
2803 $limit_query_part");
2804 }
2805
c7188969 2806 return array($result, $feed_title, $feed_site_url, $last_error);
ef393de7
AD
2807
2808 }
2809
c36bf4d5 2810 function generate_syndicated_feed($link, $owner_uid, $feed, $is_cat,
3baeeeca 2811 $search, $search_mode, $match_on) {
18664970
AD
2812
2813 $qfh_ret = queryFeedHeadlines($link, $feed,
c36bf4d5
AD
2814 30, false, $is_cat, $search, $search_mode, $match_on, "updated DESC", 0,
2815 $owner_uid);
18664970
AD
2816
2817 $result = $qfh_ret[0];
59e2aab4 2818 $feed_title = htmlspecialchars($qfh_ret[1]);
18664970
AD
2819 $feed_site_url = $qfh_ret[2];
2820 $last_error = $qfh_ret[3];
2821
a5472764 2822// if (!$feed_site_url) $feed_site_url = "http://localhost/";
4bc64807 2823
a5472764
AD
2824 print "<?xml version=\"1.0\" encoding=\"utf-8\"?>
2825 <?xml-stylesheet type=\"text/xsl\" href=\"rss.xsl\"?>
2826 <rss version=\"2.0\">
3baeeeca
AD
2827 <channel>
2828 <title>$feed_title</title>
4bc64807
AD
2829 <link>$feed_site_url</link>
2830 <description>Feed generated by Tiny Tiny RSS</description>";
3baeeeca
AD
2831
2832 while ($line = db_fetch_assoc($result)) {
2833 print "<item>";
4bc64807 2834 print "<guid>" . htmlspecialchars($line["guid"]) . "</guid>";
3baeeeca 2835 print "<link>" . htmlspecialchars($line["link"]) . "</link>";
0c3d1c68 2836
bc976a8c 2837 $tags = get_article_tags($link, $line["id"], $owner_uid);
0c3d1c68
AD
2838
2839 foreach ($tags as $tag) {
2840 print "<category>" . htmlspecialchars($tag) . "</category>";
2841 }
2842
3baeeeca
AD
2843 $rfc822_date = date('r', strtotime($line["updated"]));
2844
2845 print "<pubDate>$rfc822_date</pubDate>";
2846
2847 print "<title>" .
2848 htmlspecialchars($line["title"]) . "</title>";
2849
0c3d1c68
AD
2850 print "<description><![CDATA[" .
2851 $line["content_preview"] . "]]></description>";
3baeeeca
AD
2852
2853 print "</item>";
2854 }
2855
2856 print "</channel></rss>";
18664970
AD
2857
2858 }
2859
0a6c4846
AD
2860 function getCategoryTitle($link, $cat_id) {
2861
bba7c4bf
AD
2862 if ($cat_id == -1) {
2863 return __("Special");
2864 } else if ($cat_id == -2) {
2865 return __("Labels");
0a6c4846 2866 } else {
bba7c4bf
AD
2867
2868 $result = db_query($link, "SELECT title FROM ttrss_feed_categories WHERE
2869 id = '$cat_id'");
2870
2871 if (db_num_rows($result) == 1) {
2872 return db_fetch_result($result, 0, "title");
2873 } else {
2874 return "Uncategorized";
2875 }
0a6c4846
AD
2876 }
2877 }
2878
f738aef1
AD
2879 // http://ru2.php.net/strip-tags
2880
2881 function strip_tags_long($textstring, $allowed){
2882 while($textstring != strip_tags($textstring, $allowed))
2883 {
2884 while (strlen($textstring) != 0)
2885 {
2886 if (strlen($textstring) > 1024) {
2887 $otherlen = 1024;
2888 } else {
2889 $otherlen = strlen($textstring);
2890 }
2891 $temptext = strip_tags(substr($textstring,0,$otherlen), $allowed);
2892 $safetext .= $temptext;
2893 $textstring = substr_replace($textstring,'',0,$otherlen);
2894 }
2895 $textstring = $safetext;
2896 }
2897 return $textstring;
2898 }
2899
2900
1ac0baf4 2901 function sanitize_rss($link, $str, $force_strip_tags = false) {
60452879 2902 $res = $str;
183ad07b 2903
1ac0baf4 2904 if (get_pref($link, "STRIP_UNSAFE_TAGS") || $force_strip_tags) {
f738aef1
AD
2905 global $tw_parser;
2906 global $tw_paranoya_setup;
2907
2908 $res = $tw_parser->strip_tags($res, $tw_paranoya_setup);
2909
2910// $res = preg_replace("/\r\n|\n|\r/", "", $res);
2911// $res = strip_tags_long($res, "<p><a><i><em><b><strong><blockquote><br><img><div><span>");
f826eee1
AD
2912 }
2913
183ad07b
AD
2914 return $res;
2915 }
b72c3ef8 2916
9cd7c995
AD
2917 function send_headlines_digests($link, $limit = 100) {
2918
1ddba275
AD
2919 if (!DIGEST_ENABLE) return false;
2920
9cd7c995 2921 $user_limit = DIGEST_EMAIL_LIMIT;
5430c959 2922 $days = 1;
9cd7c995
AD
2923
2924 print "Sending digests, batch of max $user_limit users, days = $days, headline limit = $limit\n\n";
2925
2926 if (DB_TYPE == "pgsql") {
2927 $interval_query = "last_digest_sent < NOW() - INTERVAL '$days days'";
2928 } else if (DB_TYPE == "mysql") {
2929 $interval_query = "last_digest_sent < DATE_SUB(NOW(), INTERVAL $days DAY)";
2930 }
2931
2932 $result = db_query($link, "SELECT id,email FROM ttrss_users
2933 WHERE email != '' AND (last_digest_sent IS NULL OR $interval_query)");
2934
2935 while ($line = db_fetch_assoc($result)) {
2936 if (get_pref($link, 'DIGEST_ENABLE', $line['id'], false)) {
2937 print "Sending digest for UID:" . $line['id'] . " - " . $line["email"] . " ... ";
2938
2939 $tuple = prepare_headlines_digest($link, $line["id"], $days, $limit);
2940 $digest = $tuple[0];
2941 $headlines_count = $tuple[1];
2942
2943 if ($headlines_count > 0) {
2944 $rc = mail($line["login"] . " <" . $line["email"] . ">",
2945 "[tt-rss] New headlines for last 24 hours", $digest,
3ab3c1f0
AD
2946 "From: " . MAIL_FROM . "\n".
2947 "Content-Type: text/plain; charset=\"utf-8\"\n".
2948 "Content-Transfer-Encoding: 8bit\n");
9cd7c995
AD
2949 print "RC=$rc\n";
2950 db_query($link, "UPDATE ttrss_users SET last_digest_sent = NOW()
2951 WHERE id = " . $line["id"]);
2952 } else {
2953 print "No headlines\n";
2954 }
2955 }
2956 }
2957
2958// $digest = prepare_headlines_digest($link, $user_id, $days, $limit);
2959
2960 }
2961
7e3634d9 2962 function prepare_headlines_digest($link, $user_id, $days = 1, $limit = 100) {
d1db26aa 2963 $tmp = __("New headlines for last 24 hours, as of ") . date("Y/m/d H:m") . "\n";
7e3634d9
AD
2964 $tmp .= "=======================================================\n\n";
2965
2966 if (DB_TYPE == "pgsql") {
9cd7c995 2967 $interval_query = "ttrss_entries.date_entered > NOW() - INTERVAL '$days days'";
7e3634d9
AD
2968 } else if (DB_TYPE == "mysql") {
2969 $interval_query = "ttrss_entries.date_entered > DATE_SUB(NOW(), INTERVAL $days DAY)";
2970 }
2971
2972 $result = db_query($link, "SELECT ttrss_entries.title,
2973 ttrss_feeds.title AS feed_title,
2974 date_entered,
2975 link,
2976 SUBSTRING(last_updated,1,19) AS last_updated
2977 FROM
2978 ttrss_user_entries,ttrss_entries,ttrss_feeds
2979 WHERE
2980 ref_id = ttrss_entries.id AND feed_id = ttrss_feeds.id
3dd9183c 2981 AND include_in_digest = true
7e3634d9 2982 AND $interval_query
448b0abd 2983 AND ttrss_user_entries.owner_uid = $user_id
7e3634d9
AD
2984 AND unread = true ORDER BY ttrss_feeds.title, date_entered DESC
2985 LIMIT $limit");
2986
2987 $cur_feed_title = "";
2988
9cd7c995
AD
2989 $headlines_count = db_num_rows($result);
2990
7e3634d9
AD
2991 while ($line = db_fetch_assoc($result)) {
2992 $updated = smart_date_time(strtotime($line["last_updated"]));
2993 $feed_title = $line["feed_title"];
2994
2995 if ($cur_feed_title != $feed_title) {
2996 $cur_feed_title = $feed_title;
2997
2998 $tmp .= "$feed_title\n\n";
2999 }
3000
3001 $tmp .= " * " . trim($line["title"]) . " - $updated\n";
3002 $tmp .= " " . trim($line["link"]) . "\n";
3003 $tmp .= "\n";
3004 }
3005
3006 $tmp .= "--- \n";
d1db26aa 3007 $tmp .= __("You have been sent this email because you have enabled daily digests in Tiny Tiny RSS at ") .
dfe6f833 3008 DIGEST_HOSTNAME . "\n".
d1db26aa 3009 __("To unsubscribe, visit your configuration options or contact instance owner.\n");
7e3634d9
AD
3010
3011
9cd7c995 3012 return array($tmp, $headlines_count);
7e3634d9
AD
3013 }
3014
d9fa39f1 3015 function check_for_update($link, $brief_fmt = true) {
b72c3ef8
AD
3016 $releases_feed = "http://tt-rss.spb.ru/releases.rss";
3017
3018 if (!CHECK_FOR_NEW_VERSION || $_SESSION["access_level"] < 10) {
3019 return;
3020 }
3021
3022 error_reporting(0);
3023 $rss = fetch_rss($releases_feed);
3024 error_reporting (DEFAULT_ERROR_LEVEL);
3025
3026 if ($rss) {
3027
3028 $items = $rss->items;
3029
3030 if (!$items || !is_array($items)) $items = $rss->entries;
3031 if (!$items || !is_array($items)) $items = $rss;
3032
da412ad3 3033 if (!is_array($items) || count($items) == 0) {
b72c3ef8 3034 return;
da412ad3 3035 }
b72c3ef8 3036
a41d2c65 3037 $latest_item = $items[0];
b72c3ef8 3038
a41d2c65 3039 $latest_version = trim(preg_replace("/(Milestone)|(completed)/", "", $latest_item["title"]));
b72c3ef8 3040
007a38d4
AD
3041 $release_url = sanitize_rss($link, $latest_item["link"]);
3042 $content = sanitize_rss($link, $latest_item["description"]);
48e1a342 3043
a41d2c65 3044 if (version_compare(VERSION, $latest_version) == -1) {
d9fa39f1 3045 if ($brief_fmt) {
0d32b41e 3046 return format_notice("<a href=\"javascript:showBlockElement('milestoneDetails')\">
d9fa39f1 3047 New version of Tiny-Tiny RSS ($latest_version) is available (click for details)</a>
0d32b41e 3048 <div id=\"milestoneDetails\">$content</div>");
d9fa39f1 3049 } else {
92625568
AD
3050 return "New version of Tiny-Tiny RSS ($latest_version) is available:
3051 <div class='milestoneDetails'>$content</div>
3052 Visit <a target=\"_new\" href=\"http://tt-rss.spb.ru/\">official site</a> for
3053 download and update information.";
d9fa39f1
AD
3054 }
3055
da412ad3 3056 }
b72c3ef8
AD
3057 }
3058 }
472782e8 3059
18eddb2c
AD
3060 function markArticlesById($link, $ids, $cmode) {
3061
3062 $tmp_ids = array();
3063
3064 foreach ($ids as $id) {
3065 array_push($tmp_ids, "ref_id = '$id'");
3066 }
3067
3068 $ids_qpart = join(" OR ", $tmp_ids);
3069
3070 if ($cmode == 0) {
3071 db_query($link, "UPDATE ttrss_user_entries SET
3072 marked = false,last_read = NOW()
3073 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3074 } else if ($cmode == 1) {
3075 db_query($link, "UPDATE ttrss_user_entries SET
3076 marked = true
3077 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3078 } else {
3079 db_query($link, "UPDATE ttrss_user_entries SET
3080 marked = NOT marked,last_read = NOW()
3081 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3082 }
3083 }
3084
e4f4b46f
AD
3085 function publishArticlesById($link, $ids, $cmode) {
3086
3087 $tmp_ids = array();
3088
3089 foreach ($ids as $id) {
3090 array_push($tmp_ids, "ref_id = '$id'");
3091 }
3092
3093 $ids_qpart = join(" OR ", $tmp_ids);
3094
3095 if ($cmode == 0) {
3096 db_query($link, "UPDATE ttrss_user_entries SET
3097 published = false,last_read = NOW()
3098 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3099 } else if ($cmode == 1) {
3100 db_query($link, "UPDATE ttrss_user_entries SET
3101 published = true
3102 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3103 } else {
3104 db_query($link, "UPDATE ttrss_user_entries SET
3105 published = NOT published,last_read = NOW()
3106 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3107 }
3108 }
3109
472782e8
AD
3110 function catchupArticlesById($link, $ids, $cmode) {
3111
3112 $tmp_ids = array();
3113
3114 foreach ($ids as $id) {
3115 array_push($tmp_ids, "ref_id = '$id'");
3116 }
3117
3118 $ids_qpart = join(" OR ", $tmp_ids);
3119
3120 if ($cmode == 0) {
3121 db_query($link, "UPDATE ttrss_user_entries SET
3122 unread = false,last_read = NOW()
3123 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3124 } else if ($cmode == 1) {
3125 db_query($link, "UPDATE ttrss_user_entries SET
3126 unread = true
3127 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3128 } else {
3129 db_query($link, "UPDATE ttrss_user_entries SET
3130 unread = NOT unread,last_read = NOW()
3131 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
3132 }
3133 }
3134
e097e8be
AD
3135 function catchupArticleById($link, $id, $cmode) {
3136
3137 if ($cmode == 0) {
3138 db_query($link, "UPDATE ttrss_user_entries SET
3139 unread = false,last_read = NOW()
3140 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
3141 } else if ($cmode == 1) {
3142 db_query($link, "UPDATE ttrss_user_entries SET
3143 unread = true
3144 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
3145 } else {
3146 db_query($link, "UPDATE ttrss_user_entries SET
3147 unread = NOT unread,last_read = NOW()
3148 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
3149 }
3150 }
3151
1f64b1be
AD
3152 function make_guid_from_title($title) {
3153 return preg_replace("/[ \"\',.:;]/", "-",
fefef828 3154 mb_strtolower(strip_tags($title), 'utf-8'));
1f64b1be
AD
3155 }
3156
11befbb2
AD
3157 function print_headline_subtoolbar($link, $feed_site_url, $feed_title,
3158 $bottom = false, $rtl_content = false, $feed_id = 0,
3159 $is_cat = false, $search = false, $match_on = false,
95a82c08 3160 $search_mode = false, $offset = 0, $limit = 0) {
11befbb2 3161
e6c115b2
AD
3162 $user_page_offset = $offset + 1;
3163
11befbb2
AD
3164 if (!$bottom) {
3165 $class = "headlinesSubToolbar";
3166 $tid = "headlineActionsTop";
3167 } else {
3168 $class = "headlinesSubToolbar";
3169 $tid = "headlineActionsBottom";
3170 }
3171
3172 print "<table class=\"$class\" id=\"$tid\"
3173 width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tr>";
3174
3175 if ($rtl_content) {
3176 $rtl_cpart = "RTL";
3177 } else {
3178 $rtl_cpart = "";
3179 }
3180
e6c115b2
AD
3181 $page_prev_link = "javascript:viewFeedGoPage(-1)";
3182 $page_next_link = "javascript:viewFeedGoPage(1)";
3183 $page_first_link = "javascript:viewFeedGoPage(0)";
203de776 3184
eb28b131
AD
3185 $catchup_page_link = "javascript:catchupPage()";
3186 $catchup_feed_link = "javascript:catchupCurrentFeed()";
a5ae125a 3187 $catchup_sel_link = "javascript:catchupSelection()";
c6008b62 3188
11befbb2
AD
3189 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
3190
c6008b62
AD
3191 $sel_all_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, '', true)";
3192 $sel_unread_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true)";
3193 $sel_none_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false)";
11befbb2 3194
c6008b62
AD
3195 $tog_unread_link = "javascript:selectionToggleUnread()";
3196 $tog_marked_link = "javascript:selectionToggleMarked()";
e4f4b46f 3197 $tog_published_link = "javascript:selectionTogglePublished()";
11befbb2 3198
c6008b62 3199 } else {
11befbb2 3200
c6008b62
AD
3201 $sel_all_link = "javascript:cdmSelectArticles('all')";
3202 $sel_unread_link = "javascript:cdmSelectArticles('unread')";
3203 $sel_none_link = "javascript:cdmSelectArticles('none')";
3204
3205 $tog_unread_link = "javascript:selectionToggleUnread(true)";
3206 $tog_marked_link = "javascript:selectionToggleMarked(true)";
e4f4b46f 3207 $tog_published_link = "javascript:selectionTogglePublished(true)";
c6008b62
AD
3208
3209 }
3210
d420f2ee 3211 if (strpos($_SESSION["client.userAgent"], "MSIE") === false) {
c6008b62 3212
2dd2c13b
AD
3213 print "<td class=\"headlineActions$rtl_cpart\">
3214 <ul class=\"headlineDropdownMenu\">
3215 <li class=\"top2\">
3692e98f 3216 ".__('Select:')."
1025ad87
AD
3217 <a href=\"$sel_all_link\">".__('All')."</a>,
3218 <a href=\"$sel_unread_link\">".__('Unread')."</a>,
3219 <a href=\"$sel_none_link\">".__('None')."</a></li>
2dd2c13b 3220 <li class=\"vsep\">&nbsp;</li>
89cb787e 3221 <li class=\"top\">".__('Toggle')."<ul>
9cc600d1 3222 <li onclick=\"$tog_unread_link\">".__('Unread')."</li>
e4f4b46f
AD
3223 <li onclick=\"$tog_marked_link\">".__('Starred')."</li>
3224 <li onclick=\"$tog_published_link\">".__('Published')."</li>
3225 </ul></li>
2dd2c13b 3226 <li class=\"vsep\">&nbsp;</li>
1025ad87 3227 <li class=\"top\"><a href=\"$catchup_page_link\">".__('Mark as read')."</a><ul>
a5ae125a 3228 <li onclick=\"$catchup_sel_link\">".__('Selection')."</li>
8be83f42
AD
3229 <!-- <li onclick=\"$catchup_page_link\">".__('This page')."</li> -->
3230 <li><span class=\"insensitive\">--------</span></li>
3231 <li onclick=\"catchupRelativeToArticle(0)\">".__("Above active article")."</li>
3232 <li onclick=\"catchupRelativeToArticle(1)\">".__("Below active article")."</li>
3233 <li><span class=\"insensitive\">--------</span></li>
1025ad87 3234 <li onclick=\"$catchup_feed_link\">".__('Entire feed')."</li></ul></li>
237ec2ad 3235 ";
95a82c08 3236
237ec2ad
AD
3237 $enable_pagination = get_pref($link, "_PREFS_ENABLE_PAGINATION");
3238
3239 if ($limit != 0 && !$search && $enable_pagination) {
95a82c08 3240 print "
237ec2ad 3241 <li class=\"vsep\">&nbsp;</li>
1025ad87
AD
3242 <li class=\"top\"><a href=\"$page_next_link\">".__('Next page')."</a><ul>
3243 <li onclick=\"$page_prev_link\">".__('Previous page')."</li>
3244 <li onclick=\"$page_first_link\">".__('First page')."</li></ul></li>
95a82c08 3245 </ul>";
d420f2ee 3246 }
95a82c08 3247
d420f2ee 3248 if ($search && $feed_id >= 0 && get_pref($link, 'ENABLE_LABELS') && GLOBAL_ENABLE_LABELS) {
237ec2ad
AD
3249 print "
3250 <li class=\"vsep\">&nbsp;</li>
3251 <li class=\"top3\">
d420f2ee
AD
3252 <a href=\"javascript:labelFromSearch('$search', '$search_mode',
3253 '$match_on', '$feed_id', '$is_cat');\">
b36e002f 3254 ".__('Convert to label')."</a></td>";
d420f2ee 3255 }
95a82c08 3256 print "
2dd2c13b
AD
3257 </td>";
3258
3259 } else {
e6c115b2
AD
3260 // old style subtoolbar:
3261
2dd2c13b 3262 print "<td class=\"headlineActions$rtl_cpart\">".
d1db26aa 3263 __('Select:')."
1025ad87
AD
3264 <a href=\"$sel_all_link\">".__('All')."</a>,
3265 <a href=\"$sel_unread_link\">".__('Unread')."</a>,
3266 <a href=\"$sel_none_link\">".__('None')."</a>
2dd2c13b 3267 &nbsp;&nbsp;".
1025ad87
AD
3268 __('Toggle:')." <a href=\"$tog_unread_link\">".__('Unread')."</a>,
3269 <a href=\"$tog_marked_link\">".__('Starred')."</a>
2dd2c13b 3270 &nbsp;&nbsp;".
d1db26aa 3271 __('Mark as read:')."
1025ad87
AD
3272 <a href=\"#\" onclick=\"$catchup_page_link\">".__('Page')."</a>,
3273 <a href=\"#\" onclick=\"$catchup_feed_link\">".__('Feed')."</a>";
d420f2ee
AD
3274
3275 if ($search && $feed_id >= 0 && get_pref($link, 'ENABLE_LABELS') && GLOBAL_ENABLE_LABELS) {
3276
3277 print "&nbsp;&nbsp;
3278 <a href=\"javascript:labelFromSearch('$search', '$search_mode',
3279 '$match_on', '$feed_id', '$is_cat');\">
b36e002f 3280 ".__('Convert to label')."</a>";
d420f2ee
AD
3281 }
3282
2dd2c13b
AD
3283 print "</td>";
3284
3285 }
c6008b62 3286
d420f2ee 3287/* if ($search && $feed_id >= 0 && get_pref($link, 'ENABLE_LABELS') && GLOBAL_ENABLE_LABELS) {
c6008b62
AD
3288 print "<td class=\"headlineActions$rtl_cpart\">
3289 <a href=\"javascript:labelFromSearch('$search', '$search_mode',
3290 '$match_on', '$feed_id', '$is_cat');\">
d1db26aa 3291 ".__('Convert to Label')."</a></td>";
d420f2ee 3292} */
11befbb2
AD
3293
3294 print "<td class=\"headlineTitle$rtl_cpart\">";
3295
3296 if ($feed_site_url) {
3297 if (!$bottom) {
3fc2eed5 3298 $target = "target=\"_new\"";
11befbb2 3299 }
02815555
AD
3300 print "<a $target href=\"$feed_site_url\">".
3301 truncate_string($feed_title,30)."</a>";
11befbb2
AD
3302 } else {
3303 print $feed_title;
3304 }
3305
3306 if ($search) {
3307 $search_q = "&q=$search&m=$match_on&smode=$search_mode";
3308 }
3309
e6c115b2
AD
3310 if ($user_page_offset > 1) {
3311 print " [$user_page_offset] ";
3312 }
3313
11befbb2 3314 if (!$bottom) {
e6c115b2 3315 print "
11befbb2
AD
3316 <a target=\"_new\"
3317 href=\"backend.php?op=rss&id=$feed_id&is_cat=$is_cat$search_q\">
3318 <img class=\"noborder\"
1025ad87 3319 alt=\"".__('Generated feed')."\" src=\"images/feed-icon-12x12.png\">
11befbb2
AD
3320 </a>";
3321 }
3322
3323 print "</td>";
3324 print "</tr></table>";
3325
3326 }
3327
bba7c4bf
AD
3328 function printCategoryHeader($link, $cat_id, $hidden = false, $can_browse = true) {
3329
3330 $tmp_category = getCategoryTitle($link, $cat_id);
3331 $cat_unread = getCategoryUnread($link, $cat_id);
3332
3333 if ($hidden) {
3334 $holder_style = "display:none;";
3335 $ellipsis = "...";
3336 } else {
3337 $holder_style = "";
3338 $ellipsis = "";
3339 }
3340
3341 $catctr_class = ($cat_unread > 0) ? "catCtrHasUnread" : "catCtrNoUnread";
3342
3343 print "<li class=\"feedCat\" id=\"FCAT-$cat_id\">
3344 <a id=\"FCATN-$cat_id\" href=\"javascript:toggleCollapseCat($cat_id)\">$tmp_category</a>";
3345
3346 if ($can_browse) {
3347 print "<a href=\"#\" onclick=\"javascript:viewCategory($cat_id)\" id=\"FCAP-$cat_id\">";
3348 } else {
3349 print "<span id=\"FCAP-$cat_id\">";
3350 }
3351
3352 print " <span id=\"FCATCTR-$cat_id\" title=\"Click to browse category\"
3353 class=\"$catctr_class\">($cat_unread)</span> $ellipsis";
3354
3355 if ($can_browse) {
3356 print "</a>";
3357 } else {
3358 print "</span>";
3359 }
3360
3361 print "</li>";
3362
3363 print "<li id=\"feedCatHolder\" class=\"$holder_class\"><ul class=\"feedCatList\" id=\"FCATLIST-$cat_id\" style='$holder_style'>";
3364 }
3365
f407c086
AD
3366 function outputFeedList($link, $tags = false) {
3367
3bd9a780 3368 print "<ul class=\"feedList\" id=\"feedList\">";
f407c086
AD
3369
3370 $owner_uid = $_SESSION["uid"];
3371
cf4d339c 3372 /* virtual feeds */
f407c086 3373
cf4d339c 3374 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3b086176
AD
3375
3376 if ($_COOKIE["ttrss_vf_vclps"] == 1) {
bba7c4bf 3377 $cat_hidden = true;
3b086176 3378 } else {
bba7c4bf 3379 $cat_hidden = false;
3b086176
AD
3380 }
3381
3382# print "<li class=\"feedCat\">".__('Special')."</li>";
3383# print "<li id=\"feedCatHolder\" class=\"feedCatHolder\"><ul class=\"feedCatList\">";
bba7c4bf
AD
3384# print "<li class=\"feedCat\">".
3385# "<a id=\"FCATN--1\" href=\"javascript:toggleCollapseCat(-1)\">".
3386# __('Special')."</a> <span id='FCAP--1'>$ellipsis</span></li>";
3387#
3388# print "<li id=\"feedCatHolder\" class=\"feedCatHolder\">
3389# <ul class=\"feedCatList\" id='FCATLIST--1' style='$holder_style'>";
3b086176 3390
bba7c4bf
AD
3391# $cat_unread = getCategoryUnread($link, -1);
3392# $tmp_category = __("Special");
3393# $catctr_class = ($cat_unread > 0) ? "catCtrHasUnread" : "catCtrNoUnread";
3b086176 3394
bba7c4bf 3395 printCategoryHeader($link, -1, $cat_hidden, false);
cf4d339c 3396 }
f407c086 3397
cf4d339c 3398 $num_starred = getFeedUnread($link, -1);
e4f4b46f 3399 $num_published = getFeedUnread($link, -2);
2d24f032
AD
3400 $num_fresh = getFeedUnread($link, -3);
3401
3402 $class = "virt";
3403
3404 if ($num_fresh > 0) $class .= "Unread";
3405
3406 printFeedEntry(-3, $class, __("Fresh articles"), $num_fresh,
3407 "images/fresh.png", $link);
f407c086 3408
cf4d339c 3409 $class = "virt";
f407c086 3410
cf4d339c 3411 if ($num_starred > 0) $class .= "Unread";
f407c086 3412
d1db26aa 3413 printFeedEntry(-1, $class, __("Starred articles"), $num_starred,
cf4d339c 3414 "images/mark_set.png", $link);
f407c086 3415
e4f4b46f
AD
3416 $class = "virt";
3417
3418 if ($num_published > 0) $class .= "Unread";
3419
3420 printFeedEntry(-2, $class, __("Published articles"), $num_published,
3421 "images/pub_set.png", $link);
3422
cf4d339c 3423 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3bd9a780 3424 print "</ul>";
cf4d339c 3425 }
f407c086 3426
cf4d339c 3427 if (!$tags) {
f407c086
AD
3428
3429 if (GLOBAL_ENABLE_LABELS && get_pref($link, 'ENABLE_LABELS')) {
3430
3431 $result = db_query($link, "SELECT id,sql_exp,description FROM
3432 ttrss_labels WHERE owner_uid = '$owner_uid' ORDER by description");
3433
3434 if (db_num_rows($result) > 0) {
3435 if (get_pref($link, 'ENABLE_FEED_CATS')) {
bd64489f
AD
3436
3437 if ($_COOKIE["ttrss_vf_lclps"] == 1) {
bba7c4bf 3438 $cat_hidden = true;
bd64489f 3439 } else {
bba7c4bf 3440 $cat_hidden = false;
bd64489f
AD
3441 }
3442
bba7c4bf 3443 printCategoryHeader($link, -2, $cat_hidden, false);
bd64489f 3444
bba7c4bf
AD
3445# print "<li class=\"feedCat\">".
3446# "<a id=\"FCATN--2\" href=\"javascript:toggleCollapseCat(-2)\">".
3447# __('Labels')."</a> <span id='FCAP--2'>$ellipsis</span></li>";
3448#
3449# print "<li id=\"feedCatHolder\" class=\"feedCatHolder\"><ul class=\"feedCatList\" id='FCATLIST--2' style='$holder_style'>";
f407c086 3450 } else {
3bd9a780 3451 print "<li><hr></li>";
f407c086
AD
3452 }
3453 }
3454
3455 while ($line = db_fetch_assoc($result)) {
3456
3457 error_reporting (0);
3458
3459 $label_id = -$line['id'] - 11;
3460 $count = getFeedUnread($link, $label_id);
3461
3462 $class = "label";
3463
3464 if ($count > 0) {
3465 $class .= "Unread";
3466 }
3467
3468 error_reporting (DEFAULT_ERROR_LEVEL);
3469
3470 printFeedEntry($label_id,
47439031 3471 $class, $line["description"],
f407c086
AD
3472 $count, "images/label.png", $link);
3473
3474 }
3475
3476 if (db_num_rows($result) > 0) {
3477 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3478 print "</ul>";
3479 }
3480 }
3481
3482 }
3483
3484 if (!get_pref($link, 'ENABLE_FEED_CATS')) {
3bd9a780 3485 print "<li><hr></li>";
f407c086
AD
3486 }
3487
3488 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3489 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
3490 $order_by_qpart = "category,unread DESC,title";
3491 } else {
3492 $order_by_qpart = "category,title";
3493 }
3494 } else {
3495 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
3496 $order_by_qpart = "unread DESC,title";
3497 } else {
3498 $order_by_qpart = "title";
3499 }
3500 }
3501
3502 $result = db_query($link, "SELECT ttrss_feeds.*,
3503 SUBSTRING(last_updated,1,19) AS last_updated_noms,
3504 (SELECT COUNT(id) FROM ttrss_entries,ttrss_user_entries
3505 WHERE feed_id = ttrss_feeds.id AND unread = true
3506 AND ttrss_user_entries.ref_id = ttrss_entries.id
3507 AND owner_uid = '$owner_uid') as unread,
3508 cat_id,last_error,
3509 ttrss_feed_categories.title AS category,
3510 ttrss_feed_categories.collapsed
3511 FROM ttrss_feeds LEFT JOIN ttrss_feed_categories
3512 ON (ttrss_feed_categories.id = cat_id)
3513 WHERE
3514 ttrss_feeds.hidden = false AND
3515 ttrss_feeds.owner_uid = '$owner_uid' AND parent_feed IS NULL
3516 ORDER BY $order_by_qpart");
3517
3518 $actid = $_GET["actid"];
3519
3520 /* real feeds */
3521
3522 $lnum = 0;
3523
3524 $total_unread = 0;
3525
3526 $category = "";
3527
3528 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
3529
3530 while ($line = db_fetch_assoc($result)) {
3531
47439031 3532 $feed = trim($line["title"]);
0f39ae20
AD
3533
3534 if (!$feed) $feed = "[Untitled]";
3535
f407c086
AD
3536 $feed_id = $line["id"];
3537
3538 $subop = $_GET["subop"];
3539
3540 $unread = $line["unread"];
3541
3542 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
3543 $last_updated = smart_date_time(strtotime($line["last_updated_noms"]));
3544 } else {
3545 $last_updated = date($short_date, strtotime($line["last_updated_noms"]));
3546 }
3547
3548 $rtl_content = sql_bool_to_bool($line["rtl_content"]);
3549
3550 if ($rtl_content) {
3551 $rtl_tag = "dir=\"RTL\"";
3552 } else {
3553 $rtl_tag = "";
3554 }
3555
3556 $tmp_result = db_query($link,
3557 "SELECT id,COUNT(unread) AS unread
3558 FROM ttrss_feeds LEFT JOIN ttrss_user_entries
3559 ON (ttrss_feeds.id = ttrss_user_entries.feed_id)
3560 WHERE parent_feed = '$feed_id' AND unread = true
3561 GROUP BY ttrss_feeds.id");
3562
3563 if (db_num_rows($tmp_result) > 0) {
3564 while ($l = db_fetch_assoc($tmp_result)) {
3565 $unread += $l["unread"];
3566 }
3567 }
3568
3569 $cat_id = $line["cat_id"];
3570
3571 $tmp_category = $line["category"];
3572
3573 if (!$tmp_category) {
d1db26aa 3574 $tmp_category = __("Uncategorized");
f407c086
AD
3575 }
3576
3577 // $class = ($lnum % 2) ? "even" : "odd";
3578
3579 if ($line["last_error"]) {
3580 $class = "error";
3581 } else {
3582 $class = "feed";
3583 }
3584
3585 if ($unread > 0) $class .= "Unread";
3586
3587 if ($actid == $feed_id) {
3588 $class .= "Selected";
3589 }
3590
3591 $total_unread += $unread;
3592
3593 if ($category != $tmp_category && get_pref($link, 'ENABLE_FEED_CATS')) {
3594
3595 if ($category) {
3596 print "</ul></li>";
3597 }
3598
3599 $category = $tmp_category;
3600
3601 $collapsed = $line["collapsed"];
3602
3603 // workaround for NULL category
d1db26aa 3604 if ($category == __("Uncategorized")) {
f407c086
AD
3605 if ($_COOKIE["ttrss_vf_uclps"] == 1) {
3606 $collapsed = "t";
3607 }
3608 }
3609
3610 if ($collapsed == "t" || $collapsed == "1") {
225ec0d4
AD
3611 $holder_class = "feedCatHolder";
3612 $holder_style = "display:none;";
f407c086
AD
3613 $ellipsis = "...";
3614 } else {
be5b75da 3615 $holder_class = "feedCatHolder";
225ec0d4 3616 $holder_style = "";
f407c086
AD
3617 $ellipsis = "";
3618 }
3619
3620 $cat_id = sprintf("%d", $cat_id);
3621
3622 $cat_unread = getCategoryUnread($link, $cat_id);
67dabe1a
AD
3623
3624 $catctr_class = ($cat_unread > 0) ? "catCtrHasUnread" : "catCtrNoUnread";
3625
3bd9a780 3626 print "<li class=\"feedCat\" id=\"FCAT-$cat_id\">
439bbe63 3627 <a id=\"FCATN-$cat_id\" href=\"javascript:toggleCollapseCat($cat_id)\">$tmp_category</a>
7210613a 3628 <a href=\"#\" onclick=\"javascript:viewCategory($cat_id)\" id=\"FCAP-$cat_id\">
67dabe1a
AD
3629 <span id=\"FCATCTR-$cat_id\" title=\"Click to browse category\"
3630 class=\"$catctr_class\">($cat_unread)</span> $ellipsis
3bd9a780 3631 </a></li>";
f407c086 3632
225ec0d4 3633 print "<li id=\"feedCatHolder\" class=\"$holder_class\"><ul class=\"feedCatList\" id=\"FCATLIST-$cat_id\" style='$holder_style'>";
f407c086
AD
3634 }
3635
3636 printFeedEntry($feed_id, $class, $feed, $unread,
99e37e09 3637 ICONS_DIR."/$feed_id.ico", $link, $rtl_content,
f407c086
AD
3638 $last_updated, $line["last_error"]);
3639
3640 ++$lnum;
3641 }
3642
3643 if (db_num_rows($result) == 0) {
3bd9a780 3644 print "<li>".__('No feeds to display.')."</li>";
f407c086
AD
3645 }
3646
3647 } else {
3648
3649 // tags
3650
3651/* $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
3652 FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
3653 post_int_id = ttrss_user_entries.int_id AND
3654 unread = true AND ref_id = ttrss_entries.id
3655 AND ttrss_tags.owner_uid = '$owner_uid' GROUP BY tag_name
3656 UNION
3657 select tag_name,0 as count FROM ttrss_tags WHERE owner_uid = '$owner_uid'
3658 ORDER BY tag_name"); */
3659
3660 if (get_pref($link, 'ENABLE_FEED_CATS')) {
d1db26aa 3661 print "<li class=\"feedCat\">".__('Tags')."</li>";
f407c086
AD
3662 print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">";
3663 }
3664
3665 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
3666 FROM ttrss_user_entries WHERE int_id = post_int_id
3667 AND unread = true)) AS count FROM ttrss_tags
ef1ac7c7
AD
3668 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name
3669 ORDER BY count DESC LIMIT 50");
f407c086
AD
3670
3671 $tags = array();
3672
3673 while ($line = db_fetch_assoc($result)) {
3674 $tags[$line["tag_name"]] += $line["count"];
3675 }
3676
3677 foreach (array_keys($tags) as $tag) {
3678
3679 $unread = $tags[$tag];
3680
3681 $class = "tag";
3682
3683 if ($unread > 0) {
3684 $class .= "Unread";
3685 }
3686
3687 printFeedEntry($tag, $class, $tag, $unread, "images/tag.png", $link);
3688
3689 }
3690
3691 if (db_num_rows($result) == 0) {
3692 print "<li>No tags to display.</li>";
3693 }
3694
3695 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3bd9a780 3696 print "</ul>";
f407c086
AD
3697 }
3698
3699 }
3700
3701 print "</ul>";
3702
3703 }
3704
bc976a8c 3705 function get_article_tags($link, $id, $owner_uid = 0) {
0b126ac2
AD
3706
3707 $a_id = db_escape_string($id);
3708
bc976a8c
AD
3709 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
3710
0c3d1c68
AD
3711 $tmp_result = db_query($link, "SELECT DISTINCT tag_name,
3712 owner_uid as owner FROM
0b126ac2 3713 ttrss_tags WHERE post_int_id = (SELECT int_id FROM ttrss_user_entries WHERE
bc976a8c 3714 ref_id = '$a_id' AND owner_uid = '$owner_uid' LIMIT 1) ORDER BY tag_name");
0b126ac2
AD
3715
3716 $tags = array();
3717
3718 while ($tmp_line = db_fetch_assoc($tmp_result)) {
3719 array_push($tags, $tmp_line["tag_name"]);
3720 }
3721
3722 return $tags;
3723 }
3724
d62a3b63
AD
3725 function trim_value(&$value) {
3726 $value = trim($value);
3727 }
3728
3729 function trim_array($array) {
3730 $tmp = $array;
3731 array_walk($tmp, 'trim_value');
3732 return $tmp;
3733 }
3734
be832a1a 3735 function tag_is_valid($tag) {
ef063748
AD
3736 if ($tag == '') return false;
3737 if (preg_match("/^[0-9]*$/", $tag)) return false;
3738
3739 $tag = iconv("utf-8", "utf-8", $tag);
3740 if (!$tag) return false;
3741
3742 return true;
be832a1a
AD
3743 }
3744
793185a9
AD
3745 function render_login_form($link, $mobile = false) {
3746 if (!$mobile) {
3747 require_once "login_form.php";
3748 } else {
3749 require_once "mobile/login_form.php";
3750 }
01a87dff
AD
3751 }
3752
dc56b3b7
AD
3753 // from http://developer.apple.com/internet/safari/faq.html
3754 function no_cache_incantation() {
3755 header("Expires: Mon, 22 Dec 1980 00:00:00 GMT"); // Happy birthday to me :)
3756 header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified
3757 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); // HTTP/1.1
3758 header("Cache-Control: post-check=0, pre-check=0", false);
3759 header("Pragma: no-cache"); // HTTP/1.0
3760 }
3761
42395d28
AD
3762 function format_warning($msg, $id = "") {
3763 return "<div class=\"warning\" id=\"$id\">
0d32b41e
AD
3764 <img src=\"images/sign_excl.png\">$msg</div>";
3765 }
3766
3767 function format_notice($msg) {
3768 return "<div class=\"notice\">
3769 <img src=\"images/sign_info.png\">$msg</div>";
3770 }
3771
68d2f95e
AD
3772 function format_error($msg) {
3773 return "<div class=\"error\">
3774 <img src=\"images/sign_excl.png\">$msg</div>";
3775 }
3776
4dccf1ed
AD
3777 function print_notice($msg) {
3778 return print format_notice($msg);
3779 }
3780
3781 function print_warning($msg) {
3782 return print format_warning($msg);
3783 }
3784
68d2f95e
AD
3785 function print_error($msg) {
3786 return print format_error($msg);
3787 }
3788
3789
4dccf1ed
AD
3790 function T_sprintf() {
3791 $args = func_get_args();
3792 return vsprintf(__(array_shift($args)), $args);
3793 }
3794
3de0261a
AD
3795 function outputArticleXML($link, $id, $feed_id, $mark_as_read = true) {
3796
10eb9da8
AD
3797 /* we can figure out feed_id from article id anyway, why do we
3798 * pass feed_id here? */
3799
3800 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
3801 WHERE ref_id = '$id'");
3802
3803 $feed_id = db_fetch_result($result, 0, "feed_id");
3804
3de0261a
AD
3805 print "<article id='$id'><![CDATA[";
3806
3807 $result = db_query($link, "SELECT rtl_content FROM ttrss_feeds
3808 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
3809
3810 if (db_num_rows($result) == 1) {
3811 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
3812 } else {
3813 $rtl_content = false;
3814 }
3815
3816 if ($rtl_content) {
3817 $rtl_tag = "dir=\"RTL\"";
3818 $rtl_class = "RTL";
3819 } else {
3820 $rtl_tag = "";
3821 $rtl_class = "";
3822 }
3823
3824 if ($mark_as_read) {
3825 $result = db_query($link, "UPDATE ttrss_user_entries
3826 SET unread = false,last_read = NOW()
3827 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
3828 }
3829
3830 $result = db_query($link, "SELECT title,link,content,feed_id,comments,int_id,
3831 SUBSTRING(updated,1,16) as updated,
3832 (SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url,
3833 num_comments,
3834 author
3835 FROM ttrss_entries,ttrss_user_entries
3836 WHERE id = '$id' AND ref_id = id AND owner_uid = " . $_SESSION["uid"]);
3837
3838 if ($result) {
3839
3840 $link_target = "";
3841
3842 if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW')) {
3843 $link_target = "target=\"_new\"";
3844 }
3845
3846 $line = db_fetch_assoc($result);
3847
3848 if ($line["icon_url"]) {
3849 $feed_icon = "<img class=\"feedIcon\" src=\"" . $line["icon_url"] . "\">";
3850 } else {
3851 $feed_icon = "&nbsp;";
3852 }
3853
3854/* if ($line["comments"] && $line["link"] != $line["comments"]) {
3855 $entry_comments = "(<a href=\"".$line["comments"]."\">Comments</a>)";
3856 } else {
3857 $entry_comments = "";
3858 } */
3859
3860 $num_comments = $line["num_comments"];
3861 $entry_comments = "";
3862
3863 if ($num_comments > 0) {
3864 if ($line["comments"]) {
3865 $comments_url = $line["comments"];
3866 } else {
3867 $comments_url = $line["link"];
3868 }
3869 $entry_comments = "<a $link_target href=\"$comments_url\">$num_comments comments</a>";
3870 } else {
3871 if ($line["comments"] && $line["link"] != $line["comments"]) {
3872 $entry_comments = "<a $link_target href=\"".$line["comments"]."\">comments</a>";
3873 }
3874 }
3875
3876 print "<div class=\"postReply\">";
3877
3878 print "<div class=\"postHeader\">";
3879
3880 $entry_author = $line["author"];
3881
3882 if ($entry_author) {
3883 $entry_author = __(" - by ") . $entry_author;
3884 }
3885
3886 $parsed_updated = date(get_pref($link, 'LONG_DATE_FORMAT'),
3887 strtotime($line["updated"]));
3888
3889 print "<div class=\"postDate$rtl_class\">$parsed_updated</div>";
3890
3891 if ($line["link"]) {
3892 print "<div clear='both'><a $link_target href=\"" . $line["link"] . "\">" .
06202d88 3893 $line["title"] . "</a><span class='author'>$entry_author</span></div>";
3de0261a
AD
3894 } else {
3895 print "<div clear='both'>" . $line["title"] . "$entry_author</div>";
3896 }
3897
9cfd409d 3898/* $tmp_result = db_query($link, "SELECT DISTINCT tag_name FROM
3de0261a 3899 ttrss_tags WHERE post_int_id = " . $line["int_id"] . "
9cfd409d
AD
3900 ORDER BY tag_name"); */
3901
3902 $tags = get_article_tags($link, $id);
3de0261a
AD
3903
3904 $tags_str = "";
3905 $f_tags_str = "";
3906
3907 $num_tags = 0;
3908
9cfd409d 3909 foreach ($tags as $tag) {
3de0261a 3910 $num_tags++;
14b6c54b
AD
3911 $tag_escaped = str_replace("'", "\\'", $tag);
3912
3913 $tag_str = "<a href=\"javascript:viewfeed('$tag_escaped')\">$tag</a>, ";
3de0261a
AD
3914
3915 if ($num_tags == 6) {
e7544143
AD
3916 $tags_str .= "...";
3917
3de0261a
AD
3918 } else if ($num_tags < 6) {
3919 $tags_str .= $tag_str;
3920 }
3921 $f_tags_str .= $tag_str;
3922 }
3923
3924 $tags_str = preg_replace("/, $/", "", $tags_str);
3925 $f_tags_str = preg_replace("/, $/", "", $f_tags_str);
3926
e7544143
AD
3927 $all_tags_div = "<span class='cdmAllTagsCtr'>...<div class='cdmAllTags'>All Tags: $f_tags_str</div></span>";
3928 $tags_str = preg_replace("/\.\.\.$/", "$all_tags_div", $tags_str);
3929
3de0261a
AD
3930 if (!$entry_comments) $entry_comments = "&nbsp;"; # placeholder
3931
3932 if (!$tags_str) $tags_str = '<span class="tagList">'.__('no tags').'</span>';
3933
5f014cf1
AD
3934 print "<div style='float : right'>
3935 <img src='images/tag.png' class='tagsPic' alt='Tags' title='Tags'>
3936 $tags_str
3de0261a
AD
3937 <a title=\"Edit tags for this article\"
3938 href=\"javascript:editArticleTags($id, $feed_id)\">(+)</a></div>
3939 <div clear='both'>$entry_comments</div>";
3940
3941 print "</div>";
3942
3943 print "<div class=\"postIcon\">" . $feed_icon . "</div>";
3944 print "<div class=\"postContent\">";
3945
e7544143 3946 #print "<div id=\"allEntryTags\">".__('Tags:')." $f_tags_str</div>";
3de0261a 3947
c41890b0
AD
3948 $line["content"] = sanitize_rss($link, $line["content"]);
3949
3de0261a
AD
3950 if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW')) {
3951 $line["content"] = preg_replace("/href=/i", "target=\"_new\" href=", $line["content"]);
3952 }
3953
3de0261a
AD
3954 print $line["content"] . "</div>";
3955
3956 print "</div>";
3957
3958 }
3959
3960 print "]]></article>";
3961
3962 }
3963
3964 function outputHeadlinesList($link, $feed, $subop, $view_mode, $limit, $cat_view,
3965 $next_unread_feed, $offset) {
3966
46921916
AD
3967 $timing_info = getmicrotime();
3968
961f4c73
AD
3969 $topmost_article_ids = array();
3970
ac541432
AD
3971 if (!$offset) {
3972 $offset = 0;
3973 }
3de0261a
AD
3974
3975 if ($subop == "undefined") $subop = "";
3976
3977 if ($subop == "CatchupSelected") {
3978 $ids = split(",", db_escape_string($_GET["ids"]));
3979 $cmode = sprintf("%d", $_GET["cmode"]);
3980
3981 catchupArticlesById($link, $ids, $cmode);
3982 }
3983
3984 if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0) {
3985 update_generic_feed($link, $feed, $cat_view);
3986 }
3987
3988 if ($subop == "MarkAllRead") {
3989 catchup_feed($link, $feed, $cat_view);
3990
3991 if (get_pref($link, 'ON_CATCHUP_SHOW_NEXT_FEED')) {
3992 if ($next_unread_feed) {
3993 $feed = $next_unread_feed;
3994 }
3995 }
3996 }
3997
3998 if ($feed_id > 0) {
3999 $result = db_query($link,
4000 "SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
4001
4002 if (db_num_rows($result) == 0) {
4003 print "<div align='center'>".__('Feed not found.')."</div>";
4004 return;
4005 }
4006 }
4007
4008 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
10eb9da8 4009
3de0261a
AD
4010 $result = db_query($link, "SELECT rtl_content FROM ttrss_feeds
4011 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
4012
4013 if (db_num_rows($result) == 1) {
4014 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
4015 } else {
4016 $rtl_content = false;
4017 }
4018
4019 if ($rtl_content) {
4020 $rtl_tag = "dir=\"RTL\"";
4021 } else {
4022 $rtl_tag = "";
4023 }
4024 } else {
4025 $rtl_tag = "";
4026 $rtl_content = false;
4027 }
4028
4029 $script_dt_add = get_script_dt_add();
4030
4031 /// START /////////////////////////////////////////////////////////////////////////////////
4032
4033 $search = db_escape_string($_GET["query"]);
4034 $search_mode = db_escape_string($_GET["search_mode"]);
4035 $match_on = db_escape_string($_GET["match_on"]);
4036
4037 if (!$match_on) {
4038 $match_on = "both";
4039 }
4040
4041 $real_offset = $offset * $limit;
4042
46921916
AD
4043 if ($_GET["debug"]) $timing_info = print_checkpoint("H0", $timing_info);
4044
3de0261a
AD
4045 $qfh_ret = queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view,
4046 $search, $search_mode, $match_on, false, $real_offset);
4047
46921916
AD
4048 if ($_GET["debug"]) $timing_info = print_checkpoint("H1", $timing_info);
4049
3de0261a
AD
4050 $result = $qfh_ret[0];
4051 $feed_title = $qfh_ret[1];
4052 $feed_site_url = $qfh_ret[2];
4053 $last_error = $qfh_ret[3];
f56e3080
AD
4054
4055 if ($feed == -2) {
4056 $feed_site_url = article_publish_url($link);
4057 }
4058
3de0261a
AD
4059 /// STOP //////////////////////////////////////////////////////////////////////////////////
4060
ac541432
AD
4061 if (!$offset) {
4062 print "<div id=\"headlinesContainer\" $rtl_tag>";
3de0261a 4063
ac541432
AD
4064 if (!$result) {
4065 print "<div align='center'>".__("Could not display feed (query failed). Please check label match syntax or local configuration.")."</div>";
4066 return;
4067 }
3de0261a 4068
ac541432
AD
4069 print_headline_subtoolbar($link, $feed_site_url, $feed_title, false,
4070 $rtl_content, $feed, $cat_view, $search, $match_on, $search_mode,
4071 $offset, $limit);
3de0261a 4072
ac541432
AD
4073 print "<div id=\"headlinesInnerContainer\" onscroll=\"headlines_scroll_handler()\">";
4074 }
3de0261a
AD
4075
4076 if (db_num_rows($result) > 0) {
4077
4078# print "\{$offset}";
4079
ac541432 4080 if (!get_pref($link, 'COMBINED_DISPLAY_MODE') && !$offset) {
3de0261a
AD
4081 print "<table class=\"headlinesList\" id=\"headlinesList\"
4082 cellspacing=\"0\">";
4083 }
4084
4085 $lnum = 0;
4086
4087 error_reporting (DEFAULT_ERROR_LEVEL);
4088
4089 $num_unread = 0;
4090
4091 while ($line = db_fetch_assoc($result)) {
4092
4093 $class = ($lnum % 2) ? "even" : "odd";
4094
4095 $id = $line["id"];
4096 $feed_id = $line["feed_id"];
961f4c73
AD
4097
4098 if (count($topmost_article_ids) < 5) {
4099 array_push($topmost_article_ids, $id);
4100 }
4101
3de0261a
AD
4102 if ($line["last_read"] == "" &&
4103 ($line["unread"] != "t" && $line["unread"] != "1")) {
4104
4105 $update_pic = "<img id='FUPDPIC-$id' src=\"images/updated.png\"
4106 alt=\"Updated\">";
4107 } else {
4108 $update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.gif\"
4109 alt=\"Updated\">";
4110 }
4111
4112 if ($line["unread"] == "t" || $line["unread"] == "1") {
4113 $class .= "Unread";
4114 ++$num_unread;
4115 $is_unread = true;
4116 } else {
4117 $is_unread = false;
4118 }
4119
4120 if ($line["marked"] == "t" || $line["marked"] == "1") {
67343d9f 4121 $marked_pic = "<img id=\"FMPIC-$id\" src=\"images/mark_set.png\"
3de0261a 4122 class=\"markedPic\"
67343d9f 4123 alt=\"Reset mark\" onclick='javascript:tMark($id)'>";
3de0261a 4124 } else {
67343d9f 4125 $marked_pic = "<img id=\"FMPIC-$id\" src=\"images/mark_unset.png\"
3de0261a 4126 class=\"markedPic\"
67343d9f 4127 alt=\"Set mark\" onclick='javascript:tMark($id)'>";
3de0261a
AD
4128 }
4129
e4f4b46f
AD
4130 if ($line["published"] == "t" || $line["published"] == "1") {
4131 $published_pic = "<img id=\"FPPIC-$id\" src=\"images/pub_set.png\"
4132 class=\"markedPic\"
4133 alt=\"Unpublish\" onclick='javascript:tPub($id)'>";
4134 } else {
4135 $published_pic = "<img id=\"FPPIC-$id\" src=\"images/pub_unset.png\"
4136 class=\"markedPic\"
4137 alt=\"Publish\" onclick='javascript:tPub($id)'>";
4138 }
4139
3de0261a
AD
4140# $content_link = "<a target=\"_new\" href=\"".$line["link"]."\">" .
4141# $line["title"] . "</a>";
4142
4143 $content_link = "<a href=\"javascript:view($id,$feed_id);\">" .
4144 $line["title"] . "</a>";
4145
4146# $content_link = "<a href=\"javascript:viewContentUrl('".$line["link"]."');\">" .
4147# $line["title"] . "</a>";
4148
4149 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
46921916 4150 $updated_fmt = smart_date_time(strtotime($line["updated_noms"]));
3de0261a
AD
4151 } else {
4152 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
46921916 4153 $updated_fmt = date($short_date, strtotime($line["updated_noms"]));
3de0261a
AD
4154 }
4155
4156 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
4157 $content_preview = truncate_string(strip_tags($line["content_preview"]),
4158 100);
4159 }
4160
4161 $entry_author = $line["author"];
4162
4163 if ($entry_author) {
4164 $entry_author = " - by $entry_author";
4165 }
4166
4167 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
4168
4169 print "<tr class='$class' id='RROW-$id'>";
4170
67343d9f 4171 print "<td class='hlUpdPic'>$update_pic</td>";
3de0261a
AD
4172
4173 print "<td class='hlSelectRow'>
67343d9f
AD
4174 <input type=\"checkbox\" onclick=\"tSR(this)\"
4175 id=\"RCHK-$id\">
3de0261a
AD
4176 </td>";
4177
4178 print "<td class='hlMarkedPic'>$marked_pic</td>";
e4f4b46f 4179 print "<td class='hlMarkedPic'>$published_pic</td>";
3de0261a
AD
4180
4181 if ($line["feed_title"]) {
4182 print "<td class='hlContent'>$content_link</td>";
4183 print "<td class='hlFeed'>
4184 <a href=\"javascript:viewfeed($feed_id, '', false)\">".
02815555 4185 truncate_string($line["feed_title"],30)."</a>&nbsp;</td>";
3de0261a
AD
4186 } else {
4187 print "<td class='hlContent' valign='middle'>";
4188
4189 print "<a href=\"javascript:view($id,$feed_id);\">" .
4190 $line["title"];
4191
4192 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
4193 if ($content_preview) {
4194 print "<span class=\"contentPreview\"> - $content_preview</span>";
4195 }
4196 }
4197
4198 print "</a>";
4199 print "</td>";
4200 }
4201
4202 print "<td class=\"hlUpdated\"><nobr>$updated_fmt&nbsp;</nobr></td>";
4203
4204 print "</tr>";
4205
4206 } else {
4207
4208 if ($is_unread) {
4209 $add_class = "Unread";
4210 } else {
4211 $add_class = "";
4212 }
4213
e4914b62
AD
4214 print "<div class=\"cdmArticle$add_class\"
4215 id=\"RROW-$id\" onmouseover='cdmMouseIn(this)'
4216 onmouseout='cdmMouseOut(this)'>";
3de0261a
AD
4217
4218 print "<div class=\"cdmHeader\">";
4219
4220 print "<div class=\"articleUpdated\">$updated_fmt</div>";
4221
4222 print "<a class=\"title\"
4223 onclick=\"javascript:toggleUnread($id, 0)\"
3fc2eed5 4224 target=\"_new\" href=\"".$line["link"]."\">".$line["title"]."</a>";
3de0261a
AD
4225
4226 print $entry_author;
4227
4228 if ($line["feed_title"]) {
4229 print "&nbsp;(<a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a>)";
4230 }
4231
4232 print "</div>";
4233
3fc2eed5
AD
4234 if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW')) {
4235 $line["content_preview"] = preg_replace("/href=/i",
4236 "target=\"_new\" href=", $line["content_preview"]);
4237 }
4238
3de0261a
AD
4239 print "<div class=\"cdmContent\">" . $line["content_preview"] . "</div><br clear=\"all\">";
4240
e2ccbfab 4241 print "<div class=\"cdmFooter\"><span class='s0'>";
3de0261a 4242
e2ccbfab 4243 /* print "<div class=\"markedPic\">Star it: $marked_pic</div>"; */
3de0261a 4244
e2ccbfab
AD
4245 print __("Select:").
4246 " <input type=\"checkbox\" onclick=\"toggleSelectRowById(this,
3de0261a
AD
4247 'RROW-$id')\" class=\"feedCheckBox\" id=\"RCHK-$id\">";
4248
e2ccbfab 4249 print "</span><span class='s1'>$marked_pic</span> ";
e4f4b46f 4250 print "<span class='s1'>$published_pic</span> ";
e2ccbfab 4251
3de0261a
AD
4252 $tags = get_article_tags($link, $id);
4253
4254 $tags_str = "";
22d1f3db 4255 $full_tags_str = "";
d735ebd2 4256 $num_tags = 0;
3de0261a
AD
4257
4258 foreach ($tags as $tag) {
4259 $num_tags++;
22d1f3db
AD
4260 $full_tags_str .= "<a href=\"javascript:viewfeed('$tag')\">$tag</a>, ";
4261 if ($num_tags < 5) {
4262 $tags_str .= "<a href=\"javascript:viewfeed('$tag')\">$tag</a>, ";
4263 } else if ($num_tags == 5) {
4264 $tags_str .= "...";
4265 }
3de0261a
AD
4266 }
4267
4268 $tags_str = preg_replace("/, $/", "", $tags_str);
22d1f3db
AD
4269 $full_tags_str = preg_replace("/, $/", "", $full_tags_str);
4270
4271 $all_tags_div = "<span class='cdmAllTagsCtr'>...<div class='cdmAllTags'>All Tags: $full_tags_str</div></span>";
4272
4273 $tags_str = preg_replace("/\.\.\.$/", "$all_tags_div", $tags_str);
4274
3de0261a
AD
4275
4276 if ($tags_str == "") $tags_str = "no tags";
e2ccbfab
AD
4277
4278// print "<img src='images/tag.png' class='markedPic'>";
4279
5f014cf1
AD
4280 print "<span class='s1'>
4281 <img class='tagsPic' src='images/tag.png' alt='Tags'
4282 title='Tags'> $tags_str <a title=\"Edit tags for this article\"
3de0261a
AD
4283 href=\"javascript:editArticleTags($id, $feed_id, true)\">(+)</a>";
4284
e2ccbfab 4285 print "</span>";
3de0261a 4286
e2ccbfab
AD
4287 print "<span class='s2'>Toggle: <a class=\"cdmToggleLink\"
4288 href=\"javascript:toggleUnread($id)\">
4289 Unread</a></span>";
3de0261a 4290
e2ccbfab 4291 print "</div>";
3de0261a
AD
4292 print "</div>";
4293
4294 }
4295
4296 ++$lnum;
4297 }
4298
ac541432 4299 if (!get_pref($link, 'COMBINED_DISPLAY_MODE') && !$offset) {
3de0261a
AD
4300 print "</table>";
4301 }
4302
4303// print_headline_subtoolbar($link,
4304// "javascript:catchupPage()", "Mark page as read", true, $rtl_content);
4305
4306
4307 } else {
ac541432 4308 if (!$offset) print "<div class='whiteBox'>".__('No articles found.')."</div>";
3de0261a
AD
4309 }
4310
ac541432
AD
4311 if (!$offset) {
4312 print "</div>";
4313 print "</div>";
4314 }
3de0261a 4315
961f4c73 4316 return $topmost_article_ids;
3de0261a 4317 }
0979b696
AD
4318
4319// from here: http://www.roscripts.com/Create_tag_cloud-71.html
4320
4321 function printTagCloud($link) {
35a03bdd
AD
4322
4323 /* get first ref_id to count from */
4324
dcac082b
AD
4325 /*
4326
35a03bdd
AD
4327 $query = "";
4328
4329 if (DB_TYPE == "pgsql") {
4330 $query = "SELECT MIN(id) AS id FROM ttrss_user_entries, ttrss_entries
4331 WHERE int_id = id AND owner_uid = ".$_SESSION["uid"]."
4332 AND date_entered > NOW() - INTERVAL '30 days'";
4333 } else {
4334 $query = "SELECT MIN(id) AS id FROM ttrss_user_entries, ttrss_entries
4335 WHERE int_id = id AND owner_uid = ".$_SESSION["uid"]."
4336 AND date_entered > DATE_SUB(NOW(), INTERVAL 30 DAY)";
4337 }
4338
4339 $result = db_query($link, $query);
dcac082b 4340 $first_id = db_fetch_result($result, 0, "id"); */
35a03bdd 4341
dcac082b 4342 //AND post_int_id >= '$first_id'
0979b696
AD
4343 $query = "SELECT tag_name, COUNT(post_int_id) AS count
4344 FROM ttrss_tags WHERE owner_uid = ".$_SESSION["uid"]."
b31af972 4345 GROUP BY tag_name ORDER BY count DESC LIMIT 50";
0979b696
AD
4346
4347 $result = db_query($link, $query);
4348
4349 $tags = array();
4350
4351 while ($line = db_fetch_assoc($result)) {
4352 $tags[$line["tag_name"]] = $line["count"];
4353 }
4354
4355 ksort($tags);
4356
4357 $max_size = 32; // max font size in pixels
4548a580 4358 $min_size = 11; // min font size in pixels
0979b696
AD
4359
4360 // largest and smallest array values
4361 $max_qty = max(array_values($tags));
4362 $min_qty = min(array_values($tags));
4363
4364 // find the range of values
4365 $spread = $max_qty - $min_qty;
4366 if ($spread == 0) { // we don't want to divide by zero
4367 $spread = 1;
4368 }
4369
4370 // set the font-size increment
4371 $step = ($max_size - $min_size) / ($spread);
4372
4373 // loop through the tag array
4374 foreach ($tags as $key => $value) {
4375 // calculate font-size
4376 // find the $value in excess of $min_qty
4377 // multiply by the font-size increment ($size)
4378 // and add the $min_size set above
4379 $size = round($min_size + (($value - $min_qty) * $step));
546ffab4
AD
4380
4381 $key_escaped = str_replace("'", "\\'", $key);
4382
4383 echo "<a href=\"javascript:viewfeed('$key_escaped') \" style=\"font-size: " .
0979b696
AD
4384 $size . "px\" title=\"$value articles tagged with " .
4385 $key . '">' . $key . '</a> ';
4386 }
4387 }
46921916
AD
4388
4389 function print_checkpoint($n, $s) {
4390 $ts = getmicrotime();
4391 echo sprintf("<!-- CP[$n] %.4f seconds -->", $ts - $s);
4392 return $ts;
4393 }
14b6c54b
AD
4394
4395 function sanitize_tag($tag) {
4396 $tag = trim($tag);
4397
4398 $tag = mb_strtolower($tag, 'utf-8');
4399
0c3d1c68
AD
4400 $tag = preg_replace('/[\"\+\>\<]/', "", $tag);
4401
4402// $tag = str_replace('"', "", $tag);
4403// $tag = str_replace("+", " ", $tag);
14b6c54b
AD
4404 $tag = str_replace("technorati tag: ", "", $tag);
4405
4406 return $tag;
4407 }
e4f4b46f
AD
4408
4409 function generate_publish_key() {
4410 return sha1(uniqid(rand(), true));
4411 }
4412
f56e3080
AD
4413 function article_publish_url($link) {
4414
17a756d1 4415 $url_path = 'http://' . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
f56e3080
AD
4416
4417 $url_path .= "?op=publish&key=" . get_pref($link, "_PREFS_PUBLISH_KEY");
4418
4419 return $url_path;
4420 }
4421
40d13c28 4422?>