forked from MirrorHub/mautrix-whatsapp
Add command to get group invite link
This commit is contained in:
parent
3460d7b6e8
commit
09a08a9ef4
1 changed files with 25 additions and 6 deletions
31
commands.go
31
commands.go
|
@ -65,11 +65,7 @@ type CommandEvent struct {
|
||||||
func (ce *CommandEvent) Reply(msg string, args ...interface{}) {
|
func (ce *CommandEvent) Reply(msg string, args ...interface{}) {
|
||||||
content := format.RenderMarkdown(fmt.Sprintf(msg, args...), true, false)
|
content := format.RenderMarkdown(fmt.Sprintf(msg, args...), true, false)
|
||||||
content.MsgType = event.MsgNotice
|
content.MsgType = event.MsgNotice
|
||||||
room := ce.User.ManagementRoom
|
_, err := ce.Bot.SendMessageEvent(ce.RoomID, event.EventMessage, content)
|
||||||
if len(room) == 0 {
|
|
||||||
room = ce.RoomID
|
|
||||||
}
|
|
||||||
_, err := ce.Bot.SendMessageEvent(room, event.EventMessage, content)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ce.Handler.log.Warnfln("Failed to reply to command from %s: %v", ce.User.MXID, err)
|
ce.Handler.log.Warnfln("Failed to reply to command from %s: %v", ce.User.MXID, err)
|
||||||
}
|
}
|
||||||
|
@ -127,7 +123,7 @@ func (handler *CommandHandler) CommandMux(ce *CommandEvent) {
|
||||||
handler.CommandSetPowerLevel(ce)
|
handler.CommandSetPowerLevel(ce)
|
||||||
case "logout":
|
case "logout":
|
||||||
handler.CommandLogout(ce)
|
handler.CommandLogout(ce)
|
||||||
case "login-matrix", "sync", "list", "open", "pm":
|
case "login-matrix", "sync", "list", "open", "pm", "invite-link":
|
||||||
if !ce.User.HasSession() {
|
if !ce.User.HasSession() {
|
||||||
ce.Reply("You are not logged in. Use the `login` command to log into WhatsApp.")
|
ce.Reply("You are not logged in. Use the `login` command to log into WhatsApp.")
|
||||||
return
|
return
|
||||||
|
@ -147,6 +143,8 @@ func (handler *CommandHandler) CommandMux(ce *CommandEvent) {
|
||||||
handler.CommandOpen(ce)
|
handler.CommandOpen(ce)
|
||||||
case "pm":
|
case "pm":
|
||||||
handler.CommandPM(ce)
|
handler.CommandPM(ce)
|
||||||
|
case "invite-link":
|
||||||
|
handler.CommandInviteLink(ce)
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
ce.Reply("Unknown Command")
|
ce.Reply("Unknown Command")
|
||||||
|
@ -188,6 +186,26 @@ func (handler *CommandHandler) CommandVersion(ce *CommandEvent) {
|
||||||
ce.Reply(fmt.Sprintf("[%s](%s) %s", Name, URL, version))
|
ce.Reply(fmt.Sprintf("[%s](%s) %s", Name, URL, version))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const cmdInviteLinkHelp = `invite-link - Get an invite link to the current group chat.`
|
||||||
|
|
||||||
|
func (handler *CommandHandler) CommandInviteLink(ce *CommandEvent) {
|
||||||
|
portal := ce.Bridge.GetPortalByMXID(ce.RoomID)
|
||||||
|
if portal == nil {
|
||||||
|
ce.Reply("Not a portal room")
|
||||||
|
return
|
||||||
|
} else if portal.IsPrivateChat() {
|
||||||
|
ce.Reply("Can't get invite link to private chat")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
link, err := ce.User.Conn.GroupInviteLink(portal.Key.JID)
|
||||||
|
if err != nil {
|
||||||
|
ce.Reply("Failed to get invite link: %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
ce.Reply("https://chat.whatsapp.com/%s", link)
|
||||||
|
}
|
||||||
|
|
||||||
const cmdSetPowerLevelHelp = `set-pl [user ID] <power level> - Change the power level in a portal room. Only for bridge admins.`
|
const cmdSetPowerLevelHelp = `set-pl [user ID] <power level> - Change the power level in a portal room. Only for bridge admins.`
|
||||||
|
|
||||||
func (handler *CommandHandler) CommandSetPowerLevel(ce *CommandEvent) {
|
func (handler *CommandHandler) CommandSetPowerLevel(ce *CommandEvent) {
|
||||||
|
@ -447,6 +465,7 @@ func (handler *CommandHandler) CommandHelp(ce *CommandEvent) {
|
||||||
cmdPrefix + cmdListHelp,
|
cmdPrefix + cmdListHelp,
|
||||||
cmdPrefix + cmdOpenHelp,
|
cmdPrefix + cmdOpenHelp,
|
||||||
cmdPrefix + cmdPMHelp,
|
cmdPrefix + cmdPMHelp,
|
||||||
|
cmdPrefix + cmdInviteLinkHelp,
|
||||||
cmdPrefix + cmdSetPowerLevelHelp,
|
cmdPrefix + cmdSetPowerLevelHelp,
|
||||||
cmdPrefix + cmdDeletePortalHelp,
|
cmdPrefix + cmdDeletePortalHelp,
|
||||||
cmdPrefix + cmdDeleteAllPortalsHelp,
|
cmdPrefix + cmdDeleteAllPortalsHelp,
|
||||||
|
|
Loading…
Reference in a new issue