yacy_search_server/htroot/interaction/GetRDF.java

102 lines
2.7 KiB
Java
Raw Normal View History

2012-03-12 11:45:27 +01:00
package interaction;
//ViewLog_p.java
2012-03-12 11:45:27 +01:00
//-----------------------
//part of the AnomicHTTPD caching proxy
//(C) by Michael Peter Christen; mc@yacy.net
//first published on http://www.anomic.de
//Frankfurt, Germany, 2004
//
//This File is contributed by Alexander Schier
//last major change: 14.12.2004
//
//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 ViewLog_p.java
//if the shell's current path is HTROOT
import java.io.ByteArrayOutputStream;
import java.io.UnsupportedEncodingException;
2012-03-12 11:45:27 +01:00
import net.yacy.cora.document.UTF8;
import net.yacy.cora.lod.JenaTripleStore;
2012-03-12 11:45:27 +01:00
import net.yacy.cora.protocol.RequestHeader;
import net.yacy.interaction.Interaction;
2012-09-21 15:48:16 +02:00
import net.yacy.server.serverObjects;
import net.yacy.server.serverSwitch;
import com.hp.hpl.jena.rdf.model.Model;
2012-03-12 11:45:27 +01:00
public class GetRDF {
public static serverObjects respond(final RequestHeader header, final serverObjects post, @SuppressWarnings("unused") final serverSwitch env) {
2012-03-12 11:45:27 +01:00
final serverObjects prop = new serverObjects();
Boolean global = false;
2012-03-12 11:45:27 +01:00
if(post != null){
2012-03-12 11:45:27 +01:00
global = post.containsKey("global");
2012-03-12 11:45:27 +01:00
}
2012-03-12 11:45:27 +01:00
if (global) {
2012-03-12 11:45:27 +01:00
ByteArrayOutputStream fout;
2012-03-12 11:45:27 +01:00
fout = new ByteArrayOutputStream();
JenaTripleStore.model.write(fout);
try {
prop.put("resultXML", fout.toString(UTF8.charset.name()));
} catch (UnsupportedEncodingException e) {
}
2012-03-12 11:45:27 +01:00
} else {
Model tmp = JenaTripleStore.privatestorage.get(Interaction.GetLoggedOnUser(header));
2012-03-12 11:45:27 +01:00
if (tmp != null) {
ByteArrayOutputStream fout;
fout = new ByteArrayOutputStream();
2012-03-12 11:45:27 +01:00
tmp.write(fout);
try {
prop.put("resultXML", fout.toString(UTF8.charset.name()));
} catch (UnsupportedEncodingException e) {
}
2012-03-12 11:45:27 +01:00
} else {
2012-03-12 11:45:27 +01:00
prop.put("resultXML", "");
}
}
2012-03-12 11:45:27 +01:00
return prop;
}
}