2017-03-02 14:37:32 +00:00
|
|
|
using Gee;
|
|
|
|
|
|
|
|
using Xmpp.Core;
|
|
|
|
|
|
|
|
namespace Xmpp.Xep.Ping {
|
|
|
|
private const string NS_URI = "urn:xmpp:ping";
|
|
|
|
|
|
|
|
public class Module : XmppStreamModule {
|
2017-03-19 11:55:36 +00:00
|
|
|
public static ModuleIdentity<Module> IDENTITY = new ModuleIdentity<Module>(NS_URI, "0199_ping");
|
2017-03-02 14:37:32 +00:00
|
|
|
|
2017-05-24 15:28:39 +00:00
|
|
|
public void send_ping(XmppStream stream, string jid, ResponseListener? listener) {
|
2017-03-02 14:37:32 +00:00
|
|
|
Iq.Stanza iq = new Iq.Stanza.get(new StanzaNode.build("ping", NS_URI).add_self_xmlns());
|
|
|
|
iq.to = jid;
|
2017-03-11 22:04:58 +00:00
|
|
|
stream.get_module(Iq.Module.IDENTITY).send_iq(stream, iq, on_ping_response, listener);
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public override void attach(XmppStream stream) {
|
|
|
|
Iq.Module.require(stream);
|
2017-03-11 00:40:42 +00:00
|
|
|
stream.get_module(Iq.Module.IDENTITY).register_for_namespace(NS_URI, new IqHandlerImpl());
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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 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
|
|
|
|
|
|
|
private class IqHandlerImpl : Iq.Handler, Object {
|
|
|
|
public void on_iq_get(XmppStream stream, Iq.Stanza iq) {
|
2017-03-11 00:40:42 +00:00
|
|
|
stream.get_module(Iq.Module.IDENTITY).send_iq(stream, new Iq.Stanza.result(iq));
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
public void on_iq_set(XmppStream stream, Iq.Stanza iq) { }
|
|
|
|
}
|
2017-03-11 22:04:58 +00:00
|
|
|
|
2017-05-24 15:28:39 +00:00
|
|
|
private static void on_ping_response(XmppStream stream, Iq.Stanza iq, Object? o) {
|
|
|
|
ResponseListener? listener = o as ResponseListener;
|
|
|
|
if (listener != null) listener.on_result(stream);
|
2017-03-11 22:04:58 +00:00
|
|
|
}
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public interface ResponseListener : Object {
|
|
|
|
public abstract void on_result(XmppStream stream);
|
|
|
|
}
|
|
|
|
}
|