2022-05-22 19:16:42 +00:00
// mautrix-discord - A Matrix-Discord puppeting bridge.
// Copyright (C) 2022 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package main
import (
2023-01-27 21:35:26 +00:00
"bytes"
2022-05-22 19:16:42 +00:00
"context"
2023-02-26 22:43:11 +00:00
"encoding/base64"
2023-01-27 21:35:26 +00:00
"errors"
2022-05-22 19:16:42 +00:00
"fmt"
2023-01-29 13:10:44 +00:00
"html"
2023-01-27 21:35:26 +00:00
"net/http"
2022-07-09 13:33:51 +00:00
"strconv"
2022-05-22 19:16:42 +00:00
"strings"
2023-01-27 21:35:26 +00:00
"github.com/bwmarrin/discordgo"
2022-05-22 19:16:42 +00:00
"github.com/skip2/go-qrcode"
2022-05-27 12:58:09 +00:00
"maunium.net/go/mautrix"
2023-02-26 22:08:23 +00:00
"maunium.net/go/mautrix/appservice"
2022-05-22 19:16:42 +00:00
"maunium.net/go/mautrix/bridge/commands"
"maunium.net/go/mautrix/event"
"maunium.net/go/mautrix/id"
2023-02-18 20:53:51 +00:00
"go.mau.fi/mautrix-discord/database"
2022-05-22 19:16:42 +00:00
"go.mau.fi/mautrix-discord/remoteauth"
)
type WrappedCommandEvent struct {
* commands . Event
Bridge * DiscordBridge
User * User
Portal * Portal
}
func ( br * DiscordBridge ) RegisterCommands ( ) {
proc := br . CommandProcessor . ( * commands . Processor )
proc . AddHandlers (
2022-09-19 21:17:22 +00:00
cmdLoginToken ,
cmdLoginQR ,
2022-05-22 19:16:42 +00:00
cmdLogout ,
cmdReconnect ,
cmdDisconnect ,
2023-02-27 22:40:53 +00:00
cmdSetRelay ,
2023-03-01 18:36:07 +00:00
cmdUnsetRelay ,
2022-05-22 19:16:42 +00:00
cmdGuilds ,
2022-07-09 13:33:51 +00:00
cmdRejoinSpace ,
2022-05-27 12:58:09 +00:00
cmdDeleteAllPortals ,
2023-01-29 11:45:00 +00:00
cmdExec ,
cmdCommands ,
2022-05-22 19:16:42 +00:00
)
}
func wrapCommand ( handler func ( * WrappedCommandEvent ) ) func ( * commands . Event ) {
return func ( ce * commands . Event ) {
user := ce . User . ( * User )
var portal * Portal
if ce . Portal != nil {
portal = ce . Portal . ( * Portal )
}
br := ce . Bridge . Child . ( * DiscordBridge )
handler ( & WrappedCommandEvent { ce , br , user , portal } )
}
}
2022-09-19 21:17:22 +00:00
var cmdLoginToken = & commands . FullHandler {
Func : wrapCommand ( fnLoginToken ) ,
Name : "login-token" ,
Help : commands . HelpMeta {
Section : commands . HelpSectionAuth ,
Description : "Link the bridge to your Discord account by extracting the access token manually." ,
2023-02-26 22:43:11 +00:00
Args : "<user/bot/oauth> <_token_>" ,
2022-09-19 21:17:22 +00:00
} ,
}
2023-02-26 22:43:11 +00:00
const discordTokenEpoch = 1293840000
func decodeToken ( token string ) ( userID int64 , err error ) {
parts := strings . Split ( token , "." )
if len ( parts ) != 3 {
err = fmt . Errorf ( "invalid number of parts in token" )
return
}
var userIDStr [ ] byte
userIDStr , err = base64 . RawURLEncoding . DecodeString ( parts [ 0 ] )
if err != nil {
err = fmt . Errorf ( "invalid base64 in user ID part: %w" , err )
return
}
_ , err = base64 . RawURLEncoding . DecodeString ( parts [ 1 ] )
if err != nil {
err = fmt . Errorf ( "invalid base64 in random part: %w" , err )
return
}
_ , err = base64 . RawURLEncoding . DecodeString ( parts [ 2 ] )
if err != nil {
err = fmt . Errorf ( "invalid base64 in checksum part: %w" , err )
return
}
userID , err = strconv . ParseInt ( string ( userIDStr ) , 10 , 64 )
if err != nil {
err = fmt . Errorf ( "invalid number in decoded user ID part: %w" , err )
return
}
return
}
2022-09-19 21:17:22 +00:00
func fnLoginToken ( ce * WrappedCommandEvent ) {
2023-02-26 22:43:11 +00:00
if len ( ce . Args ) != 2 {
ce . Reply ( "**Usage**: `$cmdprefix login-token <user/bot/oauth> <token>`" )
2022-11-11 12:34:45 +00:00
return
}
2022-09-19 21:17:22 +00:00
ce . MarkRead ( )
defer ce . Redact ( )
if ce . User . IsLoggedIn ( ) {
ce . Reply ( "You're already logged in" )
return
}
2023-02-26 22:43:11 +00:00
token := ce . Args [ 1 ]
userID , err := decodeToken ( token )
if err != nil {
ce . Reply ( "Invalid token" )
return
}
switch strings . ToLower ( ce . Args [ 0 ] ) {
case "user" :
// Token is used as-is
case "bot" :
token = "Bot " + token
case "oauth" :
token = "Bearer " + token
default :
ce . Reply ( "Token type must be `user`, `bot` or `oauth`" )
return
}
ce . Reply ( "Connecting to Discord as user ID %d" , userID )
if err = ce . User . Login ( token ) ; err != nil {
2022-09-19 21:17:22 +00:00
ce . Reply ( "Error connecting to Discord: %v" , err )
return
}
ce . Reply ( "Successfully logged in as %s#%s" , ce . User . Session . State . User . Username , ce . User . Session . State . User . Discriminator )
}
var cmdLoginQR = & commands . FullHandler {
Func : wrapCommand ( fnLoginQR ) ,
Name : "login-qr" ,
Aliases : [ ] string { "login" } ,
2022-05-22 19:16:42 +00:00
Help : commands . HelpMeta {
Section : commands . HelpSectionAuth ,
Description : "Link the bridge to your Discord account by scanning a QR code." ,
} ,
}
2022-09-19 21:17:22 +00:00
func fnLoginQR ( ce * WrappedCommandEvent ) {
2022-05-22 19:16:42 +00:00
if ce . User . IsLoggedIn ( ) {
ce . Reply ( "You're already logged in" )
return
}
client , err := remoteauth . New ( )
if err != nil {
ce . Reply ( "Failed to prepare login: %v" , err )
return
}
qrChan := make ( chan string )
doneChan := make ( chan struct { } )
var qrCodeEvent id . EventID
go func ( ) {
code := <- qrChan
resp := sendQRCode ( ce , code )
qrCodeEvent = resp
} ( )
ctx := context . Background ( )
if err = client . Dial ( ctx , qrChan , doneChan ) ; err != nil {
close ( qrChan )
close ( doneChan )
ce . Reply ( "Error connecting to login websocket: %v" , err )
return
}
<- doneChan
if qrCodeEvent != "" {
_ , _ = ce . MainIntent ( ) . RedactEvent ( ce . RoomID , qrCodeEvent )
}
user , err := client . Result ( )
if err != nil || len ( user . Token ) == 0 {
2023-01-27 21:35:26 +00:00
if restErr := ( & discordgo . RESTError { } ) ; errors . As ( err , & restErr ) &&
restErr . Response . StatusCode == http . StatusBadRequest &&
bytes . Contains ( restErr . ResponseBody , [ ] byte ( "captcha-required" ) ) {
ce . Reply ( "Error logging in: %v\n\nCAPTCHAs are currently not supported - use token login instead" , err )
} else {
ce . Reply ( "Error logging in: %v" , err )
}
2022-08-20 08:47:31 +00:00
return
2022-05-22 19:16:42 +00:00
} else if err = ce . User . Login ( user . Token ) ; err != nil {
ce . Reply ( "Error connecting after login: %v" , err )
2022-08-20 08:47:31 +00:00
return
2022-05-22 19:16:42 +00:00
}
ce . User . Lock ( )
2022-05-28 20:03:24 +00:00
ce . User . DiscordID = user . UserID
2022-05-22 19:16:42 +00:00
ce . User . Update ( )
ce . User . Unlock ( )
ce . Reply ( "Successfully logged in as %s#%s" , user . Username , user . Discriminator )
}
func sendQRCode ( ce * WrappedCommandEvent , code string ) id . EventID {
url , ok := uploadQRCode ( ce , code )
if ! ok {
return ""
}
content := event . MessageEventContent {
MsgType : event . MsgImage ,
Body : code ,
URL : url . CUString ( ) ,
}
resp , err := ce . Bot . SendMessageEvent ( ce . RoomID , event . EventMessage , & content )
if err != nil {
ce . Log . Errorfln ( "Failed to send QR code: %v" , err )
return ""
}
return resp . EventID
}
func uploadQRCode ( ce * WrappedCommandEvent , code string ) ( id . ContentURI , bool ) {
qrCode , err := qrcode . Encode ( code , qrcode . Low , 256 )
if err != nil {
ce . Log . Errorln ( "Failed to encode QR code:" , err )
ce . Reply ( "Failed to encode QR code: %v" , err )
return id . ContentURI { } , false
}
resp , err := ce . Bot . UploadBytes ( qrCode , "image/png" )
if err != nil {
ce . Log . Errorln ( "Failed to upload QR code:" , err )
ce . Reply ( "Failed to upload QR code: %v" , err )
return id . ContentURI { } , false
}
return resp . ContentURI , true
}
var cmdLogout = & commands . FullHandler {
Func : wrapCommand ( fnLogout ) ,
Name : "logout" ,
Help : commands . HelpMeta {
Section : commands . HelpSectionAuth ,
2022-06-19 12:25:04 +00:00
Description : "Forget the stored Discord auth token." ,
2022-05-22 19:16:42 +00:00
} ,
}
func fnLogout ( ce * WrappedCommandEvent ) {
2022-11-26 13:18:42 +00:00
wasLoggedIn := ce . User . DiscordID != ""
ce . User . Logout ( )
if wasLoggedIn {
2022-05-22 19:16:42 +00:00
ce . Reply ( "Logged out successfully." )
2022-11-26 13:18:42 +00:00
} else {
ce . Reply ( "You weren't logged in, but data was re-cleared just to be safe." )
2022-05-22 19:16:42 +00:00
}
}
var cmdDisconnect = & commands . FullHandler {
Func : wrapCommand ( fnDisconnect ) ,
Name : "disconnect" ,
Help : commands . HelpMeta {
Section : commands . HelpSectionAuth ,
Description : "Disconnect from Discord (without logging out)" ,
} ,
RequiresLogin : true ,
}
func fnDisconnect ( ce * WrappedCommandEvent ) {
if ! ce . User . Connected ( ) {
ce . Reply ( "You're already not connected" )
} else if err := ce . User . Disconnect ( ) ; err != nil {
ce . Reply ( "Error while disconnecting: %v" , err )
} else {
ce . Reply ( "Successfully disconnected" )
}
}
var cmdReconnect = & commands . FullHandler {
Func : wrapCommand ( fnReconnect ) ,
Name : "reconnect" ,
Aliases : [ ] string { "connect" } ,
Help : commands . HelpMeta {
Section : commands . HelpSectionAuth ,
Description : "Reconnect to Discord after disconnecting" ,
} ,
RequiresLogin : true ,
}
func fnReconnect ( ce * WrappedCommandEvent ) {
if ce . User . Connected ( ) {
ce . Reply ( "You're already connected" )
} else if err := ce . User . Connect ( ) ; err != nil {
ce . Reply ( "Error while reconnecting: %v" , err )
} else {
ce . Reply ( "Successfully reconnected" )
}
}
2022-07-09 13:33:51 +00:00
var cmdRejoinSpace = & commands . FullHandler {
Func : wrapCommand ( fnRejoinSpace ) ,
Name : "rejoin-space" ,
Help : commands . HelpMeta {
Section : commands . HelpSectionUnclassified ,
Description : "Ask the bridge for an invite to a space you left" ,
Args : "<_guild ID_/main/dms>" ,
} ,
RequiresLogin : true ,
}
func fnRejoinSpace ( ce * WrappedCommandEvent ) {
if len ( ce . Args ) == 0 {
ce . Reply ( "**Usage**: `$cmdprefix rejoin-space <guild ID/main/dms>`" )
return
}
user := ce . User
if ce . Args [ 0 ] == "main" {
user . ensureInvited ( nil , user . GetSpaceRoom ( ) , false )
ce . Reply ( "Invited you to your main space ([link](%s))" , user . GetSpaceRoom ( ) . URI ( ce . Bridge . AS . HomeserverDomain ) . MatrixToURL ( ) )
} else if ce . Args [ 0 ] == "dms" {
user . ensureInvited ( nil , user . GetDMSpaceRoom ( ) , false )
ce . Reply ( "Invited you to your DM space ([link](%s))" , user . GetDMSpaceRoom ( ) . URI ( ce . Bridge . AS . HomeserverDomain ) . MatrixToURL ( ) )
} else if _ , err := strconv . Atoi ( ce . Args [ 0 ] ) ; err == nil {
ce . Reply ( "Rejoining guild spaces is not yet implemented" )
} else {
ce . Reply ( "**Usage**: `$cmdprefix rejoin-space <guild ID/main/dms>`" )
return
}
}
2023-03-01 18:35:50 +00:00
var roomModerator = event . Type { Type : "fi.mau.discord.admin" , Class : event . StateEventType }
2023-02-27 22:40:53 +00:00
var cmdSetRelay = & commands . FullHandler {
Func : wrapCommand ( fnSetRelay ) ,
Name : "set-relay" ,
Help : commands . HelpMeta {
Section : commands . HelpSectionUnclassified ,
Description : "Create or set a relay webhook for a portal" ,
Args : "[room ID] < --url URL> OR < --create [name]>" ,
} ,
2023-03-01 18:35:50 +00:00
RequiresLogin : true ,
RequiresEventLevel : roomModerator ,
2023-02-27 22:40:53 +00:00
}
const webhookURLFormat = "https://discord.com/api/webhooks/%d/%s"
const selectRelayHelp = "Usage: `$cmdprefix [room ID] < --url URL> OR < --create [name]>`"
func fnSetRelay ( ce * WrappedCommandEvent ) {
portal := ce . Portal
if len ( ce . Args ) > 0 && strings . HasPrefix ( ce . Args [ 0 ] , "!" ) {
portal = ce . Bridge . GetPortalByMXID ( id . RoomID ( ce . Args [ 0 ] ) )
if portal == nil {
ce . Reply ( "Portal with room ID %s not found" , ce . Args [ 0 ] )
return
}
2023-03-01 18:35:50 +00:00
levels , err := portal . MainIntent ( ) . PowerLevels ( ce . RoomID )
if err != nil {
ce . ZLog . Warn ( ) . Err ( err ) . Msg ( "Failed to check room power levels" )
ce . Reply ( "Failed to get room power levels to see if you're allowed to use that command" )
return
} else if levels . GetUserLevel ( ce . User . GetMXID ( ) ) < levels . GetEventLevel ( roomModerator ) {
ce . Reply ( "You don't have admin rights in that room" )
return
}
2023-02-27 22:40:53 +00:00
ce . Args = ce . Args [ 1 : ]
} else if portal == nil {
ce . Reply ( "You must either run the command in a portal, or specify an internal room ID as the first parameter" )
return
}
2023-03-01 18:35:50 +00:00
if ce . Portal . GuildID == "" {
ce . Reply ( "Only guild channels can have relays" )
return
} else if len ( ce . Args ) == 0 {
2023-02-27 22:40:53 +00:00
ce . Reply ( selectRelayHelp )
return
}
log := ce . ZLog . With ( ) . Str ( "channel_id" , portal . Key . ChannelID ) . Logger ( )
createType := strings . ToLower ( strings . TrimLeft ( ce . Args [ 0 ] , "-" ) )
2023-03-01 16:49:06 +00:00
var webhookMeta * discordgo . Webhook
2023-02-27 22:40:53 +00:00
switch createType {
case "url" :
if len ( ce . Args ) < 2 {
ce . Reply ( "Usage: `$cmdprefix [room ID] --url <URL>" )
return
}
ce . Redact ( )
2023-03-01 16:49:06 +00:00
var webhookID int64
var webhookSecret string
2023-02-27 22:40:53 +00:00
_ , err := fmt . Sscanf ( ce . Args [ 1 ] , webhookURLFormat , & webhookID , & webhookSecret )
if err != nil {
log . Warn ( ) . Str ( "webhook_url" , ce . Args [ 1 ] ) . Err ( err ) . Msg ( "Failed to parse provided webhook URL" )
ce . Reply ( "Invalid webhook URL" )
return
}
2023-03-01 16:49:06 +00:00
webhookMeta , err = relayClient . WebhookWithToken ( strconv . FormatInt ( webhookID , 10 ) , webhookSecret )
if err != nil {
log . Warn ( ) . Err ( err ) . Msg ( "Failed to get webhook info" )
ce . Reply ( "Failed to get webhook info: %v" , err )
return
}
2023-02-27 22:40:53 +00:00
case "create" :
perms , err := ce . User . Session . UserChannelPermissions ( ce . User . DiscordID , portal . Key . ChannelID )
if err != nil {
log . Warn ( ) . Err ( err ) . Msg ( "Failed to check user permissions" )
ce . Reply ( "Failed to check if you have permission to create webhooks" )
return
} else if perms & discordgo . PermissionManageWebhooks == 0 {
log . Debug ( ) . Int64 ( "perms" , perms ) . Msg ( "User doesn't have permissions to manage webhooks in channel" )
ce . Reply ( "You don't have permission to manage webhooks in that channel" )
return
}
name := "mautrix"
if len ( ce . Args ) > 1 {
name = strings . Join ( ce . Args [ 1 : ] , " " )
}
log . Debug ( ) . Str ( "webhook_name" , name ) . Msg ( "Creating webhook" )
2023-03-01 16:49:06 +00:00
webhookMeta , err = ce . User . Session . WebhookCreate ( portal . Key . ChannelID , name , "" )
2023-02-27 22:40:53 +00:00
if err != nil {
log . Warn ( ) . Err ( err ) . Msg ( "Failed to create webhook" )
ce . Reply ( "Failed to create webhook: %v" , err )
return
}
default :
ce . Reply ( selectRelayHelp )
return
}
2023-03-01 16:49:06 +00:00
if portal . Key . ChannelID != webhookMeta . ChannelID {
log . Debug ( ) .
Str ( "portal_channel_id" , portal . Key . ChannelID ) .
Str ( "webhook_channel_id" , webhookMeta . ChannelID ) .
Msg ( "Provided webhook is for wrong channel" )
ce . Reply ( "That webhook is not for the right channel (expected %s, webhook is for %s)" , portal . Key . ChannelID , webhookMeta . ChannelID )
return
}
log . Debug ( ) . Str ( "webhook_id" , webhookMeta . ID ) . Msg ( "Setting portal relay webhook" )
portal . RelayWebhookID = webhookMeta . ID
portal . RelayWebhookSecret = webhookMeta . Token
2023-02-27 22:40:53 +00:00
portal . Update ( )
2023-03-01 16:49:06 +00:00
ce . Reply ( "Saved webhook %s (%s) as portal relay webhook" , webhookMeta . Name , portal . RelayWebhookID )
2023-02-27 22:40:53 +00:00
}
2023-03-01 18:36:07 +00:00
var cmdUnsetRelay = & commands . FullHandler {
Func : wrapCommand ( fnUnsetRelay ) ,
Name : "unset-relay" ,
Help : commands . HelpMeta {
Section : commands . HelpSectionUnclassified ,
Description : "Disable the relay webhook and optionally delete it on Discord" ,
Args : "[--delete]" ,
} ,
RequiresPortal : true ,
RequiresEventLevel : roomModerator ,
}
func fnUnsetRelay ( ce * WrappedCommandEvent ) {
if ce . Portal . RelayWebhookID == "" {
ce . Reply ( "This portal doesn't have a relay webhook" )
return
}
if len ( ce . Args ) > 0 && ce . Args [ 0 ] == "--delete" {
err := relayClient . WebhookDeleteWithToken ( ce . Portal . RelayWebhookID , ce . Portal . RelayWebhookSecret )
if err != nil {
ce . Reply ( "Failed to delete webhook: %v" , err )
return
} else {
ce . Reply ( "Successfully deleted webhook" )
}
} else {
ce . Reply ( "Relay webhook disabled" )
}
ce . Portal . RelayWebhookID = ""
ce . Portal . RelayWebhookSecret = ""
ce . Portal . Update ( )
}
2022-05-22 19:16:42 +00:00
var cmdGuilds = & commands . FullHandler {
Func : wrapCommand ( fnGuilds ) ,
Name : "guilds" ,
Aliases : [ ] string { "servers" , "guild" , "server" } ,
Help : commands . HelpMeta {
Section : commands . HelpSectionUnclassified ,
Description : "Guild bridging management" ,
2023-02-18 20:53:51 +00:00
Args : "<status/bridge/unbridge/bridging-mode> [_guild ID_] [...]" ,
2022-05-22 19:16:42 +00:00
} ,
RequiresLogin : true ,
}
2023-02-18 20:53:51 +00:00
const smallGuildsHelp = "**Usage**: `$cmdprefix guilds <help/status/bridge/unbridge> [guild ID] [...]`"
2023-01-27 21:43:08 +00:00
const fullGuildsHelp = smallGuildsHelp + `
* * * help * * - View this help message .
* * * status * * - View the list of guilds and their bridging status .
* * * bridge < _guild ID_ > [ -- entire ] * * - Enable bridging for a guild . The -- entire flag auto - creates portals for all channels .
2023-02-18 20:53:51 +00:00
* * * bridging - mode < _guild ID_ > < _mode_ > * * - Set the mode for bridging messages and new channels in a guild .
2023-01-27 21:43:08 +00:00
* * * unbridge < _guild ID_ > * * - Unbridge a guild and delete all channel portal rooms . `
2022-05-22 19:16:42 +00:00
func fnGuilds ( ce * WrappedCommandEvent ) {
if len ( ce . Args ) == 0 {
2023-01-27 21:43:08 +00:00
ce . Reply ( fullGuildsHelp )
2022-05-27 12:58:09 +00:00
return
2022-05-22 19:16:42 +00:00
}
subcommand := strings . ToLower ( ce . Args [ 0 ] )
ce . Args = ce . Args [ 1 : ]
switch subcommand {
2023-01-27 21:43:08 +00:00
case "status" , "list" :
2022-05-22 19:16:42 +00:00
fnListGuilds ( ce )
case "bridge" :
fnBridgeGuild ( ce )
2023-01-27 21:43:08 +00:00
case "unbridge" , "delete" :
2022-05-22 19:16:42 +00:00
fnUnbridgeGuild ( ce )
2023-02-18 20:53:51 +00:00
case "bridging-mode" , "mode" :
fnGuildBridgingMode ( ce )
2023-01-27 21:43:08 +00:00
case "help" :
ce . Reply ( fullGuildsHelp )
default :
ce . Reply ( "Unknown subcommand `%s`\n\n" + smallGuildsHelp , subcommand )
2022-05-22 19:16:42 +00:00
}
}
func fnListGuilds ( ce * WrappedCommandEvent ) {
2023-01-29 13:10:44 +00:00
var items [ ] string
2022-05-28 20:41:34 +00:00
for _ , userGuild := range ce . User . GetPortals ( ) {
guild := ce . Bridge . GetGuildByID ( userGuild . DiscordID , false )
2022-05-28 20:03:24 +00:00
if guild == nil {
continue
}
2023-01-29 13:10:44 +00:00
var avatarHTML string
if ! guild . AvatarURL . IsEmpty ( ) {
2023-01-29 21:26:58 +00:00
avatarHTML = fmt . Sprintf ( ` <img data-mx-emoticon height="24" src="%s" alt="" title="Guild avatar"> ` , guild . AvatarURL . String ( ) )
2023-01-29 13:10:44 +00:00
}
2023-02-18 20:53:51 +00:00
items = append ( items , fmt . Sprintf ( "<li>%s%s (<code>%s</code>) - %s</li>" , avatarHTML , html . EscapeString ( guild . Name ) , guild . ID , guild . BridgingMode . Description ( ) ) )
2022-05-28 20:03:24 +00:00
}
2023-01-29 13:10:44 +00:00
if len ( items ) == 0 {
2022-05-28 20:03:24 +00:00
ce . Reply ( "No guilds found" )
} else {
2023-01-29 13:10:44 +00:00
ce . ReplyAdvanced ( fmt . Sprintf ( "<p>List of guilds:</p><ul>%s</ul>" , strings . Join ( items , "" ) ) , false , true )
2022-05-22 19:16:42 +00:00
}
}
func fnBridgeGuild ( ce * WrappedCommandEvent ) {
if len ( ce . Args ) == 0 || len ( ce . Args ) > 2 {
ce . Reply ( "**Usage**: `$cmdprefix guilds bridge <guild ID> [--entire]" )
} else if err := ce . User . bridgeGuild ( ce . Args [ 0 ] , len ( ce . Args ) == 2 && strings . ToLower ( ce . Args [ 1 ] ) == "--entire" ) ; err != nil {
ce . Reply ( "Error bridging guild: %v" , err )
} else {
ce . Reply ( "Successfully bridged guild" )
}
}
2022-07-08 18:23:31 +00:00
2022-05-22 19:16:42 +00:00
func fnUnbridgeGuild ( ce * WrappedCommandEvent ) {
if len ( ce . Args ) != 1 {
ce . Reply ( "**Usage**: `$cmdprefix guilds unbridge <guild ID>" )
} else if err := ce . User . unbridgeGuild ( ce . Args [ 0 ] ) ; err != nil {
ce . Reply ( "Error unbridging guild: %v" , err )
} else {
ce . Reply ( "Successfully unbridged guild" )
}
}
2022-05-27 12:58:09 +00:00
2023-02-18 20:53:51 +00:00
const availableModes = "Available modes:\n" +
"* `nothing` to never bridge any messages (default when unbridged)\n" +
"* `if-portal-exists` to bridge messages in existing portals, but drop messages in unbridged channels\n" +
"* `create-on-message` to bridge all messages and create portals if necessary on incoming messages (default after bridging)\n" +
"* `everything` to bridge all messages and create portals proactively on bridge startup (default if bridged with `--entire`)\n"
func fnGuildBridgingMode ( ce * WrappedCommandEvent ) {
if len ( ce . Args ) == 0 || len ( ce . Args ) > 2 {
ce . Reply ( "**Usage**: `$cmdprefix guilds bridging-mode <guild ID> [mode]`\n\n" + availableModes )
return
}
guild := ce . Bridge . GetGuildByID ( ce . Args [ 0 ] , false )
if guild == nil {
ce . Reply ( "Guild not found" )
return
}
if len ( ce . Args ) == 1 {
ce . Reply ( "%s (%s) is currently set to %s (`%s`)\n\n%s" , guild . PlainName , guild . ID , guild . BridgingMode . Description ( ) , guild . BridgingMode . String ( ) , availableModes )
return
}
mode := database . ParseGuildBridgingMode ( ce . Args [ 1 ] )
if mode == database . GuildBridgeInvalid {
ce . Reply ( "Invalid guild bridging mode `%s`" , ce . Args [ 1 ] )
return
}
guild . BridgingMode = mode
guild . Update ( )
ce . Reply ( "Set guild bridging mode to %s" , mode . Description ( ) )
}
2022-05-27 12:58:09 +00:00
var cmdDeleteAllPortals = & commands . FullHandler {
Func : wrapCommand ( fnDeleteAllPortals ) ,
Name : "delete-all-portals" ,
Help : commands . HelpMeta {
Section : commands . HelpSectionUnclassified ,
Description : "Delete all portals." ,
} ,
RequiresAdmin : true ,
}
func fnDeleteAllPortals ( ce * WrappedCommandEvent ) {
portals := ce . Bridge . GetAllPortals ( )
2023-02-26 22:08:23 +00:00
guilds := ce . Bridge . GetAllGuilds ( )
if len ( portals ) == 0 && len ( guilds ) == 0 {
2022-05-27 12:58:09 +00:00
ce . Reply ( "Didn't find any portals" )
return
}
2023-02-26 22:08:23 +00:00
leave := func ( mxid id . RoomID , intent * appservice . IntentAPI ) {
if len ( mxid ) > 0 {
_ , _ = intent . KickUser ( mxid , & mautrix . ReqKickUser {
2022-05-27 12:58:09 +00:00
Reason : "Deleting portal" ,
UserID : ce . User . MXID ,
} )
}
}
customPuppet := ce . Bridge . GetPuppetByCustomMXID ( ce . User . MXID )
if customPuppet != nil && customPuppet . CustomIntent ( ) != nil {
intent := customPuppet . CustomIntent ( )
2023-02-26 22:08:23 +00:00
leave = func ( mxid id . RoomID , _ * appservice . IntentAPI ) {
if len ( mxid ) > 0 {
_ , _ = intent . LeaveRoom ( mxid )
_ , _ = intent . ForgetRoom ( mxid )
2022-05-27 12:58:09 +00:00
}
}
}
2023-02-26 22:08:23 +00:00
ce . Reply ( "Found %d channel portals and %d guild portals, deleting..." , len ( portals ) , len ( guilds ) )
2022-05-27 12:58:09 +00:00
for _ , portal := range portals {
portal . Delete ( )
2023-02-26 22:08:23 +00:00
leave ( portal . MXID , portal . MainIntent ( ) )
}
for _ , guild := range guilds {
guild . Delete ( )
leave ( guild . MXID , ce . Bot )
2022-05-27 12:58:09 +00:00
}
ce . Reply ( "Finished deleting portal info. Now cleaning up rooms in background." )
go func ( ) {
for _ , portal := range portals {
portal . cleanup ( false )
}
ce . Reply ( "Finished background cleanup of deleted portal rooms." )
} ( )
}