aboutsummaryrefslogtreecommitdiff
path: root/libdino/src/service/blocking_manager.vala
diff options
context:
space:
mode:
Diffstat (limited to 'libdino/src/service/blocking_manager.vala')
-rw-r--r--libdino/src/service/blocking_manager.vala44
1 files changed, 44 insertions, 0 deletions
diff --git a/libdino/src/service/blocking_manager.vala b/libdino/src/service/blocking_manager.vala
new file mode 100644
index 00000000..de79b4d4
--- /dev/null
+++ b/libdino/src/service/blocking_manager.vala
@@ -0,0 +1,44 @@
+using Gee;
+
+using Xmpp;
+using Dino.Entities;
+
+namespace Dino {
+
+public class BlockingManager : StreamInteractionModule, Object {
+ public static ModuleIdentity<BlockingManager> IDENTITY = new ModuleIdentity<BlockingManager>("blocking_manager");
+ public string id { get { return IDENTITY.id; } }
+
+ private StreamInteractor stream_interactor;
+
+ public static void start(StreamInteractor stream_interactor) {
+ BlockingManager m = new BlockingManager(stream_interactor);
+ stream_interactor.add_module(m);
+ }
+
+ private BlockingManager(StreamInteractor stream_interactor) {
+ this.stream_interactor = stream_interactor;
+ }
+
+ public bool is_blocked(Account account, Jid jid) {
+ Core.XmppStream stream = stream_interactor.get_stream(account);
+ return stream != null && stream.get_module(Xmpp.Xep.BlockingCommand.Module.IDENTITY).is_blocked(stream, jid.to_string());
+ }
+
+ public void block(Account account, Jid jid) {
+ Core.XmppStream stream = stream_interactor.get_stream(account);
+ stream.get_module(Xmpp.Xep.BlockingCommand.Module.IDENTITY).block(stream, new ArrayList<string>.wrap(new string[] {jid.to_string()}));
+ }
+
+ public void unblock(Account account, Jid jid) {
+ Core.XmppStream stream = stream_interactor.get_stream(account);
+ stream.get_module(Xmpp.Xep.BlockingCommand.Module.IDENTITY).unblock(stream, new ArrayList<string>.wrap(new string[] {jid.to_string()}));
+ }
+
+ public bool is_supported(Account account) {
+ Core.XmppStream stream = stream_interactor.get_stream(account);
+ return stream != null && stream.get_module(Xmpp.Xep.BlockingCommand.Module.IDENTITY).is_supported(stream);
+ }
+}
+
+}