From 9b2fd36a7fb7a2342a35d5f860340d94c4188215 Mon Sep 17 00:00:00 2001
From: "Richard T. Carback III" <rick.carback@gmail.com>
Date: Fri, 26 May 2023 16:45:14 +0000
Subject: [PATCH] Add Block/Unblock to DM

---
 wasm/dm.go | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/wasm/dm.go b/wasm/dm.go
index 101ce92b..53d123a2 100644
--- a/wasm/dm.go
+++ b/wasm/dm.go
@@ -63,6 +63,10 @@ func newDMClientJS(api *bindings.DMClient) map[string]any {
 		"SendReaction": js.FuncOf(cm.SendReaction),
 		"SendSilent":   js.FuncOf(cm.SendSilent),
 		"Send":         js.FuncOf(cm.Send),
+
+		// User Mute/Unmute
+		"BlockSender":   js.FuncOf(cm.BlockSender),
+		"UnblockSender": js.FuncOf(cm.UnblockSender),
 	}
 
 	return dmClientMap
@@ -572,6 +576,30 @@ func (dmc *DMClient) GetDatabaseName(js.Value, []js.Value) any {
 		"_speakeasy_dm"
 }
 
+// BlockSender blocks the provided sender public key from sending DMs
+//
+// Parameters:
+//   - args[0] - [ed25519.PublicKey] (Uint8Array)
+//
+// Returns nothing
+func (dmc *DMClient) BlockSender(_ js.Value, args []js.Value) any {
+	senderKey := utils.CopyBytesToGo(args[0])
+	dmc.api.BlockSender(senderKey)
+	return nil
+}
+
+// UnblockSender unblocks the provided sender public key to allow sending DMs
+//
+// Parameters:
+//   - args[0] - [ed25519.PublicKey] (Uint8Array)
+//
+// Returns nothing
+func (dmc *DMClient) UnblockSender(_ js.Value, args []js.Value) any {
+	senderKey := utils.CopyBytesToGo(args[0])
+	dmc.api.UnblockSender(senderKey)
+	return nil
+}
+
 ////////////////////////////////////////////////////////////////////////////////
 // DM Share URL                                                          //
 ////////////////////////////////////////////////////////////////////////////////
-- 
GitLab