You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
2.1 KiB
57 lines
2.1 KiB
|
|
import java.io.File;
|
|
import java.util.List;
|
|
|
|
import net.yacy.cora.protocol.RequestHeader;
|
|
import net.yacy.data.ListManager;
|
|
import net.yacy.kelondro.util.FileUtils;
|
|
import net.yacy.server.serverObjects;
|
|
import net.yacy.server.serverSwitch;
|
|
|
|
public class blacklists {
|
|
|
|
public static serverObjects respond(@SuppressWarnings("unused") final RequestHeader header, final serverObjects post, @SuppressWarnings("unused") final serverSwitch env) {
|
|
final serverObjects prop = new serverObjects();
|
|
|
|
ListManager.listsPath = new File(ListManager.switchboard.getDataPath(),ListManager.switchboard.getConfig("listManager.listsPath", "DATA/LISTS"));
|
|
final List<String> dirlist = FileUtils.getDirListing(ListManager.listsPath);
|
|
int blacklistCount = 0;
|
|
|
|
final String blackListName = (post == null) ? "" : post.get("listname", "");
|
|
|
|
if (dirlist != null) {
|
|
for (final String element : dirlist) {
|
|
if ("".equals(blackListName) || element.equals(blackListName)) {
|
|
prop.putXML("lists_" + blacklistCount + "_name", element);
|
|
|
|
if (ListManager.listSetContains("BlackLists.Shared", element)) {
|
|
|
|
final List<String> list = FileUtils.getListArray(new File(ListManager.listsPath, element));
|
|
|
|
int count=0;
|
|
for (final String entry : list){
|
|
|
|
if (entry.isEmpty()) {
|
|
continue;
|
|
}
|
|
if (entry.charAt(0) == '#') {
|
|
continue;
|
|
}
|
|
|
|
prop.putXML("lists_" + blacklistCount + "_items_" + count + "_item", entry);
|
|
count++;
|
|
}
|
|
prop.put("lists_" + blacklistCount + "_items", count);
|
|
blacklistCount++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
prop.put("lists", blacklistCount);
|
|
|
|
// return rewrite properties
|
|
return prop;
|
|
}
|
|
|
|
}
|