2017-03-11 22:04:58 +00:00
|
|
|
using Gee;
|
|
|
|
|
2017-03-02 14:37:32 +00:00
|
|
|
using Xmpp.Core;
|
|
|
|
|
|
|
|
namespace Xmpp.Xep.PrivateXmlStorage {
|
|
|
|
private const string NS_URI = "jabber:iq:private";
|
|
|
|
|
|
|
|
public class Module : XmppStreamModule {
|
2017-03-19 11:55:36 +00:00
|
|
|
public static ModuleIdentity<Module> IDENTITY = new ModuleIdentity<Module>(NS_URI, "0049_private_xml_storage");
|
2017-03-02 14:37:32 +00:00
|
|
|
|
2017-06-13 16:14:59 +00:00
|
|
|
public delegate void OnSuccess(XmppStream stream);
|
|
|
|
public void store(XmppStream stream, StanzaNode node, owned OnSuccess listener) {
|
2017-03-02 14:37:32 +00:00
|
|
|
StanzaNode queryNode = new StanzaNode.build("query", NS_URI).add_self_xmlns().put_node(node);
|
|
|
|
Iq.Stanza iq = new Iq.Stanza.set(queryNode);
|
2017-06-13 16:14:59 +00:00
|
|
|
stream.get_module(Iq.Module.IDENTITY).send_iq(stream, iq, (stream, iq) => {
|
|
|
|
listener(stream);
|
|
|
|
});
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
|
2017-06-13 16:14:59 +00:00
|
|
|
public delegate void OnResponse(XmppStream stream, StanzaNode node);
|
|
|
|
public void retrieve(XmppStream stream, StanzaNode node, owned OnResponse listener) {
|
2017-03-02 14:37:32 +00:00
|
|
|
StanzaNode queryNode = new StanzaNode.build("query", NS_URI).add_self_xmlns().put_node(node);
|
|
|
|
Iq.Stanza iq = new Iq.Stanza.get(queryNode);
|
2017-06-13 16:14:59 +00:00
|
|
|
stream.get_module(Iq.Module.IDENTITY).send_iq(stream, iq, (stream, iq) => {
|
|
|
|
listener(stream, iq.stanza.get_subnode("query", NS_URI));
|
|
|
|
});
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public override void attach(XmppStream stream) {
|
|
|
|
Iq.Module.require(stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void detach(XmppStream stream) { }
|
|
|
|
|
|
|
|
public static void require(XmppStream stream) {
|
2017-03-11 00:40:42 +00:00
|
|
|
if (stream.get_module(IDENTITY) == null) stream.add_module(new PrivateXmlStorage.Module());
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public override string get_ns() { return NS_URI; }
|
2017-03-19 11:55:36 +00:00
|
|
|
public override string get_id() { return IDENTITY.id; }
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
}
|