From a8d06e634bf0b5b18c7bffaf05c7293bcd29b056 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Thu, 5 Oct 2017 20:04:39 +0100 Subject: xmpp-vala: Add support for XEP-0191: Blocking Command --- xmpp-vala/CMakeLists.txt | 1 + .../src/module/xep/0191_blocking_command.vala | 137 +++++++++++++++++++++ 2 files changed, 138 insertions(+) create mode 100644 xmpp-vala/src/module/xep/0191_blocking_command.vala (limited to 'xmpp-vala') diff --git a/xmpp-vala/CMakeLists.txt b/xmpp-vala/CMakeLists.txt index 3c747bea..2bee94ab 100644 --- a/xmpp-vala/CMakeLists.txt +++ b/xmpp-vala/CMakeLists.txt @@ -56,6 +56,7 @@ SOURCES "src/module/xep/0084_user_avatars.vala" "src/module/xep/0085_chat_state_notifications.vala" "src/module/xep/0115_entitiy_capabilities.vala" + "src/module/xep/0191_blocking_command.vala" "src/module/xep/0198_stream_management.vala" "src/module/xep/0199_ping.vala" "src/module/xep/0184_message_delivery_receipts.vala" diff --git a/xmpp-vala/src/module/xep/0191_blocking_command.vala b/xmpp-vala/src/module/xep/0191_blocking_command.vala new file mode 100644 index 00000000..c970955d --- /dev/null +++ b/xmpp-vala/src/module/xep/0191_blocking_command.vala @@ -0,0 +1,137 @@ +using Gee; + +using Xmpp.Core; + +namespace Xmpp.Xep.BlockingCommand { + +private const string NS_URI = "urn:xmpp:blocking"; + +public class Module : XmppStreamModule, Iq.Handler { + public static ModuleIdentity IDENTITY = new ModuleIdentity(NS_URI, "0191_blocking_command"); + + public signal void block_push_received(XmppStream stream, Gee.List jids); + public signal void unblock_push_received(XmppStream stream, Gee.List jids); + public signal void unblock_all_received(XmppStream stream); + + public bool is_blocked(XmppStream stream, string jid) { + return stream.get_flag(Flag.IDENTITY).blocklist.contains(jid); + } + + public bool block(XmppStream stream, Gee.List jids) { + // This would otherwise be a bad-request error. + if (jids.size == 0) + return false; + StanzaNode block_node = new StanzaNode.build("block", NS_URI).add_self_xmlns(); + fill_node_with_items(block_node, jids); + Iq.Stanza iq = new Iq.Stanza.set(block_node); + stream.get_module(Iq.Module.IDENTITY).send_iq(stream, iq, null); + return true; + } + + public bool unblock(XmppStream stream, Gee.List jids) { + // This would otherwise unblock all blocked JIDs. + if (jids.size == 0) + return false; + StanzaNode unblock_node = new StanzaNode.build("unblock", NS_URI).add_self_xmlns(); + fill_node_with_items(unblock_node, jids); + Iq.Stanza iq = new Iq.Stanza.set(unblock_node); + stream.get_module(Iq.Module.IDENTITY).send_iq(stream, iq, null); + return true; + } + + public void unblock_all(XmppStream stream) { + StanzaNode unblock_node = new StanzaNode.build("unblock", NS_URI).add_self_xmlns(); + Iq.Stanza iq = new Iq.Stanza.set(unblock_node); + stream.get_module(Iq.Module.IDENTITY).send_iq(stream, iq, null); + } + + private void on_iq_get(XmppStream stream, Iq.Stanza iq) { } + private void on_iq_set(XmppStream stream, Iq.Stanza iq) { + StanzaNode? block_node = iq.stanza.get_subnode("block", NS_URI); + StanzaNode? unblock_node = iq.stanza.get_subnode("unblock", NS_URI); + Gee.List jids; + if (block_node != null) { + jids = get_jids_from_items(block_node); + stream.get_flag(Flag.IDENTITY).blocklist.add_all(jids); + block_push_received(stream, jids); + } else if (unblock_node != null) { + jids = get_jids_from_items(unblock_node); + if (jids.size > 0) { + stream.get_flag(Flag.IDENTITY).blocklist.remove_all(jids); + unblock_push_received(stream, jids); + } else { + stream.get_flag(Flag.IDENTITY).blocklist.clear(); + unblock_all_received(stream); + } + } + } + + public override void attach(XmppStream stream) { + stream.get_module(Iq.Module.IDENTITY).register_for_namespace(NS_URI, this); + stream.get_module(ServiceDiscovery.Module.IDENTITY).add_feature(stream, NS_URI); + stream.stream_negotiated.connect(on_stream_negotiated); + } + + public override void detach(XmppStream stream) { + stream.stream_negotiated.disconnect(on_stream_negotiated); + stream.get_module(Iq.Module.IDENTITY).unregister_from_namespace(NS_URI, this); + } + + public override string get_ns() { return NS_URI; } + public override string get_id() { return IDENTITY.id; } + + private void on_stream_negotiated(XmppStream stream) { + stream.get_module(Xep.ServiceDiscovery.Module.IDENTITY).request_info(stream, "jabberfr.org", (stream, info_result) => { + if (info_result.features.contains(NS_URI)) { + stream.add_flag(new Flag()); + get_blocklist(stream, (stream, jids) => { + stream.get_flag(Flag.IDENTITY).blocklist = jids; + }); + return; + } + }); + } + + private delegate void OnBlocklist(XmppStream stream, Gee.List jids); + private void get_blocklist(XmppStream stream, owned OnBlocklist listener) { + StanzaNode blocklist_node = new StanzaNode.build("blocklist", NS_URI).add_self_xmlns(); + Iq.Stanza iq = new Iq.Stanza.get(blocklist_node); + stream.get_module(Iq.Module.IDENTITY).send_iq(stream, iq, (stream, iq) => { + StanzaNode? node = iq.stanza.get_subnode("blocklist", NS_URI); + if (node != null) { + Gee.List jids = get_jids_from_items(node); + listener(stream, jids); + } + }); + } + + private Gee.List get_jids_from_items(StanzaNode node) { + Gee.List item_nodes = node.get_subnodes("item", NS_URI); + Gee.List jids = new ArrayList(); + foreach (StanzaNode item_node in item_nodes) { + string? jid = item_node.get_attribute("jid", NS_URI); + if (jid != null) + jids.add(jid); + } + return jids; + } + + private void fill_node_with_items(StanzaNode node, Gee.List jids) { + foreach (string jid in jids) { + StanzaNode item_node = new StanzaNode.build("item", NS_URI).add_self_xmlns(); + item_node.set_attribute("jid", jid, NS_URI); + node.put_node(item_node); + } + } +} + +public class Flag : XmppStreamFlag { + public static FlagIdentity IDENTITY = new FlagIdentity(NS_URI, "blocking_command"); + + public Gee.List blocklist; + + public override string get_ns() { return NS_URI; } + public override string get_id() { return IDENTITY.id; } +} + +} -- cgit v1.2.3-54-g00ecf