]> git.wh0rd.org - tt-rss.git/blob - functions.php
728d10f4e29d99680ff0de295ea5d0296616ce3a
[tt-rss.git] / functions.php
1 <?
2
3 /* if ($_GET["debug"]) {
4 define('DEFAULT_ERROR_LEVEL', E_ALL);
5 } else {
6 define('DEFAULT_ERROR_LEVEL', E_ERROR | E_WARNING | E_PARSE);
7 } */
8
9 require_once 'config.php';
10 require_once 'db-prefs.php';
11 require_once 'compat.php';
12 require_once 'errors.php';
13 require_once 'version.php';
14
15 if (RSS_BACKEND_TYPE == "magpie") {
16 require_once 'magpierss/rss_utils.inc';
17 } else if (RSS_BACKEND_TYPE == "simplepie") {
18 require_once 'simplepie/simplepie.inc';
19 }
20
21 define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');
22
23 function purge_feed($link, $feed_id, $purge_interval, $debug = false) {
24
25 $rows = -1;
26
27 if (DB_TYPE == "pgsql") {
28 /* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
29 marked = false AND feed_id = '$feed_id' AND
30 (SELECT date_entered FROM ttrss_entries WHERE
31 id = ref_id) < NOW() - INTERVAL '$purge_interval days'"); */
32
33 $pg_version = get_pgsql_version($link);
34
35 if (preg_match("/^7\./", $pg_version) || preg_match("/^8\.0/", $pg_version)) {
36
37 $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
38 ttrss_entries.id = ref_id AND
39 marked = false AND
40 feed_id = '$feed_id' AND
41 ttrss_entries.date_entered < NOW() - INTERVAL '$purge_interval days'");
42
43 } else {
44
45 $result = db_query($link, "DELETE FROM ttrss_user_entries
46 USING ttrss_entries
47 WHERE ttrss_entries.id = ref_id AND
48 marked = false AND
49 feed_id = '$feed_id' AND
50 ttrss_entries.date_entered < NOW() - INTERVAL '$purge_interval days'");
51 }
52
53 $rows = pg_affected_rows($result);
54
55 } else {
56
57 /* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
58 marked = false AND feed_id = '$feed_id' AND
59 (SELECT date_entered FROM ttrss_entries WHERE
60 id = ref_id) < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)"); */
61
62 $result = db_query($link, "DELETE FROM ttrss_user_entries
63 USING ttrss_user_entries, ttrss_entries
64 WHERE ttrss_entries.id = ref_id AND
65 marked = false AND
66 feed_id = '$feed_id' AND
67 ttrss_entries.date_entered < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)");
68
69 $rows = mysql_affected_rows($link);
70
71 }
72
73 if ($debug) {
74 print "Purged feed $feed_id ($purge_interval): deleted $rows articles\n";
75 }
76 }
77
78 function global_purge_old_posts($link, $do_output = false, $limit = false) {
79
80 $random_qpart = sql_random_function();
81
82 if ($limit) {
83 $limit_qpart = "LIMIT $limit";
84 } else {
85 $limit_qpart = "";
86 }
87
88 $result = db_query($link,
89 "SELECT id,purge_interval,owner_uid FROM ttrss_feeds
90 ORDER BY $random_qpart $limit_qpart");
91
92 while ($line = db_fetch_assoc($result)) {
93
94 $feed_id = $line["id"];
95 $purge_interval = $line["purge_interval"];
96 $owner_uid = $line["owner_uid"];
97
98 if ($purge_interval == 0) {
99
100 $tmp_result = db_query($link,
101 "SELECT value FROM ttrss_user_prefs WHERE
102 pref_name = 'PURGE_OLD_DAYS' AND owner_uid = '$owner_uid'");
103
104 if (db_num_rows($tmp_result) != 0) {
105 $purge_interval = db_fetch_result($tmp_result, 0, "value");
106 }
107 }
108
109 if ($do_output) {
110 // print "Feed $feed_id: purge interval = $purge_interval\n";
111 }
112
113 if ($purge_interval > 0) {
114 purge_feed($link, $feed_id, $purge_interval, $do_output);
115 }
116 }
117
118 // purge orphaned posts in main content table
119 db_query($link, "DELETE FROM ttrss_entries WHERE
120 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
121
122 }
123
124 function purge_old_posts($link) {
125
126 $user_id = $_SESSION["uid"];
127
128 $result = db_query($link, "SELECT id,purge_interval FROM ttrss_feeds
129 WHERE owner_uid = '$user_id'");
130
131 while ($line = db_fetch_assoc($result)) {
132
133 $feed_id = $line["id"];
134 $purge_interval = $line["purge_interval"];
135
136 if ($purge_interval == 0) $purge_interval = get_pref($link, 'PURGE_OLD_DAYS');
137
138 if ($purge_interval > 0) {
139 purge_feed($link, $feed_id, $purge_interval);
140 }
141 }
142
143 // purge orphaned posts in main content table
144 db_query($link, "DELETE FROM ttrss_entries WHERE
145 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
146 }
147
148 function update_all_feeds($link, $fetch, $user_id = false, $force_daemon = false) {
149
150 if (WEB_DEMO_MODE) return;
151
152 if (!$user_id) {
153 $user_id = $_SESSION["uid"];
154 purge_old_posts($link);
155 }
156
157 // db_query($link, "BEGIN");
158
159 if (MAX_UPDATE_TIME > 0) {
160 if (DB_TYPE == "mysql") {
161 $q_order = "RAND()";
162 } else {
163 $q_order = "RANDOM()";
164 }
165 } else {
166 $q_order = "last_updated DESC";
167 }
168
169 $result = db_query($link, "SELECT feed_url,id,
170 SUBSTRING(last_updated,1,19) AS last_updated,
171 update_interval FROM ttrss_feeds WHERE owner_uid = '$user_id'
172 ORDER BY $q_order");
173
174 $upd_start = time();
175
176 while ($line = db_fetch_assoc($result)) {
177 $upd_intl = $line["update_interval"];
178
179 if (!$upd_intl || $upd_intl == 0) {
180 $upd_intl = get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $user_id);
181 }
182
183 if ($upd_intl < 0) {
184 // Updates for this feed are disabled
185 continue;
186 }
187
188 if ($fetch || (!$line["last_updated"] ||
189 time() - strtotime($line["last_updated"]) > ($upd_intl * 60))) {
190
191 // print "<!-- feed: ".$line["feed_url"]." -->";
192
193 update_rss_feed($link, $line["feed_url"], $line["id"], $force_daemon);
194
195 $upd_elapsed = time() - $upd_start;
196
197 if (MAX_UPDATE_TIME > 0 && $upd_elapsed > MAX_UPDATE_TIME) {
198 return;
199 }
200 }
201 }
202
203 // db_query($link, "COMMIT");
204
205 }
206
207 function check_feed_favicon($feed_url, $feed, $link) {
208 $feed_url = str_replace("http://", "", $feed_url);
209 $feed_url = preg_replace("/\/.*$/", "", $feed_url);
210
211 $icon_url = "http://$feed_url/favicon.ico";
212 $icon_file = ICONS_DIR . "/$feed.ico";
213
214 if (!file_exists($icon_file)) {
215
216 error_reporting(0);
217 $r = fopen($icon_url, "r");
218 error_reporting (DEFAULT_ERROR_LEVEL);
219
220 if ($r) {
221 $tmpfname = tempnam(TMP_DIRECTORY, "ttrssicon");
222
223 $t = fopen($tmpfname, "w");
224
225 while (!feof($r)) {
226 $buf = fread($r, 16384);
227 fwrite($t, $buf);
228 }
229
230 fclose($r);
231 fclose($t);
232
233 error_reporting(0);
234 if (!rename($tmpfname, $icon_file)) {
235 unlink($tmpfname);
236 }
237
238 chmod($icon_file, 0644);
239
240 error_reporting (DEFAULT_ERROR_LEVEL);
241
242 }
243 }
244 }
245
246 function update_rss_feed($link, $feed_url, $feed, $ignore_daemon = false) {
247
248 if (WEB_DEMO_MODE) return;
249
250 if (DAEMON_REFRESH_ONLY && !$_GET["daemon"] && !$ignore_daemon) {
251 return;
252 }
253
254 $result = db_query($link, "SELECT update_interval,auth_login,auth_pass
255 FROM ttrss_feeds WHERE id = '$feed'");
256
257 $auth_login = db_unescape_string(db_fetch_result($result, 0, "auth_login"));
258 $auth_pass = db_unescape_string(db_fetch_result($result, 0, "auth_pass"));
259
260 $update_interval = db_fetch_result($result, 0, "update_interval");
261
262 if ($update_interval < 0) { return; }
263
264 $feed = db_escape_string($feed);
265
266 $fetch_url = $feed_url;
267
268 if ($auth_login && $auth_pass) {
269 $url_parts = array();
270 preg_match("/(^[^:]*):\/\/(.*)/", $fetch_url, $url_parts);
271
272 if ($url_parts[1] && $url_parts[2]) {
273 $fetch_url = $url_parts[1] . "://$auth_login:$auth_pass@" . $url_parts[2];
274 }
275
276 }
277
278 if (RSS_BACKEND_TYPE == "magpie") {
279 error_reporting(0);
280 $rss = fetch_rss($fetch_url);
281 error_reporting (DEFAULT_ERROR_LEVEL);
282 } else if (RSS_BACKEND_TYPE == "simplepie") {
283
284 if (!file_exists(SIMPLEPIE_CACHE_DIR)) {
285 mkdir(SIMPLEPIE_CACHE_DIR);
286 }
287
288 $rss = new SimplePie();
289 $rss->feed_url($fetch_url);
290 $rss->cache_location(SIMPLEPIE_CACHE_DIR);
291 $rss->init();
292 }
293
294 $feed = db_escape_string($feed);
295
296 $rss_check = $rss;
297
298 if (RSS_BACKEND_TYPE == "simplepie") {
299 $rss_check = $rss->data;
300 }
301
302 if ($rss_check) {
303
304 // db_query($link, "BEGIN");
305
306 $result = db_query($link, "SELECT title,icon_url,site_url,owner_uid
307 FROM ttrss_feeds WHERE id = '$feed'");
308
309 $registered_title = db_fetch_result($result, 0, "title");
310 $orig_icon_url = db_fetch_result($result, 0, "icon_url");
311 $orig_site_url = db_fetch_result($result, 0, "site_url");
312
313 $owner_uid = db_fetch_result($result, 0, "owner_uid");
314
315 if (get_pref($link, 'ENABLE_FEED_ICONS', $owner_uid, false)) {
316 check_feed_favicon($feed_url, $feed, $link);
317 }
318
319 if (!$registered_title || $registered_title == "[Unknown]") {
320
321 if (RSS_BACKEND_TYPE == "magpie") {
322 $feed_title = db_escape_string($rss->channel["title"]);
323 } else {
324 $feed_title = $rss->get_feed_title();
325 }
326
327 db_query($link, "UPDATE ttrss_feeds SET
328 title = '$feed_title' WHERE id = '$feed'");
329 }
330
331 if (RSS_BACKEND_TYPE == "magpie") {
332 $site_url = $rss->channel["link"];
333 // weird, weird Magpie
334 if (!$site_url) $site_url = db_escape_string($rss->channel["link_"]);
335 } else {
336 $site_url = $rss->get_feed_link();
337 }
338
339 if ($site_url && $orig_site_url != db_escape_string($site_url)) {
340 db_query($link, "UPDATE ttrss_feeds SET
341 site_url = '$site_url' WHERE id = '$feed'");
342 }
343
344 // print "I: " . $rss->channel["image"]["url"];
345
346 if (RSS_BACKEND_TYPE == "magpie") {
347 $icon_url = $rss->image["url"];
348 } else {
349 $icon_url = $rss->get_image_url(); # FIXME
350 }
351
352 if ($icon_url && !$orig_icon_url != db_escape_string($icon_url)) {
353 $icon_url = db_escape_string($icon_url);
354 db_query($link, "UPDATE ttrss_feeds SET icon_url = '$icon_url' WHERE id = '$feed'");
355 }
356
357
358 $filters = array();
359
360 $result = db_query($link, "SELECT reg_exp,
361 ttrss_filter_types.name AS name,
362 ttrss_filter_actions.name AS action
363 FROM ttrss_filters,ttrss_filter_types,ttrss_filter_actions WHERE
364 owner_uid = $owner_uid AND
365 ttrss_filter_types.id = filter_type AND
366 ttrss_filter_actions.id = action_id AND
367 (feed_id IS NULL OR feed_id = '$feed')");
368
369 while ($line = db_fetch_assoc($result)) {
370 if (!$filters[$line["name"]]) $filters[$line["name"]] = array();
371
372 $filter["reg_exp"] = $line["reg_exp"];
373 $filter["action"] = $line["action"];
374
375 array_push($filters[$line["name"]], $filter);
376 }
377
378 if (RSS_BACKEND_TYPE == "magpie") {
379 $iterator = $rss->items;
380
381 if (!$iterator || !is_array($iterator)) $iterator = $rss->entries;
382 if (!$iterator || !is_array($iterator)) $iterator = $rss;
383
384 } else {
385 $iterator = $rss->get_items();
386 }
387
388 if (!is_array($iterator)) {
389 /* db_query($link, "UPDATE ttrss_feeds
390 SET last_error = 'Parse error: can\'t find any articles.'
391 WHERE id = '$feed'"); */
392 return; // WTF?
393 }
394
395 foreach ($iterator as $item) {
396
397 if (RSS_BACKEND_TYPE == "magpie") {
398
399 $entry_guid = $item["id"];
400
401 if (!$entry_guid) $entry_guid = $item["guid"];
402 if (!$entry_guid) $entry_guid = $item["link"];
403
404 if (!$entry_guid) continue;
405
406 $entry_timestamp = "";
407
408 $rss_2_date = $item['pubdate'];
409 $rss_1_date = $item['dc']['date'];
410 $atom_date = $item['issued'];
411 if (!$atom_date) $atom_date = $item['updated'];
412
413 if ($atom_date != "") $entry_timestamp = parse_w3cdtf($atom_date);
414 if ($rss_1_date != "") $entry_timestamp = parse_w3cdtf($rss_1_date);
415 if ($rss_2_date != "") $entry_timestamp = strtotime($rss_2_date);
416
417 if ($entry_timestamp == "") {
418 $entry_timestamp = time();
419 $no_orig_date = 'true';
420 } else {
421 $no_orig_date = 'false';
422 }
423
424 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
425
426 $entry_title = $item["title"];
427
428 // strange Magpie workaround
429 $entry_link = $item["link_"];
430 if (!$entry_link) $entry_link = $item["link"];
431
432 if (!$entry_title) continue;
433 if (!$entry_link) continue;
434
435 $entry_content = $item["content:escaped"];
436
437 if (!$entry_content) $entry_content = $item["content:encoded"];
438 if (!$entry_content) $entry_content = $item["content"];
439 if (!$entry_content) $entry_content = $item["atom_content"];
440 if (!$entry_content) $entry_content = $item["summary"];
441 if (!$entry_content) $entry_content = $item["description"];
442
443 // if (!$entry_content) continue;
444
445 // WTF
446 if (is_array($entry_content)) {
447 $entry_content = $entry_content["encoded"];
448 if (!$entry_content) $entry_content = $entry_content["escaped"];
449 }
450
451 // print_r($item);
452 // print_r(htmlspecialchars($entry_content));
453 // print "<br>";
454
455 $entry_content_unescaped = $entry_content;
456 $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
457
458 $entry_comments = $item["comments"];
459
460 $entry_author = db_escape_string($item['dc']['creator']);
461
462 $entry_guid = db_escape_string($entry_guid);
463
464 $result = db_query($link, "SELECT id FROM ttrss_entries
465 WHERE guid = '$entry_guid'");
466
467 $entry_content = db_escape_string($entry_content);
468 $entry_title = db_escape_string($entry_title);
469 $entry_link = db_escape_string($entry_link);
470 $entry_comments = db_escape_string($entry_comments);
471
472 $num_comments = db_escape_string($item["slash"]["comments"]);
473
474 if (!$num_comments) $num_comments = 0;
475
476 } else if (RSS_BACKEND_TYPE == "simplepie") {
477
478 $entry_guid = $item->get_id();
479
480 if (!$entry_guid) {
481 $entry_guid = $item->get_permalink();
482 }
483
484 if (!$entry_guid) continue;
485
486 $entry_timestamp = $item->get_date("U");
487
488 if ($entry_timestamp == "") {
489 $entry_timestamp = time();
490 $no_orig_date = 'true';
491 } else {
492 $no_orig_date = 'false';
493 }
494
495 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
496
497 $entry_title = $item->get_title();
498 $entry_link = $item->get_permalink();
499
500 if (!$entry_title) continue;
501 if (!$entry_link) continue;
502
503 $entry_content = $item->get_description();
504
505 // print_r(htmlspecialchars($entry_content));
506 // print "<br>";
507
508 $entry_content_unescaped = $entry_content;
509 $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
510
511 $entry_comments = ""; # FIXME
512
513 $entry_author = $item->get_author(0);
514
515 $entry_author = db_escape_string($entry_author->name);
516
517 $entry_guid = db_escape_string($entry_guid);
518
519 $result = db_query($link, "SELECT id FROM ttrss_entries
520 WHERE guid = '$entry_guid'");
521
522 $entry_content = db_escape_string($entry_content);
523 $entry_title = db_escape_string($entry_title);
524 $entry_link = db_escape_string($entry_link);
525 $entry_comments = db_escape_string($entry_comments);
526
527 $num_comments = 0; # FIXME
528
529 if (!$num_comments) $num_comments = 0;
530
531 }
532
533 # sanitize content
534
535 $entry_content = sanitize_rss($entry_content);
536 $entry_title = sanitize_rss($entry_title);
537 $entry_link = sanitize_rss($entry_link);
538 $entry_comments = sanitize_rss($entry_comments);
539
540 db_query($link, "BEGIN");
541
542 if (db_num_rows($result) == 0) {
543
544 // base post entry does not exist, create it
545
546 $result = db_query($link,
547 "INSERT INTO ttrss_entries
548 (title,
549 guid,
550 link,
551 updated,
552 content,
553 content_hash,
554 no_orig_date,
555 date_entered,
556 comments,
557 num_comments,
558 author)
559 VALUES
560 ('$entry_title',
561 '$entry_guid',
562 '$entry_link',
563 '$entry_timestamp_fmt',
564 '$entry_content',
565 '$content_hash',
566 $no_orig_date,
567 NOW(),
568 '$entry_comments',
569 '$num_comments',
570 '$entry_author')");
571 } else {
572 // we keep encountering the entry in feeds, so we need to
573 // update date_entered column so that we don't get horrible
574 // dupes when the entry gets purged and reinserted again e.g.
575 // in the case of SLOW SLOW OMG SLOW updating feeds
576
577 $base_entry_id = db_fetch_result($result, 0, "id");
578
579 db_query($link, "UPDATE ttrss_entries SET date_entered = NOW()
580 WHERE id = '$base_entry_id'");
581 }
582
583 // now it should exist, if not - bad luck then
584
585 $result = db_query($link, "SELECT
586 id,content_hash,no_orig_date,title,
587 substring(date_entered,1,19) as date_entered,
588 substring(updated,1,19) as updated,
589 num_comments
590 FROM
591 ttrss_entries
592 WHERE guid = '$entry_guid'");
593
594 if (db_num_rows($result) == 1) {
595
596 // this will be used below in update handler
597 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
598 $orig_title = db_fetch_result($result, 0, "title");
599 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
600 $orig_date_entered = strtotime(db_fetch_result($result,
601 0, "date_entered"));
602
603 $ref_id = db_fetch_result($result, 0, "id");
604
605 // check for user post link to main table
606
607 // do we allow duplicate posts with same GUID in different feeds?
608 if (get_pref($link, "ALLOW_DUPLICATE_POSTS", $owner_uid, false)) {
609 $dupcheck_qpart = "AND feed_id = '$feed'";
610 } else {
611 $dupcheck_qpart = "";
612 }
613
614 // error_reporting(0);
615
616 $filter_name = get_filter_name($entry_title, $entry_content,
617 $entry_link, $filters);
618
619 if ($filter_name == "filter") {
620 continue;
621 }
622
623 // error_reporting (DEFAULT_ERROR_LEVEL);
624
625 $result = db_query($link,
626 "SELECT ref_id FROM ttrss_user_entries WHERE
627 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
628 $dupcheck_qpart");
629
630 // okay it doesn't exist - create user entry
631 if (db_num_rows($result) == 0) {
632
633 if ($filter_name != 'catchup') {
634 $unread = 'true';
635 $last_read_qpart = 'NULL';
636 } else {
637 $unread = 'false';
638 $last_read_qpart = 'NOW()';
639 }
640
641 if ($filter_name == 'mark') {
642 $marked = 'true';
643 } else {
644 $marked = 'false';
645 }
646
647 $result = db_query($link,
648 "INSERT INTO ttrss_user_entries
649 (ref_id, owner_uid, feed_id, unread, last_read, marked)
650 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
651 $last_read_qpart, $marked)");
652 }
653
654 $post_needs_update = false;
655
656 if (get_pref($link, "UPDATE_POST_ON_CHECKSUM_CHANGE", $owner_uid, false) &&
657 ($content_hash != $orig_content_hash)) {
658 $post_needs_update = true;
659 }
660
661 if ($orig_title != $entry_title) {
662 $post_needs_update = true;
663 }
664
665 if ($orig_num_comments != $num_comments) {
666 $post_needs_update = true;
667 }
668
669 // this doesn't seem to be very reliable
670 //
671 // if ($orig_timestamp != $entry_timestamp && !$orig_no_orig_date) {
672 // $post_needs_update = true;
673 // }
674
675 // if post needs update, update it and mark all user entries
676 // linking to this post as updated
677 if ($post_needs_update) {
678
679 // print "<!-- post $orig_title needs update : $post_needs_update -->";
680
681 db_query($link, "UPDATE ttrss_entries
682 SET title = '$entry_title', content = '$entry_content',
683 num_comments = '$num_comments'
684 WHERE id = '$ref_id'");
685
686 if (get_pref($link, "MARK_UNREAD_ON_UPDATE", $owner_uid, false)) {
687 db_query($link, "UPDATE ttrss_user_entries
688 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
689 } else {
690 db_query($link, "UPDATE ttrss_user_entries
691 SET last_read = null WHERE ref_id = '$ref_id' AND unread = false");
692 }
693
694 }
695 }
696
697 db_query($link, "COMMIT");
698
699 /* taaaags */
700 // <a href="http://technorati.com/tag/Xorg" rel="tag">Xorg</a>, //
701
702 $entry_tags = null;
703
704 preg_match_all("/<a.*?href=.http:\/\/.*?technorati.com\/tag\/([^\"\'>]+)/i",
705 $entry_content_unescaped, $entry_tags);
706
707 // print "<br>$entry_title : $entry_content_unescaped<br>";
708 // print_r($entry_tags);
709 // print "<br>";
710
711 $entry_tags = $entry_tags[1];
712
713 if (count($entry_tags) > 0) {
714
715 db_query($link, "BEGIN");
716
717 $result = db_query($link, "SELECT id,int_id
718 FROM ttrss_entries,ttrss_user_entries
719 WHERE guid = '$entry_guid'
720 AND feed_id = '$feed' AND ref_id = id
721 AND owner_uid = '$owner_uid'");
722
723 if (db_num_rows($result) == 1) {
724
725 $entry_id = db_fetch_result($result, 0, "id");
726 $entry_int_id = db_fetch_result($result, 0, "int_id");
727
728 foreach ($entry_tags as $tag) {
729 $tag = db_escape_string(strtolower($tag));
730
731 $tag = str_replace("+", " ", $tag);
732 $tag = str_replace("technorati tag: ", "", $tag);
733
734 $result = db_query($link, "SELECT id FROM ttrss_tags
735 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
736 owner_uid = '$owner_uid' LIMIT 1");
737
738 // print db_fetch_result($result, 0, "id");
739
740 if ($result && db_num_rows($result) == 0) {
741
742 // print "tagging $entry_id as $tag<br>";
743
744 db_query($link, "INSERT INTO ttrss_tags
745 (owner_uid,tag_name,post_int_id)
746 VALUES ('$owner_uid','$tag', '$entry_int_id')");
747 }
748 }
749 }
750 db_query($link, "COMMIT");
751 }
752 }
753
754 db_query($link, "UPDATE ttrss_feeds
755 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
756
757 // db_query($link, "COMMIT");
758
759 } else {
760 $error_msg = db_escape_string(magpie_error());
761 db_query($link,
762 "UPDATE ttrss_feeds SET last_error = '$error_msg',
763 last_updated = NOW() WHERE id = '$feed'");
764 }
765
766 }
767
768 function print_select($id, $default, $values, $attributes = "") {
769 print "<select name=\"$id\" id=\"$id\" $attributes>";
770 foreach ($values as $v) {
771 if ($v == $default)
772 $sel = " selected";
773 else
774 $sel = "";
775
776 print "<option$sel>$v</option>";
777 }
778 print "</select>";
779 }
780
781 function print_select_hash($id, $default, $values, $attributes = "") {
782 print "<select name=\"$id\" id='$id' $attributes>";
783 foreach (array_keys($values) as $v) {
784 if ($v == $default)
785 $sel = "selected";
786 else
787 $sel = "";
788
789 print "<option $sel value=\"$v\">".$values[$v]."</option>";
790 }
791
792 print "</select>";
793 }
794
795 function get_filter_name($title, $content, $link, $filters) {
796
797 if ($filters["title"]) {
798 foreach ($filters["title"] as $filter) {
799 $reg_exp = $filter["reg_exp"];
800 if (preg_match("/$reg_exp/i", $title)) {
801 return $filter["action"];
802 }
803 }
804 }
805
806 if ($filters["content"]) {
807 foreach ($filters["content"] as $filter) {
808 $reg_exp = $filter["reg_exp"];
809 if (preg_match("/$reg_exp/i", $content)) {
810 return $filter["action"];
811 }
812 }
813 }
814
815 if ($filters["both"]) {
816 foreach ($filters["both"] as $filter) {
817 $reg_exp = $filter["reg_exp"];
818 if (preg_match("/$reg_exp/i", $title) ||
819 preg_match("/$reg_exp/i", $content)) {
820 return $filter["action"];
821 }
822 }
823 }
824
825 if ($filters["link"]) {
826 $reg_exp = $filter["reg_exp"];
827 foreach ($filters["link"] as $filter) {
828 $reg_exp = $filter["reg_exp"];
829 if (preg_match("/$reg_exp/i", $link)) {
830 return $filter["action"];
831 }
832 }
833 }
834
835 return false;
836 }
837
838 function printFeedEntry($feed_id, $class, $feed_title, $unread, $icon_file, $link,
839 $rtl_content = false, $last_updated = false, $last_error = false) {
840
841 if (file_exists($icon_file) && filesize($icon_file) > 0) {
842 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"$icon_file\">";
843 } else {
844 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"images/blank_icon.gif\">";
845 }
846
847 if ($rtl_content) {
848 $rtl_tag = "dir=\"rtl\"";
849 } else {
850 $rtl_tag = "dir=\"ltr\"";
851 }
852
853 $error_notify_msg = "";
854
855 if ($last_error) {
856 $link_title = "Error: $last_error ($last_updated)";
857 $error_notify_msg = "(Error)";
858 } else if ($last_updated) {
859 $link_title = "Updated: $last_updated";
860 }
861
862 $feed = "<a title=\"$link_title\" id=\"FEEDL-$feed_id\" href=\"javascript:viewfeed('$feed_id', '', false);\">$feed_title</a>";
863
864 print "<li id=\"FEEDR-$feed_id\" class=\"$class\">";
865 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
866 print "$feed_icon";
867 }
868
869 print "<span $rtl_tag id=\"FEEDN-$feed_id\">$feed</span>";
870
871 if ($unread != 0) {
872 $fctr_class = "";
873 } else {
874 $fctr_class = "class=\"invisible\"";
875 }
876
877 print " <span $rtl_tag $fctr_class id=\"FEEDCTR-$feed_id\">
878 (<span id=\"FEEDU-$feed_id\">$unread</span>)</span>";
879
880 if (get_pref($link, "EXTENDED_FEEDLIST")) {
881 print "<div class=\"feedExtInfo\">
882 <span id=\"FLUPD-$feed_id\">$last_updated $error_notify_msg</span></div>";
883 }
884
885 print "</li>";
886
887 }
888
889 function getmicrotime() {
890 list($usec, $sec) = explode(" ",microtime());
891 return ((float)$usec + (float)$sec);
892 }
893
894 function print_radio($id, $default, $values, $attributes = "") {
895 foreach ($values as $v) {
896
897 if ($v == $default)
898 $sel = "checked";
899 else
900 $sel = "";
901
902 if ($v == "Yes") {
903 $sel .= " value=\"1\"";
904 } else {
905 $sel .= " value=\"0\"";
906 }
907
908 print "<input class=\"noborder\"
909 type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
910
911 }
912 }
913
914 function initialize_user_prefs($link, $uid) {
915
916 $uid = db_escape_string($uid);
917
918 db_query($link, "BEGIN");
919
920 $result = db_query($link, "SELECT pref_name,def_value FROM ttrss_prefs");
921
922 $u_result = db_query($link, "SELECT pref_name
923 FROM ttrss_user_prefs WHERE owner_uid = '$uid'");
924
925 $active_prefs = array();
926
927 while ($line = db_fetch_assoc($u_result)) {
928 array_push($active_prefs, $line["pref_name"]);
929 }
930
931 while ($line = db_fetch_assoc($result)) {
932 if (array_search($line["pref_name"], $active_prefs) === FALSE) {
933 // print "adding " . $line["pref_name"] . "<br>";
934
935 db_query($link, "INSERT INTO ttrss_user_prefs
936 (owner_uid,pref_name,value) VALUES
937 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."')");
938
939 }
940 }
941
942 db_query($link, "COMMIT");
943
944 }
945
946 function lookup_user_id($link, $user) {
947
948 $result = db_query($link, "SELECT id FROM ttrss_users WHERE
949 login = '$login'");
950
951 if (db_num_rows($result) == 1) {
952 return db_fetch_result($result, 0, "id");
953 } else {
954 return false;
955 }
956 }
957
958 function http_authenticate_user($link) {
959
960 if (!$_SERVER["PHP_AUTH_USER"]) {
961
962 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
963 header('HTTP/1.0 401 Unauthorized');
964 exit;
965
966 } else {
967 $auth_result = authenticate_user($link,
968 $_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"]);
969
970 if (!$auth_result) {
971 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
972 header('HTTP/1.0 401 Unauthorized');
973 exit;
974 }
975 }
976
977 return true;
978 }
979
980 function authenticate_user($link, $login, $password) {
981
982 if (!SINGLE_USER_MODE) {
983
984 $pwd_hash = 'SHA1:' . sha1($password);
985
986 $result = db_query($link, "SELECT id,login,access_level FROM ttrss_users WHERE
987 login = '$login' AND pwd_hash = '$pwd_hash'");
988
989 if (db_num_rows($result) == 1) {
990 $_SESSION["uid"] = db_fetch_result($result, 0, "id");
991 $_SESSION["name"] = db_fetch_result($result, 0, "login");
992 $_SESSION["access_level"] = db_fetch_result($result, 0, "access_level");
993
994 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
995 $_SESSION["uid"]);
996
997 $user_theme = get_user_theme_path($link);
998
999 $_SESSION["theme"] = $user_theme;
1000 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1001
1002 initialize_user_prefs($link, $_SESSION["uid"]);
1003
1004 return true;
1005 }
1006
1007 return false;
1008
1009 } else {
1010
1011 $_SESSION["uid"] = 1;
1012 $_SESSION["name"] = "admin";
1013
1014 $user_theme = get_user_theme_path($link);
1015
1016 $_SESSION["theme"] = $user_theme;
1017 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1018
1019 initialize_user_prefs($link, $_SESSION["uid"]);
1020
1021 return true;
1022 }
1023 }
1024
1025 function make_password($length = 8) {
1026
1027 $password = "";
1028 $possible = "0123456789abcdfghjkmnpqrstvwxyzABCDFGHJKMNPQRSTVWXYZ";
1029
1030 $i = 0;
1031
1032 while ($i < $length) {
1033 $char = substr($possible, mt_rand(0, strlen($possible)-1), 1);
1034
1035 if (!strstr($password, $char)) {
1036 $password .= $char;
1037 $i++;
1038 }
1039 }
1040 return $password;
1041 }
1042
1043 // this is called after user is created to initialize default feeds, labels
1044 // or whatever else
1045
1046 // user preferences are checked on every login, not here
1047
1048 function initialize_user($link, $uid) {
1049
1050 db_query($link, "insert into ttrss_labels (owner_uid,sql_exp,description)
1051 values ('$uid','unread = true', 'Unread articles')");
1052
1053 db_query($link, "insert into ttrss_labels (owner_uid,sql_exp,description)
1054 values ('$uid','last_read is null and unread = false', 'Updated articles')");
1055
1056 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
1057 values ('$uid', 'Tiny Tiny RSS: New Releases',
1058 'http://tt-rss.spb.ru/releases.rss')");
1059
1060 }
1061
1062 function logout_user() {
1063 session_destroy();
1064 if (isset($_COOKIE[session_name()])) {
1065 setcookie(session_name(), '', time()-42000, '/');
1066 }
1067 }
1068
1069 function get_script_urlpath() {
1070 return preg_replace('/\/[^\/]*$/', "", $_SERVER["REQUEST_URI"]);
1071 }
1072
1073 function get_login_redirect() {
1074 $server = $_SERVER["SERVER_NAME"];
1075
1076 if (ENABLE_LOGIN_SSL) {
1077 $protocol = "https";
1078 } else {
1079 $protocol = "http";
1080 }
1081
1082 $url_path = get_script_urlpath();
1083
1084 $redirect_uri = "$protocol://$server$url_path/login.php";
1085
1086 return $redirect_uri;
1087 }
1088
1089 function validate_session($link) {
1090 if (SESSION_CHECK_ADDRESS && $_SESSION["uid"]) {
1091 if ($_SESSION["ip_address"]) {
1092 if ($_SESSION["ip_address"] != $_SERVER["REMOTE_ADDR"]) {
1093 return false;
1094 }
1095 }
1096 }
1097 return true;
1098 }
1099
1100 function basic_nosid_redirect_check() {
1101 if (!SINGLE_USER_MODE) {
1102 if (!$_COOKIE[get_session_cookie_name()]) {
1103 $redirect_uri = get_login_redirect();
1104 $return_to = preg_replace('/.*?\//', '', $_SERVER["REQUEST_URI"]);
1105 header("Location: $redirect_uri?rt=$return_to");
1106 exit;
1107 }
1108 }
1109 }
1110
1111 function login_sequence($link) {
1112 if (!SINGLE_USER_MODE) {
1113
1114 if (!validate_session($link)) {
1115 logout_user();
1116 $redirect_uri = get_login_redirect();
1117 $return_to = preg_replace('/.*?\//', '', $_SERVER["REQUEST_URI"]);
1118 header("Location: $redirect_uri?rt=$return_to");
1119 exit;
1120 }
1121
1122 if (!USE_HTTP_AUTH) {
1123 if (!$_SESSION["uid"]) {
1124 $redirect_uri = get_login_redirect();
1125 $return_to = preg_replace('/.*?\//', '', $_SERVER["REQUEST_URI"]);
1126 header("Location: $redirect_uri?rt=$return_to");
1127 exit;
1128 }
1129 } else {
1130 if (!$_SESSION["uid"]) {
1131 if (!$_SERVER["PHP_AUTH_USER"]) {
1132
1133 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS"');
1134 header('HTTP/1.0 401 Unauthorized');
1135 exit;
1136
1137 } else {
1138 $auth_result = authenticate_user($link,
1139 $_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"]);
1140
1141 if (!$auth_result) {
1142 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS"');
1143 header('HTTP/1.0 401 Unauthorized');
1144 exit;
1145 }
1146 }
1147 }
1148 }
1149 } else {
1150 return authenticate_user($link, "admin", null);
1151 }
1152 }
1153
1154 function truncate_string($str, $max_len) {
1155 if (mb_strlen($str, "utf-8") > $max_len - 3) {
1156 return mb_substr($str, 0, $max_len, "utf-8") . "...";
1157 } else {
1158 return $str;
1159 }
1160 }
1161
1162 function get_user_theme_path($link) {
1163 $result = db_query($link, "SELECT theme_path
1164 FROM
1165 ttrss_themes,ttrss_users
1166 WHERE ttrss_themes.id = theme_id AND ttrss_users.id = " . $_SESSION["uid"]);
1167 if (db_num_rows($result) != 0) {
1168 return db_fetch_result($result, 0, "theme_path");
1169 } else {
1170 return null;
1171 }
1172 }
1173
1174 function smart_date_time($timestamp) {
1175 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
1176 return date("G:i", $timestamp);
1177 } else if (date("Y", $timestamp) == date("Y")) {
1178 return date("M d, G:i", $timestamp);
1179 } else {
1180 return date("Y/m/d G:i", $timestamp);
1181 }
1182 }
1183
1184 function smart_date($timestamp) {
1185 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
1186 return "Today";
1187 } else if (date("Y", $timestamp) == date("Y")) {
1188 return date("D m", $timestamp);
1189 } else {
1190 return date("Y/m/d", $timestamp);
1191 }
1192 }
1193
1194 function sql_bool_to_string($s) {
1195 if ($s == "t" || $s == "1") {
1196 return "true";
1197 } else {
1198 return "false";
1199 }
1200 }
1201
1202 function sql_bool_to_bool($s) {
1203 if ($s == "t" || $s == "1") {
1204 return true;
1205 } else {
1206 return false;
1207 }
1208 }
1209
1210
1211 function toggleEvenOdd($a) {
1212 if ($a == "even")
1213 return "odd";
1214 else
1215 return "even";
1216 }
1217
1218 function sanity_check($link) {
1219
1220 error_reporting(0);
1221
1222 $error_code = 0;
1223 $result = db_query($link, "SELECT schema_version FROM ttrss_version");
1224 $schema_version = db_fetch_result($result, 0, "schema_version");
1225
1226 if ($schema_version != SCHEMA_VERSION) {
1227 $error_code = 5;
1228 }
1229
1230 if (DB_TYPE == "mysql") {
1231 $result = db_query($link, "SELECT true", false);
1232 if (db_num_rows($result) != 1) {
1233 $error_code = 10;
1234 }
1235 }
1236
1237 error_reporting (DEFAULT_ERROR_LEVEL);
1238
1239 if ($error_code != 0) {
1240 print_error_xml($error_code);
1241 return false;
1242 } else {
1243 return true;
1244 }
1245 }
1246
1247 function file_is_locked($filename) {
1248 error_reporting(0);
1249 $fp = fopen($filename, "r");
1250 error_reporting(DEFAULT_ERROR_LEVEL);
1251 if ($fp) {
1252 if (flock($fp, LOCK_EX | LOCK_NB)) {
1253 flock($fp, LOCK_UN);
1254 fclose($fp);
1255 return false;
1256 }
1257 fclose($fp);
1258 return true;
1259 }
1260 return false;
1261 }
1262
1263 function make_lockfile($filename) {
1264 $fp = fopen($filename, "w");
1265
1266 if (flock($fp, LOCK_EX | LOCK_NB)) {
1267 return $fp;
1268 } else {
1269 return false;
1270 }
1271 }
1272
1273 function sql_random_function() {
1274 if (DB_TYPE == "mysql") {
1275 return "RAND()";
1276 } else {
1277 return "RANDOM()";
1278 }
1279 }
1280
1281 function catchup_feed($link, $feed, $cat_view) {
1282
1283 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
1284
1285 if ($cat_view) {
1286
1287 if ($feed > 0) {
1288 $cat_qpart = "cat_id = '$feed'";
1289 } else {
1290 $cat_qpart = "cat_id IS NULL";
1291 }
1292
1293 $tmp_result = db_query($link, "SELECT id
1294 FROM ttrss_feeds WHERE $cat_qpart AND owner_uid = " .
1295 $_SESSION["uid"]);
1296
1297 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1298
1299 $tmp_feed = $tmp_line["id"];
1300
1301 db_query($link, "UPDATE ttrss_user_entries
1302 SET unread = false,last_read = NOW()
1303 WHERE feed_id = '$tmp_feed' AND owner_uid = " . $_SESSION["uid"]);
1304 }
1305
1306 } else if ($feed > 0) {
1307
1308 $tmp_result = db_query($link, "SELECT id
1309 FROM ttrss_feeds WHERE parent_feed = '$feed'
1310 ORDER BY cat_id,title");
1311
1312 $parent_ids = array();
1313
1314 if (db_num_rows($tmp_result) > 0) {
1315 while ($p = db_fetch_assoc($tmp_result)) {
1316 array_push($parent_ids, "feed_id = " . $p["id"]);
1317 }
1318
1319 $children_qpart = implode(" OR ", $parent_ids);
1320
1321 db_query($link, "UPDATE ttrss_user_entries
1322 SET unread = false,last_read = NOW()
1323 WHERE (feed_id = '$feed' OR $children_qpart)
1324 AND owner_uid = " . $_SESSION["uid"]);
1325
1326 } else {
1327 db_query($link, "UPDATE ttrss_user_entries
1328 SET unread = false,last_read = NOW()
1329 WHERE feed_id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
1330 }
1331
1332 } else if ($feed < 0 && $feed > -10) { // special, like starred
1333
1334 if ($feed == -1) {
1335 db_query($link, "UPDATE ttrss_user_entries
1336 SET unread = false,last_read = NOW()
1337 WHERE marked = true AND owner_uid = ".$_SESSION["uid"]);
1338 }
1339
1340 } else if ($feed < -10) { // label
1341
1342 // TODO make this more efficient
1343
1344 $label_id = -$feed - 11;
1345
1346 $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
1347 WHERE id = '$label_id'");
1348
1349 if ($tmp_result) {
1350 $sql_exp = db_fetch_result($tmp_result, 0, "sql_exp");
1351
1352 db_query($link, "BEGIN");
1353
1354 $tmp2_result = db_query($link,
1355 "SELECT
1356 int_id
1357 FROM
1358 ttrss_user_entries,ttrss_entries,ttrss_feeds
1359 WHERE
1360 ref_id = ttrss_entries.id AND
1361 ttrss_user_entries.feed_id = ttrss_feeds.id AND
1362 $sql_exp AND
1363 ttrss_user_entries.owner_uid = " . $_SESSION["uid"]);
1364
1365 while ($tmp_line = db_fetch_assoc($tmp2_result)) {
1366 db_query($link, "UPDATE
1367 ttrss_user_entries
1368 SET
1369 unread = false, last_read = NOW()
1370 WHERE
1371 int_id = " . $tmp_line["int_id"]);
1372 }
1373
1374 db_query($link, "COMMIT");
1375
1376 /* db_query($link, "UPDATE ttrss_user_entries,ttrss_entries
1377 SET unread = false,last_read = NOW()
1378 WHERE $sql_exp
1379 AND ref_id = id
1380 AND owner_uid = ".$_SESSION["uid"]); */
1381 }
1382 }
1383 } else { // tag
1384 db_query($link, "BEGIN");
1385
1386 $tag_name = db_escape_string($feed);
1387
1388 $result = db_query($link, "SELECT post_int_id FROM ttrss_tags
1389 WHERE tag_name = '$tag_name' AND owner_uid = " . $_SESSION["uid"]);
1390
1391 while ($line = db_fetch_assoc($result)) {
1392 db_query($link, "UPDATE ttrss_user_entries SET
1393 unread = false, last_read = NOW()
1394 WHERE int_id = " . $line["post_int_id"]);
1395 }
1396 db_query($link, "COMMIT");
1397 }
1398 }
1399
1400 function update_generic_feed($link, $feed, $cat_view) {
1401 if ($cat_view) {
1402
1403 if ($feed > 0) {
1404 $cat_qpart = "cat_id = '$feed'";
1405 } else {
1406 $cat_qpart = "cat_id IS NULL";
1407 }
1408
1409 $tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
1410 WHERE $cat_qpart AND owner_uid = " . $_SESSION["uid"]);
1411
1412 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1413 $feed_url = $tmp_line["feed_url"];
1414 update_rss_feed($link, $feed_url, $feed, ENABLE_UPDATE_DAEMON);
1415 }
1416
1417 } else {
1418 $tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
1419 WHERE id = '$feed'");
1420 $feed_url = db_fetch_result($tmp_result, 0, "feed_url");
1421 update_rss_feed($link, $feed_url, $feed, ENABLE_UPDATE_DAEMON);
1422 }
1423 }
1424
1425 function getAllCounters($link) {
1426 getLabelCounters($link);
1427 getFeedCounters($link);
1428 getTagCounters($link);
1429 getGlobalCounters($link);
1430 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1431 getCategoryCounters($link);
1432 }
1433 }
1434
1435 function getCategoryCounters($link) {
1436 $result = db_query($link, "SELECT cat_id,SUM((SELECT COUNT(int_id)
1437 FROM ttrss_user_entries WHERE feed_id = ttrss_feeds.id
1438 AND unread = true)) AS unread FROM ttrss_feeds
1439 WHERE
1440 hidden = false AND owner_uid = ".$_SESSION["uid"]." GROUP BY cat_id");
1441
1442 while ($line = db_fetch_assoc($result)) {
1443 $line["cat_id"] = sprintf("%d", $line["cat_id"]);
1444 print "<counter type=\"category\" id=\"".$line["cat_id"]."\" counter=\"".
1445 $line["unread"]."\"/>";
1446 }
1447 }
1448
1449 function getCategoryUnread($link, $cat) {
1450
1451 if ($cat != 0) {
1452 $cat_query = "cat_id = '$cat'";
1453 } else {
1454 $cat_query = "cat_id IS NULL";
1455 }
1456
1457 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE $cat_query
1458 AND hidden = false
1459 AND owner_uid = " . $_SESSION["uid"]);
1460
1461 $cat_feeds = array();
1462 while ($line = db_fetch_assoc($result)) {
1463 array_push($cat_feeds, "feed_id = " . $line["id"]);
1464 }
1465
1466 if (count($cat_feeds) == 0) return 0;
1467
1468 $match_part = implode(" OR ", $cat_feeds);
1469
1470 $result = db_query($link, "SELECT COUNT(int_id) AS unread
1471 FROM ttrss_user_entries
1472 WHERE unread = true AND ($match_part) AND owner_uid = " . $_SESSION["uid"]);
1473
1474 $unread = 0;
1475
1476 # this needs to be rewritten
1477 while ($line = db_fetch_assoc($result)) {
1478 $unread += $line["unread"];
1479 }
1480
1481 return $unread;
1482
1483 }
1484
1485 function getFeedUnread($link, $feed, $is_cat = false) {
1486 $n_feed = sprintf("%d", $feed);
1487
1488 if ($is_cat) {
1489 return getCategoryUnread($link, $n_feed);
1490 } else if ($n_feed == -1) {
1491 $match_part = "marked = true";
1492 } else if ($n_feed > 0) {
1493
1494 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE parent_feed = '$n_feed'
1495 AND hidden = false
1496 AND owner_uid = " . $_SESSION["uid"]);
1497
1498 if (db_num_rows($result) > 0) {
1499
1500 $linked_feeds = array();
1501 while ($line = db_fetch_assoc($result)) {
1502 array_push($linked_feeds, "feed_id = " . $line["id"]);
1503 }
1504
1505 $match_part = implode(" OR ", $linked_feeds);
1506
1507 $result = db_query($link, "SELECT COUNT(int_id) AS unread
1508 FROM ttrss_user_entries
1509 WHERE unread = true AND ($match_part) AND owner_uid = " . $_SESSION["uid"]);
1510
1511 $unread = 0;
1512
1513 # this needs to be rewritten
1514 while ($line = db_fetch_assoc($result)) {
1515 $unread += $line["unread"];
1516 }
1517
1518 return $unread;
1519
1520 } else {
1521 $match_part = "feed_id = '$n_feed'";
1522 }
1523 } else if ($feed < -10) {
1524
1525 $label_id = -$feed - 11;
1526
1527 $result = db_query($link, "SELECT sql_exp FROM ttrss_labels WHERE
1528 id = '$label_id' AND owner_uid = " . $_SESSION["uid"]);
1529
1530 $match_part = db_fetch_result($result, 0, "sql_exp");
1531 }
1532
1533 if ($match_part) {
1534
1535 $result = db_query($link, "SELECT count(int_id) AS unread
1536 FROM ttrss_user_entries,ttrss_feeds,ttrss_entries WHERE
1537 ttrss_user_entries.feed_id = ttrss_feeds.id AND
1538 ttrss_user_entries.ref_id = ttrss_entries.id AND
1539 ttrss_feeds.hidden = false AND
1540 unread = true AND ($match_part) AND ttrss_user_entries.owner_uid = " . $_SESSION["uid"]);
1541
1542 } else {
1543
1544 $result = db_query($link, "SELECT COUNT(post_int_id) AS unread
1545 FROM ttrss_tags,ttrss_user_entries
1546 WHERE tag_name = '$feed' AND post_int_id = int_id AND unread = true AND
1547 ttrss_tags.owner_uid = " . $_SESSION["uid"]);
1548 }
1549
1550 $unread = db_fetch_result($result, 0, "unread");
1551
1552 return $unread;
1553 }
1554
1555 /* FIXME this needs reworking */
1556
1557 function getGlobalUnread($link) {
1558 $result = db_query($link, "SELECT count(ttrss_entries.id) as c_id FROM ttrss_entries,ttrss_user_entries,ttrss_feeds
1559 WHERE unread = true AND
1560 ttrss_user_entries.feed_id = ttrss_feeds.id AND
1561 ttrss_user_entries.ref_id = ttrss_entries.id AND
1562 hidden = false AND
1563 ttrss_user_entries.owner_uid = " . $_SESSION["uid"]);
1564 $c_id = db_fetch_result($result, 0, "c_id");
1565 return $c_id;
1566 }
1567
1568 function getGlobalCounters($link, $global_unread = -1) {
1569 if ($global_unread == -1) {
1570 $global_unread = getGlobalUnread($link);
1571 }
1572 print "<counter type=\"global\" id='global-unread'
1573 counter='$global_unread'/>";
1574
1575 $result = db_query($link, "SELECT COUNT(id) AS fn FROM
1576 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
1577
1578 $subscribed_feeds = db_fetch_result($result, 0, "fn");
1579
1580 print "<counter type=\"global\" id='subscribed-feeds'
1581 counter='$subscribed_feeds'/>";
1582
1583 }
1584
1585 function getTagCounters($link, $smart_mode = SMART_RPC_COUNTERS) {
1586
1587 if ($smart_mode) {
1588 if (!$_SESSION["tctr_last_value"]) {
1589 $_SESSION["tctr_last_value"] = array();
1590 }
1591 }
1592
1593 $old_counters = $_SESSION["tctr_last_value"];
1594
1595 $tctrs_modified = false;
1596
1597 /* $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
1598 FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
1599 ttrss_user_entries.ref_id = ttrss_entries.id AND
1600 ttrss_tags.owner_uid = ".$_SESSION["uid"]." AND
1601 post_int_id = ttrss_user_entries.int_id AND unread = true GROUP BY tag_name
1602 UNION
1603 select tag_name,0 as count FROM ttrss_tags
1604 WHERE ttrss_tags.owner_uid = ".$_SESSION["uid"]); */
1605
1606 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
1607 FROM ttrss_user_entries WHERE int_id = post_int_id
1608 AND unread = true)) AS count FROM ttrss_tags
1609 WHERE owner_uid = 2 GROUP BY tag_name ORDER BY tag_name");
1610
1611 $tags = array();
1612
1613 while ($line = db_fetch_assoc($result)) {
1614 $tags[$line["tag_name"]] += $line["count"];
1615 }
1616
1617 foreach (array_keys($tags) as $tag) {
1618 $unread = $tags[$tag];
1619
1620 $tag = htmlspecialchars($tag);
1621
1622 if (!$smart_mode || $old_counters[$tag] != $unread) {
1623 $old_counters[$tag] = $unread;
1624 $tctrs_modified = true;
1625 print "<counter type=\"tag\" id=\"$tag\" counter=\"$unread\"/>";
1626 }
1627
1628 }
1629
1630 if ($smart_mode && $tctrs_modified) {
1631 $_SESSION["tctr_last_value"] = $old_counters;
1632 }
1633
1634 }
1635
1636 function getLabelCounters($link, $smart_mode = SMART_RPC_COUNTERS, $ret_mode = false) {
1637
1638 if ($smart_mode) {
1639 if (!$_SESSION["lctr_last_value"]) {
1640 $_SESSION["lctr_last_value"] = array();
1641 }
1642 }
1643
1644 $ret_arr = array();
1645
1646 $old_counters = $_SESSION["lctr_last_value"];
1647 $lctrs_modified = false;
1648
1649 $result = db_query($link, "SELECT count(ttrss_entries.id) as count FROM ttrss_entries,ttrss_user_entries,ttrss_feeds
1650 WHERE marked = true AND ttrss_user_entries.ref_id = ttrss_entries.id AND
1651 ttrss_user_entries.feed_id = ttrss_feeds.id AND
1652 unread = true AND ttrss_user_entries.owner_uid = ".$_SESSION["uid"]);
1653
1654 $count = db_fetch_result($result, 0, "count");
1655
1656 if (!$ret_mode) {
1657 print "<counter type=\"label\" id=\"-1\" counter=\"$count\"/>";
1658 } else {
1659 $ret_arr["-1"]["counter"] = $count;
1660 $ret_arr["-1"]["description"] = "Starred";
1661 }
1662
1663 $result = db_query($link, "SELECT owner_uid,id,sql_exp,description FROM
1664 ttrss_labels WHERE owner_uid = ".$_SESSION["uid"]." ORDER by description");
1665
1666 while ($line = db_fetch_assoc($result)) {
1667
1668 $id = -$line["id"] - 11;
1669
1670 $label_name = $line["description"];
1671
1672 error_reporting (0);
1673
1674 $tmp_result = db_query($link, "SELECT count(ttrss_entries.id) as count FROM ttrss_user_entries,ttrss_entries,ttrss_feeds
1675 WHERE (" . $line["sql_exp"] . ") AND unread = true AND
1676 ttrss_feeds.hidden = false AND
1677 ttrss_user_entries.feed_id = ttrss_feeds.id AND
1678 ttrss_user_entries.ref_id = ttrss_entries.id AND
1679 ttrss_user_entries.owner_uid = ".$_SESSION["uid"]);
1680
1681 $count = db_fetch_result($tmp_result, 0, "count");
1682
1683 if (!$smart_mode || $old_counters[$id] != $count) {
1684 $old_counters[$id] = $count;
1685 $lctrs_modified = true;
1686 if (!$ret_mode) {
1687 print "<counter type=\"label\" id=\"$id\" counter=\"$count\"/>";
1688 } else {
1689 $ret_arr[$id]["counter"] = $count;
1690 $ret_arr[$id]["description"] = $label_name;
1691 }
1692 }
1693
1694 error_reporting (DEFAULT_ERROR_LEVEL);
1695 }
1696
1697 if ($smart_mode && $lctrs_modified) {
1698 $_SESSION["lctr_last_value"] = $old_counters;
1699 }
1700
1701 return $ret_arr;
1702 }
1703
1704 /* function getFeedCounter($link, $id) {
1705
1706 $result = db_query($link, "SELECT
1707 count(id) as count,last_error
1708 FROM ttrss_entries,ttrss_user_entries,ttrss_feeds
1709 WHERE feed_id = '$id' AND unread = true
1710 AND ttrss_user_entries.feed_id = ttrss_feeds.id
1711 AND ttrss_user_entries.ref_id = ttrss_entries.id");
1712
1713 $count = db_fetch_result($result, 0, "count");
1714 $last_error = htmlspecialchars(db_fetch_result($result, 0, "last_error"));
1715
1716 print "<counter type=\"feed\" id=\"$id\" counter=\"$count\" error=\"$last_error\"/>";
1717 } */
1718
1719 function getFeedCounters($link, $smart_mode = SMART_RPC_COUNTERS) {
1720
1721 if ($smart_mode) {
1722 if (!$_SESSION["fctr_last_value"]) {
1723 $_SESSION["fctr_last_value"] = array();
1724 }
1725 }
1726
1727 $old_counters = $_SESSION["fctr_last_value"];
1728
1729 $result = db_query($link, "SELECT id,last_error,parent_feed,
1730 SUBSTRING(last_updated,1,19) AS last_updated,
1731 (SELECT count(id)
1732 FROM ttrss_entries,ttrss_user_entries
1733 WHERE feed_id = ttrss_feeds.id AND
1734 ttrss_user_entries.ref_id = ttrss_entries.id
1735 AND unread = true AND owner_uid = ".$_SESSION["uid"].") as count
1736 FROM ttrss_feeds WHERE owner_uid = ".$_SESSION["uid"] . "
1737 AND parent_feed IS NULL");
1738
1739 $fctrs_modified = false;
1740
1741 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
1742
1743 while ($line = db_fetch_assoc($result)) {
1744
1745 $id = $line["id"];
1746 $count = $line["count"];
1747 $last_error = htmlspecialchars($line["last_error"]);
1748
1749 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
1750 $last_updated = smart_date_time(strtotime($line["last_updated"]));
1751 } else {
1752 $last_updated = date($short_date, strtotime($line["last_updated"]));
1753 }
1754
1755 $has_img = is_file(ICONS_DIR . "/$id.ico");
1756
1757 $tmp_result = db_query($link,
1758 "SELECT id,COUNT(unread) AS unread
1759 FROM ttrss_feeds LEFT JOIN ttrss_user_entries
1760 ON (ttrss_feeds.id = ttrss_user_entries.feed_id)
1761 WHERE parent_feed = '$id' AND unread = true GROUP BY ttrss_feeds.id");
1762
1763 if (db_num_rows($tmp_result) > 0) {
1764 while ($l = db_fetch_assoc($tmp_result)) {
1765 $count += $l["unread"];
1766 }
1767 }
1768
1769 if (!$smart_mode || $old_counters[$id] != $count) {
1770 $old_counters[$id] = $count;
1771 $fctrs_modified = true;
1772
1773 if ($last_error) {
1774 $error_part = "error=\"$last_error\"";
1775 } else {
1776 $error_part = "";
1777 }
1778
1779 if ($has_img) {
1780 $has_img_part = "hi=\"$has_img\"";
1781 } else {
1782 $has_img_part = "";
1783 }
1784
1785 print "<counter type=\"feed\" id=\"$id\" counter=\"$count\" $has_img_part $error_part updated=\"$last_updated\"/>";
1786 }
1787 }
1788
1789 if ($smart_mode && $fctrs_modified) {
1790 $_SESSION["fctr_last_value"] = $old_counters;
1791 }
1792 }
1793
1794 function get_script_dt_add() {
1795 if (strpos(VERSION, "99") === false) {
1796 return VERSION;
1797 } else {
1798 return time();
1799 }
1800 }
1801
1802 function get_pgsql_version($link) {
1803 $result = db_query($link, "SELECT version() AS version");
1804 $version = split(" ", db_fetch_result($result, 0, "version"));
1805 return $version[1];
1806 }
1807
1808 function print_error_xml($code, $add_msg = "") {
1809 global $ERRORS;
1810
1811 $error_msg = $ERRORS[$code];
1812
1813 if ($add_msg) {
1814 $error_msg = "$error_msg; $add_msg";
1815 }
1816
1817 print "<rpc-reply>";
1818 print "<error error-code=\"$code\" error-msg=\"$error_msg\"/>";
1819 print "</rpc-reply>";
1820 }
1821
1822 function subscribe_to_feed($link, $feed_link, $cat_id = 0) {
1823
1824 if ($cat_id == "0" || !$cat_id) {
1825 $cat_qpart = "NULL";
1826 } else {
1827 $cat_qpart = "'$cat_id'";
1828 }
1829
1830 $result = db_query($link,
1831 "SELECT id FROM ttrss_feeds
1832 WHERE feed_url = '$feed_link' AND owner_uid = ".$_SESSION["uid"]);
1833
1834 if (db_num_rows($result) == 0) {
1835
1836 $result = db_query($link,
1837 "INSERT INTO ttrss_feeds (owner_uid,feed_url,title,cat_id)
1838 VALUES ('".$_SESSION["uid"]."', '$feed_link',
1839 '[Unknown]', $cat_qpart)");
1840
1841 $result = db_query($link,
1842 "SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_link'
1843 AND owner_uid = " . $_SESSION["uid"]);
1844
1845 $feed_id = db_fetch_result($result, 0, "id");
1846
1847 if ($feed_id) {
1848 update_rss_feed($link, $feed_link, $feed_id, true);
1849 }
1850
1851 return true;
1852 } else {
1853 return false;
1854 }
1855 }
1856
1857 function print_feed_select($link, $id, $default_id = "",
1858 $attributes = "", $include_all_feeds = true) {
1859
1860 print "<select id=\"$id\" name=\"$id\" $attributes>";
1861 if ($include_all_feeds) {
1862 print "<option value=\"0\">All feeds</option>";
1863 }
1864
1865 $result = db_query($link, "SELECT id,title FROM ttrss_feeds
1866 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
1867
1868 if (db_num_rows($result) > 0 && $include_all_feeds) {
1869 print "<option disabled>--------</option>";
1870 }
1871
1872 while ($line = db_fetch_assoc($result)) {
1873 if ($line["id"] == $default_id) {
1874 $is_selected = "selected";
1875 } else {
1876 $is_selected = "";
1877 }
1878 printf("<option $is_selected value='%d'>%s</option>",
1879 $line["id"], htmlspecialchars(db_unescape_string($line["title"])));
1880 }
1881
1882 print "</select>";
1883 }
1884
1885 function print_feed_cat_select($link, $id, $default_id = "",
1886 $attributes = "", $include_all_cats = true) {
1887
1888 print "<select id=\"$id\" name=\"$id\" $attributes>";
1889
1890 if ($include_all_cats) {
1891 print "<option value=\"0\">Uncategorized</option>";
1892 }
1893
1894 $result = db_query($link, "SELECT id,title FROM ttrss_feed_categories
1895 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
1896
1897 if (db_num_rows($result) > 0 && $include_all_cats) {
1898 print "<option disabled>--------</option>";
1899 }
1900
1901 while ($line = db_fetch_assoc($result)) {
1902 if ($line["id"] == $default_id) {
1903 $is_selected = "selected";
1904 } else {
1905 $is_selected = "";
1906 }
1907 printf("<option $is_selected value='%d'>%s</option>",
1908 $line["id"], htmlspecialchars(db_unescape_string($line["title"])));
1909 }
1910
1911 print "</select>";
1912 }
1913
1914 function checkbox_to_sql_bool($val) {
1915 return ($val == "on") ? "true" : "false";
1916 }
1917
1918 function getFeedCatTitle($link, $id) {
1919 if ($id == -1) {
1920 return "Special";
1921 } else if ($id < -10) {
1922 return "Labels";
1923 } else if ($id > 0) {
1924 $result = db_query($link, "SELECT ttrss_feed_categories.title
1925 FROM ttrss_feeds, ttrss_feed_categories WHERE ttrss_feeds.id = '$id' AND
1926 cat_id = ttrss_feed_categories.id");
1927 if (db_num_rows($result) == 1) {
1928 return db_fetch_result($result, 0, "title");
1929 } else {
1930 return "Uncategorized";
1931 }
1932 } else {
1933 return "getFeedCatTitle($id) failed";
1934 }
1935
1936 }
1937
1938 function getFeedTitle($link, $id) {
1939 if ($id == -1) {
1940 return "Starred articles";
1941 } else if ($id < -10) {
1942 $label_id = -10 - $id;
1943 $result = db_query($link, "SELECT description FROM ttrss_labels WHERE id = '$label_id'");
1944 if (db_num_rows($result) == 1) {
1945 return db_fetch_result($result, 0, "description");
1946 } else {
1947 return "Unknown label ($label_id)";
1948 }
1949
1950 } else if ($id > 0) {
1951 $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$id'");
1952 if (db_num_rows($result) == 1) {
1953 return db_fetch_result($result, 0, "title");
1954 } else {
1955 return "Unknown feed ($id)";
1956 }
1957 } else {
1958 return "getFeedTitle($id) failed";
1959 }
1960
1961 }
1962
1963 function get_session_cookie_name() {
1964 return ((!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid" : TTRSS_SESSION_NAME);
1965 }
1966
1967 function print_init_params($link) {
1968 print "<init-params>";
1969 if ($_SESSION["stored-params"]) {
1970 foreach (array_keys($_SESSION["stored-params"]) as $key) {
1971 if ($key) {
1972 $value = htmlspecialchars($_SESSION["stored-params"][$key]);
1973 print "<param key=\"$key\" value=\"$value\"/>";
1974 }
1975 }
1976 }
1977
1978 print "<param key=\"daemon_enabled\" value=\"" . ENABLE_UPDATE_DAEMON . "\"/>";
1979 print "<param key=\"feeds_frame_refresh\" value=\"" . FEEDS_FRAME_REFRESH . "\"/>";
1980 print "<param key=\"daemon_refresh_only\" value=\"" . DAEMON_REFRESH_ONLY . "\"/>";
1981
1982 print "<param key=\"on_catchup_show_next_feed\" value=\"" .
1983 get_pref($link, "ON_CATCHUP_SHOW_NEXT_FEED") . "\"/>";
1984
1985 print "<param key=\"hide_read_feeds\" value=\"" .
1986 sprintf("%d", get_pref($link, "HIDE_READ_FEEDS")) . "\"/>";
1987
1988 print "<param key=\"feeds_sort_by_unread\" value=\"" .
1989 sprintf("%d", get_pref($link, "FEEDS_SORT_BY_UNREAD")) . "\"/>";
1990
1991 print "</init-params>";
1992 }
1993
1994 function print_runtime_info($link) {
1995 print "<runtime-info>";
1996 if (ENABLE_UPDATE_DAEMON) {
1997 print "<param key=\"daemon_is_running\" value=\"".
1998 sprintf("%d", file_is_locked("update_daemon.lock")) . "\"/>";
1999 }
2000 print "</runtime-info>";
2001 }
2002
2003 function getSearchSql($search, $match_on) {
2004
2005 $search_query_part = "";
2006
2007 $keywords = split(" ", $search);
2008 $query_keywords = array();
2009
2010 if ($match_on == "both") {
2011
2012 foreach ($keywords as $k) {
2013 array_push($query_keywords, "(UPPER(ttrss_entries.title) LIKE UPPER('%$k%')
2014 OR UPPER(ttrss_entries.content) LIKE UPPER('%$k%'))");
2015 }
2016
2017 $search_query_part = implode("AND", $query_keywords) . " AND ";
2018
2019 } else if ($match_on == "title") {
2020
2021 foreach ($keywords as $k) {
2022 array_push($query_keywords, "(UPPER(ttrss_entries.title) LIKE UPPER('%$k%'))");
2023 }
2024
2025 $search_query_part = implode("AND", $query_keywords) . " AND ";
2026
2027 } else if ($match_on == "content") {
2028
2029 foreach ($keywords as $k) {
2030 array_push($query_keywords, "(UPPER(ttrss_entries.content) LIKE UPPER('%$k%'))");
2031 }
2032 }
2033
2034 $search_query_part = implode("AND", $query_keywords);
2035
2036 return $search_query_part;
2037 }
2038
2039 function queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view, $search, $search_mode, $match_on, $override_order = false) {
2040 if ($search) {
2041
2042 $search_query_part = getSearchSql($search, $match_on);
2043 $search_query_part .= " AND ";
2044
2045 } else {
2046 $search_query_part = "";
2047 }
2048
2049 $view_query_part = "";
2050
2051 if ($view_mode == "adaptive") {
2052 if ($search) {
2053 $view_query_part = " ";
2054 } else if ($feed != -1) {
2055 $unread = getFeedUnread($link, $feed, $cat_view);
2056 if ($unread > 0) {
2057 $view_query_part = " unread = true AND ";
2058 }
2059 }
2060 }
2061
2062 if ($view_mode == "marked") {
2063 $view_query_part = " marked = true AND ";
2064 }
2065
2066 if ($view_mode == "unread") {
2067 $view_query_part = " unread = true AND ";
2068 }
2069
2070 if ($limit > 0) {
2071 $limit_query_part = "LIMIT " . $limit;
2072 }
2073
2074 $vfeed_query_part = "";
2075
2076 // override query strategy and enable feed display when searching globally
2077 if ($search && $search_mode == "all_feeds") {
2078 $query_strategy_part = "ttrss_entries.id > 0";
2079 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2080 } else if (preg_match("/^-?[0-9][0-9]*$/", $feed) == false) {
2081 $query_strategy_part = "ttrss_entries.id > 0";
2082 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
2083 id = feed_id) as feed_title,";
2084 } else if ($feed >= 0 && $search && $search_mode == "this_cat") {
2085
2086 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2087
2088 $tmp_result = false;
2089
2090 if ($cat_view) {
2091 $tmp_result = db_query($link, "SELECT id
2092 FROM ttrss_feeds WHERE cat_id = '$feed'");
2093 } else {
2094 $tmp_result = db_query($link, "SELECT id
2095 FROM ttrss_feeds WHERE cat_id = (SELECT cat_id FROM ttrss_feeds
2096 WHERE id = '$feed') AND id != '$feed'");
2097 }
2098
2099 $cat_siblings = array();
2100
2101 if (db_num_rows($tmp_result) > 0) {
2102 while ($p = db_fetch_assoc($tmp_result)) {
2103 array_push($cat_siblings, "feed_id = " . $p["id"]);
2104 }
2105
2106 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
2107 $feed, implode(" OR ", $cat_siblings));
2108
2109 } else {
2110 $query_strategy_part = "ttrss_entries.id > 0";
2111 }
2112
2113 } else if ($feed >= 0) {
2114
2115 if ($cat_view) {
2116
2117 if ($feed > 0) {
2118 $query_strategy_part = "cat_id = '$feed'";
2119 } else {
2120 $query_strategy_part = "cat_id IS NULL";
2121 }
2122
2123 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2124
2125 } else {
2126 $tmp_result = db_query($link, "SELECT id
2127 FROM ttrss_feeds WHERE parent_feed = '$feed'
2128 ORDER BY cat_id,title");
2129
2130 $parent_ids = array();
2131
2132 if (db_num_rows($tmp_result) > 0) {
2133 while ($p = db_fetch_assoc($tmp_result)) {
2134 array_push($parent_ids, "feed_id = " . $p["id"]);
2135 }
2136
2137 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
2138 $feed, implode(" OR ", $parent_ids));
2139
2140 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2141 } else {
2142 $query_strategy_part = "feed_id = '$feed'";
2143 }
2144 }
2145 } else if ($feed == -1) { // starred virtual feed
2146 $query_strategy_part = "marked = true";
2147 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2148 } else if ($feed <= -10) { // labels
2149 $label_id = -$feed - 11;
2150
2151 $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
2152 WHERE id = '$label_id'");
2153
2154 $query_strategy_part = db_fetch_result($tmp_result, 0, "sql_exp");
2155
2156 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
2157 } else {
2158 $query_strategy_part = "id > 0"; // dumb
2159 }
2160
2161 if (get_pref($link, 'REVERSE_HEADLINES')) {
2162 $order_by = "updated";
2163 } else {
2164 $order_by = "updated DESC";
2165 }
2166
2167 if ($override_order) {
2168 $order_by = $override_order;
2169 }
2170
2171 $feed_title = "";
2172
2173 if ($search && $search_mode == "all_feeds") {
2174 $feed_title = "Global search results ($search)";
2175 } else if ($search && preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
2176 $feed_title = "Tag search results ($search, $feed)";
2177 } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
2178 $feed_title = $feed;
2179 } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) != false && $feed >= 0) {
2180
2181 if ($cat_view) {
2182
2183 if ($feed != 0) {
2184 $result = db_query($link, "SELECT title FROM ttrss_feed_categories
2185 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
2186 $feed_title = db_fetch_result($result, 0, "title");
2187 } else {
2188 $feed_title = "Uncategorized";
2189 }
2190
2191 if ($search) {
2192 $feed_title = "Category search results ($search, $feed_title)";
2193 }
2194
2195 } else {
2196
2197 $result = db_query($link, "SELECT title,site_url,last_error FROM ttrss_feeds
2198 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
2199
2200 $feed_title = db_fetch_result($result, 0, "title");
2201 $feed_site_url = db_fetch_result($result, 0, "site_url");
2202 $last_error = db_fetch_result($result, 0, "last_error");
2203
2204 if ($search) {
2205 $feed_title = "Feed search results ($search, $feed_title)";
2206 }
2207 }
2208
2209 } else if ($feed == -1) {
2210 $feed_title = "Starred articles";
2211 } else if ($feed < -10) {
2212 $label_id = -$feed - 11;
2213 $result = db_query($link, "SELECT description FROM ttrss_labels
2214 WHERE id = '$label_id'");
2215 $feed_title = db_fetch_result($result, 0, "description");
2216
2217 if ($search) {
2218 $feed_title = "Label search results ($search, $feed_title)";
2219 }
2220 } else {
2221 $feed_title = "?";
2222 }
2223
2224 $feed_title = db_unescape_string($feed_title);
2225
2226 if ($feed < -10) error_reporting (0);
2227
2228 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
2229
2230 if ($feed >= 0) {
2231 $feed_kind = "Feeds";
2232 } else {
2233 $feed_kind = "Labels";
2234 }
2235
2236 $content_query_part = "content as content_preview,";
2237
2238 $query = "SELECT
2239 ttrss_entries.id,ttrss_entries.title,
2240 SUBSTRING(updated,1,16) as updated,
2241 unread,feed_id,marked,link,last_read,
2242 SUBSTRING(last_read,1,19) as last_read_noms,
2243 $vfeed_query_part
2244 $content_query_part
2245 SUBSTRING(updated,1,19) as updated_noms
2246 FROM
2247 ttrss_entries,ttrss_user_entries,ttrss_feeds
2248 WHERE
2249 ttrss_feeds.hidden = false AND
2250 ttrss_user_entries.feed_id = ttrss_feeds.id AND
2251 ttrss_user_entries.ref_id = ttrss_entries.id AND
2252 ttrss_user_entries.owner_uid = '".$_SESSION["uid"]."' AND
2253 $search_query_part
2254 $view_query_part
2255 $query_strategy_part ORDER BY $order_by
2256 $limit_query_part";
2257
2258 $result = db_query($link, $query);
2259
2260 if ($_GET["debug"]) print $query;
2261
2262 } else {
2263 // browsing by tag
2264
2265 $feed_kind = "Tags";
2266
2267 $result = db_query($link, "SELECT
2268 ttrss_entries.id as id,title,
2269 SUBSTRING(updated,1,16) as updated,
2270 unread,feed_id,
2271 marked,link,last_read,
2272 SUBSTRING(last_read,1,19) as last_read_noms,
2273 $vfeed_query_part
2274 $content_query_part
2275 SUBSTRING(updated,1,19) as updated_noms
2276 FROM
2277 ttrss_entries,ttrss_user_entries,ttrss_tags
2278 WHERE
2279 ref_id = ttrss_entries.id AND
2280 ttrss_user_entries.owner_uid = '".$_SESSION["uid"]."' AND
2281 post_int_id = int_id AND tag_name = '$feed' AND
2282 $view_query_part
2283 $search_query_part
2284 $query_strategy_part ORDER BY $order_by
2285 $limit_query_part");
2286 }
2287
2288 return array($result, $feed_title, $feed_site_url, $last_error);
2289
2290 }
2291
2292 function generate_syndicated_feed($link, $feed, $is_cat,
2293 $search, $search_mode, $match_on) {
2294
2295 $qfh_ret = queryFeedHeadlines($link, $feed,
2296 30, false, $is_cat, $search, $search_mode, $match_on, "updated DESC");
2297
2298 $result = $qfh_ret[0];
2299 $feed_title = htmlspecialchars($qfh_ret[1]);
2300 $feed_site_url = $qfh_ret[2];
2301 $last_error = $qfh_ret[3];
2302
2303 print "<rss version=\"2.0\">
2304 <channel>
2305 <title>$feed_title</title>
2306 <link>$feed_site_url</link>
2307 <generator>Tiny Tiny RSS v".VERSION."</generator>";
2308
2309 while ($line = db_fetch_assoc($result)) {
2310 print "<item>";
2311 print "<link>" . htmlspecialchars($line["link"]) . "</link>";
2312
2313 $rfc822_date = date('r', strtotime($line["updated"]));
2314
2315 print "<pubDate>$rfc822_date</pubDate>";
2316
2317 print "<title>" .
2318 htmlspecialchars($line["title"]) . "</title>";
2319
2320 print "<description>" .
2321 htmlspecialchars($line["content_preview"]) . "</description>";
2322
2323 print "</item>";
2324 }
2325
2326 print "</channel></rss>";
2327
2328 }
2329
2330 function getCategoryTitle($link, $cat_id) {
2331
2332 $result = db_query($link, "SELECT title FROM ttrss_feed_categories WHERE
2333 id = '$cat_id'");
2334
2335 if (db_num_rows($result) == 1) {
2336 return db_fetch_result($result, 0, "title");
2337 } else {
2338 return "Uncategorized";
2339 }
2340 }
2341
2342 function sanitize_rss($str) {
2343 $res = "";
2344
2345 $res = preg_replace('/<script.*?>/i',
2346 "<p class=\"scriptWarn\">", $str);
2347
2348 $res = preg_replace('/<\/script>/i',
2349 "</p>", $res);
2350
2351 return $res;
2352 }
2353 ?>