anotherim-desktop/xmpp-vala/src/module/xep/0199_ping.vala

33 lines
1.4 KiB
Vala
Raw Normal View History

2017-03-02 14:37:32 +00:00
using Gee;
namespace Xmpp.Xep.Ping {
private const string NS_URI = "urn:xmpp:ping";
2017-12-01 01:28:51 +00:00
public class Module : XmppStreamModule, Iq.Handler {
public static ModuleIdentity<Module> IDENTITY = new ModuleIdentity<Module>(NS_URI, "0199_ping");
2017-03-02 14:37:32 +00:00
2020-08-14 14:42:56 +00:00
public async Iq.Stanza send_ping(XmppStream stream, Jid jid) {
2020-04-24 12:19:42 +00:00
StanzaNode ping_node = new StanzaNode.build("ping", NS_URI).add_self_xmlns();
Iq.Stanza iq = new Iq.Stanza.get(ping_node) { to=jid };
2020-08-14 14:42:56 +00:00
return yield stream.get_module(Iq.Module.IDENTITY).send_iq_async(stream, iq);
2017-03-02 14:37:32 +00:00
}
public override void attach(XmppStream stream) {
2017-12-01 01:28:51 +00:00
stream.get_module(Iq.Module.IDENTITY).register_for_namespace(NS_URI, this);
stream.get_module(ServiceDiscovery.Module.IDENTITY).add_feature(stream, NS_URI);
2017-03-02 14:37:32 +00:00
}
2017-12-01 01:28:51 +00:00
public override void detach(XmppStream stream) {
stream.get_module(Iq.Module.IDENTITY).unregister_from_namespace(NS_URI, this);
stream.get_module(ServiceDiscovery.Module.IDENTITY).remove_feature(stream, NS_URI);
2017-12-01 01:28:51 +00:00
}
2020-04-24 12:19:42 +00:00
public async void on_iq_get(XmppStream stream, Iq.Stanza iq) {
stream.get_module(Iq.Module.IDENTITY).send_iq(stream, new Iq.Stanza.result(iq));
2017-12-01 01:28:51 +00:00
}
2017-03-02 14:37:32 +00:00
public override string get_ns() { return NS_URI; }
public override string get_id() { return IDENTITY.id; }
2017-03-02 14:37:32 +00:00
}
}