]> git.wh0rd.org - tt-rss.git/blame - functions.php
rework no daemon warning
[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';
b619ff15 10 require_once 'db-prefs.php';
5bc0bd27 11 require_once 'compat.php';
af106b0e 12 require_once 'errors.php';
8911ac8b 13 require_once 'version.php';
40d13c28 14
49f9c923 15 define('MAGPIE_USER_AGENT_EXT', ' (Tiny Tiny RSS/' . VERSION . ')');
a3ee2a38
AD
16 define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');
17
49f9c923
AD
18 require_once "magpierss/rss_fetch.inc";
19 require_once 'magpierss/rss_utils.inc';
20
ad507f85
AD
21 function purge_feed($link, $feed_id, $purge_interval, $debug = false) {
22
23 $rows = -1;
4c193675 24
fefa6ca3 25 if (DB_TYPE == "pgsql") {
44e241cb 26/* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
fefa6ca3 27 marked = false AND feed_id = '$feed_id' AND
35d8cf43 28 (SELECT date_entered FROM ttrss_entries WHERE
44e241cb
AD
29 id = ref_id) < NOW() - INTERVAL '$purge_interval days'"); */
30
6e7f8d26
AD
31 $pg_version = get_pgsql_version($link);
32
33 if (preg_match("/^7\./", $pg_version) || preg_match("/^8\.0/", $pg_version)) {
1e59ae35
AD
34
35 $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
36 ttrss_entries.id = ref_id AND
37 marked = false AND
38 feed_id = '$feed_id' AND
39 ttrss_entries.date_entered < NOW() - INTERVAL '$purge_interval days'");
40
41 } else {
42
43 $result = db_query($link, "DELETE FROM ttrss_user_entries
44 USING ttrss_entries
45 WHERE ttrss_entries.id = ref_id AND
46 marked = false AND
47 feed_id = '$feed_id' AND
fc774155 48 ttrss_entries.date_entered < NOW() - INTERVAL '$purge_interval days'");
1e59ae35 49 }
ad507f85
AD
50
51 $rows = pg_affected_rows($result);
52
fefa6ca3 53 } else {
1e59ae35 54
30f1746f 55/* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
fefa6ca3 56 marked = false AND feed_id = '$feed_id' AND
35d8cf43 57 (SELECT date_entered FROM ttrss_entries WHERE
30f1746f
AD
58 id = ref_id) < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)"); */
59
60 $result = db_query($link, "DELETE FROM ttrss_user_entries
61 USING ttrss_user_entries, ttrss_entries
62 WHERE ttrss_entries.id = ref_id AND
63 marked = false AND
64 feed_id = '$feed_id' AND
65 ttrss_entries.date_entered < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)");
66
ad507f85
AD
67 $rows = mysql_affected_rows($link);
68
69 }
70
71 if ($debug) {
72 print "Purged feed $feed_id ($purge_interval): deleted $rows articles\n";
fefa6ca3
AD
73 }
74 }
75
44e241cb
AD
76 function global_purge_old_posts($link, $do_output = false, $limit = false) {
77
894ebcf5 78 $random_qpart = sql_random_function();
fefa6ca3 79
44e241cb
AD
80 if ($limit) {
81 $limit_qpart = "LIMIT $limit";
82 } else {
83 $limit_qpart = "";
84 }
85
fefa6ca3 86 $result = db_query($link,
44e241cb
AD
87 "SELECT id,purge_interval,owner_uid FROM ttrss_feeds
88 ORDER BY $random_qpart $limit_qpart");
fefa6ca3
AD
89
90 while ($line = db_fetch_assoc($result)) {
91
92 $feed_id = $line["id"];
93 $purge_interval = $line["purge_interval"];
94 $owner_uid = $line["owner_uid"];
95
96 if ($purge_interval == 0) {
97
98 $tmp_result = db_query($link,
99 "SELECT value FROM ttrss_user_prefs WHERE
100 pref_name = 'PURGE_OLD_DAYS' AND owner_uid = '$owner_uid'");
101
102 if (db_num_rows($tmp_result) != 0) {
103 $purge_interval = db_fetch_result($tmp_result, 0, "value");
104 }
105 }
106
107 if ($do_output) {
ad507f85 108// print "Feed $feed_id: purge interval = $purge_interval\n";
fefa6ca3
AD
109 }
110
111 if ($purge_interval > 0) {
ad507f85 112 purge_feed($link, $feed_id, $purge_interval, $do_output);
fefa6ca3
AD
113 }
114 }
115
71604ca4
AD
116 // purge orphaned posts in main content table
117 db_query($link, "DELETE FROM ttrss_entries WHERE
118 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
119
fefa6ca3
AD
120 }
121
b6eefba5 122 function purge_old_posts($link) {
5d73494a 123
f1a80dae
AD
124 $user_id = $_SESSION["uid"];
125
126 $result = db_query($link, "SELECT id,purge_interval FROM ttrss_feeds
127 WHERE owner_uid = '$user_id'");
5d73494a
AD
128
129 while ($line = db_fetch_assoc($result)) {
130
131 $feed_id = $line["id"];
132 $purge_interval = $line["purge_interval"];
133
b619ff15 134 if ($purge_interval == 0) $purge_interval = get_pref($link, 'PURGE_OLD_DAYS');
5d73494a 135
140aae81 136 if ($purge_interval > 0) {
fefa6ca3 137 purge_feed($link, $feed_id, $purge_interval);
5d73494a
AD
138 }
139 }
71604ca4
AD
140
141 // purge orphaned posts in main content table
142 db_query($link, "DELETE FROM ttrss_entries WHERE
143 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
c3a8d71a
AD
144 }
145
1f2b01ed 146 function update_all_feeds($link, $fetch, $user_id = false, $force_daemon = false) {
40d13c28 147
4769ddaf 148 if (WEB_DEMO_MODE) return;
b0b4abcf 149
a2770077
AD
150 if (!$user_id) {
151 $user_id = $_SESSION["uid"];
152 purge_old_posts($link);
153 }
154
25af8dad 155// db_query($link, "BEGIN");
b82af8c3 156
cbd8650d
AD
157 if (MAX_UPDATE_TIME > 0) {
158 if (DB_TYPE == "mysql") {
159 $q_order = "RAND()";
160 } else {
161 $q_order = "RANDOM()";
162 }
163 } else {
164 $q_order = "last_updated DESC";
165 }
166
d148926e 167 $result = db_query($link, "SELECT feed_url,id,
798f722b 168 SUBSTRING(last_updated,1,19) AS last_updated,
5c563acd 169 update_interval FROM ttrss_feeds WHERE owner_uid = '$user_id'
cbd8650d
AD
170 ORDER BY $q_order");
171
172 $upd_start = time();
40d13c28 173
b6eefba5 174 while ($line = db_fetch_assoc($result)) {
d148926e
AD
175 $upd_intl = $line["update_interval"];
176
b619ff15 177 if (!$upd_intl || $upd_intl == 0) {
e289ca71 178 $upd_intl = get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $user_id, false);
b619ff15 179 }
d148926e 180
c1e202b7
AD
181 if ($upd_intl < 0) {
182 // Updates for this feed are disabled
183 continue;
184 }
185
93d40f50
AD
186 if ($fetch || (!$line["last_updated"] ||
187 time() - strtotime($line["last_updated"]) > ($upd_intl * 60))) {
c5142cca 188
cbd8650d
AD
189// print "<!-- feed: ".$line["feed_url"]." -->";
190
1f2b01ed 191 update_rss_feed($link, $line["feed_url"], $line["id"], $force_daemon);
cbd8650d
AD
192
193 $upd_elapsed = time() - $upd_start;
194
195 if (MAX_UPDATE_TIME > 0 && $upd_elapsed > MAX_UPDATE_TIME) {
196 return;
197 }
d148926e 198 }
40d13c28
AD
199 }
200
25af8dad 201// db_query($link, "COMMIT");
b82af8c3 202
40d13c28
AD
203 }
204
4065b60b
AD
205 function fetch_file_contents($url) {
206 if (USE_CURL_FOR_ICONS) {
207 $tmpfile = tempnam(TMP_DIRECTORY, "ttrss-tmp");
208
209 $ch = curl_init($url);
210 $fp = fopen($tmpfile, "w");
211
212 if ($fp) {
213 curl_setopt($ch, CURLOPT_FILE, $fp);
214 curl_exec($ch);
215 curl_close($ch);
216 fclose($fp);
217 }
218
219 $contents = file_get_contents($tmpfile);
220 unlink($tmpfile);
221
222 return $contents;
223
224 } else {
225 return file_get_contents($url);
226 }
227
228 }
78800912 229
4065b60b
AD
230 // adapted from wordpress favicon plugin by Jeff Minard (http://thecodepro.com/)
231 // http://dev.wp-plugins.org/file/favatars/trunk/favatars.php
78800912 232
4065b60b 233 function get_favicon_url($url) {
99331724 234
4065b60b 235 if ($html = @fetch_file_contents($url)) {
78800912 236
4065b60b
AD
237 if ( preg_match('/<link[^>]+rel="(?:shortcut )?icon"[^>]+?href="([^"]+?)"/si', $html, $matches)) {
238 // Attempt to grab a favicon link from their webpage url
239 $linkUrl = html_entity_decode($matches[1]);
c798704b 240
4065b60b
AD
241 if (substr($linkUrl, 0, 1) == '/') {
242 $urlParts = parse_url($url);
243 $faviconURL = $urlParts['scheme'].'://'.$urlParts['host'].$linkUrl;
244 } else if (substr($linkUrl, 0, 7) == 'http://') {
245 $faviconURL = $linkUrl;
246 } else if (substr($url, -1, 1) == '/') {
247 $faviconURL = $url.$linkUrl;
248 } else {
249 $faviconURL = $url.'/'.$linkUrl;
e695fdc8 250 }
717f5e64 251
c798704b 252 } else {
4065b60b
AD
253 // If unsuccessful, attempt to "guess" the favicon location
254 $urlParts = parse_url($url);
255 $faviconURL = $urlParts['scheme'].'://'.$urlParts['host'].'/favicon.ico';
256 }
257 }
c798704b 258
4065b60b
AD
259 // Run a test to see if what we have attempted to get actually exists.
260 if(USE_CURL_FOR_ICONS || url_validate($faviconURL)) {
261 return $faviconURL;
262 } else {
263 return false;
264 }
265 }
266
267 function url_validate($link) {
268
269 $url_parts = @parse_url($link);
270
271 if ( empty( $url_parts["host"] ) )
272 return false;
273
274 if ( !empty( $url_parts["path"] ) ) {
275 $documentpath = $url_parts["path"];
276 } else {
277 $documentpath = "/";
278 }
279
280 if ( !empty( $url_parts["query"] ) )
281 $documentpath .= "?" . $url_parts["query"];
282
283 $host = $url_parts["host"];
284 $port = $url_parts["port"];
285
286 if ( empty($port) )
287 $port = "80";
288
289 $socket = @fsockopen( $host, $port, $errno, $errstr, 30 );
290
291 if ( !$socket )
292 return false;
c798704b 293
4065b60b
AD
294 fwrite ($socket, "HEAD ".$documentpath." HTTP/1.0\r\nHost: $host\r\n\r\n");
295
296 $http_response = fgets( $socket, 22 );
297
298 $responses = "/(200 OK)|(30[0-9] Moved)/";
299 if ( preg_match($responses, $http_response) ) {
300 fclose($socket);
301 return true;
302 } else {
303 return false;
304 }
305
306 }
307
308 function check_feed_favicon($site_url, $feed, $link) {
309 $favicon_url = get_favicon_url($site_url);
310
311# print "FAVICON [$site_url]: $favicon_url\n";
312
313 error_reporting(0);
314
315 $icon_file = ICONS_DIR . "/$feed.ico";
316
317 if ($favicon_url && !file_exists($icon_file)) {
318 $contents = fetch_file_contents($favicon_url);
319
320 $fp = fopen($icon_file, "w");
78800912 321
4065b60b
AD
322 if ($fp) {
323 fwrite($fp, $contents);
324 fclose($fp);
325 chmod($icon_file, 0644);
326 }
78800912 327 }
4065b60b
AD
328
329 error_reporting(DEFAULT_ERROR_LEVEL);
330
78800912
AD
331 }
332
ddb68b81 333 function update_rss_feed($link, $feed_url, $feed, $ignore_daemon = false) {
40d13c28 334
ddb68b81 335 if (DAEMON_REFRESH_ONLY && !$_GET["daemon"] && !$ignore_daemon) {
21cfcdf2
AD
336 return;
337 }
338
47c6c988 339 $result = db_query($link, "SELECT update_interval,auth_login,auth_pass
a88c1f36
AD
340 FROM ttrss_feeds WHERE id = '$feed'");
341
ff25e639
AD
342 $auth_login = db_unescape_string(db_fetch_result($result, 0, "auth_login"));
343 $auth_pass = db_unescape_string(db_fetch_result($result, 0, "auth_pass"));
47c6c988 344
a88c1f36
AD
345 $update_interval = db_fetch_result($result, 0, "update_interval");
346
347 if ($update_interval < 0) { return; }
348
ab3d0b99
AD
349 $feed = db_escape_string($feed);
350
47c6c988
AD
351 $fetch_url = $feed_url;
352
353 if ($auth_login && $auth_pass) {
354 $url_parts = array();
355 preg_match("/(^[^:]*):\/\/(.*)/", $fetch_url, $url_parts);
356
357 if ($url_parts[1] && $url_parts[2]) {
358 $fetch_url = $url_parts[1] . "://$auth_login:$auth_pass@" . $url_parts[2];
359 }
360
361 }
ab3d0b99 362
49f9c923
AD
363 error_reporting(0);
364 $rss = fetch_rss($fetch_url);
365 error_reporting (DEFAULT_ERROR_LEVEL);
7c5a308d 366
b6eefba5 367 $feed = db_escape_string($feed);
dcee8f61 368
49f9c923 369 if ($rss) {
7c5a308d 370
44e241cb 371// db_query($link, "BEGIN");
dd8c76a9 372
a88c1f36 373 $result = db_query($link, "SELECT title,icon_url,site_url,owner_uid
f324892e 374 FROM ttrss_feeds WHERE id = '$feed'");
331900c6 375
b6eefba5
AD
376 $registered_title = db_fetch_result($result, 0, "title");
377 $orig_icon_url = db_fetch_result($result, 0, "icon_url");
f324892e 378 $orig_site_url = db_fetch_result($result, 0, "site_url");
331900c6 379
7fed1940
AD
380 $owner_uid = db_fetch_result($result, 0, "owner_uid");
381
8d0ec6fd 382 if (get_pref($link, 'ENABLE_FEED_ICONS', $owner_uid, false)) {
4065b60b 383 check_feed_favicon($rss->channel["link"], $feed, $link);
a2770077
AD
384 }
385
746b249f 386 if (!$registered_title || $registered_title == "[Unknown]") {
7c5a308d 387
49f9c923 388 $feed_title = db_escape_string($rss->channel["title"]);
7c5a308d 389
f324892e
AD
390 db_query($link, "UPDATE ttrss_feeds SET
391 title = '$feed_title' WHERE id = '$feed'");
392 }
393
49f9c923
AD
394 $site_url = $rss->channel["link"];
395 // weird, weird Magpie
396 if (!$site_url) $site_url = db_escape_string($rss->channel["link_"]);
147f7691
AD
397
398 if ($site_url && $orig_site_url != db_escape_string($site_url)) {
f324892e
AD
399 db_query($link, "UPDATE ttrss_feeds SET
400 site_url = '$site_url' WHERE id = '$feed'");
331900c6 401 }
40d13c28 402
b7f4bda2
AD
403// print "I: " . $rss->channel["image"]["url"];
404
49f9c923 405 $icon_url = $rss->image["url"];
b7f4bda2 406
147f7691 407 if ($icon_url && !$orig_icon_url != db_escape_string($icon_url)) {
b6eefba5
AD
408 $icon_url = db_escape_string($icon_url);
409 db_query($link, "UPDATE ttrss_feeds SET icon_url = '$icon_url' WHERE id = '$feed'");
b7f4bda2
AD
410 }
411
e6155a06
AD
412
413 $filters = array();
414
4b3dff6e 415 $result = db_query($link, "SELECT reg_exp,
db42b934 416 ttrss_filter_types.name AS name,
073ca0e6
AD
417 ttrss_filter_actions.name AS action,
418 action_param
db42b934 419 FROM ttrss_filters,ttrss_filter_types,ttrss_filter_actions WHERE
e8b79d16 420 enabled = true AND
db42b934
AD
421 owner_uid = $owner_uid AND
422 ttrss_filter_types.id = filter_type AND
423 ttrss_filter_actions.id = action_id AND
ead60402 424 (feed_id IS NULL OR feed_id = '$feed')");
e6155a06 425
b6eefba5 426 while ($line = db_fetch_assoc($result)) {
e6155a06 427 if (!$filters[$line["name"]]) $filters[$line["name"]] = array();
19c9cb11
AD
428
429 $filter["reg_exp"] = $line["reg_exp"];
430 $filter["action"] = $line["action"];
073ca0e6
AD
431 $filter["action_param"] = $line["action_param"];
432
19c9cb11 433 array_push($filters[$line["name"]], $filter);
e6155a06
AD
434 }
435
49f9c923 436 $iterator = $rss->items;
7c5a308d 437
49f9c923
AD
438 if (!$iterator || !is_array($iterator)) $iterator = $rss->entries;
439 if (!$iterator || !is_array($iterator)) $iterator = $rss;
c22789da
AD
440
441 if (!is_array($iterator)) {
39541e74 442 /* db_query($link, "UPDATE ttrss_feeds
75bd0669 443 SET last_error = 'Parse error: can\'t find any articles.'
39541e74 444 WHERE id = '$feed'"); */
c22789da
AD
445 return; // WTF?
446 }
ddb68b81
AD
447
448 foreach ($iterator as $item) {
7c5a308d 449
be832a1a 450 $entry_guid = $item["id"];
7c5a308d 451
be832a1a
AD
452 if (!$entry_guid) $entry_guid = $item["guid"];
453 if (!$entry_guid) $entry_guid = $item["link"];
454 if (!$entry_guid) $entry_guid = make_guid_from_title($item["title"]);
455
456 if (!$entry_guid) continue;
457
458 $entry_timestamp = "";
459
460 $rss_2_date = $item['pubdate'];
461 $rss_1_date = $item['dc']['date'];
462 $atom_date = $item['issued'];
463 if (!$atom_date) $atom_date = $item['updated'];
464
465 if ($atom_date != "") $entry_timestamp = parse_w3cdtf($atom_date);
466 if ($rss_1_date != "") $entry_timestamp = parse_w3cdtf($rss_1_date);
467 if ($rss_2_date != "") $entry_timestamp = strtotime($rss_2_date);
b82af8c3 468
be832a1a
AD
469 if ($entry_timestamp == "") {
470 $entry_timestamp = time();
471 $no_orig_date = 'true';
472 } else {
473 $no_orig_date = 'false';
474 }
475
476 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
477
478 $entry_title = trim(strip_tags($item["title"]));
479
480 // strange Magpie workaround
481 $entry_link = $item["link_"];
482 if (!$entry_link) $entry_link = $item["link"];
483
484 if (!$entry_title) continue;
1f64b1be 485# if (!$entry_link) continue;
7d3ab0dd 486
be832a1a 487 $entry_link = strip_tags($entry_link);
7d3ab0dd 488
be832a1a 489 $entry_content = $item["content:escaped"];
bbb416e5 490
be832a1a
AD
491 if (!$entry_content) $entry_content = $item["content:encoded"];
492 if (!$entry_content) $entry_content = $item["content"];
493 if (!$entry_content) $entry_content = $item["atom_content"];
494 if (!$entry_content) $entry_content = $item["summary"];
495 if (!$entry_content) $entry_content = $item["description"];
bbb416e5 496
be832a1a 497// if (!$entry_content) continue;
bbb416e5 498
be832a1a
AD
499 // WTF
500 if (is_array($entry_content)) {
501 $entry_content = $entry_content["encoded"];
502 if (!$entry_content) $entry_content = $entry_content["escaped"];
503 }
504
505// print_r($item);
506// print_r(htmlspecialchars($entry_content));
507// print "<br>";
508
509 $entry_content_unescaped = $entry_content;
510 $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
511
512 $entry_comments = strip_tags($item["comments"]);
513
514 $entry_author = db_escape_string(strip_tags($item['dc']['creator']));
515
83f114c8
AD
516 if ($item['author']) {
517 if (!$entry_author) {
518 $entry_author = db_escape_string(strip_tags($item['author']['name']));
519 }
520
521 if (!$entry_author) {
522 $entry_author = db_escape_string(strip_tags($item['author']['email']));
523 }
524
525 if (!$entry_author) {
526 $entry_author = db_escape_string(strip_tags($item['author']));
527 }
be832a1a
AD
528 }
529
83f114c8
AD
530 if (preg_match('/^[\t\n\r ]*$/', $entry_author)) $entry_author = '';
531
be832a1a
AD
532 $entry_guid = db_escape_string(strip_tags($entry_guid));
533
534 $result = db_query($link, "SELECT id FROM ttrss_entries
535 WHERE guid = '$entry_guid'");
536
537 $entry_content = db_escape_string($entry_content);
538 $entry_title = db_escape_string($entry_title);
539 $entry_link = db_escape_string($entry_link);
540 $entry_comments = db_escape_string($entry_comments);
541
542 $num_comments = db_escape_string($item["slash"]["comments"]);
543
544 if (!$num_comments) $num_comments = 0;
545
546 $dc_subject = $item['dc']['subject'];
547
548 $subject_tags = false;
549
550 if (is_array($dc_subject)) {
551 $subject_tags = $dc_subject;
552 } else if ($dc_subject) {
553 $subject_tags = array($dc_subject);
8add756a
AD
554 }
555
d48d160c 556 # sanitize content
183ad07b
AD
557
558 $entry_content = sanitize_rss($entry_content);
d48d160c 559
44e241cb
AD
560 db_query($link, "BEGIN");
561
4c193675
AD
562 if (db_num_rows($result) == 0) {
563
564 // base post entry does not exist, create it
565
4c193675
AD
566 $result = db_query($link,
567 "INSERT INTO ttrss_entries
568 (title,
569 guid,
570 link,
571 updated,
572 content,
573 content_hash,
574 no_orig_date,
575 date_entered,
11b0dce2 576 comments,
b6104dee
AD
577 num_comments,
578 author)
4c193675
AD
579 VALUES
580 ('$entry_title',
581 '$entry_guid',
582 '$entry_link',
583 '$entry_timestamp_fmt',
584 '$entry_content',
585 '$content_hash',
586 $no_orig_date,
587 NOW(),
11b0dce2 588 '$entry_comments',
b6104dee
AD
589 '$num_comments',
590 '$entry_author')");
8926aab8
AD
591 } else {
592 // we keep encountering the entry in feeds, so we need to
593 // update date_entered column so that we don't get horrible
594 // dupes when the entry gets purged and reinserted again e.g.
595 // in the case of SLOW SLOW OMG SLOW updating feeds
596
597 $base_entry_id = db_fetch_result($result, 0, "id");
598
599 db_query($link, "UPDATE ttrss_entries SET date_entered = NOW()
600 WHERE id = '$base_entry_id'");
4c193675
AD
601 }
602
603 // now it should exist, if not - bad luck then
604
6385315d
AD
605 $result = db_query($link, "SELECT
606 id,content_hash,no_orig_date,title,
8926aab8 607 substring(date_entered,1,19) as date_entered,
11b0dce2
AD
608 substring(updated,1,19) as updated,
609 num_comments
6385315d
AD
610 FROM
611 ttrss_entries
612 WHERE guid = '$entry_guid'");
4c193675
AD
613
614 if (db_num_rows($result) == 1) {
615
11b0dce2
AD
616 // this will be used below in update handler
617 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
618 $orig_title = db_fetch_result($result, 0, "title");
619 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
8926aab8
AD
620 $orig_date_entered = strtotime(db_fetch_result($result,
621 0, "date_entered"));
6385315d 622
11b0dce2 623 $ref_id = db_fetch_result($result, 0, "id");
4c193675 624
11b0dce2 625 // check for user post link to main table
4c193675 626
11b0dce2 627 // do we allow duplicate posts with same GUID in different feeds?
8d0ec6fd 628 if (get_pref($link, "ALLOW_DUPLICATE_POSTS", $owner_uid, false)) {
11b0dce2
AD
629 $dupcheck_qpart = "AND feed_id = '$feed'";
630 } else {
631 $dupcheck_qpart = "";
632 }
71604ca4 633
11b0dce2 634// error_reporting(0);
19c9cb11 635
073ca0e6 636 $tuple = get_filter_name($entry_title, $entry_content,
11b0dce2 637 $entry_link, $filters);
19c9cb11 638
073ca0e6
AD
639 $filter_name = $tuple[0];
640 $filter_param = $tuple[1];
641
11b0dce2
AD
642 if ($filter_name == "filter") {
643 continue;
644 }
19c9cb11 645
11b0dce2 646// error_reporting (DEFAULT_ERROR_LEVEL);
3a933f22 647
11b0dce2
AD
648 $result = db_query($link,
649 "SELECT ref_id FROM ttrss_user_entries WHERE
650 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
651 $dupcheck_qpart");
652
653 // okay it doesn't exist - create user entry
654 if (db_num_rows($result) == 0) {
655
656 if ($filter_name != 'catchup') {
657 $unread = 'true';
658 $last_read_qpart = 'NULL';
659 } else {
660 $unread = 'false';
661 $last_read_qpart = 'NOW()';
662 }
dd7d3187
AD
663
664 if ($filter_name == 'mark') {
665 $marked = 'true';
666 } else {
667 $marked = 'false';
668 }
19c9cb11 669
11b0dce2
AD
670 $result = db_query($link,
671 "INSERT INTO ttrss_user_entries
dd7d3187 672 (ref_id, owner_uid, feed_id, unread, last_read, marked)
11b0dce2 673 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
dd7d3187 674 $last_read_qpart, $marked)");
11b0dce2
AD
675 }
676
6385315d
AD
677 $post_needs_update = false;
678
8d0ec6fd 679 if (get_pref($link, "UPDATE_POST_ON_CHECKSUM_CHANGE", $owner_uid, false) &&
6385315d
AD
680 ($content_hash != $orig_content_hash)) {
681 $post_needs_update = true;
682 }
683
684 if ($orig_title != $entry_title) {
685 $post_needs_update = true;
686 }
687
11b0dce2
AD
688 if ($orig_num_comments != $num_comments) {
689 $post_needs_update = true;
690 }
691
6385315d
AD
692// this doesn't seem to be very reliable
693//
694// if ($orig_timestamp != $entry_timestamp && !$orig_no_orig_date) {
695// $post_needs_update = true;
696// }
697
698 // if post needs update, update it and mark all user entries
1c73bc0c 699 // linking to this post as updated
6385315d
AD
700 if ($post_needs_update) {
701
702// print "<!-- post $orig_title needs update : $post_needs_update -->";
703
6385315d 704 db_query($link, "UPDATE ttrss_entries
11b0dce2
AD
705 SET title = '$entry_title', content = '$entry_content',
706 num_comments = '$num_comments'
6385315d
AD
707 WHERE id = '$ref_id'");
708
8d0ec6fd 709 if (get_pref($link, "MARK_UNREAD_ON_UPDATE", $owner_uid, false)) {
4919fb42
AD
710 db_query($link, "UPDATE ttrss_user_entries
711 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
712 } else {
713 db_query($link, "UPDATE ttrss_user_entries
714 SET last_read = null WHERE ref_id = '$ref_id' AND unread = false");
715 }
6385315d
AD
716
717 }
4c193675
AD
718 }
719
44e241cb
AD
720 db_query($link, "COMMIT");
721
eb36b4eb
AD
722 /* taaaags */
723 // <a href="http://technorati.com/tag/Xorg" rel="tag">Xorg</a>, //
724
05732aa0 725 $entry_tags = null;
eb36b4eb 726
372ced8b 727 preg_match_all("/<a.*?href=.http:\/\/.*?technorati.com\/tag\/([^\"\'>]+)/i",
ee2c3050
AD
728 $entry_content_unescaped, $entry_tags);
729
730// print "<br>$entry_title : $entry_content_unescaped<br>";
731// print_r($entry_tags);
372ced8b 732// print "<br>";
eb36b4eb
AD
733
734 $entry_tags = $entry_tags[1];
735
073ca0e6
AD
736 # check for manual tags
737
738 if ($filter_name == "tag") {
739
740 $manual_tags = trim_array(split(",", $filter_param));
741
be832a1a
AD
742 foreach ($manual_tags as $tag) {
743 if (tag_is_valid($tag)) {
744 array_push($entry_tags, $tag);
745 }
746 }
747 }
748
749 if ($subject_tags) {
750 foreach ($subject_tags as $tag) {
751 if (tag_is_valid($tag)) {
073ca0e6
AD
752 array_push($entry_tags, $tag);
753 }
754 }
755 }
756
eb36b4eb
AD
757 if (count($entry_tags) > 0) {
758
44e241cb
AD
759 db_query($link, "BEGIN");
760
05732aa0
AD
761 $result = db_query($link, "SELECT id,int_id
762 FROM ttrss_entries,ttrss_user_entries
25da6909 763 WHERE guid = '$entry_guid'
05732aa0 764 AND feed_id = '$feed' AND ref_id = id
7fed1940 765 AND owner_uid = '$owner_uid'");
eb36b4eb 766
fe99ab12 767 if (db_num_rows($result) == 1) {
eb36b4eb 768
fe99ab12
AD
769 $entry_id = db_fetch_result($result, 0, "id");
770 $entry_int_id = db_fetch_result($result, 0, "int_id");
771
772 foreach ($entry_tags as $tag) {
773 $tag = db_escape_string(strtolower($tag));
31483fc1
AD
774
775 $tag = str_replace("+", " ", $tag);
fe99ab12
AD
776 $tag = str_replace("technorati tag: ", "", $tag);
777
778 $result = db_query($link, "SELECT id FROM ttrss_tags
779 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
780 owner_uid = '$owner_uid' LIMIT 1");
781
782 // print db_fetch_result($result, 0, "id");
783
784 if ($result && db_num_rows($result) == 0) {
785
786 // print "tagging $entry_id as $tag<br>";
787
788 db_query($link, "INSERT INTO ttrss_tags
789 (owner_uid,tag_name,post_int_id)
790 VALUES ('$owner_uid','$tag', '$entry_int_id')");
791 }
792 }
eb36b4eb 793 }
44e241cb 794 db_query($link, "COMMIT");
05732aa0 795 }
4c193675 796 }
40d13c28 797
ab3d0b99
AD
798 db_query($link, "UPDATE ttrss_feeds
799 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
eb36b4eb 800
44e241cb 801// db_query($link, "COMMIT");
dd8c76a9 802
ab3d0b99
AD
803 } else {
804 $error_msg = db_escape_string(magpie_error());
805 db_query($link,
aa5f9f5f
AD
806 "UPDATE ttrss_feeds SET last_error = '$error_msg',
807 last_updated = NOW() WHERE id = '$feed'");
40d13c28
AD
808 }
809
810 }
811
f175937c 812 function print_select($id, $default, $values, $attributes = "") {
79f3553b 813 print "<select name=\"$id\" id=\"$id\" $attributes>";
a0d53889
AD
814 foreach ($values as $v) {
815 if ($v == $default)
816 $sel = " selected";
817 else
818 $sel = "";
819
820 print "<option$sel>$v</option>";
821 }
822 print "</select>";
823 }
40d13c28 824
79f3553b
AD
825 function print_select_hash($id, $default, $values, $attributes = "") {
826 print "<select name=\"$id\" id='$id' $attributes>";
673d54ca
AD
827 foreach (array_keys($values) as $v) {
828 if ($v == $default)
829 $sel = "selected";
830 else
831 $sel = "";
832
833 print "<option $sel value=\"$v\">".$values[$v]."</option>";
834 }
835
836 print "</select>";
837 }
838
19c9cb11 839 function get_filter_name($title, $content, $link, $filters) {
e6155a06
AD
840
841 if ($filters["title"]) {
19c9cb11
AD
842 foreach ($filters["title"] as $filter) {
843 $reg_exp = $filter["reg_exp"];
844 if (preg_match("/$reg_exp/i", $title)) {
073ca0e6 845 return array($filter["action"], $filter["action_param"]);
19c9cb11 846 }
e6155a06
AD
847 }
848 }
849
850 if ($filters["content"]) {
19c9cb11
AD
851 foreach ($filters["content"] as $filter) {
852 $reg_exp = $filter["reg_exp"];
853 if (preg_match("/$reg_exp/i", $content)) {
073ca0e6 854 return array($filter["action"], $filter["action_param"]);
19c9cb11 855 }
e6155a06
AD
856 }
857 }
858
859 if ($filters["both"]) {
860 foreach ($filters["both"] as $filter) {
19c9cb11
AD
861 $reg_exp = $filter["reg_exp"];
862 if (preg_match("/$reg_exp/i", $title) ||
863 preg_match("/$reg_exp/i", $content)) {
073ca0e6 864 return array($filter["action"], $filter["action_param"]);
19c9cb11 865 }
e6155a06
AD
866 }
867 }
868
3a933f22 869 if ($filters["link"]) {
19c9cb11
AD
870 $reg_exp = $filter["reg_exp"];
871 foreach ($filters["link"] as $filter) {
872 $reg_exp = $filter["reg_exp"];
873 if (preg_match("/$reg_exp/i", $link)) {
073ca0e6 874 return array($filter["action"], $filter["action_param"]);
19c9cb11 875 }
3a933f22
AD
876 }
877 }
878
e6155a06
AD
879 return false;
880 }
881
240054f1
AD
882 function get_filter_matches($title, $content, $link, $filters) {
883
884 $matches = array();
885
886 if ($filters["title"]) {
887 foreach ($filters["title"] as $filter) {
888 $reg_exp = $filter["reg_exp"];
889 if (preg_match("/$reg_exp/i", $title)) {
890 array_push($matches, array($filter["action"], $filter["action_param"]));
891 }
892 }
893 }
894
895 if ($filters["content"]) {
896 foreach ($filters["content"] as $filter) {
897 $reg_exp = $filter["reg_exp"];
898 if (preg_match("/$reg_exp/i", $content)) {
899 array_push($matches, array($filter["action"], $filter["action_param"]));
900 }
901 }
902 }
903
904 if ($filters["both"]) {
905 foreach ($filters["both"] as $filter) {
906 $reg_exp = $filter["reg_exp"];
907 if (preg_match("/$reg_exp/i", $title) ||
908 preg_match("/$reg_exp/i", $content)) {
909 array_push($matches, array($filter["action"], $filter["action_param"]));
910 }
911 }
912 }
913
914 if ($filters["link"]) {
915 $reg_exp = $filter["reg_exp"];
916 foreach ($filters["link"] as $filter) {
917 $reg_exp = $filter["reg_exp"];
918 if (preg_match("/$reg_exp/i", $link)) {
919 array_push($matches, array($filter["action"], $filter["action_param"]));
920 }
921 }
922 }
923
924 return $matches;
925 }
926
9323147e 927 function printFeedEntry($feed_id, $class, $feed_title, $unread, $icon_file, $link,
fb1fb4ab 928 $rtl_content = false, $last_updated = false, $last_error = false) {
254e0e4b
AD
929
930 if (file_exists($icon_file) && filesize($icon_file) > 0) {
023fe037 931 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"$icon_file\">";
254e0e4b 932 } else {
023fe037 933 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"images/blank_icon.gif\">";
254e0e4b
AD
934 }
935
9323147e
AD
936 if ($rtl_content) {
937 $rtl_tag = "dir=\"rtl\"";
938 } else {
939 $rtl_tag = "dir=\"ltr\"";
940 }
941
78d5212c
AD
942 $error_notify_msg = "";
943
fb1fb4ab
AD
944 if ($last_error) {
945 $link_title = "Error: $last_error ($last_updated)";
78d5212c 946 $error_notify_msg = "(Error)";
ad780e9c 947 } else if ($last_updated) {
fb1fb4ab
AD
948 $link_title = "Updated: $last_updated";
949 }
950
7210613a 951 $feed = "<a title=\"$link_title\" id=\"FEEDL-$feed_id\"
c50e2b30 952 href=\"javascript:viewfeed('$feed_id', '', false, '', false, 0);\">$feed_title</a>";
254e0e4b
AD
953
954 print "<li id=\"FEEDR-$feed_id\" class=\"$class\">";
b619ff15 955 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
254e0e4b
AD
956 print "$feed_icon";
957 }
958
9323147e 959 print "<span $rtl_tag id=\"FEEDN-$feed_id\">$feed</span>";
254e0e4b
AD
960
961 if ($unread != 0) {
962 $fctr_class = "";
963 } else {
964 $fctr_class = "class=\"invisible\"";
965 }
966
9323147e 967 print " <span $rtl_tag $fctr_class id=\"FEEDCTR-$feed_id\">
254e0e4b 968 (<span id=\"FEEDU-$feed_id\">$unread</span>)</span>";
78d5212c
AD
969
970 if (get_pref($link, "EXTENDED_FEEDLIST")) {
971 print "<div class=\"feedExtInfo\">
972 <span id=\"FLUPD-$feed_id\">$last_updated $error_notify_msg</span></div>";
973 }
974
254e0e4b
AD
975 print "</li>";
976
977 }
978
406d9489
AD
979 function getmicrotime() {
980 list($usec, $sec) = explode(" ",microtime());
981 return ((float)$usec + (float)$sec);
982 }
983
77e96719
AD
984 function print_radio($id, $default, $values, $attributes = "") {
985 foreach ($values as $v) {
986
987 if ($v == $default)
5da169d9 988 $sel = "checked";
77e96719 989 else
5da169d9
AD
990 $sel = "";
991
992 if ($v == "Yes") {
993 $sel .= " value=\"1\"";
994 } else {
995 $sel .= " value=\"0\"";
996 }
77e96719 997
69654950
AD
998 print "<input class=\"noborder\"
999 type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
77e96719
AD
1000
1001 }
1002 }
1003
ff485f1d
AD
1004 function initialize_user_prefs($link, $uid) {
1005
1006 $uid = db_escape_string($uid);
1007
1008 db_query($link, "BEGIN");
1009
1010 $result = db_query($link, "SELECT pref_name,def_value FROM ttrss_prefs");
1011
1012 $u_result = db_query($link, "SELECT pref_name
1013 FROM ttrss_user_prefs WHERE owner_uid = '$uid'");
1014
1015 $active_prefs = array();
1016
1017 while ($line = db_fetch_assoc($u_result)) {
1018 array_push($active_prefs, $line["pref_name"]);
1019 }
1020
1021 while ($line = db_fetch_assoc($result)) {
1022 if (array_search($line["pref_name"], $active_prefs) === FALSE) {
1023// print "adding " . $line["pref_name"] . "<br>";
1024
1025 db_query($link, "INSERT INTO ttrss_user_prefs
1026 (owner_uid,pref_name,value) VALUES
1027 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."')");
1028
1029 }
1030 }
1031
1032 db_query($link, "COMMIT");
1033
1034 }
956c7629
AD
1035
1036 function lookup_user_id($link, $user) {
1037
1038 $result = db_query($link, "SELECT id FROM ttrss_users WHERE
1039 login = '$login'");
1040
1041 if (db_num_rows($result) == 1) {
1042 return db_fetch_result($result, 0, "id");
1043 } else {
1044 return false;
1045 }
1046 }
1047
18664970
AD
1048 function http_authenticate_user($link) {
1049
1050 if (!$_SERVER["PHP_AUTH_USER"]) {
1051
1052 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
1053 header('HTTP/1.0 401 Unauthorized');
1054 exit;
1055
1056 } else {
1057 $auth_result = authenticate_user($link,
1058 $_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"]);
1059
1060 if (!$auth_result) {
1061 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
1062 header('HTTP/1.0 401 Unauthorized');
1063 exit;
1064 }
1065 }
1066
1067 return true;
1068 }
1069
461766f3 1070 function authenticate_user($link, $login, $password, $force_auth = false) {
c8437f35 1071
131b01b3 1072 if (!SINGLE_USER_MODE) {
c8437f35 1073
131b01b3 1074 $pwd_hash = 'SHA1:' . sha1($password);
461766f3
AD
1075
1076 if ($force_auth && defined('_DEBUG_USER_SWITCH')) {
1077 $query = "SELECT id,login,access_level
1078 FROM ttrss_users WHERE
1079 login = '$login'";
1080 } else {
1081 $query = "SELECT id,login,access_level
1082 FROM ttrss_users WHERE
1083 login = '$login' AND pwd_hash = '$pwd_hash'";
1084 }
1085
1086 $result = db_query($link, $query);
131b01b3
AD
1087
1088 if (db_num_rows($result) == 1) {
1089 $_SESSION["uid"] = db_fetch_result($result, 0, "id");
1090 $_SESSION["name"] = db_fetch_result($result, 0, "login");
1091 $_SESSION["access_level"] = db_fetch_result($result, 0, "access_level");
1092
1093 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
1094 $_SESSION["uid"]);
1095
1096 $user_theme = get_user_theme_path($link);
1097
1098 $_SESSION["theme"] = $user_theme;
1099 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1100
1101 initialize_user_prefs($link, $_SESSION["uid"]);
1102
1103 return true;
1104 }
1105
1106 return false;
503eb349 1107
131b01b3 1108 } else {
503eb349 1109
131b01b3
AD
1110 $_SESSION["uid"] = 1;
1111 $_SESSION["name"] = "admin";
f557cd78 1112
0bbba72d
AD
1113 $user_theme = get_user_theme_path($link);
1114
1115 $_SESSION["theme"] = $user_theme;
1116 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1117
1118 initialize_user_prefs($link, $_SESSION["uid"]);
1119
c8437f35
AD
1120 return true;
1121 }
c8437f35
AD
1122 }
1123
e6cb77a0
AD
1124 function make_password($length = 8) {
1125
1126 $password = "";
798f722b
AD
1127 $possible = "0123456789abcdfghjkmnpqrstvwxyzABCDFGHJKMNPQRSTVWXYZ";
1128
1129 $i = 0;
e6cb77a0
AD
1130
1131 while ($i < $length) {
1132 $char = substr($possible, mt_rand(0, strlen($possible)-1), 1);
1133
1134 if (!strstr($password, $char)) {
1135 $password .= $char;
1136 $i++;
1137 }
1138 }
1139 return $password;
1140 }
1141
1142 // this is called after user is created to initialize default feeds, labels
1143 // or whatever else
1144
1145 // user preferences are checked on every login, not here
1146
1147 function initialize_user($link, $uid) {
1148
1149 db_query($link, "insert into ttrss_labels (owner_uid,sql_exp,description)
1150 values ('$uid','unread = true', 'Unread articles')");
1151
1152 db_query($link, "insert into ttrss_labels (owner_uid,sql_exp,description)
1153 values ('$uid','last_read is null and unread = false', 'Updated articles')");
1154
1155 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
74bff337 1156 values ('$uid', 'Tiny Tiny RSS: New Releases',
628fcd2c 1157 'http://tt-rss.spb.ru/releases.rss')");
3b0feb9b
AD
1158
1159 }
e6cb77a0 1160
b8aa49bc 1161 function logout_user() {
5ccc1cf5
AD
1162 session_destroy();
1163 if (isset($_COOKIE[session_name()])) {
1164 setcookie(session_name(), '', time()-42000, '/');
1165 }
b8aa49bc
AD
1166 }
1167
75836f33 1168 function get_script_urlpath() {
87a79fa4 1169 return preg_replace('/\/[^\/]*$/', "", $_SERVER["REQUEST_URI"]);
75836f33
AD
1170 }
1171
1172 function get_login_redirect() {
1173 $server = $_SERVER["SERVER_NAME"];
1174
1175 if (ENABLE_LOGIN_SSL) {
1176 $protocol = "https";
1177 } else {
1178 $protocol = "http";
1179 }
1180
1181 $url_path = get_script_urlpath();
1182
1183 $redirect_uri = "$protocol://$server$url_path/login.php";
1184
1185 return $redirect_uri;
1186 }
1187
916f788a 1188 function validate_session($link) {
a2e9b457 1189 if (SESSION_CHECK_ADDRESS && $_SESSION["uid"]) {
916f788a
AD
1190 if ($_SESSION["ip_address"]) {
1191 if ($_SESSION["ip_address"] != $_SERVER["REMOTE_ADDR"]) {
1192 return false;
1193 }
1194 }
1195 }
1196 return true;
1197 }
1198
7ae65adf
AD
1199 function basic_nosid_redirect_check() {
1200 if (!SINGLE_USER_MODE) {
3dd46f19 1201 if (!$_COOKIE[get_session_cookie_name()]) {
7ae65adf
AD
1202 $redirect_uri = get_login_redirect();
1203 $return_to = preg_replace('/.*?\//', '', $_SERVER["REQUEST_URI"]);
1204 header("Location: $redirect_uri?rt=$return_to");
1205 exit;
1206 }
1207 }
1208 }
1209
b8aa49bc
AD
1210 function login_sequence($link) {
1211 if (!SINGLE_USER_MODE) {
75836f33 1212
461766f3
AD
1213 if (defined('_DEBUG_USER_SWITCH') && $_SESSION["uid"]) {
1214 $swu = db_escape_string($_REQUEST["swu"]);
1215 if ($swu) {
1216 $_SESSION["prefs_cache"] = false;
1217 return authenticate_user($link, $swu, null, true);
1218 }
1219 }
1220
916f788a
AD
1221 if (!validate_session($link)) {
1222 logout_user();
1223 $redirect_uri = get_login_redirect();
1224 $return_to = preg_replace('/.*?\//', '', $_SERVER["REQUEST_URI"]);
1225 header("Location: $redirect_uri?rt=$return_to");
1226 exit;
1227 }
1228
b8aa49bc
AD
1229 if (!USE_HTTP_AUTH) {
1230 if (!$_SESSION["uid"]) {
75836f33 1231 $redirect_uri = get_login_redirect();
e31dca14
AD
1232 $return_to = preg_replace('/.*?\//', '', $_SERVER["REQUEST_URI"]);
1233 header("Location: $redirect_uri?rt=$return_to");
b8aa49bc
AD
1234 exit;
1235 }
1236 } else {
f557cd78
AD
1237 if (!$_SESSION["uid"]) {
1238 if (!$_SERVER["PHP_AUTH_USER"]) {
1239
1240 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS"');
1241 header('HTTP/1.0 401 Unauthorized');
1242 exit;
1243
1244 } else {
1245 $auth_result = authenticate_user($link,
1246 $_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"]);
1247
1248 if (!$auth_result) {
1249 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS"');
1250 header('HTTP/1.0 401 Unauthorized');
1251 exit;
1252 }
1253 }
1254 }
b8aa49bc
AD
1255 }
1256 } else {
0bbba72d 1257 return authenticate_user($link, "admin", null);
b8aa49bc
AD
1258 }
1259 }
3547842a
AD
1260
1261 function truncate_string($str, $max_len) {
12db369c
AD
1262 if (mb_strlen($str, "utf-8") > $max_len - 3) {
1263 return mb_substr($str, 0, $max_len, "utf-8") . "...";
3547842a
AD
1264 } else {
1265 return $str;
1266 }
1267 }
54a60e1a
AD
1268
1269 function get_user_theme_path($link) {
798f722b
AD
1270 $result = db_query($link, "SELECT theme_path
1271 FROM
1272 ttrss_themes,ttrss_users
1273 WHERE ttrss_themes.id = theme_id AND ttrss_users.id = " . $_SESSION["uid"]);
54a60e1a
AD
1274 if (db_num_rows($result) != 0) {
1275 return db_fetch_result($result, 0, "theme_path");
1276 } else {
1277 return null;
1278 }
1279 }
be773442
AD
1280
1281 function smart_date_time($timestamp) {
1282 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
1283 return date("G:i", $timestamp);
f26450f1 1284 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
1285 return date("M d, G:i", $timestamp);
1286 } else {
b02111c2 1287 return date("Y/m/d G:i", $timestamp);
be773442
AD
1288 }
1289 }
1290
1291 function smart_date($timestamp) {
1292 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
1293 return "Today";
f26450f1 1294 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
1295 return date("D m", $timestamp);
1296 } else {
b02111c2 1297 return date("Y/m/d", $timestamp);
be773442
AD
1298 }
1299 }
a654a595
AD
1300
1301 function sql_bool_to_string($s) {
1302 if ($s == "t" || $s == "1") {
1303 return "true";
1304 } else {
1305 return "false";
1306 }
1307 }
e3c99f3b
AD
1308
1309 function sql_bool_to_bool($s) {
1310 if ($s == "t" || $s == "1") {
1311 return true;
1312 } else {
1313 return false;
1314 }
1315 }
0ea4fb50 1316
e3c99f3b 1317
0ea4fb50
AD
1318 function toggleEvenOdd($a) {
1319 if ($a == "even")
1320 return "odd";
1321 else
1322 return "even";
1323 }
6043fb7e
AD
1324
1325 function sanity_check($link) {
9cbca41f 1326
aec3ce39
AD
1327 error_reporting(0);
1328
6043fb7e
AD
1329 $error_code = 0;
1330 $result = db_query($link, "SELECT schema_version FROM ttrss_version");
1331 $schema_version = db_fetch_result($result, 0, "schema_version");
1332
1333 if ($schema_version != SCHEMA_VERSION) {
1334 $error_code = 5;
1335 }
1336
aec3ce39
AD
1337 if (DB_TYPE == "mysql") {
1338 $result = db_query($link, "SELECT true", false);
1339 if (db_num_rows($result) != 1) {
1340 $error_code = 10;
1341 }
1342 }
1343
1344 error_reporting (DEFAULT_ERROR_LEVEL);
1345
6043fb7e 1346 if ($error_code != 0) {
aec3ce39 1347 print_error_xml($error_code);
6043fb7e
AD
1348 return false;
1349 } else {
1350 return true;
4220d6b0 1351 }
6043fb7e
AD
1352 }
1353
27981ca3
AD
1354 function file_is_locked($filename) {
1355 error_reporting(0);
1356 $fp = fopen($filename, "r");
1357 error_reporting(DEFAULT_ERROR_LEVEL);
1358 if ($fp) {
1359 if (flock($fp, LOCK_EX | LOCK_NB)) {
1360 flock($fp, LOCK_UN);
1361 fclose($fp);
1362 return false;
1363 }
1364 fclose($fp);
1365 return true;
1366 }
1367 return false;
1368 }
1369
fcb4c0c9
AD
1370 function make_lockfile($filename) {
1371 $fp = fopen($filename, "w");
1372
1373 if (flock($fp, LOCK_EX | LOCK_NB)) {
1374 return $fp;
1375 } else {
1376 return false;
1377 }
1378 }
1379
894ebcf5
AD
1380 function sql_random_function() {
1381 if (DB_TYPE == "mysql") {
1382 return "RAND()";
1383 } else {
1384 return "RANDOM()";
1385 }
1386 }
1387
23aa0d16 1388 function catchup_feed($link, $feed, $cat_view) {
88040f57
AD
1389
1390 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
23aa0d16
AD
1391
1392 if ($cat_view) {
1393
1394 if ($feed > 0) {
1395 $cat_qpart = "cat_id = '$feed'";
1396 } else {
1397 $cat_qpart = "cat_id IS NULL";
1398 }
1399
1400 $tmp_result = db_query($link, "SELECT id
1401 FROM ttrss_feeds WHERE $cat_qpart AND owner_uid = " .
1402 $_SESSION["uid"]);
1403
1404 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1405
1406 $tmp_feed = $tmp_line["id"];
1407
1408 db_query($link, "UPDATE ttrss_user_entries
1409 SET unread = false,last_read = NOW()
1410 WHERE feed_id = '$tmp_feed' AND owner_uid = " . $_SESSION["uid"]);
1411 }
1412
1413 } else if ($feed > 0) {
1414
1415 $tmp_result = db_query($link, "SELECT id
1416 FROM ttrss_feeds WHERE parent_feed = '$feed'
1417 ORDER BY cat_id,title");
1418
1419 $parent_ids = array();
1420
1421 if (db_num_rows($tmp_result) > 0) {
1422 while ($p = db_fetch_assoc($tmp_result)) {
1423 array_push($parent_ids, "feed_id = " . $p["id"]);
1424 }
1425
1426 $children_qpart = implode(" OR ", $parent_ids);
1427
1428 db_query($link, "UPDATE ttrss_user_entries
1429 SET unread = false,last_read = NOW()
1430 WHERE (feed_id = '$feed' OR $children_qpart)
1431 AND owner_uid = " . $_SESSION["uid"]);
1432
1433 } else {
1434 db_query($link, "UPDATE ttrss_user_entries
1435 SET unread = false,last_read = NOW()
1436 WHERE feed_id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
1437 }
1438
1439 } else if ($feed < 0 && $feed > -10) { // special, like starred
1440
1441 if ($feed == -1) {
1442 db_query($link, "UPDATE ttrss_user_entries
1443 SET unread = false,last_read = NOW()
1444 WHERE marked = true AND owner_uid = ".$_SESSION["uid"]);
1445 }
1446
1447 } else if ($feed < -10) { // label
1448
1449 // TODO make this more efficient
1450
1451 $label_id = -$feed - 11;
1452
1453 $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
1454 WHERE id = '$label_id'");
1455
1456 if ($tmp_result) {
1457 $sql_exp = db_fetch_result($tmp_result, 0, "sql_exp");
1458
1459 db_query($link, "BEGIN");
1460
1461 $tmp2_result = db_query($link,
1462 "SELECT
1463 int_id
1464 FROM
88040f57 1465 ttrss_user_entries,ttrss_entries,ttrss_feeds
23aa0d16 1466 WHERE
88040f57
AD
1467 ref_id = ttrss_entries.id AND
1468 ttrss_user_entries.feed_id = ttrss_feeds.id AND
23aa0d16 1469 $sql_exp AND
88040f57 1470 ttrss_user_entries.owner_uid = " . $_SESSION["uid"]);
23aa0d16
AD
1471
1472 while ($tmp_line = db_fetch_assoc($tmp2_result)) {
1473 db_query($link, "UPDATE
1474 ttrss_user_entries
1475 SET
1476 unread = false, last_read = NOW()
1477 WHERE
1478 int_id = " . $tmp_line["int_id"]);
1479 }
1480
1481 db_query($link, "COMMIT");
1482
1483/* db_query($link, "UPDATE ttrss_user_entries,ttrss_entries
1484 SET unread = false,last_read = NOW()
1485 WHERE $sql_exp
1486 AND ref_id = id
1487 AND owner_uid = ".$_SESSION["uid"]); */
1488 }
1489 }
1490 } else { // tag
1491 db_query($link, "BEGIN");
1492
1493 $tag_name = db_escape_string($feed);
1494
1495 $result = db_query($link, "SELECT post_int_id FROM ttrss_tags
1496 WHERE tag_name = '$tag_name' AND owner_uid = " . $_SESSION["uid"]);
1497
1498 while ($line = db_fetch_assoc($result)) {
1499 db_query($link, "UPDATE ttrss_user_entries SET
1500 unread = false, last_read = NOW()
1501 WHERE int_id = " . $line["post_int_id"]);
1502 }
1503 db_query($link, "COMMIT");
1504 }
1505 }
1506
1507 function update_generic_feed($link, $feed, $cat_view) {
1508 if ($cat_view) {
1509
1510 if ($feed > 0) {
1511 $cat_qpart = "cat_id = '$feed'";
1512 } else {
1513 $cat_qpart = "cat_id IS NULL";
1514 }
1515
1516 $tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
1517 WHERE $cat_qpart AND owner_uid = " . $_SESSION["uid"]);
1518
1519 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1520 $feed_url = $tmp_line["feed_url"];
1521 update_rss_feed($link, $feed_url, $feed, ENABLE_UPDATE_DAEMON);
1522 }
1523
1524 } else {
1525 $tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
1526 WHERE id = '$feed'");
1527 $feed_url = db_fetch_result($tmp_result, 0, "feed_url");
1528 update_rss_feed($link, $feed_url, $feed, ENABLE_UPDATE_DAEMON);
1529 }
1530 }
a9cb1f83 1531
cf4d339c
AD
1532 function getAllCounters($link, $omode = "tflc") {
1533/* getLabelCounters($link);
a9cb1f83
AD
1534 getFeedCounters($link);
1535 getTagCounters($link);
1536 getGlobalCounters($link);
1537 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1538 getCategoryCounters($link);
cf4d339c
AD
1539 } */
1540
1541 if (!$omode) $omode = "tflc";
1542
1543 getGlobalCounters($link);
1544
1545 if (strchr($omode, "l")) getLabelCounters($link);
1546 if (strchr($omode, "f")) getFeedCounters($link);
1547 if (strchr($omode, "t")) getTagCounters($link);
1548 if (strchr($omode, "c")) {
1549 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1550 getCategoryCounters($link);
1551 }
a9cb1f83
AD
1552 }
1553 }
1554
1555 function getCategoryCounters($link) {
1556 $result = db_query($link, "SELECT cat_id,SUM((SELECT COUNT(int_id)
1557 FROM ttrss_user_entries WHERE feed_id = ttrss_feeds.id
1558 AND unread = true)) AS unread FROM ttrss_feeds
1559 WHERE
cfb02131 1560 hidden = false AND owner_uid = ".$_SESSION["uid"]." GROUP BY cat_id");
a9cb1f83
AD
1561
1562 while ($line = db_fetch_assoc($result)) {
1563 $line["cat_id"] = sprintf("%d", $line["cat_id"]);
1564 print "<counter type=\"category\" id=\"".$line["cat_id"]."\" counter=\"".
1565 $line["unread"]."\"/>";
1566 }
1567 }
1568
f295c368
AD
1569 function getCategoryUnread($link, $cat) {
1570
18664970
AD
1571 if ($cat != 0) {
1572 $cat_query = "cat_id = '$cat'";
1573 } else {
1574 $cat_query = "cat_id IS NULL";
1575 }
1576
1577 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE $cat_query
cfb02131 1578 AND hidden = false
f295c368
AD
1579 AND owner_uid = " . $_SESSION["uid"]);
1580
1581 $cat_feeds = array();
1582 while ($line = db_fetch_assoc($result)) {
1583 array_push($cat_feeds, "feed_id = " . $line["id"]);
1584 }
1585
18664970
AD
1586 if (count($cat_feeds) == 0) return 0;
1587
f295c368
AD
1588 $match_part = implode(" OR ", $cat_feeds);
1589
1590 $result = db_query($link, "SELECT COUNT(int_id) AS unread
1591 FROM ttrss_user_entries
4919fb42 1592 WHERE unread = true AND ($match_part) AND owner_uid = " . $_SESSION["uid"]);
f295c368
AD
1593
1594 $unread = 0;
1595
1596 # this needs to be rewritten
1597 while ($line = db_fetch_assoc($result)) {
1598 $unread += $line["unread"];
1599 }
1600
1601 return $unread;
1602
1603 }
1604
1605 function getFeedUnread($link, $feed, $is_cat = false) {
a9cb1f83 1606 $n_feed = sprintf("%d", $feed);
f295c368
AD
1607
1608 if ($is_cat) {
831ff047 1609 return getCategoryUnread($link, $n_feed);
f295c368 1610 } else if ($n_feed == -1) {
a9cb1f83 1611 $match_part = "marked = true";
4919fb42 1612 } else if ($n_feed > 0) {
831ff047 1613
e8b8485f
AD
1614 $result = db_query($link, "SELECT id FROM ttrss_feeds
1615 WHERE parent_feed = '$n_feed'
318260cc 1616 AND hidden = false
4919fb42 1617 AND owner_uid = " . $_SESSION["uid"]);
831ff047
AD
1618
1619 if (db_num_rows($result) > 0) {
4919fb42 1620
831ff047
AD
1621 $linked_feeds = array();
1622 while ($line = db_fetch_assoc($result)) {
1623 array_push($linked_feeds, "feed_id = " . $line["id"]);
1624 }
e8b8485f
AD
1625
1626 array_push($linked_feeds, "feed_id = $n_feed");
831ff047
AD
1627
1628 $match_part = implode(" OR ", $linked_feeds);
1629
4919fb42 1630 $result = db_query($link, "SELECT COUNT(int_id) AS unread
318260cc 1631 FROM ttrss_user_entries
e8b8485f
AD
1632 WHERE unread = true AND ($match_part)
1633 AND owner_uid = " . $_SESSION["uid"]);
4919fb42
AD
1634
1635 $unread = 0;
1636
1637 # this needs to be rewritten
1638 while ($line = db_fetch_assoc($result)) {
1639 $unread += $line["unread"];
1640 }
1641
1642 return $unread;
1643
831ff047
AD
1644 } else {
1645 $match_part = "feed_id = '$n_feed'";
1646 }
a9cb1f83 1647 } else if ($feed < -10) {
318260cc 1648
a9cb1f83
AD
1649 $label_id = -$feed - 11;
1650
1651 $result = db_query($link, "SELECT sql_exp FROM ttrss_labels WHERE
1652 id = '$label_id' AND owner_uid = " . $_SESSION["uid"]);
1653
1654 $match_part = db_fetch_result($result, 0, "sql_exp");
1655 }
1656
1657 if ($match_part) {
1658
1659 $result = db_query($link, "SELECT count(int_id) AS unread
88040f57
AD
1660 FROM ttrss_user_entries,ttrss_feeds,ttrss_entries WHERE
1661 ttrss_user_entries.feed_id = ttrss_feeds.id AND
1662 ttrss_user_entries.ref_id = ttrss_entries.id AND
cfb02131 1663 ttrss_feeds.hidden = false AND
88040f57 1664 unread = true AND ($match_part) AND ttrss_user_entries.owner_uid = " . $_SESSION["uid"]);
a9cb1f83
AD
1665
1666 } else {
1667
1668 $result = db_query($link, "SELECT COUNT(post_int_id) AS unread
1669 FROM ttrss_tags,ttrss_user_entries
1670 WHERE tag_name = '$feed' AND post_int_id = int_id AND unread = true AND
1671 ttrss_tags.owner_uid = " . $_SESSION["uid"]);
1672 }
1673
1674 $unread = db_fetch_result($result, 0, "unread");
cfb02131 1675
a9cb1f83
AD
1676 return $unread;
1677 }
1678
1679 /* FIXME this needs reworking */
1680
f3acc32e
AD
1681 function getGlobalUnread($link, $user_id = false) {
1682
1683 if (!$user_id) {
1684 $user_id = $_SESSION["uid"];
1685 }
1686
3831db41 1687 $result = db_query($link, "SELECT count(ttrss_entries.id) as c_id FROM ttrss_entries,ttrss_user_entries,ttrss_feeds
a9cb1f83 1688 WHERE unread = true AND
3831db41 1689 ttrss_user_entries.feed_id = ttrss_feeds.id AND
a9cb1f83 1690 ttrss_user_entries.ref_id = ttrss_entries.id AND
3831db41 1691 hidden = false AND
f3acc32e 1692 ttrss_user_entries.owner_uid = '$user_id'");
a9cb1f83
AD
1693 $c_id = db_fetch_result($result, 0, "c_id");
1694 return $c_id;
1695 }
1696
1697 function getGlobalCounters($link, $global_unread = -1) {
1698 if ($global_unread == -1) {
1699 $global_unread = getGlobalUnread($link);
1700 }
7bf7e4d3
AD
1701 print "<counter type=\"global\" id='global-unread'
1702 counter='$global_unread'/>";
1703
1704 $result = db_query($link, "SELECT COUNT(id) AS fn FROM
1705 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
1706
1707 $subscribed_feeds = db_fetch_result($result, 0, "fn");
1708
1709 print "<counter type=\"global\" id='subscribed-feeds'
1710 counter='$subscribed_feeds'/>";
1711
a9cb1f83
AD
1712 }
1713
1714 function getTagCounters($link, $smart_mode = SMART_RPC_COUNTERS) {
1715
1716 if ($smart_mode) {
1717 if (!$_SESSION["tctr_last_value"]) {
1718 $_SESSION["tctr_last_value"] = array();
1719 }
1720 }
1721
1722 $old_counters = $_SESSION["tctr_last_value"];
1723
1724 $tctrs_modified = false;
1725
1726/* $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
1727 FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
1728 ttrss_user_entries.ref_id = ttrss_entries.id AND
1729 ttrss_tags.owner_uid = ".$_SESSION["uid"]." AND
1730 post_int_id = ttrss_user_entries.int_id AND unread = true GROUP BY tag_name
1731 UNION
1732 select tag_name,0 as count FROM ttrss_tags
1733 WHERE ttrss_tags.owner_uid = ".$_SESSION["uid"]); */
1734
1735 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
1736 FROM ttrss_user_entries WHERE int_id = post_int_id
1737 AND unread = true)) AS count FROM ttrss_tags
22e00732 1738 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name ORDER BY tag_name");
a9cb1f83
AD
1739
1740 $tags = array();
1741
1742 while ($line = db_fetch_assoc($result)) {
1743 $tags[$line["tag_name"]] += $line["count"];
1744 }
1745
1746 foreach (array_keys($tags) as $tag) {
1747 $unread = $tags[$tag];
1748
1749 $tag = htmlspecialchars($tag);
1750
1751 if (!$smart_mode || $old_counters[$tag] != $unread) {
1752 $old_counters[$tag] = $unread;
1753 $tctrs_modified = true;
1754 print "<counter type=\"tag\" id=\"$tag\" counter=\"$unread\"/>";
1755 }
1756
1757 }
1758
1759 if ($smart_mode && $tctrs_modified) {
1760 $_SESSION["tctr_last_value"] = $old_counters;
1761 }
1762
1763 }
1764
ef393de7 1765 function getLabelCounters($link, $smart_mode = SMART_RPC_COUNTERS, $ret_mode = false) {
a9cb1f83
AD
1766
1767 if ($smart_mode) {
1768 if (!$_SESSION["lctr_last_value"]) {
1769 $_SESSION["lctr_last_value"] = array();
1770 }
1771 }
1772
ef393de7
AD
1773 $ret_arr = array();
1774
a9cb1f83
AD
1775 $old_counters = $_SESSION["lctr_last_value"];
1776 $lctrs_modified = false;
1777
88040f57 1778 $result = db_query($link, "SELECT count(ttrss_entries.id) as count FROM ttrss_entries,ttrss_user_entries,ttrss_feeds
a9cb1f83 1779 WHERE marked = true AND ttrss_user_entries.ref_id = ttrss_entries.id AND
88040f57
AD
1780 ttrss_user_entries.feed_id = ttrss_feeds.id AND
1781 unread = true AND ttrss_user_entries.owner_uid = ".$_SESSION["uid"]);
a9cb1f83
AD
1782
1783 $count = db_fetch_result($result, 0, "count");
1784
ef393de7
AD
1785 if (!$ret_mode) {
1786 print "<counter type=\"label\" id=\"-1\" counter=\"$count\"/>";
1787 } else {
1788 $ret_arr["-1"]["counter"] = $count;
1789 $ret_arr["-1"]["description"] = "Starred";
1790 }
a9cb1f83
AD
1791
1792 $result = db_query($link, "SELECT owner_uid,id,sql_exp,description FROM
1793 ttrss_labels WHERE owner_uid = ".$_SESSION["uid"]." ORDER by description");
1794
1795 while ($line = db_fetch_assoc($result)) {
1796
1797 $id = -$line["id"] - 11;
1798
ef393de7
AD
1799 $label_name = $line["description"];
1800
a9cb1f83
AD
1801 error_reporting (0);
1802
88040f57 1803 $tmp_result = db_query($link, "SELECT count(ttrss_entries.id) as count FROM ttrss_user_entries,ttrss_entries,ttrss_feeds
a9cb1f83 1804 WHERE (" . $line["sql_exp"] . ") AND unread = true AND
cfb02131 1805 ttrss_feeds.hidden = false AND
88040f57 1806 ttrss_user_entries.feed_id = ttrss_feeds.id AND
a9cb1f83 1807 ttrss_user_entries.ref_id = ttrss_entries.id AND
88040f57 1808 ttrss_user_entries.owner_uid = ".$_SESSION["uid"]);
a9cb1f83
AD
1809
1810 $count = db_fetch_result($tmp_result, 0, "count");
1811
1812 if (!$smart_mode || $old_counters[$id] != $count) {
1813 $old_counters[$id] = $count;
1814 $lctrs_modified = true;
ef393de7
AD
1815 if (!$ret_mode) {
1816 print "<counter type=\"label\" id=\"$id\" counter=\"$count\"/>";
1817 } else {
1818 $ret_arr[$id]["counter"] = $count;
1819 $ret_arr[$id]["description"] = $label_name;
1820 }
a9cb1f83
AD
1821 }
1822
1823 error_reporting (DEFAULT_ERROR_LEVEL);
1824 }
1825
1826 if ($smart_mode && $lctrs_modified) {
1827 $_SESSION["lctr_last_value"] = $old_counters;
1828 }
ef393de7
AD
1829
1830 return $ret_arr;
a9cb1f83
AD
1831 }
1832
1833/* function getFeedCounter($link, $id) {
1834
1835 $result = db_query($link, "SELECT
1836 count(id) as count,last_error
1837 FROM ttrss_entries,ttrss_user_entries,ttrss_feeds
1838 WHERE feed_id = '$id' AND unread = true
1839 AND ttrss_user_entries.feed_id = ttrss_feeds.id
1840 AND ttrss_user_entries.ref_id = ttrss_entries.id");
1841
1842 $count = db_fetch_result($result, 0, "count");
1843 $last_error = htmlspecialchars(db_fetch_result($result, 0, "last_error"));
1844
1845 print "<counter type=\"feed\" id=\"$id\" counter=\"$count\" error=\"$last_error\"/>";
1846 } */
1847
1848 function getFeedCounters($link, $smart_mode = SMART_RPC_COUNTERS) {
1849
1850 if ($smart_mode) {
1851 if (!$_SESSION["fctr_last_value"]) {
1852 $_SESSION["fctr_last_value"] = array();
1853 }
1854 }
1855
1856 $old_counters = $_SESSION["fctr_last_value"];
1857
1858 $result = db_query($link, "SELECT id,last_error,parent_feed,
fb1fb4ab 1859 SUBSTRING(last_updated,1,19) AS last_updated,
a9cb1f83
AD
1860 (SELECT count(id)
1861 FROM ttrss_entries,ttrss_user_entries
1862 WHERE feed_id = ttrss_feeds.id AND
1863 ttrss_user_entries.ref_id = ttrss_entries.id
1864 AND unread = true AND owner_uid = ".$_SESSION["uid"].") as count
1865 FROM ttrss_feeds WHERE owner_uid = ".$_SESSION["uid"] . "
1866 AND parent_feed IS NULL");
1867
1868 $fctrs_modified = false;
1869
fb1fb4ab
AD
1870 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
1871
a9cb1f83
AD
1872 while ($line = db_fetch_assoc($result)) {
1873
1874 $id = $line["id"];
1875 $count = $line["count"];
1876 $last_error = htmlspecialchars($line["last_error"]);
fb1fb4ab
AD
1877
1878 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
1879 $last_updated = smart_date_time(strtotime($line["last_updated"]));
1880 } else {
1881 $last_updated = date($short_date, strtotime($line["last_updated"]));
1882 }
1883
a9cb1f83
AD
1884 $has_img = is_file(ICONS_DIR . "/$id.ico");
1885
1886 $tmp_result = db_query($link,
1887 "SELECT id,COUNT(unread) AS unread
1888 FROM ttrss_feeds LEFT JOIN ttrss_user_entries
1889 ON (ttrss_feeds.id = ttrss_user_entries.feed_id)
1890 WHERE parent_feed = '$id' AND unread = true GROUP BY ttrss_feeds.id");
1891
1892 if (db_num_rows($tmp_result) > 0) {
1893 while ($l = db_fetch_assoc($tmp_result)) {
1894 $count += $l["unread"];
1895 }
1896 }
1897
1898 if (!$smart_mode || $old_counters[$id] != $count) {
1899 $old_counters[$id] = $count;
1900 $fctrs_modified = true;
1901
1902 if ($last_error) {
1903 $error_part = "error=\"$last_error\"";
1904 } else {
1905 $error_part = "";
1906 }
1907
1908 if ($has_img) {
1909 $has_img_part = "hi=\"$has_img\"";
1910 } else {
1911 $has_img_part = "";
1912 }
1913
fb1fb4ab 1914 print "<counter type=\"feed\" id=\"$id\" counter=\"$count\" $has_img_part $error_part updated=\"$last_updated\"/>";
a9cb1f83
AD
1915 }
1916 }
1917
1918 if ($smart_mode && $fctrs_modified) {
1919 $_SESSION["fctr_last_value"] = $old_counters;
1920 }
1921 }
1922
1b758780
AD
1923 function get_script_dt_add() {
1924 if (strpos(VERSION, "99") === false) {
1925 return VERSION;
1926 } else {
1927 return time();
1928 }
1929 }
1930
6e7f8d26
AD
1931 function get_pgsql_version($link) {
1932 $result = db_query($link, "SELECT version() AS version");
1933 $version = split(" ", db_fetch_result($result, 0, "version"));
1934 return $version[1];
1935 }
1936
af106b0e
AD
1937 function print_error_xml($code, $add_msg = "") {
1938 global $ERRORS;
1939
1940 $error_msg = $ERRORS[$code];
1941
1942 if ($add_msg) {
1943 $error_msg = "$error_msg; $add_msg";
1944 }
1945
4c2abbc1 1946 print "<rpc-reply>";
af106b0e 1947 print "<error error-code=\"$code\" error-msg=\"$error_msg\"/>";
4c2abbc1 1948 print "</rpc-reply>";
af106b0e 1949 }
956c7629
AD
1950
1951 function subscribe_to_feed($link, $feed_link, $cat_id = 0) {
bb0f29a4 1952
c91c2249
AD
1953 $feed_link = trim(preg_replace("/^feed:/", "", $feed_link));
1954
1955 if ($feed_link == "") return;
bb0f29a4 1956
956c7629
AD
1957 if ($cat_id == "0" || !$cat_id) {
1958 $cat_qpart = "NULL";
1959 } else {
1960 $cat_qpart = "'$cat_id'";
1961 }
1962
1963 $result = db_query($link,
1964 "SELECT id FROM ttrss_feeds
1965 WHERE feed_url = '$feed_link' AND owner_uid = ".$_SESSION["uid"]);
1966
1967 if (db_num_rows($result) == 0) {
1968
1969 $result = db_query($link,
1970 "INSERT INTO ttrss_feeds (owner_uid,feed_url,title,cat_id)
1971 VALUES ('".$_SESSION["uid"]."', '$feed_link',
1972 '[Unknown]', $cat_qpart)");
1973
1974 $result = db_query($link,
1975 "SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_link'
1976 AND owner_uid = " . $_SESSION["uid"]);
1977
1978 $feed_id = db_fetch_result($result, 0, "id");
1979
1980 if ($feed_id) {
1981 update_rss_feed($link, $feed_link, $feed_id, true);
1982 }
1983
1984 return true;
1985 } else {
1986 return false;
1987 }
1988 }
1989
673d54ca
AD
1990 function print_feed_select($link, $id, $default_id = "",
1991 $attributes = "", $include_all_feeds = true) {
1992
79f3553b 1993 print "<select id=\"$id\" name=\"$id\" $attributes>";
673d54ca 1994 if ($include_all_feeds) {
79f3553b 1995 print "<option value=\"0\">All feeds</option>";
673d54ca
AD
1996 }
1997
1998 $result = db_query($link, "SELECT id,title FROM ttrss_feeds
1999 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
2000
2001 if (db_num_rows($result) > 0 && $include_all_feeds) {
2002 print "<option disabled>--------</option>";
2003 }
2004
2005 while ($line = db_fetch_assoc($result)) {
2006 if ($line["id"] == $default_id) {
2007 $is_selected = "selected";
2008 } else {
2009 $is_selected = "";
2010 }
79f3553b 2011 printf("<option $is_selected value='%d'>%s</option>",
07164479 2012 $line["id"], htmlspecialchars(db_unescape_string($line["title"])));
673d54ca
AD
2013 }
2014
2015 print "</select>";
2016 }
2017
2018 function print_feed_cat_select($link, $id, $default_id = "",
2019 $attributes = "", $include_all_cats = true) {
2020
79f3553b 2021 print "<select id=\"$id\" name=\"$id\" $attributes>";
673d54ca
AD
2022
2023 if ($include_all_cats) {
8fd2dc95 2024 print "<option value=\"0\">"._('Uncategorized')."</option>";
673d54ca
AD
2025 }
2026
2027 $result = db_query($link, "SELECT id,title FROM ttrss_feed_categories
2028 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
2029
2030 if (db_num_rows($result) > 0 && $include_all_cats) {
2031 print "<option disabled>--------</option>";
2032 }
2033
2034 while ($line = db_fetch_assoc($result)) {
2035 if ($line["id"] == $default_id) {
2036 $is_selected = "selected";
2037 } else {
2038 $is_selected = "";
2039 }
14f69488 2040 printf("<option $is_selected value='%d'>%s</option>",
07164479 2041 $line["id"], htmlspecialchars(db_unescape_string($line["title"])));
673d54ca
AD
2042 }
2043
2044 print "</select>";
2045 }
2046
14f69488
AD
2047 function checkbox_to_sql_bool($val) {
2048 return ($val == "on") ? "true" : "false";
2049 }
86b682ce
AD
2050
2051 function getFeedCatTitle($link, $id) {
2052 if ($id == -1) {
865cde4e 2053 return _("Special");
86b682ce 2054 } else if ($id < -10) {
865cde4e 2055 return _("Labels");
86b682ce
AD
2056 } else if ($id > 0) {
2057 $result = db_query($link, "SELECT ttrss_feed_categories.title
2058 FROM ttrss_feeds, ttrss_feed_categories WHERE ttrss_feeds.id = '$id' AND
2059 cat_id = ttrss_feed_categories.id");
2060 if (db_num_rows($result) == 1) {
2061 return db_fetch_result($result, 0, "title");
2062 } else {
865cde4e 2063 return _("Uncategorized");
86b682ce
AD
2064 }
2065 } else {
2066 return "getFeedCatTitle($id) failed";
2067 }
2068
2069 }
2070
2071 function getFeedTitle($link, $id) {
2072 if ($id == -1) {
865cde4e 2073 return _("Starred articles");
86b682ce
AD
2074 } else if ($id < -10) {
2075 $label_id = -10 - $id;
2076 $result = db_query($link, "SELECT description FROM ttrss_labels WHERE id = '$label_id'");
2077 if (db_num_rows($result) == 1) {
2078 return db_fetch_result($result, 0, "description");
2079 } else {
2080 return "Unknown label ($label_id)";
2081 }
2082
2083 } else if ($id > 0) {
2084 $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$id'");
2085 if (db_num_rows($result) == 1) {
2086 return db_fetch_result($result, 0, "title");
2087 } else {
2088 return "Unknown feed ($id)";
2089 }
2090 } else {
2091 return "getFeedTitle($id) failed";
2092 }
2093
2094 }
3dd46f19
AD
2095
2096 function get_session_cookie_name() {
2097 return ((!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid" : TTRSS_SESSION_NAME);
2098 }
3ac2b520
AD
2099
2100 function print_init_params($link) {
2101 print "<init-params>";
2102 if ($_SESSION["stored-params"]) {
2103 foreach (array_keys($_SESSION["stored-params"]) as $key) {
5f57b06d
AD
2104 if ($key) {
2105 $value = htmlspecialchars($_SESSION["stored-params"][$key]);
2106 print "<param key=\"$key\" value=\"$value\"/>";
2107 }
3ac2b520
AD
2108 }
2109 }
2110
2111 print "<param key=\"daemon_enabled\" value=\"" . ENABLE_UPDATE_DAEMON . "\"/>";
2112 print "<param key=\"feeds_frame_refresh\" value=\"" . FEEDS_FRAME_REFRESH . "\"/>";
0d51e25d 2113 print "<param key=\"daemon_refresh_only\" value=\"" . DAEMON_REFRESH_ONLY . "\"/>";
3ac2b520
AD
2114
2115 print "<param key=\"on_catchup_show_next_feed\" value=\"" .
2116 get_pref($link, "ON_CATCHUP_SHOW_NEXT_FEED") . "\"/>";
2117
e8bd0da9
AD
2118 print "<param key=\"hide_read_feeds\" value=\"" .
2119 sprintf("%d", get_pref($link, "HIDE_READ_FEEDS")) . "\"/>";
2120
c9268ed5
AD
2121 print "<param key=\"feeds_sort_by_unread\" value=\"" .
2122 sprintf("%d", get_pref($link, "FEEDS_SORT_BY_UNREAD")) . "\"/>";
2123
f6d6e22f
AD
2124 print "<param key=\"confirm_feed_catchup\" value=\"" .
2125 sprintf("%d", get_pref($link, "CONFIRM_FEED_CATCHUP")) . "\"/>";
2126
3ac2b520
AD
2127 print "</init-params>";
2128 }
f54f515f
AD
2129
2130 function print_runtime_info($link) {
2131 print "<runtime-info>";
71ad883b
AD
2132 if (ENABLE_UPDATE_DAEMON) {
2133 print "<param key=\"daemon_is_running\" value=\"".
2134 sprintf("%d", file_is_locked("update_daemon.lock")) . "\"/>";
2135 }
f54f515f
AD
2136 print "</runtime-info>";
2137 }
ef393de7 2138
88040f57 2139 function getSearchSql($search, $match_on) {
ef393de7 2140
88040f57 2141 $search_query_part = "";
e20c9d88 2142
88040f57
AD
2143 $keywords = split(" ", $search);
2144 $query_keywords = array();
e20c9d88 2145
88040f57 2146 if ($match_on == "both") {
e20c9d88 2147
88040f57
AD
2148 foreach ($keywords as $k) {
2149 array_push($query_keywords, "(UPPER(ttrss_entries.title) LIKE UPPER('%$k%')
2150 OR UPPER(ttrss_entries.content) LIKE UPPER('%$k%'))");
2151 }
e20c9d88 2152
88040f57 2153 $search_query_part = implode("AND", $query_keywords) . " AND ";
e20c9d88 2154
88040f57 2155 } else if ($match_on == "title") {
e20c9d88 2156
88040f57
AD
2157 foreach ($keywords as $k) {
2158 array_push($query_keywords, "(UPPER(ttrss_entries.title) LIKE UPPER('%$k%'))");
2159 }
e20c9d88 2160
88040f57 2161 $search_query_part = implode("AND", $query_keywords) . " AND ";
e20c9d88 2162
88040f57
AD
2163 } else if ($match_on == "content") {
2164
2165 foreach ($keywords as $k) {
2166 array_push($query_keywords, "(UPPER(ttrss_entries.content) LIKE UPPER('%$k%'))");
2167 }
2168 }
2169
2170 $search_query_part = implode("AND", $query_keywords);
2171
2172 return $search_query_part;
2173 }
2174
c1a0b534
AD
2175 function queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view, $search, $search_mode, $match_on, $override_order = false, $offset = 0) {
2176
88040f57
AD
2177 if ($search) {
2178
2179 $search_query_part = getSearchSql($search, $match_on);
2180 $search_query_part .= " AND ";
e20c9d88 2181
ef393de7
AD
2182 } else {
2183 $search_query_part = "";
2184 }
2185
2186 $view_query_part = "";
2187
2188 if ($view_mode == "adaptive") {
2189 if ($search) {
2190 $view_query_part = " ";
2191 } else if ($feed != -1) {
f295c368 2192 $unread = getFeedUnread($link, $feed, $cat_view);
ef393de7
AD
2193 if ($unread > 0) {
2194 $view_query_part = " unread = true AND ";
2195 }
2196 }
2197 }
2198
2199 if ($view_mode == "marked") {
2200 $view_query_part = " marked = true AND ";
2201 }
2202
2203 if ($view_mode == "unread") {
2204 $view_query_part = " unread = true AND ";
2205 }
2206
2207 if ($limit > 0) {
2208 $limit_query_part = "LIMIT " . $limit;
2209 }
2210
2211 $vfeed_query_part = "";
2212
2213 // override query strategy and enable feed display when searching globally
2214 if ($search && $search_mode == "all_feeds") {
2215 $query_strategy_part = "ttrss_entries.id > 0";
2216 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2217 } else if (preg_match("/^-?[0-9][0-9]*$/", $feed) == false) {
2218 $query_strategy_part = "ttrss_entries.id > 0";
2219 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
2220 id = feed_id) as feed_title,";
2221 } else if ($feed >= 0 && $search && $search_mode == "this_cat") {
2222
2223 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
0a6c4846
AD
2224
2225 $tmp_result = false;
2226
2227 if ($cat_view) {
2228 $tmp_result = db_query($link, "SELECT id
2229 FROM ttrss_feeds WHERE cat_id = '$feed'");
2230 } else {
2231 $tmp_result = db_query($link, "SELECT id
2232 FROM ttrss_feeds WHERE cat_id = (SELECT cat_id FROM ttrss_feeds
2233 WHERE id = '$feed') AND id != '$feed'");
2234 }
ef393de7
AD
2235
2236 $cat_siblings = array();
2237
2238 if (db_num_rows($tmp_result) > 0) {
2239 while ($p = db_fetch_assoc($tmp_result)) {
2240 array_push($cat_siblings, "feed_id = " . $p["id"]);
2241 }
2242
2243 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
2244 $feed, implode(" OR ", $cat_siblings));
2245
2246 } else {
2247 $query_strategy_part = "ttrss_entries.id > 0";
2248 }
2249
2250 } else if ($feed >= 0) {
2251
2252 if ($cat_view) {
5c365f60 2253
ef393de7
AD
2254 if ($feed > 0) {
2255 $query_strategy_part = "cat_id = '$feed'";
2256 } else {
2257 $query_strategy_part = "cat_id IS NULL";
2258 }
2259
2260 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
5c365f60 2261
ef393de7
AD
2262 } else {
2263 $tmp_result = db_query($link, "SELECT id
2264 FROM ttrss_feeds WHERE parent_feed = '$feed'
2265 ORDER BY cat_id,title");
2266
2267 $parent_ids = array();
2268
2269 if (db_num_rows($tmp_result) > 0) {
2270 while ($p = db_fetch_assoc($tmp_result)) {
2271 array_push($parent_ids, "feed_id = " . $p["id"]);
2272 }
2273
2274 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
2275 $feed, implode(" OR ", $parent_ids));
2276
2277 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2278 } else {
2279 $query_strategy_part = "feed_id = '$feed'";
2280 }
2281 }
2282 } else if ($feed == -1) { // starred virtual feed
2283 $query_strategy_part = "marked = true";
2284 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2285 } else if ($feed <= -10) { // labels
2286 $label_id = -$feed - 11;
2287
2288 $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
2289 WHERE id = '$label_id'");
2290
2291 $query_strategy_part = db_fetch_result($tmp_result, 0, "sql_exp");
2292
2293 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2294 } else {
2295 $query_strategy_part = "id > 0"; // dumb
2296 }
d6e5706d
AD
2297
2298 if (get_pref($link, 'REVERSE_HEADLINES')) {
2299 $order_by = "updated";
2300 } else {
2301 $order_by = "updated DESC";
2302 }
e939722a
AD
2303
2304 if ($override_order) {
2305 $order_by = $override_order;
2306 }
ef393de7
AD
2307
2308 $feed_title = "";
2309
2310 if ($search && $search_mode == "all_feeds") {
8fd2dc95 2311 $feed_title = _("Global search results")." ($search)";
ef393de7 2312 } else if ($search && preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
8fd2dc95 2313 $feed_title = _("Tag search results")." ($search, $feed)";
ef393de7
AD
2314 } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
2315 $feed_title = $feed;
2316 } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) != false && $feed >= 0) {
2317
2318 if ($cat_view) {
5c365f60 2319
ef393de7
AD
2320 if ($feed != 0) {
2321 $result = db_query($link, "SELECT title FROM ttrss_feed_categories
2322 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
2323 $feed_title = db_fetch_result($result, 0, "title");
2324 } else {
8fd2dc95 2325 $feed_title = _("Uncategorized");
ef393de7 2326 }
e1eb2147
AD
2327
2328 if ($search) {
8fd2dc95 2329 $feed_title = _("Category search results")." ($search, $feed_title)";
e1eb2147
AD
2330 }
2331
ef393de7
AD
2332 } else {
2333
2334 $result = db_query($link, "SELECT title,site_url,last_error FROM ttrss_feeds
2335 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
2336
2337 $feed_title = db_fetch_result($result, 0, "title");
2338 $feed_site_url = db_fetch_result($result, 0, "site_url");
2339 $last_error = db_fetch_result($result, 0, "last_error");
e1eb2147
AD
2340
2341 if ($search) {
865cde4e 2342 $feed_title = _("Feed search results") . " ($search, $feed_title)";
e1eb2147 2343 }
ef393de7
AD
2344 }
2345
2346 } else if ($feed == -1) {
865cde4e 2347 $feed_title = _("Starred articles");
ef393de7
AD
2348 } else if ($feed < -10) {
2349 $label_id = -$feed - 11;
2350 $result = db_query($link, "SELECT description FROM ttrss_labels
2351 WHERE id = '$label_id'");
2352 $feed_title = db_fetch_result($result, 0, "description");
88040f57
AD
2353
2354 if ($search) {
865cde4e 2355 $feed_title = _("Label search results") . " ($search, $feed_title)";
88040f57 2356 }
ef393de7
AD
2357 } else {
2358 $feed_title = "?";
2359 }
2360
2361 $feed_title = db_unescape_string($feed_title);
2362
2363 if ($feed < -10) error_reporting (0);
2364
2365 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
2366
2367 if ($feed >= 0) {
2368 $feed_kind = "Feeds";
2369 } else {
2370 $feed_kind = "Labels";
2371 }
2372
2373 $content_query_part = "content as content_preview,";
203de776 2374
ef393de7 2375 $query = "SELECT
1f64b1be 2376 guid,
ef393de7
AD
2377 ttrss_entries.id,ttrss_entries.title,
2378 SUBSTRING(updated,1,16) as updated,
2379 unread,feed_id,marked,link,last_read,
2380 SUBSTRING(last_read,1,19) as last_read_noms,
2381 $vfeed_query_part
2382 $content_query_part
d4b4b9de
AD
2383 SUBSTRING(updated,1,19) as updated_noms,
2384 author
ef393de7
AD
2385 FROM
2386 ttrss_entries,ttrss_user_entries,ttrss_feeds
2387 WHERE
cfb02131 2388 ttrss_feeds.hidden = false AND
ef393de7
AD
2389 ttrss_user_entries.feed_id = ttrss_feeds.id AND
2390 ttrss_user_entries.ref_id = ttrss_entries.id AND
2391 ttrss_user_entries.owner_uid = '".$_SESSION["uid"]."' AND
2392 $search_query_part
2393 $view_query_part
2394 $query_strategy_part ORDER BY $order_by
c1a0b534 2395 $limit_query_part OFFSET $offset";
ef393de7
AD
2396
2397 $result = db_query($link, $query);
2398
2399 if ($_GET["debug"]) print $query;
2400
2401 } else {
2402 // browsing by tag
2403
2404 $feed_kind = "Tags";
2405
2406 $result = db_query($link, "SELECT
1f64b1be 2407 guid,
ef393de7
AD
2408 ttrss_entries.id as id,title,
2409 SUBSTRING(updated,1,16) as updated,
2410 unread,feed_id,
2411 marked,link,last_read,
2412 SUBSTRING(last_read,1,19) as last_read_noms,
2413 $vfeed_query_part
2414 $content_query_part
2415 SUBSTRING(updated,1,19) as updated_noms
2416 FROM
2417 ttrss_entries,ttrss_user_entries,ttrss_tags
2418 WHERE
2419 ref_id = ttrss_entries.id AND
2420 ttrss_user_entries.owner_uid = '".$_SESSION["uid"]."' AND
2421 post_int_id = int_id AND tag_name = '$feed' AND
2422 $view_query_part
2423 $search_query_part
2424 $query_strategy_part ORDER BY $order_by
2425 $limit_query_part");
2426 }
2427
c7188969 2428 return array($result, $feed_title, $feed_site_url, $last_error);
ef393de7
AD
2429
2430 }
2431
e1eb2147 2432 function generate_syndicated_feed($link, $feed, $is_cat,
3baeeeca 2433 $search, $search_mode, $match_on) {
18664970
AD
2434
2435 $qfh_ret = queryFeedHeadlines($link, $feed,
e939722a 2436 30, false, $is_cat, $search, $search_mode, $match_on, "updated DESC");
18664970
AD
2437
2438 $result = $qfh_ret[0];
59e2aab4 2439 $feed_title = htmlspecialchars($qfh_ret[1]);
18664970
AD
2440 $feed_site_url = $qfh_ret[2];
2441 $last_error = $qfh_ret[3];
2442
3baeeeca
AD
2443 print "<rss version=\"2.0\">
2444 <channel>
2445 <title>$feed_title</title>
2446 <link>$feed_site_url</link>
2447 <generator>Tiny Tiny RSS v".VERSION."</generator>";
2448
2449 while ($line = db_fetch_assoc($result)) {
2450 print "<item>";
2451 print "<id>" . htmlspecialchars($line["guid"]) . "</id>";
2452 print "<link>" . htmlspecialchars($line["link"]) . "</link>";
2453
2454 $rfc822_date = date('r', strtotime($line["updated"]));
2455
2456 print "<pubDate>$rfc822_date</pubDate>";
2457
2458 print "<title>" .
2459 htmlspecialchars($line["title"]) . "</title>";
2460
2461 print "<description>" .
2462 htmlspecialchars($line["content_preview"]) . "</description>";
2463
2464 print "</item>";
2465 }
2466
2467 print "</channel></rss>";
18664970
AD
2468
2469 }
2470
0a6c4846
AD
2471 function getCategoryTitle($link, $cat_id) {
2472
2473 $result = db_query($link, "SELECT title FROM ttrss_feed_categories WHERE
2474 id = '$cat_id'");
2475
2476 if (db_num_rows($result) == 1) {
2477 return db_fetch_result($result, 0, "title");
2478 } else {
2479 return "Uncategorized";
2480 }
2481 }
2482
183ad07b 2483 function sanitize_rss($str) {
60452879 2484 $res = $str;
183ad07b
AD
2485
2486 $res = preg_replace('/<script.*?>/i',
60452879 2487 "<p class=\"scriptWarn\">Disabled script: ", $res);
183ad07b 2488
60452879
AD
2489 $res = preg_replace('/<\/script.*?>/i', "</p>", $res);
2490
8511f62f 2491/* $res = preg_replace('/<embed.*?>/i', "", $res);
183ad07b 2492
a262b161
AD
2493 $res = preg_replace('/<object.*?>.*?<\/object>/i',
2494 "<p class=\"objectWarn\">(Disabled html object
8511f62f 2495 - flash or other embedded content)</p>", $res); */
a262b161 2496
183ad07b
AD
2497 return $res;
2498 }
b72c3ef8 2499
9cd7c995
AD
2500 function send_headlines_digests($link, $limit = 100) {
2501
1ddba275
AD
2502 if (!DIGEST_ENABLE) return false;
2503
9cd7c995 2504 $user_limit = DIGEST_EMAIL_LIMIT;
5430c959 2505 $days = 1;
9cd7c995
AD
2506
2507 print "Sending digests, batch of max $user_limit users, days = $days, headline limit = $limit\n\n";
2508
2509 if (DB_TYPE == "pgsql") {
2510 $interval_query = "last_digest_sent < NOW() - INTERVAL '$days days'";
2511 } else if (DB_TYPE == "mysql") {
2512 $interval_query = "last_digest_sent < DATE_SUB(NOW(), INTERVAL $days DAY)";
2513 }
2514
2515 $result = db_query($link, "SELECT id,email FROM ttrss_users
2516 WHERE email != '' AND (last_digest_sent IS NULL OR $interval_query)");
2517
2518 while ($line = db_fetch_assoc($result)) {
2519 if (get_pref($link, 'DIGEST_ENABLE', $line['id'], false)) {
2520 print "Sending digest for UID:" . $line['id'] . " - " . $line["email"] . " ... ";
2521
2522 $tuple = prepare_headlines_digest($link, $line["id"], $days, $limit);
2523 $digest = $tuple[0];
2524 $headlines_count = $tuple[1];
2525
2526 if ($headlines_count > 0) {
2527 $rc = mail($line["login"] . " <" . $line["email"] . ">",
2528 "[tt-rss] New headlines for last 24 hours", $digest,
3ab3c1f0
AD
2529 "From: " . MAIL_FROM . "\n".
2530 "Content-Type: text/plain; charset=\"utf-8\"\n".
2531 "Content-Transfer-Encoding: 8bit\n");
9cd7c995
AD
2532 print "RC=$rc\n";
2533 db_query($link, "UPDATE ttrss_users SET last_digest_sent = NOW()
2534 WHERE id = " . $line["id"]);
2535 } else {
2536 print "No headlines\n";
2537 }
2538 }
2539 }
2540
2541// $digest = prepare_headlines_digest($link, $user_id, $days, $limit);
2542
2543 }
2544
7e3634d9 2545 function prepare_headlines_digest($link, $user_id, $days = 1, $limit = 100) {
865cde4e 2546 $tmp = _("New headlines for last 24 hours, as of ") . date("Y/m/d H:m") . "\n";
7e3634d9
AD
2547 $tmp .= "=======================================================\n\n";
2548
2549 if (DB_TYPE == "pgsql") {
9cd7c995 2550 $interval_query = "ttrss_entries.date_entered > NOW() - INTERVAL '$days days'";
7e3634d9
AD
2551 } else if (DB_TYPE == "mysql") {
2552 $interval_query = "ttrss_entries.date_entered > DATE_SUB(NOW(), INTERVAL $days DAY)";
2553 }
2554
2555 $result = db_query($link, "SELECT ttrss_entries.title,
2556 ttrss_feeds.title AS feed_title,
2557 date_entered,
2558 link,
2559 SUBSTRING(last_updated,1,19) AS last_updated
2560 FROM
2561 ttrss_user_entries,ttrss_entries,ttrss_feeds
2562 WHERE
2563 ref_id = ttrss_entries.id AND feed_id = ttrss_feeds.id
3dd9183c 2564 AND include_in_digest = true
7e3634d9 2565 AND $interval_query
448b0abd 2566 AND ttrss_user_entries.owner_uid = $user_id
7e3634d9
AD
2567 AND unread = true ORDER BY ttrss_feeds.title, date_entered DESC
2568 LIMIT $limit");
2569
2570 $cur_feed_title = "";
2571
9cd7c995
AD
2572 $headlines_count = db_num_rows($result);
2573
7e3634d9
AD
2574 while ($line = db_fetch_assoc($result)) {
2575 $updated = smart_date_time(strtotime($line["last_updated"]));
2576 $feed_title = $line["feed_title"];
2577
2578 if ($cur_feed_title != $feed_title) {
2579 $cur_feed_title = $feed_title;
2580
2581 $tmp .= "$feed_title\n\n";
2582 }
2583
2584 $tmp .= " * " . trim($line["title"]) . " - $updated\n";
2585 $tmp .= " " . trim($line["link"]) . "\n";
2586 $tmp .= "\n";
2587 }
2588
2589 $tmp .= "--- \n";
865cde4e 2590 $tmp .= _("You have been sent this email because you have enabled daily digests in Tiny Tiny RSS at ") .
dfe6f833 2591 DIGEST_HOSTNAME . "\n".
865cde4e 2592 _("To unsubscribe, visit your configuration options or contact instance owner.\n");
7e3634d9
AD
2593
2594
9cd7c995 2595 return array($tmp, $headlines_count);
7e3634d9
AD
2596 }
2597
b72c3ef8
AD
2598 function check_for_update($link) {
2599 $releases_feed = "http://tt-rss.spb.ru/releases.rss";
2600
2601 if (!CHECK_FOR_NEW_VERSION || $_SESSION["access_level"] < 10) {
2602 return;
2603 }
2604
2605 error_reporting(0);
2606 $rss = fetch_rss($releases_feed);
2607 error_reporting (DEFAULT_ERROR_LEVEL);
2608
2609 if ($rss) {
2610
2611 $items = $rss->items;
2612
2613 if (!$items || !is_array($items)) $items = $rss->entries;
2614 if (!$items || !is_array($items)) $items = $rss;
2615
da412ad3 2616 if (!is_array($items) || count($items) == 0) {
b72c3ef8 2617 return;
da412ad3 2618 }
b72c3ef8 2619
a41d2c65 2620 $latest_item = $items[0];
b72c3ef8 2621
a41d2c65 2622 $latest_version = trim(preg_replace("/(Milestone)|(completed)/", "", $latest_item["title"]));
b72c3ef8 2623
48e1a342
AD
2624 $release_url = sanitize_rss($latest_item["link"]);
2625 $content = sanitize_rss($latest_item["description"]);
2626
a41d2c65 2627 if (version_compare(VERSION, $latest_version) == -1) {
8a797376 2628 return "<div class=\"notice\"><a href=\"javascript:showBlockElement('milestoneDetails')\">
a41d2c65 2629 New version of Tiny-Tiny RSS ($latest_version) is available (click for details)</a>
8a797376 2630 <div id=\"milestoneDetails\">$content</div></div>";
da412ad3 2631 }
b72c3ef8
AD
2632 }
2633 }
472782e8 2634
18eddb2c
AD
2635 function markArticlesById($link, $ids, $cmode) {
2636
2637 $tmp_ids = array();
2638
2639 foreach ($ids as $id) {
2640 array_push($tmp_ids, "ref_id = '$id'");
2641 }
2642
2643 $ids_qpart = join(" OR ", $tmp_ids);
2644
2645 if ($cmode == 0) {
2646 db_query($link, "UPDATE ttrss_user_entries SET
2647 marked = false,last_read = NOW()
2648 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
2649 } else if ($cmode == 1) {
2650 db_query($link, "UPDATE ttrss_user_entries SET
2651 marked = true
2652 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
2653 } else {
2654 db_query($link, "UPDATE ttrss_user_entries SET
2655 marked = NOT marked,last_read = NOW()
2656 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
2657 }
2658 }
2659
472782e8
AD
2660 function catchupArticlesById($link, $ids, $cmode) {
2661
2662 $tmp_ids = array();
2663
2664 foreach ($ids as $id) {
2665 array_push($tmp_ids, "ref_id = '$id'");
2666 }
2667
2668 $ids_qpart = join(" OR ", $tmp_ids);
2669
2670 if ($cmode == 0) {
2671 db_query($link, "UPDATE ttrss_user_entries SET
2672 unread = false,last_read = NOW()
2673 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
2674 } else if ($cmode == 1) {
2675 db_query($link, "UPDATE ttrss_user_entries SET
2676 unread = true
2677 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
2678 } else {
2679 db_query($link, "UPDATE ttrss_user_entries SET
2680 unread = NOT unread,last_read = NOW()
2681 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
2682 }
2683 }
2684
a262b161
AD
2685 function escape_for_form($s) {
2686 return htmlspecialchars(db_unescape_string($s));
2687 }
2688
1f64b1be
AD
2689 function make_guid_from_title($title) {
2690 return preg_replace("/[ \"\',.:;]/", "-",
2691 mb_strtolower(strip_tags($title)));
2692 }
2693
11befbb2
AD
2694 function print_headline_subtoolbar($link, $feed_site_url, $feed_title,
2695 $bottom = false, $rtl_content = false, $feed_id = 0,
2696 $is_cat = false, $search = false, $match_on = false,
203de776 2697 $search_mode = false, $offset = 0) {
11befbb2 2698
e6c115b2
AD
2699 $user_page_offset = $offset + 1;
2700
11befbb2
AD
2701 if (!$bottom) {
2702 $class = "headlinesSubToolbar";
2703 $tid = "headlineActionsTop";
2704 } else {
2705 $class = "headlinesSubToolbar";
2706 $tid = "headlineActionsBottom";
2707 }
2708
2709 print "<table class=\"$class\" id=\"$tid\"
2710 width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tr>";
2711
2712 if ($rtl_content) {
2713 $rtl_cpart = "RTL";
2714 } else {
2715 $rtl_cpart = "";
2716 }
2717
e6c115b2
AD
2718 $page_prev_link = "javascript:viewFeedGoPage(-1)";
2719 $page_next_link = "javascript:viewFeedGoPage(1)";
2720 $page_first_link = "javascript:viewFeedGoPage(0)";
203de776 2721
eb28b131
AD
2722 $catchup_page_link = "javascript:catchupPage()";
2723 $catchup_feed_link = "javascript:catchupCurrentFeed()";
c6008b62 2724
11befbb2
AD
2725 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
2726
c6008b62
AD
2727 $sel_all_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, '', true)";
2728 $sel_unread_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true)";
2729 $sel_none_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false)";
11befbb2 2730
c6008b62
AD
2731 $tog_unread_link = "javascript:selectionToggleUnread()";
2732 $tog_marked_link = "javascript:selectionToggleMarked()";
11befbb2 2733
c6008b62 2734 } else {
11befbb2 2735
c6008b62
AD
2736 $sel_all_link = "javascript:cdmSelectArticles('all')";
2737 $sel_unread_link = "javascript:cdmSelectArticles('unread')";
2738 $sel_none_link = "javascript:cdmSelectArticles('none')";
2739
2740 $tog_unread_link = "javascript:selectionToggleUnread(true)";
2741 $tog_marked_link = "javascript:selectionToggleMarked(true)";
2742
2743 }
2744
2dd2c13b 2745 if (!strstr($_SESSION["client.userAgent"], "MSIE")) {
c6008b62 2746
2dd2c13b
AD
2747 print "<td class=\"headlineActions$rtl_cpart\">
2748 <ul class=\"headlineDropdownMenu\">
2749 <li class=\"top2\">
2750 Select:
2751 <a href=\"$sel_all_link\">All</a>,
2752 <a href=\"$sel_unread_link\">Unread</a>,
2753 <a href=\"$sel_none_link\">None</a></li>
2754 <li class=\"vsep\">&nbsp;</li>
2755 <li class=\"top\">Selection<ul>
2756 <li onclick=\"$tog_unread_link\">Toggle unread</li>
2757 <li onclick=\"$tog_marked_link\">Toggle starred</li></ul></li>
2758 <li class=\"vsep\">&nbsp;</li>
2759 <li class=\"top\"><a href=\"$catchup_page_link\">Mark as read</a><ul>
2760 <li onclick=\"$catchup_page_link\">This page</li>
2761 <li onclick=\"$catchup_feed_link\">Entire feed</li></ul></li>
2762 <li class=\"vsep\">&nbsp;</li>
2763 <!-- <li class=\"top2\">
2764 Page:
2765 <a href=\"$page_prev_link\">Previous</a>,
2766 <a href=\"$page_next_link\">Next</a></li> -->
2767
2768 <li class=\"top\"><a href=\"$page_next_link\">Next page</a><ul>
2769 <li onclick=\"$page_prev_link\">Previous page</li>
2770 <li onclick=\"$page_first_link\">First page</li></ul></li>
2771 </ul>
2772
2773 </td>";
2774
2775 } else {
e6c115b2
AD
2776 // old style subtoolbar:
2777
2dd2c13b
AD
2778 print "<td class=\"headlineActions$rtl_cpart\">".
2779 _('Select:')."
2780 <a href=\"$sel_all_link\">All</a>,
2781 <a href=\"$sel_unread_link\">Unread</a>,
2782 <a href=\"$sel_none_link\">None</a>
2783 &nbsp;&nbsp;".
2784 _('Toggle:')." <a href=\"$tog_unread_link\">Unread</a>,
2785 <a href=\"$tog_marked_link\">Starred</a>
2786 &nbsp;&nbsp;".
2787 _('Mark as read:')."
2788 <a href=\"#\" onclick=\"$catchup_page_link\">Page</a>,
2789 <a href=\"#\" onclick=\"$catchup_feed_link\">Feed</a>";
2790 print "</td>";
2791
2792 }
c6008b62
AD
2793
2794 if ($search && $feed_id >= 0 && get_pref($link, 'ENABLE_LABELS') && GLOBAL_ENABLE_LABELS) {
2795 print "<td class=\"headlineActions$rtl_cpart\">
2796 <a href=\"javascript:labelFromSearch('$search', '$search_mode',
2797 '$match_on', '$feed_id', '$is_cat');\">
2798 "._('Convert to Label')."</a></td>";
11befbb2
AD
2799 }
2800
2801 print "<td class=\"headlineTitle$rtl_cpart\">";
2802
2803 if ($feed_site_url) {
2804 if (!$bottom) {
2805 $target = "target=\"_blank\"";
2806 }
2807 print "<a $target href=\"$feed_site_url\">$feed_title</a>";
2808 } else {
2809 print $feed_title;
2810 }
2811
2812 if ($search) {
2813 $search_q = "&q=$search&m=$match_on&smode=$search_mode";
2814 }
2815
e6c115b2
AD
2816 if ($user_page_offset > 1) {
2817 print " [$user_page_offset] ";
2818 }
2819
11befbb2 2820 if (!$bottom) {
e6c115b2 2821 print "
11befbb2
AD
2822 <a target=\"_new\"
2823 href=\"backend.php?op=rss&id=$feed_id&is_cat=$is_cat$search_q\">
2824 <img class=\"noborder\"
2825 alt=\"Generated feed\" src=\"images/feed-icon-12x12.png\">
2826 </a>";
2827 }
2828
2829 print "</td>";
2830 print "</tr></table>";
2831
2832 }
2833
f407c086
AD
2834 function outputFeedList($link, $tags = false) {
2835
2836 print "<ul class=\"feedList\" id=\"feedList\">\n";
2837
2838 $owner_uid = $_SESSION["uid"];
2839
cf4d339c 2840 /* virtual feeds */
f407c086 2841
cf4d339c 2842 if (get_pref($link, 'ENABLE_FEED_CATS')) {
865cde4e 2843 print "<li class=\"feedCat\">"._('Special')."</li>";
cf4d339c
AD
2844 print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">";
2845 }
f407c086 2846
cf4d339c 2847 $num_starred = getFeedUnread($link, -1);
f407c086 2848
cf4d339c 2849 $class = "virt";
f407c086 2850
cf4d339c 2851 if ($num_starred > 0) $class .= "Unread";
f407c086 2852
865cde4e 2853 printFeedEntry(-1, $class, _("Starred articles"), $num_starred,
cf4d339c 2854 "images/mark_set.png", $link);
f407c086 2855
cf4d339c
AD
2856 if (get_pref($link, 'ENABLE_FEED_CATS')) {
2857 print "</ul>\n";
2858 }
f407c086 2859
cf4d339c 2860 if (!$tags) {
f407c086
AD
2861
2862 if (GLOBAL_ENABLE_LABELS && get_pref($link, 'ENABLE_LABELS')) {
2863
2864 $result = db_query($link, "SELECT id,sql_exp,description FROM
2865 ttrss_labels WHERE owner_uid = '$owner_uid' ORDER by description");
2866
2867 if (db_num_rows($result) > 0) {
2868 if (get_pref($link, 'ENABLE_FEED_CATS')) {
865cde4e 2869 print "<li class=\"feedCat\">"._('Labels')."</li>";
f407c086
AD
2870 print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">";
2871 } else {
2872 print "<li><hr></li>";
2873 }
2874 }
2875
2876 while ($line = db_fetch_assoc($result)) {
2877
2878 error_reporting (0);
2879
2880 $label_id = -$line['id'] - 11;
2881 $count = getFeedUnread($link, $label_id);
2882
2883 $class = "label";
2884
2885 if ($count > 0) {
2886 $class .= "Unread";
2887 }
2888
2889 error_reporting (DEFAULT_ERROR_LEVEL);
2890
2891 printFeedEntry($label_id,
2892 $class, db_unescape_string($line["description"]),
2893 $count, "images/label.png", $link);
2894
2895 }
2896
2897 if (db_num_rows($result) > 0) {
2898 if (get_pref($link, 'ENABLE_FEED_CATS')) {
2899 print "</ul>";
2900 }
2901 }
2902
2903 }
2904
2905 if (!get_pref($link, 'ENABLE_FEED_CATS')) {
2906 print "<li><hr></li>";
2907 }
2908
2909 if (get_pref($link, 'ENABLE_FEED_CATS')) {
2910 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
2911 $order_by_qpart = "category,unread DESC,title";
2912 } else {
2913 $order_by_qpart = "category,title";
2914 }
2915 } else {
2916 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
2917 $order_by_qpart = "unread DESC,title";
2918 } else {
2919 $order_by_qpart = "title";
2920 }
2921 }
2922
2923 $result = db_query($link, "SELECT ttrss_feeds.*,
2924 SUBSTRING(last_updated,1,19) AS last_updated_noms,
2925 (SELECT COUNT(id) FROM ttrss_entries,ttrss_user_entries
2926 WHERE feed_id = ttrss_feeds.id AND unread = true
2927 AND ttrss_user_entries.ref_id = ttrss_entries.id
2928 AND owner_uid = '$owner_uid') as unread,
2929 cat_id,last_error,
2930 ttrss_feed_categories.title AS category,
2931 ttrss_feed_categories.collapsed
2932 FROM ttrss_feeds LEFT JOIN ttrss_feed_categories
2933 ON (ttrss_feed_categories.id = cat_id)
2934 WHERE
2935 ttrss_feeds.hidden = false AND
2936 ttrss_feeds.owner_uid = '$owner_uid' AND parent_feed IS NULL
2937 ORDER BY $order_by_qpart");
2938
2939 $actid = $_GET["actid"];
2940
2941 /* real feeds */
2942
2943 $lnum = 0;
2944
2945 $total_unread = 0;
2946
2947 $category = "";
2948
2949 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
2950
2951 while ($line = db_fetch_assoc($result)) {
2952
2953 $feed = db_unescape_string($line["title"]);
2954 $feed_id = $line["id"];
2955
2956 $subop = $_GET["subop"];
2957
2958 $unread = $line["unread"];
2959
2960 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
2961 $last_updated = smart_date_time(strtotime($line["last_updated_noms"]));
2962 } else {
2963 $last_updated = date($short_date, strtotime($line["last_updated_noms"]));
2964 }
2965
2966 $rtl_content = sql_bool_to_bool($line["rtl_content"]);
2967
2968 if ($rtl_content) {
2969 $rtl_tag = "dir=\"RTL\"";
2970 } else {
2971 $rtl_tag = "";
2972 }
2973
2974 $tmp_result = db_query($link,
2975 "SELECT id,COUNT(unread) AS unread
2976 FROM ttrss_feeds LEFT JOIN ttrss_user_entries
2977 ON (ttrss_feeds.id = ttrss_user_entries.feed_id)
2978 WHERE parent_feed = '$feed_id' AND unread = true
2979 GROUP BY ttrss_feeds.id");
2980
2981 if (db_num_rows($tmp_result) > 0) {
2982 while ($l = db_fetch_assoc($tmp_result)) {
2983 $unread += $l["unread"];
2984 }
2985 }
2986
2987 $cat_id = $line["cat_id"];
2988
2989 $tmp_category = $line["category"];
2990
2991 if (!$tmp_category) {
865cde4e 2992 $tmp_category = _("Uncategorized");
f407c086
AD
2993 }
2994
2995 // $class = ($lnum % 2) ? "even" : "odd";
2996
2997 if ($line["last_error"]) {
2998 $class = "error";
2999 } else {
3000 $class = "feed";
3001 }
3002
3003 if ($unread > 0) $class .= "Unread";
3004
3005 if ($actid == $feed_id) {
3006 $class .= "Selected";
3007 }
3008
3009 $total_unread += $unread;
3010
3011 if ($category != $tmp_category && get_pref($link, 'ENABLE_FEED_CATS')) {
3012
3013 if ($category) {
3014 print "</ul></li>";
3015 }
3016
3017 $category = $tmp_category;
3018
3019 $collapsed = $line["collapsed"];
3020
3021 // workaround for NULL category
865cde4e 3022 if ($category == _("Uncategorized")) {
f407c086
AD
3023 if ($_COOKIE["ttrss_vf_uclps"] == 1) {
3024 $collapsed = "t";
3025 }
3026 }
3027
3028 if ($collapsed == "t" || $collapsed == "1") {
3029 $holder_class = "invisible";
3030 $ellipsis = "...";
3031 } else {
3032 $holder_class = "";
3033 $ellipsis = "";
3034 }
3035
3036 $cat_id = sprintf("%d", $cat_id);
3037
3038 $cat_unread = getCategoryUnread($link, $cat_id);
67dabe1a
AD
3039
3040 $catctr_class = ($cat_unread > 0) ? "catCtrHasUnread" : "catCtrNoUnread";
3041
f407c086 3042 print "<li class=\"feedCat\" id=\"FCAT-$cat_id\">
67dabe1a 3043 <a id=\"FCATN-$cat_id\" href=\"#\"onclick=\"javascript:toggleCollapseCat($cat_id)\">$tmp_category</a>
7210613a 3044 <a href=\"#\" onclick=\"javascript:viewCategory($cat_id)\" id=\"FCAP-$cat_id\">
67dabe1a
AD
3045 <span id=\"FCATCTR-$cat_id\" title=\"Click to browse category\"
3046 class=\"$catctr_class\">($cat_unread)</span> $ellipsis
f407c086
AD
3047 </a></li>";
3048
3049 // !!! NO SPACE before <ul...feedCatList - breaks firstChild DOM function
3050 // -> keyboard navigation, etc.
3051 print "<li id=\"feedCatHolder\" class=\"$holder_class\"><ul class=\"feedCatList\" id=\"FCATLIST-$cat_id\">";
3052 }
3053
3054 printFeedEntry($feed_id, $class, $feed, $unread,
3055 "icons/$feed_id.ico", $link, $rtl_content,
3056 $last_updated, $line["last_error"]);
3057
3058 ++$lnum;
3059 }
3060
3061 if (db_num_rows($result) == 0) {
865cde4e 3062 print "<li>"._('No feeds to display.')."</li>";
f407c086
AD
3063 }
3064
3065 } else {
3066
3067 // tags
3068
3069/* $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
3070 FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
3071 post_int_id = ttrss_user_entries.int_id AND
3072 unread = true AND ref_id = ttrss_entries.id
3073 AND ttrss_tags.owner_uid = '$owner_uid' GROUP BY tag_name
3074 UNION
3075 select tag_name,0 as count FROM ttrss_tags WHERE owner_uid = '$owner_uid'
3076 ORDER BY tag_name"); */
3077
3078 if (get_pref($link, 'ENABLE_FEED_CATS')) {
865cde4e 3079 print "<li class=\"feedCat\">"._('Tags')."</li>";
f407c086
AD
3080 print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">";
3081 }
3082
3083 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
3084 FROM ttrss_user_entries WHERE int_id = post_int_id
3085 AND unread = true)) AS count FROM ttrss_tags
22e00732 3086 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name ORDER BY tag_name");
f407c086
AD
3087
3088 $tags = array();
3089
3090 while ($line = db_fetch_assoc($result)) {
3091 $tags[$line["tag_name"]] += $line["count"];
3092 }
3093
3094 foreach (array_keys($tags) as $tag) {
3095
3096 $unread = $tags[$tag];
3097
3098 $class = "tag";
3099
3100 if ($unread > 0) {
3101 $class .= "Unread";
3102 }
3103
3104 printFeedEntry($tag, $class, $tag, $unread, "images/tag.png", $link);
3105
3106 }
3107
3108 if (db_num_rows($result) == 0) {
3109 print "<li>No tags to display.</li>";
3110 }
3111
3112 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3113 print "</ul>\n";
3114 }
3115
3116 }
3117
3118 print "</ul>";
3119
3120 }
3121
0b126ac2
AD
3122 function get_article_tags($link, $id) {
3123
3124 $a_id = db_escape_string($id);
3125
3126 $tmp_result = db_query($link, "SELECT DISTINCT tag_name FROM
3127 ttrss_tags WHERE post_int_id = (SELECT int_id FROM ttrss_user_entries WHERE
3128 ref_id = '$a_id' AND owner_uid = '".$_SESSION["uid"]."') ORDER BY tag_name");
3129
3130 $tags = array();
3131
3132 while ($tmp_line = db_fetch_assoc($tmp_result)) {
3133 array_push($tags, $tmp_line["tag_name"]);
3134 }
3135
3136 return $tags;
3137 }
3138
d62a3b63
AD
3139 function trim_value(&$value) {
3140 $value = trim($value);
3141 }
3142
3143 function trim_array($array) {
3144 $tmp = $array;
3145 array_walk($tmp, 'trim_value');
3146 return $tmp;
3147 }
3148
be832a1a
AD
3149 function tag_is_valid($tag) {
3150 return ($tag !='' && !preg_match("/^[0-9]*$/", $tag));
3151 }
3152
40d13c28 3153?>