Skip to content

Commit

Permalink
*) added servlet which returns all shared blacklists of a peer withou…
Browse files Browse the repository at this point in the history
…t information about which part of YaCy (crawler, proxy, ...) blacklist is activated for (to be used for better online import)

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5306 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
low012 committed Oct 27, 2008
1 parent baae3d9 commit 7bac479
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 0 deletions.
70 changes: 70 additions & 0 deletions htroot/xml/blacklists.java
@@ -0,0 +1,70 @@
// /xml/blacklists.java
// -------------------------------
// based on /xml/blacklists_p.java (C) 2006 Alexander Schier, changes by Marc Nause
// part of YaCy
//
// 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 US


package xml;
import java.io.File;
import java.util.List;

import de.anomic.data.listManager;
import de.anomic.http.httpRequestHeader;
import de.anomic.server.serverObjects;
import de.anomic.server.serverSwitch;

public class blacklists {

public static serverObjects respond(final httpRequestHeader header, final serverObjects post, final serverSwitch<?> env) {
final serverObjects prop = new serverObjects();

listManager.listsPath = new File(listManager.switchboard.getRootPath(),listManager.switchboard.getConfig("listManager.listsPath", "DATA/LISTS"));
final List<String> dirlist = listManager.getDirListing(listManager.listsPath);
int blacklistCount=0;

List<String> list;
int count;
if (dirlist != null) {
for (String element : dirlist) {
prop.putXML("lists_" + blacklistCount + "_name", element);

if (listManager.listSetContains("BlackLists.Shared", element)) {

list = listManager.getListArray(new File(listManager.listsPath, element));

count=0;
for (int j=0;j<list.size();++j){
final String nextEntry = list.get(j);

if (nextEntry.length() == 0) continue;
if (nextEntry.startsWith("#")) continue;

prop.putXML("lists_" + blacklistCount + "_items_" + count + "_item", nextEntry);
count++;
}
prop.put("lists_" + blacklistCount + "_items", count);
blacklistCount++;
}
}
}
prop.put("lists", blacklistCount);

// return rewrite properties
return prop;
}

}
10 changes: 10 additions & 0 deletions htroot/xml/blacklists.xml
@@ -0,0 +1,10 @@
<?xml version="1.0"?>
<blacklists>
#{lists}#
<list name="#[name]#">
#{items}#
<item>#[item]#</item>
#{/items}#
</list>
#{/lists}#
</blacklists>

0 comments on commit 7bac479

Please sign in to comment.