yacy_search_server/htroot/api/util/ynetSearch.java
2009-02-17 09:12:47 +00:00

63 lines
2.3 KiB
Java
Executable File

import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.util.Iterator;
import java.util.Map;
import java.util.Scanner;
import de.anomic.http.httpRequestHeader;
import de.anomic.plasma.plasmaSwitchboard;
import de.anomic.server.serverObjects;
import de.anomic.server.serverSwitch;
public class ynetSearch {
public static serverObjects respond(final httpRequestHeader header, final serverObjects post, final serverSwitch<?> env) {
final plasmaSwitchboard switchboard = (plasmaSwitchboard) env;
final boolean isAdmin=switchboard.verifyAuthentication(header, true);
final serverObjects prop = new serverObjects();
if(post != null){
if(!isAdmin){
// force authentication if desired
if(post.containsKey("login")){
prop.put("AUTHENTICATE","admin log-in");
}
return prop;
} else {
InputStream is = null;
try {
String searchaddress = post.get("url");
if (!searchaddress.startsWith("http://")) {
// a relative path .. this addresses the local peer
searchaddress = "http://" + switchboard.webIndex.seedDB.mySeed().getPublicAddress() + (searchaddress.startsWith("/") ? "" : "/") + searchaddress;
}
post.remove("url");
post.remove("login");
final Iterator <Map.Entry<String, String>> it = post.entrySet().iterator();
String s = searchaddress;
Map.Entry<String, String> k;
while(it.hasNext()) {
k = it.next();
s = s + "&" + k.getKey() + "=" + k.getValue();
}
// final String s = searchaddress+"&search="+post.get("search")+"&maximumRecords="+post.get("maximumRecords")+"&startRecord="+post.get("startRecord");
final URL url = new URL(s);
is = url.openStream();
final String httpout = new Scanner(is).useDelimiter( "\\Z" ).next();
prop.put("http", httpout);
}
catch ( final Exception e ) {
prop.put("url", "error!");
}
finally {
if ( is != null )
try { is.close(); } catch ( final IOException e ) { }
}
}
}
return prop;
}
}