yacy_search_server/htroot/goto_p.java

75 lines
2.5 KiB
Java
Raw Normal View History

// goto_p.java
// -----------------------
// part of YaCy
// (C) by Michael Peter Christen; mc@yacy.net
// first published on http://yacy.net
//
// $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
// You must compile this file with
// javac -classpath .:../Classes goto_p.java
// if the shell's current path is HTROOT
import net.yacy.cora.protocol.RequestHeader;
import net.yacy.peers.Seed;
import net.yacy.search.Switchboard;
import net.yacy.server.serverObjects;
import net.yacy.server.serverSwitch;
/**
* forwards caller/browser to remote peer
*/
public class goto_p {
/**
* url parameter
*
* hash= of remote peer
* path= path part to forward to
*/
public static serverObjects respond(@SuppressWarnings("unused") final RequestHeader header, final serverObjects post, final serverSwitch env) {
final Switchboard sb = (Switchboard) env;
final serverObjects prop = new serverObjects();
String hash = null;
if (post != null) {
hash = post.get("hash", null); // get peers hash
}
if (hash != null) {
Seed seed = sb.peers.getConnected(hash);
if (seed != null) {
2014-10-08 12:38:56 +02:00
String peersUrl = seed.getPublicAddress(seed.getIP());
if (peersUrl != null) {
String path = post.get("path", "/");
if (!path.startsWith("/")) path = "/" + path;
prop.put(serverObjects.ACTION_LOCATION, "http://" + peersUrl + path); // redirect command
}
} else {
prop.put("msg", "peer not available");
}
} else {
prop.put("msg", "parameter missing");
}
return prop;
}
}