interaction: add global variable store

Conflicts:
	source/net/yacy/interaction/Interaction.java
pull/1/head
cominch 13 years ago committed by Michael Peter Christen
parent 8e80894812
commit 4e4e7a99f8

@ -12,7 +12,7 @@
<body id="index"> <body id="index">
<p> <p>
JavaScript example: Permanent storage of value JavaScript example: Permanent storage of value, assigned to logged in user account
</p> </p>
<br/> <br/>
@ -50,6 +50,36 @@
</script> </script>
</p>
<br/>
<br/>
<p>
JavaScript example: Load value from global RDF store
</p>
<br/>
<br/>
<p>
<input id="output" type="text" name="output" value="--"/>
<input type="submit" name="sub" onclick="storevalueglobal ('http://virtual.x/global/entry1', 'http://virtual.x/global/hasvalue', document.getElementById('output').value)"/>
l
<script type="text/javascript" charset="utf-8">
var oldvalue = loadvalueglobal ('http://virtual.x/global/entry1', 'http://virtual.x/global/hasvalue');
document.getElementById('output').value = oldvalue;
</script>
</p> </p>

@ -32,6 +32,7 @@ package interaction;
import net.yacy.cora.protocol.HeaderFramework; import net.yacy.cora.protocol.HeaderFramework;
import net.yacy.cora.protocol.RequestHeader; import net.yacy.cora.protocol.RequestHeader;
import net.yacy.interaction.Interaction; import net.yacy.interaction.Interaction;
import net.yacy.kelondro.logging.Log;
import net.yacy.search.Switchboard; import net.yacy.search.Switchboard;
import de.anomic.data.UserDB; import de.anomic.data.UserDB;
import de.anomic.server.serverObjects; import de.anomic.server.serverObjects;
@ -99,7 +100,8 @@ public class Triple {
String s = ""; String s = "";
String p = ""; String p = "";
String o = ""; String o = "";
String from = "";
Boolean global = false;
if(post != null){ if(post != null){
@ -118,20 +120,18 @@ public class Triple {
if(post.containsKey("o")){ if(post.containsKey("o")){
o = post.get("o"); o = post.get("o");
} }
if(post.containsKey("from")){ global = post.containsKey("global");
from = post.get("from");
}
} }
if (post.containsKey("load")) { if (post.containsKey("load")) {
o = Interaction.TripleGet(s, p, username); o = Interaction.TripleGet(s, p, global ? "" : username);
} else { } else {
Interaction.Triple(url, s, p, o, username); Interaction.Triple(url, s, p, o, global ? "" : username);
} }
prop.put("result", o); prop.put("result", o);

@ -42,6 +42,15 @@ function storevalue (s, p, o) {
} }
function storevalueglobal (s, p, o) {
$.getJSON('/currentyacypeer/interaction/Triple.json?global=true&url='+document.location.href+'&s='+s+'&p='+p+'&o='+o, function(data) {
});
}
function loadvalue (s, p) { function loadvalue (s, p) {
var res = {result: ""}; var res = {result: ""};
@ -55,6 +64,23 @@ function loadvalue (s, p) {
}); });
return res.result;
}
function loadvalueglobal (s, p) {
var res = {result: ""};
$.ajaxSetup({async: false});
$.getJSON('/currentyacypeer/interaction/Triple.json?global=true&s='+s+'&p='+p+'&load=true', function (data) {
res = data;
});
return res.result; return res.result;
} }

@ -448,22 +448,53 @@ public static String Contribution(String url, String comment, String from, Strin
return ""; return "";
} }
public static String Triple(String url, String s, String p, String o) {
return Triple (url, s, p, o, "");
}
public static String Triple(String url, String s, String p, String o, String username) {
final Switchboard sb = Switchboard.getSwitchboard();
if (username != "") {
username = "/"+username;
}
Resource r = TripleStore.model.getResource(s+username);
Property pr = TripleStore.model.getProperty(p);
TripleStore.model.removeAll(r, pr, (Resource) null);
r.addProperty(pr, o);
Log.logInfo ("TRIPLESTORE", "PUT "+username+" / "+s+" - "+p+" - "+o);
public static String Triple(String url, String s, String p, String o, String from) {
Resource r = TripleStore.model.getResource(s+"/"+from);
Property pr = TripleStore.model.getProperty(p);
TripleStore.model.removeAll(r, pr, (Resource) null);
r.addProperty(pr, o);
Log.logInfo ("TRIPLESTORE", "PUT "+from+" / "+s+" - "+p+" - "+o);
return ""; return "";
} }
public static String TripleGet(String s, String p, String username) { public static String TripleGet(String s, String p) {
Resource r = TripleStore.model.getResource(s+"/"+username); return TripleGet (s, p, "");
}
public static String TripleGet(String s, String p, String username) {
final Switchboard sb = Switchboard.getSwitchboard();
if (username != "") {
username = "/"+username;
}
Resource r = TripleStore.model.getResource(s+username);
Property pr = TripleStore.model.getProperty(p); Property pr = TripleStore.model.getProperty(p);
StmtIterator iter = TripleStore.model.listStatements(r, pr, (Resource) null); StmtIterator iter = TripleStore.model.listStatements(r, pr, (Resource) null);
Log.logInfo ("TRIPLESTORE", "GET "+s+" - "+p);
Log.logInfo ("TRIPLESTORE", "GET "+username+" / "+s+" - "+p+" ... ");
while (iter.hasNext()) { while (iter.hasNext()) {
String obj = iter.nextStatement().getObject().toString(); String obj = iter.nextStatement().getObject().toString();

Loading…
Cancel
Save