aboutsummaryrefslogtreecommitdiff
path: root/xmpp-vala
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2017-10-05 20:04:39 +0100
committerfiaxh <fiaxh@users.noreply.github.com>2017-10-31 15:40:42 +0100
commita8d06e634bf0b5b18c7bffaf05c7293bcd29b056 (patch)
tree3142a3cc9cdcc7cd156d2a21e86ce9e2ec033417 /xmpp-vala
parent9a5433750128ae302c9d8c772204d89c2af35ae2 (diff)
downloaddino-a8d06e634bf0b5b18c7bffaf05c7293bcd29b056.tar.gz
dino-a8d06e634bf0b5b18c7bffaf05c7293bcd29b056.zip
xmpp-vala: Add support for XEP-0191: Blocking Command
Diffstat (limited to 'xmpp-vala')
-rw-r--r--xmpp-vala/CMakeLists.txt1
-rw-r--r--xmpp-vala/src/module/xep/0191_blocking_command.vala137
2 files changed, 138 insertions, 0 deletions
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<Module> IDENTITY = new ModuleIdentity<Module>(NS_URI, "0191_blocking_command");
+
+ public signal void block_push_received(XmppStream stream, Gee.List<string> jids);
+ public signal void unblock_push_received(XmppStream stream, Gee.List<string> 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<string> 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<string> 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<string> 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<string> 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<string> jids = get_jids_from_items(node);
+ listener(stream, jids);
+ }
+ });
+ }
+
+ private Gee.List<string> get_jids_from_items(StanzaNode node) {
+ Gee.List<StanzaNode> item_nodes = node.get_subnodes("item", NS_URI);
+ Gee.List<string> jids = new ArrayList<string>();
+ 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<string> 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<Flag> IDENTITY = new FlagIdentity<Flag>(NS_URI, "blocking_command");
+
+ public Gee.List<string> blocklist;
+
+ public override string get_ns() { return NS_URI; }
+ public override string get_id() { return IDENTITY.id; }
+}
+
+}