Skip to content

Commit

Permalink
fix for channel authorization
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@7803 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed Jun 26, 2011
1 parent 267290a commit 9ebc75d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 16 deletions.
23 changes: 13 additions & 10 deletions htroot/api/feed.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,13 @@
import net.yacy.cora.document.RSSFeed;
import net.yacy.cora.document.RSSMessage;
import net.yacy.cora.protocol.RequestHeader;

import de.anomic.search.Switchboard;
import de.anomic.server.serverObjects;
import de.anomic.server.serverSwitch;
import de.anomic.yacy.yacyChannel;

public class feed {

public static serverObjects respond(final RequestHeader header, final serverObjects post, final serverSwitch env) {
final Switchboard sb = (Switchboard) env;

Expand All @@ -32,17 +31,21 @@ public static serverObjects respond(final RequestHeader header, final serverObje

int messageCount = 0;
int messageMaxCount = Math.min(post.getInt("count", 100), 1000);
channelIteration: for (final String channel: channels) {

channelIteration: for (final String channelName: channels) {
// prevent that unauthorized access to this servlet get results from private data
if ((!authorized) && (yacyChannel.privateChannels.contains(channel))) continue channelIteration; // allow only public channels if not authorized

if ("TEST".equals(channel)) {
final yacyChannel channel = yacyChannel.valueOf(channelName);
if (channel == null) continue channelIteration;

if (!authorized && yacyChannel.privateChannels.contains(channel)) continue channelIteration; // allow only public channels if not authorized

if ("TEST".equals(channelName)) {
// for interface testing return at least one single result
prop.putXML("channel_title", "YaCy News Testchannel");
prop.putXML("channel_description", "");
prop.put("channel_pubDate", (new Date()).toString());
prop.putXML("item_" + messageCount + "_title", channel + ": " + "YaCy Test Entry " + (new Date()).toString());
prop.putXML("item_" + messageCount + "_title", channelName + ": " + "YaCy Test Entry " + (new Date()).toString());
prop.putXML("item_" + messageCount + "_description", "abcdefg");
prop.putXML("item_" + messageCount + "_link", "http://yacy.net");
prop.put("item_" + messageCount + "_pubDate", (new Date()).toString());
Expand All @@ -51,7 +54,7 @@ public static serverObjects respond(final RequestHeader header, final serverObje
messageMaxCount--;
continue channelIteration;
}

// read the channel
final RSSFeed feed = yacyChannel.channels(channel);
if (feed == null || feed.isEmpty()) continue channelIteration;
Expand All @@ -67,7 +70,7 @@ public static serverObjects respond(final RequestHeader header, final serverObje
if (message == null) continue;

// create RSS entry
prop.putXML("item_" + messageCount + "_title", channel + ": " + message.getTitle());
prop.putXML("item_" + messageCount + "_title", channelName + ": " + message.getTitle());
prop.putXML("item_" + messageCount + "_description", message.getDescription());
prop.putXML("item_" + messageCount + "_link", message.getLink());
prop.put("item_" + messageCount + "_pubDate", message.getPubDate());
Expand All @@ -82,5 +85,5 @@ public static serverObjects respond(final RequestHeader header, final serverObje
// return rewrite properties
return prop;
}

}
6 changes: 0 additions & 6 deletions source/de/anomic/yacy/yacyChannel.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,6 @@ public enum yacyChannel {
* the following static channels object is used to organize a storage array for RSS feeds
*/
private static final ConcurrentMap<yacyChannel, RSSFeed> channels = new ConcurrentHashMap<yacyChannel, RSSFeed>();
public static RSSFeed channels(final String channelName) {
for (final yacyChannel channel : yacyChannel.values()) {
if (channel.name().equals(channelName)) return channels(channel);
}
return null;
}

public static RSSFeed channels(final yacyChannel channel) {
RSSFeed feed = channels.get(channel);
Expand Down

0 comments on commit 9ebc75d

Please sign in to comment.