yacy_search_server/htroot/sharedBlacklist_p.java

287 lines
11 KiB
Java
Raw Normal View History

// sharedBlacklist_p.java
// -----------------------
// part of the AnomicHTTPProxy
// (C) by Michael Peter Christen; mc@anomic.de
// first published on http://www.anomic.de
// Frankfurt, Germany, 2004
//
// This File is contributed by Alexander Schier
//
// $LastChangedDate$
// $LastChangedRevision$
// $LastChangedBy$
//
// 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
//
// Using this software in any meaning (reading, learning, copying, compiling,
// running) means that you agree that the Author(s) is (are) not responsible
// for cost, loss of data or any harm that may be caused directly or indirectly
// by usage of this softare or this documentation. The usage of this software
// is on your own risk. The installation and usage (starting/running) of this
// software may allow other people or application to access your computer and
// any attached devices and is highly dependent on the configuration of the
// software which must be done by the user of the software; the author(s) is
// (are) also not responsible for proper configuration and usage of the
// software, even if provoked by documentation provided together with
// the software.
//
// Any changes to this file according to the GPL as documented in the file
// gpl.txt aside this file in the shipment you received can be done to the
// lines that follows this copyright notice here, but changes must not be
// done inside the copyright notive above. A re-distribution must contain
// the intact and unchanged copyright notice.
// Contributions and changes to the program code must be marked as such.
// You must compile this file with
// javac -classpath .:../Classes Blacklist_p.java
// if the shell's current path is HTROOT
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import de.anomic.net.URL;
*) Asynchronous queuing of crawl job URLs (stackCrawl) various checks like the blacklist check or the robots.txt disallow check are now done by a separate thread to unburden the indexer thread(s) TODO: maybe we have to introduce a threadpool here if it turn out that this single thread is a bottleneck because of the time consuming robots.txt downloads *) improved index transfer The index selection and transmission is done in parallel now to improve index transfer performance. TODO: maybe we could speed up performance by unsing multiple transmission threads in parallel instead of only a single one. *) gzip encoded post requests it is now configureable if a gzip encoded post request should be send on intex transfer/distribution *) storage Peer (very experimentell and not optimized yet) Now it's possible to send the result of the yacy indexer thread to a remote peer istead of storing the indexed words locally. This could be done by setting the property "storagePeerHash" in the yacy config file - Please note that if the index transfer fails, the index ist stored locally. - TODO: currently this index transfer is done by the indexer thread. To seedup the indexer a) this transmission should be done in parallel and b) multiple chunks should be bundled and transfered together *) general performance improvements - better memory cleanup after http request processing has finished - replacing some string concatenations with stringBuffers - replacing BufferedInputStreams with serverByteBuffer - replacing vectors with arraylists wherever possible - replacing hashtables with hashmaps wherever possible This was done because function calls to verctor or hashtable functions take 3 time longer than calls to functions of arraylists or hashmaps. TODO: we should take a look on the class serverObject which is inherited from hashmap Do we realy need a synchronization for this class? TODO: replace arraylists with linkedLists if random access to the list elements is not needed *) Robots Parser supports if-modified-since downloads now If the downloaded robots.txt file is older than 7 days the robots parser tries to download the robots.txt with the if-modified-since header to avoid unnecessary downloads if the file was not changed. Additionally the ETag header is used to detect changes. *) Crawler: better handling of unsupported mimeTypes + FileExtension *) Bugfix: plasmaWordIndexEntity was not closed correctly in - query.java - plasmaswitchboard.java *) function minimizeUrlDB added to yacy.java this function tests the current urlHashDB for unused urls ATTENTION: please don't use this function at the moment because it causes the wordIndexDB to flush all words into the word directory! git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@853 6c8d7289-2bf4-0310-a012-ef5d649a1542
2005-10-05 12:45:33 +02:00
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.HashSet;
import de.anomic.data.listManager;
import de.anomic.http.httpHeader;
import de.anomic.http.httpc;
import de.anomic.plasma.plasmaSwitchboard;
import de.anomic.server.serverCore;
import de.anomic.server.serverObjects;
import de.anomic.server.serverSwitch;
import de.anomic.yacy.yacyCore;
import de.anomic.yacy.yacySeed;
public class sharedBlacklist_p {
public static serverObjects respond(httpHeader header, serverObjects post, serverSwitch env) {
// return variable that accumulates replacements
serverObjects prop = new serverObjects();
plasmaSwitchboard switchboard = (plasmaSwitchboard) env;
File listsPath = new File(switchboard.getRootPath(), env.getConfig("listsPath", "DATA/LISTS"));
String filename = "";
String line = "";
String out = "";
HashSet Blacklist = new HashSet();
*) Asynchronous queuing of crawl job URLs (stackCrawl) various checks like the blacklist check or the robots.txt disallow check are now done by a separate thread to unburden the indexer thread(s) TODO: maybe we have to introduce a threadpool here if it turn out that this single thread is a bottleneck because of the time consuming robots.txt downloads *) improved index transfer The index selection and transmission is done in parallel now to improve index transfer performance. TODO: maybe we could speed up performance by unsing multiple transmission threads in parallel instead of only a single one. *) gzip encoded post requests it is now configureable if a gzip encoded post request should be send on intex transfer/distribution *) storage Peer (very experimentell and not optimized yet) Now it's possible to send the result of the yacy indexer thread to a remote peer istead of storing the indexed words locally. This could be done by setting the property "storagePeerHash" in the yacy config file - Please note that if the index transfer fails, the index ist stored locally. - TODO: currently this index transfer is done by the indexer thread. To seedup the indexer a) this transmission should be done in parallel and b) multiple chunks should be bundled and transfered together *) general performance improvements - better memory cleanup after http request processing has finished - replacing some string concatenations with stringBuffers - replacing BufferedInputStreams with serverByteBuffer - replacing vectors with arraylists wherever possible - replacing hashtables with hashmaps wherever possible This was done because function calls to verctor or hashtable functions take 3 time longer than calls to functions of arraylists or hashmaps. TODO: we should take a look on the class serverObject which is inherited from hashmap Do we realy need a synchronization for this class? TODO: replace arraylists with linkedLists if random access to the list elements is not needed *) Robots Parser supports if-modified-since downloads now If the downloaded robots.txt file is older than 7 days the robots parser tries to download the robots.txt with the if-modified-since header to avoid unnecessary downloads if the file was not changed. Additionally the ETag header is used to detect changes. *) Crawler: better handling of unsupported mimeTypes + FileExtension *) Bugfix: plasmaWordIndexEntity was not closed correctly in - query.java - plasmaswitchboard.java *) function minimizeUrlDB added to yacy.java this function tests the current urlHashDB for unused urls ATTENTION: please don't use this function at the moment because it causes the wordIndexDB to flush all words into the word directory! git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@853 6c8d7289-2bf4-0310-a012-ef5d649a1542
2005-10-05 12:45:33 +02:00
ArrayList otherBlacklist = new ArrayList();
int num = 0;
int i = 0; //loop-var
int count = 0;
String IP = "127.0.0.1"; //should be replaced later
String Port = "8080"; //aua!
String Name = "";
String Hash = "";
String address = "";
if( post != null && post.containsKey("filename") ){
filename = (String)post.get("filename");
}else{
filename = "shared.black";
}
BufferedReader br = null;
try{
//Read the List
br = new BufferedReader(new InputStreamReader(new FileInputStream(new File(listsPath, filename))));
while((line = br.readLine()) != null){
if(! (line.startsWith("#") || line.equals("")) ){
Blacklist.add(line);
out += line + serverCore.crlfString;
}
}
br.close();
}catch(IOException e){}
finally {
if (br!=null) try{br.close(); br=null;}catch(Exception e){}
}
prop.put("page", 0); //checkbox list
if( post != null && post.containsKey("hash") ){ //Step 1: retrieve the Items
Hash = (String) post.get("hash");
prop.put("status", 3);//YaCy-Peer not found
prop.put("status_name", Name);
yacySeed seed;
if( yacyCore.seedDB != null ){ //no nullpointer error..
Enumeration e = yacyCore.seedDB.seedsConnected(true, false, null);
while (e.hasMoreElements()) {
seed = (yacySeed) e.nextElement();
if (seed != null && seed.hash.equals(Hash) ) {
IP = seed.get(yacySeed.IP, "127.0.0.1");
Port = seed.get(yacySeed.PORT, "8080");
Name = seed.get(yacySeed.NAME, "<" + IP + ":" + Port + ">");
prop.put("status", 0);//nothing
}else{
//status = "No Seed found"; //wrong? The Name not known?
}
}
}
//DEBUG
//IP = "217.234.127.107";
//Port = "8080";
//Name = "RootServer";
//Make Adresse
address = "http://" + IP + ":" + Port + "/yacy/list.html?col=black";
try {
httpHeader reqHeader = new httpHeader();
reqHeader.put(httpHeader.PRAGMA,"no-cache");
reqHeader.put(httpHeader.CACHE_CONTROL,"no-cache");
// get List
URL u = new URL(address);
otherBlacklist = httpc.wget(u, u.getHost(), 12000, null, null, switchboard.remoteProxyConfig,reqHeader);
} catch (Exception e) {}
//Make HTML-Optionlist with retrieved items
for(i = 0; i <= (otherBlacklist.size() -1); i++){
String tmp = (String) otherBlacklist.get(i);
if( !Blacklist.contains(tmp) && (!tmp.equals("")) ){
//newBlacklist.add(tmp);
count++;
prop.put("page_urllist_"+(count-1)+"_name", Name);
prop.put("page_urllist_"+(count-1)+"_url", tmp);
prop.put("page_urllist_"+(count-1)+"_count", count);
}
}
prop.put("page_urllist", (count));
//write the list
try{
BufferedWriter bw = new BufferedWriter(new PrintWriter(new FileWriter(new File(listsPath, filename))));
bw.write(out);
bw.close();
}catch(IOException e){}
}else if( post != null && post.containsKey("url") ){
//load from URL
address = (String)post.get("url");
prop.put("status", 4);
prop.put("status_address", address);
//Name = "&nbsp;"; //No Name
Name = address;
try {
URL u = new URL(address);
otherBlacklist = httpc.wget(u, u.getHost(), 6000, null, null, switchboard.remoteProxyConfig); //get List
} catch (Exception e) {}
prop.put("status", 0); //TODO: check if the wget failed...
//Make HTML-Optionlist with retrieved items
for(i = 0; i <= (otherBlacklist.size() -1); i++){
String tmp = (String) otherBlacklist.get(i);
if( !Blacklist.contains(tmp) && (!tmp.equals("")) && (!tmp.startsWith("#")) ){ //This List may contain comments.
//newBlacklist.add(tmp);
count++;
prop.put("page_urllist_"+(count-1)+"_name", Name);
prop.put("page_urllist_"+(count-1)+"_url", tmp);
prop.put("page_urllist_"+(count-1)+"_count", count);
}
}
prop.put("page_urllist", (count));
}else if( post != null && post.containsKey("file") ){
try{
//Read the List
br = new BufferedReader(new InputStreamReader(new FileInputStream( (String)post.get("file") )));
while((line = br.readLine()) != null){
if(! (line.startsWith("#") || line.equals("")) ){
otherBlacklist.add(line);
}
}
br.close();
}catch(IOException e){
prop.put("status", 2); //File Error
} finally {
if (br != null) try {br.close(); br = null; } catch (Exception e){}
}
Name = (String)post.get("file");
//Make HTML-Optionlist with retrieved items
for(i = 0; i <= (otherBlacklist.size() -1); i++){
String tmp = (String) otherBlacklist.get(i);
if( !Blacklist.contains(tmp) && (!tmp.equals("")) && (!tmp.startsWith("#")) ){ //This List may contain comments.
//newBlacklist.add(tmp);
count++;
prop.put("page_urllist_"+(count-1)+"_name", Name);
prop.put("page_urllist_"+(count-1)+"_url", tmp);
prop.put("page_urllist_"+(count-1)+"_count", count);
}
}
prop.put("page_urllist", (count));
}else if( post != null && post.containsKey("add") ){ //Step 2: Add the Items
prop.put("page", 1); //result page
num = Integer.parseInt( (String)post.get("num") );
prop.put("status", 1); //list of added Entries
count = 0;//couter of added entries
for(i=1;i <= num; i++){ //count/num starts with 1!
if( post.containsKey( String.valueOf(i) ) ){
String newItem = (String)post.get( String.valueOf(i) );
//This should not be needed...
if ( newItem.startsWith("http://") ){
newItem = newItem.substring(7);
}
// separate the newItem into host and path
int pos = newItem.indexOf("/");
if (pos < 0) {
// add default empty path pattern
pos = newItem.length();
newItem = newItem + "/.*";
}
out += newItem+"\n";
prop.put("status_list_"+count+"_entry", newItem);
count++;
if (plasmaSwitchboard.urlBlacklist != null) {
String supportedBlacklistTypesStr = env.getConfig("BlackLists.types", "");
String[] supportedBlacklistTypes = supportedBlacklistTypesStr.split(",");
for (int blTypes=0; blTypes < supportedBlacklistTypes.length; blTypes++) {
if (listManager.ListInListslist(supportedBlacklistTypes[blTypes] + ".BlackLists",filename)) {
plasmaSwitchboard.urlBlacklist.add(supportedBlacklistTypes[blTypes],newItem.substring(0, pos), newItem.substring(pos + 1));
}
}
}
//write the list
try{
BufferedWriter bw = new BufferedWriter(new PrintWriter(new FileWriter(new File(listsPath, filename))));
bw.write(out);
bw.close();
}catch(IOException e){}
}else{
}
}
prop.put("status_list", count);
}else{
prop.put("status", 5);//Wrong Invokation
}
prop.put("filename", filename);
prop.put("page_name", Name);
prop.put("num", String.valueOf(count));
return prop;
}
}