http://localhost:8080/xml/feed.rss?channel=PEERNEWS to be extended and integrated in interface ... git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4738 6c8d7289-2bf4-0310-a012-ef5d649a1542pull/1/head
parent
6495227ad6
commit
bac38cfa18
@ -0,0 +1,83 @@
|
||||
// feed.java
|
||||
// (C) 2008 by Michael Peter Christen; mc@yacy.net, Frankfurt a. M., Germany
|
||||
// first published 25.04.2008 on http://yacy.net
|
||||
//
|
||||
// This is a part of YaCy, a peer-to-peer based web search engine
|
||||
//
|
||||
// $LastChangedDate: 2006-04-02 22:40:07 +0200 (So, 02 Apr 2006) $
|
||||
// $LastChangedRevision: 1986 $
|
||||
// $LastChangedBy: orbiter $
|
||||
//
|
||||
// LICENSE
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation; either version 2 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
package xml;
|
||||
|
||||
import de.anomic.http.httpHeader;
|
||||
import de.anomic.server.serverObjects;
|
||||
import de.anomic.server.serverSwitch;
|
||||
import de.anomic.xml.RSSFeed;
|
||||
import de.anomic.xml.RSSMessage;
|
||||
|
||||
public class feed {
|
||||
|
||||
public static serverObjects respond(httpHeader header, serverObjects post, serverSwitch<?> env) {
|
||||
//plasmaSwitchboard sb = (plasmaSwitchboard) env;
|
||||
|
||||
// insert default values
|
||||
serverObjects prop = new serverObjects();
|
||||
prop.put("channel_title", "");
|
||||
prop.put("channel_description", "");
|
||||
prop.put("channel_pubDate", "");
|
||||
prop.put("item", "0");
|
||||
|
||||
if ((post == null) || (env == null)) return prop;
|
||||
//boolean authorized = sb.adminAuthenticated(header) >= 2;
|
||||
|
||||
String channelName = post.get("channel");
|
||||
if (channelName == null) return prop;
|
||||
|
||||
RSSFeed feed = RSSFeed.channels(channelName);
|
||||
if ((feed == null) || (feed.size() == 0)) return prop;
|
||||
int count = post.getInt("count", 10);
|
||||
|
||||
RSSMessage message = feed.getChannel();
|
||||
if (message != null) {
|
||||
prop.put("channel_title", message.getTitle());
|
||||
prop.put("channel_description", message.getDescription());
|
||||
prop.put("channel_pubDate", message.getPubDate());
|
||||
}
|
||||
int c = 0;
|
||||
while ((count > 0) && (feed.size() > 0)) {
|
||||
message = feed.pollMessage();
|
||||
if (message == null) continue;
|
||||
|
||||
// create RSS entry
|
||||
prop.putHTML("item_" + c + "_title", message.getTitle());
|
||||
prop.putHTML("item_" + c + "_description", message.getDescription());
|
||||
prop.putHTML("item_" + c + "_link", message.getLink());
|
||||
prop.put("item_" + c + "_pubDate", message.getPubDate());
|
||||
prop.put("item_" + c + "_guid", message.getGuid());
|
||||
c++;
|
||||
count--;
|
||||
}
|
||||
prop.put("item", c);
|
||||
|
||||
// return rewrite properties
|
||||
return prop;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0"?>
|
||||
<rss>
|
||||
|
||||
<!-- rss standard channel -->
|
||||
<channel>
|
||||
<title>#[channel_title]#</title>
|
||||
<description>#[channel_description]#</description>
|
||||
<pubDate>#[channel_pubDate]#</pubDate>
|
||||
|
||||
<!-- messages -->
|
||||
#{item}#
|
||||
<item>
|
||||
<title>#[title]#</title>
|
||||
<link>#[link]#</link>
|
||||
<description>#[description]#</description>
|
||||
<pubDate>#[pubDate]#</pubDate>
|
||||
<guid isPermaLink="false">#[guid]#</guid>
|
||||
</item>
|
||||
#{/item}#
|
||||
</channel>
|
||||
</rss>
|
Loading…
Reference in new issue