Compare commits
12 Commits
discord-br
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 1717ddb30f | |||
|
|
19e26674e6 | ||
|
|
daf6b9420c | ||
|
|
fab784bfd8 | ||
|
|
17c1938b4c | ||
|
|
ca9f032234 | ||
|
|
5c4527f1b2 | ||
|
|
11b1ea5aa6 | ||
|
|
d7292a0706 | ||
|
|
9eaf213091 | ||
|
|
c8c00a42bb | ||
|
|
2182c0d38f |
17
.github/workflows/go.yml
vendored
17
.github/workflows/go.yml
vendored
@@ -2,17 +2,14 @@ name: Go
|
|||||||
|
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
env:
|
|
||||||
GOTOOLCHAIN: local
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
go-version: ["1.24", "1.25"]
|
go-version: ["1.25", "1.26"]
|
||||||
name: Lint ${{ matrix.go-version == '1.25' && '(latest)' || '(old)' }}
|
name: Lint ${{ matrix.go-version == '1.26' && '(latest)' || '(old)' }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
@@ -26,11 +23,13 @@ jobs:
|
|||||||
- name: Install libolm
|
- name: Install libolm
|
||||||
run: sudo apt-get install libolm-dev libolm3
|
run: sudo apt-get install libolm-dev libolm3
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install goimports
|
||||||
run: |
|
run: |
|
||||||
go install golang.org/x/tools/cmd/goimports@latest
|
go install golang.org/x/tools/cmd/goimports@latest
|
||||||
go install honnef.co/go/tools/cmd/staticcheck@latest
|
|
||||||
export PATH="$HOME/go/bin:$PATH"
|
export PATH="$HOME/go/bin:$PATH"
|
||||||
|
|
||||||
- name: Run pre-commit
|
- name: Install pre-commit
|
||||||
uses: pre-commit/action@v3.0.1
|
run: pip install pre-commit
|
||||||
|
|
||||||
|
- name: Lint
|
||||||
|
run: pre-commit run -a
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
include:
|
include:
|
||||||
- project: 'mautrix/ci'
|
- project: 'mautrix/ci'
|
||||||
file: '/gov2-as-default.yml'
|
file: '/go.yml'
|
||||||
|
|||||||
16
.idea/icon.svg
generated
16
.idea/icon.svg
generated
@@ -1,16 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
viewBox="0 0 128 128"
|
|
||||||
version="1.1"
|
|
||||||
id="svg4"
|
|
||||||
width="128"
|
|
||||||
height="128"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs8" />
|
|
||||||
<path
|
|
||||||
fill="#5865f2"
|
|
||||||
d="m 108.12978,23.89 a 105.15,105.15 0 0 0 -26.230005,-8.07 72.06,72.06 0 0 0 -3.36,6.83 97.68,97.68 0 0 0 -29.11,0 72.37,72.37 0 0 0 -3.36,-6.83 105.89,105.89 0 0 0 -26.25,8.09 C 3.2197751,48.47 -1.2802249,72.42 0.96977514,96.03 v 0 a 105.73,105.73 0 0 0 32.16999986,16.15 77.7,77.7 0 0 0 6.89,-11.11 68.42,68.42 0 0 1 -10.85,-5.18 c 0.91,-0.66 1.8,-1.34 2.66,-2 a 75.57,75.57 0 0 0 64.32,0 c 0.87,0.71 1.76,1.39 2.66,2 a 68.68,68.68 0 0 1 -10.87,5.19 77,77 0 0 0 6.89,11.1 105.25,105.25 0 0 0 32.190005,-16.14 v 0 c 2.64,-27.38 -4.51,-51.11 -18.9,-72.15 z M 42.879775,81.51 c -6.27,0 -11.45,-5.69 -11.45,-12.69 0,-7 5,-12.74 11.43,-12.74 6.43,0 11.57,5.74 11.46,12.74 -0.11,7 -5.05,12.69 -11.44,12.69 z m 42.24,0 c -6.28,0 -11.44,-5.69 -11.44,-12.69 0,-7 5,-12.74 11.44,-12.74 6.44,0 11.54,5.74 11.43,12.74 -0.11,7 -5.04,12.69 -11.43,12.69 z"
|
|
||||||
id="path2" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -1,6 +1,6 @@
|
|||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
rev: v6.0.0
|
rev: v4.5.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: trailing-whitespace
|
- id: trailing-whitespace
|
||||||
exclude_types: [markdown]
|
exclude_types: [markdown]
|
||||||
@@ -9,18 +9,12 @@ repos:
|
|||||||
- id: check-added-large-files
|
- id: check-added-large-files
|
||||||
|
|
||||||
- repo: https://github.com/tekwizely/pre-commit-golang
|
- repo: https://github.com/tekwizely/pre-commit-golang
|
||||||
rev: v1.0.0-rc.4
|
rev: v1.0.0-rc.1
|
||||||
hooks:
|
hooks:
|
||||||
- id: go-imports-repo
|
- id: go-imports-repo
|
||||||
args:
|
|
||||||
- "-local"
|
|
||||||
- "go.mau.fi/mautrix-discord"
|
|
||||||
- "-w"
|
|
||||||
- id: go-vet-repo-mod
|
- id: go-vet-repo-mod
|
||||||
- id: go-staticcheck-repo-mod
|
|
||||||
|
|
||||||
- repo: https://github.com/beeper/pre-commit-go
|
- repo: https://github.com/beeper/pre-commit-go
|
||||||
rev: v0.4.2
|
rev: v0.3.1
|
||||||
hooks:
|
hooks:
|
||||||
- id: zerolog-ban-msgf
|
- id: zerolog-ban-msgf
|
||||||
- id: zerolog-use-stringer
|
|
||||||
|
|||||||
12
CHANGELOG.md
12
CHANGELOG.md
@@ -1,3 +1,15 @@
|
|||||||
|
# v0.7.6 (2026-02-16)
|
||||||
|
|
||||||
|
* Bumped minimum Go version to 1.25.
|
||||||
|
* Updated Docker image to Alpine 3.23.
|
||||||
|
* Added support for following tombstones.
|
||||||
|
* Added support for disabling link previews in messages sent to Discord using
|
||||||
|
[MSC4095].
|
||||||
|
* Added support for federation thumbnail endpoint when using direct media.
|
||||||
|
* Disabled using `restricted` join rules by default.
|
||||||
|
|
||||||
|
[MSC4095]: https://github.com/matrix-org/matrix-spec-proposals/pull/4095
|
||||||
|
|
||||||
# v0.7.5 (2025-07-16)
|
# v0.7.5 (2025-07-16)
|
||||||
|
|
||||||
* Fixed federation key response when using direct media.
|
* Fixed federation key response when using direct media.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM golang:1-alpine3.22 AS builder
|
FROM golang:1-alpine3.23 AS builder
|
||||||
|
|
||||||
RUN apk add --no-cache git ca-certificates build-base su-exec olm-dev
|
RUN apk add --no-cache git ca-certificates build-base su-exec olm-dev
|
||||||
|
|
||||||
@@ -6,7 +6,7 @@ COPY . /build
|
|||||||
WORKDIR /build
|
WORKDIR /build
|
||||||
RUN go build -o /usr/bin/mautrix-discord
|
RUN go build -o /usr/bin/mautrix-discord
|
||||||
|
|
||||||
FROM alpine:3.22
|
FROM alpine:3.23
|
||||||
|
|
||||||
ENV UID=1337 \
|
ENV UID=1337 \
|
||||||
GID=1337
|
GID=1337
|
||||||
@@ -14,7 +14,9 @@ ENV UID=1337 \
|
|||||||
RUN apk add --no-cache ffmpeg su-exec ca-certificates olm bash jq curl yq-go lottieconverter
|
RUN apk add --no-cache ffmpeg su-exec ca-certificates olm bash jq curl yq-go lottieconverter
|
||||||
|
|
||||||
COPY --from=builder /usr/bin/mautrix-discord /usr/bin/mautrix-discord
|
COPY --from=builder /usr/bin/mautrix-discord /usr/bin/mautrix-discord
|
||||||
|
COPY --from=builder /build/example-config.yaml /opt/mautrix-discord/example-config.yaml
|
||||||
COPY --from=builder /build/docker-run.sh /docker-run.sh
|
COPY --from=builder /build/docker-run.sh /docker-run.sh
|
||||||
VOLUME /data
|
VOLUME /data
|
||||||
|
WORKDIR /data
|
||||||
|
|
||||||
CMD ["/docker-run.sh"]
|
CMD ["/docker-run.sh"]
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM alpine:3.22
|
FROM alpine:3.23
|
||||||
|
|
||||||
ENV UID=1337 \
|
ENV UID=1337 \
|
||||||
GID=1337
|
GID=1337
|
||||||
@@ -7,7 +7,9 @@ RUN apk add --no-cache ffmpeg su-exec ca-certificates bash jq curl yq-go lottiec
|
|||||||
|
|
||||||
ARG EXECUTABLE=./mautrix-discord
|
ARG EXECUTABLE=./mautrix-discord
|
||||||
COPY $EXECUTABLE /usr/bin/mautrix-discord
|
COPY $EXECUTABLE /usr/bin/mautrix-discord
|
||||||
|
COPY ./example-config.yaml /opt/mautrix-discord/example-config.yaml
|
||||||
COPY ./docker-run.sh /docker-run.sh
|
COPY ./docker-run.sh /docker-run.sh
|
||||||
VOLUME /data
|
VOLUME /data
|
||||||
|
WORKDIR /data
|
||||||
|
|
||||||
CMD ["/docker-run.sh"]
|
CMD ["/docker-run.sh"]
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
The mautrix-discord developers grant the following special exceptions:
|
|
||||||
|
|
||||||
* to Beeper the right to embed the program in the Beeper clients and servers,
|
|
||||||
and use and distribute the collective work without applying the license to
|
|
||||||
the whole.
|
|
||||||
* to Element the right to distribute compiled binaries of the program as a part
|
|
||||||
of the Element Server Suite and other server bundles without applying the
|
|
||||||
license.
|
|
||||||
|
|
||||||
All exceptions are only valid under the condition that any modifications to
|
|
||||||
the source code of mautrix-discord remain publicly available under the terms
|
|
||||||
of the GNU AGPL version 3 or later.
|
|
||||||
@@ -1,12 +1,4 @@
|
|||||||
# mautrix-discord
|
# mautrix-discord
|
||||||
|
|
||||||
> [!CAUTION]
|
|
||||||
> This branch houses a work-in-progress rewrite of the bridge to interface with
|
|
||||||
> [Megabridge/"bridgev2"][bridgev2]. This branch is **NOT** ready for general
|
|
||||||
> consumption, especially for self-hosting.
|
|
||||||
|
|
||||||
[bridgev2]: https://github.com/mautrix/go/tree/38278ef37d199d3a9deba04b825a094eea6c1d10/bridgev2/unorganized-docs
|
|
||||||
|
|
||||||
A Matrix-Discord puppeting bridge based on [discordgo](https://github.com/bwmarrin/discordgo).
|
A Matrix-Discord puppeting bridge based on [discordgo](https://github.com/bwmarrin/discordgo).
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|||||||
79
ROADMAP.md
79
ROADMAP.md
@@ -1,24 +1,24 @@
|
|||||||
# Features & roadmap
|
# Features & roadmap
|
||||||
* Matrix → Discord
|
* Matrix → Discord
|
||||||
* [ ] Message content
|
* [ ] Message content
|
||||||
* [ ] Plain text
|
* [x] Plain text
|
||||||
* [ ] Formatted messages
|
* [x] Formatted messages
|
||||||
* [ ] Media/files
|
* [x] Media/files
|
||||||
* [ ] Replies
|
* [x] Replies
|
||||||
* [ ] Threads
|
* [x] Threads
|
||||||
* [ ] Custom emojis
|
* [ ] Custom emojis
|
||||||
* [ ] Message redactions
|
* [x] Message redactions
|
||||||
* [ ] Reactions
|
* [x] Reactions
|
||||||
* [ ] Unicode emojis
|
* [x] Unicode emojis
|
||||||
* [ ] Custom emojis (re-reacting with custom emojis sent from Discord already works)
|
* [ ] Custom emojis (re-reacting with custom emojis sent from Discord already works)
|
||||||
* [ ] Executing Discord bot commands
|
* [ ] Executing Discord bot commands
|
||||||
* [ ] Basic arguments and subcommands
|
* [x] Basic arguments and subcommands
|
||||||
* [ ] Subcommand groups
|
* [ ] Subcommand groups
|
||||||
* [ ] Mention arguments
|
* [ ] Mention arguments
|
||||||
* [ ] Attachment arguments
|
* [ ] Attachment arguments
|
||||||
* [ ] Presence
|
* [ ] Presence
|
||||||
* [ ] Typing notifications
|
* [x] Typing notifications
|
||||||
* [ ] Own read status
|
* [x] Own read status
|
||||||
* [ ] Power level
|
* [ ] Power level
|
||||||
* [ ] Membership actions
|
* [ ] Membership actions
|
||||||
* [ ] Invite
|
* [ ] Invite
|
||||||
@@ -31,37 +31,37 @@
|
|||||||
* [ ] Initial room metadata
|
* [ ] Initial room metadata
|
||||||
* Discord → Matrix
|
* Discord → Matrix
|
||||||
* [ ] Message content
|
* [ ] Message content
|
||||||
* [ ] Plain text
|
* [x] Plain text
|
||||||
* [ ] Formatted messages
|
* [x] Formatted messages
|
||||||
* [ ] Media/files
|
* [x] Media/files
|
||||||
* [ ] Replies
|
* [x] Replies
|
||||||
* [ ] Threads
|
* [x] Threads
|
||||||
* [ ] Auto-joining threads when opening
|
* [x] Auto-joining threads when opening
|
||||||
* [ ] Backfilling threads after joining
|
* [ ] Backfilling threads after joining
|
||||||
* [ ] Custom emojis
|
* [x] Custom emojis
|
||||||
* [ ] Embeds
|
* [x] Embeds
|
||||||
* [ ] Interactive components
|
* [ ] Interactive components
|
||||||
* [ ] Interactions (commands)
|
* [x] Interactions (commands)
|
||||||
* [ ] @everyone/@here mentions into @room
|
* [x] @everyone/@here mentions into @room
|
||||||
* [ ] Message deletions
|
* [x] Message deletions
|
||||||
* [ ] Reactions
|
* [x] Reactions
|
||||||
* [ ] Unicode emojis
|
* [x] Unicode emojis
|
||||||
* [ ] Custom emojis ([MSC4027](https://github.com/matrix-org/matrix-spec-proposals/pull/4027))
|
* [x] Custom emojis ([MSC4027](https://github.com/matrix-org/matrix-spec-proposals/pull/4027))
|
||||||
* [ ] Avatars
|
* [x] Avatars
|
||||||
* [ ] Presence
|
* [ ] Presence
|
||||||
* [ ] Typing notifications (currently partial support: DMs work after you type in them)
|
* [ ] Typing notifications (currently partial support: DMs work after you type in them)
|
||||||
* [ ] Own read status
|
* [x] Own read status
|
||||||
* [ ] Role permissions
|
* [ ] Role permissions
|
||||||
* [ ] Membership actions
|
* [ ] Membership actions
|
||||||
* [ ] Invite
|
* [ ] Invite
|
||||||
* [ ] Join
|
* [ ] Join
|
||||||
* [ ] Leave
|
* [ ] Leave
|
||||||
* [ ] Kick
|
* [ ] Kick
|
||||||
* [ ] Channel/group DM metadata changes
|
* [x] Channel/group DM metadata changes
|
||||||
* [ ] Title
|
* [x] Title
|
||||||
* [ ] Avatar
|
* [x] Avatar
|
||||||
* [ ] Description
|
* [x] Description
|
||||||
* [ ] Initial channel/group DM metadata
|
* [x] Initial channel/group DM metadata
|
||||||
* [ ] User metadata changes
|
* [ ] User metadata changes
|
||||||
* [ ] Display name
|
* [ ] Display name
|
||||||
* [ ] Avatar
|
* [ ] Avatar
|
||||||
@@ -69,12 +69,11 @@
|
|||||||
* [ ] Display name
|
* [ ] Display name
|
||||||
* [ ] Avatar
|
* [ ] Avatar
|
||||||
* Misc
|
* Misc
|
||||||
* [ ] Login methods
|
* [x] Login methods
|
||||||
* [ ] QR scan from mobile
|
* [x] QR scan from mobile
|
||||||
* [ ] Username/password
|
* [x] Manually providing access token
|
||||||
* [ ] Manually providing access token
|
* [x] Automatic portal creation
|
||||||
* [ ] Automatic portal creation
|
* [x] After login
|
||||||
* [ ] After login
|
* [x] When receiving DM
|
||||||
* [ ] When receiving DM
|
|
||||||
* [ ] Private chat creation by inviting Matrix puppet of Discord user to new room
|
* [ ] Private chat creation by inviting Matrix puppet of Discord user to new room
|
||||||
* [ ] Option to use own Matrix account for messages sent from other Discord clients
|
* [x] Option to use own Matrix account for messages sent from other Discord clients
|
||||||
|
|||||||
353
attachments.go
Normal file
353
attachments.go
Normal file
@@ -0,0 +1,353 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"context"
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"image"
|
||||||
|
"io"
|
||||||
|
"net/http"
|
||||||
|
"os"
|
||||||
|
"os/exec"
|
||||||
|
"path/filepath"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
"github.com/gabriel-vasile/mimetype"
|
||||||
|
"go.mau.fi/util/exsync"
|
||||||
|
"go.mau.fi/util/ffmpeg"
|
||||||
|
"maunium.net/go/mautrix"
|
||||||
|
"maunium.net/go/mautrix/appservice"
|
||||||
|
"maunium.net/go/mautrix/crypto/attachment"
|
||||||
|
"maunium.net/go/mautrix/event"
|
||||||
|
"maunium.net/go/mautrix/id"
|
||||||
|
|
||||||
|
"go.mau.fi/mautrix-discord/database"
|
||||||
|
)
|
||||||
|
|
||||||
|
func downloadDiscordAttachment(cli *http.Client, url string, maxSize int64) ([]byte, error) {
|
||||||
|
req, err := http.NewRequest(http.MethodGet, url, nil)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
for key, value := range discordgo.DroidDownloadHeaders {
|
||||||
|
req.Header.Set(key, value)
|
||||||
|
}
|
||||||
|
|
||||||
|
resp, err := cli.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
|
if resp.StatusCode > 300 {
|
||||||
|
data, _ := io.ReadAll(resp.Body)
|
||||||
|
return nil, fmt.Errorf("unexpected status %d downloading %s: %s", resp.StatusCode, url, data)
|
||||||
|
}
|
||||||
|
if resp.Header.Get("Content-Length") != "" {
|
||||||
|
length, err := strconv.ParseInt(resp.Header.Get("Content-Length"), 10, 64)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("failed to parse content length: %w", err)
|
||||||
|
} else if length > maxSize {
|
||||||
|
return nil, fmt.Errorf("attachment too large (%d > %d)", length, maxSize)
|
||||||
|
}
|
||||||
|
return io.ReadAll(resp.Body)
|
||||||
|
} else {
|
||||||
|
var mbe *http.MaxBytesError
|
||||||
|
data, err := io.ReadAll(http.MaxBytesReader(nil, resp.Body, maxSize))
|
||||||
|
if err != nil && errors.As(err, &mbe) {
|
||||||
|
return nil, fmt.Errorf("attachment too large (over %d)", maxSize)
|
||||||
|
}
|
||||||
|
return data, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func uploadDiscordAttachment(cli *http.Client, url string, data []byte) error {
|
||||||
|
req, err := http.NewRequest(http.MethodPut, url, bytes.NewReader(data))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
for key, value := range discordgo.DroidBaseHeaders {
|
||||||
|
req.Header.Set(key, value)
|
||||||
|
}
|
||||||
|
req.Header.Set("Content-Type", "application/octet-stream")
|
||||||
|
req.Header.Set("Referer", "https://discord.com/")
|
||||||
|
req.Header.Set("Sec-Fetch-Dest", "empty")
|
||||||
|
req.Header.Set("Sec-Fetch-Mode", "cors")
|
||||||
|
req.Header.Set("Sec-Fetch-Site", "cross-site")
|
||||||
|
|
||||||
|
resp, err := cli.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
|
if resp.StatusCode > 300 {
|
||||||
|
respData, _ := io.ReadAll(resp.Body)
|
||||||
|
return fmt.Errorf("unexpected status %d: %s", resp.StatusCode, respData)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func downloadMatrixAttachment(intent *appservice.IntentAPI, content *event.MessageEventContent) ([]byte, error) {
|
||||||
|
var file *event.EncryptedFileInfo
|
||||||
|
rawMXC := content.URL
|
||||||
|
|
||||||
|
if content.File != nil {
|
||||||
|
file = content.File
|
||||||
|
rawMXC = file.URL
|
||||||
|
}
|
||||||
|
|
||||||
|
mxc, err := rawMXC.Parse()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
data, err := intent.DownloadBytes(mxc)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if file != nil {
|
||||||
|
err = file.DecryptInPlace(data)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return data, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) uploadMatrixAttachment(intent *appservice.IntentAPI, data []byte, url string, encrypt bool, meta AttachmentMeta, semaWg *sync.WaitGroup) (*database.File, error) {
|
||||||
|
dbFile := br.DB.File.New()
|
||||||
|
dbFile.Timestamp = time.Now()
|
||||||
|
dbFile.URL = url
|
||||||
|
dbFile.ID = meta.AttachmentID
|
||||||
|
dbFile.EmojiName = meta.EmojiName
|
||||||
|
dbFile.Size = len(data)
|
||||||
|
dbFile.MimeType = mimetype.Detect(data).String()
|
||||||
|
if meta.MimeType == "" {
|
||||||
|
meta.MimeType = dbFile.MimeType
|
||||||
|
}
|
||||||
|
if strings.HasPrefix(meta.MimeType, "image/") {
|
||||||
|
cfg, _, _ := image.DecodeConfig(bytes.NewReader(data))
|
||||||
|
dbFile.Width = cfg.Width
|
||||||
|
dbFile.Height = cfg.Height
|
||||||
|
}
|
||||||
|
|
||||||
|
uploadMime := meta.MimeType
|
||||||
|
if encrypt {
|
||||||
|
dbFile.Encrypted = true
|
||||||
|
dbFile.DecryptionInfo = attachment.NewEncryptedFile()
|
||||||
|
dbFile.DecryptionInfo.EncryptInPlace(data)
|
||||||
|
uploadMime = "application/octet-stream"
|
||||||
|
}
|
||||||
|
req := mautrix.ReqUploadMedia{
|
||||||
|
ContentBytes: data,
|
||||||
|
ContentType: uploadMime,
|
||||||
|
}
|
||||||
|
if br.Config.Homeserver.AsyncMedia {
|
||||||
|
resp, err := intent.CreateMXC()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
dbFile.MXC = resp.ContentURI
|
||||||
|
req.MXC = resp.ContentURI
|
||||||
|
req.UnstableUploadURL = resp.UnstableUploadURL
|
||||||
|
semaWg.Add(1)
|
||||||
|
go func() {
|
||||||
|
defer semaWg.Done()
|
||||||
|
_, err = intent.UploadMedia(req)
|
||||||
|
if err != nil {
|
||||||
|
br.Log.Errorfln("Failed to upload %s: %v", req.MXC, err)
|
||||||
|
dbFile.Delete()
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
} else {
|
||||||
|
uploaded, err := intent.UploadMedia(req)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
dbFile.MXC = uploaded.ContentURI
|
||||||
|
}
|
||||||
|
return dbFile, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type AttachmentMeta struct {
|
||||||
|
AttachmentID string
|
||||||
|
MimeType string
|
||||||
|
EmojiName string
|
||||||
|
CopyIfMissing bool
|
||||||
|
Converter func([]byte) ([]byte, string, error)
|
||||||
|
}
|
||||||
|
|
||||||
|
var NoMeta = AttachmentMeta{}
|
||||||
|
|
||||||
|
type attachmentKey struct {
|
||||||
|
URL string
|
||||||
|
Encrypt bool
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) convertLottie(data []byte) ([]byte, string, error) {
|
||||||
|
fps := br.Config.Bridge.AnimatedSticker.Args.FPS
|
||||||
|
width := br.Config.Bridge.AnimatedSticker.Args.Width
|
||||||
|
height := br.Config.Bridge.AnimatedSticker.Args.Height
|
||||||
|
target := br.Config.Bridge.AnimatedSticker.Target
|
||||||
|
var lottieTarget, outputMime string
|
||||||
|
switch target {
|
||||||
|
case "png":
|
||||||
|
lottieTarget = "png"
|
||||||
|
outputMime = "image/png"
|
||||||
|
fps = 1
|
||||||
|
case "gif":
|
||||||
|
lottieTarget = "gif"
|
||||||
|
outputMime = "image/gif"
|
||||||
|
case "webm":
|
||||||
|
lottieTarget = "pngs"
|
||||||
|
outputMime = "video/webm"
|
||||||
|
case "webp":
|
||||||
|
lottieTarget = "pngs"
|
||||||
|
outputMime = "image/webp"
|
||||||
|
case "disable":
|
||||||
|
return data, "application/json", nil
|
||||||
|
default:
|
||||||
|
return nil, "", fmt.Errorf("invalid animated sticker target %q in bridge config", br.Config.Bridge.AnimatedSticker.Target)
|
||||||
|
}
|
||||||
|
|
||||||
|
ctx := context.Background()
|
||||||
|
tempdir, err := os.MkdirTemp("", "mautrix_discord_lottie_")
|
||||||
|
if err != nil {
|
||||||
|
return nil, "", fmt.Errorf("failed to create temp dir: %w", err)
|
||||||
|
}
|
||||||
|
defer func() {
|
||||||
|
removErr := os.RemoveAll(tempdir)
|
||||||
|
if removErr != nil {
|
||||||
|
br.Log.Warnfln("Failed to delete lottie conversion temp dir: %v", removErr)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
lottieOutput := filepath.Join(tempdir, "out_")
|
||||||
|
if lottieTarget != "pngs" {
|
||||||
|
lottieOutput = filepath.Join(tempdir, "output."+lottieTarget)
|
||||||
|
}
|
||||||
|
cmd := exec.CommandContext(ctx, "lottieconverter", "-", lottieOutput, lottieTarget, fmt.Sprintf("%dx%d", width, height), strconv.Itoa(fps))
|
||||||
|
cmd.Stdin = bytes.NewReader(data)
|
||||||
|
err = cmd.Run()
|
||||||
|
if err != nil {
|
||||||
|
return nil, "", fmt.Errorf("failed to run lottieconverter: %w", err)
|
||||||
|
}
|
||||||
|
var path string
|
||||||
|
if lottieTarget == "pngs" {
|
||||||
|
var videoCodec string
|
||||||
|
outputExtension := "." + target
|
||||||
|
if target == "webm" {
|
||||||
|
videoCodec = "libvpx-vp9"
|
||||||
|
} else if target == "webp" {
|
||||||
|
videoCodec = "libwebp_anim"
|
||||||
|
} else {
|
||||||
|
panic(fmt.Errorf("impossible case: unknown target %q", target))
|
||||||
|
}
|
||||||
|
path, err = ffmpeg.ConvertPath(
|
||||||
|
ctx, lottieOutput+"*.png", outputExtension,
|
||||||
|
[]string{"-framerate", strconv.Itoa(fps), "-pattern_type", "glob"},
|
||||||
|
[]string{"-c:v", videoCodec, "-pix_fmt", "yuva420p", "-f", target},
|
||||||
|
false,
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
return nil, "", fmt.Errorf("failed to run ffmpeg: %w", err)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
path = lottieOutput
|
||||||
|
}
|
||||||
|
data, err = os.ReadFile(path)
|
||||||
|
if err != nil {
|
||||||
|
return nil, "", fmt.Errorf("failed to read converted file: %w", err)
|
||||||
|
}
|
||||||
|
return data, outputMime, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) copyAttachmentToMatrix(intent *appservice.IntentAPI, url string, encrypt bool, meta AttachmentMeta) (returnDBFile *database.File, returnErr error) {
|
||||||
|
isCacheable := br.Config.Bridge.CacheMedia != "never" && (br.Config.Bridge.CacheMedia == "always" || !encrypt)
|
||||||
|
returnDBFile = br.DB.File.Get(url, encrypt)
|
||||||
|
if returnDBFile == nil {
|
||||||
|
transferKey := attachmentKey{url, encrypt}
|
||||||
|
once, _ := br.attachmentTransfers.GetOrSet(transferKey, &exsync.ReturnableOnce[*database.File]{})
|
||||||
|
returnDBFile, returnErr = once.Do(func() (onceDBFile *database.File, onceErr error) {
|
||||||
|
if isCacheable {
|
||||||
|
onceDBFile = br.DB.File.Get(url, encrypt)
|
||||||
|
if onceDBFile != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const attachmentSizeVal = 1
|
||||||
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
||||||
|
onceErr = br.parallelAttachmentSemaphore.Acquire(ctx, attachmentSizeVal)
|
||||||
|
cancel()
|
||||||
|
if onceErr != nil {
|
||||||
|
br.ZLog.Warn().Err(onceErr).Msg("Failed to acquire semaphore")
|
||||||
|
onceErr = fmt.Errorf("reuploading timed out")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
var semaWg sync.WaitGroup
|
||||||
|
semaWg.Add(1)
|
||||||
|
defer semaWg.Done()
|
||||||
|
go func() {
|
||||||
|
semaWg.Wait()
|
||||||
|
br.parallelAttachmentSemaphore.Release(attachmentSizeVal)
|
||||||
|
}()
|
||||||
|
|
||||||
|
var data []byte
|
||||||
|
data, onceErr = downloadDiscordAttachment(http.DefaultClient, url, br.MediaConfig.UploadSize)
|
||||||
|
if onceErr != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if meta.Converter != nil {
|
||||||
|
data, meta.MimeType, onceErr = meta.Converter(data)
|
||||||
|
if onceErr != nil {
|
||||||
|
onceErr = fmt.Errorf("failed to convert attachment: %w", onceErr)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onceDBFile, onceErr = br.uploadMatrixAttachment(intent, data, url, encrypt, meta, &semaWg)
|
||||||
|
if onceErr != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if isCacheable {
|
||||||
|
onceDBFile.Insert(nil)
|
||||||
|
}
|
||||||
|
br.attachmentTransfers.Delete(transferKey)
|
||||||
|
return
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) getEmojiMXCByDiscordID(emojiID, name string, animated bool) id.ContentURI {
|
||||||
|
mxc := portal.bridge.DMA.EmojiMXC(emojiID, name, animated)
|
||||||
|
if !mxc.IsEmpty() {
|
||||||
|
return mxc
|
||||||
|
}
|
||||||
|
var url, mimeType string
|
||||||
|
if animated {
|
||||||
|
url = discordgo.EndpointEmojiAnimated(emojiID)
|
||||||
|
mimeType = "image/gif"
|
||||||
|
} else {
|
||||||
|
url = discordgo.EndpointEmoji(emojiID)
|
||||||
|
mimeType = "image/png"
|
||||||
|
}
|
||||||
|
dbFile, err := portal.bridge.copyAttachmentToMatrix(portal.MainIntent(), url, false, AttachmentMeta{
|
||||||
|
AttachmentID: emojiID,
|
||||||
|
MimeType: mimeType,
|
||||||
|
EmojiName: name,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
portal.log.Warn().Err(err).Str("emoji_id", emojiID).Msg("Failed to copy emoji to Matrix")
|
||||||
|
return id.ContentURI{}
|
||||||
|
}
|
||||||
|
return dbFile.MXC
|
||||||
|
}
|
||||||
383
backfill.go
Normal file
383
backfill.go
Normal file
@@ -0,0 +1,383 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"crypto/sha256"
|
||||||
|
"encoding/base64"
|
||||||
|
"fmt"
|
||||||
|
"sort"
|
||||||
|
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
"github.com/rs/zerolog"
|
||||||
|
"maunium.net/go/mautrix"
|
||||||
|
"maunium.net/go/mautrix/event"
|
||||||
|
"maunium.net/go/mautrix/id"
|
||||||
|
|
||||||
|
"go.mau.fi/mautrix-discord/database"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (portal *Portal) forwardBackfillInitial(source *User, thread *Thread) {
|
||||||
|
log := portal.log
|
||||||
|
defer func() {
|
||||||
|
log.Debug().Msg("Forward backfill finished, unlocking lock")
|
||||||
|
portal.forwardBackfillLock.Unlock()
|
||||||
|
}()
|
||||||
|
// This should only be called from CreateMatrixRoom which locks forwardBackfillLock before creating the room.
|
||||||
|
if portal.forwardBackfillLock.TryLock() {
|
||||||
|
panic("forwardBackfillInitial() called without locking forwardBackfillLock")
|
||||||
|
}
|
||||||
|
|
||||||
|
limit := portal.bridge.Config.Bridge.Backfill.Limits.Initial.Channel
|
||||||
|
if portal.GuildID == "" {
|
||||||
|
limit = portal.bridge.Config.Bridge.Backfill.Limits.Initial.DM
|
||||||
|
if thread != nil {
|
||||||
|
limit = portal.bridge.Config.Bridge.Backfill.Limits.Initial.Thread
|
||||||
|
thread.initialBackfillAttempted = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if limit == 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
with := log.With().
|
||||||
|
Str("action", "initial backfill").
|
||||||
|
Str("room_id", portal.MXID.String()).
|
||||||
|
Int("limit", limit)
|
||||||
|
if thread != nil {
|
||||||
|
with = with.Str("thread_id", thread.ID)
|
||||||
|
}
|
||||||
|
log = with.Logger()
|
||||||
|
|
||||||
|
portal.backfillLimited(log, source, limit, "", thread)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) ForwardBackfillMissed(source *User, serverLastMessageID string, thread *Thread) {
|
||||||
|
if portal.MXID == "" {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
limit := portal.bridge.Config.Bridge.Backfill.Limits.Missed.Channel
|
||||||
|
if portal.GuildID == "" {
|
||||||
|
limit = portal.bridge.Config.Bridge.Backfill.Limits.Missed.DM
|
||||||
|
if thread != nil {
|
||||||
|
limit = portal.bridge.Config.Bridge.Backfill.Limits.Missed.Thread
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if limit == 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
with := portal.log.With().
|
||||||
|
Str("action", "missed event backfill").
|
||||||
|
Str("room_id", portal.MXID.String()).
|
||||||
|
Int("limit", limit)
|
||||||
|
if thread != nil {
|
||||||
|
with = with.Str("thread_id", thread.ID)
|
||||||
|
}
|
||||||
|
log := with.Logger()
|
||||||
|
|
||||||
|
portal.forwardBackfillLock.Lock()
|
||||||
|
defer portal.forwardBackfillLock.Unlock()
|
||||||
|
|
||||||
|
var lastMessage *database.Message
|
||||||
|
if thread != nil {
|
||||||
|
lastMessage = portal.bridge.DB.Message.GetLastInThread(portal.Key, thread.ID)
|
||||||
|
} else {
|
||||||
|
lastMessage = portal.bridge.DB.Message.GetLast(portal.Key)
|
||||||
|
}
|
||||||
|
if lastMessage == nil || serverLastMessageID == "" {
|
||||||
|
log.Debug().Msg("Not backfilling, no last message in database or no last message in metadata")
|
||||||
|
return
|
||||||
|
} else if !shouldBackfill(lastMessage.DiscordID, serverLastMessageID) {
|
||||||
|
log.Debug().
|
||||||
|
Str("last_bridged_message", lastMessage.DiscordID).
|
||||||
|
Str("last_server_message", serverLastMessageID).
|
||||||
|
Msg("Not backfilling, last message in database is newer than last message in metadata")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
log.Debug().
|
||||||
|
Str("last_bridged_message", lastMessage.DiscordID).
|
||||||
|
Str("last_server_message", serverLastMessageID).
|
||||||
|
Msg("Backfilling missed messages")
|
||||||
|
if limit < 0 {
|
||||||
|
portal.backfillUnlimitedMissed(log, source, lastMessage.DiscordID, thread)
|
||||||
|
} else {
|
||||||
|
portal.backfillLimited(log, source, limit, lastMessage.DiscordID, thread)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const messageFetchChunkSize = 50
|
||||||
|
|
||||||
|
func (portal *Portal) collectBackfillMessages(log zerolog.Logger, source *User, limit int, until string, thread *Thread) ([]*discordgo.Message, bool, error) {
|
||||||
|
var messages []*discordgo.Message
|
||||||
|
var before string
|
||||||
|
var foundAll bool
|
||||||
|
protoChannelID := portal.Key.ChannelID
|
||||||
|
if thread != nil {
|
||||||
|
protoChannelID = thread.ID
|
||||||
|
}
|
||||||
|
for {
|
||||||
|
log.Debug().Str("before_id", before).Msg("Fetching messages for backfill")
|
||||||
|
newMessages, err := source.Session.ChannelMessages(protoChannelID, messageFetchChunkSize, before, "", "", portal.RefererOptIfUser(source.Session, protoChannelID)...)
|
||||||
|
if err != nil {
|
||||||
|
return nil, false, err
|
||||||
|
}
|
||||||
|
if until != "" {
|
||||||
|
for i, msg := range newMessages {
|
||||||
|
if compareMessageIDs(msg.ID, until) <= 0 {
|
||||||
|
log.Debug().
|
||||||
|
Str("message_id", msg.ID).
|
||||||
|
Str("until_id", until).
|
||||||
|
Msg("Found message that was already bridged")
|
||||||
|
newMessages = newMessages[:i]
|
||||||
|
foundAll = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
messages = append(messages, newMessages...)
|
||||||
|
log.Debug().Int("count", len(newMessages)).Msg("Added messages to backfill collection")
|
||||||
|
if len(newMessages) < messageFetchChunkSize || len(messages) >= limit {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
before = newMessages[len(newMessages)-1].ID
|
||||||
|
}
|
||||||
|
if len(messages) > limit {
|
||||||
|
foundAll = false
|
||||||
|
messages = messages[:limit]
|
||||||
|
}
|
||||||
|
return messages, foundAll, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) backfillLimited(log zerolog.Logger, source *User, limit int, after string, thread *Thread) {
|
||||||
|
messages, foundAll, err := portal.collectBackfillMessages(log, source, limit, after, thread)
|
||||||
|
if err != nil {
|
||||||
|
if source.handlePossible40002(err) {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
log.Err(err).Msg("Error collecting messages to forward backfill")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
log.Info().
|
||||||
|
Int("count", len(messages)).
|
||||||
|
Bool("found_all", foundAll).
|
||||||
|
Msg("Collected messages to backfill")
|
||||||
|
sort.Sort(MessageSlice(messages))
|
||||||
|
if !foundAll && after != "" {
|
||||||
|
_, err = portal.sendMatrixMessage(portal.MainIntent(), event.EventMessage, &event.MessageEventContent{
|
||||||
|
MsgType: event.MsgNotice,
|
||||||
|
Body: "Some messages may have been missed here while the bridge was offline.",
|
||||||
|
}, nil, 0)
|
||||||
|
if err != nil {
|
||||||
|
log.Warn().Err(err).Msg("Failed to send missed message warning")
|
||||||
|
} else {
|
||||||
|
log.Debug().Msg("Sent warning about possibly missed messages")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
portal.sendBackfillBatch(log, source, messages, thread)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) backfillUnlimitedMissed(log zerolog.Logger, source *User, after string, thread *Thread) {
|
||||||
|
protoChannelID := portal.Key.ChannelID
|
||||||
|
if thread != nil {
|
||||||
|
protoChannelID = thread.ID
|
||||||
|
}
|
||||||
|
for {
|
||||||
|
log.Debug().Str("after_id", after).Msg("Fetching chunk of messages to backfill")
|
||||||
|
messages, err := source.Session.ChannelMessages(protoChannelID, messageFetchChunkSize, "", after, "", portal.RefererOptIfUser(source.Session, protoChannelID)...)
|
||||||
|
if err != nil {
|
||||||
|
log.Err(err).Msg("Error fetching chunk of messages to forward backfill")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
log.Debug().Int("count", len(messages)).Msg("Fetched chunk of messages to backfill")
|
||||||
|
sort.Sort(MessageSlice(messages))
|
||||||
|
|
||||||
|
portal.sendBackfillBatch(log, source, messages, thread)
|
||||||
|
|
||||||
|
if len(messages) < messageFetchChunkSize {
|
||||||
|
// Assume that was all the missing messages
|
||||||
|
log.Debug().Msg("Chunk had less than 50 messages, stopping backfill")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
after = messages[len(messages)-1].ID
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) sendBackfillBatch(log zerolog.Logger, source *User, messages []*discordgo.Message, thread *Thread) {
|
||||||
|
if portal.bridge.SpecVersions.Supports(mautrix.BeeperFeatureBatchSending) {
|
||||||
|
log.Debug().Msg("Using hungryserv, sending messages with batch send endpoint")
|
||||||
|
portal.forwardBatchSend(log, source, messages, thread)
|
||||||
|
} else {
|
||||||
|
log.Debug().Msg("Not using hungryserv, sending messages one by one")
|
||||||
|
for _, msg := range messages {
|
||||||
|
portal.handleDiscordMessageCreate(source, msg, thread)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) forwardBatchSend(log zerolog.Logger, source *User, messages []*discordgo.Message, thread *Thread) {
|
||||||
|
evts, metas, dbMessages := portal.convertMessageBatch(log, source, messages, thread)
|
||||||
|
if len(evts) == 0 {
|
||||||
|
log.Warn().Msg("Didn't get any events to backfill")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
log.Info().Int("events", len(evts)).Msg("Converted messages to backfill")
|
||||||
|
resp, err := portal.MainIntent().BeeperBatchSend(portal.MXID, &mautrix.ReqBeeperBatchSend{
|
||||||
|
Forward: true,
|
||||||
|
Events: evts,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
log.Err(err).Msg("Error sending backfill batch")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
for i, evtID := range resp.EventIDs {
|
||||||
|
dbMessages[i].MXID = evtID
|
||||||
|
if metas[i] != nil && metas[i].Flags == discordgo.MessageFlagsHasThread {
|
||||||
|
// TODO proper context
|
||||||
|
ctx := log.WithContext(context.Background())
|
||||||
|
portal.bridge.threadFound(ctx, source, &dbMessages[i], metas[i].ID, metas[i].Thread)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
portal.bridge.DB.Message.MassInsert(portal.Key, dbMessages)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) convertMessageBatch(log zerolog.Logger, source *User, messages []*discordgo.Message, thread *Thread) ([]*event.Event, []*discordgo.Message, []database.Message) {
|
||||||
|
var discordThreadID string
|
||||||
|
var threadRootEvent, lastThreadEvent id.EventID
|
||||||
|
if thread != nil {
|
||||||
|
discordThreadID = thread.ID
|
||||||
|
threadRootEvent = thread.RootMXID
|
||||||
|
lastThreadEvent = threadRootEvent
|
||||||
|
lastInThread := portal.bridge.DB.Message.GetLastInThread(portal.Key, thread.ID)
|
||||||
|
if lastInThread != nil {
|
||||||
|
lastThreadEvent = lastInThread.MXID
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
evts := make([]*event.Event, 0, len(messages))
|
||||||
|
dbMessages := make([]database.Message, 0, len(messages))
|
||||||
|
metas := make([]*discordgo.Message, 0, len(messages))
|
||||||
|
ctx := context.Background()
|
||||||
|
for _, msg := range messages {
|
||||||
|
for _, mention := range msg.Mentions {
|
||||||
|
puppet := portal.bridge.GetPuppetByID(mention.ID)
|
||||||
|
puppet.UpdateInfo(nil, mention, nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
puppet := portal.bridge.GetPuppetByID(msg.Author.ID)
|
||||||
|
puppet.UpdateInfo(source, msg.Author, msg)
|
||||||
|
intent := puppet.IntentFor(portal)
|
||||||
|
replyTo := portal.getReplyTarget(source, discordThreadID, msg.MessageReference, msg.Embeds, true)
|
||||||
|
mentions := portal.convertDiscordMentions(msg, false)
|
||||||
|
|
||||||
|
ts, _ := discordgo.SnowflakeTimestamp(msg.ID)
|
||||||
|
log := log.With().
|
||||||
|
Str("message_id", msg.ID).
|
||||||
|
Int("message_type", int(msg.Type)).
|
||||||
|
Str("author_id", msg.Author.ID).
|
||||||
|
Logger()
|
||||||
|
parts := portal.convertDiscordMessage(log.WithContext(ctx), puppet, intent, msg)
|
||||||
|
for i, part := range parts {
|
||||||
|
if (replyTo != nil || threadRootEvent != "") && part.Content.RelatesTo == nil {
|
||||||
|
part.Content.RelatesTo = &event.RelatesTo{}
|
||||||
|
}
|
||||||
|
if threadRootEvent != "" {
|
||||||
|
part.Content.RelatesTo.SetThread(threadRootEvent, lastThreadEvent)
|
||||||
|
}
|
||||||
|
if replyTo != nil {
|
||||||
|
part.Content.RelatesTo.SetReplyTo(replyTo.EventID)
|
||||||
|
// Only set reply for first event
|
||||||
|
replyTo = nil
|
||||||
|
}
|
||||||
|
|
||||||
|
part.Content.Mentions = mentions
|
||||||
|
// Only set mentions for first event, but keep empty object for rest
|
||||||
|
mentions = &event.Mentions{}
|
||||||
|
|
||||||
|
partName := part.AttachmentID
|
||||||
|
// Always use blank part name for first part so that replies and other things
|
||||||
|
// can reference it without knowing about attachments.
|
||||||
|
if i == 0 {
|
||||||
|
partName = ""
|
||||||
|
}
|
||||||
|
evt := &event.Event{
|
||||||
|
ID: portal.deterministicEventID(msg.ID, partName),
|
||||||
|
Type: part.Type,
|
||||||
|
Sender: intent.UserID,
|
||||||
|
Timestamp: ts.UnixMilli(),
|
||||||
|
Content: event.Content{
|
||||||
|
Parsed: part.Content,
|
||||||
|
Raw: part.Extra,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
var err error
|
||||||
|
evt.Type, err = portal.encrypt(intent, &evt.Content, evt.Type)
|
||||||
|
if err != nil {
|
||||||
|
log.Err(err).Msg("Failed to encrypt event")
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
intent.AddDoublePuppetValue(&evt.Content)
|
||||||
|
evts = append(evts, evt)
|
||||||
|
dbMessages = append(dbMessages, database.Message{
|
||||||
|
Channel: portal.Key,
|
||||||
|
DiscordID: msg.ID,
|
||||||
|
SenderID: msg.Author.ID,
|
||||||
|
Timestamp: ts,
|
||||||
|
AttachmentID: part.AttachmentID,
|
||||||
|
SenderMXID: intent.UserID,
|
||||||
|
})
|
||||||
|
if i == 0 {
|
||||||
|
metas = append(metas, msg)
|
||||||
|
} else {
|
||||||
|
metas = append(metas, nil)
|
||||||
|
}
|
||||||
|
lastThreadEvent = evt.ID
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return evts, metas, dbMessages
|
||||||
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) deterministicEventID(messageID, partName string) id.EventID {
|
||||||
|
data := fmt.Sprintf("%s/discord/%s/%s", portal.MXID, messageID, partName)
|
||||||
|
sum := sha256.Sum256([]byte(data))
|
||||||
|
return id.EventID(fmt.Sprintf("$%s:discord.com", base64.RawURLEncoding.EncodeToString(sum[:])))
|
||||||
|
}
|
||||||
|
|
||||||
|
// compareMessageIDs compares two Discord message IDs.
|
||||||
|
//
|
||||||
|
// If the first ID is lower, -1 is returned.
|
||||||
|
// If the second ID is lower, 1 is returned.
|
||||||
|
// If the IDs are equal, 0 is returned.
|
||||||
|
func compareMessageIDs(id1, id2 string) int {
|
||||||
|
if id1 == id2 {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
if len(id1) < len(id2) {
|
||||||
|
return -1
|
||||||
|
} else if len(id2) < len(id1) {
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
if id1 < id2 {
|
||||||
|
return -1
|
||||||
|
}
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
func shouldBackfill(latestBridgedIDStr, latestIDFromServerStr string) bool {
|
||||||
|
return compareMessageIDs(latestBridgedIDStr, latestIDFromServerStr) == -1
|
||||||
|
}
|
||||||
|
|
||||||
|
type MessageSlice []*discordgo.Message
|
||||||
|
|
||||||
|
var _ sort.Interface = (MessageSlice)(nil)
|
||||||
|
|
||||||
|
func (a MessageSlice) Len() int {
|
||||||
|
return len(a)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (a MessageSlice) Swap(i, j int) {
|
||||||
|
a[i], a[j] = a[j], a[i]
|
||||||
|
}
|
||||||
|
|
||||||
|
func (a MessageSlice) Less(i, j int) bool {
|
||||||
|
return compareMessageIDs(a[i].ID, a[j].ID) == -1
|
||||||
|
}
|
||||||
4
build.sh
4
build.sh
@@ -1,4 +1,2 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
MAUTRIX_VERSION=$(cat go.mod | grep 'maunium.net/go/mautrix ' | awk '{ print $2 }')
|
go build -ldflags "-X main.Tag=$(git describe --exact-match --tags 2>/dev/null) -X main.Commit=$(git rev-parse HEAD) -X 'main.BuildTime=`date '+%b %_d %Y, %H:%M:%S'`'" "$@"
|
||||||
GO_LDFLAGS="-X main.Tag=$(git describe --exact-match --tags 2>/dev/null) -X main.Commit=$(git rev-parse HEAD) -X 'main.BuildTime=`date -Iseconds`' -X 'maunium.net/go/mautrix.GoModVersion=$MAUTRIX_VERSION'"
|
|
||||||
go build -ldflags="-s -w $GO_LDFLAGS" ./cmd/mautrix-discord "$@"
|
|
||||||
|
|||||||
@@ -1,44 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 (
|
|
||||||
"maunium.net/go/mautrix/bridgev2/matrix/mxmain"
|
|
||||||
|
|
||||||
"go.mau.fi/mautrix-discord/pkg/connector"
|
|
||||||
)
|
|
||||||
|
|
||||||
var (
|
|
||||||
Tag = "unknown"
|
|
||||||
Commit = "unknown"
|
|
||||||
BuildTime = "unknown"
|
|
||||||
)
|
|
||||||
|
|
||||||
var c = &connector.DiscordConnector{}
|
|
||||||
var m = mxmain.BridgeMain{
|
|
||||||
Name: "mautrix-discord",
|
|
||||||
Description: "A Matrix-Discord puppeting bridge",
|
|
||||||
URL: "https://github.com/mautrix/discord",
|
|
||||||
Version: "26.03",
|
|
||||||
SemCalVer: true,
|
|
||||||
Connector: c,
|
|
||||||
}
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
m.InitVersion(Tag, Commit, BuildTime)
|
|
||||||
m.Run()
|
|
||||||
}
|
|
||||||
917
commands.go
Normal file
917
commands.go
Normal file
@@ -0,0 +1,917 @@
|
|||||||
|
// 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 (
|
||||||
|
"bytes"
|
||||||
|
"context"
|
||||||
|
"encoding/base64"
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"html"
|
||||||
|
"net/http"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
"github.com/skip2/go-qrcode"
|
||||||
|
|
||||||
|
"maunium.net/go/mautrix"
|
||||||
|
"maunium.net/go/mautrix/appservice"
|
||||||
|
"maunium.net/go/mautrix/bridge/bridgeconfig"
|
||||||
|
"maunium.net/go/mautrix/bridge/commands"
|
||||||
|
"maunium.net/go/mautrix/event"
|
||||||
|
"maunium.net/go/mautrix/id"
|
||||||
|
|
||||||
|
"go.mau.fi/mautrix-discord/database"
|
||||||
|
"go.mau.fi/mautrix-discord/remoteauth"
|
||||||
|
)
|
||||||
|
|
||||||
|
type WrappedCommandEvent struct {
|
||||||
|
*commands.Event
|
||||||
|
Bridge *DiscordBridge
|
||||||
|
User *User
|
||||||
|
Portal *Portal
|
||||||
|
}
|
||||||
|
|
||||||
|
var HelpSectionPortalManagement = commands.HelpSection{Name: "Portal management", Order: 20}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) RegisterCommands() {
|
||||||
|
proc := br.CommandProcessor.(*commands.Processor)
|
||||||
|
proc.AddHandlers(
|
||||||
|
cmdLoginToken,
|
||||||
|
cmdLoginQR,
|
||||||
|
cmdLogout,
|
||||||
|
cmdPing,
|
||||||
|
cmdReconnect,
|
||||||
|
cmdDisconnect,
|
||||||
|
cmdBridge,
|
||||||
|
cmdUnbridge,
|
||||||
|
cmdDeletePortal,
|
||||||
|
cmdCreatePortal,
|
||||||
|
cmdSetRelay,
|
||||||
|
cmdUnsetRelay,
|
||||||
|
cmdGuilds,
|
||||||
|
cmdRejoinSpace,
|
||||||
|
cmdDeleteAllPortals,
|
||||||
|
cmdExec,
|
||||||
|
cmdCommands,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
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})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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.",
|
||||||
|
Args: "<user/bot/oauth> <_token_>",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
||||||
|
|
||||||
|
func fnLoginToken(ce *WrappedCommandEvent) {
|
||||||
|
if len(ce.Args) != 2 {
|
||||||
|
ce.Reply("**Usage**: `$cmdprefix login-token <user/bot/oauth> <token>`")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
ce.MarkRead()
|
||||||
|
defer ce.Redact()
|
||||||
|
if ce.User.IsLoggedIn() {
|
||||||
|
ce.Reply("You're already logged in")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
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 {
|
||||||
|
ce.Reply("Error connecting to Discord: %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
ce.Reply("Successfully logged in as @%s", ce.User.Session.State.User.Username)
|
||||||
|
}
|
||||||
|
|
||||||
|
var cmdLoginQR = &commands.FullHandler{
|
||||||
|
Func: wrapCommand(fnLoginQR),
|
||||||
|
Name: "login-qr",
|
||||||
|
Aliases: []string{"login"},
|
||||||
|
Help: commands.HelpMeta{
|
||||||
|
Section: commands.HelpSectionAuth,
|
||||||
|
Description: "Link the bridge to your Discord account by scanning a QR code.",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
func fnLoginQR(ce *WrappedCommandEvent) {
|
||||||
|
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 {
|
||||||
|
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)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
} else if err = ce.User.Login(user.Token); err != nil {
|
||||||
|
ce.Reply("Error connecting after login: %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
ce.User.Lock()
|
||||||
|
ce.User.DiscordID = user.UserID
|
||||||
|
ce.User.Update()
|
||||||
|
ce.User.Unlock()
|
||||||
|
ce.Reply("Successfully logged in as @%s", user.Username)
|
||||||
|
}
|
||||||
|
|
||||||
|
func sendQRCode(ce *WrappedCommandEvent, code string) id.EventID {
|
||||||
|
url, ok := uploadQRCode(ce, code)
|
||||||
|
if !ok {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
content := event.MessageEventContent{
|
||||||
|
MsgType: event.MsgImage,
|
||||||
|
Body: code,
|
||||||
|
FileName: "qr.png",
|
||||||
|
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,
|
||||||
|
Description: "Forget the stored Discord auth token.",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
func fnLogout(ce *WrappedCommandEvent) {
|
||||||
|
wasLoggedIn := ce.User.DiscordID != ""
|
||||||
|
ce.User.Logout(false)
|
||||||
|
if wasLoggedIn {
|
||||||
|
ce.Reply("Logged out successfully.")
|
||||||
|
} else {
|
||||||
|
ce.Reply("You weren't logged in, but data was re-cleared just to be safe.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var cmdPing = &commands.FullHandler{
|
||||||
|
Func: wrapCommand(fnPing),
|
||||||
|
Name: "ping",
|
||||||
|
Help: commands.HelpMeta{
|
||||||
|
Section: commands.HelpSectionAuth,
|
||||||
|
Description: "Check your connection to Discord",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
func fnPing(ce *WrappedCommandEvent) {
|
||||||
|
if ce.User.Session == nil {
|
||||||
|
if ce.User.DiscordToken == "" {
|
||||||
|
ce.Reply("You're not logged in")
|
||||||
|
} else {
|
||||||
|
ce.Reply("You have a Discord token stored, but are not connected for some reason 🤔")
|
||||||
|
}
|
||||||
|
} else if ce.User.wasDisconnected {
|
||||||
|
ce.Reply("You're logged in, but the Discord connection seems to be dead 💥")
|
||||||
|
} else {
|
||||||
|
ce.Reply("You're logged in as @%s (`%s`)", ce.User.Session.State.User.Username, ce.User.DiscordID)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var cmdRejoinSpace = &commands.FullHandler{
|
||||||
|
Func: wrapCommand(fnRejoinSpace),
|
||||||
|
Name: "rejoin-space",
|
||||||
|
Help: commands.HelpMeta{
|
||||||
|
Section: HelpSectionPortalManagement,
|
||||||
|
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, true)
|
||||||
|
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, true)
|
||||||
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var roomModerator = event.Type{Type: "fi.mau.discord.admin", Class: event.StateEventType}
|
||||||
|
|
||||||
|
var cmdSetRelay = &commands.FullHandler{
|
||||||
|
Func: wrapCommand(fnSetRelay),
|
||||||
|
Name: "set-relay",
|
||||||
|
Help: commands.HelpMeta{
|
||||||
|
Section: HelpSectionPortalManagement,
|
||||||
|
Description: "Create or set a relay webhook for a portal",
|
||||||
|
Args: "[room ID] <--url URL> OR <--create [name]>",
|
||||||
|
},
|
||||||
|
RequiresLogin: true,
|
||||||
|
RequiresEventLevel: roomModerator,
|
||||||
|
}
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
||||||
|
if ce.User.PermissionLevel < bridgeconfig.PermissionLevelAdmin {
|
||||||
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
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
|
||||||
|
}
|
||||||
|
log := ce.ZLog.With().Str("channel_id", portal.Key.ChannelID).Logger()
|
||||||
|
if portal.GuildID == "" {
|
||||||
|
ce.Reply("Only guild channels can have relays")
|
||||||
|
return
|
||||||
|
} else if portal.RelayWebhookID != "" {
|
||||||
|
webhookMeta, err := relayClient.WebhookWithToken(portal.RelayWebhookID, portal.RelayWebhookSecret)
|
||||||
|
if err != nil {
|
||||||
|
log.Warn().Err(err).Msg("Failed to get existing webhook info")
|
||||||
|
ce.Reply("This channel has a relay webhook set, but getting its info failed: %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
ce.Reply("This channel already has a relay webhook %s (%s)", webhookMeta.Name, webhookMeta.ID)
|
||||||
|
return
|
||||||
|
} else if len(ce.Args) == 0 {
|
||||||
|
ce.Reply(selectRelayHelp)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
createType := strings.ToLower(strings.TrimLeft(ce.Args[0], "-"))
|
||||||
|
var webhookMeta *discordgo.Webhook
|
||||||
|
switch createType {
|
||||||
|
case "url":
|
||||||
|
if len(ce.Args) < 2 {
|
||||||
|
ce.Reply("Usage: `$cmdprefix [room ID] --url <URL>")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
ce.Redact()
|
||||||
|
var webhookID int64
|
||||||
|
var webhookSecret string
|
||||||
|
_, 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
|
||||||
|
}
|
||||||
|
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
|
||||||
|
}
|
||||||
|
case "create":
|
||||||
|
perms, err := ce.User.Session.UserChannelPermissions(ce.User.DiscordID, portal.Key.ChannelID, portal.RefererOptIfUser(ce.User.Session, "")...)
|
||||||
|
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")
|
||||||
|
webhookMeta, err = ce.User.Session.WebhookCreate(portal.Key.ChannelID, name, "", portal.RefererOptIfUser(ce.User.Session, "")...)
|
||||||
|
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
|
||||||
|
}
|
||||||
|
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
|
||||||
|
portal.Update()
|
||||||
|
ce.Reply("Saved webhook %s (%s) as portal relay webhook", webhookMeta.Name, portal.RelayWebhookID)
|
||||||
|
}
|
||||||
|
|
||||||
|
var cmdUnsetRelay = &commands.FullHandler{
|
||||||
|
Func: wrapCommand(fnUnsetRelay),
|
||||||
|
Name: "unset-relay",
|
||||||
|
Help: commands.HelpMeta{
|
||||||
|
Section: HelpSectionPortalManagement,
|
||||||
|
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()
|
||||||
|
}
|
||||||
|
|
||||||
|
var cmdGuilds = &commands.FullHandler{
|
||||||
|
Func: wrapCommand(fnGuilds),
|
||||||
|
Name: "guilds",
|
||||||
|
Aliases: []string{"servers", "guild", "server"},
|
||||||
|
Help: commands.HelpMeta{
|
||||||
|
Section: HelpSectionPortalManagement,
|
||||||
|
Description: "Guild bridging management",
|
||||||
|
Args: "<status/bridge/unbridge/bridging-mode> [_guild ID_] [...]",
|
||||||
|
},
|
||||||
|
RequiresLogin: true,
|
||||||
|
}
|
||||||
|
|
||||||
|
const smallGuildsHelp = "**Usage**: `$cmdprefix guilds <help/status/bridge/unbridge> [guild ID] [...]`"
|
||||||
|
|
||||||
|
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.
|
||||||
|
* **bridging-mode <_guild ID_> <_mode_>** - Set the mode for bridging messages and new channels in a guild.
|
||||||
|
* **unbridge <_guild ID_>** - Unbridge a guild and delete all channel portal rooms.`
|
||||||
|
|
||||||
|
func fnGuilds(ce *WrappedCommandEvent) {
|
||||||
|
if len(ce.Args) == 0 {
|
||||||
|
ce.Reply(fullGuildsHelp)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
subcommand := strings.ToLower(ce.Args[0])
|
||||||
|
ce.Args = ce.Args[1:]
|
||||||
|
switch subcommand {
|
||||||
|
case "status", "list":
|
||||||
|
fnListGuilds(ce)
|
||||||
|
case "bridge":
|
||||||
|
fnBridgeGuild(ce)
|
||||||
|
case "unbridge", "delete":
|
||||||
|
fnUnbridgeGuild(ce)
|
||||||
|
case "bridging-mode", "mode":
|
||||||
|
fnGuildBridgingMode(ce)
|
||||||
|
case "help":
|
||||||
|
ce.Reply(fullGuildsHelp)
|
||||||
|
default:
|
||||||
|
ce.Reply("Unknown subcommand `%s`\n\n"+smallGuildsHelp, subcommand)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func fnListGuilds(ce *WrappedCommandEvent) {
|
||||||
|
var items []string
|
||||||
|
for _, userGuild := range ce.User.GetPortals() {
|
||||||
|
guild := ce.Bridge.GetGuildByID(userGuild.DiscordID, false)
|
||||||
|
if guild == nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
var avatarHTML string
|
||||||
|
if !guild.AvatarURL.IsEmpty() {
|
||||||
|
avatarHTML = fmt.Sprintf(`<img data-mx-emoticon height="24" src="%s" alt="" title="Guild avatar"> `, guild.AvatarURL.String())
|
||||||
|
}
|
||||||
|
items = append(items, fmt.Sprintf("<li>%s%s (<code>%s</code>) - %s</li>", avatarHTML, html.EscapeString(guild.Name), guild.ID, guild.BridgingMode.Description()))
|
||||||
|
}
|
||||||
|
if len(items) == 0 {
|
||||||
|
ce.Reply("No guilds found")
|
||||||
|
} else {
|
||||||
|
ce.ReplyAdvanced(fmt.Sprintf("<p>List of guilds:</p><ul>%s</ul>", strings.Join(items, "")), false, true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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())
|
||||||
|
}
|
||||||
|
|
||||||
|
var cmdBridge = &commands.FullHandler{
|
||||||
|
Func: wrapCommand(fnBridge),
|
||||||
|
Name: "bridge",
|
||||||
|
Help: commands.HelpMeta{
|
||||||
|
Section: HelpSectionPortalManagement,
|
||||||
|
Description: "Bridge this room to a specific Discord channel",
|
||||||
|
Args: "[--replace[=delete]] <_channel ID_>",
|
||||||
|
},
|
||||||
|
RequiresEventLevel: roomModerator,
|
||||||
|
}
|
||||||
|
|
||||||
|
func isNumber(str string) bool {
|
||||||
|
for _, chr := range str {
|
||||||
|
if chr < '0' || chr > '9' {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
func fnBridge(ce *WrappedCommandEvent) {
|
||||||
|
if ce.Portal != nil {
|
||||||
|
ce.Reply("This is already a portal room. Unbridge with `$cmdprefix unbridge` first if you want to link it to a different channel.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
var channelID string
|
||||||
|
var unbridgeOld, deleteOld bool
|
||||||
|
fail := true
|
||||||
|
for _, arg := range ce.Args {
|
||||||
|
arg = strings.ToLower(arg)
|
||||||
|
if arg == "--replace" {
|
||||||
|
unbridgeOld = true
|
||||||
|
} else if arg == "--replace=delete" {
|
||||||
|
unbridgeOld = true
|
||||||
|
deleteOld = true
|
||||||
|
} else if channelID == "" && isNumber(arg) {
|
||||||
|
channelID = arg
|
||||||
|
fail = false
|
||||||
|
} else {
|
||||||
|
fail = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if fail {
|
||||||
|
ce.Reply("**Usage**: `$cmdprefix bridge [--replace[=delete]] <channel ID>`")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
portal := ce.User.GetExistingPortalByID(channelID)
|
||||||
|
if portal == nil {
|
||||||
|
// HACK: Before giving up, discover if the user is trying to join a
|
||||||
|
// thread. Then, cause the creation of a portal.
|
||||||
|
// This is for forum channel threads; they don't show up on the
|
||||||
|
// forum channels.
|
||||||
|
ch, err := ce.User.Session.Channel(channelID)
|
||||||
|
if err != nil {
|
||||||
|
ce.Reply("Channel not found")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if ch.Type != discordgo.ChannelTypeGuildPublicThread &&
|
||||||
|
ch.Type != discordgo.ChannelTypeGuildPrivateThread {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
ce.ZLog.Debug().Msg("Adding public / private thread as a portal")
|
||||||
|
portal = ce.User.GetPortalByID(channelID, ch.Type)
|
||||||
|
|
||||||
|
}
|
||||||
|
portal.roomCreateLock.Lock()
|
||||||
|
defer portal.roomCreateLock.Unlock()
|
||||||
|
if portal.MXID != "" {
|
||||||
|
hasUnbridgePermission := ce.User.PermissionLevel >= bridgeconfig.PermissionLevelAdmin
|
||||||
|
if !hasUnbridgePermission {
|
||||||
|
levels, err := portal.MainIntent().PowerLevels(portal.MXID)
|
||||||
|
if errors.Is(err, mautrix.MNotFound) {
|
||||||
|
ce.ZLog.Debug().Err(err).Msg("Got M_NOT_FOUND trying to get power levels to check if user can unbridge it, assuming the room is gone")
|
||||||
|
hasUnbridgePermission = true
|
||||||
|
} else if err != nil {
|
||||||
|
ce.ZLog.Warn().Err(err).Msg("Failed to check room power levels")
|
||||||
|
ce.Reply("Failed to get power levels in old room to see if you're allowed to unbridge it")
|
||||||
|
return
|
||||||
|
} else {
|
||||||
|
hasUnbridgePermission = levels.GetUserLevel(ce.User.GetMXID()) >= levels.GetEventLevel(roomModerator)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if !unbridgeOld || !hasUnbridgePermission {
|
||||||
|
extraHelp := "Rerun the command with `--replace` or `--replace=delete` to unbridge the old room."
|
||||||
|
if !hasUnbridgePermission {
|
||||||
|
extraHelp = "Additionally, you do not have the permissions to unbridge the old room."
|
||||||
|
}
|
||||||
|
ce.Reply("That channel is already bridged to [%s](https://matrix.to/#/%s). %s", portal.Name, portal.MXID, extraHelp)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
ce.ZLog.Debug().
|
||||||
|
Str("old_room_id", portal.MXID.String()).
|
||||||
|
Bool("delete", deleteOld).
|
||||||
|
Msg("Unbridging old room")
|
||||||
|
portal.removeFromSpace()
|
||||||
|
portal.cleanup(!deleteOld)
|
||||||
|
portal.RemoveMXID()
|
||||||
|
ce.ZLog.Info().
|
||||||
|
Str("old_room_id", portal.MXID.String()).
|
||||||
|
Bool("delete", deleteOld).
|
||||||
|
Msg("Unbridged old room to make space for new bridge")
|
||||||
|
}
|
||||||
|
if portal.Guild != nil && portal.Guild.BridgingMode < database.GuildBridgeIfPortalExists {
|
||||||
|
ce.ZLog.Debug().Str("guild_id", portal.Guild.ID).Msg("Bumping bridging mode of portal guild to if-portal-exists")
|
||||||
|
portal.Guild.BridgingMode = database.GuildBridgeIfPortalExists
|
||||||
|
portal.Guild.Update()
|
||||||
|
}
|
||||||
|
ce.ZLog.Debug().Str("channel_id", portal.Key.ChannelID).Msg("Bridging room")
|
||||||
|
portal.MXID = ce.RoomID
|
||||||
|
portal.bridge.portalsLock.Lock()
|
||||||
|
portal.bridge.portalsByMXID[portal.MXID] = portal
|
||||||
|
portal.bridge.portalsLock.Unlock()
|
||||||
|
portal.updateRoomName()
|
||||||
|
portal.updateRoomAvatar()
|
||||||
|
portal.updateRoomTopic()
|
||||||
|
portal.updateSpace(ce.User)
|
||||||
|
portal.UpdateBridgeInfo()
|
||||||
|
state, err := portal.MainIntent().State(portal.MXID)
|
||||||
|
if err != nil {
|
||||||
|
ce.ZLog.Error().Err(err).Msg("Failed to update state cache for room")
|
||||||
|
} else {
|
||||||
|
encryptionEvent, isEncrypted := state[event.StateEncryption][""]
|
||||||
|
portal.Encrypted = isEncrypted && encryptionEvent.Content.AsEncryption().Algorithm == id.AlgorithmMegolmV1
|
||||||
|
}
|
||||||
|
portal.Update()
|
||||||
|
ce.Reply("Room successfully bridged")
|
||||||
|
ce.ZLog.Info().
|
||||||
|
Str("channel_id", portal.Key.ChannelID).
|
||||||
|
Bool("encrypted", portal.Encrypted).
|
||||||
|
Msg("Manual bridging complete")
|
||||||
|
}
|
||||||
|
|
||||||
|
var cmdUnbridge = &commands.FullHandler{
|
||||||
|
Func: wrapCommand(fnUnbridge),
|
||||||
|
Name: "unbridge",
|
||||||
|
Help: commands.HelpMeta{
|
||||||
|
Section: HelpSectionPortalManagement,
|
||||||
|
Description: "Unbridge this room from the linked Discord channel",
|
||||||
|
},
|
||||||
|
RequiresPortal: true,
|
||||||
|
RequiresEventLevel: roomModerator,
|
||||||
|
}
|
||||||
|
|
||||||
|
var cmdCreatePortal = &commands.FullHandler{
|
||||||
|
Func: wrapCommand(fnCreatePortal),
|
||||||
|
Name: "create-portal",
|
||||||
|
Help: commands.HelpMeta{
|
||||||
|
Section: HelpSectionPortalManagement,
|
||||||
|
Description: "Create a portal for a specific channel",
|
||||||
|
Args: "<_channel ID_>",
|
||||||
|
},
|
||||||
|
RequiresLogin: true,
|
||||||
|
}
|
||||||
|
|
||||||
|
func fnCreatePortal(ce *WrappedCommandEvent) {
|
||||||
|
meta, err := ce.User.Session.Channel(ce.Args[0])
|
||||||
|
if err != nil {
|
||||||
|
ce.Reply("Failed to get channel info: %v", err)
|
||||||
|
return
|
||||||
|
} else if meta == nil {
|
||||||
|
ce.Reply("Channel not found")
|
||||||
|
return
|
||||||
|
} else if !ce.User.channelIsBridgeable(meta) {
|
||||||
|
ce.Reply("That channel can't be bridged")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
portal := ce.User.GetPortalByMeta(meta)
|
||||||
|
if portal.Guild != nil && portal.Guild.BridgingMode == database.GuildBridgeNothing {
|
||||||
|
ce.Reply("That guild is set to not bridge any messages. Bridge the guild with `$cmdprefix guilds bridge %s` first", portal.Guild.ID)
|
||||||
|
return
|
||||||
|
} else if portal.MXID != "" {
|
||||||
|
ce.Reply("That channel is already bridged: [%s](%s)", portal.Name, portal.MXID.URI(portal.bridge.Config.Homeserver.Domain).MatrixToURL())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
err = portal.CreateMatrixRoom(ce.User, meta)
|
||||||
|
if err != nil {
|
||||||
|
ce.Reply("Failed to create portal: %v", err)
|
||||||
|
} else {
|
||||||
|
ce.Reply("Portal created: [%s](%s)", portal.Name, portal.MXID.URI(portal.bridge.Config.Homeserver.Domain).MatrixToURL())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var cmdDeletePortal = &commands.FullHandler{
|
||||||
|
Func: wrapCommand(fnUnbridge),
|
||||||
|
Name: "delete-portal",
|
||||||
|
Help: commands.HelpMeta{
|
||||||
|
Section: HelpSectionPortalManagement,
|
||||||
|
Description: "Unbridge this room and kick all Matrix users",
|
||||||
|
},
|
||||||
|
RequiresPortal: true,
|
||||||
|
RequiresEventLevel: roomModerator,
|
||||||
|
}
|
||||||
|
|
||||||
|
func fnUnbridge(ce *WrappedCommandEvent) {
|
||||||
|
ce.Portal.roomCreateLock.Lock()
|
||||||
|
defer ce.Portal.roomCreateLock.Unlock()
|
||||||
|
ce.Portal.removeFromSpace()
|
||||||
|
ce.Portal.cleanup(ce.Command == "unbridge")
|
||||||
|
ce.Portal.RemoveMXID()
|
||||||
|
}
|
||||||
|
|
||||||
|
var cmdDeleteAllPortals = &commands.FullHandler{
|
||||||
|
Func: wrapCommand(fnDeleteAllPortals),
|
||||||
|
Name: "delete-all-portals",
|
||||||
|
Help: commands.HelpMeta{
|
||||||
|
Section: commands.HelpSectionAdmin,
|
||||||
|
Description: "Delete all portals.",
|
||||||
|
},
|
||||||
|
RequiresAdmin: true,
|
||||||
|
}
|
||||||
|
|
||||||
|
func fnDeleteAllPortals(ce *WrappedCommandEvent) {
|
||||||
|
portals := ce.Bridge.GetAllPortals()
|
||||||
|
guilds := ce.Bridge.GetAllGuilds()
|
||||||
|
if len(portals) == 0 && len(guilds) == 0 {
|
||||||
|
ce.Reply("Didn't find any portals")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
leave := func(mxid id.RoomID, intent *appservice.IntentAPI) {
|
||||||
|
if len(mxid) > 0 {
|
||||||
|
_, _ = intent.KickUser(mxid, &mautrix.ReqKickUser{
|
||||||
|
Reason: "Deleting portal",
|
||||||
|
UserID: ce.User.MXID,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
customPuppet := ce.Bridge.GetPuppetByCustomMXID(ce.User.MXID)
|
||||||
|
if customPuppet != nil && customPuppet.CustomIntent() != nil {
|
||||||
|
intent := customPuppet.CustomIntent()
|
||||||
|
leave = func(mxid id.RoomID, _ *appservice.IntentAPI) {
|
||||||
|
if len(mxid) > 0 {
|
||||||
|
_, _ = intent.LeaveRoom(mxid)
|
||||||
|
_, _ = intent.ForgetRoom(mxid)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ce.Reply("Found %d channel portals and %d guild portals, deleting...", len(portals), len(guilds))
|
||||||
|
for _, portal := range portals {
|
||||||
|
portal.Delete()
|
||||||
|
leave(portal.MXID, portal.MainIntent())
|
||||||
|
}
|
||||||
|
for _, guild := range guilds {
|
||||||
|
guild.Delete()
|
||||||
|
leave(guild.MXID, ce.Bot)
|
||||||
|
}
|
||||||
|
ce.Reply("Finished deleting portal info. Now cleaning up rooms in background. You'll have to restart the bridge or relogin before rooms can be bridged again.")
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
for _, portal := range portals {
|
||||||
|
portal.cleanup(false)
|
||||||
|
}
|
||||||
|
ce.Reply("Finished background cleanup of deleted portal rooms.")
|
||||||
|
}()
|
||||||
|
}
|
||||||
318
commands_botinteraction.go
Normal file
318
commands_botinteraction.go
Normal file
@@ -0,0 +1,318 @@
|
|||||||
|
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
||||||
|
// Copyright (C) 2023 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 (
|
||||||
|
"fmt"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
"github.com/google/shlex"
|
||||||
|
|
||||||
|
"maunium.net/go/mautrix/bridge/commands"
|
||||||
|
)
|
||||||
|
|
||||||
|
var HelpSectionDiscordBots = commands.HelpSection{Name: "Discord bot interaction", Order: 30}
|
||||||
|
|
||||||
|
var cmdCommands = &commands.FullHandler{
|
||||||
|
Func: wrapCommand(fnCommands),
|
||||||
|
Name: "commands",
|
||||||
|
Aliases: []string{"cmds", "cs"},
|
||||||
|
Help: commands.HelpMeta{
|
||||||
|
Section: HelpSectionDiscordBots,
|
||||||
|
Description: "View parameters of bot interaction commands on Discord",
|
||||||
|
Args: "search <_query_> OR help <_command_>",
|
||||||
|
},
|
||||||
|
RequiresPortal: true,
|
||||||
|
RequiresLogin: true,
|
||||||
|
}
|
||||||
|
|
||||||
|
var cmdExec = &commands.FullHandler{
|
||||||
|
Func: wrapCommand(fnExec),
|
||||||
|
Name: "exec",
|
||||||
|
Aliases: []string{"command", "cmd", "c", "exec", "e"},
|
||||||
|
Help: commands.HelpMeta{
|
||||||
|
Section: HelpSectionDiscordBots,
|
||||||
|
Description: "Run bot interaction commands on Discord",
|
||||||
|
Args: "<_command_> [_arg=value ..._]",
|
||||||
|
},
|
||||||
|
RequiresLogin: true,
|
||||||
|
RequiresPortal: true,
|
||||||
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) getCommand(user *User, command string) (*discordgo.ApplicationCommand, error) {
|
||||||
|
portal.commandsLock.Lock()
|
||||||
|
defer portal.commandsLock.Unlock()
|
||||||
|
cmd, ok := portal.commands[command]
|
||||||
|
if !ok {
|
||||||
|
results, err := user.Session.ApplicationCommandsSearch(portal.Key.ChannelID, command, portal.RefererOpt(""))
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
for _, result := range results {
|
||||||
|
if result.Name == command {
|
||||||
|
portal.commands[result.Name] = result
|
||||||
|
cmd = result
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if cmd == nil {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return cmd, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func getCommandOptionTypeName(optType discordgo.ApplicationCommandOptionType) string {
|
||||||
|
switch optType {
|
||||||
|
case discordgo.ApplicationCommandOptionSubCommand:
|
||||||
|
return "subcommand"
|
||||||
|
case discordgo.ApplicationCommandOptionSubCommandGroup:
|
||||||
|
return "subcommand group (unsupported)"
|
||||||
|
case discordgo.ApplicationCommandOptionString:
|
||||||
|
return "string"
|
||||||
|
case discordgo.ApplicationCommandOptionInteger:
|
||||||
|
return "integer"
|
||||||
|
case discordgo.ApplicationCommandOptionBoolean:
|
||||||
|
return "boolean"
|
||||||
|
case discordgo.ApplicationCommandOptionUser:
|
||||||
|
return "user (unsupported)"
|
||||||
|
case discordgo.ApplicationCommandOptionChannel:
|
||||||
|
return "channel (unsupported)"
|
||||||
|
case discordgo.ApplicationCommandOptionRole:
|
||||||
|
return "role (unsupported)"
|
||||||
|
case discordgo.ApplicationCommandOptionMentionable:
|
||||||
|
return "mentionable (unsupported)"
|
||||||
|
case discordgo.ApplicationCommandOptionNumber:
|
||||||
|
return "number"
|
||||||
|
case discordgo.ApplicationCommandOptionAttachment:
|
||||||
|
return "attachment (unsupported)"
|
||||||
|
default:
|
||||||
|
return fmt.Sprintf("unknown type %d", optType)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func parseCommandOptionValue(optType discordgo.ApplicationCommandOptionType, value string) (any, error) {
|
||||||
|
switch optType {
|
||||||
|
case discordgo.ApplicationCommandOptionSubCommandGroup:
|
||||||
|
return nil, fmt.Errorf("subcommand groups aren't supported")
|
||||||
|
case discordgo.ApplicationCommandOptionString:
|
||||||
|
return value, nil
|
||||||
|
case discordgo.ApplicationCommandOptionInteger:
|
||||||
|
return strconv.ParseInt(value, 10, 64)
|
||||||
|
case discordgo.ApplicationCommandOptionBoolean:
|
||||||
|
return strconv.ParseBool(value)
|
||||||
|
case discordgo.ApplicationCommandOptionUser:
|
||||||
|
return nil, fmt.Errorf("user options aren't supported")
|
||||||
|
case discordgo.ApplicationCommandOptionChannel:
|
||||||
|
return nil, fmt.Errorf("channel options aren't supported")
|
||||||
|
case discordgo.ApplicationCommandOptionRole:
|
||||||
|
return nil, fmt.Errorf("role options aren't supported")
|
||||||
|
case discordgo.ApplicationCommandOptionMentionable:
|
||||||
|
return nil, fmt.Errorf("mentionable options aren't supported")
|
||||||
|
case discordgo.ApplicationCommandOptionNumber:
|
||||||
|
return strconv.ParseFloat(value, 64)
|
||||||
|
case discordgo.ApplicationCommandOptionAttachment:
|
||||||
|
return nil, fmt.Errorf("attachment options aren't supported")
|
||||||
|
default:
|
||||||
|
return nil, fmt.Errorf("unknown option type %d", optType)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func indent(text, with string) string {
|
||||||
|
split := strings.Split(text, "\n")
|
||||||
|
for i, part := range split {
|
||||||
|
split[i] = with + part
|
||||||
|
}
|
||||||
|
return strings.Join(split, "\n")
|
||||||
|
}
|
||||||
|
|
||||||
|
func formatOption(opt *discordgo.ApplicationCommandOption) string {
|
||||||
|
argText := fmt.Sprintf("* `%s`: %s", opt.Name, getCommandOptionTypeName(opt.Type))
|
||||||
|
if strings.ToLower(opt.Description) != opt.Name {
|
||||||
|
argText += fmt.Sprintf(" - %s", opt.Description)
|
||||||
|
}
|
||||||
|
if opt.Required {
|
||||||
|
argText += " (required)"
|
||||||
|
}
|
||||||
|
if len(opt.Options) > 0 {
|
||||||
|
subopts := make([]string, len(opt.Options))
|
||||||
|
for i, subopt := range opt.Options {
|
||||||
|
subopts[i] = indent(formatOption(subopt), " ")
|
||||||
|
}
|
||||||
|
argText += "\n" + strings.Join(subopts, "\n")
|
||||||
|
}
|
||||||
|
return argText
|
||||||
|
}
|
||||||
|
|
||||||
|
func formatCommand(cmd *discordgo.ApplicationCommand) string {
|
||||||
|
baseText := fmt.Sprintf("$cmdprefix exec %s", cmd.Name)
|
||||||
|
if len(cmd.Options) > 0 {
|
||||||
|
args := make([]string, len(cmd.Options))
|
||||||
|
argPlaceholder := "[arg=value ...]"
|
||||||
|
for i, opt := range cmd.Options {
|
||||||
|
args[i] = formatOption(opt)
|
||||||
|
if opt.Required {
|
||||||
|
argPlaceholder = "<arg=value ...>"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
baseText = fmt.Sprintf("`%s %s` - %s\n%s", baseText, argPlaceholder, cmd.Description, strings.Join(args, "\n"))
|
||||||
|
} else {
|
||||||
|
baseText = fmt.Sprintf("`%s` - %s", baseText, cmd.Description)
|
||||||
|
}
|
||||||
|
return baseText
|
||||||
|
}
|
||||||
|
|
||||||
|
func parseCommandOptions(opts []*discordgo.ApplicationCommandOption, subcommands []string, namedArgs map[string]string) (res []*discordgo.ApplicationCommandOptionInput, err error) {
|
||||||
|
subcommandDone := false
|
||||||
|
for _, opt := range opts {
|
||||||
|
optRes := &discordgo.ApplicationCommandOptionInput{
|
||||||
|
Type: opt.Type,
|
||||||
|
Name: opt.Name,
|
||||||
|
}
|
||||||
|
if opt.Type == discordgo.ApplicationCommandOptionSubCommand {
|
||||||
|
if !subcommandDone && len(subcommands) > 0 && subcommands[0] == opt.Name {
|
||||||
|
subcommandDone = true
|
||||||
|
optRes.Options, err = parseCommandOptions(opt.Options, subcommands[1:], namedArgs)
|
||||||
|
if err != nil {
|
||||||
|
err = fmt.Errorf("error parsing subcommand %s: %v", opt.Name, err)
|
||||||
|
break
|
||||||
|
}
|
||||||
|
subcommands = subcommands[1:]
|
||||||
|
} else {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
} else if argVal, ok := namedArgs[opt.Name]; ok {
|
||||||
|
optRes.Value, err = parseCommandOptionValue(opt.Type, argVal)
|
||||||
|
if err != nil {
|
||||||
|
err = fmt.Errorf("error parsing parameter %s: %v", opt.Name, err)
|
||||||
|
break
|
||||||
|
}
|
||||||
|
} else if opt.Required {
|
||||||
|
switch opt.Type {
|
||||||
|
case discordgo.ApplicationCommandOptionSubCommandGroup, discordgo.ApplicationCommandOptionUser,
|
||||||
|
discordgo.ApplicationCommandOptionChannel, discordgo.ApplicationCommandOptionRole,
|
||||||
|
discordgo.ApplicationCommandOptionMentionable, discordgo.ApplicationCommandOptionAttachment:
|
||||||
|
err = fmt.Errorf("missing required parameter %s (which is not supported by the bridge)", opt.Name)
|
||||||
|
default:
|
||||||
|
err = fmt.Errorf("missing required parameter %s", opt.Name)
|
||||||
|
}
|
||||||
|
break
|
||||||
|
} else {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
res = append(res, optRes)
|
||||||
|
}
|
||||||
|
if len(subcommands) > 0 {
|
||||||
|
err = fmt.Errorf("unparsed subcommands left over (did you forget quoting for parameters with spaces?)")
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func executeCommand(cmd *discordgo.ApplicationCommand, args []string) (res []*discordgo.ApplicationCommandOptionInput, err error) {
|
||||||
|
namedArgs := map[string]string{}
|
||||||
|
n := 0
|
||||||
|
for _, arg := range args {
|
||||||
|
name, value, isNamed := strings.Cut(arg, "=")
|
||||||
|
if isNamed {
|
||||||
|
namedArgs[name] = value
|
||||||
|
} else {
|
||||||
|
args[n] = arg
|
||||||
|
n++
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return parseCommandOptions(cmd.Options, args[:n], namedArgs)
|
||||||
|
}
|
||||||
|
|
||||||
|
func fnCommands(ce *WrappedCommandEvent) {
|
||||||
|
if len(ce.Args) < 2 {
|
||||||
|
ce.Reply("**Usage**: `$cmdprefix commands search <_query_>` OR `$cmdprefix commands help <_command_>`")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
subcmd := strings.ToLower(ce.Args[0])
|
||||||
|
if subcmd == "search" {
|
||||||
|
results, err := ce.User.Session.ApplicationCommandsSearch(ce.Portal.Key.ChannelID, ce.Args[1], ce.Portal.RefererOpt(""))
|
||||||
|
if err != nil {
|
||||||
|
ce.Reply("Error searching for commands: %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
formatted := make([]string, len(results))
|
||||||
|
ce.Portal.commandsLock.Lock()
|
||||||
|
for i, result := range results {
|
||||||
|
ce.Portal.commands[result.Name] = result
|
||||||
|
formatted[i] = indent(formatCommand(result), " ")
|
||||||
|
formatted[i] = "*" + formatted[i][1:]
|
||||||
|
}
|
||||||
|
ce.Portal.commandsLock.Unlock()
|
||||||
|
ce.Reply("Found results:\n" + strings.Join(formatted, "\n"))
|
||||||
|
} else if subcmd == "help" {
|
||||||
|
command := strings.ToLower(ce.Args[1])
|
||||||
|
cmd, err := ce.Portal.getCommand(ce.User, command)
|
||||||
|
if err != nil {
|
||||||
|
ce.Reply("Error searching for commands: %v", err)
|
||||||
|
} else if cmd == nil {
|
||||||
|
ce.Reply("Command %q not found", command)
|
||||||
|
} else {
|
||||||
|
ce.Reply(formatCommand(cmd))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func fnExec(ce *WrappedCommandEvent) {
|
||||||
|
if len(ce.Args) == 0 {
|
||||||
|
ce.Reply("**Usage**: `$cmdprefix exec <command> [arg=value ...]`")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
args, err := shlex.Split(ce.RawArgs)
|
||||||
|
if err != nil {
|
||||||
|
ce.Reply("Error parsing args with shlex: %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
command := strings.ToLower(args[0])
|
||||||
|
cmd, err := ce.Portal.getCommand(ce.User, command)
|
||||||
|
if err != nil {
|
||||||
|
ce.Reply("Error searching for commands: %v", err)
|
||||||
|
} else if cmd == nil {
|
||||||
|
ce.Reply("Command %q not found", command)
|
||||||
|
} else if options, err := executeCommand(cmd, args[1:]); err != nil {
|
||||||
|
ce.Reply("Error parsing arguments: %v\n\n**Usage:** "+formatCommand(cmd), err)
|
||||||
|
} else {
|
||||||
|
nonce := generateNonce()
|
||||||
|
ce.User.pendingInteractionsLock.Lock()
|
||||||
|
ce.User.pendingInteractions[nonce] = ce
|
||||||
|
ce.User.pendingInteractionsLock.Unlock()
|
||||||
|
err = ce.User.Session.SendInteractions(ce.Portal.GuildID, ce.Portal.Key.ChannelID, cmd, options, nonce, ce.Portal.RefererOpt(""))
|
||||||
|
if err != nil {
|
||||||
|
ce.Reply("Error sending interaction: %v", err)
|
||||||
|
ce.User.pendingInteractionsLock.Lock()
|
||||||
|
delete(ce.User.pendingInteractions, nonce)
|
||||||
|
ce.User.pendingInteractionsLock.Unlock()
|
||||||
|
} else {
|
||||||
|
go func() {
|
||||||
|
time.Sleep(10 * time.Second)
|
||||||
|
ce.User.pendingInteractionsLock.Lock()
|
||||||
|
if _, stillWaiting := ce.User.pendingInteractions[nonce]; stillWaiting {
|
||||||
|
delete(ce.User.pendingInteractions, nonce)
|
||||||
|
ce.Reply("Timed out waiting for interaction success")
|
||||||
|
}
|
||||||
|
ce.User.pendingInteractionsLock.Unlock()
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
239
config/bridge.go
Normal file
239
config/bridge.go
Normal file
@@ -0,0 +1,239 @@
|
|||||||
|
// 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 config
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
"text/template"
|
||||||
|
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
|
||||||
|
"maunium.net/go/mautrix/bridge/bridgeconfig"
|
||||||
|
)
|
||||||
|
|
||||||
|
type BridgeConfig struct {
|
||||||
|
UsernameTemplate string `yaml:"username_template"`
|
||||||
|
DisplaynameTemplate string `yaml:"displayname_template"`
|
||||||
|
ChannelNameTemplate string `yaml:"channel_name_template"`
|
||||||
|
GuildNameTemplate string `yaml:"guild_name_template"`
|
||||||
|
PrivateChatPortalMeta string `yaml:"private_chat_portal_meta"`
|
||||||
|
PrivateChannelCreateLimit int `yaml:"startup_private_channel_create_limit"`
|
||||||
|
|
||||||
|
PortalMessageBuffer int `yaml:"portal_message_buffer"`
|
||||||
|
|
||||||
|
PublicAddress string `yaml:"public_address"`
|
||||||
|
AvatarProxyKey string `yaml:"avatar_proxy_key"`
|
||||||
|
|
||||||
|
DeliveryReceipts bool `yaml:"delivery_receipts"`
|
||||||
|
MessageStatusEvents bool `yaml:"message_status_events"`
|
||||||
|
MessageErrorNotices bool `yaml:"message_error_notices"`
|
||||||
|
RestrictedRooms bool `yaml:"restricted_rooms"`
|
||||||
|
AutojoinThreadOnOpen bool `yaml:"autojoin_thread_on_open"`
|
||||||
|
EmbedFieldsAsTables bool `yaml:"embed_fields_as_tables"`
|
||||||
|
MuteChannelsOnCreate bool `yaml:"mute_channels_on_create"`
|
||||||
|
SyncDirectChatList bool `yaml:"sync_direct_chat_list"`
|
||||||
|
ResendBridgeInfo bool `yaml:"resend_bridge_info"`
|
||||||
|
CustomEmojiReactions bool `yaml:"custom_emoji_reactions"`
|
||||||
|
DeletePortalOnChannelDelete bool `yaml:"delete_portal_on_channel_delete"`
|
||||||
|
DeleteGuildOnLeave bool `yaml:"delete_guild_on_leave"`
|
||||||
|
FederateRooms bool `yaml:"federate_rooms"`
|
||||||
|
PrefixWebhookMessages bool `yaml:"prefix_webhook_messages"`
|
||||||
|
EnableWebhookAvatars bool `yaml:"enable_webhook_avatars"`
|
||||||
|
UseDiscordCDNUpload bool `yaml:"use_discord_cdn_upload"`
|
||||||
|
|
||||||
|
Proxy string `yaml:"proxy"`
|
||||||
|
|
||||||
|
CacheMedia string `yaml:"cache_media"`
|
||||||
|
DirectMedia DirectMedia `yaml:"direct_media"`
|
||||||
|
|
||||||
|
AnimatedSticker struct {
|
||||||
|
Target string `yaml:"target"`
|
||||||
|
Args struct {
|
||||||
|
Width int `yaml:"width"`
|
||||||
|
Height int `yaml:"height"`
|
||||||
|
FPS int `yaml:"fps"`
|
||||||
|
} `yaml:"args"`
|
||||||
|
} `yaml:"animated_sticker"`
|
||||||
|
|
||||||
|
DoublePuppetConfig bridgeconfig.DoublePuppetConfig `yaml:",inline"`
|
||||||
|
|
||||||
|
CommandPrefix string `yaml:"command_prefix"`
|
||||||
|
ManagementRoomText bridgeconfig.ManagementRoomTexts `yaml:"management_room_text"`
|
||||||
|
|
||||||
|
Backfill struct {
|
||||||
|
Limits struct {
|
||||||
|
Initial BackfillLimitPart `yaml:"initial"`
|
||||||
|
Missed BackfillLimitPart `yaml:"missed"`
|
||||||
|
} `yaml:"forward_limits"`
|
||||||
|
MaxGuildMembers int `yaml:"max_guild_members"`
|
||||||
|
} `yaml:"backfill"`
|
||||||
|
|
||||||
|
Encryption bridgeconfig.EncryptionConfig `yaml:"encryption"`
|
||||||
|
|
||||||
|
Provisioning struct {
|
||||||
|
Prefix string `yaml:"prefix"`
|
||||||
|
SharedSecret string `yaml:"shared_secret"`
|
||||||
|
DebugEndpoints bool `yaml:"debug_endpoints"`
|
||||||
|
} `yaml:"provisioning"`
|
||||||
|
|
||||||
|
Permissions bridgeconfig.PermissionConfig `yaml:"permissions"`
|
||||||
|
|
||||||
|
usernameTemplate *template.Template `yaml:"-"`
|
||||||
|
displaynameTemplate *template.Template `yaml:"-"`
|
||||||
|
channelNameTemplate *template.Template `yaml:"-"`
|
||||||
|
guildNameTemplate *template.Template `yaml:"-"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type DirectMedia struct {
|
||||||
|
Enabled bool `yaml:"enabled"`
|
||||||
|
ServerName string `yaml:"server_name"`
|
||||||
|
WellKnownResponse string `yaml:"well_known_response"`
|
||||||
|
AllowProxy bool `yaml:"allow_proxy"`
|
||||||
|
ServerKey string `yaml:"server_key"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type BackfillLimitPart struct {
|
||||||
|
DM int `yaml:"dm"`
|
||||||
|
Channel int `yaml:"channel"`
|
||||||
|
Thread int `yaml:"thread"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (bc *BridgeConfig) GetResendBridgeInfo() bool {
|
||||||
|
return bc.ResendBridgeInfo
|
||||||
|
}
|
||||||
|
|
||||||
|
func (bc *BridgeConfig) EnableMessageStatusEvents() bool {
|
||||||
|
return bc.MessageStatusEvents
|
||||||
|
}
|
||||||
|
|
||||||
|
func (bc *BridgeConfig) EnableMessageErrorNotices() bool {
|
||||||
|
return bc.MessageErrorNotices
|
||||||
|
}
|
||||||
|
|
||||||
|
func boolToInt(val bool) int {
|
||||||
|
if val {
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (bc *BridgeConfig) Validate() error {
|
||||||
|
_, hasWildcard := bc.Permissions["*"]
|
||||||
|
_, hasExampleDomain := bc.Permissions["example.com"]
|
||||||
|
_, hasExampleUser := bc.Permissions["@admin:example.com"]
|
||||||
|
exampleLen := boolToInt(hasWildcard) + boolToInt(hasExampleUser) + boolToInt(hasExampleDomain)
|
||||||
|
if len(bc.Permissions) <= exampleLen {
|
||||||
|
return errors.New("bridge.permissions not configured")
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type umBridgeConfig BridgeConfig
|
||||||
|
|
||||||
|
func (bc *BridgeConfig) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
||||||
|
err := unmarshal((*umBridgeConfig)(bc))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
bc.usernameTemplate, err = template.New("username").Parse(bc.UsernameTemplate)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
} else if !strings.Contains(bc.FormatUsername("1234567890"), "1234567890") {
|
||||||
|
return fmt.Errorf("username template is missing user ID placeholder")
|
||||||
|
}
|
||||||
|
bc.displaynameTemplate, err = template.New("displayname").Parse(bc.DisplaynameTemplate)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
bc.channelNameTemplate, err = template.New("channel_name").Parse(bc.ChannelNameTemplate)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
bc.guildNameTemplate, err = template.New("guild_name").Parse(bc.GuildNameTemplate)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var _ bridgeconfig.BridgeConfig = (*BridgeConfig)(nil)
|
||||||
|
|
||||||
|
func (bc BridgeConfig) GetDoublePuppetConfig() bridgeconfig.DoublePuppetConfig {
|
||||||
|
return bc.DoublePuppetConfig
|
||||||
|
}
|
||||||
|
|
||||||
|
func (bc BridgeConfig) GetEncryptionConfig() bridgeconfig.EncryptionConfig {
|
||||||
|
return bc.Encryption
|
||||||
|
}
|
||||||
|
|
||||||
|
func (bc BridgeConfig) GetCommandPrefix() string {
|
||||||
|
return bc.CommandPrefix
|
||||||
|
}
|
||||||
|
|
||||||
|
func (bc BridgeConfig) GetManagementRoomTexts() bridgeconfig.ManagementRoomTexts {
|
||||||
|
return bc.ManagementRoomText
|
||||||
|
}
|
||||||
|
|
||||||
|
func (bc BridgeConfig) FormatUsername(userID string) string {
|
||||||
|
var buffer strings.Builder
|
||||||
|
_ = bc.usernameTemplate.Execute(&buffer, userID)
|
||||||
|
return buffer.String()
|
||||||
|
}
|
||||||
|
|
||||||
|
type DisplaynameParams struct {
|
||||||
|
*discordgo.User
|
||||||
|
Webhook bool
|
||||||
|
Application bool
|
||||||
|
}
|
||||||
|
|
||||||
|
func (bc BridgeConfig) FormatDisplayname(user *discordgo.User, webhook, application bool) string {
|
||||||
|
var buffer strings.Builder
|
||||||
|
_ = bc.displaynameTemplate.Execute(&buffer, &DisplaynameParams{
|
||||||
|
User: user,
|
||||||
|
Webhook: webhook,
|
||||||
|
Application: application,
|
||||||
|
})
|
||||||
|
return buffer.String()
|
||||||
|
}
|
||||||
|
|
||||||
|
type ChannelNameParams struct {
|
||||||
|
Name string
|
||||||
|
ParentName string
|
||||||
|
GuildName string
|
||||||
|
NSFW bool
|
||||||
|
Type discordgo.ChannelType
|
||||||
|
}
|
||||||
|
|
||||||
|
func (bc BridgeConfig) FormatChannelName(params ChannelNameParams) string {
|
||||||
|
var buffer strings.Builder
|
||||||
|
_ = bc.channelNameTemplate.Execute(&buffer, params)
|
||||||
|
return buffer.String()
|
||||||
|
}
|
||||||
|
|
||||||
|
type GuildNameParams struct {
|
||||||
|
Name string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (bc BridgeConfig) FormatGuildName(params GuildNameParams) string {
|
||||||
|
var buffer strings.Builder
|
||||||
|
_ = bc.guildNameTemplate.Execute(&buffer, params)
|
||||||
|
return buffer.String()
|
||||||
|
}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
||||||
// Copyright (C) 2026 Tulir Asokan
|
// Copyright (C) 2022 Tulir Asokan
|
||||||
//
|
//
|
||||||
// This program is free software: you can redistribute it and/or modify
|
// 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
|
// it under the terms of the GNU Affero General Public License as published by
|
||||||
@@ -14,21 +14,22 @@
|
|||||||
// You should have received a copy of the GNU Affero General Public License
|
// 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/>.
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package connector
|
package config
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"maunium.net/go/mautrix/bridgev2/database"
|
"maunium.net/go/mautrix/bridge/bridgeconfig"
|
||||||
|
"maunium.net/go/mautrix/id"
|
||||||
"go.mau.fi/mautrix-discord/pkg/discordid"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func (d *DiscordConnector) GetDBMetaTypes() database.MetaTypes {
|
type Config struct {
|
||||||
return database.MetaTypes{
|
*bridgeconfig.BaseConfig `yaml:",inline"`
|
||||||
Portal: func() any {
|
|
||||||
return &discordid.PortalMetadata{}
|
Bridge BridgeConfig `yaml:"bridge"`
|
||||||
},
|
}
|
||||||
UserLogin: func() any {
|
|
||||||
return &discordid.UserLoginMetadata{}
|
func (config *Config) CanAutoDoublePuppet(userID id.UserID) bool {
|
||||||
},
|
_, homeserver, _ := userID.Parse()
|
||||||
}
|
_, hasSecret := config.Bridge.DoublePuppetConfig.SharedSecretMap[homeserver]
|
||||||
|
|
||||||
|
return hasSecret
|
||||||
}
|
}
|
||||||
151
config/upgrade.go
Normal file
151
config/upgrade.go
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
||||||
|
// Copyright (C) 2023 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 config
|
||||||
|
|
||||||
|
import (
|
||||||
|
up "go.mau.fi/util/configupgrade"
|
||||||
|
"go.mau.fi/util/random"
|
||||||
|
"maunium.net/go/mautrix/bridge/bridgeconfig"
|
||||||
|
"maunium.net/go/mautrix/federation"
|
||||||
|
)
|
||||||
|
|
||||||
|
func DoUpgrade(helper *up.Helper) {
|
||||||
|
bridgeconfig.Upgrader.DoUpgrade(helper)
|
||||||
|
|
||||||
|
helper.Copy(up.Str, "bridge", "username_template")
|
||||||
|
helper.Copy(up.Str, "bridge", "displayname_template")
|
||||||
|
helper.Copy(up.Str, "bridge", "channel_name_template")
|
||||||
|
helper.Copy(up.Str, "bridge", "guild_name_template")
|
||||||
|
if legacyPrivateChatPortalMeta, ok := helper.Get(up.Bool, "bridge", "private_chat_portal_meta"); ok {
|
||||||
|
updatedPrivateChatPortalMeta := "default"
|
||||||
|
if legacyPrivateChatPortalMeta == "true" {
|
||||||
|
updatedPrivateChatPortalMeta = "always"
|
||||||
|
}
|
||||||
|
helper.Set(up.Str, updatedPrivateChatPortalMeta, "bridge", "private_chat_portal_meta")
|
||||||
|
} else {
|
||||||
|
helper.Copy(up.Str, "bridge", "private_chat_portal_meta")
|
||||||
|
}
|
||||||
|
helper.Copy(up.Int, "bridge", "startup_private_channel_create_limit")
|
||||||
|
helper.Copy(up.Str|up.Null, "bridge", "public_address")
|
||||||
|
if apkey, ok := helper.Get(up.Str, "bridge", "avatar_proxy_key"); !ok || apkey == "generate" {
|
||||||
|
helper.Set(up.Str, random.String(32), "bridge", "avatar_proxy_key")
|
||||||
|
} else {
|
||||||
|
helper.Copy(up.Str, "bridge", "avatar_proxy_key")
|
||||||
|
}
|
||||||
|
helper.Copy(up.Int, "bridge", "portal_message_buffer")
|
||||||
|
helper.Copy(up.Bool, "bridge", "delivery_receipts")
|
||||||
|
helper.Copy(up.Bool, "bridge", "message_status_events")
|
||||||
|
helper.Copy(up.Bool, "bridge", "message_error_notices")
|
||||||
|
helper.Copy(up.Bool, "bridge", "restricted_rooms")
|
||||||
|
helper.Copy(up.Bool, "bridge", "autojoin_thread_on_open")
|
||||||
|
helper.Copy(up.Bool, "bridge", "embed_fields_as_tables")
|
||||||
|
helper.Copy(up.Bool, "bridge", "mute_channels_on_create")
|
||||||
|
helper.Copy(up.Bool, "bridge", "sync_direct_chat_list")
|
||||||
|
helper.Copy(up.Bool, "bridge", "resend_bridge_info")
|
||||||
|
helper.Copy(up.Bool, "bridge", "custom_emoji_reactions")
|
||||||
|
helper.Copy(up.Bool, "bridge", "delete_portal_on_channel_delete")
|
||||||
|
helper.Copy(up.Bool, "bridge", "delete_guild_on_leave")
|
||||||
|
helper.Copy(up.Bool, "bridge", "federate_rooms")
|
||||||
|
helper.Copy(up.Bool, "bridge", "prefix_webhook_messages")
|
||||||
|
helper.Copy(up.Bool, "bridge", "enable_webhook_avatars")
|
||||||
|
helper.Copy(up.Bool, "bridge", "use_discord_cdn_upload")
|
||||||
|
helper.Copy(up.Str|up.Null, "bridge", "proxy")
|
||||||
|
helper.Copy(up.Str, "bridge", "cache_media")
|
||||||
|
helper.Copy(up.Bool, "bridge", "direct_media", "enabled")
|
||||||
|
helper.Copy(up.Str, "bridge", "direct_media", "server_name")
|
||||||
|
helper.Copy(up.Str|up.Null, "bridge", "direct_media", "well_known_response")
|
||||||
|
helper.Copy(up.Bool, "bridge", "direct_media", "allow_proxy")
|
||||||
|
if serverKey, ok := helper.Get(up.Str, "bridge", "direct_media", "server_key"); !ok || serverKey == "generate" {
|
||||||
|
serverKey = federation.GenerateSigningKey().SynapseString()
|
||||||
|
helper.Set(up.Str, serverKey, "bridge", "direct_media", "server_key")
|
||||||
|
} else {
|
||||||
|
helper.Copy(up.Str, "bridge", "direct_media", "server_key")
|
||||||
|
}
|
||||||
|
helper.Copy(up.Str, "bridge", "animated_sticker", "target")
|
||||||
|
helper.Copy(up.Int, "bridge", "animated_sticker", "args", "width")
|
||||||
|
helper.Copy(up.Int, "bridge", "animated_sticker", "args", "height")
|
||||||
|
helper.Copy(up.Int, "bridge", "animated_sticker", "args", "fps")
|
||||||
|
helper.Copy(up.Map, "bridge", "double_puppet_server_map")
|
||||||
|
helper.Copy(up.Bool, "bridge", "double_puppet_allow_discovery")
|
||||||
|
helper.Copy(up.Map, "bridge", "login_shared_secret_map")
|
||||||
|
helper.Copy(up.Str, "bridge", "command_prefix")
|
||||||
|
helper.Copy(up.Str, "bridge", "management_room_text", "welcome")
|
||||||
|
helper.Copy(up.Str, "bridge", "management_room_text", "welcome_connected")
|
||||||
|
helper.Copy(up.Str, "bridge", "management_room_text", "welcome_unconnected")
|
||||||
|
helper.Copy(up.Str|up.Null, "bridge", "management_room_text", "additional_help")
|
||||||
|
helper.Copy(up.Bool, "bridge", "backfill", "enabled")
|
||||||
|
helper.Copy(up.Int, "bridge", "backfill", "forward_limits", "initial", "dm")
|
||||||
|
helper.Copy(up.Int, "bridge", "backfill", "forward_limits", "initial", "channel")
|
||||||
|
helper.Copy(up.Int, "bridge", "backfill", "forward_limits", "initial", "thread")
|
||||||
|
helper.Copy(up.Int, "bridge", "backfill", "forward_limits", "missed", "dm")
|
||||||
|
helper.Copy(up.Int, "bridge", "backfill", "forward_limits", "missed", "channel")
|
||||||
|
helper.Copy(up.Int, "bridge", "backfill", "forward_limits", "missed", "thread")
|
||||||
|
helper.Copy(up.Int, "bridge", "backfill", "max_guild_members")
|
||||||
|
helper.Copy(up.Bool, "bridge", "encryption", "allow")
|
||||||
|
helper.Copy(up.Bool, "bridge", "encryption", "default")
|
||||||
|
helper.Copy(up.Bool, "bridge", "encryption", "require")
|
||||||
|
helper.Copy(up.Bool, "bridge", "encryption", "appservice")
|
||||||
|
helper.Copy(up.Bool, "bridge", "encryption", "msc4190")
|
||||||
|
helper.Copy(up.Bool, "bridge", "encryption", "allow_key_sharing")
|
||||||
|
helper.Copy(up.Bool, "bridge", "encryption", "plaintext_mentions")
|
||||||
|
helper.Copy(up.Bool, "bridge", "encryption", "delete_keys", "delete_outbound_on_ack")
|
||||||
|
helper.Copy(up.Bool, "bridge", "encryption", "delete_keys", "dont_store_outbound")
|
||||||
|
helper.Copy(up.Bool, "bridge", "encryption", "delete_keys", "ratchet_on_decrypt")
|
||||||
|
helper.Copy(up.Bool, "bridge", "encryption", "delete_keys", "delete_fully_used_on_decrypt")
|
||||||
|
helper.Copy(up.Bool, "bridge", "encryption", "delete_keys", "delete_prev_on_new_session")
|
||||||
|
helper.Copy(up.Bool, "bridge", "encryption", "delete_keys", "delete_on_device_delete")
|
||||||
|
helper.Copy(up.Bool, "bridge", "encryption", "delete_keys", "periodically_delete_expired")
|
||||||
|
helper.Copy(up.Bool, "bridge", "encryption", "delete_keys", "delete_outdated_inbound")
|
||||||
|
helper.Copy(up.Str, "bridge", "encryption", "verification_levels", "receive")
|
||||||
|
helper.Copy(up.Str, "bridge", "encryption", "verification_levels", "send")
|
||||||
|
helper.Copy(up.Str, "bridge", "encryption", "verification_levels", "share")
|
||||||
|
helper.Copy(up.Bool, "bridge", "encryption", "rotation", "enable_custom")
|
||||||
|
helper.Copy(up.Int, "bridge", "encryption", "rotation", "milliseconds")
|
||||||
|
helper.Copy(up.Int, "bridge", "encryption", "rotation", "messages")
|
||||||
|
helper.Copy(up.Bool, "bridge", "encryption", "rotation", "disable_device_change_key_rotation")
|
||||||
|
|
||||||
|
helper.Copy(up.Str, "bridge", "provisioning", "prefix")
|
||||||
|
if secret, ok := helper.Get(up.Str, "bridge", "provisioning", "shared_secret"); !ok || secret == "generate" {
|
||||||
|
sharedSecret := random.String(64)
|
||||||
|
helper.Set(up.Str, sharedSecret, "bridge", "provisioning", "shared_secret")
|
||||||
|
} else {
|
||||||
|
helper.Copy(up.Str, "bridge", "provisioning", "shared_secret")
|
||||||
|
}
|
||||||
|
helper.Copy(up.Bool, "bridge", "provisioning", "debug_endpoints")
|
||||||
|
|
||||||
|
helper.Copy(up.Map, "bridge", "permissions")
|
||||||
|
//helper.Copy(up.Bool, "bridge", "relay", "enabled")
|
||||||
|
//helper.Copy(up.Bool, "bridge", "relay", "admin_only")
|
||||||
|
//helper.Copy(up.Map, "bridge", "relay", "message_formats")
|
||||||
|
}
|
||||||
|
|
||||||
|
var SpacedBlocks = [][]string{
|
||||||
|
{"homeserver", "software"},
|
||||||
|
{"appservice"},
|
||||||
|
{"appservice", "hostname"},
|
||||||
|
{"appservice", "database"},
|
||||||
|
{"appservice", "id"},
|
||||||
|
{"appservice", "as_token"},
|
||||||
|
{"bridge"},
|
||||||
|
{"bridge", "command_prefix"},
|
||||||
|
{"bridge", "management_room_text"},
|
||||||
|
{"bridge", "encryption"},
|
||||||
|
{"bridge", "provisioning"},
|
||||||
|
{"bridge", "permissions"},
|
||||||
|
//{"bridge", "relay"},
|
||||||
|
{"logging"},
|
||||||
|
}
|
||||||
72
custompuppet.go
Normal file
72
custompuppet.go
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"maunium.net/go/mautrix/id"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (puppet *Puppet) SwitchCustomMXID(accessToken string, mxid id.UserID) error {
|
||||||
|
puppet.CustomMXID = mxid
|
||||||
|
puppet.AccessToken = accessToken
|
||||||
|
puppet.Update()
|
||||||
|
err := puppet.StartCustomMXID(false)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
// TODO leave rooms with default puppet
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (puppet *Puppet) ClearCustomMXID() {
|
||||||
|
save := puppet.CustomMXID != "" || puppet.AccessToken != ""
|
||||||
|
puppet.bridge.puppetsLock.Lock()
|
||||||
|
if puppet.CustomMXID != "" && puppet.bridge.puppetsByCustomMXID[puppet.CustomMXID] == puppet {
|
||||||
|
delete(puppet.bridge.puppetsByCustomMXID, puppet.CustomMXID)
|
||||||
|
}
|
||||||
|
puppet.bridge.puppetsLock.Unlock()
|
||||||
|
puppet.CustomMXID = ""
|
||||||
|
puppet.AccessToken = ""
|
||||||
|
puppet.customIntent = nil
|
||||||
|
puppet.customUser = nil
|
||||||
|
if save {
|
||||||
|
puppet.Update()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (puppet *Puppet) StartCustomMXID(reloginOnFail bool) error {
|
||||||
|
newIntent, newAccessToken, err := puppet.bridge.DoublePuppet.Setup(puppet.CustomMXID, puppet.AccessToken, reloginOnFail)
|
||||||
|
if err != nil {
|
||||||
|
puppet.ClearCustomMXID()
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
puppet.bridge.puppetsLock.Lock()
|
||||||
|
puppet.bridge.puppetsByCustomMXID[puppet.CustomMXID] = puppet
|
||||||
|
puppet.bridge.puppetsLock.Unlock()
|
||||||
|
if puppet.AccessToken != newAccessToken {
|
||||||
|
puppet.AccessToken = newAccessToken
|
||||||
|
puppet.Update()
|
||||||
|
}
|
||||||
|
puppet.customIntent = newIntent
|
||||||
|
puppet.customUser = puppet.bridge.GetUserByMXID(puppet.CustomMXID)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (user *User) tryAutomaticDoublePuppeting() {
|
||||||
|
if !user.bridge.Config.CanAutoDoublePuppet(user.MXID) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
user.log.Debug().Msg("Checking if double puppeting needs to be enabled")
|
||||||
|
puppet := user.bridge.GetPuppetByID(user.DiscordID)
|
||||||
|
if len(puppet.CustomMXID) > 0 {
|
||||||
|
user.log.Debug().Msg("User already has double-puppeting enabled")
|
||||||
|
// Custom puppet already enabled
|
||||||
|
return
|
||||||
|
}
|
||||||
|
puppet.CustomMXID = user.MXID
|
||||||
|
err := puppet.StartCustomMXID(true)
|
||||||
|
if err != nil {
|
||||||
|
user.log.Warn().Err(err).Msg("Failed to login with shared secret")
|
||||||
|
} else {
|
||||||
|
// TODO leave rooms with default puppet
|
||||||
|
user.log.Debug().Msg("Successfully automatically enabled custom puppet")
|
||||||
|
}
|
||||||
|
}
|
||||||
76
database/database.go
Normal file
76
database/database.go
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
package database
|
||||||
|
|
||||||
|
import (
|
||||||
|
_ "embed"
|
||||||
|
|
||||||
|
_ "github.com/lib/pq"
|
||||||
|
_ "github.com/mattn/go-sqlite3"
|
||||||
|
"go.mau.fi/util/dbutil"
|
||||||
|
"maunium.net/go/maulogger/v2"
|
||||||
|
|
||||||
|
"go.mau.fi/mautrix-discord/database/upgrades"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Database struct {
|
||||||
|
*dbutil.Database
|
||||||
|
|
||||||
|
User *UserQuery
|
||||||
|
Portal *PortalQuery
|
||||||
|
Puppet *PuppetQuery
|
||||||
|
Message *MessageQuery
|
||||||
|
Thread *ThreadQuery
|
||||||
|
Reaction *ReactionQuery
|
||||||
|
Guild *GuildQuery
|
||||||
|
Role *RoleQuery
|
||||||
|
File *FileQuery
|
||||||
|
}
|
||||||
|
|
||||||
|
func New(baseDB *dbutil.Database, log maulogger.Logger) *Database {
|
||||||
|
db := &Database{Database: baseDB}
|
||||||
|
db.UpgradeTable = upgrades.Table
|
||||||
|
db.User = &UserQuery{
|
||||||
|
db: db,
|
||||||
|
log: log.Sub("User"),
|
||||||
|
}
|
||||||
|
db.Portal = &PortalQuery{
|
||||||
|
db: db,
|
||||||
|
log: log.Sub("Portal"),
|
||||||
|
}
|
||||||
|
db.Puppet = &PuppetQuery{
|
||||||
|
db: db,
|
||||||
|
log: log.Sub("Puppet"),
|
||||||
|
}
|
||||||
|
db.Message = &MessageQuery{
|
||||||
|
db: db,
|
||||||
|
log: log.Sub("Message"),
|
||||||
|
}
|
||||||
|
db.Thread = &ThreadQuery{
|
||||||
|
db: db,
|
||||||
|
log: log.Sub("Thread"),
|
||||||
|
}
|
||||||
|
db.Reaction = &ReactionQuery{
|
||||||
|
db: db,
|
||||||
|
log: log.Sub("Reaction"),
|
||||||
|
}
|
||||||
|
db.Guild = &GuildQuery{
|
||||||
|
db: db,
|
||||||
|
log: log.Sub("Guild"),
|
||||||
|
}
|
||||||
|
db.Role = &RoleQuery{
|
||||||
|
db: db,
|
||||||
|
log: log.Sub("Role"),
|
||||||
|
}
|
||||||
|
db.File = &FileQuery{
|
||||||
|
db: db,
|
||||||
|
log: log.Sub("File"),
|
||||||
|
}
|
||||||
|
return db
|
||||||
|
}
|
||||||
|
|
||||||
|
func strPtr[T ~string](val T) *string {
|
||||||
|
if val == "" {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
valStr := string(val)
|
||||||
|
return &valStr
|
||||||
|
}
|
||||||
138
database/file.go
Normal file
138
database/file.go
Normal file
@@ -0,0 +1,138 @@
|
|||||||
|
package database
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"go.mau.fi/util/dbutil"
|
||||||
|
log "maunium.net/go/maulogger/v2"
|
||||||
|
"maunium.net/go/mautrix/crypto/attachment"
|
||||||
|
"maunium.net/go/mautrix/id"
|
||||||
|
)
|
||||||
|
|
||||||
|
type FileQuery struct {
|
||||||
|
db *Database
|
||||||
|
log log.Logger
|
||||||
|
}
|
||||||
|
|
||||||
|
// language=postgresql
|
||||||
|
const (
|
||||||
|
fileSelect = "SELECT url, encrypted, mxc, id, emoji_name, size, width, height, mime_type, decryption_info, timestamp FROM discord_file"
|
||||||
|
fileInsert = `
|
||||||
|
INSERT INTO discord_file (url, encrypted, mxc, id, emoji_name, size, width, height, mime_type, decryption_info, timestamp)
|
||||||
|
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11)
|
||||||
|
`
|
||||||
|
)
|
||||||
|
|
||||||
|
func (fq *FileQuery) New() *File {
|
||||||
|
return &File{
|
||||||
|
db: fq.db,
|
||||||
|
log: fq.log,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (fq *FileQuery) Get(url string, encrypted bool) *File {
|
||||||
|
query := fileSelect + " WHERE url=$1 AND encrypted=$2"
|
||||||
|
return fq.New().Scan(fq.db.QueryRow(query, url, encrypted))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (fq *FileQuery) GetEmojiByMXC(mxc id.ContentURI) *File {
|
||||||
|
query := fileSelect + " WHERE mxc=$1 AND emoji_name<>'' LIMIT 1"
|
||||||
|
return fq.New().Scan(fq.db.QueryRow(query, mxc.String()))
|
||||||
|
}
|
||||||
|
|
||||||
|
type File struct {
|
||||||
|
db *Database
|
||||||
|
log log.Logger
|
||||||
|
|
||||||
|
URL string
|
||||||
|
Encrypted bool
|
||||||
|
MXC id.ContentURI
|
||||||
|
|
||||||
|
ID string
|
||||||
|
EmojiName string
|
||||||
|
|
||||||
|
Size int
|
||||||
|
Width int
|
||||||
|
Height int
|
||||||
|
MimeType string
|
||||||
|
|
||||||
|
DecryptionInfo *attachment.EncryptedFile
|
||||||
|
Timestamp time.Time
|
||||||
|
}
|
||||||
|
|
||||||
|
func (f *File) Scan(row dbutil.Scannable) *File {
|
||||||
|
var fileID, emojiName, decryptionInfo sql.NullString
|
||||||
|
var width, height sql.NullInt32
|
||||||
|
var timestamp int64
|
||||||
|
var mxc string
|
||||||
|
err := row.Scan(&f.URL, &f.Encrypted, &mxc, &fileID, &emojiName, &f.Size, &width, &height, &f.MimeType, &decryptionInfo, ×tamp)
|
||||||
|
if err != nil {
|
||||||
|
if !errors.Is(err, sql.ErrNoRows) {
|
||||||
|
f.log.Errorln("Database scan failed:", err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
f.ID = fileID.String
|
||||||
|
f.EmojiName = emojiName.String
|
||||||
|
f.Timestamp = time.UnixMilli(timestamp).UTC()
|
||||||
|
f.Width = int(width.Int32)
|
||||||
|
f.Height = int(height.Int32)
|
||||||
|
f.MXC, err = id.ParseContentURI(mxc)
|
||||||
|
if err != nil {
|
||||||
|
f.log.Errorfln("Failed to parse content URI %s: %v", mxc, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
if decryptionInfo.Valid {
|
||||||
|
err = json.Unmarshal([]byte(decryptionInfo.String), &f.DecryptionInfo)
|
||||||
|
if err != nil {
|
||||||
|
f.log.Errorfln("Failed to unmarshal decryption info of %v: %v", f.MXC, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return f
|
||||||
|
}
|
||||||
|
|
||||||
|
func positiveIntToNullInt32(val int) (ptr sql.NullInt32) {
|
||||||
|
if val > 0 {
|
||||||
|
ptr.Valid = true
|
||||||
|
ptr.Int32 = int32(val)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (f *File) Insert(txn dbutil.Execable) {
|
||||||
|
if txn == nil {
|
||||||
|
txn = f.db
|
||||||
|
}
|
||||||
|
var decryptionInfoStr sql.NullString
|
||||||
|
if f.DecryptionInfo != nil {
|
||||||
|
decryptionInfo, err := json.Marshal(f.DecryptionInfo)
|
||||||
|
if err != nil {
|
||||||
|
f.log.Warnfln("Failed to marshal decryption info of %v: %v", f.MXC, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
decryptionInfoStr.Valid = true
|
||||||
|
decryptionInfoStr.String = string(decryptionInfo)
|
||||||
|
}
|
||||||
|
_, err := txn.Exec(fileInsert,
|
||||||
|
f.URL, f.Encrypted, f.MXC.String(), strPtr(f.ID), strPtr(f.EmojiName), f.Size,
|
||||||
|
positiveIntToNullInt32(f.Width), positiveIntToNullInt32(f.Height), f.MimeType,
|
||||||
|
decryptionInfoStr, f.Timestamp.UnixMilli(),
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
f.log.Warnfln("Failed to insert copied file %v: %v", f.MXC, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (f *File) Delete() {
|
||||||
|
_, err := f.db.Exec("DELETE FROM discord_file WHERE url=$1 AND encrypted=$2", f.URL, f.Encrypted)
|
||||||
|
if err != nil {
|
||||||
|
f.log.Warnfln("Failed to delete copied file %v: %v", f.MXC, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
194
database/guild.go
Normal file
194
database/guild.go
Normal file
@@ -0,0 +1,194 @@
|
|||||||
|
package database
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"go.mau.fi/util/dbutil"
|
||||||
|
log "maunium.net/go/maulogger/v2"
|
||||||
|
"maunium.net/go/mautrix/id"
|
||||||
|
)
|
||||||
|
|
||||||
|
type GuildBridgingMode int
|
||||||
|
|
||||||
|
const (
|
||||||
|
// GuildBridgeNothing tells the bridge to never bridge messages, not even checking if a portal exists.
|
||||||
|
GuildBridgeNothing GuildBridgingMode = iota
|
||||||
|
// GuildBridgeIfPortalExists tells the bridge to bridge messages in channels that already have portals.
|
||||||
|
GuildBridgeIfPortalExists
|
||||||
|
// GuildBridgeCreateOnMessage tells the bridge to create portals as soon as a message is received.
|
||||||
|
GuildBridgeCreateOnMessage
|
||||||
|
// GuildBridgeEverything tells the bridge to proactively create portals on startup and when receiving channel create notifications.
|
||||||
|
GuildBridgeEverything
|
||||||
|
|
||||||
|
GuildBridgeInvalid GuildBridgingMode = -1
|
||||||
|
)
|
||||||
|
|
||||||
|
func ParseGuildBridgingMode(str string) GuildBridgingMode {
|
||||||
|
str = strings.ToLower(str)
|
||||||
|
str = strings.ReplaceAll(str, "-", "")
|
||||||
|
str = strings.ReplaceAll(str, "_", "")
|
||||||
|
switch str {
|
||||||
|
case "nothing", "0":
|
||||||
|
return GuildBridgeNothing
|
||||||
|
case "ifportalexists", "1":
|
||||||
|
return GuildBridgeIfPortalExists
|
||||||
|
case "createonmessage", "2":
|
||||||
|
return GuildBridgeCreateOnMessage
|
||||||
|
case "everything", "3":
|
||||||
|
return GuildBridgeEverything
|
||||||
|
default:
|
||||||
|
return GuildBridgeInvalid
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (gbm GuildBridgingMode) String() string {
|
||||||
|
switch gbm {
|
||||||
|
case GuildBridgeNothing:
|
||||||
|
return "nothing"
|
||||||
|
case GuildBridgeIfPortalExists:
|
||||||
|
return "if-portal-exists"
|
||||||
|
case GuildBridgeCreateOnMessage:
|
||||||
|
return "create-on-message"
|
||||||
|
case GuildBridgeEverything:
|
||||||
|
return "everything"
|
||||||
|
default:
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (gbm GuildBridgingMode) Description() string {
|
||||||
|
switch gbm {
|
||||||
|
case GuildBridgeNothing:
|
||||||
|
return "never bridge messages"
|
||||||
|
case GuildBridgeIfPortalExists:
|
||||||
|
return "bridge messages in existing portals"
|
||||||
|
case GuildBridgeCreateOnMessage:
|
||||||
|
return "bridge all messages and create portals on first message"
|
||||||
|
case GuildBridgeEverything:
|
||||||
|
return "bridge all messages and create portals proactively"
|
||||||
|
default:
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type GuildQuery struct {
|
||||||
|
db *Database
|
||||||
|
log log.Logger
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
guildSelect = "SELECT dcid, mxid, plain_name, name, name_set, avatar, avatar_url, avatar_set, bridging_mode FROM guild"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (gq *GuildQuery) New() *Guild {
|
||||||
|
return &Guild{
|
||||||
|
db: gq.db,
|
||||||
|
log: gq.log,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (gq *GuildQuery) GetByID(dcid string) *Guild {
|
||||||
|
query := guildSelect + " WHERE dcid=$1"
|
||||||
|
return gq.New().Scan(gq.db.QueryRow(query, dcid))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (gq *GuildQuery) GetByMXID(mxid id.RoomID) *Guild {
|
||||||
|
query := guildSelect + " WHERE mxid=$1"
|
||||||
|
return gq.New().Scan(gq.db.QueryRow(query, mxid))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (gq *GuildQuery) GetAll() []*Guild {
|
||||||
|
rows, err := gq.db.Query(guildSelect)
|
||||||
|
if err != nil {
|
||||||
|
gq.log.Errorln("Failed to query guilds:", err)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var guilds []*Guild
|
||||||
|
for rows.Next() {
|
||||||
|
guild := gq.New().Scan(rows)
|
||||||
|
if guild != nil {
|
||||||
|
guilds = append(guilds, guild)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return guilds
|
||||||
|
}
|
||||||
|
|
||||||
|
type Guild struct {
|
||||||
|
db *Database
|
||||||
|
log log.Logger
|
||||||
|
|
||||||
|
ID string
|
||||||
|
MXID id.RoomID
|
||||||
|
PlainName string
|
||||||
|
Name string
|
||||||
|
NameSet bool
|
||||||
|
Avatar string
|
||||||
|
AvatarURL id.ContentURI
|
||||||
|
AvatarSet bool
|
||||||
|
|
||||||
|
BridgingMode GuildBridgingMode
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *Guild) Scan(row dbutil.Scannable) *Guild {
|
||||||
|
var mxid sql.NullString
|
||||||
|
var avatarURL string
|
||||||
|
err := row.Scan(&g.ID, &mxid, &g.PlainName, &g.Name, &g.NameSet, &g.Avatar, &avatarURL, &g.AvatarSet, &g.BridgingMode)
|
||||||
|
if err != nil {
|
||||||
|
if !errors.Is(err, sql.ErrNoRows) {
|
||||||
|
g.log.Errorln("Database scan failed:", err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
if g.BridgingMode < GuildBridgeNothing || g.BridgingMode > GuildBridgeEverything {
|
||||||
|
panic(fmt.Errorf("invalid guild bridging mode %d in guild %s", g.BridgingMode, g.ID))
|
||||||
|
}
|
||||||
|
g.MXID = id.RoomID(mxid.String)
|
||||||
|
g.AvatarURL, _ = id.ParseContentURI(avatarURL)
|
||||||
|
return g
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *Guild) mxidPtr() *id.RoomID {
|
||||||
|
if g.MXID != "" {
|
||||||
|
return &g.MXID
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *Guild) Insert() {
|
||||||
|
query := `
|
||||||
|
INSERT INTO guild (dcid, mxid, plain_name, name, name_set, avatar, avatar_url, avatar_set, bridging_mode)
|
||||||
|
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9)
|
||||||
|
`
|
||||||
|
_, err := g.db.Exec(query, g.ID, g.mxidPtr(), g.PlainName, g.Name, g.NameSet, g.Avatar, g.AvatarURL.String(), g.AvatarSet, g.BridgingMode)
|
||||||
|
if err != nil {
|
||||||
|
g.log.Warnfln("Failed to insert %s: %v", g.ID, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *Guild) Update() {
|
||||||
|
query := `
|
||||||
|
UPDATE guild SET mxid=$1, plain_name=$2, name=$3, name_set=$4, avatar=$5, avatar_url=$6, avatar_set=$7, bridging_mode=$8
|
||||||
|
WHERE dcid=$9
|
||||||
|
`
|
||||||
|
_, err := g.db.Exec(query, g.mxidPtr(), g.PlainName, g.Name, g.NameSet, g.Avatar, g.AvatarURL.String(), g.AvatarSet, g.BridgingMode, g.ID)
|
||||||
|
if err != nil {
|
||||||
|
g.log.Warnfln("Failed to update %s: %v", g.ID, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *Guild) Delete() {
|
||||||
|
_, err := g.db.Exec("DELETE FROM guild WHERE dcid=$1", g.ID)
|
||||||
|
if err != nil {
|
||||||
|
g.log.Warnfln("Failed to delete %s: %v", g.ID, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
20
database/json.go
Normal file
20
database/json.go
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
package database
|
||||||
|
|
||||||
|
import (
|
||||||
|
"go.mau.fi/util/dbutil"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Backported from mautrix/go-util@e5cb5e96d15cb87ffe6e5970c2f90ee47980e715.
|
||||||
|
|
||||||
|
// JSONPtr is a convenience function for wrapping a pointer to a value in the JSON utility, but removing typed nils
|
||||||
|
// (i.e. preventing nils from turning into the string "null" in the database).
|
||||||
|
func JSONPtr[T any](val *T) dbutil.JSON {
|
||||||
|
return dbutil.JSON{Data: UntypedNil(val)}
|
||||||
|
}
|
||||||
|
|
||||||
|
func UntypedNil[T any](val *T) any {
|
||||||
|
if val == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return val
|
||||||
|
}
|
||||||
258
database/message.go
Normal file
258
database/message.go
Normal file
@@ -0,0 +1,258 @@
|
|||||||
|
package database
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"go.mau.fi/util/dbutil"
|
||||||
|
log "maunium.net/go/maulogger/v2"
|
||||||
|
"maunium.net/go/mautrix/id"
|
||||||
|
)
|
||||||
|
|
||||||
|
type MessageQuery struct {
|
||||||
|
db *Database
|
||||||
|
log log.Logger
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
messageSelect = "SELECT dcid, dc_attachment_id, dc_chan_id, dc_chan_receiver, dc_sender, timestamp, dc_edit_timestamp, dc_thread_id, mxid, sender_mxid FROM message"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (mq *MessageQuery) New() *Message {
|
||||||
|
return &Message{
|
||||||
|
db: mq.db,
|
||||||
|
log: mq.log,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (mq *MessageQuery) scanAll(rows dbutil.Rows, err error) []*Message {
|
||||||
|
if err != nil {
|
||||||
|
mq.log.Warnfln("Failed to query many messages: %v", err)
|
||||||
|
panic(err)
|
||||||
|
} else if rows == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var messages []*Message
|
||||||
|
for rows.Next() {
|
||||||
|
messages = append(messages, mq.New().Scan(rows))
|
||||||
|
}
|
||||||
|
|
||||||
|
return messages
|
||||||
|
}
|
||||||
|
|
||||||
|
func (mq *MessageQuery) GetByDiscordID(key PortalKey, discordID string) []*Message {
|
||||||
|
query := messageSelect + " WHERE dc_chan_id=$1 AND dc_chan_receiver=$2 AND dcid=$3 ORDER BY dc_attachment_id ASC"
|
||||||
|
return mq.scanAll(mq.db.Query(query, key.ChannelID, key.Receiver, discordID))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (mq *MessageQuery) GetFirstByDiscordID(key PortalKey, discordID string) *Message {
|
||||||
|
query := messageSelect + " WHERE dc_chan_id=$1 AND dc_chan_receiver=$2 AND dcid=$3 ORDER BY dc_attachment_id ASC LIMIT 1"
|
||||||
|
return mq.New().Scan(mq.db.QueryRow(query, key.ChannelID, key.Receiver, discordID))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (mq *MessageQuery) GetLastByDiscordID(key PortalKey, discordID string) *Message {
|
||||||
|
query := messageSelect + " WHERE dc_chan_id=$1 AND dc_chan_receiver=$2 AND dcid=$3 ORDER BY dc_attachment_id DESC LIMIT 1"
|
||||||
|
return mq.New().Scan(mq.db.QueryRow(query, key.ChannelID, key.Receiver, discordID))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (mq *MessageQuery) GetClosestBefore(key PortalKey, threadID string, ts time.Time) *Message {
|
||||||
|
query := messageSelect + " WHERE dc_chan_id=$1 AND dc_chan_receiver=$2 AND dc_thread_id=$3 AND timestamp<=$4 ORDER BY timestamp DESC, dc_attachment_id DESC LIMIT 1"
|
||||||
|
return mq.New().Scan(mq.db.QueryRow(query, key.ChannelID, key.Receiver, threadID, ts.UnixMilli()))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (mq *MessageQuery) GetLastInThread(key PortalKey, threadID string) *Message {
|
||||||
|
query := messageSelect + " WHERE dc_chan_id=$1 AND dc_chan_receiver=$2 AND dc_thread_id=$3 ORDER BY timestamp DESC, dc_attachment_id DESC LIMIT 1"
|
||||||
|
return mq.New().Scan(mq.db.QueryRow(query, key.ChannelID, key.Receiver, threadID))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (mq *MessageQuery) GetLast(key PortalKey) *Message {
|
||||||
|
query := messageSelect + " WHERE dc_chan_id=$1 AND dc_chan_receiver=$2 ORDER BY timestamp DESC LIMIT 1"
|
||||||
|
return mq.New().Scan(mq.db.QueryRow(query, key.ChannelID, key.Receiver))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (mq *MessageQuery) DeleteAll(key PortalKey) {
|
||||||
|
query := "DELETE FROM message WHERE dc_chan_id=$1 AND dc_chan_receiver=$2"
|
||||||
|
_, err := mq.db.Exec(query, key.ChannelID, key.Receiver)
|
||||||
|
if err != nil {
|
||||||
|
mq.log.Warnfln("Failed to delete messages of %s: %v", key, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (mq *MessageQuery) GetByMXID(key PortalKey, mxid id.EventID) *Message {
|
||||||
|
query := messageSelect + " WHERE dc_chan_id=$1 AND dc_chan_receiver=$2 AND mxid=$3"
|
||||||
|
|
||||||
|
row := mq.db.QueryRow(query, key.ChannelID, key.Receiver, mxid)
|
||||||
|
if row == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return mq.New().Scan(row)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (mq *MessageQuery) MassInsert(key PortalKey, msgs []Message) {
|
||||||
|
if len(msgs) == 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
valueStringFormat := "($%d, $%d, $1, $2, $%d, $%d, $%d, $%d, $%d, $%d)"
|
||||||
|
if mq.db.Dialect == dbutil.SQLite {
|
||||||
|
valueStringFormat = strings.ReplaceAll(valueStringFormat, "$", "?")
|
||||||
|
}
|
||||||
|
params := make([]interface{}, 2+len(msgs)*8)
|
||||||
|
placeholders := make([]string, len(msgs))
|
||||||
|
params[0] = key.ChannelID
|
||||||
|
params[1] = key.Receiver
|
||||||
|
for i, msg := range msgs {
|
||||||
|
baseIndex := 2 + i*8
|
||||||
|
params[baseIndex] = msg.DiscordID
|
||||||
|
params[baseIndex+1] = msg.AttachmentID
|
||||||
|
params[baseIndex+2] = msg.SenderID
|
||||||
|
params[baseIndex+3] = msg.Timestamp.UnixMilli()
|
||||||
|
params[baseIndex+4] = msg.editTimestampVal()
|
||||||
|
params[baseIndex+5] = msg.ThreadID
|
||||||
|
params[baseIndex+6] = msg.MXID
|
||||||
|
params[baseIndex+7] = msg.SenderMXID.String()
|
||||||
|
placeholders[i] = fmt.Sprintf(valueStringFormat, baseIndex+1, baseIndex+2, baseIndex+3, baseIndex+4, baseIndex+5, baseIndex+6, baseIndex+7, baseIndex+8)
|
||||||
|
}
|
||||||
|
_, err := mq.db.Exec(fmt.Sprintf(messageMassInsertTemplate, strings.Join(placeholders, ", ")), params...)
|
||||||
|
if err != nil {
|
||||||
|
mq.log.Warnfln("Failed to insert %d messages: %v", len(msgs), err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type Message struct {
|
||||||
|
db *Database
|
||||||
|
log log.Logger
|
||||||
|
|
||||||
|
DiscordID string
|
||||||
|
AttachmentID string
|
||||||
|
Channel PortalKey
|
||||||
|
SenderID string
|
||||||
|
Timestamp time.Time
|
||||||
|
EditTimestamp time.Time
|
||||||
|
ThreadID string
|
||||||
|
|
||||||
|
MXID id.EventID
|
||||||
|
SenderMXID id.UserID
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *Message) DiscordProtoChannelID() string {
|
||||||
|
if m.ThreadID != "" {
|
||||||
|
return m.ThreadID
|
||||||
|
} else {
|
||||||
|
return m.Channel.ChannelID
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *Message) Scan(row dbutil.Scannable) *Message {
|
||||||
|
var ts, editTS int64
|
||||||
|
|
||||||
|
err := row.Scan(&m.DiscordID, &m.AttachmentID, &m.Channel.ChannelID, &m.Channel.Receiver, &m.SenderID, &ts, &editTS, &m.ThreadID, &m.MXID, &m.SenderMXID)
|
||||||
|
if err != nil {
|
||||||
|
if !errors.Is(err, sql.ErrNoRows) {
|
||||||
|
m.log.Errorln("Database scan failed:", err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
if ts != 0 {
|
||||||
|
m.Timestamp = time.UnixMilli(ts).UTC()
|
||||||
|
}
|
||||||
|
if editTS != 0 {
|
||||||
|
m.EditTimestamp = time.Unix(0, editTS).UTC()
|
||||||
|
}
|
||||||
|
|
||||||
|
return m
|
||||||
|
}
|
||||||
|
|
||||||
|
const messageInsertQuery = `
|
||||||
|
INSERT INTO message (
|
||||||
|
dcid, dc_attachment_id, dc_chan_id, dc_chan_receiver, dc_sender, timestamp, dc_edit_timestamp, dc_thread_id, mxid, sender_mxid
|
||||||
|
)
|
||||||
|
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10)
|
||||||
|
`
|
||||||
|
|
||||||
|
var messageMassInsertTemplate = strings.Replace(messageInsertQuery, "($1, $2, $3, $4, $5, $6, $7, $8, $9, $10)", "%s", 1)
|
||||||
|
|
||||||
|
type MessagePart struct {
|
||||||
|
AttachmentID string
|
||||||
|
MXID id.EventID
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *Message) editTimestampVal() int64 {
|
||||||
|
if m.EditTimestamp.IsZero() {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
return m.EditTimestamp.UnixNano()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *Message) MassInsertParts(msgs []MessagePart) {
|
||||||
|
if len(msgs) == 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
valueStringFormat := "($1, $%d, $2, $3, $4, $5, $6, $7, $%d, $8)"
|
||||||
|
if m.db.Dialect == dbutil.SQLite {
|
||||||
|
valueStringFormat = strings.ReplaceAll(valueStringFormat, "$", "?")
|
||||||
|
}
|
||||||
|
params := make([]interface{}, 8+len(msgs)*2)
|
||||||
|
placeholders := make([]string, len(msgs))
|
||||||
|
params[0] = m.DiscordID
|
||||||
|
params[1] = m.Channel.ChannelID
|
||||||
|
params[2] = m.Channel.Receiver
|
||||||
|
params[3] = m.SenderID
|
||||||
|
params[4] = m.Timestamp.UnixMilli()
|
||||||
|
params[5] = m.editTimestampVal()
|
||||||
|
params[6] = m.ThreadID
|
||||||
|
params[7] = m.SenderMXID.String()
|
||||||
|
for i, msg := range msgs {
|
||||||
|
params[8+i*2] = msg.AttachmentID
|
||||||
|
params[8+i*2+1] = msg.MXID
|
||||||
|
placeholders[i] = fmt.Sprintf(valueStringFormat, 8+i*2+1, 8+i*2+2)
|
||||||
|
}
|
||||||
|
_, err := m.db.Exec(fmt.Sprintf(messageMassInsertTemplate, strings.Join(placeholders, ", ")), params...)
|
||||||
|
if err != nil {
|
||||||
|
m.log.Warnfln("Failed to insert %d parts of %s@%s: %v", len(msgs), m.DiscordID, m.Channel, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *Message) Insert() {
|
||||||
|
_, err := m.db.Exec(messageInsertQuery,
|
||||||
|
m.DiscordID, m.AttachmentID, m.Channel.ChannelID, m.Channel.Receiver, m.SenderID,
|
||||||
|
m.Timestamp.UnixMilli(), m.editTimestampVal(), m.ThreadID, m.MXID, m.SenderMXID.String())
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
m.log.Warnfln("Failed to insert %s@%s: %v", m.DiscordID, m.Channel, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const editUpdateQuery = `
|
||||||
|
UPDATE message
|
||||||
|
SET dc_edit_timestamp=$1
|
||||||
|
WHERE dcid=$2 AND dc_attachment_id=$3 AND dc_chan_id=$4 AND dc_chan_receiver=$5 AND dc_edit_timestamp<$1
|
||||||
|
`
|
||||||
|
|
||||||
|
func (m *Message) UpdateEditTimestamp(ts time.Time) {
|
||||||
|
_, err := m.db.Exec(editUpdateQuery, ts.UnixNano(), m.DiscordID, m.AttachmentID, m.Channel.ChannelID, m.Channel.Receiver)
|
||||||
|
if err != nil {
|
||||||
|
m.log.Warnfln("Failed to update edit timestamp of %s@%s: %v", m.DiscordID, m.Channel, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *Message) Delete() {
|
||||||
|
query := "DELETE FROM message WHERE dcid=$1 AND dc_chan_id=$2 AND dc_chan_receiver=$3 AND dc_attachment_id=$4"
|
||||||
|
_, err := m.db.Exec(query, m.DiscordID, m.Channel.ChannelID, m.Channel.Receiver, m.AttachmentID)
|
||||||
|
if err != nil {
|
||||||
|
m.log.Warnfln("Failed to delete %q of %s@%s: %v", m.AttachmentID, m.DiscordID, m.Channel, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
210
database/portal.go
Normal file
210
database/portal.go
Normal file
@@ -0,0 +1,210 @@
|
|||||||
|
package database
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
"go.mau.fi/util/dbutil"
|
||||||
|
log "maunium.net/go/maulogger/v2"
|
||||||
|
"maunium.net/go/mautrix/id"
|
||||||
|
)
|
||||||
|
|
||||||
|
// language=postgresql
|
||||||
|
const (
|
||||||
|
portalSelect = `
|
||||||
|
SELECT dcid, receiver, type, other_user_id, dc_guild_id, dc_parent_id, mxid,
|
||||||
|
plain_name, name, name_set, friend_nick, topic, topic_set, avatar, avatar_url, avatar_set,
|
||||||
|
encrypted, in_space, first_event_id, relay_webhook_id, relay_webhook_secret
|
||||||
|
FROM portal
|
||||||
|
`
|
||||||
|
)
|
||||||
|
|
||||||
|
type PortalKey struct {
|
||||||
|
ChannelID string
|
||||||
|
Receiver string
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewPortalKey(channelID, receiver string) PortalKey {
|
||||||
|
return PortalKey{
|
||||||
|
ChannelID: channelID,
|
||||||
|
Receiver: receiver,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (key PortalKey) String() string {
|
||||||
|
if key.Receiver == "" {
|
||||||
|
return key.ChannelID
|
||||||
|
}
|
||||||
|
return key.ChannelID + "-" + key.Receiver
|
||||||
|
}
|
||||||
|
|
||||||
|
type PortalQuery struct {
|
||||||
|
db *Database
|
||||||
|
log log.Logger
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pq *PortalQuery) New() *Portal {
|
||||||
|
return &Portal{
|
||||||
|
db: pq.db,
|
||||||
|
log: pq.log,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pq *PortalQuery) GetAll() []*Portal {
|
||||||
|
return pq.getAll(portalSelect)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pq *PortalQuery) GetAllInGuild(guildID string) []*Portal {
|
||||||
|
return pq.getAll(portalSelect+" WHERE dc_guild_id=$1", guildID)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pq *PortalQuery) GetByID(key PortalKey) *Portal {
|
||||||
|
return pq.get(portalSelect+" WHERE dcid=$1 AND (receiver=$2 OR receiver='')", key.ChannelID, key.Receiver)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pq *PortalQuery) GetByMXID(mxid id.RoomID) *Portal {
|
||||||
|
return pq.get(portalSelect+" WHERE mxid=$1", mxid)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pq *PortalQuery) FindPrivateChatBetween(id, receiver string) *Portal {
|
||||||
|
return pq.get(portalSelect+" WHERE other_user_id=$1 AND receiver=$2 AND type=$3", id, receiver, discordgo.ChannelTypeDM)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pq *PortalQuery) FindPrivateChatsWith(id string) []*Portal {
|
||||||
|
return pq.getAll(portalSelect+" WHERE other_user_id=$1 AND type=$2", id, discordgo.ChannelTypeDM)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pq *PortalQuery) FindPrivateChatsOf(receiver string) []*Portal {
|
||||||
|
query := portalSelect + " portal WHERE receiver=$1 AND type=$2;"
|
||||||
|
|
||||||
|
return pq.getAll(query, receiver, discordgo.ChannelTypeDM)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pq *PortalQuery) getAll(query string, args ...interface{}) []*Portal {
|
||||||
|
rows, err := pq.db.Query(query, args...)
|
||||||
|
if err != nil || rows == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
defer rows.Close()
|
||||||
|
|
||||||
|
var portals []*Portal
|
||||||
|
for rows.Next() {
|
||||||
|
portals = append(portals, pq.New().Scan(rows))
|
||||||
|
}
|
||||||
|
|
||||||
|
return portals
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pq *PortalQuery) get(query string, args ...interface{}) *Portal {
|
||||||
|
return pq.New().Scan(pq.db.QueryRow(query, args...))
|
||||||
|
}
|
||||||
|
|
||||||
|
type Portal struct {
|
||||||
|
db *Database
|
||||||
|
log log.Logger
|
||||||
|
|
||||||
|
Key PortalKey
|
||||||
|
Type discordgo.ChannelType
|
||||||
|
OtherUserID string
|
||||||
|
ParentID string
|
||||||
|
GuildID string
|
||||||
|
|
||||||
|
MXID id.RoomID
|
||||||
|
|
||||||
|
PlainName string
|
||||||
|
Name string
|
||||||
|
NameSet bool
|
||||||
|
FriendNick bool
|
||||||
|
Topic string
|
||||||
|
TopicSet bool
|
||||||
|
Avatar string
|
||||||
|
AvatarURL id.ContentURI
|
||||||
|
AvatarSet bool
|
||||||
|
Encrypted bool
|
||||||
|
InSpace id.RoomID
|
||||||
|
|
||||||
|
FirstEventID id.EventID
|
||||||
|
|
||||||
|
RelayWebhookID string
|
||||||
|
RelayWebhookSecret string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *Portal) Scan(row dbutil.Scannable) *Portal {
|
||||||
|
var otherUserID, guildID, parentID, mxid, firstEventID, relayWebhookID, relayWebhookSecret sql.NullString
|
||||||
|
var chanType int32
|
||||||
|
var avatarURL string
|
||||||
|
|
||||||
|
err := row.Scan(&p.Key.ChannelID, &p.Key.Receiver, &chanType, &otherUserID, &guildID, &parentID,
|
||||||
|
&mxid, &p.PlainName, &p.Name, &p.NameSet, &p.FriendNick, &p.Topic, &p.TopicSet, &p.Avatar, &avatarURL, &p.AvatarSet,
|
||||||
|
&p.Encrypted, &p.InSpace, &firstEventID, &relayWebhookID, &relayWebhookSecret)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
if err != sql.ErrNoRows {
|
||||||
|
p.log.Errorln("Database scan failed:", err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
p.MXID = id.RoomID(mxid.String)
|
||||||
|
p.OtherUserID = otherUserID.String
|
||||||
|
p.GuildID = guildID.String
|
||||||
|
p.ParentID = parentID.String
|
||||||
|
p.Type = discordgo.ChannelType(chanType)
|
||||||
|
p.FirstEventID = id.EventID(firstEventID.String)
|
||||||
|
p.AvatarURL, _ = id.ParseContentURI(avatarURL)
|
||||||
|
p.RelayWebhookID = relayWebhookID.String
|
||||||
|
p.RelayWebhookSecret = relayWebhookSecret.String
|
||||||
|
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *Portal) Insert() {
|
||||||
|
query := `
|
||||||
|
INSERT INTO portal (dcid, receiver, type, other_user_id, dc_guild_id, dc_parent_id, mxid,
|
||||||
|
plain_name, name, name_set, friend_nick, topic, topic_set, avatar, avatar_url, avatar_set,
|
||||||
|
encrypted, in_space, first_event_id, relay_webhook_id, relay_webhook_secret)
|
||||||
|
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18, $19, $20, $21)
|
||||||
|
`
|
||||||
|
_, err := p.db.Exec(query, p.Key.ChannelID, p.Key.Receiver, p.Type,
|
||||||
|
strPtr(p.OtherUserID), strPtr(p.GuildID), strPtr(p.ParentID), strPtr(string(p.MXID)),
|
||||||
|
p.PlainName, p.Name, p.NameSet, p.FriendNick, p.Topic, p.TopicSet, p.Avatar, p.AvatarURL.String(), p.AvatarSet,
|
||||||
|
p.Encrypted, p.InSpace, p.FirstEventID.String(), strPtr(p.RelayWebhookID), strPtr(p.RelayWebhookSecret))
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
p.log.Warnfln("Failed to insert %s: %v", p.Key, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *Portal) Update() {
|
||||||
|
query := `
|
||||||
|
UPDATE portal
|
||||||
|
SET type=$1, other_user_id=$2, dc_guild_id=$3, dc_parent_id=$4, mxid=$5,
|
||||||
|
plain_name=$6, name=$7, name_set=$8, friend_nick=$9, topic=$10, topic_set=$11,
|
||||||
|
avatar=$12, avatar_url=$13, avatar_set=$14, encrypted=$15, in_space=$16, first_event_id=$17,
|
||||||
|
relay_webhook_id=$18, relay_webhook_secret=$19
|
||||||
|
WHERE dcid=$20 AND receiver=$21
|
||||||
|
`
|
||||||
|
_, err := p.db.Exec(query,
|
||||||
|
p.Type, strPtr(p.OtherUserID), strPtr(p.GuildID), strPtr(p.ParentID), strPtr(string(p.MXID)),
|
||||||
|
p.PlainName, p.Name, p.NameSet, p.FriendNick, p.Topic, p.TopicSet,
|
||||||
|
p.Avatar, p.AvatarURL.String(), p.AvatarSet, p.Encrypted, p.InSpace, p.FirstEventID.String(),
|
||||||
|
strPtr(p.RelayWebhookID), strPtr(p.RelayWebhookSecret),
|
||||||
|
p.Key.ChannelID, p.Key.Receiver)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
p.log.Warnfln("Failed to update %s: %v", p.Key, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *Portal) Delete() {
|
||||||
|
query := "DELETE FROM portal WHERE dcid=$1 AND receiver=$2"
|
||||||
|
_, err := p.db.Exec(query, p.Key.ChannelID, p.Key.Receiver)
|
||||||
|
if err != nil {
|
||||||
|
p.log.Warnfln("Failed to delete %s: %v", p.Key, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
151
database/puppet.go
Normal file
151
database/puppet.go
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
package database
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
|
||||||
|
"go.mau.fi/util/dbutil"
|
||||||
|
log "maunium.net/go/maulogger/v2"
|
||||||
|
"maunium.net/go/mautrix/id"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
puppetSelect = "SELECT id, name, name_set, avatar, avatar_url, avatar_set," +
|
||||||
|
" contact_info_set, global_name, username, discriminator, is_bot, is_webhook, is_application, custom_mxid, access_token, next_batch" +
|
||||||
|
" FROM puppet "
|
||||||
|
)
|
||||||
|
|
||||||
|
type PuppetQuery struct {
|
||||||
|
db *Database
|
||||||
|
log log.Logger
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pq *PuppetQuery) New() *Puppet {
|
||||||
|
return &Puppet{
|
||||||
|
db: pq.db,
|
||||||
|
log: pq.log,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pq *PuppetQuery) Get(id string) *Puppet {
|
||||||
|
return pq.get(puppetSelect+" WHERE id=$1", id)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pq *PuppetQuery) GetByCustomMXID(mxid id.UserID) *Puppet {
|
||||||
|
return pq.get(puppetSelect+" WHERE custom_mxid=$1", mxid)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pq *PuppetQuery) get(query string, args ...interface{}) *Puppet {
|
||||||
|
return pq.New().Scan(pq.db.QueryRow(query, args...))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pq *PuppetQuery) GetAll() []*Puppet {
|
||||||
|
return pq.getAll(puppetSelect)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pq *PuppetQuery) GetAllWithCustomMXID() []*Puppet {
|
||||||
|
return pq.getAll(puppetSelect + " WHERE custom_mxid<>''")
|
||||||
|
}
|
||||||
|
|
||||||
|
func (pq *PuppetQuery) getAll(query string, args ...interface{}) []*Puppet {
|
||||||
|
rows, err := pq.db.Query(query, args...)
|
||||||
|
if err != nil || rows == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
defer rows.Close()
|
||||||
|
|
||||||
|
var puppets []*Puppet
|
||||||
|
for rows.Next() {
|
||||||
|
puppets = append(puppets, pq.New().Scan(rows))
|
||||||
|
}
|
||||||
|
|
||||||
|
return puppets
|
||||||
|
}
|
||||||
|
|
||||||
|
type Puppet struct {
|
||||||
|
db *Database
|
||||||
|
log log.Logger
|
||||||
|
|
||||||
|
ID string
|
||||||
|
Name string
|
||||||
|
NameSet bool
|
||||||
|
Avatar string
|
||||||
|
AvatarURL id.ContentURI
|
||||||
|
AvatarSet bool
|
||||||
|
|
||||||
|
ContactInfoSet bool
|
||||||
|
|
||||||
|
GlobalName string
|
||||||
|
Username string
|
||||||
|
Discriminator string
|
||||||
|
IsBot bool
|
||||||
|
IsWebhook bool
|
||||||
|
IsApplication bool
|
||||||
|
|
||||||
|
CustomMXID id.UserID
|
||||||
|
AccessToken string
|
||||||
|
NextBatch string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *Puppet) Scan(row dbutil.Scannable) *Puppet {
|
||||||
|
var avatarURL string
|
||||||
|
var customMXID, accessToken, nextBatch sql.NullString
|
||||||
|
|
||||||
|
err := row.Scan(&p.ID, &p.Name, &p.NameSet, &p.Avatar, &avatarURL, &p.AvatarSet, &p.ContactInfoSet,
|
||||||
|
&p.GlobalName, &p.Username, &p.Discriminator, &p.IsBot, &p.IsWebhook, &p.IsApplication, &customMXID, &accessToken, &nextBatch)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
if err != sql.ErrNoRows {
|
||||||
|
p.log.Errorln("Database scan failed:", err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
p.AvatarURL, _ = id.ParseContentURI(avatarURL)
|
||||||
|
p.CustomMXID = id.UserID(customMXID.String)
|
||||||
|
p.AccessToken = accessToken.String
|
||||||
|
p.NextBatch = nextBatch.String
|
||||||
|
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *Puppet) Insert() {
|
||||||
|
query := `
|
||||||
|
INSERT INTO puppet (
|
||||||
|
id, name, name_set, avatar, avatar_url, avatar_set, contact_info_set,
|
||||||
|
global_name, username, discriminator, is_bot, is_webhook, is_application,
|
||||||
|
custom_mxid, access_token, next_batch
|
||||||
|
)
|
||||||
|
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16)
|
||||||
|
`
|
||||||
|
_, err := p.db.Exec(query, p.ID, p.Name, p.NameSet, p.Avatar, p.AvatarURL.String(), p.AvatarSet, p.ContactInfoSet,
|
||||||
|
p.GlobalName, p.Username, p.Discriminator, p.IsBot, p.IsWebhook, p.IsApplication,
|
||||||
|
strPtr(p.CustomMXID), strPtr(p.AccessToken), strPtr(p.NextBatch))
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
p.log.Warnfln("Failed to insert %s: %v", p.ID, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *Puppet) Update() {
|
||||||
|
query := `
|
||||||
|
UPDATE puppet SET name=$1, name_set=$2, avatar=$3, avatar_url=$4, avatar_set=$5, contact_info_set=$6,
|
||||||
|
global_name=$7, username=$8, discriminator=$9, is_bot=$10, is_webhook=$11, is_application=$12,
|
||||||
|
custom_mxid=$13, access_token=$14, next_batch=$15
|
||||||
|
WHERE id=$16
|
||||||
|
`
|
||||||
|
_, err := p.db.Exec(
|
||||||
|
query,
|
||||||
|
p.Name, p.NameSet, p.Avatar, p.AvatarURL.String(), p.AvatarSet, p.ContactInfoSet,
|
||||||
|
p.GlobalName, p.Username, p.Discriminator, p.IsBot, p.IsWebhook, p.IsApplication,
|
||||||
|
strPtr(p.CustomMXID), strPtr(p.AccessToken), strPtr(p.NextBatch),
|
||||||
|
p.ID,
|
||||||
|
)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
p.log.Warnfln("Failed to update %s: %v", p.ID, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
124
database/reaction.go
Normal file
124
database/reaction.go
Normal file
@@ -0,0 +1,124 @@
|
|||||||
|
package database
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
"errors"
|
||||||
|
|
||||||
|
"go.mau.fi/util/dbutil"
|
||||||
|
log "maunium.net/go/maulogger/v2"
|
||||||
|
"maunium.net/go/mautrix/id"
|
||||||
|
)
|
||||||
|
|
||||||
|
type ReactionQuery struct {
|
||||||
|
db *Database
|
||||||
|
log log.Logger
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
reactionSelect = "SELECT dc_chan_id, dc_chan_receiver, dc_msg_id, dc_sender, dc_emoji_name, dc_thread_id, mxid FROM reaction"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (rq *ReactionQuery) New() *Reaction {
|
||||||
|
return &Reaction{
|
||||||
|
db: rq.db,
|
||||||
|
log: rq.log,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (rq *ReactionQuery) GetAllForMessage(key PortalKey, discordMessageID string) []*Reaction {
|
||||||
|
query := reactionSelect + " WHERE dc_chan_id=$1 AND dc_chan_receiver=$2 AND dc_msg_id=$3"
|
||||||
|
|
||||||
|
return rq.getAll(query, key.ChannelID, key.Receiver, discordMessageID)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (rq *ReactionQuery) getAll(query string, args ...interface{}) []*Reaction {
|
||||||
|
rows, err := rq.db.Query(query, args...)
|
||||||
|
if err != nil || rows == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var reactions []*Reaction
|
||||||
|
for rows.Next() {
|
||||||
|
reactions = append(reactions, rq.New().Scan(rows))
|
||||||
|
}
|
||||||
|
|
||||||
|
return reactions
|
||||||
|
}
|
||||||
|
|
||||||
|
func (rq *ReactionQuery) GetByDiscordID(key PortalKey, msgID, sender, emojiName string) *Reaction {
|
||||||
|
query := reactionSelect + " WHERE dc_chan_id=$1 AND dc_chan_receiver=$2 AND dc_msg_id=$3 AND dc_sender=$4 AND dc_emoji_name=$5"
|
||||||
|
|
||||||
|
return rq.get(query, key.ChannelID, key.Receiver, msgID, sender, emojiName)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (rq *ReactionQuery) GetByMXID(mxid id.EventID) *Reaction {
|
||||||
|
query := reactionSelect + " WHERE mxid=$1"
|
||||||
|
|
||||||
|
return rq.get(query, mxid)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (rq *ReactionQuery) get(query string, args ...interface{}) *Reaction {
|
||||||
|
row := rq.db.QueryRow(query, args...)
|
||||||
|
if row == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return rq.New().Scan(row)
|
||||||
|
}
|
||||||
|
|
||||||
|
type Reaction struct {
|
||||||
|
db *Database
|
||||||
|
log log.Logger
|
||||||
|
|
||||||
|
Channel PortalKey
|
||||||
|
MessageID string
|
||||||
|
Sender string
|
||||||
|
EmojiName string
|
||||||
|
ThreadID string
|
||||||
|
|
||||||
|
MXID id.EventID
|
||||||
|
|
||||||
|
FirstAttachmentID string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *Reaction) Scan(row dbutil.Scannable) *Reaction {
|
||||||
|
err := row.Scan(&r.Channel.ChannelID, &r.Channel.Receiver, &r.MessageID, &r.Sender, &r.EmojiName, &r.ThreadID, &r.MXID)
|
||||||
|
if err != nil {
|
||||||
|
if !errors.Is(err, sql.ErrNoRows) {
|
||||||
|
r.log.Errorln("Database scan failed:", err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return r
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *Reaction) DiscordProtoChannelID() string {
|
||||||
|
if r.ThreadID != "" {
|
||||||
|
return r.ThreadID
|
||||||
|
} else {
|
||||||
|
return r.Channel.ChannelID
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *Reaction) Insert() {
|
||||||
|
query := `
|
||||||
|
INSERT INTO reaction (dc_msg_id, dc_first_attachment_id, dc_sender, dc_emoji_name, dc_chan_id, dc_chan_receiver, dc_thread_id, mxid)
|
||||||
|
VALUES($1, $2, $3, $4, $5, $6, $7, $8)
|
||||||
|
`
|
||||||
|
_, err := r.db.Exec(query, r.MessageID, r.FirstAttachmentID, r.Sender, r.EmojiName, r.Channel.ChannelID, r.Channel.Receiver, r.ThreadID, r.MXID)
|
||||||
|
if err != nil {
|
||||||
|
r.log.Warnfln("Failed to insert reaction for %s@%s: %v", r.MessageID, r.Channel, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *Reaction) Delete() {
|
||||||
|
query := "DELETE FROM reaction WHERE dc_msg_id=$1 AND dc_sender=$2 AND dc_emoji_name=$3"
|
||||||
|
_, err := r.db.Exec(query, r.MessageID, r.Sender, r.EmojiName)
|
||||||
|
if err != nil {
|
||||||
|
r.log.Warnfln("Failed to delete reaction for %s@%s: %v", r.MessageID, r.Channel, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
112
database/role.go
Normal file
112
database/role.go
Normal file
@@ -0,0 +1,112 @@
|
|||||||
|
package database
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
"errors"
|
||||||
|
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
"go.mau.fi/util/dbutil"
|
||||||
|
log "maunium.net/go/maulogger/v2"
|
||||||
|
)
|
||||||
|
|
||||||
|
type RoleQuery struct {
|
||||||
|
db *Database
|
||||||
|
log log.Logger
|
||||||
|
}
|
||||||
|
|
||||||
|
// language=postgresql
|
||||||
|
const (
|
||||||
|
roleSelect = "SELECT dc_guild_id, dcid, name, icon, mentionable, managed, hoist, color, position, permissions FROM role"
|
||||||
|
roleUpsert = `
|
||||||
|
INSERT INTO role (dc_guild_id, dcid, name, icon, mentionable, managed, hoist, color, position, permissions)
|
||||||
|
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10)
|
||||||
|
ON CONFLICT (dc_guild_id, dcid) DO UPDATE
|
||||||
|
SET name=excluded.name, icon=excluded.icon, mentionable=excluded.mentionable, managed=excluded.managed,
|
||||||
|
hoist=excluded.hoist, color=excluded.color, position=excluded.position, permissions=excluded.permissions
|
||||||
|
`
|
||||||
|
roleDelete = "DELETE FROM role WHERE dc_guild_id=$1 AND dcid=$2"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (rq *RoleQuery) New() *Role {
|
||||||
|
return &Role{
|
||||||
|
db: rq.db,
|
||||||
|
log: rq.log,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (rq *RoleQuery) GetByID(guildID, dcid string) *Role {
|
||||||
|
query := roleSelect + " WHERE dc_guild_id=$1 AND dcid=$2"
|
||||||
|
return rq.New().Scan(rq.db.QueryRow(query, guildID, dcid))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (rq *RoleQuery) DeleteByID(guildID, dcid string) {
|
||||||
|
_, err := rq.db.Exec("DELETE FROM role WHERE dc_guild_id=$1 AND dcid=$2", guildID, dcid)
|
||||||
|
if err != nil {
|
||||||
|
rq.log.Warnfln("Failed to delete %s/%s: %v", guildID, dcid, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (rq *RoleQuery) GetAll(guildID string) []*Role {
|
||||||
|
rows, err := rq.db.Query(roleSelect+" WHERE dc_guild_id=$1", guildID)
|
||||||
|
if err != nil {
|
||||||
|
rq.log.Errorfln("Failed to query roles of %s: %v", guildID, err)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var roles []*Role
|
||||||
|
for rows.Next() {
|
||||||
|
role := rq.New().Scan(rows)
|
||||||
|
if role != nil {
|
||||||
|
roles = append(roles, role)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return roles
|
||||||
|
}
|
||||||
|
|
||||||
|
type Role struct {
|
||||||
|
db *Database
|
||||||
|
log log.Logger
|
||||||
|
|
||||||
|
GuildID string
|
||||||
|
|
||||||
|
discordgo.Role
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *Role) Scan(row dbutil.Scannable) *Role {
|
||||||
|
var icon sql.NullString
|
||||||
|
err := row.Scan(&r.GuildID, &r.ID, &r.Name, &icon, &r.Mentionable, &r.Managed, &r.Hoist, &r.Color, &r.Position, &r.Permissions)
|
||||||
|
if err != nil {
|
||||||
|
if !errors.Is(err, sql.ErrNoRows) {
|
||||||
|
r.log.Errorln("Database scan failed:", err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
r.Icon = icon.String
|
||||||
|
return r
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *Role) Upsert(txn dbutil.Execable) {
|
||||||
|
if txn == nil {
|
||||||
|
txn = r.db
|
||||||
|
}
|
||||||
|
_, err := txn.Exec(roleUpsert, r.GuildID, r.ID, r.Name, strPtr(r.Icon), r.Mentionable, r.Managed, r.Hoist, r.Color, r.Position, r.Permissions)
|
||||||
|
if err != nil {
|
||||||
|
r.log.Warnfln("Failed to insert %s/%s: %v", r.GuildID, r.ID, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *Role) Delete(txn dbutil.Execable) {
|
||||||
|
if txn == nil {
|
||||||
|
txn = r.db
|
||||||
|
}
|
||||||
|
_, err := txn.Exec(roleDelete, r.GuildID, r.Icon)
|
||||||
|
if err != nil {
|
||||||
|
r.log.Warnfln("Failed to delete %s/%s: %v", r.GuildID, r.ID, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
111
database/thread.go
Normal file
111
database/thread.go
Normal file
@@ -0,0 +1,111 @@
|
|||||||
|
package database
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
"errors"
|
||||||
|
|
||||||
|
"go.mau.fi/util/dbutil"
|
||||||
|
log "maunium.net/go/maulogger/v2"
|
||||||
|
"maunium.net/go/mautrix/id"
|
||||||
|
)
|
||||||
|
|
||||||
|
type ThreadQuery struct {
|
||||||
|
db *Database
|
||||||
|
log log.Logger
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
threadSelect = "SELECT dcid, parent_chan_id, root_msg_dcid, root_msg_mxid, creation_notice_mxid FROM thread"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (tq *ThreadQuery) New() *Thread {
|
||||||
|
return &Thread{
|
||||||
|
db: tq.db,
|
||||||
|
log: tq.log,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (tq *ThreadQuery) GetByDiscordID(discordID string) *Thread {
|
||||||
|
query := threadSelect + " WHERE dcid=$1"
|
||||||
|
|
||||||
|
row := tq.db.QueryRow(query, discordID)
|
||||||
|
if row == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return tq.New().Scan(row)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (tq *ThreadQuery) GetByMatrixRootMsg(mxid id.EventID) *Thread {
|
||||||
|
query := threadSelect + " WHERE root_msg_mxid=$1"
|
||||||
|
|
||||||
|
row := tq.db.QueryRow(query, mxid)
|
||||||
|
if row == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return tq.New().Scan(row)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (tq *ThreadQuery) GetByMatrixRootOrCreationNoticeMsg(mxid id.EventID) *Thread {
|
||||||
|
query := threadSelect + " WHERE root_msg_mxid=$1 OR creation_notice_mxid=$1"
|
||||||
|
|
||||||
|
row := tq.db.QueryRow(query, mxid)
|
||||||
|
if row == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return tq.New().Scan(row)
|
||||||
|
}
|
||||||
|
|
||||||
|
type Thread struct {
|
||||||
|
db *Database
|
||||||
|
log log.Logger
|
||||||
|
|
||||||
|
ID string
|
||||||
|
ParentID string
|
||||||
|
|
||||||
|
RootDiscordID string
|
||||||
|
RootMXID id.EventID
|
||||||
|
|
||||||
|
CreationNoticeMXID id.EventID
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *Thread) Scan(row dbutil.Scannable) *Thread {
|
||||||
|
err := row.Scan(&t.ID, &t.ParentID, &t.RootDiscordID, &t.RootMXID, &t.CreationNoticeMXID)
|
||||||
|
if err != nil {
|
||||||
|
if !errors.Is(err, sql.ErrNoRows) {
|
||||||
|
t.log.Errorln("Database scan failed:", err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return t
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *Thread) Insert() {
|
||||||
|
query := "INSERT INTO thread (dcid, parent_chan_id, root_msg_dcid, root_msg_mxid, creation_notice_mxid) VALUES ($1, $2, $3, $4, $5)"
|
||||||
|
_, err := t.db.Exec(query, t.ID, t.ParentID, t.RootDiscordID, t.RootMXID, t.CreationNoticeMXID)
|
||||||
|
if err != nil {
|
||||||
|
t.log.Warnfln("Failed to insert %s@%s: %v", t.ID, t.ParentID, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *Thread) Update() {
|
||||||
|
query := "UPDATE thread SET creation_notice_mxid=$2 WHERE dcid=$1"
|
||||||
|
_, err := t.db.Exec(query, t.ID, t.CreationNoticeMXID)
|
||||||
|
if err != nil {
|
||||||
|
t.log.Warnfln("Failed to update %s@%s: %v", t.ID, t.ParentID, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *Thread) Delete() {
|
||||||
|
query := "DELETE FROM thread WHERE dcid=$1 AND parent_chan_id=$2"
|
||||||
|
_, err := t.db.Exec(query, t.ID, t.ParentID)
|
||||||
|
if err != nil {
|
||||||
|
t.log.Warnfln("Failed to delete %s@%s: %v", t.ID, t.ParentID, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
180
database/upgrades/00-latest-revision.sql
Normal file
180
database/upgrades/00-latest-revision.sql
Normal file
@@ -0,0 +1,180 @@
|
|||||||
|
-- v0 -> v24 (compatible with v19+): Latest revision
|
||||||
|
|
||||||
|
CREATE TABLE guild (
|
||||||
|
dcid TEXT PRIMARY KEY,
|
||||||
|
mxid TEXT UNIQUE,
|
||||||
|
plain_name TEXT NOT NULL,
|
||||||
|
name TEXT NOT NULL,
|
||||||
|
name_set BOOLEAN NOT NULL,
|
||||||
|
avatar TEXT NOT NULL,
|
||||||
|
avatar_url TEXT NOT NULL,
|
||||||
|
avatar_set BOOLEAN NOT NULL,
|
||||||
|
|
||||||
|
bridging_mode INTEGER NOT NULL
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE portal (
|
||||||
|
dcid TEXT,
|
||||||
|
receiver TEXT,
|
||||||
|
other_user_id TEXT,
|
||||||
|
type INTEGER NOT NULL,
|
||||||
|
|
||||||
|
dc_guild_id TEXT,
|
||||||
|
dc_parent_id TEXT,
|
||||||
|
-- This is not accessed by the bridge, it's only used for the portal parent foreign key.
|
||||||
|
-- Only guild channels have parents, but only DMs have a receiver field.
|
||||||
|
dc_parent_receiver TEXT NOT NULL DEFAULT '',
|
||||||
|
|
||||||
|
mxid TEXT UNIQUE,
|
||||||
|
plain_name TEXT NOT NULL,
|
||||||
|
name TEXT NOT NULL,
|
||||||
|
name_set BOOLEAN NOT NULL,
|
||||||
|
friend_nick BOOLEAN NOT NULL,
|
||||||
|
topic TEXT NOT NULL,
|
||||||
|
topic_set BOOLEAN NOT NULL,
|
||||||
|
avatar TEXT NOT NULL,
|
||||||
|
avatar_url TEXT NOT NULL,
|
||||||
|
avatar_set BOOLEAN NOT NULL,
|
||||||
|
encrypted BOOLEAN NOT NULL,
|
||||||
|
in_space TEXT NOT NULL,
|
||||||
|
|
||||||
|
first_event_id TEXT NOT NULL,
|
||||||
|
|
||||||
|
relay_webhook_id TEXT,
|
||||||
|
relay_webhook_secret TEXT,
|
||||||
|
|
||||||
|
PRIMARY KEY (dcid, receiver),
|
||||||
|
CONSTRAINT portal_parent_fkey FOREIGN KEY (dc_parent_id, dc_parent_receiver) REFERENCES portal (dcid, receiver) ON DELETE CASCADE,
|
||||||
|
CONSTRAINT portal_guild_fkey FOREIGN KEY (dc_guild_id) REFERENCES guild(dcid) ON DELETE CASCADE
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE thread (
|
||||||
|
dcid TEXT PRIMARY KEY,
|
||||||
|
parent_chan_id TEXT NOT NULL,
|
||||||
|
root_msg_dcid TEXT NOT NULL,
|
||||||
|
root_msg_mxid TEXT NOT NULL,
|
||||||
|
creation_notice_mxid TEXT NOT NULL,
|
||||||
|
-- This is also not accessed by the bridge.
|
||||||
|
receiver TEXT NOT NULL DEFAULT '',
|
||||||
|
|
||||||
|
CONSTRAINT thread_parent_fkey FOREIGN KEY (parent_chan_id, receiver) REFERENCES portal(dcid, receiver) ON DELETE CASCADE ON UPDATE CASCADE
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE puppet (
|
||||||
|
id TEXT PRIMARY KEY,
|
||||||
|
|
||||||
|
name TEXT NOT NULL,
|
||||||
|
name_set BOOLEAN NOT NULL DEFAULT false,
|
||||||
|
avatar TEXT NOT NULL,
|
||||||
|
avatar_url TEXT NOT NULL,
|
||||||
|
avatar_set BOOLEAN NOT NULL DEFAULT false,
|
||||||
|
|
||||||
|
contact_info_set BOOLEAN NOT NULL DEFAULT false,
|
||||||
|
|
||||||
|
global_name TEXT NOT NULL DEFAULT '',
|
||||||
|
username TEXT NOT NULL DEFAULT '',
|
||||||
|
discriminator TEXT NOT NULL DEFAULT '',
|
||||||
|
is_bot BOOLEAN NOT NULL DEFAULT false,
|
||||||
|
is_webhook BOOLEAN NOT NULL DEFAULT false,
|
||||||
|
is_application BOOLEAN NOT NULL DEFAULT false,
|
||||||
|
|
||||||
|
custom_mxid TEXT,
|
||||||
|
access_token TEXT,
|
||||||
|
next_batch TEXT
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE "user" (
|
||||||
|
mxid TEXT PRIMARY KEY,
|
||||||
|
dcid TEXT UNIQUE,
|
||||||
|
|
||||||
|
discord_token TEXT,
|
||||||
|
management_room TEXT,
|
||||||
|
space_room TEXT,
|
||||||
|
dm_space_room TEXT,
|
||||||
|
|
||||||
|
read_state_version INTEGER NOT NULL DEFAULT 0,
|
||||||
|
heartbeat_session jsonb
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE user_portal (
|
||||||
|
discord_id TEXT,
|
||||||
|
user_mxid TEXT,
|
||||||
|
type TEXT NOT NULL,
|
||||||
|
in_space BOOLEAN NOT NULL,
|
||||||
|
timestamp BIGINT NOT NULL,
|
||||||
|
|
||||||
|
PRIMARY KEY (discord_id, user_mxid),
|
||||||
|
CONSTRAINT up_user_fkey FOREIGN KEY (user_mxid) REFERENCES "user" (mxid) ON DELETE CASCADE
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE message (
|
||||||
|
dcid TEXT,
|
||||||
|
dc_attachment_id TEXT,
|
||||||
|
dc_chan_id TEXT,
|
||||||
|
dc_chan_receiver TEXT,
|
||||||
|
dc_sender TEXT NOT NULL,
|
||||||
|
timestamp BIGINT NOT NULL,
|
||||||
|
dc_edit_timestamp BIGINT NOT NULL,
|
||||||
|
dc_thread_id TEXT NOT NULL,
|
||||||
|
|
||||||
|
mxid TEXT NOT NULL UNIQUE,
|
||||||
|
sender_mxid TEXT NOT NULL DEFAULT '',
|
||||||
|
|
||||||
|
PRIMARY KEY (dcid, dc_attachment_id, dc_chan_id, dc_chan_receiver),
|
||||||
|
CONSTRAINT message_portal_fkey FOREIGN KEY (dc_chan_id, dc_chan_receiver) REFERENCES portal (dcid, receiver) ON DELETE CASCADE
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE reaction (
|
||||||
|
dc_chan_id TEXT,
|
||||||
|
dc_chan_receiver TEXT,
|
||||||
|
dc_msg_id TEXT,
|
||||||
|
dc_sender TEXT,
|
||||||
|
dc_emoji_name TEXT,
|
||||||
|
dc_thread_id TEXT NOT NULL,
|
||||||
|
|
||||||
|
dc_first_attachment_id TEXT NOT NULL,
|
||||||
|
|
||||||
|
mxid TEXT NOT NULL UNIQUE,
|
||||||
|
|
||||||
|
PRIMARY KEY (dc_chan_id, dc_chan_receiver, dc_msg_id, dc_sender, dc_emoji_name),
|
||||||
|
CONSTRAINT reaction_message_fkey FOREIGN KEY (dc_msg_id, dc_first_attachment_id, dc_chan_id, dc_chan_receiver) REFERENCES message (dcid, dc_attachment_id, dc_chan_id, dc_chan_receiver) ON DELETE CASCADE
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE role (
|
||||||
|
dc_guild_id TEXT,
|
||||||
|
dcid TEXT,
|
||||||
|
|
||||||
|
name TEXT NOT NULL,
|
||||||
|
icon TEXT,
|
||||||
|
|
||||||
|
mentionable BOOLEAN NOT NULL,
|
||||||
|
managed BOOLEAN NOT NULL,
|
||||||
|
hoist BOOLEAN NOT NULL,
|
||||||
|
|
||||||
|
color INTEGER NOT NULL,
|
||||||
|
position INTEGER NOT NULL,
|
||||||
|
permissions BIGINT NOT NULL,
|
||||||
|
|
||||||
|
PRIMARY KEY (dc_guild_id, dcid),
|
||||||
|
CONSTRAINT role_guild_fkey FOREIGN KEY (dc_guild_id) REFERENCES guild (dcid) ON DELETE CASCADE
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE discord_file (
|
||||||
|
url TEXT,
|
||||||
|
encrypted BOOLEAN,
|
||||||
|
mxc TEXT NOT NULL,
|
||||||
|
|
||||||
|
id TEXT,
|
||||||
|
emoji_name TEXT,
|
||||||
|
|
||||||
|
size BIGINT NOT NULL,
|
||||||
|
width INTEGER,
|
||||||
|
height INTEGER,
|
||||||
|
mime_type TEXT NOT NULL,
|
||||||
|
decryption_info jsonb,
|
||||||
|
timestamp BIGINT NOT NULL,
|
||||||
|
|
||||||
|
PRIMARY KEY (url, encrypted)
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE INDEX discord_file_mxc_idx ON discord_file (mxc);
|
||||||
53
database/upgrades/02-column-renames.sql
Normal file
53
database/upgrades/02-column-renames.sql
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
-- v2: Rename columns in message-related tables
|
||||||
|
|
||||||
|
ALTER TABLE portal RENAME COLUMN dmuser TO other_user_id;
|
||||||
|
ALTER TABLE portal RENAME COLUMN channel_id TO dcid;
|
||||||
|
|
||||||
|
ALTER TABLE "user" RENAME COLUMN id TO dcid;
|
||||||
|
|
||||||
|
ALTER TABLE puppet DROP COLUMN enable_presence;
|
||||||
|
ALTER TABLE puppet DROP COLUMN enable_receipts;
|
||||||
|
|
||||||
|
DROP TABLE message;
|
||||||
|
DROP TABLE reaction;
|
||||||
|
DROP TABLE attachment;
|
||||||
|
|
||||||
|
CREATE TABLE message (
|
||||||
|
dcid TEXT,
|
||||||
|
dc_chan_id TEXT,
|
||||||
|
dc_chan_receiver TEXT,
|
||||||
|
dc_sender TEXT NOT NULL,
|
||||||
|
timestamp BIGINT NOT NULL,
|
||||||
|
|
||||||
|
mxid TEXT NOT NULL UNIQUE,
|
||||||
|
|
||||||
|
PRIMARY KEY (dcid, dc_chan_id, dc_chan_receiver),
|
||||||
|
CONSTRAINT message_portal_fkey FOREIGN KEY (dc_chan_id, dc_chan_receiver) REFERENCES portal (dcid, receiver) ON DELETE CASCADE
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE reaction (
|
||||||
|
dc_chan_id TEXT,
|
||||||
|
dc_chan_receiver TEXT,
|
||||||
|
dc_msg_id TEXT,
|
||||||
|
dc_sender TEXT,
|
||||||
|
dc_emoji_name TEXT,
|
||||||
|
|
||||||
|
mxid TEXT NOT NULL UNIQUE,
|
||||||
|
|
||||||
|
PRIMARY KEY (dc_chan_id, dc_chan_receiver, dc_msg_id, dc_sender, dc_emoji_name),
|
||||||
|
CONSTRAINT reaction_message_fkey FOREIGN KEY (dc_msg_id, dc_chan_id, dc_chan_receiver) REFERENCES message (dcid, dc_chan_id, dc_chan_receiver) ON DELETE CASCADE
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE attachment (
|
||||||
|
dcid TEXT,
|
||||||
|
dc_msg_id TEXT,
|
||||||
|
dc_chan_id TEXT,
|
||||||
|
dc_chan_receiver TEXT,
|
||||||
|
|
||||||
|
mxid TEXT NOT NULL UNIQUE,
|
||||||
|
|
||||||
|
PRIMARY KEY (dcid, dc_msg_id, dc_chan_id, dc_chan_receiver),
|
||||||
|
CONSTRAINT attachment_message_fkey FOREIGN KEY (dc_msg_id, dc_chan_id, dc_chan_receiver) REFERENCES message (dcid, dc_chan_id, dc_chan_receiver) ON DELETE CASCADE
|
||||||
|
);
|
||||||
|
|
||||||
|
UPDATE portal SET receiver='' WHERE type<>1;
|
||||||
73
database/upgrades/03-spaces.sql
Normal file
73
database/upgrades/03-spaces.sql
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
-- v3: Store portal parent metadata for spaces
|
||||||
|
DROP TABLE guild;
|
||||||
|
|
||||||
|
CREATE TABLE guild (
|
||||||
|
dcid TEXT PRIMARY KEY,
|
||||||
|
mxid TEXT UNIQUE,
|
||||||
|
name TEXT NOT NULL,
|
||||||
|
name_set BOOLEAN NOT NULL,
|
||||||
|
avatar TEXT NOT NULL,
|
||||||
|
avatar_url TEXT NOT NULL,
|
||||||
|
avatar_set BOOLEAN NOT NULL,
|
||||||
|
|
||||||
|
auto_bridge_channels BOOLEAN NOT NULL
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE user_portal (
|
||||||
|
discord_id TEXT,
|
||||||
|
user_mxid TEXT,
|
||||||
|
type TEXT NOT NULL,
|
||||||
|
in_space BOOLEAN NOT NULL,
|
||||||
|
timestamp BIGINT NOT NULL,
|
||||||
|
|
||||||
|
PRIMARY KEY (discord_id, user_mxid),
|
||||||
|
CONSTRAINT up_user_fkey FOREIGN KEY (user_mxid) REFERENCES "user" (mxid) ON DELETE CASCADE
|
||||||
|
);
|
||||||
|
|
||||||
|
ALTER TABLE portal ADD COLUMN dc_guild_id TEXT;
|
||||||
|
ALTER TABLE portal ADD COLUMN dc_parent_id TEXT;
|
||||||
|
ALTER TABLE portal ADD COLUMN dc_parent_receiver TEXT NOT NULL DEFAULT '';
|
||||||
|
ALTER TABLE portal ADD CONSTRAINT portal_parent_fkey FOREIGN KEY (dc_parent_id, dc_parent_receiver) REFERENCES portal (dcid, receiver) ON DELETE CASCADE;
|
||||||
|
ALTER TABLE portal ADD CONSTRAINT portal_guild_fkey FOREIGN KEY (dc_guild_id) REFERENCES guild(dcid) ON DELETE CASCADE;
|
||||||
|
DELETE FROM portal WHERE type IS NULL;
|
||||||
|
-- only: postgres
|
||||||
|
ALTER TABLE portal ALTER COLUMN type SET NOT NULL;
|
||||||
|
|
||||||
|
ALTER TABLE portal ADD COLUMN in_space TEXT NOT NULL DEFAULT '';
|
||||||
|
ALTER TABLE portal ADD COLUMN name_set BOOLEAN NOT NULL DEFAULT false;
|
||||||
|
ALTER TABLE portal ADD COLUMN topic_set BOOLEAN NOT NULL DEFAULT false;
|
||||||
|
ALTER TABLE portal ADD COLUMN avatar_set BOOLEAN NOT NULL DEFAULT false;
|
||||||
|
-- only: postgres for next 5 lines
|
||||||
|
ALTER TABLE portal ALTER COLUMN in_space DROP DEFAULT;
|
||||||
|
ALTER TABLE portal ALTER COLUMN name_set DROP DEFAULT;
|
||||||
|
ALTER TABLE portal ALTER COLUMN topic_set DROP DEFAULT;
|
||||||
|
ALTER TABLE portal ALTER COLUMN avatar_set DROP DEFAULT;
|
||||||
|
ALTER TABLE portal ALTER COLUMN encrypted DROP DEFAULT;
|
||||||
|
|
||||||
|
ALTER TABLE puppet RENAME COLUMN display_name TO name;
|
||||||
|
ALTER TABLE puppet ADD COLUMN name_set BOOLEAN NOT NULL DEFAULT false;
|
||||||
|
ALTER TABLE puppet ADD COLUMN avatar_set BOOLEAN NOT NULL DEFAULT false;
|
||||||
|
-- only: postgres for next 2 lines
|
||||||
|
ALTER TABLE puppet ALTER COLUMN name_set DROP DEFAULT;
|
||||||
|
ALTER TABLE puppet ALTER COLUMN avatar_set DROP DEFAULT;
|
||||||
|
|
||||||
|
ALTER TABLE "user" ADD COLUMN space_room TEXT;
|
||||||
|
ALTER TABLE "user" ADD COLUMN dm_space_room TEXT;
|
||||||
|
ALTER TABLE "user" RENAME COLUMN token TO discord_token;
|
||||||
|
|
||||||
|
UPDATE message SET timestamp=timestamp*1000;
|
||||||
|
|
||||||
|
CREATE TABLE thread (
|
||||||
|
dcid TEXT PRIMARY KEY,
|
||||||
|
parent_chan_id TEXT NOT NULL,
|
||||||
|
root_msg_dcid TEXT NOT NULL,
|
||||||
|
root_msg_mxid TEXT NOT NULL,
|
||||||
|
-- This is also not accessed by the bridge.
|
||||||
|
receiver TEXT NOT NULL DEFAULT '',
|
||||||
|
|
||||||
|
CONSTRAINT thread_parent_fkey FOREIGN KEY (parent_chan_id, receiver) REFERENCES portal(dcid, receiver) ON DELETE CASCADE ON UPDATE CASCADE
|
||||||
|
);
|
||||||
|
|
||||||
|
ALTER TABLE message ADD COLUMN dc_thread_id TEXT;
|
||||||
|
ALTER TABLE attachment ADD COLUMN dc_thread_id TEXT;
|
||||||
|
ALTER TABLE reaction ADD COLUMN dc_thread_id TEXT;
|
||||||
20
database/upgrades/04-attachment-fix.postgres.sql
Normal file
20
database/upgrades/04-attachment-fix.postgres.sql
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
-- v4: Fix storing attachments
|
||||||
|
ALTER TABLE reaction DROP CONSTRAINT reaction_message_fkey;
|
||||||
|
ALTER TABLE attachment DROP CONSTRAINT attachment_message_fkey;
|
||||||
|
ALTER TABLE message DROP CONSTRAINT message_pkey;
|
||||||
|
ALTER TABLE message ADD COLUMN dc_attachment_id TEXT NOT NULL DEFAULT '';
|
||||||
|
ALTER TABLE message ADD COLUMN dc_edit_index INTEGER NOT NULL DEFAULT 0;
|
||||||
|
ALTER TABLE message ALTER COLUMN dc_attachment_id DROP DEFAULT;
|
||||||
|
ALTER TABLE message ALTER COLUMN dc_edit_index DROP DEFAULT;
|
||||||
|
ALTER TABLE message ADD PRIMARY KEY (dcid, dc_attachment_id, dc_edit_index, dc_chan_id, dc_chan_receiver);
|
||||||
|
INSERT INTO message (dcid, dc_attachment_id, dc_edit_index, dc_chan_id, dc_chan_receiver, dc_sender, timestamp, dc_thread_id, mxid)
|
||||||
|
SELECT message.dcid, attachment.dcid, 0, attachment.dc_chan_id, attachment.dc_chan_receiver, message.dc_sender, message.timestamp, attachment.dc_thread_id, attachment.mxid
|
||||||
|
FROM attachment LEFT JOIN message ON attachment.dc_msg_id = message.dcid;
|
||||||
|
DROP TABLE attachment;
|
||||||
|
|
||||||
|
ALTER TABLE reaction ADD COLUMN dc_first_attachment_id TEXT NOT NULL DEFAULT '';
|
||||||
|
ALTER TABLE reaction ALTER COLUMN dc_first_attachment_id DROP DEFAULT;
|
||||||
|
ALTER TABLE reaction ADD COLUMN _dc_first_edit_index INTEGER DEFAULT 0;
|
||||||
|
ALTER TABLE reaction ADD CONSTRAINT reaction_message_fkey
|
||||||
|
FOREIGN KEY (dc_msg_id, dc_first_attachment_id, _dc_first_edit_index, dc_chan_id, dc_chan_receiver)
|
||||||
|
REFERENCES message(dcid, dc_attachment_id, dc_edit_index, dc_chan_id, dc_chan_receiver);
|
||||||
45
database/upgrades/04-attachment-fix.sqlite.sql
Normal file
45
database/upgrades/04-attachment-fix.sqlite.sql
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
-- v4: Fix storing attachments
|
||||||
|
CREATE TABLE new_message (
|
||||||
|
dcid TEXT,
|
||||||
|
dc_attachment_id TEXT,
|
||||||
|
dc_edit_index INTEGER,
|
||||||
|
dc_chan_id TEXT,
|
||||||
|
dc_chan_receiver TEXT,
|
||||||
|
dc_sender TEXT NOT NULL,
|
||||||
|
timestamp BIGINT NOT NULL,
|
||||||
|
dc_thread_id TEXT,
|
||||||
|
|
||||||
|
mxid TEXT NOT NULL UNIQUE,
|
||||||
|
|
||||||
|
PRIMARY KEY (dcid, dc_attachment_id, dc_edit_index, dc_chan_id, dc_chan_receiver),
|
||||||
|
CONSTRAINT message_portal_fkey FOREIGN KEY (dc_chan_id, dc_chan_receiver) REFERENCES portal (dcid, receiver) ON DELETE CASCADE
|
||||||
|
);
|
||||||
|
INSERT INTO new_message (dcid, dc_attachment_id, dc_edit_index, dc_chan_id, dc_chan_receiver, dc_sender, timestamp, dc_thread_id, mxid)
|
||||||
|
SELECT dcid, '', 0, dc_chan_id, dc_chan_receiver, dc_sender, timestamp, dc_thread_id, mxid FROM message;
|
||||||
|
INSERT INTO new_message (dcid, dc_attachment_id, dc_edit_index, dc_chan_id, dc_chan_receiver, dc_sender, timestamp, dc_thread_id, mxid)
|
||||||
|
SELECT message.dcid, attachment.dcid, 0, attachment.dc_chan_id, attachment.dc_chan_receiver, message.dc_sender, message.timestamp, attachment.dc_thread_id, attachment.mxid
|
||||||
|
FROM attachment LEFT JOIN message ON attachment.dc_msg_id = message.dcid;
|
||||||
|
DROP TABLE attachment;
|
||||||
|
DROP TABLE message;
|
||||||
|
ALTER TABLE new_message RENAME TO message;
|
||||||
|
|
||||||
|
CREATE TABLE new_reaction (
|
||||||
|
dc_chan_id TEXT,
|
||||||
|
dc_chan_receiver TEXT,
|
||||||
|
dc_msg_id TEXT,
|
||||||
|
dc_sender TEXT,
|
||||||
|
dc_emoji_name TEXT,
|
||||||
|
dc_thread_id TEXT,
|
||||||
|
|
||||||
|
dc_first_attachment_id TEXT NOT NULL,
|
||||||
|
_dc_first_edit_index INTEGER NOT NULL DEFAULT 0,
|
||||||
|
|
||||||
|
mxid TEXT NOT NULL UNIQUE,
|
||||||
|
|
||||||
|
PRIMARY KEY (dc_chan_id, dc_chan_receiver, dc_msg_id, dc_sender, dc_emoji_name),
|
||||||
|
CONSTRAINT reaction_message_fkey FOREIGN KEY (dc_msg_id, dc_first_attachment_id, _dc_first_edit_index, dc_chan_id, dc_chan_receiver) REFERENCES message (dcid, dc_attachment_id, dc_edit_index, dc_chan_id, dc_chan_receiver) ON DELETE CASCADE
|
||||||
|
);
|
||||||
|
INSERT INTO new_reaction (dc_chan_id, dc_chan_receiver, dc_msg_id, dc_sender, dc_emoji_name, dc_thread_id, dc_first_attachment_id, mxid)
|
||||||
|
SELECT dc_chan_id, dc_chan_receiver, dc_msg_id, dc_sender, dc_emoji_name, dc_thread_id, '', mxid FROM reaction;
|
||||||
|
DROP TABLE reaction;
|
||||||
|
ALTER TABLE new_reaction RENAME TO reaction;
|
||||||
8
database/upgrades/05-reaction-fkey-fix.sql
Normal file
8
database/upgrades/05-reaction-fkey-fix.sql
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
-- v5: Fix foreign key broken in v4
|
||||||
|
-- only: postgres
|
||||||
|
|
||||||
|
ALTER TABLE reaction DROP CONSTRAINT reaction_message_fkey;
|
||||||
|
ALTER TABLE reaction ADD CONSTRAINT reaction_message_fkey
|
||||||
|
FOREIGN KEY (dc_msg_id, dc_first_attachment_id, _dc_first_edit_index, dc_chan_id, dc_chan_receiver)
|
||||||
|
REFERENCES message(dcid, dc_attachment_id, dc_edit_index, dc_chan_id, dc_chan_receiver)
|
||||||
|
ON DELETE CASCADE;
|
||||||
2
database/upgrades/06-user-read-state-version.sql
Normal file
2
database/upgrades/06-user-read-state-version.sql
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
-- v6: Store user read state version
|
||||||
|
ALTER TABLE "user" ADD COLUMN read_state_version INTEGER NOT NULL DEFAULT 0;
|
||||||
19
database/upgrades/07-store-role-info.sql
Normal file
19
database/upgrades/07-store-role-info.sql
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
-- v7: Store role info
|
||||||
|
CREATE TABLE role (
|
||||||
|
dc_guild_id TEXT,
|
||||||
|
dcid TEXT,
|
||||||
|
|
||||||
|
name TEXT NOT NULL,
|
||||||
|
icon TEXT,
|
||||||
|
|
||||||
|
mentionable BOOLEAN NOT NULL,
|
||||||
|
managed BOOLEAN NOT NULL,
|
||||||
|
hoist BOOLEAN NOT NULL,
|
||||||
|
|
||||||
|
color INTEGER NOT NULL,
|
||||||
|
position INTEGER NOT NULL,
|
||||||
|
permissions BIGINT NOT NULL,
|
||||||
|
|
||||||
|
PRIMARY KEY (dc_guild_id, dcid),
|
||||||
|
CONSTRAINT role_guild_fkey FOREIGN KEY (dc_guild_id) REFERENCES guild (dcid) ON DELETE CASCADE
|
||||||
|
);
|
||||||
9
database/upgrades/08-channel-plain-name.sql
Normal file
9
database/upgrades/08-channel-plain-name.sql
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
-- v8: Store plain name of channels and guilds
|
||||||
|
ALTER TABLE guild ADD COLUMN plain_name TEXT;
|
||||||
|
ALTER TABLE portal ADD COLUMN plain_name TEXT;
|
||||||
|
UPDATE guild SET plain_name=name;
|
||||||
|
UPDATE portal SET plain_name=name;
|
||||||
|
UPDATE portal SET plain_name='' WHERE type=1;
|
||||||
|
-- only: postgres for next 2 lines
|
||||||
|
ALTER TABLE guild ALTER COLUMN plain_name SET NOT NULL;
|
||||||
|
ALTER TABLE portal ALTER COLUMN plain_name SET NOT NULL;
|
||||||
9
database/upgrades/09-more-thread-data.sql
Normal file
9
database/upgrades/09-more-thread-data.sql
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
-- v9: Store more info for proper thread support
|
||||||
|
ALTER TABLE thread ADD COLUMN creation_notice_mxid TEXT NOT NULL DEFAULT '';
|
||||||
|
UPDATE message SET dc_thread_id='' WHERE dc_thread_id IS NULL;
|
||||||
|
UPDATE reaction SET dc_thread_id='' WHERE dc_thread_id IS NULL;
|
||||||
|
|
||||||
|
-- only: postgres for next 3 lines
|
||||||
|
ALTER TABLE thread ALTER COLUMN creation_notice_mxid DROP DEFAULT;
|
||||||
|
ALTER TABLE message ALTER COLUMN dc_thread_id SET NOT NULL;
|
||||||
|
ALTER TABLE reaction ALTER COLUMN dc_thread_id SET NOT NULL;
|
||||||
2
database/upgrades/10-remove-broken-double-puppets.sql
Normal file
2
database/upgrades/10-remove-broken-double-puppets.sql
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
-- v10: Remove double puppet ghosts added while there was a bug in the bridge
|
||||||
|
DELETE FROM puppet WHERE id='';
|
||||||
18
database/upgrades/11-cache-reuploaded-files.sql
Normal file
18
database/upgrades/11-cache-reuploaded-files.sql
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
-- v11: Cache files copied from Discord to Matrix
|
||||||
|
CREATE TABLE discord_file (
|
||||||
|
url TEXT,
|
||||||
|
encrypted BOOLEAN,
|
||||||
|
|
||||||
|
id TEXT,
|
||||||
|
mxc TEXT NOT NULL,
|
||||||
|
|
||||||
|
size BIGINT NOT NULL,
|
||||||
|
width INTEGER,
|
||||||
|
height INTEGER,
|
||||||
|
|
||||||
|
decryption_info jsonb,
|
||||||
|
|
||||||
|
timestamp BIGINT NOT NULL,
|
||||||
|
|
||||||
|
PRIMARY KEY (url, encrypted)
|
||||||
|
);
|
||||||
4
database/upgrades/12-file-cache-mime-type.sql
Normal file
4
database/upgrades/12-file-cache-mime-type.sql
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
-- v12: Cache mime type for reuploaded files
|
||||||
|
ALTER TABLE discord_file ADD COLUMN mime_type TEXT NOT NULL DEFAULT '';
|
||||||
|
-- only: postgres
|
||||||
|
ALTER TABLE discord_file ALTER COLUMN mime_type DROP DEFAULT;
|
||||||
4
database/upgrades/13-merge-emoji-and-file.postgres.sql
Normal file
4
database/upgrades/13-merge-emoji-and-file.postgres.sql
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
-- v13: Merge tables used for cached custom emojis and attachments
|
||||||
|
ALTER TABLE discord_file ADD CONSTRAINT mxc_unique UNIQUE (mxc);
|
||||||
|
ALTER TABLE discord_file ADD COLUMN emoji_name TEXT;
|
||||||
|
DROP TABLE emoji;
|
||||||
24
database/upgrades/13-merge-emoji-and-file.sqlite.sql
Normal file
24
database/upgrades/13-merge-emoji-and-file.sqlite.sql
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
-- v13: Merge tables used for cached custom emojis and attachments
|
||||||
|
CREATE TABLE new_discord_file (
|
||||||
|
url TEXT,
|
||||||
|
encrypted BOOLEAN,
|
||||||
|
mxc TEXT NOT NULL UNIQUE,
|
||||||
|
|
||||||
|
id TEXT,
|
||||||
|
emoji_name TEXT,
|
||||||
|
|
||||||
|
size BIGINT NOT NULL,
|
||||||
|
width INTEGER,
|
||||||
|
height INTEGER,
|
||||||
|
mime_type TEXT NOT NULL,
|
||||||
|
decryption_info jsonb,
|
||||||
|
timestamp BIGINT NOT NULL,
|
||||||
|
|
||||||
|
PRIMARY KEY (url, encrypted)
|
||||||
|
);
|
||||||
|
|
||||||
|
INSERT INTO new_discord_file (url, encrypted, id, mxc, size, width, height, mime_type, decryption_info, timestamp)
|
||||||
|
SELECT url, encrypted, id, mxc, size, width, height, mime_type, decryption_info, timestamp FROM discord_file;
|
||||||
|
|
||||||
|
DROP TABLE discord_file;
|
||||||
|
ALTER TABLE new_discord_file RENAME TO discord_file;
|
||||||
7
database/upgrades/14-guild-bridging-mode.sql
Normal file
7
database/upgrades/14-guild-bridging-mode.sql
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
-- v14: Add more modes of bridging guilds
|
||||||
|
ALTER TABLE guild ADD COLUMN bridging_mode INTEGER NOT NULL DEFAULT 0;
|
||||||
|
UPDATE guild SET bridging_mode=2 WHERE mxid<>'';
|
||||||
|
UPDATE guild SET bridging_mode=3 WHERE auto_bridge_channels=true;
|
||||||
|
ALTER TABLE guild DROP COLUMN auto_bridge_channels;
|
||||||
|
-- only: postgres
|
||||||
|
ALTER TABLE guild ALTER COLUMN bridging_mode DROP DEFAULT;
|
||||||
3
database/upgrades/15-portal-relay-webhook.sql
Normal file
3
database/upgrades/15-portal-relay-webhook.sql
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
-- v15: Store relay webhook URL for portals
|
||||||
|
ALTER TABLE portal ADD COLUMN relay_webhook_id TEXT;
|
||||||
|
ALTER TABLE portal ADD COLUMN relay_webhook_secret TEXT;
|
||||||
3
database/upgrades/16-add-contact-info.sql
Normal file
3
database/upgrades/16-add-contact-info.sql
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
-- v16: Store whether custom contact info has been set for the puppet
|
||||||
|
|
||||||
|
ALTER TABLE puppet ADD COLUMN contact_info_set BOOLEAN NOT NULL DEFAULT false;
|
||||||
2
database/upgrades/17-dm-portal-friend-nick.sql
Normal file
2
database/upgrades/17-dm-portal-friend-nick.sql
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
-- v17: Store whether DM portal name is a friend nickname
|
||||||
|
ALTER TABLE portal ADD COLUMN friend_nick BOOLEAN NOT NULL DEFAULT false;
|
||||||
4
database/upgrades/18-extra-ghost-metadata.sql
Normal file
4
database/upgrades/18-extra-ghost-metadata.sql
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
-- v18 (compatible with v15+): Store additional metadata for ghosts
|
||||||
|
ALTER TABLE puppet ADD COLUMN username TEXT NOT NULL DEFAULT '';
|
||||||
|
ALTER TABLE puppet ADD COLUMN discriminator TEXT NOT NULL DEFAULT '';
|
||||||
|
ALTER TABLE puppet ADD COLUMN is_bot BOOLEAN NOT NULL DEFAULT false;
|
||||||
15
database/upgrades/19-message-edit-ts.postgres.sql
Normal file
15
database/upgrades/19-message-edit-ts.postgres.sql
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
-- v19: Replace dc_edit_index with dc_edit_timestamp
|
||||||
|
-- transaction: off
|
||||||
|
BEGIN;
|
||||||
|
|
||||||
|
ALTER TABLE reaction DROP CONSTRAINT reaction_message_fkey;
|
||||||
|
ALTER TABLE message DROP CONSTRAINT message_pkey;
|
||||||
|
ALTER TABLE message DROP COLUMN dc_edit_index;
|
||||||
|
ALTER TABLE reaction DROP COLUMN _dc_first_edit_index;
|
||||||
|
ALTER TABLE message ADD PRIMARY KEY (dcid, dc_attachment_id, dc_chan_id, dc_chan_receiver);
|
||||||
|
ALTER TABLE reaction ADD CONSTRAINT reaction_message_fkey FOREIGN KEY (dc_msg_id, dc_first_attachment_id, dc_chan_id, dc_chan_receiver) REFERENCES message (dcid, dc_attachment_id, dc_chan_id, dc_chan_receiver) ON DELETE CASCADE;
|
||||||
|
|
||||||
|
ALTER TABLE message ADD COLUMN dc_edit_timestamp BIGINT NOT NULL DEFAULT 0;
|
||||||
|
ALTER TABLE message ALTER COLUMN dc_edit_timestamp DROP DEFAULT;
|
||||||
|
|
||||||
|
COMMIT;
|
||||||
48
database/upgrades/19-message-edit-ts.sqlite.sql
Normal file
48
database/upgrades/19-message-edit-ts.sqlite.sql
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
-- v19: Replace dc_edit_index with dc_edit_timestamp
|
||||||
|
-- transaction: off
|
||||||
|
PRAGMA foreign_keys = OFF;
|
||||||
|
BEGIN;
|
||||||
|
|
||||||
|
CREATE TABLE message_new (
|
||||||
|
dcid TEXT,
|
||||||
|
dc_attachment_id TEXT,
|
||||||
|
dc_chan_id TEXT,
|
||||||
|
dc_chan_receiver TEXT,
|
||||||
|
dc_sender TEXT NOT NULL,
|
||||||
|
timestamp BIGINT NOT NULL,
|
||||||
|
dc_edit_timestamp BIGINT NOT NULL,
|
||||||
|
dc_thread_id TEXT NOT NULL,
|
||||||
|
|
||||||
|
mxid TEXT NOT NULL UNIQUE,
|
||||||
|
|
||||||
|
PRIMARY KEY (dcid, dc_attachment_id, dc_chan_id, dc_chan_receiver),
|
||||||
|
CONSTRAINT message_portal_fkey FOREIGN KEY (dc_chan_id, dc_chan_receiver) REFERENCES portal (dcid, receiver) ON DELETE CASCADE
|
||||||
|
);
|
||||||
|
INSERT INTO message_new (dcid, dc_attachment_id, dc_chan_id, dc_chan_receiver, dc_sender, timestamp, dc_edit_timestamp, dc_thread_id, mxid)
|
||||||
|
SELECT dcid, dc_attachment_id, dc_chan_id, dc_chan_receiver, dc_sender, timestamp, 0, dc_thread_id, mxid FROM message;
|
||||||
|
DROP TABLE message;
|
||||||
|
ALTER TABLE message_new RENAME TO message;
|
||||||
|
|
||||||
|
CREATE TABLE reaction_new (
|
||||||
|
dc_chan_id TEXT,
|
||||||
|
dc_chan_receiver TEXT,
|
||||||
|
dc_msg_id TEXT,
|
||||||
|
dc_sender TEXT,
|
||||||
|
dc_emoji_name TEXT,
|
||||||
|
dc_thread_id TEXT NOT NULL,
|
||||||
|
|
||||||
|
dc_first_attachment_id TEXT NOT NULL,
|
||||||
|
|
||||||
|
mxid TEXT NOT NULL UNIQUE,
|
||||||
|
|
||||||
|
PRIMARY KEY (dc_chan_id, dc_chan_receiver, dc_msg_id, dc_sender, dc_emoji_name),
|
||||||
|
CONSTRAINT reaction_message_fkey FOREIGN KEY (dc_msg_id, dc_first_attachment_id, dc_chan_id, dc_chan_receiver) REFERENCES message (dcid, dc_attachment_id, dc_chan_id, dc_chan_receiver) ON DELETE CASCADE
|
||||||
|
);
|
||||||
|
INSERT INTO reaction_new (dc_chan_id, dc_chan_receiver, dc_msg_id, dc_sender, dc_emoji_name, dc_thread_id, dc_first_attachment_id, mxid)
|
||||||
|
SELECT dc_chan_id, dc_chan_receiver, dc_msg_id, dc_sender, dc_emoji_name, COALESCE(dc_thread_id, ''), dc_first_attachment_id, mxid FROM reaction;
|
||||||
|
DROP TABLE reaction;
|
||||||
|
ALTER TABLE reaction_new RENAME TO reaction;
|
||||||
|
|
||||||
|
PRAGMA foreign_key_check;
|
||||||
|
COMMIT;
|
||||||
|
PRAGMA foreign_keys = ON;
|
||||||
2
database/upgrades/20-message-sender-mxid.sql
Normal file
2
database/upgrades/20-message-sender-mxid.sql
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
-- v20 (compatible with v19+): Store message sender Matrix user ID
|
||||||
|
ALTER TABLE message ADD COLUMN sender_mxid TEXT NOT NULL DEFAULT '';
|
||||||
3
database/upgrades/21-more-puppet-info.sql
Normal file
3
database/upgrades/21-more-puppet-info.sql
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
-- v21 (compatible with v19+): Store global displayname and is webhook status for puppets
|
||||||
|
ALTER TABLE puppet ADD COLUMN global_name TEXT NOT NULL DEFAULT '';
|
||||||
|
ALTER TABLE puppet ADD COLUMN is_webhook BOOLEAN NOT NULL DEFAULT false;
|
||||||
26
database/upgrades/22-file-cache-duplicate-mxc.sql
Normal file
26
database/upgrades/22-file-cache-duplicate-mxc.sql
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
-- v22 (compatible with v19+): Allow non-unique mxc URIs in file cache
|
||||||
|
CREATE TABLE new_discord_file (
|
||||||
|
url TEXT,
|
||||||
|
encrypted BOOLEAN,
|
||||||
|
mxc TEXT NOT NULL,
|
||||||
|
|
||||||
|
id TEXT,
|
||||||
|
emoji_name TEXT,
|
||||||
|
|
||||||
|
size BIGINT NOT NULL,
|
||||||
|
width INTEGER,
|
||||||
|
height INTEGER,
|
||||||
|
mime_type TEXT NOT NULL,
|
||||||
|
decryption_info jsonb,
|
||||||
|
timestamp BIGINT NOT NULL,
|
||||||
|
|
||||||
|
PRIMARY KEY (url, encrypted)
|
||||||
|
);
|
||||||
|
|
||||||
|
INSERT INTO new_discord_file (url, encrypted, mxc, id, emoji_name, size, width, height, mime_type, decryption_info, timestamp)
|
||||||
|
SELECT url, encrypted, mxc, id, emoji_name, size, width, height, mime_type, decryption_info, timestamp FROM discord_file;
|
||||||
|
|
||||||
|
DROP TABLE discord_file;
|
||||||
|
ALTER TABLE new_discord_file RENAME TO discord_file;
|
||||||
|
|
||||||
|
CREATE INDEX discord_file_mxc_idx ON discord_file (mxc);
|
||||||
2
database/upgrades/23-puppet-is-application.sql
Normal file
2
database/upgrades/23-puppet-is-application.sql
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
-- v23 (compatible with v19+): Store is application status for puppets
|
||||||
|
ALTER TABLE puppet ADD COLUMN is_application BOOLEAN NOT NULL DEFAULT false;
|
||||||
2
database/upgrades/24-user-heartbeat-session.sql
Normal file
2
database/upgrades/24-user-heartbeat-session.sql
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
-- v24 (compatible with v19+): Add persisted heartbeat sessions
|
||||||
|
ALTER TABLE "user" ADD COLUMN heartbeat_session jsonb;
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
||||||
// Copyright (C) 2026 Tulir Asokan
|
// Copyright (C) 2022 Tulir Asokan
|
||||||
//
|
//
|
||||||
// This program is free software: you can redistribute it and/or modify
|
// 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
|
// it under the terms of the GNU Affero General Public License as published by
|
||||||
@@ -14,15 +14,19 @@
|
|||||||
// You should have received a copy of the GNU Affero General Public License
|
// 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/>.
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package connector
|
package upgrades
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"embed"
|
||||||
|
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
"go.mau.fi/util/dbutil"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (d *DiscordClient) GetChatInfo(ctx context.Context, portal *bridgev2.Portal) (*bridgev2.ChatInfo, error) {
|
var Table dbutil.UpgradeTable
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
//go:embed *.sql
|
||||||
|
var rawUpgrades embed.FS
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
Table.RegisterFS(rawUpgrades)
|
||||||
}
|
}
|
||||||
103
database/user.go
Normal file
103
database/user.go
Normal file
@@ -0,0 +1,103 @@
|
|||||||
|
package database
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
"go.mau.fi/util/dbutil"
|
||||||
|
log "maunium.net/go/maulogger/v2"
|
||||||
|
"maunium.net/go/mautrix/id"
|
||||||
|
)
|
||||||
|
|
||||||
|
type UserQuery struct {
|
||||||
|
db *Database
|
||||||
|
log log.Logger
|
||||||
|
}
|
||||||
|
|
||||||
|
func (uq *UserQuery) New() *User {
|
||||||
|
return &User{
|
||||||
|
db: uq.db,
|
||||||
|
log: uq.log,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (uq *UserQuery) GetByMXID(userID id.UserID) *User {
|
||||||
|
query := `SELECT mxid, dcid, discord_token, management_room, space_room, dm_space_room, read_state_version, heartbeat_session FROM "user" WHERE mxid=$1`
|
||||||
|
return uq.New().Scan(uq.db.QueryRow(query, userID))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (uq *UserQuery) GetByID(id string) *User {
|
||||||
|
query := `SELECT mxid, dcid, discord_token, management_room, space_room, dm_space_room, read_state_version, heartbeat_session FROM "user" WHERE dcid=$1`
|
||||||
|
return uq.New().Scan(uq.db.QueryRow(query, id))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (uq *UserQuery) GetAllWithToken() []*User {
|
||||||
|
query := `
|
||||||
|
SELECT mxid, dcid, discord_token, management_room, space_room, dm_space_room, read_state_version, heartbeat_session
|
||||||
|
FROM "user" WHERE discord_token IS NOT NULL
|
||||||
|
`
|
||||||
|
rows, err := uq.db.Query(query)
|
||||||
|
if err != nil || rows == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var users []*User
|
||||||
|
for rows.Next() {
|
||||||
|
user := uq.New().Scan(rows)
|
||||||
|
if user != nil {
|
||||||
|
users = append(users, user)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return users
|
||||||
|
}
|
||||||
|
|
||||||
|
type User struct {
|
||||||
|
db *Database
|
||||||
|
log log.Logger
|
||||||
|
|
||||||
|
MXID id.UserID
|
||||||
|
DiscordID string
|
||||||
|
DiscordToken string
|
||||||
|
ManagementRoom id.RoomID
|
||||||
|
SpaceRoom id.RoomID
|
||||||
|
DMSpaceRoom id.RoomID
|
||||||
|
HeartbeatSession *discordgo.HeartbeatSession
|
||||||
|
|
||||||
|
ReadStateVersion int
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *User) Scan(row dbutil.Scannable) *User {
|
||||||
|
var discordID, managementRoom, spaceRoom, dmSpaceRoom, discordToken sql.NullString
|
||||||
|
err := row.Scan(&u.MXID, &discordID, &discordToken, &managementRoom, &spaceRoom, &dmSpaceRoom, &u.ReadStateVersion, dbutil.JSON{Data: &u.HeartbeatSession})
|
||||||
|
if err != nil {
|
||||||
|
if err != sql.ErrNoRows {
|
||||||
|
u.log.Errorln("Database scan failed:", err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
u.DiscordID = discordID.String
|
||||||
|
u.DiscordToken = discordToken.String
|
||||||
|
u.ManagementRoom = id.RoomID(managementRoom.String)
|
||||||
|
u.SpaceRoom = id.RoomID(spaceRoom.String)
|
||||||
|
u.DMSpaceRoom = id.RoomID(dmSpaceRoom.String)
|
||||||
|
return u
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *User) Insert() {
|
||||||
|
query := `INSERT INTO "user" (mxid, dcid, discord_token, management_room, space_room, dm_space_room, read_state_version, heartbeat_session) VALUES ($1, $2, $3, $4, $5, $6, $7, $8)`
|
||||||
|
_, err := u.db.Exec(query, u.MXID, strPtr(u.DiscordID), strPtr(u.DiscordToken), strPtr(string(u.ManagementRoom)), strPtr(string(u.SpaceRoom)), strPtr(string(u.DMSpaceRoom)), u.ReadStateVersion, JSONPtr(u.HeartbeatSession))
|
||||||
|
if err != nil {
|
||||||
|
u.log.Warnfln("Failed to insert %s: %v", u.MXID, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *User) Update() {
|
||||||
|
query := `UPDATE "user" SET dcid=$1, discord_token=$2, management_room=$3, space_room=$4, dm_space_room=$5, read_state_version=$6, heartbeat_session=$7 WHERE mxid=$8`
|
||||||
|
_, err := u.db.Exec(query, strPtr(u.DiscordID), strPtr(u.DiscordToken), strPtr(string(u.ManagementRoom)), strPtr(string(u.SpaceRoom)), strPtr(string(u.DMSpaceRoom)), u.ReadStateVersion, JSONPtr(u.HeartbeatSession), u.MXID)
|
||||||
|
if err != nil {
|
||||||
|
u.log.Warnfln("Failed to update %q: %v", u.MXID, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
140
database/userportal.go
Normal file
140
database/userportal.go
Normal file
@@ -0,0 +1,140 @@
|
|||||||
|
package database
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
"errors"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"go.mau.fi/util/dbutil"
|
||||||
|
log "maunium.net/go/maulogger/v2"
|
||||||
|
"maunium.net/go/mautrix/id"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
UserPortalTypeDM = "dm"
|
||||||
|
UserPortalTypeGuild = "guild"
|
||||||
|
UserPortalTypeThread = "thread"
|
||||||
|
)
|
||||||
|
|
||||||
|
type UserPortal struct {
|
||||||
|
DiscordID string
|
||||||
|
Type string
|
||||||
|
Timestamp time.Time
|
||||||
|
InSpace bool
|
||||||
|
}
|
||||||
|
|
||||||
|
func (up UserPortal) Scan(l log.Logger, row dbutil.Scannable) *UserPortal {
|
||||||
|
var ts int64
|
||||||
|
err := row.Scan(&up.DiscordID, &up.Type, &ts, &up.InSpace)
|
||||||
|
if err != nil {
|
||||||
|
l.Errorln("Error scanning user portal:", err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
up.Timestamp = time.UnixMilli(ts).UTC()
|
||||||
|
return &up
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *User) scanUserPortals(rows dbutil.Rows) []UserPortal {
|
||||||
|
var ups []UserPortal
|
||||||
|
for rows.Next() {
|
||||||
|
up := UserPortal{}.Scan(u.log, rows)
|
||||||
|
if up != nil {
|
||||||
|
ups = append(ups, *up)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return ups
|
||||||
|
}
|
||||||
|
|
||||||
|
func (db *Database) GetUsersInPortal(channelID string) []id.UserID {
|
||||||
|
rows, err := db.Query("SELECT user_mxid FROM user_portal WHERE discord_id=$1", channelID)
|
||||||
|
if err != nil {
|
||||||
|
db.Portal.log.Errorln("Failed to get users in portal:", err)
|
||||||
|
}
|
||||||
|
var users []id.UserID
|
||||||
|
for rows.Next() {
|
||||||
|
var mxid id.UserID
|
||||||
|
err = rows.Scan(&mxid)
|
||||||
|
if err != nil {
|
||||||
|
db.Portal.log.Errorln("Failed to scan user in portal:", err)
|
||||||
|
} else {
|
||||||
|
users = append(users, mxid)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return users
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *User) GetPortals() []UserPortal {
|
||||||
|
rows, err := u.db.Query("SELECT discord_id, type, timestamp, in_space FROM user_portal WHERE user_mxid=$1", u.MXID)
|
||||||
|
if err != nil {
|
||||||
|
u.log.Errorln("Failed to get portals:", err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
return u.scanUserPortals(rows)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *User) IsInSpace(discordID string) (isIn bool) {
|
||||||
|
query := `SELECT in_space FROM user_portal WHERE user_mxid=$1 AND discord_id=$2`
|
||||||
|
err := u.db.QueryRow(query, u.MXID, discordID).Scan(&isIn)
|
||||||
|
if err != nil && !errors.Is(err, sql.ErrNoRows) {
|
||||||
|
u.log.Warnfln("Failed to scan in_space for %s/%s: %v", u.MXID, discordID, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *User) IsInPortal(discordID string) (isIn bool) {
|
||||||
|
query := `SELECT EXISTS(SELECT 1 FROM user_portal WHERE user_mxid=$1 AND discord_id=$2)`
|
||||||
|
err := u.db.QueryRow(query, u.MXID, discordID).Scan(&isIn)
|
||||||
|
if err != nil && !errors.Is(err, sql.ErrNoRows) {
|
||||||
|
u.log.Warnfln("Failed to scan in_space for %s/%s: %v", u.MXID, discordID, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *User) MarkInPortal(portal UserPortal) {
|
||||||
|
query := `
|
||||||
|
INSERT INTO user_portal (discord_id, type, user_mxid, timestamp, in_space)
|
||||||
|
VALUES ($1, $2, $3, $4, $5)
|
||||||
|
ON CONFLICT (discord_id, user_mxid) DO UPDATE
|
||||||
|
SET timestamp=excluded.timestamp, in_space=excluded.in_space
|
||||||
|
`
|
||||||
|
_, err := u.db.Exec(query, portal.DiscordID, portal.Type, u.MXID, portal.Timestamp.UnixMilli(), portal.InSpace)
|
||||||
|
if err != nil {
|
||||||
|
u.log.Errorfln("Failed to insert user portal %s/%s: %v", u.MXID, portal.DiscordID, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *User) MarkNotInPortal(discordID string) {
|
||||||
|
query := `DELETE FROM user_portal WHERE user_mxid=$1 AND discord_id=$2`
|
||||||
|
_, err := u.db.Exec(query, u.MXID, discordID)
|
||||||
|
if err != nil {
|
||||||
|
u.log.Errorfln("Failed to remove user portal %s/%s: %v", u.MXID, discordID, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *User) PortalHasOtherUsers(discordID string) (hasOtherUsers bool) {
|
||||||
|
query := `SELECT COUNT(*) > 0 FROM user_portal WHERE user_mxid<>$1 AND discord_id=$2`
|
||||||
|
err := u.db.QueryRow(query, u.MXID, discordID).Scan(&hasOtherUsers)
|
||||||
|
if err != nil {
|
||||||
|
u.log.Errorfln("Failed to check if %s has users other than %s: %v", discordID, u.MXID, err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *User) PrunePortalList(beforeTS time.Time) []UserPortal {
|
||||||
|
query := `
|
||||||
|
DELETE FROM user_portal
|
||||||
|
WHERE user_mxid=$1 AND timestamp<$2 AND type IN ('dm', 'guild')
|
||||||
|
RETURNING discord_id, type, timestamp, in_space
|
||||||
|
`
|
||||||
|
rows, err := u.db.Query(query, u.MXID, beforeTS.UnixMilli())
|
||||||
|
if err != nil {
|
||||||
|
u.log.Errorln("Failed to prune user guild list:", err)
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
return u.scanUserPortals(rows)
|
||||||
|
}
|
||||||
663
directmedia.go
Normal file
663
directmedia.go
Normal file
@@ -0,0 +1,663 @@
|
|||||||
|
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
||||||
|
// Copyright (C) 2024 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 (
|
||||||
|
"context"
|
||||||
|
"crypto/sha256"
|
||||||
|
"encoding/binary"
|
||||||
|
"encoding/hex"
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"mime"
|
||||||
|
"mime/multipart"
|
||||||
|
"net"
|
||||||
|
"net/http"
|
||||||
|
"net/textproto"
|
||||||
|
"net/url"
|
||||||
|
"os"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
"sync"
|
||||||
|
"sync/atomic"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
"github.com/gorilla/mux"
|
||||||
|
"github.com/rs/zerolog"
|
||||||
|
"maunium.net/go/mautrix"
|
||||||
|
"maunium.net/go/mautrix/federation"
|
||||||
|
"maunium.net/go/mautrix/id"
|
||||||
|
|
||||||
|
"go.mau.fi/mautrix-discord/config"
|
||||||
|
"go.mau.fi/mautrix-discord/database"
|
||||||
|
)
|
||||||
|
|
||||||
|
type DirectMediaAPI struct {
|
||||||
|
bridge *DiscordBridge
|
||||||
|
ks *federation.KeyServer
|
||||||
|
cfg config.DirectMedia
|
||||||
|
log zerolog.Logger
|
||||||
|
proxy http.Client
|
||||||
|
|
||||||
|
signatureKey [32]byte
|
||||||
|
|
||||||
|
attachmentCache map[AttachmentCacheKey]AttachmentCacheValue
|
||||||
|
attachmentCacheLock sync.Mutex
|
||||||
|
}
|
||||||
|
|
||||||
|
type AttachmentCacheKey struct {
|
||||||
|
ChannelID uint64
|
||||||
|
AttachmentID uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type AttachmentCacheValue struct {
|
||||||
|
URL string
|
||||||
|
Expiry time.Time
|
||||||
|
}
|
||||||
|
|
||||||
|
func newDirectMediaAPI(br *DiscordBridge) *DirectMediaAPI {
|
||||||
|
if !br.Config.Bridge.DirectMedia.Enabled {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
dma := &DirectMediaAPI{
|
||||||
|
bridge: br,
|
||||||
|
cfg: br.Config.Bridge.DirectMedia,
|
||||||
|
log: br.ZLog.With().Str("component", "direct media").Logger(),
|
||||||
|
proxy: http.Client{
|
||||||
|
Transport: &http.Transport{
|
||||||
|
DialContext: (&net.Dialer{Timeout: 10 * time.Second}).DialContext,
|
||||||
|
TLSHandshakeTimeout: 10 * time.Second,
|
||||||
|
ForceAttemptHTTP2: false,
|
||||||
|
},
|
||||||
|
Timeout: 60 * time.Second,
|
||||||
|
},
|
||||||
|
attachmentCache: make(map[AttachmentCacheKey]AttachmentCacheValue),
|
||||||
|
}
|
||||||
|
r := br.AS.Router
|
||||||
|
|
||||||
|
parsed, err := federation.ParseSynapseKey(dma.cfg.ServerKey)
|
||||||
|
if err != nil {
|
||||||
|
dma.log.WithLevel(zerolog.FatalLevel).Err(err).Msg("Failed to parse server key")
|
||||||
|
os.Exit(11)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
dma.signatureKey = sha256.Sum256(parsed.Priv.Seed())
|
||||||
|
dma.ks = &federation.KeyServer{
|
||||||
|
KeyProvider: &federation.StaticServerKey{
|
||||||
|
ServerName: dma.cfg.ServerName,
|
||||||
|
Key: parsed,
|
||||||
|
},
|
||||||
|
WellKnownTarget: dma.cfg.WellKnownResponse,
|
||||||
|
Version: federation.ServerVersion{
|
||||||
|
Name: br.Name,
|
||||||
|
Version: br.Version,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
if dma.ks.WellKnownTarget == "" {
|
||||||
|
dma.ks.WellKnownTarget = fmt.Sprintf("%s:443", dma.cfg.ServerName)
|
||||||
|
}
|
||||||
|
federationRouter := r.PathPrefix("/_matrix/federation").Subrouter()
|
||||||
|
mediaRouter := r.PathPrefix("/_matrix/media").Subrouter()
|
||||||
|
clientMediaRouter := r.PathPrefix("/_matrix/client/v1/media").Subrouter()
|
||||||
|
var reqIDCounter atomic.Uint64
|
||||||
|
middleware := func(next http.Handler) http.Handler {
|
||||||
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
w.Header().Set("Access-Control-Allow-Origin", "*")
|
||||||
|
w.Header().Set("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE, OPTIONS")
|
||||||
|
w.Header().Set("Access-Control-Allow-Headers", "X-Requested-With, Content-Type, Authorization")
|
||||||
|
log := dma.log.With().
|
||||||
|
Str("remote_addr", r.RemoteAddr).
|
||||||
|
Str("request_path", r.URL.Path).
|
||||||
|
Uint64("req_id", reqIDCounter.Add(1)).
|
||||||
|
Logger()
|
||||||
|
next.ServeHTTP(w, r.WithContext(log.WithContext(r.Context())))
|
||||||
|
})
|
||||||
|
}
|
||||||
|
mediaRouter.Use(middleware)
|
||||||
|
federationRouter.Use(middleware)
|
||||||
|
clientMediaRouter.Use(middleware)
|
||||||
|
addRoutes := func(version string) {
|
||||||
|
mediaRouter.HandleFunc("/"+version+"/download/{serverName}/{mediaID}", dma.DownloadMedia).Methods(http.MethodGet)
|
||||||
|
mediaRouter.HandleFunc("/"+version+"/download/{serverName}/{mediaID}/{fileName}", dma.DownloadMedia).Methods(http.MethodGet)
|
||||||
|
mediaRouter.HandleFunc("/"+version+"/thumbnail/{serverName}/{mediaID}", dma.DownloadMedia).Methods(http.MethodGet)
|
||||||
|
mediaRouter.HandleFunc("/"+version+"/upload/{serverName}/{mediaID}", dma.UploadNotSupported).Methods(http.MethodPut)
|
||||||
|
mediaRouter.HandleFunc("/"+version+"/upload", dma.UploadNotSupported).Methods(http.MethodPost)
|
||||||
|
mediaRouter.HandleFunc("/"+version+"/create", dma.UploadNotSupported).Methods(http.MethodPost)
|
||||||
|
mediaRouter.HandleFunc("/"+version+"/config", dma.UploadNotSupported).Methods(http.MethodGet)
|
||||||
|
mediaRouter.HandleFunc("/"+version+"/preview_url", dma.PreviewURLNotSupported).Methods(http.MethodGet)
|
||||||
|
}
|
||||||
|
clientMediaRouter.HandleFunc("/download/{serverName}/{mediaID}", dma.DownloadMedia).Methods(http.MethodGet)
|
||||||
|
clientMediaRouter.HandleFunc("/download/{serverName}/{mediaID}/{fileName}", dma.DownloadMedia).Methods(http.MethodGet)
|
||||||
|
clientMediaRouter.HandleFunc("/thumbnail/{serverName}/{mediaID}", dma.DownloadMedia).Methods(http.MethodGet)
|
||||||
|
clientMediaRouter.HandleFunc("/upload/{serverName}/{mediaID}", dma.UploadNotSupported).Methods(http.MethodPut)
|
||||||
|
clientMediaRouter.HandleFunc("/upload", dma.UploadNotSupported).Methods(http.MethodPost)
|
||||||
|
clientMediaRouter.HandleFunc("/create", dma.UploadNotSupported).Methods(http.MethodPost)
|
||||||
|
clientMediaRouter.HandleFunc("/config", dma.UploadNotSupported).Methods(http.MethodGet)
|
||||||
|
clientMediaRouter.HandleFunc("/preview_url", dma.PreviewURLNotSupported).Methods(http.MethodGet)
|
||||||
|
addRoutes("v3")
|
||||||
|
addRoutes("r0")
|
||||||
|
addRoutes("v1")
|
||||||
|
federationRouter.HandleFunc("/v1/media/download/{mediaID}", dma.DownloadMedia).Methods(http.MethodGet)
|
||||||
|
federationRouter.HandleFunc("/v1/media/thumbnail/{mediaID}", dma.DownloadMedia).Methods(http.MethodGet)
|
||||||
|
federationRouter.HandleFunc("/v1/version", dma.ks.GetServerVersion).Methods(http.MethodGet)
|
||||||
|
mediaRouter.NotFoundHandler = http.HandlerFunc(dma.UnknownEndpoint)
|
||||||
|
mediaRouter.MethodNotAllowedHandler = http.HandlerFunc(dma.UnsupportedMethod)
|
||||||
|
federationRouter.NotFoundHandler = http.HandlerFunc(dma.UnknownEndpoint)
|
||||||
|
federationRouter.MethodNotAllowedHandler = http.HandlerFunc(dma.UnsupportedMethod)
|
||||||
|
dma.ks.Register(r)
|
||||||
|
|
||||||
|
return dma
|
||||||
|
}
|
||||||
|
|
||||||
|
func (dma *DirectMediaAPI) makeMXC(data MediaIDData) id.ContentURI {
|
||||||
|
return id.ContentURI{
|
||||||
|
Homeserver: dma.cfg.ServerName,
|
||||||
|
FileID: data.Wrap().SignedString(dma.signatureKey),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func parseExpiryTS(addr string) time.Time {
|
||||||
|
parsedURL, err := url.Parse(addr)
|
||||||
|
if err != nil {
|
||||||
|
return time.Time{}
|
||||||
|
}
|
||||||
|
tsBytes, err := hex.DecodeString(parsedURL.Query().Get("ex"))
|
||||||
|
if err != nil || len(tsBytes) != 4 {
|
||||||
|
return time.Time{}
|
||||||
|
}
|
||||||
|
parsedTS := int64(binary.BigEndian.Uint32(tsBytes))
|
||||||
|
if parsedTS > time.Now().Unix() && parsedTS < time.Now().Add(365*24*time.Hour).Unix() {
|
||||||
|
return time.Unix(parsedTS, 0)
|
||||||
|
}
|
||||||
|
return time.Time{}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (dma *DirectMediaAPI) addAttachmentToCache(channelID uint64, att *discordgo.MessageAttachment) time.Time {
|
||||||
|
attachmentID, err := strconv.ParseUint(att.ID, 10, 64)
|
||||||
|
if err != nil {
|
||||||
|
return time.Time{}
|
||||||
|
}
|
||||||
|
expiry := parseExpiryTS(att.URL)
|
||||||
|
if expiry.IsZero() {
|
||||||
|
expiry = time.Now().Add(24 * time.Hour)
|
||||||
|
}
|
||||||
|
dma.attachmentCache[AttachmentCacheKey{
|
||||||
|
ChannelID: channelID,
|
||||||
|
AttachmentID: attachmentID,
|
||||||
|
}] = AttachmentCacheValue{
|
||||||
|
URL: att.URL,
|
||||||
|
Expiry: expiry,
|
||||||
|
}
|
||||||
|
return expiry
|
||||||
|
}
|
||||||
|
|
||||||
|
func (dma *DirectMediaAPI) AttachmentMXC(channelID, messageID string, att *discordgo.MessageAttachment) (mxc id.ContentURI) {
|
||||||
|
if dma == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
channelIDInt, err := strconv.ParseUint(channelID, 10, 64)
|
||||||
|
if err != nil {
|
||||||
|
dma.log.Warn().Str("channel_id", channelID).Msg("Got non-integer channel ID")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
messageIDInt, err := strconv.ParseUint(messageID, 10, 64)
|
||||||
|
if err != nil {
|
||||||
|
dma.log.Warn().Str("message_id", messageID).Msg("Got non-integer message ID")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
attachmentIDInt, err := strconv.ParseUint(att.ID, 10, 64)
|
||||||
|
if err != nil {
|
||||||
|
dma.log.Warn().Str("attachment_id", att.ID).Msg("Got non-integer attachment ID")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
dma.attachmentCacheLock.Lock()
|
||||||
|
dma.addAttachmentToCache(channelIDInt, att)
|
||||||
|
dma.attachmentCacheLock.Unlock()
|
||||||
|
return dma.makeMXC(&AttachmentMediaData{
|
||||||
|
ChannelID: channelIDInt,
|
||||||
|
MessageID: messageIDInt,
|
||||||
|
AttachmentID: attachmentIDInt,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (dma *DirectMediaAPI) EmojiMXC(emojiID, name string, animated bool) (mxc id.ContentURI) {
|
||||||
|
if dma == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
emojiIDInt, err := strconv.ParseUint(emojiID, 10, 64)
|
||||||
|
if err != nil {
|
||||||
|
dma.log.Warn().Str("emoji_id", emojiID).Msg("Got non-integer emoji ID")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return dma.makeMXC(&EmojiMediaData{
|
||||||
|
EmojiMediaDataInner: EmojiMediaDataInner{
|
||||||
|
EmojiID: emojiIDInt,
|
||||||
|
Animated: animated,
|
||||||
|
},
|
||||||
|
Name: name,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (dma *DirectMediaAPI) StickerMXC(stickerID string, format discordgo.StickerFormat) (mxc id.ContentURI) {
|
||||||
|
if dma == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
stickerIDInt, err := strconv.ParseUint(stickerID, 10, 64)
|
||||||
|
if err != nil {
|
||||||
|
dma.log.Warn().Str("sticker_id", stickerID).Msg("Got non-integer sticker ID")
|
||||||
|
return
|
||||||
|
} else if format > 255 || format < 0 {
|
||||||
|
dma.log.Warn().Int("format", int(format)).Msg("Got invalid sticker format")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return dma.makeMXC(&StickerMediaData{
|
||||||
|
StickerID: stickerIDInt,
|
||||||
|
Format: byte(format),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (dma *DirectMediaAPI) AvatarMXC(guildID, userID, avatarID string) (mxc id.ContentURI) {
|
||||||
|
if dma == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
animated := strings.HasPrefix(avatarID, "a_")
|
||||||
|
avatarIDBytes, err := hex.DecodeString(strings.TrimPrefix(avatarID, "a_"))
|
||||||
|
if err != nil {
|
||||||
|
dma.log.Warn().Str("avatar_id", avatarID).Msg("Got non-hex avatar ID")
|
||||||
|
return
|
||||||
|
} else if len(avatarIDBytes) != 16 {
|
||||||
|
dma.log.Warn().Str("avatar_id", avatarID).Msg("Got invalid avatar ID length")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
avatarIDArray := [16]byte(avatarIDBytes)
|
||||||
|
userIDInt, err := strconv.ParseUint(userID, 10, 64)
|
||||||
|
if err != nil {
|
||||||
|
dma.log.Warn().Str("user_id", userID).Msg("Got non-integer user ID")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if guildID != "" {
|
||||||
|
guildIDInt, err := strconv.ParseUint(guildID, 10, 64)
|
||||||
|
if err != nil {
|
||||||
|
dma.log.Warn().Str("guild_id", guildID).Msg("Got non-integer guild ID")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return dma.makeMXC(&GuildMemberAvatarMediaData{
|
||||||
|
GuildID: guildIDInt,
|
||||||
|
UserID: userIDInt,
|
||||||
|
AvatarID: avatarIDArray,
|
||||||
|
Animated: animated,
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
return dma.makeMXC(&UserAvatarMediaData{
|
||||||
|
UserID: userIDInt,
|
||||||
|
AvatarID: avatarIDArray,
|
||||||
|
Animated: animated,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type RespError struct {
|
||||||
|
Code string
|
||||||
|
Message string
|
||||||
|
Status int
|
||||||
|
}
|
||||||
|
|
||||||
|
func (re *RespError) Error() string {
|
||||||
|
return re.Message
|
||||||
|
}
|
||||||
|
|
||||||
|
var ErrNoUsersWithAccessFound = errors.New("no users found to fetch message")
|
||||||
|
var ErrAttachmentNotFound = errors.New("attachment not found")
|
||||||
|
|
||||||
|
func (dma *DirectMediaAPI) fetchNewAttachmentURL(ctx context.Context, meta *AttachmentMediaData) (string, time.Time, error) {
|
||||||
|
var client *discordgo.Session
|
||||||
|
channelIDStr := strconv.FormatUint(meta.ChannelID, 10)
|
||||||
|
portal := dma.bridge.GetExistingPortalByID(database.PortalKey{ChannelID: channelIDStr})
|
||||||
|
var users []id.UserID
|
||||||
|
if portal != nil && portal.GuildID != "" {
|
||||||
|
users = dma.bridge.DB.GetUsersInPortal(portal.GuildID)
|
||||||
|
} else {
|
||||||
|
users = dma.bridge.DB.GetUsersInPortal(channelIDStr)
|
||||||
|
}
|
||||||
|
for _, userID := range users {
|
||||||
|
user := dma.bridge.GetCachedUserByMXID(userID)
|
||||||
|
if user == nil || user.Session == nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
perms, err := user.Session.State.UserChannelPermissions(user.DiscordID, channelIDStr)
|
||||||
|
if err == nil && perms&discordgo.PermissionViewChannel == 0 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if client == nil || err == nil {
|
||||||
|
client = user.Session
|
||||||
|
if !client.IsUser {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if client == nil {
|
||||||
|
return "", time.Time{}, ErrNoUsersWithAccessFound
|
||||||
|
}
|
||||||
|
var msgs []*discordgo.Message
|
||||||
|
var err error
|
||||||
|
messageIDStr := strconv.FormatUint(meta.MessageID, 10)
|
||||||
|
if client.IsUser {
|
||||||
|
var refs []discordgo.RequestOption
|
||||||
|
if portal != nil {
|
||||||
|
refs = append(refs, discordgo.WithChannelReferer(portal.GuildID, channelIDStr))
|
||||||
|
}
|
||||||
|
msgs, err = client.ChannelMessages(channelIDStr, 5, "", "", messageIDStr, refs...)
|
||||||
|
} else {
|
||||||
|
var msg *discordgo.Message
|
||||||
|
msg, err = client.ChannelMessage(channelIDStr, messageIDStr)
|
||||||
|
msgs = []*discordgo.Message{msg}
|
||||||
|
}
|
||||||
|
if err != nil {
|
||||||
|
return "", time.Time{}, fmt.Errorf("failed to fetch message: %w", err)
|
||||||
|
}
|
||||||
|
attachmentIDStr := strconv.FormatUint(meta.AttachmentID, 10)
|
||||||
|
var url string
|
||||||
|
var expiry time.Time
|
||||||
|
for _, item := range msgs {
|
||||||
|
for _, att := range item.Attachments {
|
||||||
|
thisExpiry := dma.addAttachmentToCache(meta.ChannelID, att)
|
||||||
|
if att.ID == attachmentIDStr {
|
||||||
|
url = att.URL
|
||||||
|
expiry = thisExpiry
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if url == "" {
|
||||||
|
return "", time.Time{}, ErrAttachmentNotFound
|
||||||
|
}
|
||||||
|
return url, expiry, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (dma *DirectMediaAPI) GetEmojiInfo(contentURI id.ContentURI) *EmojiMediaData {
|
||||||
|
if dma == nil || contentURI.IsEmpty() || contentURI.Homeserver != dma.cfg.ServerName {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
mediaID, err := ParseMediaID(contentURI.FileID, dma.signatureKey)
|
||||||
|
if err != nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
emojiData, ok := mediaID.Data.(*EmojiMediaData)
|
||||||
|
if !ok {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return emojiData
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func (dma *DirectMediaAPI) getMediaURL(ctx context.Context, encodedMediaID string) (url string, expiry time.Time, err error) {
|
||||||
|
var mediaID *MediaID
|
||||||
|
mediaID, err = ParseMediaID(encodedMediaID, dma.signatureKey)
|
||||||
|
if err != nil {
|
||||||
|
err = &RespError{
|
||||||
|
Code: mautrix.MNotFound.ErrCode,
|
||||||
|
Message: err.Error(),
|
||||||
|
Status: http.StatusNotFound,
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
switch mediaData := mediaID.Data.(type) {
|
||||||
|
case *AttachmentMediaData:
|
||||||
|
dma.attachmentCacheLock.Lock()
|
||||||
|
defer dma.attachmentCacheLock.Unlock()
|
||||||
|
cached, ok := dma.attachmentCache[mediaData.CacheKey()]
|
||||||
|
if ok && time.Until(cached.Expiry) > 5*time.Minute {
|
||||||
|
return cached.URL, cached.Expiry, nil
|
||||||
|
}
|
||||||
|
zerolog.Ctx(ctx).Debug().
|
||||||
|
Uint64("channel_id", mediaData.ChannelID).
|
||||||
|
Uint64("message_id", mediaData.MessageID).
|
||||||
|
Uint64("attachment_id", mediaData.AttachmentID).
|
||||||
|
Msg("Refreshing attachment URL")
|
||||||
|
url, expiry, err = dma.fetchNewAttachmentURL(ctx, mediaData)
|
||||||
|
if err != nil {
|
||||||
|
zerolog.Ctx(ctx).Err(err).Msg("Failed to refresh attachment URL")
|
||||||
|
msg := "Failed to refresh attachment URL"
|
||||||
|
if errors.Is(err, ErrNoUsersWithAccessFound) {
|
||||||
|
msg = "No users found with access to the channel"
|
||||||
|
} else if errors.Is(err, ErrAttachmentNotFound) {
|
||||||
|
msg = "Attachment not found in message. Perhaps it was deleted?"
|
||||||
|
}
|
||||||
|
err = &RespError{
|
||||||
|
Code: mautrix.MNotFound.ErrCode,
|
||||||
|
Message: msg,
|
||||||
|
Status: http.StatusNotFound,
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
zerolog.Ctx(ctx).Debug().Time("expiry", expiry).Msg("Successfully refreshed attachment URL")
|
||||||
|
}
|
||||||
|
case *EmojiMediaData:
|
||||||
|
if mediaData.Animated {
|
||||||
|
url = discordgo.EndpointEmojiAnimated(strconv.FormatUint(mediaData.EmojiID, 10))
|
||||||
|
} else {
|
||||||
|
url = discordgo.EndpointEmoji(strconv.FormatUint(mediaData.EmojiID, 10))
|
||||||
|
}
|
||||||
|
case *StickerMediaData:
|
||||||
|
url = discordgo.EndpointStickerImage(
|
||||||
|
strconv.FormatUint(mediaData.StickerID, 10),
|
||||||
|
discordgo.StickerFormat(mediaData.Format),
|
||||||
|
)
|
||||||
|
case *UserAvatarMediaData:
|
||||||
|
if mediaData.Animated {
|
||||||
|
url = discordgo.EndpointUserAvatarAnimated(
|
||||||
|
strconv.FormatUint(mediaData.UserID, 10),
|
||||||
|
fmt.Sprintf("a_%x", mediaData.AvatarID),
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
url = discordgo.EndpointUserAvatar(
|
||||||
|
strconv.FormatUint(mediaData.UserID, 10),
|
||||||
|
fmt.Sprintf("%x", mediaData.AvatarID),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
case *GuildMemberAvatarMediaData:
|
||||||
|
if mediaData.Animated {
|
||||||
|
url = discordgo.EndpointGuildMemberAvatarAnimated(
|
||||||
|
strconv.FormatUint(mediaData.GuildID, 10),
|
||||||
|
strconv.FormatUint(mediaData.UserID, 10),
|
||||||
|
fmt.Sprintf("a_%x", mediaData.AvatarID),
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
url = discordgo.EndpointGuildMemberAvatar(
|
||||||
|
strconv.FormatUint(mediaData.GuildID, 10),
|
||||||
|
strconv.FormatUint(mediaData.UserID, 10),
|
||||||
|
fmt.Sprintf("%x", mediaData.AvatarID),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
zerolog.Ctx(ctx).Error().Type("media_data_type", mediaData).Msg("Unrecognized media data struct")
|
||||||
|
err = &RespError{
|
||||||
|
Code: "M_UNKNOWN",
|
||||||
|
Message: "Unrecognized media data struct",
|
||||||
|
Status: http.StatusInternalServerError,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (dma *DirectMediaAPI) proxyDownload(ctx context.Context, w http.ResponseWriter, url, fileName string) {
|
||||||
|
log := zerolog.Ctx(ctx)
|
||||||
|
req, err := http.NewRequest(http.MethodGet, url, nil)
|
||||||
|
if err != nil {
|
||||||
|
log.Err(err).Str("url", url).Msg("Failed to create proxy request")
|
||||||
|
jsonResponse(w, http.StatusInternalServerError, &mautrix.RespError{
|
||||||
|
ErrCode: "M_UNKNOWN",
|
||||||
|
Err: "Failed to create proxy request",
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
for key, val := range discordgo.DroidDownloadHeaders {
|
||||||
|
req.Header.Set(key, val)
|
||||||
|
}
|
||||||
|
resp, err := dma.proxy.Do(req)
|
||||||
|
defer func() {
|
||||||
|
if resp != nil && resp.Body != nil {
|
||||||
|
_ = resp.Body.Close()
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
if err != nil {
|
||||||
|
log.Err(err).Str("url", url).Msg("Failed to proxy download")
|
||||||
|
jsonResponse(w, http.StatusServiceUnavailable, &mautrix.RespError{
|
||||||
|
ErrCode: "M_UNKNOWN",
|
||||||
|
Err: "Failed to proxy download",
|
||||||
|
})
|
||||||
|
return
|
||||||
|
} else if resp.StatusCode != http.StatusOK {
|
||||||
|
log.Warn().Str("url", url).Int("status", resp.StatusCode).Msg("Unexpected status code proxying download")
|
||||||
|
jsonResponse(w, resp.StatusCode, &mautrix.RespError{
|
||||||
|
ErrCode: "M_UNKNOWN",
|
||||||
|
Err: "Unexpected status code proxying download",
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
w.Header()["Content-Type"] = resp.Header["Content-Type"]
|
||||||
|
w.Header()["Content-Length"] = resp.Header["Content-Length"]
|
||||||
|
w.Header()["Last-Modified"] = resp.Header["Last-Modified"]
|
||||||
|
w.Header()["Cache-Control"] = resp.Header["Cache-Control"]
|
||||||
|
contentDisposition := "attachment"
|
||||||
|
switch resp.Header.Get("Content-Type") {
|
||||||
|
case "text/css", "text/plain", "text/csv", "application/json", "application/ld+json", "image/jpeg", "image/gif",
|
||||||
|
"image/png", "image/apng", "image/webp", "image/avif", "video/mp4", "video/webm", "video/ogg", "video/quicktime",
|
||||||
|
"audio/mp4", "audio/webm", "audio/aac", "audio/mpeg", "audio/ogg", "audio/wave", "audio/wav", "audio/x-wav",
|
||||||
|
"audio/x-pn-wav", "audio/flac", "audio/x-flac", "application/pdf":
|
||||||
|
contentDisposition = "inline"
|
||||||
|
}
|
||||||
|
if fileName != "" {
|
||||||
|
contentDisposition = mime.FormatMediaType(contentDisposition, map[string]string{
|
||||||
|
"filename": fileName,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
w.Header().Set("Content-Disposition", contentDisposition)
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
_, err = io.Copy(w, resp.Body)
|
||||||
|
if err != nil {
|
||||||
|
log.Debug().Err(err).Msg("Failed to write proxy response")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (dma *DirectMediaAPI) DownloadMedia(w http.ResponseWriter, r *http.Request) {
|
||||||
|
ctx := r.Context()
|
||||||
|
log := zerolog.Ctx(ctx)
|
||||||
|
isNewFederation := strings.HasPrefix(r.URL.Path, "/_matrix/federation/v1/media/")
|
||||||
|
vars := mux.Vars(r)
|
||||||
|
if !isNewFederation && vars["serverName"] != dma.cfg.ServerName {
|
||||||
|
jsonResponse(w, http.StatusNotFound, &mautrix.RespError{
|
||||||
|
ErrCode: mautrix.MNotFound.ErrCode,
|
||||||
|
Err: fmt.Sprintf("This is a Discord media proxy for %q, other media downloads are not available here", dma.cfg.ServerName),
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// TODO check destination header in X-Matrix auth when isNewFederation
|
||||||
|
|
||||||
|
url, expiresAt, err := dma.getMediaURL(ctx, vars["mediaID"])
|
||||||
|
if err != nil {
|
||||||
|
var respError *RespError
|
||||||
|
if errors.As(err, &respError) {
|
||||||
|
jsonResponse(w, respError.Status, &mautrix.RespError{
|
||||||
|
ErrCode: respError.Code,
|
||||||
|
Err: respError.Message,
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
log.Err(err).Str("media_id", vars["mediaID"]).Msg("Failed to get media URL")
|
||||||
|
jsonResponse(w, http.StatusNotFound, &mautrix.RespError{
|
||||||
|
ErrCode: mautrix.MNotFound.ErrCode,
|
||||||
|
Err: "Media not found",
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if isNewFederation {
|
||||||
|
mp := multipart.NewWriter(w)
|
||||||
|
w.Header().Set("Content-Type", strings.Replace(mp.FormDataContentType(), "form-data", "mixed", 1))
|
||||||
|
var metaPart io.Writer
|
||||||
|
metaPart, err = mp.CreatePart(textproto.MIMEHeader{
|
||||||
|
"Content-Type": {"application/json"},
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
log.Err(err).Msg("Failed to create multipart metadata field")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
_, err = metaPart.Write([]byte(`{}`))
|
||||||
|
if err != nil {
|
||||||
|
log.Err(err).Msg("Failed to write multipart metadata field")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
_, err = mp.CreatePart(textproto.MIMEHeader{
|
||||||
|
"Location": {url},
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
log.Err(err).Msg("Failed to create multipart redirect field")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
err = mp.Close()
|
||||||
|
if err != nil {
|
||||||
|
log.Err(err).Msg("Failed to close multipart writer")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// Proxy if the config allows proxying and the request doesn't allow redirects.
|
||||||
|
// In any other case, redirect to the Discord CDN.
|
||||||
|
if dma.cfg.AllowProxy && r.URL.Query().Get("allow_redirect") != "true" {
|
||||||
|
dma.proxyDownload(ctx, w, url, vars["fileName"])
|
||||||
|
return
|
||||||
|
}
|
||||||
|
w.Header().Set("Location", url)
|
||||||
|
expirySeconds := (time.Until(expiresAt) - 5*time.Minute).Seconds()
|
||||||
|
if expiresAt.IsZero() {
|
||||||
|
w.Header().Set("Cache-Control", "public, max-age=31536000, immutable")
|
||||||
|
} else if expirySeconds > 0 {
|
||||||
|
cacheControl := fmt.Sprintf("public, max-age=%d, immutable", int(expirySeconds))
|
||||||
|
w.Header().Set("Cache-Control", cacheControl)
|
||||||
|
} else {
|
||||||
|
w.Header().Set("Cache-Control", "no-store")
|
||||||
|
}
|
||||||
|
w.WriteHeader(http.StatusTemporaryRedirect)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (dma *DirectMediaAPI) UploadNotSupported(w http.ResponseWriter, r *http.Request) {
|
||||||
|
jsonResponse(w, http.StatusNotImplemented, &mautrix.RespError{
|
||||||
|
ErrCode: mautrix.MUnrecognized.ErrCode,
|
||||||
|
Err: "This bridge only supports proxying Discord media downloads and does not support media uploads.",
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (dma *DirectMediaAPI) PreviewURLNotSupported(w http.ResponseWriter, r *http.Request) {
|
||||||
|
jsonResponse(w, http.StatusNotImplemented, &mautrix.RespError{
|
||||||
|
ErrCode: mautrix.MUnrecognized.ErrCode,
|
||||||
|
Err: "This bridge only supports proxying Discord media downloads and does not support URL previews.",
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (dma *DirectMediaAPI) UnknownEndpoint(w http.ResponseWriter, r *http.Request) {
|
||||||
|
jsonResponse(w, http.StatusNotFound, &mautrix.RespError{
|
||||||
|
ErrCode: mautrix.MUnrecognized.ErrCode,
|
||||||
|
Err: "Unrecognized endpoint",
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (dma *DirectMediaAPI) UnsupportedMethod(w http.ResponseWriter, r *http.Request) {
|
||||||
|
jsonResponse(w, http.StatusMethodNotAllowed, &mautrix.RespError{
|
||||||
|
ErrCode: mautrix.MUnrecognized.ErrCode,
|
||||||
|
Err: "Invalid method for endpoint",
|
||||||
|
})
|
||||||
|
}
|
||||||
287
directmedia_id.go
Normal file
287
directmedia_id.go
Normal file
@@ -0,0 +1,287 @@
|
|||||||
|
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
||||||
|
// Copyright (C) 2024 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 (
|
||||||
|
"bytes"
|
||||||
|
"crypto/hmac"
|
||||||
|
"crypto/sha256"
|
||||||
|
"encoding/base64"
|
||||||
|
"encoding/binary"
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
const MediaIDPrefix = "\U0001F408DISCORD"
|
||||||
|
const MediaIDVersion = 1
|
||||||
|
|
||||||
|
type MediaIDClass uint8
|
||||||
|
|
||||||
|
const (
|
||||||
|
MediaIDClassAttachment MediaIDClass = 1
|
||||||
|
MediaIDClassEmoji MediaIDClass = 2
|
||||||
|
MediaIDClassSticker MediaIDClass = 3
|
||||||
|
MediaIDClassUserAvatar MediaIDClass = 4
|
||||||
|
MediaIDClassGuildMemberAvatar MediaIDClass = 5
|
||||||
|
)
|
||||||
|
|
||||||
|
type MediaIDData interface {
|
||||||
|
Write(to io.Writer)
|
||||||
|
Read(from io.Reader) error
|
||||||
|
Size() int
|
||||||
|
Wrap() *MediaID
|
||||||
|
}
|
||||||
|
|
||||||
|
type MediaID struct {
|
||||||
|
Version uint8
|
||||||
|
TypeClass MediaIDClass
|
||||||
|
Data MediaIDData
|
||||||
|
}
|
||||||
|
|
||||||
|
func ParseMediaID(id string, key [32]byte) (*MediaID, error) {
|
||||||
|
data, err := base64.RawURLEncoding.DecodeString(id)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("failed to decode base64: %w", err)
|
||||||
|
}
|
||||||
|
hasher := hmac.New(sha256.New, key[:])
|
||||||
|
checksum := data[len(data)-TruncatedHashLength:]
|
||||||
|
data = data[:len(data)-TruncatedHashLength]
|
||||||
|
hasher.Write(data)
|
||||||
|
if !hmac.Equal(checksum, hasher.Sum(nil)[:TruncatedHashLength]) {
|
||||||
|
return nil, ErrMediaIDChecksumMismatch
|
||||||
|
}
|
||||||
|
mid := &MediaID{}
|
||||||
|
err = mid.Read(bytes.NewReader(data))
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("failed to parse media ID: %w", err)
|
||||||
|
}
|
||||||
|
return mid, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
const TruncatedHashLength = 16
|
||||||
|
|
||||||
|
func (mid *MediaID) SignedString(key [32]byte) string {
|
||||||
|
buf := bytes.NewBuffer(make([]byte, 0, mid.Size()))
|
||||||
|
mid.Write(buf)
|
||||||
|
hasher := hmac.New(sha256.New, key[:])
|
||||||
|
hasher.Write(buf.Bytes())
|
||||||
|
buf.Write(hasher.Sum(nil)[:TruncatedHashLength])
|
||||||
|
return base64.RawURLEncoding.EncodeToString(buf.Bytes())
|
||||||
|
}
|
||||||
|
|
||||||
|
func (mid *MediaID) Write(to io.Writer) {
|
||||||
|
_, _ = to.Write([]byte(MediaIDPrefix))
|
||||||
|
_ = binary.Write(to, binary.BigEndian, mid.Version)
|
||||||
|
_ = binary.Write(to, binary.BigEndian, mid.TypeClass)
|
||||||
|
mid.Data.Write(to)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (mid *MediaID) Size() int {
|
||||||
|
return len(MediaIDPrefix) + 2 + mid.Data.Size() + TruncatedHashLength
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
ErrInvalidMediaID = errors.New("invalid media ID")
|
||||||
|
ErrMediaIDChecksumMismatch = errors.New("invalid checksum in media ID")
|
||||||
|
ErrUnsupportedMediaID = errors.New("unsupported media ID")
|
||||||
|
)
|
||||||
|
|
||||||
|
func (mid *MediaID) Read(from io.Reader) error {
|
||||||
|
prefix := make([]byte, len(MediaIDPrefix))
|
||||||
|
_, err := io.ReadFull(from, prefix)
|
||||||
|
if err != nil || !bytes.Equal(prefix, []byte(MediaIDPrefix)) {
|
||||||
|
return fmt.Errorf("%w: prefix not found", ErrInvalidMediaID)
|
||||||
|
}
|
||||||
|
versionAndClass := make([]byte, 2)
|
||||||
|
_, err = io.ReadFull(from, versionAndClass)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("%w: version and class not found", ErrInvalidMediaID)
|
||||||
|
} else if versionAndClass[0] != MediaIDVersion {
|
||||||
|
return fmt.Errorf("%w: unknown version %d", ErrUnsupportedMediaID, versionAndClass[0])
|
||||||
|
}
|
||||||
|
switch MediaIDClass(versionAndClass[1]) {
|
||||||
|
case MediaIDClassAttachment:
|
||||||
|
mid.Data = &AttachmentMediaData{}
|
||||||
|
case MediaIDClassEmoji:
|
||||||
|
mid.Data = &EmojiMediaData{}
|
||||||
|
case MediaIDClassSticker:
|
||||||
|
mid.Data = &StickerMediaData{}
|
||||||
|
case MediaIDClassUserAvatar:
|
||||||
|
mid.Data = &UserAvatarMediaData{}
|
||||||
|
case MediaIDClassGuildMemberAvatar:
|
||||||
|
mid.Data = &GuildMemberAvatarMediaData{}
|
||||||
|
default:
|
||||||
|
return fmt.Errorf("%w: unrecognized type class %d", ErrUnsupportedMediaID, versionAndClass[1])
|
||||||
|
}
|
||||||
|
err = mid.Data.Read(from)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("failed to parse media ID data: %w", err)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type AttachmentMediaData struct {
|
||||||
|
ChannelID uint64
|
||||||
|
MessageID uint64
|
||||||
|
AttachmentID uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
func (amd *AttachmentMediaData) Write(to io.Writer) {
|
||||||
|
_ = binary.Write(to, binary.BigEndian, amd)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (amd *AttachmentMediaData) Read(from io.Reader) (err error) {
|
||||||
|
return binary.Read(from, binary.BigEndian, amd)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (amd *AttachmentMediaData) Size() int {
|
||||||
|
return binary.Size(amd)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (amd *AttachmentMediaData) Wrap() *MediaID {
|
||||||
|
return &MediaID{
|
||||||
|
Version: MediaIDVersion,
|
||||||
|
TypeClass: MediaIDClassAttachment,
|
||||||
|
Data: amd,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (amd *AttachmentMediaData) CacheKey() AttachmentCacheKey {
|
||||||
|
return AttachmentCacheKey{
|
||||||
|
ChannelID: amd.ChannelID,
|
||||||
|
AttachmentID: amd.AttachmentID,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type StickerMediaData struct {
|
||||||
|
StickerID uint64
|
||||||
|
Format uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
func (smd *StickerMediaData) Write(to io.Writer) {
|
||||||
|
_ = binary.Write(to, binary.BigEndian, smd)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (smd *StickerMediaData) Read(from io.Reader) error {
|
||||||
|
return binary.Read(from, binary.BigEndian, smd)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (smd *StickerMediaData) Size() int {
|
||||||
|
return binary.Size(smd)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (smd *StickerMediaData) Wrap() *MediaID {
|
||||||
|
return &MediaID{
|
||||||
|
Version: MediaIDVersion,
|
||||||
|
TypeClass: MediaIDClassSticker,
|
||||||
|
Data: smd,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type EmojiMediaDataInner struct {
|
||||||
|
EmojiID uint64
|
||||||
|
Animated bool
|
||||||
|
}
|
||||||
|
|
||||||
|
type EmojiMediaData struct {
|
||||||
|
EmojiMediaDataInner
|
||||||
|
Name string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (emd *EmojiMediaData) Write(to io.Writer) {
|
||||||
|
_ = binary.Write(to, binary.BigEndian, &emd.EmojiMediaDataInner)
|
||||||
|
_, _ = to.Write([]byte(emd.Name))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (emd *EmojiMediaData) Read(from io.Reader) (err error) {
|
||||||
|
err = binary.Read(from, binary.BigEndian, &emd.EmojiMediaDataInner)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
name, err := io.ReadAll(from)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
emd.Name = string(name)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (emd *EmojiMediaData) Size() int {
|
||||||
|
return binary.Size(&emd.EmojiMediaDataInner) + len(emd.Name)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (emd *EmojiMediaData) Wrap() *MediaID {
|
||||||
|
return &MediaID{
|
||||||
|
Version: MediaIDVersion,
|
||||||
|
TypeClass: MediaIDClassEmoji,
|
||||||
|
Data: emd,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type UserAvatarMediaData struct {
|
||||||
|
UserID uint64
|
||||||
|
Animated bool
|
||||||
|
AvatarID [16]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
func (uamd *UserAvatarMediaData) Write(to io.Writer) {
|
||||||
|
_ = binary.Write(to, binary.BigEndian, uamd)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (uamd *UserAvatarMediaData) Read(from io.Reader) error {
|
||||||
|
return binary.Read(from, binary.BigEndian, uamd)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (uamd *UserAvatarMediaData) Size() int {
|
||||||
|
return binary.Size(uamd)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (uamd *UserAvatarMediaData) Wrap() *MediaID {
|
||||||
|
return &MediaID{
|
||||||
|
Version: MediaIDVersion,
|
||||||
|
TypeClass: MediaIDClassUserAvatar,
|
||||||
|
Data: uamd,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type GuildMemberAvatarMediaData struct {
|
||||||
|
GuildID uint64
|
||||||
|
UserID uint64
|
||||||
|
Animated bool
|
||||||
|
AvatarID [16]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
func (guamd *GuildMemberAvatarMediaData) Write(to io.Writer) {
|
||||||
|
_ = binary.Write(to, binary.BigEndian, guamd)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (guamd *GuildMemberAvatarMediaData) Read(from io.Reader) error {
|
||||||
|
return binary.Read(from, binary.BigEndian, guamd)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (guamd *GuildMemberAvatarMediaData) Size() int {
|
||||||
|
return binary.Size(guamd)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (guamd *GuildMemberAvatarMediaData) Wrap() *MediaID {
|
||||||
|
return &MediaID{
|
||||||
|
Version: MediaIDVersion,
|
||||||
|
TypeClass: MediaIDClassGuildMemberAvatar,
|
||||||
|
Data: guamd,
|
||||||
|
}
|
||||||
|
}
|
||||||
52
discord.go
Normal file
52
discord.go
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (user *User) channelIsBridgeable(channel *discordgo.Channel) bool {
|
||||||
|
switch channel.Type {
|
||||||
|
case discordgo.ChannelTypeGuildText, discordgo.ChannelTypeGuildNews:
|
||||||
|
// allowed
|
||||||
|
case discordgo.ChannelTypeDM, discordgo.ChannelTypeGroupDM:
|
||||||
|
// DMs are always bridgeable, no need for permission checks
|
||||||
|
return true
|
||||||
|
default:
|
||||||
|
// everything else is not allowed
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
log := user.log.With().Str("guild_id", channel.GuildID).Str("channel_id", channel.ID).Logger()
|
||||||
|
|
||||||
|
member, err := user.Session.State.Member(channel.GuildID, user.DiscordID)
|
||||||
|
if errors.Is(err, discordgo.ErrStateNotFound) {
|
||||||
|
log.Debug().Msg("Fetching own membership in guild to check roles")
|
||||||
|
member, err = user.Session.GuildMember(channel.GuildID, user.DiscordID)
|
||||||
|
if err != nil {
|
||||||
|
log.Warn().Err(err).Msg("Failed to get own membership in guild from server")
|
||||||
|
} else {
|
||||||
|
err = user.Session.State.MemberAdd(member)
|
||||||
|
if err != nil {
|
||||||
|
log.Warn().Err(err).Msg("Failed to add own membership in guild to cache")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if err != nil {
|
||||||
|
log.Warn().Err(err).Msg("Failed to get own membership in guild from cache")
|
||||||
|
}
|
||||||
|
err = user.Session.State.ChannelAdd(channel)
|
||||||
|
if err != nil {
|
||||||
|
log.Warn().Err(err).Msg("Failed to add channel to cache")
|
||||||
|
}
|
||||||
|
perms, err := user.Session.State.UserChannelPermissions(user.DiscordID, channel.ID)
|
||||||
|
if err != nil {
|
||||||
|
log.Warn().Err(err).Msg("Failed to get permissions in channel to determine if it's bridgeable")
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
log.Debug().
|
||||||
|
Int64("permissions", perms).
|
||||||
|
Bool("view_channel", perms&discordgo.PermissionViewChannel > 0).
|
||||||
|
Msg("Computed permissions in channel")
|
||||||
|
return perms&discordgo.PermissionViewChannel > 0
|
||||||
|
}
|
||||||
@@ -15,7 +15,7 @@ function fixperms {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if [[ ! -f /data/config.yaml ]]; then
|
if [[ ! -f /data/config.yaml ]]; then
|
||||||
/usr/bin/mautrix-discord -c /data/config.yaml -e
|
cp /opt/mautrix-discord/example-config.yaml /data/config.yaml
|
||||||
echo "Didn't find a config file."
|
echo "Didn't find a config file."
|
||||||
echo "Copied default config file to /data/config.yaml"
|
echo "Copied default config file to /data/config.yaml"
|
||||||
echo "Modify that config file to your liking."
|
echo "Modify that config file to your liking."
|
||||||
|
|||||||
381
example-config.yaml
Normal file
381
example-config.yaml
Normal file
@@ -0,0 +1,381 @@
|
|||||||
|
# Homeserver details.
|
||||||
|
homeserver:
|
||||||
|
# The address that this appservice can use to connect to the homeserver.
|
||||||
|
address: https://matrix.example.com
|
||||||
|
# The domain of the homeserver (also known as server_name, used for MXIDs, etc).
|
||||||
|
domain: example.com
|
||||||
|
|
||||||
|
# What software is the homeserver running?
|
||||||
|
# Standard Matrix homeservers like Synapse, Dendrite and Conduit should just use "standard" here.
|
||||||
|
software: standard
|
||||||
|
# The URL to push real-time bridge status to.
|
||||||
|
# If set, the bridge will make POST requests to this URL whenever a user's discord connection state changes.
|
||||||
|
# The bridge will use the appservice as_token to authorize requests.
|
||||||
|
status_endpoint: null
|
||||||
|
# Endpoint for reporting per-message status.
|
||||||
|
message_send_checkpoint_endpoint: null
|
||||||
|
# Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246?
|
||||||
|
async_media: false
|
||||||
|
|
||||||
|
# Should the bridge use a websocket for connecting to the homeserver?
|
||||||
|
# The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy,
|
||||||
|
# mautrix-asmux (deprecated), and hungryserv (proprietary).
|
||||||
|
websocket: false
|
||||||
|
# How often should the websocket be pinged? Pinging will be disabled if this is zero.
|
||||||
|
ping_interval_seconds: 0
|
||||||
|
|
||||||
|
# Application service host/registration related details.
|
||||||
|
# Changing these values requires regeneration of the registration.
|
||||||
|
appservice:
|
||||||
|
# The address that the homeserver can use to connect to this appservice.
|
||||||
|
address: http://localhost:29334
|
||||||
|
|
||||||
|
# The hostname and port where this appservice should listen.
|
||||||
|
hostname: 0.0.0.0
|
||||||
|
port: 29334
|
||||||
|
|
||||||
|
# Database config.
|
||||||
|
database:
|
||||||
|
# The database type. "sqlite3-fk-wal" and "postgres" are supported.
|
||||||
|
type: postgres
|
||||||
|
# The database URI.
|
||||||
|
# SQLite: A raw file path is supported, but `file:<path>?_txlock=immediate` is recommended.
|
||||||
|
# https://github.com/mattn/go-sqlite3#connection-string
|
||||||
|
# Postgres: Connection string. For example, postgres://user:password@host/database?sslmode=disable
|
||||||
|
# To connect via Unix socket, use something like postgres:///dbname?host=/var/run/postgresql
|
||||||
|
uri: postgres://user:password@host/database?sslmode=disable
|
||||||
|
# Maximum number of connections. Mostly relevant for Postgres.
|
||||||
|
max_open_conns: 20
|
||||||
|
max_idle_conns: 2
|
||||||
|
# Maximum connection idle time and lifetime before they're closed. Disabled if null.
|
||||||
|
# Parsed with https://pkg.go.dev/time#ParseDuration
|
||||||
|
max_conn_idle_time: null
|
||||||
|
max_conn_lifetime: null
|
||||||
|
|
||||||
|
# The unique ID of this appservice.
|
||||||
|
id: discord
|
||||||
|
# Appservice bot details.
|
||||||
|
bot:
|
||||||
|
# Username of the appservice bot.
|
||||||
|
username: discordbot
|
||||||
|
# Display name and avatar for bot. Set to "remove" to remove display name/avatar, leave empty
|
||||||
|
# to leave display name/avatar as-is.
|
||||||
|
displayname: Discord bridge bot
|
||||||
|
avatar: mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC
|
||||||
|
|
||||||
|
# Whether or not to receive ephemeral events via appservice transactions.
|
||||||
|
# Requires MSC2409 support (i.e. Synapse 1.22+).
|
||||||
|
ephemeral_events: true
|
||||||
|
|
||||||
|
# Should incoming events be handled asynchronously?
|
||||||
|
# This may be necessary for large public instances with lots of messages going through.
|
||||||
|
# However, messages will not be guaranteed to be bridged in the same order they were sent in.
|
||||||
|
async_transactions: false
|
||||||
|
|
||||||
|
# Authentication tokens for AS <-> HS communication. Autogenerated; do not modify.
|
||||||
|
as_token: "This value is generated when generating the registration"
|
||||||
|
hs_token: "This value is generated when generating the registration"
|
||||||
|
|
||||||
|
# Bridge config
|
||||||
|
bridge:
|
||||||
|
# Localpart template of MXIDs for Discord users.
|
||||||
|
# {{.}} is replaced with the internal ID of the Discord user.
|
||||||
|
username_template: discord_{{.}}
|
||||||
|
# Displayname template for Discord users. This is also used as the room name in DMs if private_chat_portal_meta is enabled.
|
||||||
|
# Available variables:
|
||||||
|
# .ID - Internal user ID
|
||||||
|
# .Username - Legacy display/username on Discord
|
||||||
|
# .GlobalName - New displayname on Discord
|
||||||
|
# .Discriminator - The 4 numbers after the name on Discord
|
||||||
|
# .Bot - Whether the user is a bot
|
||||||
|
# .System - Whether the user is an official system user
|
||||||
|
# .Webhook - Whether the user is a webhook and is not an application
|
||||||
|
# .Application - Whether the user is an application
|
||||||
|
displayname_template: '{{if .Webhook}}Webhook{{else}}{{or .GlobalName .Username}}{{if .Bot}} (bot){{end}}{{end}}'
|
||||||
|
# Displayname template for Discord channels (bridged as rooms, or spaces when type=4).
|
||||||
|
# Available variables:
|
||||||
|
# .Name - Channel name, or user displayname (pre-formatted with displayname_template) in DMs.
|
||||||
|
# .ParentName - Parent channel name (used for categories).
|
||||||
|
# .GuildName - Guild name.
|
||||||
|
# .NSFW - Whether the channel is marked as NSFW.
|
||||||
|
# .Type - Channel type (see values at https://github.com/bwmarrin/discordgo/blob/v0.25.0/structs.go#L251-L267)
|
||||||
|
channel_name_template: '{{if or (eq .Type 3) (eq .Type 4)}}{{.Name}}{{else}}#{{.Name}}{{end}}'
|
||||||
|
# Displayname template for Discord guilds (bridged as spaces).
|
||||||
|
# Available variables:
|
||||||
|
# .Name - Guild name
|
||||||
|
guild_name_template: '{{.Name}}'
|
||||||
|
# Whether to explicitly set the avatar and room name for private chat portal rooms.
|
||||||
|
# If set to `default`, this will be enabled in encrypted rooms and disabled in unencrypted rooms.
|
||||||
|
# If set to `always`, all DM rooms will have explicit names and avatars set.
|
||||||
|
# If set to `never`, DM rooms will never have names and avatars set.
|
||||||
|
private_chat_portal_meta: default
|
||||||
|
|
||||||
|
# Publicly accessible base URL that Discord can use to reach the bridge, used for avatars in relay mode.
|
||||||
|
# If not set, avatars will not be bridged. Only the /mautrix-discord/avatar/{server}/{id}/{hash} endpoint is used on this address.
|
||||||
|
# This should not have a trailing slash, the endpoint above will be appended to the provided address.
|
||||||
|
public_address: null
|
||||||
|
# A random key used to sign the avatar URLs. The bridge will only accept requests with a valid signature.
|
||||||
|
avatar_proxy_key: generate
|
||||||
|
|
||||||
|
portal_message_buffer: 128
|
||||||
|
|
||||||
|
# Number of private channel portals to create on bridge startup.
|
||||||
|
# Other portals will be created when receiving messages.
|
||||||
|
startup_private_channel_create_limit: 5
|
||||||
|
# Should the bridge send a read receipt from the bridge bot when a message has been sent to Discord?
|
||||||
|
delivery_receipts: false
|
||||||
|
# Whether the bridge should send the message status as a custom com.beeper.message_send_status event.
|
||||||
|
message_status_events: false
|
||||||
|
# Whether the bridge should send error notices via m.notice events when a message fails to bridge.
|
||||||
|
message_error_notices: true
|
||||||
|
# Should the bridge use space-restricted join rules instead of invite-only for guild rooms?
|
||||||
|
# This can avoid unnecessary invite events in guild rooms when members are synced in.
|
||||||
|
restricted_rooms: false
|
||||||
|
# Should the bridge automatically join the user to threads on Discord when the thread is opened on Matrix?
|
||||||
|
# This only works with clients that support thread read receipts (MSC3771 added in Matrix v1.4).
|
||||||
|
autojoin_thread_on_open: true
|
||||||
|
# Should inline fields in Discord embeds be bridged as HTML tables to Matrix?
|
||||||
|
# Tables aren't supported in all clients, but are the only way to emulate the Discord inline field UI.
|
||||||
|
embed_fields_as_tables: true
|
||||||
|
# Should guild channels be muted when the portal is created? This only meant for single-user instances,
|
||||||
|
# it won't mute it for all users if there are multiple Matrix users in the same Discord guild.
|
||||||
|
mute_channels_on_create: false
|
||||||
|
# Should the bridge update the m.direct account data event when double puppeting is enabled.
|
||||||
|
# Note that updating the m.direct event is not atomic (except with mautrix-asmux)
|
||||||
|
# and is therefore prone to race conditions.
|
||||||
|
sync_direct_chat_list: false
|
||||||
|
# Set this to true to tell the bridge to re-send m.bridge events to all rooms on the next run.
|
||||||
|
# This field will automatically be changed back to false after it, except if the config file is not writable.
|
||||||
|
resend_bridge_info: false
|
||||||
|
# Should incoming custom emoji reactions be bridged as mxc:// URIs?
|
||||||
|
# If set to false, custom emoji reactions will be bridged as the shortcode instead, and the image won't be available.
|
||||||
|
custom_emoji_reactions: true
|
||||||
|
# Should the bridge attempt to completely delete portal rooms when a channel is deleted on Discord?
|
||||||
|
# If true, the bridge will try to kick Matrix users from the room. Otherwise, the bridge only makes ghosts leave.
|
||||||
|
delete_portal_on_channel_delete: false
|
||||||
|
# Should the bridge delete all portal rooms when you leave a guild on Discord?
|
||||||
|
# This only applies if the guild has no other Matrix users on this bridge instance.
|
||||||
|
delete_guild_on_leave: true
|
||||||
|
# Whether or not created rooms should have federation enabled.
|
||||||
|
# If false, created portal rooms will never be federated.
|
||||||
|
federate_rooms: true
|
||||||
|
# Prefix messages from webhooks with the profile info? This can be used along with a custom displayname_template
|
||||||
|
# to better handle webhooks that change their name all the time (like ones used by bridges).
|
||||||
|
#
|
||||||
|
# This will use the fallback mode in MSC4144, which means clients that support MSC4144 will not show the prefix
|
||||||
|
# (and will instead show the name and avatar as the message sender).
|
||||||
|
prefix_webhook_messages: true
|
||||||
|
# Bridge webhook avatars?
|
||||||
|
enable_webhook_avatars: false
|
||||||
|
# Should the bridge upload media to the Discord CDN directly before sending the message when using a user token,
|
||||||
|
# like the official client does? The other option is sending the media in the message send request as a form part
|
||||||
|
# (which is always used by bots and webhooks).
|
||||||
|
use_discord_cdn_upload: true
|
||||||
|
# Proxy for Discord connections
|
||||||
|
proxy:
|
||||||
|
# Should mxc uris copied from Discord be cached?
|
||||||
|
# This can be `never` to never cache, `unencrypted` to only cache unencrypted mxc uris, or `always` to cache everything.
|
||||||
|
# If you have a media repo that generates non-unique mxc uris, you should set this to never.
|
||||||
|
cache_media: unencrypted
|
||||||
|
# Settings for converting Discord media to custom mxc:// URIs instead of reuploading.
|
||||||
|
# More details can be found at https://docs.mau.fi/bridges/go/discord/direct-media.html
|
||||||
|
direct_media:
|
||||||
|
# Should custom mxc:// URIs be used instead of reuploading media?
|
||||||
|
enabled: false
|
||||||
|
# The server name to use for the custom mxc:// URIs.
|
||||||
|
# This server name will effectively be a real Matrix server, it just won't implement anything other than media.
|
||||||
|
# You must either set up .well-known delegation from this domain to the bridge, or proxy the domain directly to the bridge.
|
||||||
|
server_name: discord-media.example.com
|
||||||
|
# Optionally a custom .well-known response. This defaults to `server_name:443`
|
||||||
|
well_known_response:
|
||||||
|
# The bridge supports MSC3860 media download redirects and will use them if the requester supports it.
|
||||||
|
# Optionally, you can force redirects and not allow proxying at all by setting this to false.
|
||||||
|
allow_proxy: true
|
||||||
|
# Matrix server signing key to make the federation tester pass, same format as synapse's .signing.key file.
|
||||||
|
# This key is also used to sign the mxc:// URIs to ensure only the bridge can generate them.
|
||||||
|
server_key: generate
|
||||||
|
# Settings for converting animated stickers.
|
||||||
|
animated_sticker:
|
||||||
|
# Format to which animated stickers should be converted.
|
||||||
|
# disable - No conversion, send as-is (lottie JSON)
|
||||||
|
# png - converts to non-animated png (fastest)
|
||||||
|
# gif - converts to animated gif
|
||||||
|
# webm - converts to webm video, requires ffmpeg executable with vp9 codec and webm container support
|
||||||
|
# webp - converts to animated webp, requires ffmpeg executable with webp codec/container support
|
||||||
|
target: webp
|
||||||
|
# Arguments for converter. All converters take width and height.
|
||||||
|
args:
|
||||||
|
width: 320
|
||||||
|
height: 320
|
||||||
|
fps: 25 # only for webm, webp and gif (2, 5, 10, 20 or 25 recommended)
|
||||||
|
# Servers to always allow double puppeting from
|
||||||
|
double_puppet_server_map:
|
||||||
|
example.com: https://example.com
|
||||||
|
# Allow using double puppeting from any server with a valid client .well-known file.
|
||||||
|
double_puppet_allow_discovery: false
|
||||||
|
# Shared secrets for https://github.com/devture/matrix-synapse-shared-secret-auth
|
||||||
|
#
|
||||||
|
# If set, double puppeting will be enabled automatically for local users
|
||||||
|
# instead of users having to find an access token and run `login-matrix`
|
||||||
|
# manually.
|
||||||
|
login_shared_secret_map:
|
||||||
|
example.com: foobar
|
||||||
|
|
||||||
|
# The prefix for commands. Only required in non-management rooms.
|
||||||
|
command_prefix: '!discord'
|
||||||
|
# Messages sent upon joining a management room.
|
||||||
|
# Markdown is supported. The defaults are listed below.
|
||||||
|
management_room_text:
|
||||||
|
# Sent when joining a room.
|
||||||
|
welcome: "Hello, I'm a Discord bridge bot."
|
||||||
|
# Sent when joining a management room and the user is already logged in.
|
||||||
|
welcome_connected: "Use `help` for help."
|
||||||
|
# Sent when joining a management room and the user is not logged in.
|
||||||
|
welcome_unconnected: "Use `help` for help or `login` to log in."
|
||||||
|
# Optional extra text sent when joining a management room.
|
||||||
|
additional_help: ""
|
||||||
|
|
||||||
|
# Settings for backfilling messages.
|
||||||
|
backfill:
|
||||||
|
# Limits for forward backfilling.
|
||||||
|
forward_limits:
|
||||||
|
# Initial backfill (when creating portal). 0 means backfill is disabled.
|
||||||
|
# A special unlimited value is not supported, you must set a limit. Initial backfill will
|
||||||
|
# fetch all messages first before backfilling anything, so high limits can take a lot of time.
|
||||||
|
initial:
|
||||||
|
dm: 0
|
||||||
|
channel: 0
|
||||||
|
thread: 0
|
||||||
|
# Missed message backfill (on startup).
|
||||||
|
# 0 means backfill is disabled, -1 means fetch all messages since last bridged message.
|
||||||
|
# When using unlimited backfill (-1), messages are backfilled as they are fetched.
|
||||||
|
# With limits, all messages up to the limit are fetched first and backfilled afterwards.
|
||||||
|
missed:
|
||||||
|
dm: 0
|
||||||
|
channel: 0
|
||||||
|
thread: 0
|
||||||
|
# Maximum members in a guild to enable backfilling. Set to -1 to disable limit.
|
||||||
|
# This can be used as a rough heuristic to disable backfilling in channels that are too active.
|
||||||
|
# Currently only applies to missed message backfill.
|
||||||
|
max_guild_members: -1
|
||||||
|
|
||||||
|
# End-to-bridge encryption support options.
|
||||||
|
#
|
||||||
|
# See https://docs.mau.fi/bridges/general/end-to-bridge-encryption.html for more info.
|
||||||
|
encryption:
|
||||||
|
# Allow encryption, work in group chat rooms with e2ee enabled
|
||||||
|
allow: false
|
||||||
|
# Default to encryption, force-enable encryption in all portals the bridge creates
|
||||||
|
# This will cause the bridge bot to be in private chats for the encryption to work properly.
|
||||||
|
default: false
|
||||||
|
# Whether to use MSC2409/MSC3202 instead of /sync long polling for receiving encryption-related data.
|
||||||
|
# Changing this option requires updating the appservice registration file.
|
||||||
|
appservice: false
|
||||||
|
# Whether to use MSC4190 instead of appservice login to create the bridge bot device.
|
||||||
|
# Requires the homeserver to support MSC4190 and the device masquerading parts of MSC3202.
|
||||||
|
# Only relevant when using end-to-bridge encryption, required when using encryption with next-gen auth (MSC3861).
|
||||||
|
# Changing this option requires updating the appservice registration file.
|
||||||
|
msc4190: false
|
||||||
|
# Require encryption, drop any unencrypted messages.
|
||||||
|
require: false
|
||||||
|
# Enable key sharing? If enabled, key requests for rooms where users are in will be fulfilled.
|
||||||
|
# You must use a client that supports requesting keys from other users to use this feature.
|
||||||
|
allow_key_sharing: false
|
||||||
|
# Should users mentions be in the event wire content to enable the server to send push notifications?
|
||||||
|
plaintext_mentions: false
|
||||||
|
# Options for deleting megolm sessions from the bridge.
|
||||||
|
delete_keys:
|
||||||
|
# Beeper-specific: delete outbound sessions when hungryserv confirms
|
||||||
|
# that the user has uploaded the key to key backup.
|
||||||
|
delete_outbound_on_ack: false
|
||||||
|
# Don't store outbound sessions in the inbound table.
|
||||||
|
dont_store_outbound: false
|
||||||
|
# Ratchet megolm sessions forward after decrypting messages.
|
||||||
|
ratchet_on_decrypt: false
|
||||||
|
# Delete fully used keys (index >= max_messages) after decrypting messages.
|
||||||
|
delete_fully_used_on_decrypt: false
|
||||||
|
# Delete previous megolm sessions from same device when receiving a new one.
|
||||||
|
delete_prev_on_new_session: false
|
||||||
|
# Delete megolm sessions received from a device when the device is deleted.
|
||||||
|
delete_on_device_delete: false
|
||||||
|
# Periodically delete megolm sessions when 2x max_age has passed since receiving the session.
|
||||||
|
periodically_delete_expired: false
|
||||||
|
# Delete inbound megolm sessions that don't have the received_at field used for
|
||||||
|
# automatic ratcheting and expired session deletion. This is meant as a migration
|
||||||
|
# to delete old keys prior to the bridge update.
|
||||||
|
delete_outdated_inbound: false
|
||||||
|
# What level of device verification should be required from users?
|
||||||
|
#
|
||||||
|
# Valid levels:
|
||||||
|
# unverified - Send keys to all device in the room.
|
||||||
|
# cross-signed-untrusted - Require valid cross-signing, but trust all cross-signing keys.
|
||||||
|
# cross-signed-tofu - Require valid cross-signing, trust cross-signing keys on first use (and reject changes).
|
||||||
|
# cross-signed-verified - Require valid cross-signing, plus a valid user signature from the bridge bot.
|
||||||
|
# Note that creating user signatures from the bridge bot is not currently possible.
|
||||||
|
# verified - Require manual per-device verification
|
||||||
|
# (currently only possible by modifying the `trust` column in the `crypto_device` database table).
|
||||||
|
verification_levels:
|
||||||
|
# Minimum level for which the bridge should send keys to when bridging messages from WhatsApp to Matrix.
|
||||||
|
receive: unverified
|
||||||
|
# Minimum level that the bridge should accept for incoming Matrix messages.
|
||||||
|
send: unverified
|
||||||
|
# Minimum level that the bridge should require for accepting key requests.
|
||||||
|
share: cross-signed-tofu
|
||||||
|
# Options for Megolm room key rotation. These options allow you to
|
||||||
|
# configure the m.room.encryption event content. See:
|
||||||
|
# https://spec.matrix.org/v1.3/client-server-api/#mroomencryption for
|
||||||
|
# more information about that event.
|
||||||
|
rotation:
|
||||||
|
# Enable custom Megolm room key rotation settings. Note that these
|
||||||
|
# settings will only apply to rooms created after this option is
|
||||||
|
# set.
|
||||||
|
enable_custom: false
|
||||||
|
# The maximum number of milliseconds a session should be used
|
||||||
|
# before changing it. The Matrix spec recommends 604800000 (a week)
|
||||||
|
# as the default.
|
||||||
|
milliseconds: 604800000
|
||||||
|
# The maximum number of messages that should be sent with a given a
|
||||||
|
# session before changing it. The Matrix spec recommends 100 as the
|
||||||
|
# default.
|
||||||
|
messages: 100
|
||||||
|
|
||||||
|
# Disable rotating keys when a user's devices change?
|
||||||
|
# You should not enable this option unless you understand all the implications.
|
||||||
|
disable_device_change_key_rotation: false
|
||||||
|
|
||||||
|
# Settings for provisioning API
|
||||||
|
provisioning:
|
||||||
|
# Prefix for the provisioning API paths.
|
||||||
|
prefix: /_matrix/provision
|
||||||
|
# Shared secret for authentication. If set to "generate", a random secret will be generated,
|
||||||
|
# or if set to "disable", the provisioning API will be disabled.
|
||||||
|
shared_secret: generate
|
||||||
|
# Enable debug API at /debug with provisioning authentication.
|
||||||
|
debug_endpoints: false
|
||||||
|
|
||||||
|
# Permissions for using the bridge.
|
||||||
|
# Permitted values:
|
||||||
|
# relay - Talk through the relaybot (if enabled), no access otherwise
|
||||||
|
# user - Access to use the bridge to chat with a Discord account.
|
||||||
|
# admin - User level and some additional administration tools
|
||||||
|
# Permitted keys:
|
||||||
|
# * - All Matrix users
|
||||||
|
# domain - All users on that homeserver
|
||||||
|
# mxid - Specific user
|
||||||
|
permissions:
|
||||||
|
"*": relay
|
||||||
|
"example.com": user
|
||||||
|
"@admin:example.com": admin
|
||||||
|
|
||||||
|
# Logging config. See https://github.com/tulir/zeroconfig for details.
|
||||||
|
logging:
|
||||||
|
min_level: debug
|
||||||
|
writers:
|
||||||
|
- type: stdout
|
||||||
|
format: pretty-colored
|
||||||
|
- type: file
|
||||||
|
format: json
|
||||||
|
filename: ./logs/mautrix-discord.log
|
||||||
|
max_size: 100
|
||||||
|
max_backups: 10
|
||||||
|
compress: true
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
||||||
// Copyright (C) 2026 Tulir Asokan
|
// Copyright (C) 2023 Tulir Asokan
|
||||||
//
|
//
|
||||||
// This program is free software: you can redistribute it and/or modify
|
// 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
|
// it under the terms of the GNU Affero General Public License as published by
|
||||||
@@ -14,21 +14,24 @@
|
|||||||
// You should have received a copy of the GNU Affero General Public License
|
// 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/>.
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package msgconv
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"regexp"
|
"regexp"
|
||||||
"slices"
|
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
"github.com/yuin/goldmark"
|
"github.com/yuin/goldmark"
|
||||||
"github.com/yuin/goldmark/extension"
|
"github.com/yuin/goldmark/extension"
|
||||||
"github.com/yuin/goldmark/parser"
|
"github.com/yuin/goldmark/parser"
|
||||||
"github.com/yuin/goldmark/util"
|
"github.com/yuin/goldmark/util"
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
"go.mau.fi/util/variationselector"
|
||||||
|
"golang.org/x/exp/slices"
|
||||||
|
"maunium.net/go/mautrix/event"
|
||||||
"maunium.net/go/mautrix/format"
|
"maunium.net/go/mautrix/format"
|
||||||
"maunium.net/go/mautrix/format/mdext"
|
"maunium.net/go/mautrix/format/mdext"
|
||||||
|
"maunium.net/go/mautrix/id"
|
||||||
)
|
)
|
||||||
|
|
||||||
// escapeFixer is a hacky partial fix for the difference in escaping markdown, used with escapeReplacement
|
// escapeFixer is a hacky partial fix for the difference in escaping markdown, used with escapeReplacement
|
||||||
@@ -71,16 +74,7 @@ var discordRendererWithInlineLinks = goldmark.New(
|
|||||||
fixIndentedParagraphs, format.HTMLOptions, discordExtensions,
|
fixIndentedParagraphs, format.HTMLOptions, discordExtensions,
|
||||||
)
|
)
|
||||||
|
|
||||||
// renderDiscordMarkdownOnlyHTML converts Discord-flavored Markdown text to HTML.
|
func (portal *Portal) renderDiscordMarkdownOnlyHTMLNoUnwrap(text string, allowInlineLinks bool) string {
|
||||||
//
|
|
||||||
// After conversion, if the text is surrounded by a single outermost paragraph
|
|
||||||
// tag, it is unwrapped.
|
|
||||||
func (mc *MessageConverter) renderDiscordMarkdownOnlyHTML(portal *bridgev2.Portal, text string, allowInlineLinks bool) string {
|
|
||||||
return format.UnwrapSingleParagraph(mc.renderDiscordMarkdownOnlyHTMLNoUnwrap(portal, text, allowInlineLinks))
|
|
||||||
}
|
|
||||||
|
|
||||||
// renderDiscordMarkdownOnlyHTMLNoUnwrap converts Discord-flavored Markdown text to HTML.
|
|
||||||
func (mc *MessageConverter) renderDiscordMarkdownOnlyHTMLNoUnwrap(portal *bridgev2.Portal, text string, allowInlineLinks bool) string {
|
|
||||||
text = escapeFixer.ReplaceAllStringFunc(text, escapeReplacement)
|
text = escapeFixer.ReplaceAllStringFunc(text, escapeReplacement)
|
||||||
|
|
||||||
var buf strings.Builder
|
var buf strings.Builder
|
||||||
@@ -97,11 +91,84 @@ func (mc *MessageConverter) renderDiscordMarkdownOnlyHTMLNoUnwrap(portal *bridge
|
|||||||
return buf.String()
|
return buf.String()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) renderDiscordMarkdownOnlyHTML(text string, allowInlineLinks bool) string {
|
||||||
|
return format.UnwrapSingleParagraph(portal.renderDiscordMarkdownOnlyHTMLNoUnwrap(text, allowInlineLinks))
|
||||||
|
}
|
||||||
|
|
||||||
const formatterContextPortalKey = "fi.mau.discord.portal"
|
const formatterContextPortalKey = "fi.mau.discord.portal"
|
||||||
const formatterContextAllowedMentionsKey = "fi.mau.discord.allowed_mentions"
|
const formatterContextAllowedMentionsKey = "fi.mau.discord.allowed_mentions"
|
||||||
const formatterContextInputAllowedMentionsKey = "fi.mau.discord.input_allowed_mentions"
|
const formatterContextInputAllowedMentionsKey = "fi.mau.discord.input_allowed_mentions"
|
||||||
const formatterContextInputAllowedLinkPreviewsKey = "fi.mau.discord.input_allowed_link_previews"
|
const formatterContextInputAllowedLinkPreviewsKey = "fi.mau.discord.input_allowed_link_previews"
|
||||||
|
|
||||||
|
func appendIfNotContains(arr []string, newItem string) []string {
|
||||||
|
for _, item := range arr {
|
||||||
|
if item == newItem {
|
||||||
|
return arr
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return append(arr, newItem)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) pillConverter(displayname, mxid, eventID string, ctx format.Context) string {
|
||||||
|
if len(mxid) == 0 {
|
||||||
|
return displayname
|
||||||
|
}
|
||||||
|
if mxid[0] == '#' {
|
||||||
|
alias, err := br.Bot.ResolveAlias(id.RoomAlias(mxid))
|
||||||
|
if err != nil {
|
||||||
|
return displayname
|
||||||
|
}
|
||||||
|
mxid = alias.RoomID.String()
|
||||||
|
}
|
||||||
|
if mxid[0] == '!' {
|
||||||
|
portal := br.GetPortalByMXID(id.RoomID(mxid))
|
||||||
|
if portal != nil {
|
||||||
|
if eventID == "" {
|
||||||
|
//currentPortal := ctx[formatterContextPortalKey].(*Portal)
|
||||||
|
return fmt.Sprintf("<#%s>", portal.Key.ChannelID)
|
||||||
|
//if currentPortal.GuildID == portal.GuildID {
|
||||||
|
//} else if portal.GuildID != "" {
|
||||||
|
// return fmt.Sprintf("<#%s:%s:%s>", portal.Key.ChannelID, portal.GuildID, portal.Name)
|
||||||
|
//} else {
|
||||||
|
// // TODO is mentioning private channels possible at all?
|
||||||
|
//}
|
||||||
|
} else if msg := br.DB.Message.GetByMXID(portal.Key, id.EventID(eventID)); msg != nil {
|
||||||
|
guildID := portal.GuildID
|
||||||
|
if guildID == "" {
|
||||||
|
guildID = "@me"
|
||||||
|
}
|
||||||
|
return fmt.Sprintf("https://discord.com/channels/%s/%s/%s", guildID, msg.DiscordProtoChannelID(), msg.DiscordID)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if mxid[0] == '@' {
|
||||||
|
allowedMentions, _ := ctx.ReturnData[formatterContextInputAllowedMentionsKey].([]id.UserID)
|
||||||
|
if allowedMentions != nil && !slices.Contains(allowedMentions, id.UserID(mxid)) {
|
||||||
|
return displayname
|
||||||
|
}
|
||||||
|
mentions := ctx.ReturnData[formatterContextAllowedMentionsKey].(*discordgo.MessageAllowedMentions)
|
||||||
|
parsedID, ok := br.ParsePuppetMXID(id.UserID(mxid))
|
||||||
|
if ok {
|
||||||
|
mentions.Users = appendIfNotContains(mentions.Users, parsedID)
|
||||||
|
return fmt.Sprintf("<@%s>", parsedID)
|
||||||
|
}
|
||||||
|
mentionedUser := br.GetUserByMXID(id.UserID(mxid))
|
||||||
|
if mentionedUser != nil && mentionedUser.DiscordID != "" {
|
||||||
|
mentions.Users = appendIfNotContains(mentions.Users, mentionedUser.DiscordID)
|
||||||
|
return fmt.Sprintf("<@%s>", mentionedUser.DiscordID)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return displayname
|
||||||
|
}
|
||||||
|
|
||||||
|
const discordLinkPattern = `https?://[^<\p{Zs}\x{feff}]*[^"'),.:;\]\p{Zs}\x{feff}]`
|
||||||
|
|
||||||
|
// Discord links start with http:// or https://, contain at least two characters afterwards,
|
||||||
|
// don't contain < or whitespace anywhere, and don't end with "'),.:;]
|
||||||
|
//
|
||||||
|
// Zero-width whitespace is mostly in the Format category and is allowed, except \uFEFF isn't for some reason
|
||||||
|
var discordLinkRegex = regexp.MustCompile(discordLinkPattern)
|
||||||
|
var discordLinkRegexFull = regexp.MustCompile("^" + discordLinkPattern + "$")
|
||||||
|
|
||||||
var discordMarkdownEscaper = strings.NewReplacer(
|
var discordMarkdownEscaper = strings.NewReplacer(
|
||||||
`\`, `\\`,
|
`\`, `\\`,
|
||||||
`_`, `\_`,
|
`_`, `\_`,
|
||||||
@@ -171,3 +238,23 @@ var matrixHTMLParser = &format.HTMLParser{
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) parseMatrixHTML(content *event.MessageEventContent, allowedLinkPreviews []string) (string, *discordgo.MessageAllowedMentions) {
|
||||||
|
allowedMentions := &discordgo.MessageAllowedMentions{
|
||||||
|
Parse: []discordgo.AllowedMentionType{},
|
||||||
|
Users: []string{},
|
||||||
|
RepliedUser: true,
|
||||||
|
}
|
||||||
|
if content.Format == event.FormatHTML && len(content.FormattedBody) > 0 {
|
||||||
|
ctx := format.NewContext()
|
||||||
|
ctx.ReturnData[formatterContextInputAllowedLinkPreviewsKey] = allowedLinkPreviews
|
||||||
|
ctx.ReturnData[formatterContextPortalKey] = portal
|
||||||
|
ctx.ReturnData[formatterContextAllowedMentionsKey] = allowedMentions
|
||||||
|
if content.Mentions != nil {
|
||||||
|
ctx.ReturnData[formatterContextInputAllowedMentionsKey] = content.Mentions.UserIDs
|
||||||
|
}
|
||||||
|
return variationselector.FullyQualify(matrixHTMLParser.Parse(content.FormattedBody, ctx)), allowedMentions
|
||||||
|
} else {
|
||||||
|
return variationselector.FullyQualify(escapeDiscordMarkdown(content.Body)), allowedMentions
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
||||||
// Copyright (C) 2026 Tulir Asokan
|
// Copyright (C) 2023 Tulir Asokan
|
||||||
//
|
//
|
||||||
// This program is free software: you can redistribute it and/or modify
|
// 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
|
// it under the terms of the GNU Affero General Public License as published by
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
// You should have received a copy of the GNU Affero General Public License
|
// 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/>.
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package msgconv
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
||||||
// Copyright (C) 2026 Tulir Asokan
|
// Copyright (C) 2022 Tulir Asokan
|
||||||
//
|
//
|
||||||
// This program is free software: you can redistribute it and/or modify
|
// 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
|
// it under the terms of the GNU Affero General Public License as published by
|
||||||
@@ -14,10 +14,9 @@
|
|||||||
// You should have received a copy of the GNU Affero General Public License
|
// 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/>.
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package msgconv
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"math"
|
"math"
|
||||||
"regexp"
|
"regexp"
|
||||||
@@ -31,15 +30,14 @@ import (
|
|||||||
"github.com/yuin/goldmark/renderer"
|
"github.com/yuin/goldmark/renderer"
|
||||||
"github.com/yuin/goldmark/text"
|
"github.com/yuin/goldmark/text"
|
||||||
"github.com/yuin/goldmark/util"
|
"github.com/yuin/goldmark/util"
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
|
||||||
"maunium.net/go/mautrix/id"
|
"maunium.net/go/mautrix/id"
|
||||||
|
|
||||||
"go.mau.fi/mautrix-discord/pkg/discordid"
|
"go.mau.fi/mautrix-discord/database"
|
||||||
)
|
)
|
||||||
|
|
||||||
type astDiscordTag struct {
|
type astDiscordTag struct {
|
||||||
ast.BaseInline
|
ast.BaseInline
|
||||||
portal *bridgev2.Portal
|
portal *Portal
|
||||||
id int64
|
id int64
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -149,7 +147,7 @@ func (s *discordTagParser) Trigger() []byte {
|
|||||||
var parserContextPortal = parser.NewContextKey()
|
var parserContextPortal = parser.NewContextKey()
|
||||||
|
|
||||||
func (s *discordTagParser) Parse(parent ast.Node, block text.Reader, pc parser.Context) ast.Node {
|
func (s *discordTagParser) Parse(parent ast.Node, block text.Reader, pc parser.Context) ast.Node {
|
||||||
portal := pc.Get(parserContextPortal).(*bridgev2.Portal)
|
portal := pc.Get(parserContextPortal).(*Portal)
|
||||||
//before := block.PrecendingCharacter()
|
//before := block.PrecendingCharacter()
|
||||||
line, _ := block.PeekLine()
|
line, _ := block.PeekLine()
|
||||||
match := discordTagRegex.FindSubmatch(line)
|
match := discordTagRegex.FindSubmatch(line)
|
||||||
@@ -263,50 +261,51 @@ func (r *discordTagHTMLRenderer) renderDiscordMention(w util.BufWriter, source [
|
|||||||
if !entering {
|
if !entering {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx := context.TODO()
|
|
||||||
|
|
||||||
switch node := n.(type) {
|
switch node := n.(type) {
|
||||||
case *astDiscordUserMention:
|
case *astDiscordUserMention:
|
||||||
var mxid id.UserID
|
var mxid id.UserID
|
||||||
var name string
|
var name string
|
||||||
if ghost, _ := node.portal.Bridge.GetGhostByID(ctx, discordid.MakeUserID(strconv.FormatInt(node.id, 10))); ghost != nil {
|
if puppet := node.portal.bridge.GetPuppetByID(strconv.FormatInt(node.id, 10)); puppet != nil {
|
||||||
mxid = ghost.Intent.GetMXID()
|
mxid = puppet.MXID
|
||||||
name = ghost.Name
|
name = puppet.Name
|
||||||
|
}
|
||||||
|
if user := node.portal.bridge.GetUserByID(strconv.FormatInt(node.id, 10)); user != nil {
|
||||||
|
mxid = user.MXID
|
||||||
|
if name == "" {
|
||||||
|
name = user.MXID.Localpart()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
_, _ = fmt.Fprintf(w, `<a href="%s">%s</a>`, mxid.URI().MatrixToURL(), name)
|
_, _ = fmt.Fprintf(w, `<a href="%s">%s</a>`, mxid.URI().MatrixToURL(), name)
|
||||||
return
|
return
|
||||||
case *astDiscordRoleMention:
|
case *astDiscordRoleMention:
|
||||||
// FIXME(skip): Implement.
|
role := node.portal.bridge.DB.Role.GetByID(node.portal.GuildID, strconv.FormatInt(node.id, 10))
|
||||||
// role := node.portal.Bridge.DB.Role.GetByID(node.portal.GuildID, strconv.FormatInt(node.id, 10))
|
if role != nil {
|
||||||
// if role != nil {
|
_, _ = fmt.Fprintf(w, `<font color="#%06x"><strong>@%s</strong></font>`, role.Color, role.Name)
|
||||||
_, _ = fmt.Fprintf(w, `<strong>@unknown-role</strong>`)
|
return
|
||||||
// _, _ = fmt.Fprintf(w, `<font color="#%06x"><strong>@%s</strong></font>`, role.Color, role.Name)
|
}
|
||||||
return
|
|
||||||
// }
|
|
||||||
case *astDiscordChannelMention:
|
case *astDiscordChannelMention:
|
||||||
if portal, _ := node.portal.Bridge.GetPortalByKey(ctx, discordid.MakePortalKeyWithID(
|
portal := node.portal.bridge.GetExistingPortalByID(database.PortalKey{
|
||||||
strconv.FormatInt(node.id, 10),
|
ChannelID: strconv.FormatInt(node.id, 10),
|
||||||
)); portal != nil {
|
Receiver: "",
|
||||||
|
})
|
||||||
|
if portal != nil {
|
||||||
if portal.MXID != "" {
|
if portal.MXID != "" {
|
||||||
_, _ = fmt.Fprintf(w, `<a href="%s">%s</a>`, portal.MXID.URI(portal.Bridge.Matrix.ServerName()).MatrixToURL(), portal.Name)
|
_, _ = fmt.Fprintf(w, `<a href="%s">%s</a>`, portal.MXID.URI(portal.bridge.AS.HomeserverDomain).MatrixToURL(), portal.Name)
|
||||||
} else {
|
} else {
|
||||||
_, _ = w.WriteString(portal.Name)
|
_, _ = w.WriteString(portal.Name)
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
case *astDiscordCustomEmoji:
|
case *astDiscordCustomEmoji:
|
||||||
// FIXME(skip): Implement.
|
reactionMXC := node.portal.getEmojiMXCByDiscordID(strconv.FormatInt(node.id, 10), node.name, node.animated)
|
||||||
_, _ = fmt.Fprintf(w, `(emoji)`)
|
if !reactionMXC.IsEmpty() {
|
||||||
// reactionMXC := node.portal.Bridge.getEmojiMXCByDiscordID(strconv.FormatInt(node.id, 10), node.name, node.animated)
|
attrs := "data-mx-emoticon"
|
||||||
// if !reactionMXC.IsEmpty() {
|
if node.animated {
|
||||||
// attrs := "data-mx-emoticon"
|
attrs += " data-mau-animated-emoji"
|
||||||
// if node.animated {
|
}
|
||||||
// attrs += " data-mau-animated-emoji"
|
_, _ = fmt.Fprintf(w, `<img %[3]s src="%[1]s" alt="%[2]s" title="%[2]s" height="32"/>`, reactionMXC.String(), node.name, attrs)
|
||||||
// }
|
return
|
||||||
// _, _ = fmt.Fprintf(w, `<img %[3]s src="%[1]s" alt="%[2]s" title="%[2]s" height="32"/>`, reactionMXC.String(), node.name, attrs)
|
}
|
||||||
// return
|
|
||||||
// }
|
|
||||||
case *astDiscordTimestamp:
|
case *astDiscordTimestamp:
|
||||||
ts := time.Unix(node.timestamp, 0).UTC()
|
ts := time.Unix(node.timestamp, 0).UTC()
|
||||||
var formatted string
|
var formatted string
|
||||||
57
formatter_test.go
Normal file
57
formatter_test.go
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
// 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 (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestEscapeDiscordMarkdown(t *testing.T) {
|
||||||
|
type escapeTest struct {
|
||||||
|
name string
|
||||||
|
input string
|
||||||
|
expected string
|
||||||
|
}
|
||||||
|
|
||||||
|
tests := []escapeTest{
|
||||||
|
{"Simple text", "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "Lorem ipsum dolor sit amet, consectetuer adipiscing elit."},
|
||||||
|
{"Backslash", `foo\bar`, `foo\\bar`},
|
||||||
|
{"Underscore", `foo_bar`, `foo\_bar`},
|
||||||
|
{"Asterisk", `foo*bar`, `foo\*bar`},
|
||||||
|
{"Tilde", `foo~bar`, `foo\~bar`},
|
||||||
|
{"Backtick", "foo`bar", "foo\\`bar"},
|
||||||
|
{"Forward tick", `foo´bar`, `foo´bar`},
|
||||||
|
{"Pipe", `foo|bar`, `foo\|bar`},
|
||||||
|
{"Less than", `foo<bar`, `foo\<bar`},
|
||||||
|
{"Greater than", `foo>bar`, `foo>bar`},
|
||||||
|
{"Multiple things", `\_*~|`, `\\\_\*\~\|`},
|
||||||
|
{"URL", `https://example.com/foo_bar`, `https://example.com/foo_bar`},
|
||||||
|
{"Multiple URLs", `hello_world https://example.com/foo_bar *testing* https://a_b_c/*def*`, `hello\_world https://example.com/foo_bar \*testing\* https://a_b_c/*def*`},
|
||||||
|
{"URL ends with no-break zero-width space", "https://example.com\ufefffoo_bar", "https://example.com\ufefffoo\\_bar"},
|
||||||
|
{"URL ends with less than", `https://example.com<foo_bar`, `https://example.com<foo\_bar`},
|
||||||
|
{"Short URL", `https://_`, `https://_`},
|
||||||
|
{"Insecure URL", `http://example.com/foo_bar`, `http://example.com/foo_bar`},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, test := range tests {
|
||||||
|
t.Run(test.name, func(t *testing.T) {
|
||||||
|
assert.Equal(t, test.expected, escapeDiscordMarkdown(test.input))
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
48
go.mod
48
go.mod
@@ -1,44 +1,46 @@
|
|||||||
module go.mau.fi/mautrix-discord
|
module go.mau.fi/mautrix-discord
|
||||||
|
|
||||||
go 1.24.0
|
go 1.25.0
|
||||||
|
|
||||||
toolchain go1.25.4
|
toolchain go1.26.0
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/bwmarrin/discordgo v0.27.0
|
github.com/bwmarrin/discordgo v0.27.0
|
||||||
|
github.com/gabriel-vasile/mimetype v1.4.9
|
||||||
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
|
||||||
|
github.com/gorilla/mux v1.8.0
|
||||||
github.com/gorilla/websocket v1.5.0
|
github.com/gorilla/websocket v1.5.0
|
||||||
|
github.com/lib/pq v1.10.9
|
||||||
|
github.com/mattn/go-sqlite3 v1.14.28
|
||||||
github.com/rs/zerolog v1.34.0
|
github.com/rs/zerolog v1.34.0
|
||||||
github.com/yuin/goldmark v1.7.16
|
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
|
||||||
go.mau.fi/util v0.9.5
|
github.com/stretchr/testify v1.10.0
|
||||||
maunium.net/go/mautrix v0.26.2
|
github.com/yuin/goldmark v1.7.12
|
||||||
|
go.mau.fi/util v0.2.2-0.20231228160422-22fdd4bbddeb
|
||||||
|
golang.org/x/exp v0.0.0-20250711185948-6ae5c78190dc
|
||||||
|
golang.org/x/sync v0.16.0
|
||||||
|
maunium.net/go/maulogger/v2 v2.4.1
|
||||||
|
maunium.net/go/mautrix v0.16.3-0.20250810202616-6bc5698125c2
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
filippo.io/edwards25519 v1.1.0 // indirect
|
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
|
||||||
github.com/coder/websocket v1.8.14 // indirect
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
||||||
github.com/coreos/go-systemd/v22 v22.6.0 // indirect
|
|
||||||
github.com/google/uuid v1.6.0 // indirect
|
github.com/google/uuid v1.6.0 // indirect
|
||||||
github.com/lib/pq v1.10.9 // indirect
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
||||||
github.com/mattn/go-colorable v0.1.14 // indirect
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
||||||
github.com/mattn/go-isatty v0.0.20 // indirect
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
||||||
github.com/mattn/go-sqlite3 v1.14.33 // indirect
|
|
||||||
github.com/petermattis/goid v0.0.0-20260113132338-7c7de50cc741 // indirect
|
|
||||||
github.com/rs/xid v1.6.0 // indirect
|
|
||||||
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e // indirect
|
|
||||||
github.com/tidwall/gjson v1.18.0 // indirect
|
github.com/tidwall/gjson v1.18.0 // indirect
|
||||||
github.com/tidwall/match v1.1.1 // indirect
|
github.com/tidwall/match v1.1.1 // indirect
|
||||||
github.com/tidwall/pretty v1.2.1 // indirect
|
github.com/tidwall/pretty v1.2.1 // indirect
|
||||||
github.com/tidwall/sjson v1.2.5 // indirect
|
github.com/tidwall/sjson v1.2.5 // indirect
|
||||||
go.mau.fi/zeroconfig v0.2.0 // indirect
|
go.mau.fi/zeroconfig v0.1.2 // indirect
|
||||||
golang.org/x/crypto v0.47.0 // indirect
|
golang.org/x/crypto v0.40.0 // indirect
|
||||||
golang.org/x/exp v0.0.0-20260112195511-716be5621a96 // indirect
|
golang.org/x/net v0.42.0 // indirect
|
||||||
golang.org/x/net v0.49.0 // indirect
|
golang.org/x/sys v0.34.0 // indirect
|
||||||
golang.org/x/sync v0.19.0 // indirect
|
|
||||||
golang.org/x/sys v0.40.0 // indirect
|
|
||||||
golang.org/x/text v0.33.0 // indirect
|
|
||||||
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
|
||||||
gopkg.in/yaml.v3 v3.0.1 // indirect
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||||||
maunium.net/go/mauflag v1.0.0 // indirect
|
maunium.net/go/mauflag v1.0.0 // indirect
|
||||||
)
|
)
|
||||||
|
|
||||||
replace github.com/bwmarrin/discordgo => github.com/beeper/discordgo v0.0.0-20251117165013-20c39e9899ec
|
replace github.com/bwmarrin/discordgo => github.com/beeper/discordgo v0.0.0-20260215125047-ccf8cbaa0a9f
|
||||||
|
|||||||
78
go.sum
78
go.sum
@@ -1,45 +1,41 @@
|
|||||||
filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA=
|
github.com/DATA-DOG/go-sqlmock v1.5.0 h1:Shsta01QNfFxHCfpW6YH2STWB0MudeXXEWMr20OEh60=
|
||||||
filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4=
|
github.com/DATA-DOG/go-sqlmock v1.5.0/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM=
|
||||||
github.com/DATA-DOG/go-sqlmock v1.5.2 h1:OcvFkGmslmlZibjAjaHm3L//6LiuBgolP7OputlJIzU=
|
github.com/beeper/discordgo v0.0.0-20260215125047-ccf8cbaa0a9f h1:A+SRmETpSnFixbP1x6u7sQdoi8cOuYfL5bkDJy9F/Pg=
|
||||||
github.com/DATA-DOG/go-sqlmock v1.5.2/go.mod h1:88MAG/4G7SMwSE3CeA0ZKzrT5CiOU3OJ+JlNzwDqpNU=
|
github.com/beeper/discordgo v0.0.0-20260215125047-ccf8cbaa0a9f/go.mod h1:lioivnibvB8j1KcF5TVpLdRLKCKHtcl8A03GpxRCre4=
|
||||||
github.com/beeper/discordgo v0.0.0-20251117165013-20c39e9899ec h1:5yvEHHd6f4GharWjdBVCjdvL0C09h9wZlayBaI75q1I=
|
github.com/coreos/go-systemd/v22 v22.5.0 h1:RrqgGjYQKalulkV8NGVIfkXQf6YYmOyiJKk8iXXhfZs=
|
||||||
github.com/beeper/discordgo v0.0.0-20251117165013-20c39e9899ec/go.mod h1:lioivnibvB8j1KcF5TVpLdRLKCKHtcl8A03GpxRCre4=
|
|
||||||
github.com/coder/websocket v1.8.14 h1:9L0p0iKiNOibykf283eHkKUHHrpG7f65OE3BhhO7v9g=
|
|
||||||
github.com/coder/websocket v1.8.14/go.mod h1:NX3SzP+inril6yawo5CQXx8+fk145lPDC6pumgx0mVg=
|
|
||||||
github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc=
|
github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc=
|
||||||
github.com/coreos/go-systemd/v22 v22.6.0 h1:aGVa/v8B7hpb0TKl0MWoAavPDmHvobFe5R5zn0bCJWo=
|
|
||||||
github.com/coreos/go-systemd/v22 v22.6.0/go.mod h1:iG+pp635Fo7ZmV/j14KUcmEyWF+0X7Lua8rrTWzYgWU=
|
|
||||||
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
||||||
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
|
github.com/gabriel-vasile/mimetype v1.4.9 h1:5k+WDwEsD9eTLL8Tz3L0VnmVh9QxGjRmjBvAG7U/oYY=
|
||||||
|
github.com/gabriel-vasile/mimetype v1.4.9/go.mod h1:WnSQhFKJuBlRyLiKohA/2DtIlPFAbguNaG7QCHcyGok=
|
||||||
github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
|
github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
|
||||||
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 h1:El6M4kTTCOh6aBiKaUGG7oYTSPP8MxqL4YI3kZKwcP4=
|
||||||
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ=
|
||||||
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
|
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
|
||||||
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
||||||
|
github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI=
|
||||||
|
github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So=
|
||||||
github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc=
|
github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc=
|
||||||
github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
|
github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
|
||||||
github.com/lib/pq v1.10.9 h1:YXG7RB+JIjhP29X+OtkiDnYaXQwpS4JEWq7dtCCRUEw=
|
github.com/lib/pq v1.10.9 h1:YXG7RB+JIjhP29X+OtkiDnYaXQwpS4JEWq7dtCCRUEw=
|
||||||
github.com/lib/pq v1.10.9/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o=
|
github.com/lib/pq v1.10.9/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o=
|
||||||
|
github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA=
|
||||||
github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg=
|
github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg=
|
||||||
github.com/mattn/go-colorable v0.1.14 h1:9A9LHSqF/7dyVVX6g0U9cwm9pG3kP9gSzcuIPHPsaIE=
|
|
||||||
github.com/mattn/go-colorable v0.1.14/go.mod h1:6LmQG8QLFO4G5z1gPvYEzlUgJ2wF+stgPZH1UqBm1s8=
|
|
||||||
github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
|
github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
|
||||||
|
github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA=
|
||||||
github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
|
github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
|
||||||
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
|
github.com/mattn/go-sqlite3 v1.14.28 h1:ThEiQrnbtumT+QMknw63Befp/ce/nUPgBPMlRFEum7A=
|
||||||
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
|
github.com/mattn/go-sqlite3 v1.14.28/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=
|
||||||
github.com/mattn/go-sqlite3 v1.14.33 h1:A5blZ5ulQo2AtayQ9/limgHEkFreKj1Dv226a1K73s0=
|
|
||||||
github.com/mattn/go-sqlite3 v1.14.33/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=
|
|
||||||
github.com/petermattis/goid v0.0.0-20260113132338-7c7de50cc741 h1:KPpdlQLZcHfTMQRi6bFQ7ogNO0ltFT4PmtwTLW4W+14=
|
|
||||||
github.com/petermattis/goid v0.0.0-20260113132338-7c7de50cc741/go.mod h1:pxMtw7cyUw6B2bRH0ZBANSPg+AoSud1I1iyJHI69jH4=
|
|
||||||
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
||||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||||
github.com/rs/xid v1.6.0 h1:fV591PaemRlL6JfRxGDEPl69wICngIQ3shQtzfy2gxU=
|
|
||||||
github.com/rs/xid v1.6.0/go.mod h1:7XoLgs4eV+QndskICGsho+ADou8ySMSjJKDIan90Nz0=
|
github.com/rs/xid v1.6.0/go.mod h1:7XoLgs4eV+QndskICGsho+ADou8ySMSjJKDIan90Nz0=
|
||||||
github.com/rs/zerolog v1.34.0 h1:k43nTLIwcTVQAncfCw4KZ2VY6ukYoZaBPNOE8txlOeY=
|
github.com/rs/zerolog v1.34.0 h1:k43nTLIwcTVQAncfCw4KZ2VY6ukYoZaBPNOE8txlOeY=
|
||||||
github.com/rs/zerolog v1.34.0/go.mod h1:bJsvje4Z08ROH4Nhs5iH600c3IkWhwp44iRc54W6wYQ=
|
github.com/rs/zerolog v1.34.0/go.mod h1:bJsvje4Z08ROH4Nhs5iH600c3IkWhwp44iRc54W6wYQ=
|
||||||
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e h1:MRM5ITcdelLK2j1vwZ3Je0FKVCfqOLp5zO6trqMLYs0=
|
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e h1:MRM5ITcdelLK2j1vwZ3Je0FKVCfqOLp5zO6trqMLYs0=
|
||||||
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e/go.mod h1:XV66xRDqSt+GTGFMVlhk3ULuV0y9ZmzeVGR4mloJI3M=
|
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e/go.mod h1:XV66xRDqSt+GTGFMVlhk3ULuV0y9ZmzeVGR4mloJI3M=
|
||||||
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
|
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
|
||||||
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
|
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
|
||||||
github.com/tidwall/gjson v1.14.2/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
|
github.com/tidwall/gjson v1.14.2/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
|
||||||
github.com/tidwall/gjson v1.18.0 h1:FIDeeyB800efLX89e5a8Y0BNH+LOngJyGrIWxG2FKQY=
|
github.com/tidwall/gjson v1.18.0 h1:FIDeeyB800efLX89e5a8Y0BNH+LOngJyGrIWxG2FKQY=
|
||||||
github.com/tidwall/gjson v1.18.0/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
|
github.com/tidwall/gjson v1.18.0/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
|
||||||
@@ -50,27 +46,25 @@ github.com/tidwall/pretty v1.2.1 h1:qjsOFOWWQl+N3RsoF5/ssm1pHmJJwhjlSbZ51I6wMl4=
|
|||||||
github.com/tidwall/pretty v1.2.1/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU=
|
github.com/tidwall/pretty v1.2.1/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU=
|
||||||
github.com/tidwall/sjson v1.2.5 h1:kLy8mja+1c9jlljvWTlSazM7cKDRfJuR/bOJhcY5NcY=
|
github.com/tidwall/sjson v1.2.5 h1:kLy8mja+1c9jlljvWTlSazM7cKDRfJuR/bOJhcY5NcY=
|
||||||
github.com/tidwall/sjson v1.2.5/go.mod h1:Fvgq9kS/6ociJEDnK0Fk1cpYF4FIW6ZF7LAe+6jwd28=
|
github.com/tidwall/sjson v1.2.5/go.mod h1:Fvgq9kS/6ociJEDnK0Fk1cpYF4FIW6ZF7LAe+6jwd28=
|
||||||
github.com/yuin/goldmark v1.7.16 h1:n+CJdUxaFMiDUNnWC3dMWCIQJSkxH4uz3ZwQBkAlVNE=
|
github.com/yuin/goldmark v1.7.12 h1:YwGP/rrea2/CnCtUHgjuolG/PnMxdQtPMO5PvaE2/nY=
|
||||||
github.com/yuin/goldmark v1.7.16/go.mod h1:ip/1k0VRfGynBgxOz0yCqHrbZXhcjxyuS66Brc7iBKg=
|
github.com/yuin/goldmark v1.7.12/go.mod h1:ip/1k0VRfGynBgxOz0yCqHrbZXhcjxyuS66Brc7iBKg=
|
||||||
go.mau.fi/util v0.9.5 h1:7AoWPCIZJGv4jvtFEuCe3GhAbI7uF9ckIooaXvwlIR4=
|
go.mau.fi/util v0.2.2-0.20231228160422-22fdd4bbddeb h1:Is+6vDKgINRy9KHodvi7NElxoDaWA8sc2S3cF3+QWjs=
|
||||||
go.mau.fi/util v0.9.5/go.mod h1:g1uvZ03VQhtTt2BgaRGVytS/Zj67NV0YNIECch0sQCQ=
|
go.mau.fi/util v0.2.2-0.20231228160422-22fdd4bbddeb/go.mod h1:tiBX6nxVSOjU89jVQ7wBh3P8KjM26Lv1k7/I5QdSvBw=
|
||||||
go.mau.fi/zeroconfig v0.2.0 h1:e/OGEERqVRRKlgaro7E6bh8xXiKFSXB3eNNIud7FUjU=
|
go.mau.fi/zeroconfig v0.1.2 h1:DKOydWnhPMn65GbXZOafgkPm11BvFashZWLct0dGFto=
|
||||||
go.mau.fi/zeroconfig v0.2.0/go.mod h1:J0Vn0prHNOm493oZoQ84kq83ZaNCYZnq+noI1b1eN8w=
|
go.mau.fi/zeroconfig v0.1.2/go.mod h1:NcSJkf180JT+1IId76PcMuLTNa1CzsFFZ0nBygIQM70=
|
||||||
golang.org/x/crypto v0.47.0 h1:V6e3FRj+n4dbpw86FJ8Fv7XVOql7TEwpHapKoMJ/GO8=
|
golang.org/x/crypto v0.40.0 h1:r4x+VvoG5Fm+eJcxMaY8CQM7Lb0l1lsmjGBQ6s8BfKM=
|
||||||
golang.org/x/crypto v0.47.0/go.mod h1:ff3Y9VzzKbwSSEzWqJsJVBnWmRwRSHt/6Op5n9bQc4A=
|
golang.org/x/crypto v0.40.0/go.mod h1:Qr1vMER5WyS2dfPHAlsOj01wgLbsyWtFn/aY+5+ZdxY=
|
||||||
golang.org/x/exp v0.0.0-20260112195511-716be5621a96 h1:Z/6YuSHTLOHfNFdb8zVZomZr7cqNgTJvA8+Qz75D8gU=
|
golang.org/x/exp v0.0.0-20250711185948-6ae5c78190dc h1:TS73t7x3KarrNd5qAipmspBDS1rkMcgVG/fS1aRb4Rc=
|
||||||
golang.org/x/exp v0.0.0-20260112195511-716be5621a96/go.mod h1:nzimsREAkjBCIEFtHiYkrJyT+2uy9YZJB7H1k68CXZU=
|
golang.org/x/exp v0.0.0-20250711185948-6ae5c78190dc/go.mod h1:A+z0yzpGtvnG90cToK5n2tu8UJVP2XUATh+r+sfOOOc=
|
||||||
golang.org/x/net v0.49.0 h1:eeHFmOGUTtaaPSGNmjBKpbng9MulQsJURQUAfUwY++o=
|
golang.org/x/net v0.42.0 h1:jzkYrhi3YQWD6MLBJcsklgQsoAcw89EcZbJw8Z614hs=
|
||||||
golang.org/x/net v0.49.0/go.mod h1:/ysNB2EvaqvesRkuLAyjI1ycPZlQHM3q01F02UY/MV8=
|
golang.org/x/net v0.42.0/go.mod h1:FF1RA5d3u7nAYA4z2TkclSCKh68eSXtiFwcWQpPXdt8=
|
||||||
golang.org/x/sync v0.19.0 h1:vV+1eWNmZ5geRlYjzm2adRgW2/mcpevXNg50YZtPCE4=
|
golang.org/x/sync v0.16.0 h1:ycBJEhp9p4vXvUZNszeOq0kGTPghopOL8q0fq3vstxw=
|
||||||
golang.org/x/sync v0.19.0/go.mod h1:9KTHXmSnoGruLpwFjVSX0lNNA75CykiMECbovNTZqGI=
|
golang.org/x/sync v0.16.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
|
||||||
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.40.0 h1:DBZZqJ2Rkml6QMQsZywtnjnnGvHza6BTfYFWY9kjEWQ=
|
golang.org/x/sys v0.34.0 h1:H5Y5sJ2L2JRdyv7ROF1he/lPdvFsd0mJHFw2ThKHxLA=
|
||||||
golang.org/x/sys v0.40.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
|
golang.org/x/sys v0.34.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
|
||||||
golang.org/x/text v0.33.0 h1:B3njUFyqtHDUI5jMn1YIr5B0IE2U0qck04r6d4KPAxE=
|
|
||||||
golang.org/x/text v0.33.0/go.mod h1:LuMebE6+rBincTi9+xWTY8TztLzKHc/9C1uBCG27+q8=
|
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
gopkg.in/natefinch/lumberjack.v2 v2.2.1 h1:bBRl1b0OH9s/DuPhuXpNl+VtCaJXFZ5/uEFST95x9zc=
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1 h1:bBRl1b0OH9s/DuPhuXpNl+VtCaJXFZ5/uEFST95x9zc=
|
||||||
@@ -79,5 +73,7 @@ gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
|||||||
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
maunium.net/go/mauflag v1.0.0 h1:YiaRc0tEI3toYtJMRIfjP+jklH45uDHtT80nUamyD4M=
|
maunium.net/go/mauflag v1.0.0 h1:YiaRc0tEI3toYtJMRIfjP+jklH45uDHtT80nUamyD4M=
|
||||||
maunium.net/go/mauflag v1.0.0/go.mod h1:nLivPOpTpHnpzEh8jEdSL9UqO9+/KBJFmNRlwKfkPeA=
|
maunium.net/go/mauflag v1.0.0/go.mod h1:nLivPOpTpHnpzEh8jEdSL9UqO9+/KBJFmNRlwKfkPeA=
|
||||||
maunium.net/go/mautrix v0.26.2 h1:rLiZLQoSKCJDZ+mF1gBQS4p74h3jZXs83g8D4W6Te8g=
|
maunium.net/go/maulogger/v2 v2.4.1 h1:N7zSdd0mZkB2m2JtFUsiGTQQAdP0YeFWT7YMc80yAL8=
|
||||||
maunium.net/go/mautrix v0.26.2/go.mod h1:CUxSZcjPtQNxsZLRQqETAxg2hiz7bjWT+L1HCYoMMKo=
|
maunium.net/go/maulogger/v2 v2.4.1/go.mod h1:omPuYwYBILeVQobz8uO3XC8DIRuEb5rXYlQSuqrbCho=
|
||||||
|
maunium.net/go/mautrix v0.16.3-0.20250810202616-6bc5698125c2 h1:8PdwIklPNHTL/tI9tG2S0Tf9UvAgRt8yZjJbjV0XIpA=
|
||||||
|
maunium.net/go/mautrix v0.16.3-0.20250810202616-6bc5698125c2/go.mod h1:gCgLw/4c1a8QsiOWTdUdXlt5cYdE0rJ9wLeZQKPD58Q=
|
||||||
|
|||||||
335
guildportal.go
Normal file
335
guildportal.go
Normal file
@@ -0,0 +1,335 @@
|
|||||||
|
// 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 (
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"sync"
|
||||||
|
|
||||||
|
log "maunium.net/go/maulogger/v2"
|
||||||
|
"maunium.net/go/maulogger/v2/maulogadapt"
|
||||||
|
|
||||||
|
"maunium.net/go/mautrix"
|
||||||
|
"maunium.net/go/mautrix/event"
|
||||||
|
"maunium.net/go/mautrix/id"
|
||||||
|
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
|
||||||
|
"go.mau.fi/mautrix-discord/config"
|
||||||
|
"go.mau.fi/mautrix-discord/database"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Guild struct {
|
||||||
|
*database.Guild
|
||||||
|
|
||||||
|
bridge *DiscordBridge
|
||||||
|
log log.Logger
|
||||||
|
|
||||||
|
roomCreateLock sync.Mutex
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) loadGuild(dbGuild *database.Guild, id string, createIfNotExist bool) *Guild {
|
||||||
|
if dbGuild == nil {
|
||||||
|
if id == "" || !createIfNotExist {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
dbGuild = br.DB.Guild.New()
|
||||||
|
dbGuild.ID = id
|
||||||
|
dbGuild.Insert()
|
||||||
|
}
|
||||||
|
|
||||||
|
guild := br.NewGuild(dbGuild)
|
||||||
|
|
||||||
|
br.guildsByID[guild.ID] = guild
|
||||||
|
if guild.MXID != "" {
|
||||||
|
br.guildsByMXID[guild.MXID] = guild
|
||||||
|
}
|
||||||
|
|
||||||
|
return guild
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) GetGuildByMXID(mxid id.RoomID) *Guild {
|
||||||
|
br.guildsLock.Lock()
|
||||||
|
defer br.guildsLock.Unlock()
|
||||||
|
|
||||||
|
portal, ok := br.guildsByMXID[mxid]
|
||||||
|
if !ok {
|
||||||
|
return br.loadGuild(br.DB.Guild.GetByMXID(mxid), "", false)
|
||||||
|
}
|
||||||
|
|
||||||
|
return portal
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) GetGuildByID(id string, createIfNotExist bool) *Guild {
|
||||||
|
br.guildsLock.Lock()
|
||||||
|
defer br.guildsLock.Unlock()
|
||||||
|
|
||||||
|
guild, ok := br.guildsByID[id]
|
||||||
|
if !ok {
|
||||||
|
return br.loadGuild(br.DB.Guild.GetByID(id), id, createIfNotExist)
|
||||||
|
}
|
||||||
|
|
||||||
|
return guild
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) GetAllGuilds() []*Guild {
|
||||||
|
return br.dbGuildsToGuilds(br.DB.Guild.GetAll())
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) dbGuildsToGuilds(dbGuilds []*database.Guild) []*Guild {
|
||||||
|
br.guildsLock.Lock()
|
||||||
|
defer br.guildsLock.Unlock()
|
||||||
|
|
||||||
|
output := make([]*Guild, len(dbGuilds))
|
||||||
|
for index, dbGuild := range dbGuilds {
|
||||||
|
if dbGuild == nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
guild, ok := br.guildsByID[dbGuild.ID]
|
||||||
|
if !ok {
|
||||||
|
guild = br.loadGuild(dbGuild, "", false)
|
||||||
|
}
|
||||||
|
|
||||||
|
output[index] = guild
|
||||||
|
}
|
||||||
|
|
||||||
|
return output
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) NewGuild(dbGuild *database.Guild) *Guild {
|
||||||
|
guild := &Guild{
|
||||||
|
Guild: dbGuild,
|
||||||
|
bridge: br,
|
||||||
|
log: br.Log.Sub(fmt.Sprintf("Guild/%s", dbGuild.ID)),
|
||||||
|
}
|
||||||
|
|
||||||
|
return guild
|
||||||
|
}
|
||||||
|
|
||||||
|
func (guild *Guild) getBridgeInfo() (string, event.BridgeEventContent) {
|
||||||
|
bridgeInfo := event.BridgeEventContent{
|
||||||
|
BridgeBot: guild.bridge.Bot.UserID,
|
||||||
|
Creator: guild.bridge.Bot.UserID,
|
||||||
|
Protocol: event.BridgeInfoSection{
|
||||||
|
ID: "discordgo",
|
||||||
|
DisplayName: "Discord",
|
||||||
|
AvatarURL: guild.bridge.Config.AppService.Bot.ParsedAvatar.CUString(),
|
||||||
|
ExternalURL: "https://discord.com/",
|
||||||
|
},
|
||||||
|
Channel: event.BridgeInfoSection{
|
||||||
|
ID: guild.ID,
|
||||||
|
DisplayName: guild.Name,
|
||||||
|
AvatarURL: guild.AvatarURL.CUString(),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
bridgeInfoStateKey := fmt.Sprintf("fi.mau.discord://discord/%s", guild.ID)
|
||||||
|
return bridgeInfoStateKey, bridgeInfo
|
||||||
|
}
|
||||||
|
|
||||||
|
func (guild *Guild) UpdateBridgeInfo() {
|
||||||
|
if len(guild.MXID) == 0 {
|
||||||
|
guild.log.Debugln("Not updating bridge info: no Matrix room created")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
guild.log.Debugln("Updating bridge info...")
|
||||||
|
stateKey, content := guild.getBridgeInfo()
|
||||||
|
_, err := guild.bridge.Bot.SendStateEvent(guild.MXID, event.StateBridge, stateKey, content)
|
||||||
|
if err != nil {
|
||||||
|
guild.log.Warnln("Failed to update m.bridge:", err)
|
||||||
|
}
|
||||||
|
// TODO remove this once https://github.com/matrix-org/matrix-doc/pull/2346 is in spec
|
||||||
|
_, err = guild.bridge.Bot.SendStateEvent(guild.MXID, event.StateHalfShotBridge, stateKey, content)
|
||||||
|
if err != nil {
|
||||||
|
guild.log.Warnln("Failed to update uk.half-shot.bridge:", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (guild *Guild) CreateMatrixRoom(user *User, meta *discordgo.Guild) error {
|
||||||
|
guild.roomCreateLock.Lock()
|
||||||
|
defer guild.roomCreateLock.Unlock()
|
||||||
|
if guild.MXID != "" {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
guild.log.Infoln("Creating Matrix room for guild")
|
||||||
|
guild.UpdateInfo(user, meta)
|
||||||
|
|
||||||
|
bridgeInfoStateKey, bridgeInfo := guild.getBridgeInfo()
|
||||||
|
|
||||||
|
initialState := []*event.Event{{
|
||||||
|
Type: event.StateBridge,
|
||||||
|
Content: event.Content{Parsed: bridgeInfo},
|
||||||
|
StateKey: &bridgeInfoStateKey,
|
||||||
|
}, {
|
||||||
|
// TODO remove this once https://github.com/matrix-org/matrix-doc/pull/2346 is in spec
|
||||||
|
Type: event.StateHalfShotBridge,
|
||||||
|
Content: event.Content{Parsed: bridgeInfo},
|
||||||
|
StateKey: &bridgeInfoStateKey,
|
||||||
|
}}
|
||||||
|
|
||||||
|
if !guild.AvatarURL.IsEmpty() {
|
||||||
|
initialState = append(initialState, &event.Event{
|
||||||
|
Type: event.StateRoomAvatar,
|
||||||
|
Content: event.Content{Parsed: &event.RoomAvatarEventContent{
|
||||||
|
URL: guild.AvatarURL,
|
||||||
|
}},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
creationContent := map[string]interface{}{
|
||||||
|
"type": event.RoomTypeSpace,
|
||||||
|
}
|
||||||
|
if !guild.bridge.Config.Bridge.FederateRooms {
|
||||||
|
creationContent["m.federate"] = false
|
||||||
|
}
|
||||||
|
|
||||||
|
resp, err := guild.bridge.Bot.CreateRoom(&mautrix.ReqCreateRoom{
|
||||||
|
Visibility: "private",
|
||||||
|
Name: guild.Name,
|
||||||
|
Preset: "private_chat",
|
||||||
|
InitialState: initialState,
|
||||||
|
CreationContent: creationContent,
|
||||||
|
RoomVersion: "11",
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
guild.log.Warnln("Failed to create room:", err)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
guild.MXID = resp.RoomID
|
||||||
|
guild.NameSet = true
|
||||||
|
guild.AvatarSet = !guild.AvatarURL.IsEmpty()
|
||||||
|
guild.Update()
|
||||||
|
guild.bridge.guildsLock.Lock()
|
||||||
|
guild.bridge.guildsByMXID[guild.MXID] = guild
|
||||||
|
guild.bridge.guildsLock.Unlock()
|
||||||
|
guild.log.Infoln("Matrix room created:", guild.MXID)
|
||||||
|
|
||||||
|
user.ensureInvited(nil, guild.MXID, false, true)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (guild *Guild) UpdateInfo(source *User, meta *discordgo.Guild) *discordgo.Guild {
|
||||||
|
if meta.Unavailable {
|
||||||
|
guild.log.Debugfln("Ignoring unavailable guild update")
|
||||||
|
return meta
|
||||||
|
}
|
||||||
|
changed := false
|
||||||
|
changed = guild.UpdateName(meta) || changed
|
||||||
|
changed = guild.UpdateAvatar(meta.Icon) || changed
|
||||||
|
if changed {
|
||||||
|
guild.UpdateBridgeInfo()
|
||||||
|
guild.Update()
|
||||||
|
}
|
||||||
|
source.ensureInvited(nil, guild.MXID, false, false)
|
||||||
|
return meta
|
||||||
|
}
|
||||||
|
|
||||||
|
func (guild *Guild) UpdateName(meta *discordgo.Guild) bool {
|
||||||
|
name := guild.bridge.Config.Bridge.FormatGuildName(config.GuildNameParams{
|
||||||
|
Name: meta.Name,
|
||||||
|
})
|
||||||
|
if guild.PlainName == meta.Name && guild.Name == name && (guild.NameSet || guild.MXID == "") {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
guild.log.Debugfln("Updating name %q -> %q", guild.Name, name)
|
||||||
|
guild.Name = name
|
||||||
|
guild.PlainName = meta.Name
|
||||||
|
guild.NameSet = false
|
||||||
|
if guild.MXID != "" {
|
||||||
|
_, err := guild.bridge.Bot.SetRoomName(guild.MXID, guild.Name)
|
||||||
|
if err != nil {
|
||||||
|
guild.log.Warnln("Failed to update room name: %s", err)
|
||||||
|
} else {
|
||||||
|
guild.NameSet = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
func (guild *Guild) UpdateAvatar(iconID string) bool {
|
||||||
|
if guild.Avatar == iconID && (iconID == "") == guild.AvatarURL.IsEmpty() && (guild.AvatarSet || guild.MXID == "") {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
guild.log.Debugfln("Updating avatar %q -> %q", guild.Avatar, iconID)
|
||||||
|
guild.AvatarSet = false
|
||||||
|
guild.Avatar = iconID
|
||||||
|
guild.AvatarURL = id.ContentURI{}
|
||||||
|
if guild.Avatar != "" {
|
||||||
|
// TODO direct media support
|
||||||
|
copied, err := guild.bridge.copyAttachmentToMatrix(guild.bridge.Bot, discordgo.EndpointGuildIcon(guild.ID, iconID), false, AttachmentMeta{
|
||||||
|
AttachmentID: fmt.Sprintf("guild_avatar/%s/%s", guild.ID, iconID),
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
guild.log.Warnfln("Failed to reupload guild avatar %s: %v", iconID, err)
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
guild.AvatarURL = copied.MXC
|
||||||
|
}
|
||||||
|
if guild.MXID != "" {
|
||||||
|
_, err := guild.bridge.Bot.SetRoomAvatar(guild.MXID, guild.AvatarURL)
|
||||||
|
if err != nil {
|
||||||
|
guild.log.Warnln("Failed to update room avatar:", err)
|
||||||
|
} else {
|
||||||
|
guild.AvatarSet = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
func (guild *Guild) cleanup() {
|
||||||
|
if guild.MXID == "" {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
intent := guild.bridge.Bot
|
||||||
|
if guild.bridge.SpecVersions.Supports(mautrix.BeeperFeatureRoomYeeting) {
|
||||||
|
err := intent.BeeperDeleteRoom(guild.MXID)
|
||||||
|
if err != nil && !errors.Is(err, mautrix.MNotFound) {
|
||||||
|
guild.log.Errorfln("Failed to delete %s using hungryserv yeet endpoint: %v", guild.MXID, err)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
guild.bridge.cleanupRoom(intent, guild.MXID, false, *maulogadapt.MauAsZero(guild.log))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (guild *Guild) RemoveMXID() {
|
||||||
|
guild.bridge.guildsLock.Lock()
|
||||||
|
defer guild.bridge.guildsLock.Unlock()
|
||||||
|
if guild.MXID == "" {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
delete(guild.bridge.guildsByMXID, guild.MXID)
|
||||||
|
guild.MXID = ""
|
||||||
|
guild.AvatarSet = false
|
||||||
|
guild.NameSet = false
|
||||||
|
guild.BridgingMode = database.GuildBridgeNothing
|
||||||
|
guild.Update()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (guild *Guild) Delete() {
|
||||||
|
guild.Guild.Delete()
|
||||||
|
guild.bridge.guildsLock.Lock()
|
||||||
|
delete(guild.bridge.guildsByID, guild.ID)
|
||||||
|
if guild.MXID != "" {
|
||||||
|
delete(guild.bridge.guildsByMXID, guild.MXID)
|
||||||
|
}
|
||||||
|
guild.bridge.guildsLock.Unlock()
|
||||||
|
|
||||||
|
}
|
||||||
208
main.go
Normal file
208
main.go
Normal file
@@ -0,0 +1,208 @@
|
|||||||
|
// 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 (
|
||||||
|
_ "embed"
|
||||||
|
"net/http"
|
||||||
|
"sync"
|
||||||
|
|
||||||
|
"go.mau.fi/util/configupgrade"
|
||||||
|
"go.mau.fi/util/exsync"
|
||||||
|
"golang.org/x/sync/semaphore"
|
||||||
|
"maunium.net/go/mautrix/bridge"
|
||||||
|
"maunium.net/go/mautrix/bridge/commands"
|
||||||
|
"maunium.net/go/mautrix/event"
|
||||||
|
"maunium.net/go/mautrix/id"
|
||||||
|
|
||||||
|
"go.mau.fi/mautrix-discord/config"
|
||||||
|
"go.mau.fi/mautrix-discord/database"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Information to find out exactly which commit the bridge was built from.
|
||||||
|
// These are filled at build time with the -X linker flag.
|
||||||
|
var (
|
||||||
|
Tag = "unknown"
|
||||||
|
Commit = "unknown"
|
||||||
|
BuildTime = "unknown"
|
||||||
|
)
|
||||||
|
|
||||||
|
//go:embed example-config.yaml
|
||||||
|
var ExampleConfig string
|
||||||
|
|
||||||
|
type DiscordBridge struct {
|
||||||
|
bridge.Bridge
|
||||||
|
|
||||||
|
Config *config.Config
|
||||||
|
DB *database.Database
|
||||||
|
|
||||||
|
DMA *DirectMediaAPI
|
||||||
|
provisioning *ProvisioningAPI
|
||||||
|
|
||||||
|
usersByMXID map[id.UserID]*User
|
||||||
|
usersByID map[string]*User
|
||||||
|
usersLock sync.Mutex
|
||||||
|
|
||||||
|
managementRooms map[id.RoomID]*User
|
||||||
|
managementRoomsLock sync.Mutex
|
||||||
|
|
||||||
|
portalsByMXID map[id.RoomID]*Portal
|
||||||
|
portalsByID map[database.PortalKey]*Portal
|
||||||
|
portalsLock sync.Mutex
|
||||||
|
|
||||||
|
threadsByID map[string]*Thread
|
||||||
|
threadsByRootMXID map[id.EventID]*Thread
|
||||||
|
threadsByCreationNoticeMXID map[id.EventID]*Thread
|
||||||
|
threadsLock sync.Mutex
|
||||||
|
|
||||||
|
guildsByMXID map[id.RoomID]*Guild
|
||||||
|
guildsByID map[string]*Guild
|
||||||
|
guildsLock sync.Mutex
|
||||||
|
|
||||||
|
puppets map[string]*Puppet
|
||||||
|
puppetsByCustomMXID map[id.UserID]*Puppet
|
||||||
|
puppetsLock sync.Mutex
|
||||||
|
|
||||||
|
attachmentTransfers *exsync.Map[attachmentKey, *exsync.ReturnableOnce[*database.File]]
|
||||||
|
parallelAttachmentSemaphore *semaphore.Weighted
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) GetExampleConfig() string {
|
||||||
|
return ExampleConfig
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) GetConfigPtr() interface{} {
|
||||||
|
br.Config = &config.Config{
|
||||||
|
BaseConfig: &br.Bridge.Config,
|
||||||
|
}
|
||||||
|
br.Config.BaseConfig.Bridge = &br.Config.Bridge
|
||||||
|
return br.Config
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) Init() {
|
||||||
|
br.CommandProcessor = commands.NewProcessor(&br.Bridge)
|
||||||
|
br.RegisterCommands()
|
||||||
|
br.EventProcessor.On(event.StateTombstone, br.HandleTombstone)
|
||||||
|
|
||||||
|
matrixHTMLParser.PillConverter = br.pillConverter
|
||||||
|
|
||||||
|
br.DB = database.New(br.Bridge.DB, br.Log.Sub("Database"))
|
||||||
|
discordLog = br.ZLog.With().Str("component", "discordgo").Logger()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) Start() {
|
||||||
|
if br.Config.Bridge.Provisioning.SharedSecret != "disable" {
|
||||||
|
br.provisioning = newProvisioningAPI(br)
|
||||||
|
}
|
||||||
|
if br.Config.Bridge.PublicAddress != "" {
|
||||||
|
br.AS.Router.HandleFunc("/mautrix-discord/avatar/{server}/{mediaID}/{checksum}", br.serveMediaProxy).Methods(http.MethodGet)
|
||||||
|
}
|
||||||
|
br.DMA = newDirectMediaAPI(br)
|
||||||
|
br.WaitWebsocketConnected()
|
||||||
|
go br.startUsers()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) Stop() {
|
||||||
|
for _, user := range br.usersByMXID {
|
||||||
|
if user.Session == nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
br.Log.Debugln("Disconnecting", user.MXID)
|
||||||
|
user.Session.Close()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) GetIPortal(mxid id.RoomID) bridge.Portal {
|
||||||
|
p := br.GetPortalByMXID(mxid)
|
||||||
|
if p == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) GetIUser(mxid id.UserID, create bool) bridge.User {
|
||||||
|
p := br.GetUserByMXID(mxid)
|
||||||
|
if p == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) IsGhost(mxid id.UserID) bool {
|
||||||
|
_, isGhost := br.ParsePuppetMXID(mxid)
|
||||||
|
return isGhost
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) GetIGhost(mxid id.UserID) bridge.Ghost {
|
||||||
|
p := br.GetPuppetByMXID(mxid)
|
||||||
|
if p == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
|
func (br *DiscordBridge) CreatePrivatePortal(id id.RoomID, user bridge.User, ghost bridge.Ghost) {
|
||||||
|
//TODO implement
|
||||||
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
br := &DiscordBridge{
|
||||||
|
usersByMXID: make(map[id.UserID]*User),
|
||||||
|
usersByID: make(map[string]*User),
|
||||||
|
|
||||||
|
managementRooms: make(map[id.RoomID]*User),
|
||||||
|
|
||||||
|
portalsByMXID: make(map[id.RoomID]*Portal),
|
||||||
|
portalsByID: make(map[database.PortalKey]*Portal),
|
||||||
|
|
||||||
|
threadsByID: make(map[string]*Thread),
|
||||||
|
threadsByRootMXID: make(map[id.EventID]*Thread),
|
||||||
|
threadsByCreationNoticeMXID: make(map[id.EventID]*Thread),
|
||||||
|
|
||||||
|
guildsByID: make(map[string]*Guild),
|
||||||
|
guildsByMXID: make(map[id.RoomID]*Guild),
|
||||||
|
|
||||||
|
puppets: make(map[string]*Puppet),
|
||||||
|
puppetsByCustomMXID: make(map[id.UserID]*Puppet),
|
||||||
|
|
||||||
|
attachmentTransfers: exsync.NewMap[attachmentKey, *exsync.ReturnableOnce[*database.File]](),
|
||||||
|
parallelAttachmentSemaphore: semaphore.NewWeighted(3),
|
||||||
|
}
|
||||||
|
br.Bridge = bridge.Bridge{
|
||||||
|
Name: "mautrix-discord",
|
||||||
|
URL: "https://github.com/mautrix/discord",
|
||||||
|
Description: "A Matrix-Discord puppeting bridge.",
|
||||||
|
Version: "0.7.6",
|
||||||
|
ProtocolName: "Discord",
|
||||||
|
BeeperServiceName: "discordgo",
|
||||||
|
BeeperNetworkName: "discord",
|
||||||
|
|
||||||
|
CryptoPickleKey: "maunium.net/go/mautrix-whatsapp",
|
||||||
|
|
||||||
|
ConfigUpgrader: &configupgrade.StructUpgrader{
|
||||||
|
SimpleUpgrader: configupgrade.SimpleUpgrader(config.DoUpgrade),
|
||||||
|
Blocks: config.SpacedBlocks,
|
||||||
|
Base: ExampleConfig,
|
||||||
|
},
|
||||||
|
|
||||||
|
Child: br,
|
||||||
|
}
|
||||||
|
br.InitVersion(Tag, Commit, BuildTime)
|
||||||
|
|
||||||
|
br.Main()
|
||||||
|
}
|
||||||
@@ -1,123 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 connector
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"slices"
|
|
||||||
"strconv"
|
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
"github.com/rs/zerolog"
|
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
|
||||||
|
|
||||||
"go.mau.fi/mautrix-discord/pkg/discordid"
|
|
||||||
)
|
|
||||||
|
|
||||||
var (
|
|
||||||
_ bridgev2.BackfillingNetworkAPI = (*DiscordClient)(nil)
|
|
||||||
)
|
|
||||||
|
|
||||||
func (dc *DiscordClient) FetchMessages(ctx context.Context, fetchParams bridgev2.FetchMessagesParams) (*bridgev2.FetchMessagesResponse, error) {
|
|
||||||
if !dc.IsLoggedIn() {
|
|
||||||
return nil, bridgev2.ErrNotLoggedIn
|
|
||||||
}
|
|
||||||
|
|
||||||
channelID := discordid.ParsePortalID(fetchParams.Portal.ID)
|
|
||||||
log := zerolog.Ctx(ctx).With().
|
|
||||||
Str("channel_id", channelID).
|
|
||||||
Int("desired_count", fetchParams.Count).
|
|
||||||
Bool("forward", fetchParams.Forward).Logger()
|
|
||||||
|
|
||||||
var beforeID string
|
|
||||||
var afterID string
|
|
||||||
|
|
||||||
if fetchParams.AnchorMessage != nil {
|
|
||||||
anchorID := discordid.ParseMessageID(fetchParams.AnchorMessage.ID)
|
|
||||||
|
|
||||||
if fetchParams.Forward {
|
|
||||||
afterID = anchorID
|
|
||||||
} else {
|
|
||||||
beforeID = anchorID
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ChannelMessages returns messages ordered from newest to oldest.
|
|
||||||
count := min(fetchParams.Count, 100)
|
|
||||||
log.Debug().Msg("Fetching channel history for backfill")
|
|
||||||
msgs, err := dc.Session.ChannelMessages(channelID, count, beforeID, afterID, "")
|
|
||||||
if err != nil {
|
|
||||||
dc.handlePossible40002(err)
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
converted := make([]*bridgev2.BackfillMessage, 0, len(msgs))
|
|
||||||
for _, msg := range msgs {
|
|
||||||
streamOrder, _ := strconv.ParseInt(msg.ID, 10, 64)
|
|
||||||
ts, _ := discordgo.SnowflakeTimestamp(msg.ID)
|
|
||||||
|
|
||||||
// NOTE: For now, we aren't backfilling reactions. This is because:
|
|
||||||
//
|
|
||||||
// - Discord does not provide enough historical reaction data in the
|
|
||||||
// response from the message history endpoint to construct valid
|
|
||||||
// BackfillReactions.
|
|
||||||
// - Fetching the reaction data would be prohibitively expensive for
|
|
||||||
// messages with many reactions. Messages in large guilds can have
|
|
||||||
// tens of thousands of reactions.
|
|
||||||
// - Indicating aggregated child events[1] from BackfillMessage doesn't
|
|
||||||
// seem possible due to how portal backfilling batching currently
|
|
||||||
// works.
|
|
||||||
//
|
|
||||||
// [1]: https://spec.matrix.org/v1.16/client-server-api/#reference-relations
|
|
||||||
//
|
|
||||||
// It might be worth fetching the reaction data anyways if we observe
|
|
||||||
// a small overall number of reactions.
|
|
||||||
sender := dc.makeEventSender(msg.Author)
|
|
||||||
|
|
||||||
// Use the ghost's intent, falling back to the bridge's.
|
|
||||||
ghost, err := dc.connector.Bridge.GetGhostByID(ctx, sender.Sender)
|
|
||||||
if err != nil {
|
|
||||||
log.Err(err).Msg("Failed to look up ghost while converting backfilled message")
|
|
||||||
}
|
|
||||||
var intent bridgev2.MatrixAPI
|
|
||||||
if ghost == nil {
|
|
||||||
intent = fetchParams.Portal.Bridge.Bot
|
|
||||||
} else {
|
|
||||||
intent = ghost.Intent
|
|
||||||
}
|
|
||||||
|
|
||||||
converted = append(converted, &bridgev2.BackfillMessage{
|
|
||||||
ID: discordid.MakeMessageID(msg.ID),
|
|
||||||
ConvertedMessage: dc.connector.MsgConv.ToMatrix(ctx, fetchParams.Portal, intent, dc.UserLogin, dc.Session, msg),
|
|
||||||
Sender: sender,
|
|
||||||
Timestamp: ts,
|
|
||||||
StreamOrder: streamOrder,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
// FetchMessagesResponse expects messages to always be ordered from oldest to newest.
|
|
||||||
slices.Reverse(converted)
|
|
||||||
|
|
||||||
log.Debug().Int("converted_count", len(converted)).Msg("Finished fetching and converting, returning backfill response")
|
|
||||||
|
|
||||||
return &bridgev2.FetchMessagesResponse{
|
|
||||||
Messages: converted,
|
|
||||||
Forward: fetchParams.Forward,
|
|
||||||
// This might not actually be true if the channel's total number of messages is itself a multiple
|
|
||||||
// of `count`, but that's probably okay.
|
|
||||||
HasMore: len(msgs) == count,
|
|
||||||
}, nil
|
|
||||||
}
|
|
||||||
@@ -1,153 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 connector
|
|
||||||
|
|
||||||
import (
|
|
||||||
"errors"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
"maunium.net/go/mautrix/bridgev2/status"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
DiscordNotLoggedIn status.BridgeStateErrorCode = "dc-not-logged-in"
|
|
||||||
DiscordTransientDisconnect status.BridgeStateErrorCode = "dc-transient-disconnect"
|
|
||||||
DiscordInvalidAuth status.BridgeStateErrorCode = "dc-websocket-disconnect-4004"
|
|
||||||
DiscordHTTP40002 status.BridgeStateErrorCode = "dc-http-40002"
|
|
||||||
DiscordUnknownWebsocketErr status.BridgeStateErrorCode = "dc-unknown-websocket-error"
|
|
||||||
)
|
|
||||||
|
|
||||||
const discordDisconnectDebounce = 7 * time.Second
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
status.BridgeStateHumanErrors.Update(status.BridgeStateErrorMap{
|
|
||||||
DiscordNotLoggedIn: "You're not logged into Discord. Relogin to continue using the bridge.",
|
|
||||||
DiscordTransientDisconnect: "Temporarily disconnected from Discord, trying to reconnect.",
|
|
||||||
DiscordInvalidAuth: "Discord access token is no longer valid, please log in again.",
|
|
||||||
DiscordHTTP40002: "Discord requires a verified account, please verify and log in again.",
|
|
||||||
DiscordUnknownWebsocketErr: "Unknown Discord websocket error.",
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) resetBridgeStateTracking() {
|
|
||||||
d.bridgeStateLock.Lock()
|
|
||||||
if d.disconnectTimer != nil {
|
|
||||||
d.disconnectTimer.Stop()
|
|
||||||
d.disconnectTimer = nil
|
|
||||||
}
|
|
||||||
d.invalidAuthDetected = false
|
|
||||||
d.bridgeStateLock.Unlock()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) markConnected() {
|
|
||||||
if d.UserLogin == nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
d.bridgeStateLock.Lock()
|
|
||||||
if d.disconnectTimer != nil {
|
|
||||||
d.disconnectTimer.Stop()
|
|
||||||
d.disconnectTimer = nil
|
|
||||||
}
|
|
||||||
d.invalidAuthDetected = false
|
|
||||||
d.bridgeStateLock.Unlock()
|
|
||||||
d.UserLogin.BridgeState.Send(status.BridgeState{StateEvent: status.StateConnected})
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) markInvalidAuth(message string) {
|
|
||||||
if d.UserLogin == nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
d.bridgeStateLock.Lock()
|
|
||||||
d.invalidAuthDetected = true
|
|
||||||
if d.disconnectTimer != nil {
|
|
||||||
d.disconnectTimer.Stop()
|
|
||||||
d.disconnectTimer = nil
|
|
||||||
}
|
|
||||||
d.bridgeStateLock.Unlock()
|
|
||||||
d.UserLogin.BridgeState.Send(status.BridgeState{
|
|
||||||
StateEvent: status.StateBadCredentials,
|
|
||||||
Error: DiscordInvalidAuth,
|
|
||||||
Message: message,
|
|
||||||
UserAction: status.UserActionRelogin,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) scheduleTransientDisconnect(message string) {
|
|
||||||
if d.UserLogin == nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
d.bridgeStateLock.Lock()
|
|
||||||
if d.invalidAuthDetected {
|
|
||||||
d.bridgeStateLock.Unlock()
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if d.disconnectTimer != nil {
|
|
||||||
d.disconnectTimer.Stop()
|
|
||||||
}
|
|
||||||
login := d.UserLogin
|
|
||||||
d.disconnectTimer = time.AfterFunc(discordDisconnectDebounce, func() {
|
|
||||||
d.bridgeStateLock.Lock()
|
|
||||||
d.disconnectTimer = nil
|
|
||||||
invalidAuth := d.invalidAuthDetected
|
|
||||||
d.bridgeStateLock.Unlock()
|
|
||||||
if invalidAuth {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
login.BridgeState.Send(status.BridgeState{
|
|
||||||
StateEvent: status.StateTransientDisconnect,
|
|
||||||
Error: DiscordTransientDisconnect,
|
|
||||||
Message: message,
|
|
||||||
})
|
|
||||||
})
|
|
||||||
d.bridgeStateLock.Unlock()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) sendConnectFailure(err error, final bool) {
|
|
||||||
if d.UserLogin == nil || err == nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
stateEvent := status.StateTransientDisconnect
|
|
||||||
if final {
|
|
||||||
stateEvent = status.StateUnknownError
|
|
||||||
}
|
|
||||||
d.UserLogin.BridgeState.Send(status.BridgeState{
|
|
||||||
StateEvent: stateEvent,
|
|
||||||
Error: DiscordUnknownWebsocketErr,
|
|
||||||
Message: err.Error(),
|
|
||||||
Info: map[string]any{
|
|
||||||
"go_error": err.Error(),
|
|
||||||
},
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) handlePossible40002(err error) bool {
|
|
||||||
var restErr *discordgo.RESTError
|
|
||||||
if !errors.As(err, &restErr) || restErr.Message == nil || restErr.Message.Code != discordgo.ErrCodeActionRequiredVerifiedAccount {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
if d.UserLogin == nil {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
d.UserLogin.BridgeState.Send(status.BridgeState{
|
|
||||||
StateEvent: status.StateBadCredentials,
|
|
||||||
Error: DiscordHTTP40002,
|
|
||||||
Message: restErr.Message.Message,
|
|
||||||
UserAction: status.UserActionRelogin,
|
|
||||||
})
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
@@ -1,147 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 connector
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
|
|
||||||
"go.mau.fi/util/ffmpeg"
|
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
|
||||||
"maunium.net/go/mautrix/event"
|
|
||||||
)
|
|
||||||
|
|
||||||
var DiscordGeneralCaps = &bridgev2.NetworkGeneralCapabilities{
|
|
||||||
Provisioning: bridgev2.ProvisioningCapabilities{
|
|
||||||
ResolveIdentifier: bridgev2.ResolveIdentifierCapabilities{},
|
|
||||||
GroupCreation: map[string]bridgev2.GroupTypeCapabilities{},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
func (dc *DiscordConnector) GetCapabilities() *bridgev2.NetworkGeneralCapabilities {
|
|
||||||
return DiscordGeneralCaps
|
|
||||||
}
|
|
||||||
|
|
||||||
func (wa *DiscordConnector) GetBridgeInfoVersion() (info, caps int) {
|
|
||||||
return 1, 1
|
|
||||||
}
|
|
||||||
|
|
||||||
/*func supportedIfFFmpeg() event.CapabilitySupportLevel {
|
|
||||||
if ffmpeg.Supported() {
|
|
||||||
return event.CapLevelPartialSupport
|
|
||||||
}
|
|
||||||
return event.CapLevelRejected
|
|
||||||
}*/
|
|
||||||
|
|
||||||
func capID() string {
|
|
||||||
base := "fi.mau.discord.capabilities.2025_11_20"
|
|
||||||
if ffmpeg.Supported() {
|
|
||||||
return base + "+ffmpeg"
|
|
||||||
}
|
|
||||||
return base
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: This limit is increased depending on user subscription status (Discord Nitro).
|
|
||||||
const MaxTextLength = 2000
|
|
||||||
|
|
||||||
// TODO: This limit is increased depending on user subscription status (Discord Nitro).
|
|
||||||
// TODO: Verify this figure (10 MiB).
|
|
||||||
const MaxFileSize = 10485760
|
|
||||||
|
|
||||||
var discordCaps = &event.RoomFeatures{
|
|
||||||
ID: capID(),
|
|
||||||
Reply: event.CapLevelFullySupported,
|
|
||||||
Reaction: event.CapLevelFullySupported,
|
|
||||||
Delete: event.CapLevelFullySupported,
|
|
||||||
Formatting: event.FormattingFeatureMap{
|
|
||||||
event.FmtBold: event.CapLevelFullySupported,
|
|
||||||
event.FmtItalic: event.CapLevelFullySupported,
|
|
||||||
event.FmtStrikethrough: event.CapLevelFullySupported,
|
|
||||||
event.FmtInlineCode: event.CapLevelFullySupported,
|
|
||||||
event.FmtCodeBlock: event.CapLevelFullySupported,
|
|
||||||
event.FmtSyntaxHighlighting: event.CapLevelFullySupported,
|
|
||||||
event.FmtBlockquote: event.CapLevelFullySupported,
|
|
||||||
event.FmtInlineLink: event.CapLevelFullySupported,
|
|
||||||
event.FmtUserLink: event.CapLevelUnsupported, // TODO: Support.
|
|
||||||
event.FmtRoomLink: event.CapLevelUnsupported, // TODO: Support.
|
|
||||||
event.FmtEventLink: event.CapLevelUnsupported, // TODO: Support.
|
|
||||||
event.FmtAtRoomMention: event.CapLevelUnsupported, // TODO: Support.
|
|
||||||
event.FmtUnorderedList: event.CapLevelFullySupported,
|
|
||||||
event.FmtOrderedList: event.CapLevelFullySupported,
|
|
||||||
event.FmtListStart: event.CapLevelFullySupported,
|
|
||||||
event.FmtListJumpValue: event.CapLevelUnsupported,
|
|
||||||
event.FmtCustomEmoji: event.CapLevelUnsupported, // TODO: Support.
|
|
||||||
},
|
|
||||||
File: event.FileFeatureMap{
|
|
||||||
event.MsgImage: {
|
|
||||||
MimeTypes: map[string]event.CapabilitySupportLevel{
|
|
||||||
"image/jpeg": event.CapLevelFullySupported,
|
|
||||||
"image/png": event.CapLevelFullySupported,
|
|
||||||
"image/gif": event.CapLevelFullySupported,
|
|
||||||
"image/webp": event.CapLevelFullySupported,
|
|
||||||
},
|
|
||||||
Caption: event.CapLevelFullySupported,
|
|
||||||
MaxCaptionLength: MaxTextLength,
|
|
||||||
MaxSize: MaxFileSize,
|
|
||||||
},
|
|
||||||
event.MsgVideo: {
|
|
||||||
MimeTypes: map[string]event.CapabilitySupportLevel{
|
|
||||||
"video/mp4": event.CapLevelFullySupported,
|
|
||||||
"video/webm": event.CapLevelFullySupported,
|
|
||||||
},
|
|
||||||
Caption: event.CapLevelFullySupported,
|
|
||||||
MaxCaptionLength: MaxTextLength,
|
|
||||||
MaxSize: MaxFileSize,
|
|
||||||
},
|
|
||||||
event.MsgAudio: {
|
|
||||||
MimeTypes: map[string]event.CapabilitySupportLevel{
|
|
||||||
"audio/mpeg": event.CapLevelFullySupported,
|
|
||||||
"audio/webm": event.CapLevelFullySupported,
|
|
||||||
"audio/wav": event.CapLevelFullySupported,
|
|
||||||
},
|
|
||||||
Caption: event.CapLevelFullySupported,
|
|
||||||
MaxCaptionLength: MaxTextLength,
|
|
||||||
MaxSize: MaxFileSize,
|
|
||||||
},
|
|
||||||
event.MsgFile: {
|
|
||||||
MimeTypes: map[string]event.CapabilitySupportLevel{
|
|
||||||
"*/*": event.CapLevelFullySupported,
|
|
||||||
},
|
|
||||||
Caption: event.CapLevelFullySupported,
|
|
||||||
MaxCaptionLength: MaxTextLength,
|
|
||||||
MaxSize: MaxFileSize,
|
|
||||||
},
|
|
||||||
event.CapMsgGIF: {
|
|
||||||
MimeTypes: map[string]event.CapabilitySupportLevel{
|
|
||||||
"image/gif": event.CapLevelFullySupported,
|
|
||||||
},
|
|
||||||
Caption: event.CapLevelFullySupported,
|
|
||||||
MaxCaptionLength: MaxTextLength,
|
|
||||||
MaxSize: MaxFileSize,
|
|
||||||
},
|
|
||||||
// TODO: Support voice messages.
|
|
||||||
},
|
|
||||||
LocationMessage: event.CapLevelUnsupported,
|
|
||||||
MaxTextLength: MaxTextLength,
|
|
||||||
// TODO: Support reactions.
|
|
||||||
// TODO: Support threads.
|
|
||||||
// TODO: Support editing.
|
|
||||||
// TODO: Support message deletion.
|
|
||||||
}
|
|
||||||
|
|
||||||
func (dc *DiscordClient) GetCapabilities(ctx context.Context, portal *bridgev2.Portal) *event.RoomFeatures {
|
|
||||||
return discordCaps
|
|
||||||
}
|
|
||||||
@@ -1,467 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 connector
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"errors"
|
|
||||||
"fmt"
|
|
||||||
"io"
|
|
||||||
"net/http"
|
|
||||||
"slices"
|
|
||||||
"sync"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
"github.com/rs/zerolog"
|
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
|
||||||
"maunium.net/go/mautrix/bridgev2/database"
|
|
||||||
"maunium.net/go/mautrix/bridgev2/networkid"
|
|
||||||
"maunium.net/go/mautrix/bridgev2/status"
|
|
||||||
|
|
||||||
"go.mau.fi/util/ptr"
|
|
||||||
|
|
||||||
"go.mau.fi/mautrix-discord/pkg/discordid"
|
|
||||||
)
|
|
||||||
|
|
||||||
type DiscordClient struct {
|
|
||||||
connector *DiscordConnector
|
|
||||||
usersFromReady map[string]*discordgo.User
|
|
||||||
UserLogin *bridgev2.UserLogin
|
|
||||||
Session *discordgo.Session
|
|
||||||
|
|
||||||
hasBegunSyncing bool
|
|
||||||
|
|
||||||
markedOpened map[string]time.Time
|
|
||||||
markedOpenedLock sync.Mutex
|
|
||||||
|
|
||||||
bridgeStateLock sync.Mutex
|
|
||||||
disconnectTimer *time.Timer
|
|
||||||
invalidAuthDetected bool
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordConnector) LoadUserLogin(ctx context.Context, login *bridgev2.UserLogin) error {
|
|
||||||
meta := login.Metadata.(*discordid.UserLoginMetadata)
|
|
||||||
|
|
||||||
session, err := NewDiscordSession(ctx, meta.Token)
|
|
||||||
login.Save(ctx)
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
cl := DiscordClient{
|
|
||||||
connector: d,
|
|
||||||
UserLogin: login,
|
|
||||||
Session: session,
|
|
||||||
}
|
|
||||||
cl.SetUp(ctx, meta)
|
|
||||||
|
|
||||||
login.Client = &cl
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var _ bridgev2.NetworkAPI = (*DiscordClient)(nil)
|
|
||||||
|
|
||||||
// SetUp performs basic bookkeeping and initialization that should be done
|
|
||||||
// immediately after a DiscordClient has been created.
|
|
||||||
//
|
|
||||||
// nil may be passed for meta, especially during provisioning where we need to
|
|
||||||
// connect to the Discord gateway, but don't have a UserLogin yet.
|
|
||||||
func (d *DiscordClient) SetUp(ctx context.Context, meta *discordid.UserLoginMetadata) {
|
|
||||||
// TODO: Turn this into a factory function like `NewDiscordClient`.
|
|
||||||
log := zerolog.Ctx(ctx)
|
|
||||||
|
|
||||||
// We'll have UserLogin metadata if this UserLogin is being loaded from the
|
|
||||||
// database, i.e. it hasn't just been provisioned.
|
|
||||||
if meta != nil {
|
|
||||||
if meta.HeartbeatSession.IsExpired() {
|
|
||||||
log.Info().Msg("Heartbeat session expired, creating a new one")
|
|
||||||
meta.HeartbeatSession = discordgo.NewHeartbeatSession()
|
|
||||||
}
|
|
||||||
meta.HeartbeatSession.BumpLastUsed()
|
|
||||||
d.Session.HeartbeatSession = meta.HeartbeatSession
|
|
||||||
}
|
|
||||||
|
|
||||||
d.markedOpened = make(map[string]time.Time)
|
|
||||||
d.resetBridgeStateTracking()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) Connect(ctx context.Context) {
|
|
||||||
log := zerolog.Ctx(ctx)
|
|
||||||
|
|
||||||
if d.Session == nil {
|
|
||||||
log.Error().Msg("No session present")
|
|
||||||
d.UserLogin.BridgeState.Send(status.BridgeState{
|
|
||||||
StateEvent: status.StateBadCredentials,
|
|
||||||
Error: DiscordNotLoggedIn,
|
|
||||||
UserAction: status.UserActionRelogin,
|
|
||||||
})
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
d.UserLogin.BridgeState.Send(status.BridgeState{
|
|
||||||
StateEvent: status.StateConnecting,
|
|
||||||
})
|
|
||||||
d.connectWithRetry(ctx, 0)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (cl *DiscordClient) handleDiscordEventSync(event any) {
|
|
||||||
go cl.handleDiscordEvent(event)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (cl *DiscordClient) connect(ctx context.Context) error {
|
|
||||||
log := zerolog.Ctx(ctx)
|
|
||||||
log.Info().Msg("Opening session")
|
|
||||||
|
|
||||||
cl.Session.EventHandler = cl.handleDiscordEventSync
|
|
||||||
|
|
||||||
err := cl.Session.Open()
|
|
||||||
for attempts := 0; errors.Is(err, discordgo.ErrImmediateDisconnect) && attempts < 2; attempts += 1 {
|
|
||||||
log.Err(err).Int("attempts", attempts).Msg("Immediately disconnected while trying to open session, trying again in 5 seconds")
|
|
||||||
time.Sleep(5 * time.Second)
|
|
||||||
err = cl.Session.Open()
|
|
||||||
}
|
|
||||||
if err != nil {
|
|
||||||
log.Err(err).Msg("Failed to connect to Discord")
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// Ensure that we actually have a user.
|
|
||||||
if !cl.IsLoggedIn() {
|
|
||||||
err := fmt.Errorf("unknown identity even after connecting to Discord")
|
|
||||||
log.Err(err).Msg("No Discord user available after connecting")
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
user := cl.Session.State.User
|
|
||||||
log.Info().Str("user_id", user.ID).Str("user_username", user.Username).Msg("Connected to Discord")
|
|
||||||
|
|
||||||
// Stash all of the users we received in READY so we can perform quick lookups
|
|
||||||
// keyed by user ID.
|
|
||||||
cl.usersFromReady = make(map[string]*discordgo.User)
|
|
||||||
for _, user := range cl.Session.State.Ready.Users {
|
|
||||||
cl.usersFromReady[user.ID] = user
|
|
||||||
}
|
|
||||||
|
|
||||||
// NOTE: We won't have a UserLogin during provisioning, because the UserLogin
|
|
||||||
// can only be properly constructed once we know what the Discord user ID is
|
|
||||||
// (i.e. we have returned from this function). We'll rely on the login
|
|
||||||
// process calling this method manually instead.
|
|
||||||
cl.BeginSyncingIfUserLoginPresent(ctx)
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) connectWithRetry(ctx context.Context, retryCount int) {
|
|
||||||
err := d.connect(ctx)
|
|
||||||
if err == nil || ctx.Err() != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if retryCount < 6 {
|
|
||||||
d.sendConnectFailure(err, false)
|
|
||||||
retryInSeconds := 2 << retryCount
|
|
||||||
zerolog.Ctx(ctx).Debug().Int("retry_in_seconds", retryInSeconds).Msg("Sleeping and retrying connection")
|
|
||||||
select {
|
|
||||||
case <-time.After(time.Duration(retryInSeconds) * time.Second):
|
|
||||||
case <-ctx.Done():
|
|
||||||
zerolog.Ctx(ctx).Info().Msg("Context canceled, exiting connect retry loop")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
d.connectWithRetry(ctx, retryCount+1)
|
|
||||||
} else {
|
|
||||||
d.sendConnectFailure(err, true)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) Disconnect() {
|
|
||||||
d.UserLogin.Log.Info().Msg("Disconnecting session")
|
|
||||||
d.Session.Close()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) IsLoggedIn() bool {
|
|
||||||
return d.Session != nil && d.Session.State != nil && d.Session.State.User != nil && d.Session.State.User.ID != ""
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) LogoutRemote(ctx context.Context) {
|
|
||||||
// FIXME(skip): Implement.
|
|
||||||
d.Disconnect()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (cl *DiscordClient) BeginSyncingIfUserLoginPresent(ctx context.Context) {
|
|
||||||
if cl.UserLogin == nil {
|
|
||||||
cl.connector.Bridge.Log.Warn().Msg("Not syncing just yet as we don't have a UserLogin")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if cl.hasBegunSyncing {
|
|
||||||
cl.connector.Bridge.Log.Warn().Msg("Not beginning sync more than once")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
cl.hasBegunSyncing = true
|
|
||||||
|
|
||||||
log := cl.UserLogin.Log
|
|
||||||
user := cl.Session.State.User
|
|
||||||
|
|
||||||
// FIXME(skip): Avatar.
|
|
||||||
cl.UserLogin.RemoteProfile = status.RemoteProfile{
|
|
||||||
Email: user.Email,
|
|
||||||
Phone: user.Phone,
|
|
||||||
Name: user.String(),
|
|
||||||
}
|
|
||||||
if err := cl.UserLogin.Save(ctx); err != nil {
|
|
||||||
log.Err(err).Msg("Couldn't save UserLogin after connecting")
|
|
||||||
}
|
|
||||||
|
|
||||||
go cl.syncPrivateChannels(ctx)
|
|
||||||
go cl.syncGuilds(ctx)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) syncPrivateChannels(ctx context.Context) {
|
|
||||||
dms := slices.Clone(d.Session.State.PrivateChannels)
|
|
||||||
// Only sync the top n private channels with recent activity.
|
|
||||||
slices.SortFunc(dms, func(a, b *discordgo.Channel) int {
|
|
||||||
ats, _ := discordgo.SnowflakeTimestamp(a.LastMessageID)
|
|
||||||
bts, _ := discordgo.SnowflakeTimestamp(b.LastMessageID)
|
|
||||||
return bts.Compare(ats)
|
|
||||||
})
|
|
||||||
|
|
||||||
// TODO(skip): This is startup_private_channel_create_limit. Support this in the config.
|
|
||||||
maxDms := 10
|
|
||||||
if maxDms > len(dms) {
|
|
||||||
maxDms = len(dms)
|
|
||||||
}
|
|
||||||
for _, dm := range dms[:maxDms] {
|
|
||||||
zerolog.Ctx(ctx).Debug().Str("channel_id", dm.ID).Msg("Syncing private channel with recent activity")
|
|
||||||
d.syncChannel(ctx, dm)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) canSeeGuildChannel(ctx context.Context, ch *discordgo.Channel) bool {
|
|
||||||
log := zerolog.Ctx(ctx).With().
|
|
||||||
Str("channel_id", ch.ID).
|
|
||||||
Int("channel_type", int(ch.Type)).
|
|
||||||
Str("action", "determine guild channel visbility").Logger()
|
|
||||||
|
|
||||||
sess := d.Session
|
|
||||||
myDiscordUserID := d.Session.State.User.ID
|
|
||||||
|
|
||||||
// To calculate guild channel visibility we need to know our effective permission
|
|
||||||
// bitmask, which can only be truly determined when we know which roles we have
|
|
||||||
// in the guild.
|
|
||||||
//
|
|
||||||
// To this end, make sure we have detailed information about ourselves in the
|
|
||||||
// cache ("state").
|
|
||||||
|
|
||||||
_, err := sess.State.Member(ch.GuildID, myDiscordUserID)
|
|
||||||
if errors.Is(err, discordgo.ErrStateNotFound) {
|
|
||||||
log.Debug().Msg("Fetching own membership in guild to check roles")
|
|
||||||
|
|
||||||
member, err := sess.GuildMember(ch.GuildID, myDiscordUserID)
|
|
||||||
if err != nil {
|
|
||||||
log.Warn().Err(err).Msg("Failed to get own membership in guild from server")
|
|
||||||
} else {
|
|
||||||
err = sess.State.MemberAdd(member)
|
|
||||||
if err != nil {
|
|
||||||
log.Warn().Err(err).Msg("Failed to add own membership in guild to cache")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if err != nil {
|
|
||||||
log.Warn().Err(err).Msg("Failed to get own membership in guild from cache")
|
|
||||||
}
|
|
||||||
|
|
||||||
err = sess.State.ChannelAdd(ch)
|
|
||||||
if err != nil {
|
|
||||||
log.Warn().Err(err).Msg("Failed to add channel to cache")
|
|
||||||
}
|
|
||||||
|
|
||||||
perms, err := sess.State.UserChannelPermissions(myDiscordUserID, ch.ID)
|
|
||||||
if err != nil {
|
|
||||||
log.Warn().Err(err).Msg("Failed to get permissions in channel to determine if it's bridgeable")
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
canView := perms&discordgo.PermissionViewChannel > 0
|
|
||||||
log.Debug().
|
|
||||||
Int64("permissions", perms).
|
|
||||||
Bool("channel_visible", canView).
|
|
||||||
Msg("Computed visibility of guild channel")
|
|
||||||
return canView
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) guildPortalKeyFromID(guildID string) networkid.PortalKey {
|
|
||||||
// TODO: Support configuring `split_portals`.
|
|
||||||
return networkid.PortalKey{
|
|
||||||
ID: discordid.MakeGuildPortalID(guildID),
|
|
||||||
Receiver: d.UserLogin.ID,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) makeAvatarForGuild(guild *discordgo.Guild) *bridgev2.Avatar {
|
|
||||||
return &bridgev2.Avatar{
|
|
||||||
ID: discordid.MakeAvatarID(guild.Icon),
|
|
||||||
Get: func(ctx context.Context) ([]byte, error) {
|
|
||||||
url := discordgo.EndpointGuildIcon(guild.ID, guild.Icon)
|
|
||||||
return simpleDownload(ctx, url, "guild icon")
|
|
||||||
},
|
|
||||||
Remove: guild.Icon == "",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) syncGuildSpace(ctx context.Context, guild *discordgo.Guild) error {
|
|
||||||
prt, err := d.connector.Bridge.GetPortalByKey(ctx, d.guildPortalKeyFromID(guild.ID))
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("couldn't get/create portal corresponding to guild: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
selfEvtSender := d.selfEventSender()
|
|
||||||
info := &bridgev2.ChatInfo{
|
|
||||||
Name: &guild.Name,
|
|
||||||
Topic: nil,
|
|
||||||
Members: &bridgev2.ChatMemberList{
|
|
||||||
MemberMap: map[networkid.UserID]bridgev2.ChatMember{selfEvtSender.Sender: {EventSender: selfEvtSender}},
|
|
||||||
|
|
||||||
// As recommended by the spec, prohibit normal events by setting
|
|
||||||
// `events_default` to a suitably high number.
|
|
||||||
PowerLevels: &bridgev2.PowerLevelOverrides{EventsDefault: ptr.Ptr(100)},
|
|
||||||
},
|
|
||||||
Avatar: d.makeAvatarForGuild(guild),
|
|
||||||
Type: ptr.Ptr(database.RoomTypeSpace),
|
|
||||||
}
|
|
||||||
|
|
||||||
if prt.MXID == "" {
|
|
||||||
err := prt.CreateMatrixRoom(ctx, d.UserLogin, info)
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("couldn't create room in order to materialize guild portal: %w", err)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
prt.UpdateInfo(ctx, info, d.UserLogin, nil, time.Time{})
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) syncGuilds(ctx context.Context) {
|
|
||||||
guildIDs := d.connector.Config.Guilds.BridgingGuildIDs
|
|
||||||
|
|
||||||
for _, guildID := range guildIDs {
|
|
||||||
log := zerolog.Ctx(ctx).With().
|
|
||||||
Str("guild_id", guildID).
|
|
||||||
Str("action", "sync guild").
|
|
||||||
Logger()
|
|
||||||
|
|
||||||
err := d.bridgeGuild(log.WithContext(ctx), guildID)
|
|
||||||
if err != nil {
|
|
||||||
log.Err(err).Msg("Couldn't bridge guild during sync")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) bridgeGuild(ctx context.Context, guildID string) error {
|
|
||||||
log := zerolog.Ctx(ctx)
|
|
||||||
|
|
||||||
guild, err := d.Session.State.Guild(guildID)
|
|
||||||
if errors.Is(err, discordgo.ErrStateNotFound) || guild == nil {
|
|
||||||
log.Err(err).Msg("Couldn't find guild, user isn't a member?")
|
|
||||||
return errors.New("couldn't find guild in state")
|
|
||||||
}
|
|
||||||
|
|
||||||
err = d.syncGuildSpace(ctx, guild)
|
|
||||||
if err != nil {
|
|
||||||
log.Err(err).Msg("Couldn't sync guild space portal")
|
|
||||||
return fmt.Errorf("couldn't sync guild space portal: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, guildCh := range guild.Channels {
|
|
||||||
if guildCh.Type != discordgo.ChannelTypeGuildText {
|
|
||||||
// TODO implement categories (spaces) and news channels
|
|
||||||
log.Trace().
|
|
||||||
Str("channel_id", guildCh.ID).
|
|
||||||
Int("channel_type", int(guildCh.Type)).
|
|
||||||
Msg("Not bridging guild channel due to type")
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
if !d.canSeeGuildChannel(ctx, guildCh) {
|
|
||||||
log.Trace().
|
|
||||||
Str("channel_id", guildCh.ID).
|
|
||||||
Int("channel_type", int(guildCh.Type)).
|
|
||||||
Msg("Not bridging guild channel that the user doesn't have permission to view")
|
|
||||||
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
d.syncChannel(ctx, guildCh)
|
|
||||||
}
|
|
||||||
|
|
||||||
log.Debug().Msg("Subscribing to guild after bridging")
|
|
||||||
err = d.Session.SubscribeGuild(discordgo.GuildSubscribeData{
|
|
||||||
GuildID: guild.ID,
|
|
||||||
Typing: true,
|
|
||||||
Activities: true,
|
|
||||||
Threads: true,
|
|
||||||
})
|
|
||||||
if err != nil {
|
|
||||||
d.handlePossible40002(err)
|
|
||||||
log.Warn().Err(err).Msg("Failed to subscribe to guild; proceeding")
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func simpleDownload(ctx context.Context, url, thing string) ([]byte, error) {
|
|
||||||
req, err := http.NewRequestWithContext(ctx, http.MethodGet, url, nil)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("failed to prepare request: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
resp, err := http.DefaultClient.Do(req)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("failed to download %s: %w", thing, err)
|
|
||||||
}
|
|
||||||
|
|
||||||
data, err := io.ReadAll(resp.Body)
|
|
||||||
_ = resp.Body.Close()
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("failed to read %s data: %w", thing, err)
|
|
||||||
}
|
|
||||||
return data, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) makeEventSenderWithID(userID string) bridgev2.EventSender {
|
|
||||||
return bridgev2.EventSender{
|
|
||||||
IsFromMe: userID == d.Session.State.User.ID,
|
|
||||||
SenderLogin: discordid.MakeUserLoginID(userID),
|
|
||||||
Sender: discordid.MakeUserID(userID),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) selfEventSender() bridgev2.EventSender {
|
|
||||||
return d.makeEventSenderWithID(d.Session.State.User.ID)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) makeEventSender(user *discordgo.User) bridgev2.EventSender {
|
|
||||||
return d.makeEventSenderWithID(user.ID)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) syncChannel(_ context.Context, ch *discordgo.Channel) {
|
|
||||||
d.connector.Bridge.QueueRemoteEvent(d.UserLogin, &DiscordChatResync{
|
|
||||||
Client: d,
|
|
||||||
channel: ch,
|
|
||||||
portalKey: discordid.MakePortalKey(ch, d.UserLogin.ID, true),
|
|
||||||
})
|
|
||||||
}
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 connector
|
|
||||||
|
|
||||||
import (
|
|
||||||
_ "embed"
|
|
||||||
|
|
||||||
up "go.mau.fi/util/configupgrade"
|
|
||||||
)
|
|
||||||
|
|
||||||
//go:embed example-config.yaml
|
|
||||||
var ExampleConfig string
|
|
||||||
|
|
||||||
type Config struct {
|
|
||||||
Guilds struct {
|
|
||||||
BridgingGuildIDs []string `yaml:"bridging_guild_ids"`
|
|
||||||
} `yaml:"guilds"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func upgradeConfig(helper up.Helper) {
|
|
||||||
helper.Copy(up.List, "guilds", "bridging_guild_ids")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordConnector) GetConfig() (example string, data any, upgrader up.Upgrader) {
|
|
||||||
return ExampleConfig, &d.Config, up.SimpleUpgrader(upgradeConfig)
|
|
||||||
}
|
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 connector
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
|
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
|
||||||
|
|
||||||
"go.mau.fi/mautrix-discord/pkg/msgconv"
|
|
||||||
)
|
|
||||||
|
|
||||||
type DiscordConnector struct {
|
|
||||||
Bridge *bridgev2.Bridge
|
|
||||||
Config Config
|
|
||||||
MsgConv *msgconv.MessageConverter
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
_ bridgev2.NetworkConnector = (*DiscordConnector)(nil)
|
|
||||||
_ bridgev2.MaxFileSizeingNetwork = (*DiscordConnector)(nil)
|
|
||||||
)
|
|
||||||
|
|
||||||
func (d *DiscordConnector) Init(bridge *bridgev2.Bridge) {
|
|
||||||
d.Bridge = bridge
|
|
||||||
d.MsgConv = msgconv.NewMessageConverter(bridge)
|
|
||||||
d.setUpProvisioningAPIs()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordConnector) SetMaxFileSize(maxSize int64) {
|
|
||||||
d.MsgConv.MaxFileSize = maxSize
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordConnector) Start(ctx context.Context) error {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordConnector) GetName() bridgev2.BridgeName {
|
|
||||||
return bridgev2.BridgeName{
|
|
||||||
DisplayName: "Discord",
|
|
||||||
NetworkURL: "https://discord.com",
|
|
||||||
NetworkIcon: "mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC",
|
|
||||||
NetworkID: "discord",
|
|
||||||
BeeperBridgeType: "discordgo",
|
|
||||||
DefaultPort: 29334,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,179 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 connector
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
"github.com/rs/zerolog"
|
|
||||||
"go.mau.fi/util/ptr"
|
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
|
||||||
"maunium.net/go/mautrix/bridgev2/database"
|
|
||||||
"maunium.net/go/mautrix/bridgev2/networkid"
|
|
||||||
|
|
||||||
"go.mau.fi/mautrix-discord/pkg/discordid"
|
|
||||||
)
|
|
||||||
|
|
||||||
type DiscordChatResync struct {
|
|
||||||
Client *DiscordClient
|
|
||||||
channel *discordgo.Channel
|
|
||||||
portalKey networkid.PortalKey
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
_ bridgev2.RemoteChatResyncWithInfo = (*DiscordChatResync)(nil)
|
|
||||||
_ bridgev2.RemoteChatResyncBackfill = (*DiscordChatResync)(nil)
|
|
||||||
_ bridgev2.RemoteEventThatMayCreatePortal = (*DiscordChatResync)(nil)
|
|
||||||
)
|
|
||||||
|
|
||||||
func (d *DiscordChatResync) AddLogContext(c zerolog.Context) zerolog.Context {
|
|
||||||
c = c.Str("channel_id", d.channel.ID).Int("channel_type", int(d.channel.Type))
|
|
||||||
return c
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordChatResync) GetPortalKey() networkid.PortalKey {
|
|
||||||
return d.portalKey
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordChatResync) GetSender() bridgev2.EventSender {
|
|
||||||
return bridgev2.EventSender{}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordChatResync) GetType() bridgev2.RemoteEventType {
|
|
||||||
return bridgev2.RemoteEventChatResync
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordChatResync) avatar(ctx context.Context) *bridgev2.Avatar {
|
|
||||||
ch := d.channel
|
|
||||||
|
|
||||||
// TODO make this configurable (ala workspace_avatar_in_rooms)
|
|
||||||
if !d.isPrivate() {
|
|
||||||
guild, err := d.Client.Session.State.Guild(ch.GuildID)
|
|
||||||
|
|
||||||
if err != nil || guild == nil {
|
|
||||||
zerolog.Ctx(ctx).Err(err).Msg("Couldn't look up guild in cache in order to create room avatar")
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
return d.Client.makeAvatarForGuild(guild)
|
|
||||||
}
|
|
||||||
|
|
||||||
return &bridgev2.Avatar{
|
|
||||||
ID: discordid.MakeAvatarID(ch.Icon),
|
|
||||||
Get: func(ctx context.Context) ([]byte, error) {
|
|
||||||
url := discordgo.EndpointGroupIcon(ch.ID, ch.Icon)
|
|
||||||
return simpleDownload(ctx, url, "group dm icon")
|
|
||||||
},
|
|
||||||
Remove: ch.Icon == "",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordChatResync) privateChannelMemberList() bridgev2.ChatMemberList {
|
|
||||||
ch := d.channel
|
|
||||||
|
|
||||||
var members bridgev2.ChatMemberList
|
|
||||||
members.IsFull = true
|
|
||||||
members.MemberMap = make(bridgev2.ChatMemberMap, len(ch.Recipients))
|
|
||||||
if len(ch.Recipients) > 0 {
|
|
||||||
selfEventSender := d.Client.selfEventSender()
|
|
||||||
|
|
||||||
// Private channels' array of participants doesn't include ourselves,
|
|
||||||
// so inject ourselves as a member.
|
|
||||||
members.MemberMap[selfEventSender.Sender] = bridgev2.ChatMember{EventSender: selfEventSender}
|
|
||||||
|
|
||||||
for _, recipient := range ch.Recipients {
|
|
||||||
sender := d.Client.makeEventSender(recipient)
|
|
||||||
members.MemberMap[sender.Sender] = bridgev2.ChatMember{EventSender: sender}
|
|
||||||
}
|
|
||||||
|
|
||||||
members.TotalMemberCount = len(ch.Recipients)
|
|
||||||
}
|
|
||||||
|
|
||||||
return members
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordChatResync) memberList() bridgev2.ChatMemberList {
|
|
||||||
if d.isPrivate() {
|
|
||||||
return d.privateChannelMemberList()
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO we're _always_ sending partial member lists for guilds; we can probably
|
|
||||||
// do better
|
|
||||||
selfEventSender := d.Client.selfEventSender()
|
|
||||||
|
|
||||||
return bridgev2.ChatMemberList{
|
|
||||||
IsFull: false,
|
|
||||||
MemberMap: map[networkid.UserID]bridgev2.ChatMember{
|
|
||||||
selfEventSender.Sender: {EventSender: selfEventSender},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordChatResync) isPrivate() bool {
|
|
||||||
ch := d.channel
|
|
||||||
return ch.Type == discordgo.ChannelTypeDM || ch.Type == discordgo.ChannelTypeGroupDM
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordChatResync) GetChatInfo(ctx context.Context, portal *bridgev2.Portal) (*bridgev2.ChatInfo, error) {
|
|
||||||
ch := d.channel
|
|
||||||
|
|
||||||
var roomType database.RoomType
|
|
||||||
|
|
||||||
switch ch.Type {
|
|
||||||
case discordgo.ChannelTypeDM:
|
|
||||||
roomType = database.RoomTypeDM
|
|
||||||
case discordgo.ChannelTypeGroupDM:
|
|
||||||
roomType = database.RoomTypeGroupDM
|
|
||||||
}
|
|
||||||
|
|
||||||
info := &bridgev2.ChatInfo{
|
|
||||||
Name: &ch.Name,
|
|
||||||
Members: ptr.Ptr(d.memberList()),
|
|
||||||
Avatar: d.avatar(ctx),
|
|
||||||
Type: &roomType,
|
|
||||||
CanBackfill: true,
|
|
||||||
ExtraUpdates: func(ctx context.Context, portal *bridgev2.Portal) (changed bool) {
|
|
||||||
meta := portal.Metadata.(*discordid.PortalMetadata)
|
|
||||||
if meta.GuildID != ch.GuildID {
|
|
||||||
meta.GuildID = ch.GuildID
|
|
||||||
changed = true
|
|
||||||
}
|
|
||||||
|
|
||||||
return
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
if !d.isPrivate() {
|
|
||||||
// Channel belongs to a guild; associate it with the respective space.
|
|
||||||
info.ParentID = ptr.Ptr(d.Client.guildPortalKeyFromID(ch.GuildID).ID)
|
|
||||||
}
|
|
||||||
|
|
||||||
return info, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordChatResync) ShouldCreatePortal() bool {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordChatResync) CheckNeedsBackfill(ctx context.Context, latestBridged *database.Message) (bool, error) {
|
|
||||||
if latestBridged == nil {
|
|
||||||
zerolog.Ctx(ctx).Debug().Str("channel_id", d.channel.ID).Msg("Haven't bridged any messages at all, not forward backfilling")
|
|
||||||
return false, nil
|
|
||||||
}
|
|
||||||
return latestBridged.ID < discordid.MakeMessageID(d.channel.LastMessageID), nil
|
|
||||||
}
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
# Configuration options related to Discord guilds (also known as "servers").
|
|
||||||
guilds:
|
|
||||||
# UNSTABLE: The IDs of the guilds to bridge. This is a stopgap measure
|
|
||||||
# during bridge development. If no guild IDs are specified, then no guilds
|
|
||||||
# are bridged at all.
|
|
||||||
bridging_guild_ids: []
|
|
||||||
@@ -1,242 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 connector
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"fmt"
|
|
||||||
"runtime/debug"
|
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
"github.com/rs/zerolog"
|
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
|
||||||
"maunium.net/go/mautrix/bridgev2/networkid"
|
|
||||||
|
|
||||||
"go.mau.fi/mautrix-discord/pkg/discordid"
|
|
||||||
)
|
|
||||||
|
|
||||||
type DiscordEventMeta struct {
|
|
||||||
Type bridgev2.RemoteEventType
|
|
||||||
PortalKey networkid.PortalKey
|
|
||||||
LogContext func(c zerolog.Context) zerolog.Context
|
|
||||||
}
|
|
||||||
|
|
||||||
func (em *DiscordEventMeta) AddLogContext(c zerolog.Context) zerolog.Context {
|
|
||||||
if em.LogContext == nil {
|
|
||||||
return c
|
|
||||||
}
|
|
||||||
c = em.LogContext(c)
|
|
||||||
return c
|
|
||||||
}
|
|
||||||
|
|
||||||
func (em *DiscordEventMeta) GetType() bridgev2.RemoteEventType {
|
|
||||||
return em.Type
|
|
||||||
}
|
|
||||||
|
|
||||||
func (em *DiscordEventMeta) GetPortalKey() networkid.PortalKey {
|
|
||||||
return em.PortalKey
|
|
||||||
}
|
|
||||||
|
|
||||||
type DiscordMessage struct {
|
|
||||||
*DiscordEventMeta
|
|
||||||
Data *discordgo.Message
|
|
||||||
Client *DiscordClient
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
_ bridgev2.RemoteMessage = (*DiscordMessage)(nil)
|
|
||||||
// _ bridgev2.RemoteEdit = (*DiscordMessage)(nil)
|
|
||||||
// _ bridgev2.RemoteMessageRemove = (*DiscordMessage)(nil)
|
|
||||||
)
|
|
||||||
|
|
||||||
func (m *DiscordMessage) ConvertMessage(ctx context.Context, portal *bridgev2.Portal, intent bridgev2.MatrixAPI) (*bridgev2.ConvertedMessage, error) {
|
|
||||||
return m.Client.connector.MsgConv.ToMatrix(ctx, portal, intent, m.Client.UserLogin, m.Client.Session, m.Data), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *DiscordMessage) GetID() networkid.MessageID {
|
|
||||||
return discordid.MakeMessageID(m.Data.ID)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *DiscordMessage) GetSender() bridgev2.EventSender {
|
|
||||||
return m.Client.makeEventSender(m.Data.Author)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) wrapDiscordMessage(evt *discordgo.MessageCreate) DiscordMessage {
|
|
||||||
return DiscordMessage{
|
|
||||||
DiscordEventMeta: &DiscordEventMeta{
|
|
||||||
Type: bridgev2.RemoteEventMessage,
|
|
||||||
PortalKey: networkid.PortalKey{
|
|
||||||
ID: discordid.MakePortalID(evt.ChannelID),
|
|
||||||
Receiver: d.UserLogin.ID,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Data: evt.Message,
|
|
||||||
Client: d,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
type DiscordReaction struct {
|
|
||||||
*DiscordEventMeta
|
|
||||||
Reaction *discordgo.MessageReaction
|
|
||||||
Client *DiscordClient
|
|
||||||
}
|
|
||||||
|
|
||||||
func (r *DiscordReaction) GetSender() bridgev2.EventSender {
|
|
||||||
return r.Client.makeEventSenderWithID(r.Reaction.UserID)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (r *DiscordReaction) GetTargetMessage() networkid.MessageID {
|
|
||||||
return discordid.MakeMessageID(r.Reaction.MessageID)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (r *DiscordReaction) GetRemovedEmojiID() networkid.EmojiID {
|
|
||||||
return discordid.MakeEmojiID(r.Reaction.Emoji.Name)
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
_ bridgev2.RemoteReaction = (*DiscordReaction)(nil)
|
|
||||||
_ bridgev2.RemoteReactionRemove = (*DiscordReaction)(nil)
|
|
||||||
_ bridgev2.RemoteReactionWithExtraContent = (*DiscordReaction)(nil)
|
|
||||||
)
|
|
||||||
|
|
||||||
func (r *DiscordReaction) GetReactionEmoji() (string, networkid.EmojiID) {
|
|
||||||
// name is either a grapheme cluster consisting of a Unicode emoji, or the
|
|
||||||
// name of a custom emoji.
|
|
||||||
name := r.Reaction.Emoji.Name
|
|
||||||
return name, discordid.MakeEmojiID(name)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (r *DiscordReaction) GetReactionExtraContent() map[string]any {
|
|
||||||
extra := make(map[string]any)
|
|
||||||
|
|
||||||
reaction := r.Reaction
|
|
||||||
emoji := reaction.Emoji
|
|
||||||
|
|
||||||
if emoji.ID != "" {
|
|
||||||
// The emoji is a custom emoji.
|
|
||||||
|
|
||||||
extra["fi.mau.discord.reaction"] = map[string]any{
|
|
||||||
"id": emoji.ID,
|
|
||||||
"name": emoji.Name,
|
|
||||||
// FIXME Handle custom emoji.
|
|
||||||
// "mxc": reaction,
|
|
||||||
}
|
|
||||||
|
|
||||||
wrappedShortcode := fmt.Sprintf(":%s:", reaction.Emoji.Name)
|
|
||||||
extra["com.beeper.reaction.shortcode"] = wrappedShortcode
|
|
||||||
}
|
|
||||||
|
|
||||||
return extra
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) wrapDiscordReaction(reaction *discordgo.MessageReaction, beingAdded bool) DiscordReaction {
|
|
||||||
evtType := bridgev2.RemoteEventReaction
|
|
||||||
if !beingAdded {
|
|
||||||
evtType = bridgev2.RemoteEventReactionRemove
|
|
||||||
}
|
|
||||||
|
|
||||||
return DiscordReaction{
|
|
||||||
DiscordEventMeta: &DiscordEventMeta{
|
|
||||||
Type: evtType,
|
|
||||||
PortalKey: networkid.PortalKey{
|
|
||||||
ID: discordid.MakePortalID(reaction.ChannelID),
|
|
||||||
Receiver: d.UserLogin.ID,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Reaction: reaction,
|
|
||||||
Client: d,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) handleDiscordEvent(rawEvt any) {
|
|
||||||
if d.UserLogin == nil {
|
|
||||||
// Our event handlers are able to assume that a UserLogin is available.
|
|
||||||
// We respond to special events like READY outside of this function,
|
|
||||||
// by virtue of methods like Session.Open only returning control flow
|
|
||||||
// after RESUME or READY.
|
|
||||||
log := zerolog.Ctx(context.TODO())
|
|
||||||
log.Trace().Msg("Dropping Discord event received before UserLogin creation")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if d.Session == nil || d.Session.State == nil || d.Session.State.User == nil {
|
|
||||||
// Our event handlers are able to assume that we've fully connected to the
|
|
||||||
// gateway.
|
|
||||||
d.UserLogin.Log.Debug().Msg("Dropping Discord event received before READY or RESUMED")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
defer func() {
|
|
||||||
err := recover()
|
|
||||||
if err != nil {
|
|
||||||
d.UserLogin.Log.Error().
|
|
||||||
Bytes(zerolog.ErrorStackFieldName, debug.Stack()).
|
|
||||||
Any(zerolog.ErrorFieldName, err).
|
|
||||||
Msg("Panic in Discord event handler")
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
|
|
||||||
log := d.UserLogin.Log.With().Str("action", "handle discord event").
|
|
||||||
Type("event_type", rawEvt).
|
|
||||||
Logger()
|
|
||||||
|
|
||||||
switch evt := rawEvt.(type) {
|
|
||||||
case *discordgo.Connect:
|
|
||||||
log.Info().Msg("Discord gateway connected")
|
|
||||||
d.markConnected()
|
|
||||||
case *discordgo.Disconnect:
|
|
||||||
log.Info().Msg("Discord gateway disconnected")
|
|
||||||
d.scheduleTransientDisconnect("")
|
|
||||||
case *discordgo.InvalidAuth:
|
|
||||||
log.Warn().Msg("Discord gateway reported invalid auth")
|
|
||||||
d.markInvalidAuth("You have been logged out of Discord, please reconnect")
|
|
||||||
case *discordgo.Ready:
|
|
||||||
log.Info().Msg("Received READY dispatch from discordgo")
|
|
||||||
d.markConnected()
|
|
||||||
case *discordgo.Resumed:
|
|
||||||
log.Info().Msg("Received RESUMED dispatch from discordgo")
|
|
||||||
d.markConnected()
|
|
||||||
case *discordgo.MessageCreate:
|
|
||||||
if evt.Author == nil {
|
|
||||||
log.Trace().Int("message_type", int(evt.Message.Type)).
|
|
||||||
Str("guild_id", evt.GuildID).
|
|
||||||
Str("message_id", evt.ID).
|
|
||||||
Str("channel_id", evt.ChannelID).
|
|
||||||
Msg("Dropping message that lacks an author")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
wrappedEvt := d.wrapDiscordMessage(evt)
|
|
||||||
d.UserLogin.Bridge.QueueRemoteEvent(d.UserLogin, &wrappedEvt)
|
|
||||||
case *discordgo.MessageReactionAdd:
|
|
||||||
wrappedEvt := d.wrapDiscordReaction(evt.MessageReaction, true)
|
|
||||||
d.UserLogin.Bridge.QueueRemoteEvent(d.UserLogin, &wrappedEvt)
|
|
||||||
case *discordgo.MessageReactionRemove:
|
|
||||||
wrappedEvt := d.wrapDiscordReaction(evt.MessageReaction, false)
|
|
||||||
d.UserLogin.Bridge.QueueRemoteEvent(d.UserLogin, &wrappedEvt)
|
|
||||||
// TODO case *discordgo.MessageReactionRemoveAll:
|
|
||||||
// TODO case *discordgo.MessageReactionRemoveEmoji: (needs impl. in discordgo)
|
|
||||||
case *discordgo.PresenceUpdate:
|
|
||||||
return
|
|
||||||
case *discordgo.Event:
|
|
||||||
// For presently unknown reasons sometimes discordgo won't unmarshal
|
|
||||||
// events into their proper corresponding structs.
|
|
||||||
if evt.Type == "PRESENCE_UPDATE" || evt.Type == "PASSIVE_UPDATE_V2" || evt.Type == "CONVERSATION_SUMMARY_UPDATE" {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
log.Debug().Str("event_type", evt.Type).Msg("Ignoring unknown Discord event")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,234 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 connector
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
"github.com/rs/zerolog"
|
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
|
||||||
"maunium.net/go/mautrix/bridgev2/database"
|
|
||||||
|
|
||||||
"go.mau.fi/mautrix-discord/pkg/discordid"
|
|
||||||
)
|
|
||||||
|
|
||||||
var (
|
|
||||||
_ bridgev2.ReactionHandlingNetworkAPI = (*DiscordClient)(nil)
|
|
||||||
_ bridgev2.RedactionHandlingNetworkAPI = (*DiscordClient)(nil)
|
|
||||||
_ bridgev2.EditHandlingNetworkAPI = (*DiscordClient)(nil)
|
|
||||||
_ bridgev2.ReadReceiptHandlingNetworkAPI = (*DiscordClient)(nil)
|
|
||||||
_ bridgev2.TypingHandlingNetworkAPI = (*DiscordClient)(nil)
|
|
||||||
)
|
|
||||||
|
|
||||||
func (d *DiscordClient) HandleMatrixMessage(ctx context.Context, msg *bridgev2.MatrixMessage) (*bridgev2.MatrixMessageResponse, error) {
|
|
||||||
if d.Session == nil {
|
|
||||||
return nil, bridgev2.ErrNotLoggedIn
|
|
||||||
}
|
|
||||||
|
|
||||||
portal := msg.Portal
|
|
||||||
guildID := portal.Metadata.(*discordid.PortalMetadata).GuildID
|
|
||||||
channelID := discordid.ParsePortalID(portal.ID)
|
|
||||||
|
|
||||||
sendReq, err := d.connector.MsgConv.ToDiscord(ctx, d.Session, msg)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
var options []discordgo.RequestOption
|
|
||||||
// TODO: When supporting threads (and not a bot user), send a thread referer.
|
|
||||||
options = append(options, discordgo.WithChannelReferer(guildID, channelID))
|
|
||||||
|
|
||||||
sentMsg, err := d.Session.ChannelMessageSendComplex(discordid.ParsePortalID(msg.Portal.ID), sendReq, options...)
|
|
||||||
if err != nil {
|
|
||||||
d.handlePossible40002(err)
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
sentMsgTimestamp, _ := discordgo.SnowflakeTimestamp(sentMsg.ID)
|
|
||||||
|
|
||||||
return &bridgev2.MatrixMessageResponse{
|
|
||||||
DB: &database.Message{
|
|
||||||
ID: discordid.MakeMessageID(sentMsg.ID),
|
|
||||||
SenderID: discordid.MakeUserID(sentMsg.Author.ID),
|
|
||||||
Timestamp: sentMsgTimestamp,
|
|
||||||
},
|
|
||||||
}, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) HandleMatrixEdit(ctx context.Context, msg *bridgev2.MatrixEdit) error {
|
|
||||||
//TODO implement me
|
|
||||||
panic("implement me")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) PreHandleMatrixReaction(ctx context.Context, reaction *bridgev2.MatrixReaction) (bridgev2.MatrixReactionPreResponse, error) {
|
|
||||||
key := reaction.Content.RelatesTo.Key
|
|
||||||
// TODO: Handle custom emoji.
|
|
||||||
|
|
||||||
return bridgev2.MatrixReactionPreResponse{
|
|
||||||
SenderID: discordid.UserLoginIDToUserID(d.UserLogin.ID),
|
|
||||||
EmojiID: discordid.MakeEmojiID(key),
|
|
||||||
}, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) HandleMatrixReaction(ctx context.Context, reaction *bridgev2.MatrixReaction) (*database.Reaction, error) {
|
|
||||||
relatesToKey := reaction.Content.RelatesTo.Key
|
|
||||||
portal := reaction.Portal
|
|
||||||
meta := portal.Metadata.(*discordid.PortalMetadata)
|
|
||||||
|
|
||||||
err := d.Session.MessageReactionAddUser(meta.GuildID, discordid.ParsePortalID(portal.ID), discordid.ParseMessageID(reaction.TargetMessage.ID), relatesToKey)
|
|
||||||
if err != nil {
|
|
||||||
d.handlePossible40002(err)
|
|
||||||
}
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) HandleMatrixReactionRemove(ctx context.Context, removal *bridgev2.MatrixReactionRemove) error {
|
|
||||||
removing := removal.TargetReaction
|
|
||||||
emojiID := removing.EmojiID
|
|
||||||
channelID := discordid.ParsePortalID(removing.Room.ID)
|
|
||||||
guildID := removal.Portal.Metadata.(*discordid.PortalMetadata).GuildID
|
|
||||||
|
|
||||||
err := d.Session.MessageReactionRemoveUser(guildID, channelID, discordid.ParseMessageID(removing.MessageID), discordid.ParseEmojiID(emojiID), discordid.ParseUserLoginID(d.UserLogin.ID))
|
|
||||||
if err != nil {
|
|
||||||
d.handlePossible40002(err)
|
|
||||||
}
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) HandleMatrixMessageRemove(ctx context.Context, removal *bridgev2.MatrixMessageRemove) error {
|
|
||||||
channelID := discordid.ParsePortalID(removal.Portal.ID)
|
|
||||||
messageID := discordid.ParseMessageID(removal.TargetMessage.ID)
|
|
||||||
err := d.Session.ChannelMessageDelete(channelID, messageID)
|
|
||||||
if err != nil {
|
|
||||||
d.handlePossible40002(err)
|
|
||||||
}
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) HandleMatrixReadReceipt(ctx context.Context, msg *bridgev2.MatrixReadReceipt) error {
|
|
||||||
// TODO: Support threads.
|
|
||||||
log := msg.Portal.Log.With().
|
|
||||||
Str("event_id", string(msg.EventID)).
|
|
||||||
Str("action", "matrix read receipt").Logger()
|
|
||||||
|
|
||||||
var targetMessageID string
|
|
||||||
|
|
||||||
// Figure out the ID of the Discord message that we'll mark as read. If the
|
|
||||||
// receipt didn't exactly correspond with a message, try finding one close
|
|
||||||
// by to use as the target.
|
|
||||||
if msg.ExactMessage != nil {
|
|
||||||
targetMessageID = discordid.ParseMessageID(msg.ExactMessage.ID)
|
|
||||||
log = log.With().
|
|
||||||
Str("message_id", targetMessageID).
|
|
||||||
Logger()
|
|
||||||
} else {
|
|
||||||
closestMessage, err := d.UserLogin.Bridge.DB.Message.GetLastPartAtOrBeforeTime(ctx, msg.Portal.PortalKey, msg.ReadUpTo)
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
log.Err(err).Msg("Failed to find closest message part")
|
|
||||||
return err
|
|
||||||
} else if closestMessage != nil {
|
|
||||||
// The read receipt didn't specify an exact message but we were able to
|
|
||||||
// find one close by.
|
|
||||||
|
|
||||||
targetMessageID = discordid.ParseMessageID(closestMessage.ID)
|
|
||||||
log = log.With().
|
|
||||||
Str("closest_message_id", targetMessageID).
|
|
||||||
Str("closest_event_id", closestMessage.MXID.String()).
|
|
||||||
Logger()
|
|
||||||
log.Debug().
|
|
||||||
Msg("Read receipt target event not found, using closest message")
|
|
||||||
} else {
|
|
||||||
log.Debug().Msg("Dropping read receipt: no messages found")
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: Support threads.
|
|
||||||
guildID := msg.Portal.Metadata.(*discordid.PortalMetadata).GuildID
|
|
||||||
channelID := discordid.ParsePortalID(msg.Portal.ID)
|
|
||||||
resp, err := d.Session.ChannelMessageAckNoToken(channelID, targetMessageID, discordgo.WithChannelReferer(guildID, channelID))
|
|
||||||
if err != nil {
|
|
||||||
d.handlePossible40002(err)
|
|
||||||
log.Err(err).Msg("Failed to send read receipt to Discord")
|
|
||||||
return err
|
|
||||||
} else if resp.Token != nil {
|
|
||||||
log.Debug().
|
|
||||||
Str("unexpected_resp_token", *resp.Token).
|
|
||||||
Msg("Marked message as read on Discord (and got unexpected non-nil token)")
|
|
||||||
} else {
|
|
||||||
log.Debug().Msg("Marked message as read on Discord")
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) viewingChannel(ctx context.Context, portal *bridgev2.Portal) error {
|
|
||||||
if portal.Metadata.(*discordid.PortalMetadata).GuildID != "" {
|
|
||||||
// Only private channels need this logic.
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
d.markedOpenedLock.Lock()
|
|
||||||
defer d.markedOpenedLock.Unlock()
|
|
||||||
|
|
||||||
channelID := discordid.ParsePortalID(portal.ID)
|
|
||||||
log := zerolog.Ctx(ctx).With().
|
|
||||||
Str("channel_id", channelID).Logger()
|
|
||||||
|
|
||||||
lastMarkedOpenedTs := d.markedOpened[channelID]
|
|
||||||
if lastMarkedOpenedTs.IsZero() {
|
|
||||||
d.markedOpened[channelID] = time.Now()
|
|
||||||
|
|
||||||
err := d.Session.MarkViewing(channelID)
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
d.handlePossible40002(err)
|
|
||||||
log.Error().Err(err).Msg("Failed to mark user as viewing channel")
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
log.Trace().Msg("Marked channel as being viewed")
|
|
||||||
} else {
|
|
||||||
log.Trace().Str("channel_id", channelID).
|
|
||||||
Msg("Already marked channel as viewed, not doing so")
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) HandleMatrixTyping(ctx context.Context, msg *bridgev2.MatrixTyping) error {
|
|
||||||
log := zerolog.Ctx(ctx)
|
|
||||||
|
|
||||||
// Don't mind if this fails.
|
|
||||||
_ = d.viewingChannel(ctx, msg.Portal)
|
|
||||||
|
|
||||||
guildID := msg.Portal.Metadata.(*discordid.PortalMetadata).GuildID
|
|
||||||
channelID := discordid.ParsePortalID(msg.Portal.ID)
|
|
||||||
// TODO: Support threads properly when sending the referer.
|
|
||||||
err := d.Session.ChannelTyping(channelID, discordgo.WithChannelReferer(guildID, channelID))
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
d.handlePossible40002(err)
|
|
||||||
log.Warn().Err(err).Msg("Failed to mark user as typing")
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
log.Debug().Msg("Marked user as typing")
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
@@ -1,64 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 connector
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"fmt"
|
|
||||||
|
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
|
||||||
)
|
|
||||||
|
|
||||||
const LoginStepIDComplete = "fi.mau.discord.login.complete"
|
|
||||||
|
|
||||||
func (d *DiscordConnector) GetLoginFlows() []bridgev2.LoginFlow {
|
|
||||||
return []bridgev2.LoginFlow{
|
|
||||||
{
|
|
||||||
ID: LoginFlowIDBrowser,
|
|
||||||
Name: "Browser",
|
|
||||||
Description: "Log in to your Discord account in a web browser.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
ID: LoginFlowIDRemoteAuth,
|
|
||||||
Name: "QR Code",
|
|
||||||
Description: "Scan a QR code with the Discord mobile app to log in.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
ID: LoginFlowIDToken,
|
|
||||||
Name: "Token",
|
|
||||||
Description: "Provide a Discord user token to connect with.",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordConnector) CreateLogin(ctx context.Context, user *bridgev2.User, flowID string) (bridgev2.LoginProcess, error) {
|
|
||||||
login := DiscordGenericLogin{
|
|
||||||
connector: d,
|
|
||||||
User: user,
|
|
||||||
}
|
|
||||||
|
|
||||||
switch flowID {
|
|
||||||
case LoginFlowIDToken:
|
|
||||||
return &DiscordTokenLogin{DiscordGenericLogin: &login}, nil
|
|
||||||
case LoginFlowIDRemoteAuth:
|
|
||||||
return &DiscordRemoteAuthLogin{DiscordGenericLogin: &login}, nil
|
|
||||||
case LoginFlowIDBrowser:
|
|
||||||
return &DiscordBrowserLogin{DiscordGenericLogin: &login}, nil
|
|
||||||
default:
|
|
||||||
return nil, fmt.Errorf("unknown discord login flow id")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,97 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 connector
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"fmt"
|
|
||||||
|
|
||||||
"github.com/rs/zerolog"
|
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
|
||||||
)
|
|
||||||
|
|
||||||
const LoginFlowIDBrowser = "token"
|
|
||||||
|
|
||||||
type DiscordBrowserLogin struct {
|
|
||||||
*DiscordGenericLogin
|
|
||||||
}
|
|
||||||
|
|
||||||
var _ bridgev2.LoginProcessCookies = (*DiscordBrowserLogin)(nil)
|
|
||||||
|
|
||||||
const ExtractDiscordTokenJS = `
|
|
||||||
new Promise((resolve) => {
|
|
||||||
let mautrixDiscordTokenCheckInterval
|
|
||||||
|
|
||||||
const iframe = document.createElement('iframe')
|
|
||||||
document.head.append(iframe)
|
|
||||||
|
|
||||||
mautrixDiscordTokenCheckInterval = setInterval(() => {
|
|
||||||
const token = iframe.contentWindow.localStorage.token
|
|
||||||
if (token) {
|
|
||||||
resolve({ token: token.slice(1, -1) })
|
|
||||||
clearInterval(mautrixDiscordTokenCheckInterval)
|
|
||||||
}
|
|
||||||
}, 200)
|
|
||||||
})
|
|
||||||
`
|
|
||||||
|
|
||||||
func (dl *DiscordBrowserLogin) Start(ctx context.Context) (*bridgev2.LoginStep, error) {
|
|
||||||
return &bridgev2.LoginStep{
|
|
||||||
Type: bridgev2.LoginStepTypeCookies,
|
|
||||||
StepID: "fi.mau.discord.cookies",
|
|
||||||
Instructions: "Log in with Discord.",
|
|
||||||
CookiesParams: &bridgev2.LoginCookiesParams{
|
|
||||||
URL: "https://discord.com/login",
|
|
||||||
UserAgent: "",
|
|
||||||
Fields: []bridgev2.LoginCookieField{{
|
|
||||||
ID: "token",
|
|
||||||
Required: true,
|
|
||||||
Sources: []bridgev2.LoginCookieFieldSource{{
|
|
||||||
Type: bridgev2.LoginCookieTypeSpecial,
|
|
||||||
Name: "fi.mau.discord.token",
|
|
||||||
}},
|
|
||||||
}},
|
|
||||||
ExtractJS: ExtractDiscordTokenJS,
|
|
||||||
},
|
|
||||||
}, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (dl *DiscordBrowserLogin) SubmitCookies(ctx context.Context, cookies map[string]string) (*bridgev2.LoginStep, error) {
|
|
||||||
log := zerolog.Ctx(ctx)
|
|
||||||
|
|
||||||
token := cookies["token"]
|
|
||||||
if token == "" {
|
|
||||||
log.Error().Msg("Received empty token")
|
|
||||||
return nil, fmt.Errorf("received empty token")
|
|
||||||
}
|
|
||||||
log.Debug().Msg("Logging in with submitted cookie")
|
|
||||||
|
|
||||||
ul, err := dl.FinalizeCreatingLogin(ctx, token)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("couldn't log in via browser: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return &bridgev2.LoginStep{
|
|
||||||
Type: bridgev2.LoginStepTypeComplete,
|
|
||||||
StepID: LoginStepIDComplete,
|
|
||||||
Instructions: dl.CompleteInstructions(),
|
|
||||||
CompleteParams: &bridgev2.LoginCompleteParams{
|
|
||||||
UserLoginID: ul.ID,
|
|
||||||
UserLogin: ul,
|
|
||||||
},
|
|
||||||
}, nil
|
|
||||||
}
|
|
||||||
@@ -1,120 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 connector
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"fmt"
|
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
"github.com/rs/zerolog"
|
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
|
||||||
"maunium.net/go/mautrix/bridgev2/database"
|
|
||||||
|
|
||||||
"go.mau.fi/mautrix-discord/pkg/discordid"
|
|
||||||
)
|
|
||||||
|
|
||||||
// DiscordGenericLogin is embedded within each struct that implements
|
|
||||||
// bridgev2.LoginProcess in order to encapsulate the common behavior that needs
|
|
||||||
// to occur after procuring a valid user token. Namely, creating a gateway
|
|
||||||
// connection to Discord and an associated UserLogin to wrap things up.
|
|
||||||
//
|
|
||||||
// It also implements a baseline Cancel method that closes the gateway
|
|
||||||
// connection.
|
|
||||||
type DiscordGenericLogin struct {
|
|
||||||
User *bridgev2.User
|
|
||||||
connector *DiscordConnector
|
|
||||||
|
|
||||||
Session *discordgo.Session
|
|
||||||
|
|
||||||
// The Discord user we've authenticated as. This is only non-nil if
|
|
||||||
// a call to FinalizeCreatingLogin has succeeded.
|
|
||||||
DiscordUser *discordgo.User
|
|
||||||
}
|
|
||||||
|
|
||||||
func (dl *DiscordGenericLogin) FinalizeCreatingLogin(ctx context.Context, token string) (*bridgev2.UserLogin, error) {
|
|
||||||
session, err := NewDiscordSession(ctx, token)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("couldn't create discord session: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
client := DiscordClient{
|
|
||||||
connector: dl.connector,
|
|
||||||
Session: session,
|
|
||||||
}
|
|
||||||
client.SetUp(ctx, nil)
|
|
||||||
|
|
||||||
err = client.connect(ctx)
|
|
||||||
if err != nil {
|
|
||||||
dl.Cancel()
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
// At this point we've opened a WebSocket connection to the gateway, received
|
|
||||||
// a READY packet, and know who we are.
|
|
||||||
user := session.State.User
|
|
||||||
dl.DiscordUser = user
|
|
||||||
|
|
||||||
dl.Session = session
|
|
||||||
ul, err := dl.User.NewLogin(ctx, &database.UserLogin{
|
|
||||||
ID: discordid.MakeUserLoginID(user.ID),
|
|
||||||
Metadata: &discordid.UserLoginMetadata{
|
|
||||||
Token: token,
|
|
||||||
HeartbeatSession: session.HeartbeatSession,
|
|
||||||
},
|
|
||||||
}, &bridgev2.NewLoginParams{
|
|
||||||
LoadUserLogin: func(ctx context.Context, login *bridgev2.UserLogin) error {
|
|
||||||
login.Client = &client
|
|
||||||
client.UserLogin = login
|
|
||||||
|
|
||||||
// Only now that we have a UserLogin can we begin syncing.
|
|
||||||
client.BeginSyncingIfUserLoginPresent(ctx)
|
|
||||||
return nil
|
|
||||||
},
|
|
||||||
DeleteOnConflict: true,
|
|
||||||
DontReuseExisting: false,
|
|
||||||
})
|
|
||||||
if err != nil {
|
|
||||||
dl.Cancel()
|
|
||||||
return nil, fmt.Errorf("couldn't create login: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
zerolog.Ctx(ctx).Info().
|
|
||||||
Str("user_id", user.ID).
|
|
||||||
Str("user_username", user.Username).
|
|
||||||
Msg("Logged in to Discord")
|
|
||||||
|
|
||||||
// We already opened the gateway session before creating the UserLogin,
|
|
||||||
// which means the initial READY/CONNECT event was dropped. Send Connected
|
|
||||||
// here so infra gets login status for new logins.
|
|
||||||
client.markConnected()
|
|
||||||
|
|
||||||
return ul, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (dl *DiscordGenericLogin) CompleteInstructions() string {
|
|
||||||
return fmt.Sprintf("Logged in as %s", dl.DiscordUser.Username)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (dl *DiscordGenericLogin) Cancel() {
|
|
||||||
if dl.Session != nil {
|
|
||||||
dl.User.Log.Debug().Msg("Login cancelled, closing session")
|
|
||||||
err := dl.Session.Close()
|
|
||||||
if err != nil {
|
|
||||||
dl.User.Log.Err(err).Msg("Couldn't close Discord session in response to login cancellation")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,141 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 connector
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"fmt"
|
|
||||||
|
|
||||||
"github.com/rs/zerolog"
|
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
|
||||||
|
|
||||||
"go.mau.fi/mautrix-discord/pkg/remoteauth"
|
|
||||||
)
|
|
||||||
|
|
||||||
const LoginFlowIDRemoteAuth = "qr"
|
|
||||||
|
|
||||||
type DiscordRemoteAuthLogin struct {
|
|
||||||
*DiscordGenericLogin
|
|
||||||
|
|
||||||
hasClosed bool
|
|
||||||
remoteAuthClient *remoteauth.Client
|
|
||||||
qrChan chan string
|
|
||||||
doneChan chan struct{}
|
|
||||||
}
|
|
||||||
|
|
||||||
var _ bridgev2.LoginProcessDisplayAndWait = (*DiscordRemoteAuthLogin)(nil)
|
|
||||||
|
|
||||||
func (dl *DiscordRemoteAuthLogin) Start(ctx context.Context) (*bridgev2.LoginStep, error) {
|
|
||||||
log := zerolog.Ctx(ctx)
|
|
||||||
|
|
||||||
log.Debug().Msg("Creating new remoteauth client")
|
|
||||||
client, err := remoteauth.New()
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("couldn't create Discord remoteauth client: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
dl.remoteAuthClient = client
|
|
||||||
|
|
||||||
dl.qrChan = make(chan string)
|
|
||||||
dl.doneChan = make(chan struct{})
|
|
||||||
|
|
||||||
log.Info().Msg("Starting the QR code login process")
|
|
||||||
err = client.Dial(ctx, dl.qrChan, dl.doneChan)
|
|
||||||
if err != nil {
|
|
||||||
log.Err(err).Msg("Couldn't connect to Discord remoteauth websocket")
|
|
||||||
close(dl.qrChan)
|
|
||||||
close(dl.doneChan)
|
|
||||||
return nil, fmt.Errorf("couldn't connect to Discord remoteauth websocket: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
log.Info().Msg("Waiting for QR code to be ready")
|
|
||||||
|
|
||||||
select {
|
|
||||||
case qrCode := <-dl.qrChan:
|
|
||||||
log.Info().Int("qr_code_data_len", len(qrCode)).Msg("Received QR code, creating login step")
|
|
||||||
|
|
||||||
return &bridgev2.LoginStep{
|
|
||||||
Type: bridgev2.LoginStepTypeDisplayAndWait,
|
|
||||||
StepID: "fi.mau.discord.qr",
|
|
||||||
Instructions: "On your phone, find “Scan QR Code” in Discord’s settings.",
|
|
||||||
DisplayAndWaitParams: &bridgev2.LoginDisplayAndWaitParams{
|
|
||||||
Type: bridgev2.LoginDisplayTypeQR,
|
|
||||||
Data: qrCode,
|
|
||||||
},
|
|
||||||
}, nil
|
|
||||||
case <-ctx.Done():
|
|
||||||
log.Debug().Msg("Cancelled while waiting for QR code")
|
|
||||||
return nil, nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Wait implements bridgev2.LoginProcessDisplayAndWait.
|
|
||||||
func (dl *DiscordRemoteAuthLogin) Wait(ctx context.Context) (*bridgev2.LoginStep, error) {
|
|
||||||
if dl.doneChan == nil {
|
|
||||||
panic("can't wait for discord remoteauth without a doneChan")
|
|
||||||
}
|
|
||||||
|
|
||||||
log := zerolog.Ctx(ctx)
|
|
||||||
|
|
||||||
log.Debug().Msg("Waiting for remoteauth")
|
|
||||||
select {
|
|
||||||
case <-dl.doneChan:
|
|
||||||
user, err := dl.remoteAuthClient.Result()
|
|
||||||
if err != nil {
|
|
||||||
log.Err(err).Msg("Discord remoteauth failed")
|
|
||||||
return nil, fmt.Errorf("discord remoteauth failed: %w", err)
|
|
||||||
}
|
|
||||||
log.Debug().Msg("Discord remoteauth succeeded")
|
|
||||||
|
|
||||||
return dl.finalizeSuccessfulLogin(ctx, user)
|
|
||||||
case <-ctx.Done():
|
|
||||||
log.Debug().Msg("Cancelled while waiting for remoteauth to complete")
|
|
||||||
return nil, nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (dl *DiscordRemoteAuthLogin) finalizeSuccessfulLogin(ctx context.Context, user remoteauth.User) (*bridgev2.LoginStep, error) {
|
|
||||||
ul, err := dl.FinalizeCreatingLogin(ctx, user.Token)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("couldn't log in via remoteauth: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return &bridgev2.LoginStep{
|
|
||||||
Type: bridgev2.LoginStepTypeComplete,
|
|
||||||
StepID: LoginStepIDComplete,
|
|
||||||
Instructions: dl.CompleteInstructions(),
|
|
||||||
CompleteParams: &bridgev2.LoginCompleteParams{
|
|
||||||
UserLoginID: ul.ID,
|
|
||||||
UserLogin: ul,
|
|
||||||
},
|
|
||||||
}, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (dl *DiscordRemoteAuthLogin) Cancel() {
|
|
||||||
// Tolerate multiple attempts to cancel.
|
|
||||||
if dl.hasClosed {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
dl.hasClosed = true
|
|
||||||
|
|
||||||
dl.User.Log.Debug().Msg("Discord remoteauth cancelled")
|
|
||||||
dl.DiscordGenericLogin.Cancel()
|
|
||||||
|
|
||||||
// remoteauth.Client doesn't seem to expose a cancellation method.
|
|
||||||
close(dl.doneChan)
|
|
||||||
close(dl.qrChan)
|
|
||||||
}
|
|
||||||
@@ -1,72 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 connector
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"fmt"
|
|
||||||
|
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
|
||||||
)
|
|
||||||
|
|
||||||
const LoginFlowIDToken = "DEBUG_USERINPUT_token"
|
|
||||||
|
|
||||||
type DiscordTokenLogin struct {
|
|
||||||
*DiscordGenericLogin
|
|
||||||
}
|
|
||||||
|
|
||||||
var _ bridgev2.LoginProcessUserInput = (*DiscordTokenLogin)(nil)
|
|
||||||
|
|
||||||
func (dl *DiscordTokenLogin) Start(ctx context.Context) (*bridgev2.LoginStep, error) {
|
|
||||||
return &bridgev2.LoginStep{
|
|
||||||
Type: bridgev2.LoginStepTypeUserInput,
|
|
||||||
StepID: "fi.mau.discord.enter_token",
|
|
||||||
UserInputParams: &bridgev2.LoginUserInputParams{
|
|
||||||
Fields: []bridgev2.LoginInputDataField{
|
|
||||||
{
|
|
||||||
Type: bridgev2.LoginInputFieldTypePassword,
|
|
||||||
ID: "token",
|
|
||||||
Name: "Discord user account token",
|
|
||||||
// Cribbed from https://regex101.com/r/1GMR0y/1.
|
|
||||||
Pattern: `^(mfa\.[a-z0-9_-]{20,})|([a-z0-9_-]{23,28}\.[a-z0-9_-]{6,7}\.[a-z0-9_-]{27})$`,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (dl *DiscordTokenLogin) SubmitUserInput(ctx context.Context, input map[string]string) (*bridgev2.LoginStep, error) {
|
|
||||||
token := input["token"]
|
|
||||||
if token == "" {
|
|
||||||
return nil, fmt.Errorf("no token provided")
|
|
||||||
}
|
|
||||||
|
|
||||||
ul, err := dl.FinalizeCreatingLogin(ctx, token)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("couldn't login from token: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return &bridgev2.LoginStep{
|
|
||||||
Type: bridgev2.LoginStepTypeComplete,
|
|
||||||
StepID: LoginStepIDComplete,
|
|
||||||
Instructions: dl.CompleteInstructions(),
|
|
||||||
CompleteParams: &bridgev2.LoginCompleteParams{
|
|
||||||
UserLoginID: ul.ID,
|
|
||||||
UserLogin: ul,
|
|
||||||
},
|
|
||||||
}, nil
|
|
||||||
}
|
|
||||||
@@ -1,206 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 connector
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"errors"
|
|
||||||
"net/http"
|
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
"github.com/rs/zerolog"
|
|
||||||
"go.mau.fi/util/exhttp"
|
|
||||||
"maunium.net/go/mautrix"
|
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
|
||||||
|
|
||||||
"go.mau.fi/mautrix-discord/pkg/discordid"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
ErrCodeNotConnected = "FI.MAU.DISCORD.NOT_CONNECTED"
|
|
||||||
ErrCodeAlreadyLoggedIn = "FI.MAU.DISCORD.ALREADY_LOGGED_IN"
|
|
||||||
ErrCodeAlreadyConnected = "FI.MAU.DISCORD.ALREADY_CONNECTED"
|
|
||||||
ErrCodeConnectFailed = "FI.MAU.DISCORD.CONNECT_FAILED"
|
|
||||||
ErrCodeDisconnectFailed = "FI.MAU.DISCORD.DISCONNECT_FAILED"
|
|
||||||
ErrCodeGuildBridgeFailed = "M_UNKNOWN"
|
|
||||||
ErrCodeGuildUnbridgeFailed = "M_UNKNOWN"
|
|
||||||
ErrCodeGuildNotBridged = "FI.MAU.DISCORD.GUILD_NOT_BRIDGED"
|
|
||||||
ErrCodeLoginPrepareFailed = "FI.MAU.DISCORD.LOGIN_PREPARE_FAILED"
|
|
||||||
ErrCodeLoginConnectionFailed = "FI.MAU.DISCORD.LOGIN_CONN_FAILED"
|
|
||||||
ErrCodeLoginFailed = "FI.MAU.DISCORD.LOGIN_FAILED"
|
|
||||||
ErrCodePostLoginConnFailed = "FI.MAU.DISCORD.POST_LOGIN_CONNECTION_FAILED"
|
|
||||||
)
|
|
||||||
|
|
||||||
type ProvisioningAPI struct {
|
|
||||||
log zerolog.Logger
|
|
||||||
connector *DiscordConnector
|
|
||||||
prov bridgev2.IProvisioningAPI
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordConnector) setUpProvisioningAPIs() error {
|
|
||||||
c, ok := d.Bridge.Matrix.(bridgev2.MatrixConnectorWithProvisioning)
|
|
||||||
if !ok {
|
|
||||||
return errors.New("matrix connector doesn't support provisioning; not setting up")
|
|
||||||
}
|
|
||||||
|
|
||||||
prov := c.GetProvisioning()
|
|
||||||
r := prov.GetRouter()
|
|
||||||
if r == nil {
|
|
||||||
return errors.New("matrix connector's provisioning api didn't return a router")
|
|
||||||
}
|
|
||||||
|
|
||||||
log := d.Bridge.Log.With().Str("component", "provisioning").Logger()
|
|
||||||
p := &ProvisioningAPI{
|
|
||||||
connector: d,
|
|
||||||
log: log,
|
|
||||||
prov: prov,
|
|
||||||
}
|
|
||||||
|
|
||||||
// NOTE: aim to provide backwards compatibility with v1 provisioning APIs
|
|
||||||
r.HandleFunc("GET /v1/guilds", p.makeHandler(p.guildsList))
|
|
||||||
r.HandleFunc("POST /v1/guilds/{guildID}", p.makeHandler(p.bridgeGuild))
|
|
||||||
r.HandleFunc("DELETE /v1/guilds/{guildID}", p.makeHandler(p.unbridgeGuild))
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
type guildEntry struct {
|
|
||||||
ID string `json:"id"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
|
|
||||||
// TODO v1 uses `id.ContentURI` whereas we stuff the discord cdn url here
|
|
||||||
AvatarURL string `json:"avatar_url"`
|
|
||||||
|
|
||||||
// v1-compatible fields:
|
|
||||||
MXID string `json:"mxid"`
|
|
||||||
AutoBridge bool `json:"auto_bridge_channels"`
|
|
||||||
BridgingMode string `json:"bridging_mode"`
|
|
||||||
|
|
||||||
Available bool `json:"available"`
|
|
||||||
}
|
|
||||||
type respGuildsList struct {
|
|
||||||
Guilds []guildEntry `json:"guilds"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *ProvisioningAPI) makeHandler(handler func(http.ResponseWriter, *http.Request, *bridgev2.UserLogin, *DiscordClient)) http.HandlerFunc {
|
|
||||||
return func(w http.ResponseWriter, r *http.Request) {
|
|
||||||
user := p.prov.GetUser(r)
|
|
||||||
logins := user.GetUserLogins()
|
|
||||||
|
|
||||||
if len(logins) < 1 {
|
|
||||||
mautrix.RespError{
|
|
||||||
ErrCode: ErrCodeNotConnected,
|
|
||||||
Err: "user has no logins",
|
|
||||||
}.Write(w)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
login := logins[0]
|
|
||||||
client := login.Client.(*DiscordClient)
|
|
||||||
|
|
||||||
handler(w, r, login, client)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *ProvisioningAPI) guildsList(w http.ResponseWriter, r *http.Request, login *bridgev2.UserLogin, client *DiscordClient) {
|
|
||||||
p.log.Info().Str("login_id", discordid.ParseUserLoginID(login.ID)).Msg("guilds list requested via provisioning api")
|
|
||||||
|
|
||||||
var resp respGuildsList
|
|
||||||
resp.Guilds = []guildEntry{}
|
|
||||||
for _, guild := range client.Session.State.Guilds {
|
|
||||||
resp.Guilds = append(resp.Guilds, guildEntry{
|
|
||||||
ID: guild.ID,
|
|
||||||
Name: guild.Name,
|
|
||||||
AvatarURL: discordgo.EndpointGuildIcon(guild.ID, guild.Icon),
|
|
||||||
|
|
||||||
BridgingMode: "everything",
|
|
||||||
|
|
||||||
Available: !guild.Unavailable,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
exhttp.WriteJSONResponse(w, 200, resp)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *ProvisioningAPI) bridgeGuild(w http.ResponseWriter, r *http.Request, login *bridgev2.UserLogin, client *DiscordClient) {
|
|
||||||
guildID := r.PathValue("guildID")
|
|
||||||
if guildID == "" {
|
|
||||||
mautrix.MInvalidParam.WithMessage("no guild id").Write(w)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
p.log.Info().
|
|
||||||
Str("login_id", discordid.ParseUserLoginID(login.ID)).
|
|
||||||
Str("guild_id", guildID).
|
|
||||||
Msg("requested to bridge guild via provisioning api")
|
|
||||||
|
|
||||||
// TODO detect guild already bridged
|
|
||||||
go client.bridgeGuild(context.TODO(), guildID)
|
|
||||||
|
|
||||||
exhttp.WriteJSONResponse(w, 201, nil)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *ProvisioningAPI) unbridgeGuild(w http.ResponseWriter, r *http.Request, login *bridgev2.UserLogin, client *DiscordClient) {
|
|
||||||
guildID := r.PathValue("guildID")
|
|
||||||
if guildID == "" {
|
|
||||||
mautrix.MInvalidParam.WithMessage("no guild id").Write(w)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
p.log.Info().
|
|
||||||
Str("login_id", discordid.ParseUserLoginID(login.ID)).
|
|
||||||
Str("guild_id", guildID).
|
|
||||||
Msg("requested to unbridge guild via provisioning api")
|
|
||||||
|
|
||||||
ctx := context.TODO()
|
|
||||||
|
|
||||||
portalKey := client.guildPortalKeyFromID(guildID)
|
|
||||||
portal, err := p.connector.Bridge.GetExistingPortalByKey(ctx, portalKey)
|
|
||||||
if err != nil {
|
|
||||||
p.log.Err(err).Msg("Failed to get guild portal")
|
|
||||||
mautrix.MUnknown.WithMessage("failed to get portal: %v", err).Write(w)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if portal == nil || portal.MXID == "" {
|
|
||||||
mautrix.RespError{
|
|
||||||
ErrCode: ErrCodeGuildNotBridged,
|
|
||||||
Err: "guild is not bridged",
|
|
||||||
}.Write(w)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
children, err := p.connector.Bridge.GetChildPortals(ctx, portalKey)
|
|
||||||
if err != nil {
|
|
||||||
p.log.Err(err).Msg("Failed to get child portals")
|
|
||||||
mautrix.MUnknown.WithMessage("failed to get children: %v", err).Write(w)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
portalsToDelete := append(children, portal)
|
|
||||||
bridgev2.DeleteManyPortals(ctx, portalsToDelete, func(portal *bridgev2.Portal, del bool, err error) {
|
|
||||||
p.log.Err(err).
|
|
||||||
Stringer("portal_mxid", portal.MXID).
|
|
||||||
Bool("delete_room", del).
|
|
||||||
Msg("Failed during portal cleanup")
|
|
||||||
})
|
|
||||||
|
|
||||||
p.log.Info().Int("children", len(children)).Msg("Finished unbridging")
|
|
||||||
exhttp.WriteJSONResponse(w, 200, map[string]any{
|
|
||||||
"success": true,
|
|
||||||
"deleted_portals": len(children) + 1,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
@@ -1,44 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 connector
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"fmt"
|
|
||||||
"strings"
|
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
"github.com/rs/zerolog"
|
|
||||||
)
|
|
||||||
|
|
||||||
func NewDiscordSession(ctx context.Context, token string) (*discordgo.Session, error) {
|
|
||||||
log := zerolog.Ctx(ctx)
|
|
||||||
|
|
||||||
session, err := discordgo.New(token)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("couldn't create discord session: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set up logging.
|
|
||||||
session.LogLevel = discordgo.LogInformational
|
|
||||||
session.Logger = func(msgL, caller int, format string, a ...any) {
|
|
||||||
// FIXME(skip): Hook up zerolog properly.
|
|
||||||
log.Debug().Str("component", "discordgo").Msgf(strings.TrimSpace(format), a...) // zerolog-allow-msgf
|
|
||||||
}
|
|
||||||
|
|
||||||
return session, nil
|
|
||||||
}
|
|
||||||
@@ -1,71 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 connector
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"fmt"
|
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
"github.com/rs/zerolog"
|
|
||||||
"go.mau.fi/util/ptr"
|
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
|
||||||
"maunium.net/go/mautrix/bridgev2/networkid"
|
|
||||||
|
|
||||||
"go.mau.fi/mautrix-discord/pkg/discordid"
|
|
||||||
)
|
|
||||||
|
|
||||||
func (d *DiscordClient) IsThisUser(ctx context.Context, userID networkid.UserID) bool {
|
|
||||||
// We define `UserID`s and `UserLoginID`s to be interchangeable, i.e. they map
|
|
||||||
// directly to Discord user IDs ("snowflakes"), so we can perform a direct comparison.
|
|
||||||
return userID == discordid.UserLoginIDToUserID(d.UserLogin.ID)
|
|
||||||
}
|
|
||||||
|
|
||||||
func makeUserAvatar(u *discordgo.User) *bridgev2.Avatar {
|
|
||||||
url := u.AvatarURL("256")
|
|
||||||
|
|
||||||
return &bridgev2.Avatar{
|
|
||||||
ID: discordid.MakeAvatarID(url),
|
|
||||||
Get: func(ctx context.Context) ([]byte, error) {
|
|
||||||
return simpleDownload(ctx, url, "user avatar")
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *DiscordClient) GetUserInfo(ctx context.Context, ghost *bridgev2.Ghost) (*bridgev2.UserInfo, error) {
|
|
||||||
log := zerolog.Ctx(ctx)
|
|
||||||
|
|
||||||
if ghost.ID == "" {
|
|
||||||
log.Warn().Msg("Tried to get user info for ghost with no ID")
|
|
||||||
return nil, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// FIXME(skip): This won't work for users in guilds.
|
|
||||||
|
|
||||||
user, ok := d.usersFromReady[discordid.ParseUserID(ghost.ID)]
|
|
||||||
if !ok {
|
|
||||||
log.Error().Str("ghost_id", discordid.ParseUserID(ghost.ID)).Msg("Couldn't find corresponding user from READY for ghost")
|
|
||||||
return nil, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
return &bridgev2.UserInfo{
|
|
||||||
Identifiers: []string{fmt.Sprintf("discord:%s", user.ID)},
|
|
||||||
Name: ptr.Ptr(user.DisplayName()),
|
|
||||||
Avatar: makeUserAvatar(user),
|
|
||||||
IsBot: &user.Bot,
|
|
||||||
}, nil
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 discordid
|
|
||||||
|
|
||||||
import "github.com/bwmarrin/discordgo"
|
|
||||||
|
|
||||||
type PortalMetadata struct {
|
|
||||||
// The ID of the Discord guild that the channel corresponding to this portal
|
|
||||||
// belongs to.
|
|
||||||
//
|
|
||||||
// For private channels (DMs and group DMs), this will be the zero value
|
|
||||||
// (an empty string).
|
|
||||||
GuildID string `json:"guild_id"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type UserLoginMetadata struct {
|
|
||||||
Token string `json:"token"`
|
|
||||||
HeartbeatSession discordgo.HeartbeatSession `json:"heartbeat_session"`
|
|
||||||
}
|
|
||||||
@@ -1,112 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 discordid
|
|
||||||
|
|
||||||
import (
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
"maunium.net/go/mautrix/bridgev2/networkid"
|
|
||||||
)
|
|
||||||
|
|
||||||
func MakeUserID(userID string) networkid.UserID {
|
|
||||||
return networkid.UserID(userID)
|
|
||||||
}
|
|
||||||
|
|
||||||
func ParseUserID(userID networkid.UserID) string {
|
|
||||||
return string(userID)
|
|
||||||
}
|
|
||||||
|
|
||||||
func MakeUserLoginID(userID string) networkid.UserLoginID {
|
|
||||||
return networkid.UserLoginID(userID)
|
|
||||||
}
|
|
||||||
|
|
||||||
func ParseUserLoginID(id networkid.UserLoginID) string {
|
|
||||||
return string(id)
|
|
||||||
}
|
|
||||||
|
|
||||||
// UserLoginIDToUserID converts a UserLoginID to a UserID. In Discord, both
|
|
||||||
// are the same underlying snowflake.
|
|
||||||
func UserLoginIDToUserID(id networkid.UserLoginID) networkid.UserID {
|
|
||||||
return networkid.UserID(id)
|
|
||||||
}
|
|
||||||
|
|
||||||
func MakePortalID(channelID string) networkid.PortalID {
|
|
||||||
return networkid.PortalID(channelID)
|
|
||||||
}
|
|
||||||
|
|
||||||
func ParsePortalID(portalID networkid.PortalID) string {
|
|
||||||
return string(portalID)
|
|
||||||
}
|
|
||||||
|
|
||||||
func MakeMessageID(messageID string) networkid.MessageID {
|
|
||||||
return networkid.MessageID(messageID)
|
|
||||||
}
|
|
||||||
|
|
||||||
func ParseMessageID(messageID networkid.MessageID) string {
|
|
||||||
return string(messageID)
|
|
||||||
}
|
|
||||||
|
|
||||||
func MakeEmojiID(emojiName string) networkid.EmojiID {
|
|
||||||
return networkid.EmojiID(emojiName)
|
|
||||||
}
|
|
||||||
|
|
||||||
func ParseEmojiID(emojiID networkid.EmojiID) string {
|
|
||||||
return string(emojiID)
|
|
||||||
}
|
|
||||||
|
|
||||||
func MakeAvatarID(avatar string) networkid.AvatarID {
|
|
||||||
return networkid.AvatarID(avatar)
|
|
||||||
}
|
|
||||||
|
|
||||||
// The string prepended to [networkid.PortalKey]s identifying spaces that
|
|
||||||
// bridge Discord guilds.
|
|
||||||
//
|
|
||||||
// Every Discord guild created before August 2017 contained a channel
|
|
||||||
// having _the same ID as the guild itself_. This channel also functioned as
|
|
||||||
// the "default channel" in that incoming members would view this channel by
|
|
||||||
// default. It was also impossible to delete.
|
|
||||||
//
|
|
||||||
// After this date, these "default channels" became deletable, and fresh guilds
|
|
||||||
// were no longer created with a channel that exactly corresponded to the guild
|
|
||||||
// ID.
|
|
||||||
//
|
|
||||||
// To accommodate Discord guilds created before this API change that have also
|
|
||||||
// never deleted the default channel, we need a way to distinguish between the
|
|
||||||
// guild and the default channel, as we wouldn't be able to bridge the guild
|
|
||||||
// as a space otherwise.
|
|
||||||
//
|
|
||||||
// "*" was chosen as the asterisk character is used to filter by guilds in
|
|
||||||
// the quick switcher (in Discord's first-party clients).
|
|
||||||
//
|
|
||||||
// For more information, see: https://discord.com/developers/docs/change-log#breaking-change-default-channels:~:text=New%20guilds%20will%20no%20longer.
|
|
||||||
const GuildPortalKeySigil = "*"
|
|
||||||
|
|
||||||
func MakeGuildPortalID(guildID string) networkid.PortalID {
|
|
||||||
return networkid.PortalID(GuildPortalKeySigil + guildID)
|
|
||||||
}
|
|
||||||
|
|
||||||
func MakePortalKey(ch *discordgo.Channel, userLoginID networkid.UserLoginID, wantReceiver bool) (key networkid.PortalKey) {
|
|
||||||
key.ID = MakePortalID(ch.ID)
|
|
||||||
if wantReceiver {
|
|
||||||
key.Receiver = userLoginID
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
func MakePortalKeyWithID(channelID string) (key networkid.PortalKey) {
|
|
||||||
key.ID = MakePortalID(channelID)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
@@ -1,147 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 msgconv
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"encoding/json"
|
|
||||||
"errors"
|
|
||||||
"fmt"
|
|
||||||
"io"
|
|
||||||
"net/http"
|
|
||||||
"net/url"
|
|
||||||
"os"
|
|
||||||
"path"
|
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
"github.com/rs/zerolog"
|
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
|
||||||
"maunium.net/go/mautrix/event"
|
|
||||||
"maunium.net/go/mautrix/id"
|
|
||||||
)
|
|
||||||
|
|
||||||
type ReuploadedAttachment struct {
|
|
||||||
MXC id.ContentURIString
|
|
||||||
File *event.EncryptedFileInfo
|
|
||||||
Size int
|
|
||||||
FileName string
|
|
||||||
MimeType string
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *MessageConverter) ReuploadUnknownMedia(
|
|
||||||
ctx context.Context,
|
|
||||||
url string,
|
|
||||||
allowEncryption bool,
|
|
||||||
) (*ReuploadedAttachment, error) {
|
|
||||||
return d.ReuploadMedia(ctx, url, "", "", -1, allowEncryption)
|
|
||||||
}
|
|
||||||
|
|
||||||
func mib(size int64) float64 {
|
|
||||||
return float64(size) / 1024 / 1024
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *MessageConverter) ReuploadMedia(
|
|
||||||
ctx context.Context,
|
|
||||||
downloadURL string,
|
|
||||||
mimeType string,
|
|
||||||
fileName string,
|
|
||||||
estimatedSize int,
|
|
||||||
allowEncryption bool,
|
|
||||||
) (*ReuploadedAttachment, error) {
|
|
||||||
if fileName == "" {
|
|
||||||
parsedURL, err := url.Parse(downloadURL)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("couldn't parse URL to detect file name: %w", err)
|
|
||||||
}
|
|
||||||
fileName = path.Base(parsedURL.Path)
|
|
||||||
}
|
|
||||||
|
|
||||||
sess := ctx.Value(contextKeyDiscordClient).(*discordgo.Session)
|
|
||||||
httpClient := sess.Client
|
|
||||||
intent := ctx.Value(contextKeyIntent).(bridgev2.MatrixAPI)
|
|
||||||
var roomID id.RoomID
|
|
||||||
if allowEncryption {
|
|
||||||
roomID = ctx.Value(contextKeyPortal).(*bridgev2.Portal).MXID
|
|
||||||
}
|
|
||||||
|
|
||||||
req, err := http.NewRequest(http.MethodGet, downloadURL, nil)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if sess.IsUser {
|
|
||||||
for key, value := range discordgo.DroidDownloadHeaders {
|
|
||||||
req.Header.Set(key, value)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
resp, err := httpClient.Do(req)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
defer resp.Body.Close()
|
|
||||||
if resp.StatusCode > 300 {
|
|
||||||
errBody, _ := io.ReadAll(io.LimitReader(resp.Body, 4096))
|
|
||||||
logEvt := zerolog.Ctx(ctx).Error().
|
|
||||||
Str("media_url", downloadURL).
|
|
||||||
Int("status_code", resp.StatusCode)
|
|
||||||
if json.Valid(errBody) {
|
|
||||||
logEvt.RawJSON("error_json", errBody)
|
|
||||||
} else {
|
|
||||||
logEvt.Bytes("error_body", errBody)
|
|
||||||
}
|
|
||||||
logEvt.Msg("Media download failed")
|
|
||||||
return nil, fmt.Errorf("%w: unexpected status code %d", bridgev2.ErrMediaDownloadFailed, resp.StatusCode)
|
|
||||||
} else if resp.ContentLength > d.MaxFileSize {
|
|
||||||
return nil, fmt.Errorf("%w (%.2f MiB > %.2f MiB)", bridgev2.ErrMediaTooLarge, mib(resp.ContentLength), mib(d.MaxFileSize))
|
|
||||||
}
|
|
||||||
|
|
||||||
requireFile := mimeType == ""
|
|
||||||
var size int64
|
|
||||||
mxc, file, err := intent.UploadMediaStream(ctx, roomID, int64(estimatedSize), requireFile, func(file io.Writer) (*bridgev2.FileStreamResult, error) {
|
|
||||||
var mbe *http.MaxBytesError
|
|
||||||
size, err = io.Copy(file, http.MaxBytesReader(nil, resp.Body, d.MaxFileSize))
|
|
||||||
if err != nil {
|
|
||||||
if errors.As(err, &mbe) {
|
|
||||||
return nil, fmt.Errorf("%w (over %.2f MiB)", bridgev2.ErrMediaTooLarge, mib(d.MaxFileSize))
|
|
||||||
}
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if mimeType == "" {
|
|
||||||
mimeBuf := make([]byte, 512)
|
|
||||||
n, err := file.(*os.File).ReadAt(mimeBuf, 0)
|
|
||||||
if err != nil && !errors.Is(err, io.EOF) {
|
|
||||||
return nil, fmt.Errorf("couldn't read file for mime detection: %w", err)
|
|
||||||
}
|
|
||||||
mimeType = http.DetectContentType(mimeBuf[:n])
|
|
||||||
}
|
|
||||||
return &bridgev2.FileStreamResult{
|
|
||||||
FileName: fileName,
|
|
||||||
MimeType: mimeType,
|
|
||||||
}, nil
|
|
||||||
})
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
return &ReuploadedAttachment{
|
|
||||||
Size: int(size),
|
|
||||||
MXC: mxc,
|
|
||||||
File: file,
|
|
||||||
FileName: fileName,
|
|
||||||
MimeType: mimeType,
|
|
||||||
}, nil
|
|
||||||
}
|
|
||||||
@@ -1,97 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 msgconv
|
|
||||||
|
|
||||||
import (
|
|
||||||
"regexp"
|
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
)
|
|
||||||
|
|
||||||
type BridgeEmbedType int
|
|
||||||
|
|
||||||
const (
|
|
||||||
EmbedUnknown BridgeEmbedType = iota
|
|
||||||
EmbedRich
|
|
||||||
EmbedLinkPreview
|
|
||||||
EmbedVideo
|
|
||||||
)
|
|
||||||
|
|
||||||
const discordLinkPattern = `https?://[^<\p{Zs}\x{feff}]*[^"'),.:;\]\p{Zs}\x{feff}]`
|
|
||||||
|
|
||||||
// Discord links start with http:// or https://, contain at least two characters afterwards,
|
|
||||||
// don't contain < or whitespace anywhere, and don't end with "'),.:;]
|
|
||||||
//
|
|
||||||
// Zero-width whitespace is mostly in the Format category and is allowed, except \uFEFF isn't for some reason
|
|
||||||
var discordLinkRegex = regexp.MustCompile(discordLinkPattern)
|
|
||||||
var discordLinkRegexFull = regexp.MustCompile("^" + discordLinkPattern + "$")
|
|
||||||
|
|
||||||
func isActuallyLinkPreview(embed *discordgo.MessageEmbed) bool {
|
|
||||||
// Sending YouTube links creates a video embed, but we want to bridge it as a URL preview,
|
|
||||||
// so this is a hacky way to detect those.
|
|
||||||
return embed.Video != nil && embed.Video.ProxyURL == ""
|
|
||||||
}
|
|
||||||
|
|
||||||
// isPlainGifMessage returns whether a Discord message consists entirely of a
|
|
||||||
// link to a GIF-like animated image. A single embed must also be present on the
|
|
||||||
// message.
|
|
||||||
//
|
|
||||||
// This helps replicate Discord first-party client behavior, where the link is
|
|
||||||
// hidden when these same conditions are fulfilled.
|
|
||||||
func isPlainGifMessage(msg *discordgo.Message) bool {
|
|
||||||
if len(msg.Embeds) != 1 {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
embed := msg.Embeds[0]
|
|
||||||
isGifVideo := embed.Type == discordgo.EmbedTypeGifv && embed.Video != nil
|
|
||||||
isGifImage := embed.Type == discordgo.EmbedTypeImage && embed.Image == nil && embed.Thumbnail != nil && embed.Title == ""
|
|
||||||
contentIsOnlyURL := msg.Content == embed.URL || discordLinkRegexFull.MatchString(msg.Content)
|
|
||||||
return contentIsOnlyURL && (isGifVideo || isGifImage)
|
|
||||||
}
|
|
||||||
|
|
||||||
// getEmbedType determines how a Discord embed should be bridged to Matrix by
|
|
||||||
// returning a BridgeEmbedType.
|
|
||||||
func getEmbedType(msg *discordgo.Message, embed *discordgo.MessageEmbed) BridgeEmbedType {
|
|
||||||
switch embed.Type {
|
|
||||||
case discordgo.EmbedTypeLink, discordgo.EmbedTypeArticle:
|
|
||||||
return EmbedLinkPreview
|
|
||||||
case discordgo.EmbedTypeVideo:
|
|
||||||
if isActuallyLinkPreview(embed) {
|
|
||||||
return EmbedLinkPreview
|
|
||||||
}
|
|
||||||
return EmbedVideo
|
|
||||||
case discordgo.EmbedTypeGifv:
|
|
||||||
return EmbedVideo
|
|
||||||
case discordgo.EmbedTypeImage:
|
|
||||||
if msg != nil && isPlainGifMessage(msg) {
|
|
||||||
return EmbedVideo
|
|
||||||
} else if embed.Image == nil && embed.Thumbnail != nil {
|
|
||||||
return EmbedLinkPreview
|
|
||||||
}
|
|
||||||
return EmbedRich
|
|
||||||
case discordgo.EmbedTypeRich:
|
|
||||||
return EmbedRich
|
|
||||||
default:
|
|
||||||
return EmbedUnknown
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var hackyReplyPattern = regexp.MustCompile(`^\*\*\[Replying to]\(https://discord.com/channels/(\d+)/(\d+)/(\d+)\)`)
|
|
||||||
|
|
||||||
func isReplyEmbed(embed *discordgo.MessageEmbed) bool {
|
|
||||||
return hackyReplyPattern.MatchString(embed.Description)
|
|
||||||
}
|
|
||||||
@@ -1,648 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 msgconv
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"fmt"
|
|
||||||
"html"
|
|
||||||
"strconv"
|
|
||||||
"strings"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
"github.com/rs/zerolog"
|
|
||||||
"go.mau.fi/util/exmaps"
|
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
|
||||||
"maunium.net/go/mautrix/bridgev2/networkid"
|
|
||||||
"maunium.net/go/mautrix/event"
|
|
||||||
"maunium.net/go/mautrix/format"
|
|
||||||
|
|
||||||
"go.mau.fi/mautrix-discord/pkg/discordid"
|
|
||||||
)
|
|
||||||
|
|
||||||
type contextKey int
|
|
||||||
|
|
||||||
const (
|
|
||||||
contextKeyPortal contextKey = iota
|
|
||||||
contextKeyIntent
|
|
||||||
contextKeyUserLogin
|
|
||||||
contextKeyDiscordClient
|
|
||||||
)
|
|
||||||
|
|
||||||
func (mc *MessageConverter) ToMatrix(
|
|
||||||
ctx context.Context,
|
|
||||||
portal *bridgev2.Portal,
|
|
||||||
intent bridgev2.MatrixAPI,
|
|
||||||
source *bridgev2.UserLogin,
|
|
||||||
session *discordgo.Session,
|
|
||||||
msg *discordgo.Message,
|
|
||||||
) *bridgev2.ConvertedMessage {
|
|
||||||
ctx = context.WithValue(ctx, contextKeyUserLogin, source)
|
|
||||||
ctx = context.WithValue(ctx, contextKeyIntent, intent)
|
|
||||||
ctx = context.WithValue(ctx, contextKeyPortal, portal)
|
|
||||||
ctx = context.WithValue(ctx, contextKeyDiscordClient, session)
|
|
||||||
predictedLength := len(msg.Attachments) + len(msg.StickerItems)
|
|
||||||
if msg.Content != "" {
|
|
||||||
predictedLength++
|
|
||||||
}
|
|
||||||
parts := make([]*bridgev2.ConvertedMessagePart, 0, predictedLength)
|
|
||||||
if textPart := mc.renderDiscordTextMessage(ctx, intent, portal, msg, source); textPart != nil {
|
|
||||||
parts = append(parts, textPart)
|
|
||||||
}
|
|
||||||
|
|
||||||
ctx = zerolog.Ctx(ctx).With().
|
|
||||||
Str("action", "convert discord message to matrix").
|
|
||||||
Str("message_id", msg.ID).
|
|
||||||
Logger().WithContext(ctx)
|
|
||||||
log := zerolog.Ctx(ctx)
|
|
||||||
handledIDs := make(exmaps.Set[string])
|
|
||||||
|
|
||||||
for _, att := range msg.Attachments {
|
|
||||||
if !handledIDs.Add(att.ID) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
log := log.With().Str("attachment_id", att.ID).Logger()
|
|
||||||
if part := mc.renderDiscordAttachment(log.WithContext(ctx), att); part != nil {
|
|
||||||
parts = append(parts, part)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, sticker := range msg.StickerItems {
|
|
||||||
if !handledIDs.Add(sticker.ID) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
log := log.With().Str("sticker_id", sticker.ID).Logger()
|
|
||||||
if part := mc.renderDiscordSticker(log.WithContext(ctx), sticker); part != nil {
|
|
||||||
parts = append(parts, part)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for i, embed := range msg.Embeds {
|
|
||||||
// Ignore non-video embeds, they're handled in convertDiscordTextMessage
|
|
||||||
if getEmbedType(msg, embed) != EmbedVideo {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
// Discord deduplicates embeds by URL. It makes things easier for us too.
|
|
||||||
if !handledIDs.Add(embed.URL) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
log := log.With().
|
|
||||||
Str("computed_embed_type", "video").
|
|
||||||
Str("embed_type", string(embed.Type)).
|
|
||||||
Int("embed_index", i).
|
|
||||||
Logger()
|
|
||||||
part := mc.renderDiscordVideoEmbed(log.WithContext(ctx), embed)
|
|
||||||
if part != nil {
|
|
||||||
parts = append(parts, part)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(parts) == 0 && msg.Thread != nil {
|
|
||||||
parts = append(parts, &bridgev2.ConvertedMessagePart{Type: event.EventMessage, Content: &event.MessageEventContent{
|
|
||||||
MsgType: event.MsgText,
|
|
||||||
Body: fmt.Sprintf("Created a thread: %s", msg.Thread.Name),
|
|
||||||
}})
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO(skip): Add extra metadata.
|
|
||||||
// for _, part := range parts {
|
|
||||||
// puppet.addWebhookMeta(part, msg)
|
|
||||||
// puppet.addMemberMeta(part, msg)
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Assign incrementing part IDs.
|
|
||||||
for i, part := range parts {
|
|
||||||
part.ID = networkid.PartID(strconv.Itoa(i))
|
|
||||||
}
|
|
||||||
|
|
||||||
converted := &bridgev2.ConvertedMessage{Parts: parts}
|
|
||||||
// TODO This is sorta gross; it might be worth bundling these parameters
|
|
||||||
// into a struct.
|
|
||||||
mc.tryAddingReplyToConvertedMessage(
|
|
||||||
ctx,
|
|
||||||
converted,
|
|
||||||
portal,
|
|
||||||
source,
|
|
||||||
msg,
|
|
||||||
)
|
|
||||||
|
|
||||||
return converted
|
|
||||||
}
|
|
||||||
|
|
||||||
const forwardTemplateHTML = `<blockquote>
|
|
||||||
<p>↷ Forwarded</p>
|
|
||||||
%s
|
|
||||||
<p>%s</p>
|
|
||||||
</blockquote>`
|
|
||||||
|
|
||||||
const msgInteractionTemplateHTML = `<blockquote>
|
|
||||||
<a href="https://matrix.to/#/%s">%s</a> used <font color="#3771bb">/%s</font>
|
|
||||||
</blockquote>`
|
|
||||||
|
|
||||||
const msgComponentTemplateHTML = `<p>This message contains interactive elements. Use the Discord app to interact with the message.</p>`
|
|
||||||
|
|
||||||
func (mc *MessageConverter) tryAddingReplyToConvertedMessage(
|
|
||||||
ctx context.Context,
|
|
||||||
converted *bridgev2.ConvertedMessage,
|
|
||||||
portal *bridgev2.Portal,
|
|
||||||
source *bridgev2.UserLogin,
|
|
||||||
msg *discordgo.Message,
|
|
||||||
) {
|
|
||||||
ref := msg.MessageReference
|
|
||||||
if ref == nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
// TODO: Support threads.
|
|
||||||
|
|
||||||
log := zerolog.Ctx(ctx).With().
|
|
||||||
Str("referenced_channel_id", ref.ChannelID).
|
|
||||||
Str("referenced_guild_id", ref.GuildID).
|
|
||||||
Str("referenced_message_id", ref.MessageID).Logger()
|
|
||||||
|
|
||||||
// The portal containing the message that was replied to.
|
|
||||||
targetPortal := portal
|
|
||||||
if ref.ChannelID != discordid.ParsePortalID(portal.ID) {
|
|
||||||
var err error
|
|
||||||
targetPortal, err = mc.Bridge.GetPortalByKey(ctx, discordid.MakePortalKeyWithID(ref.ChannelID))
|
|
||||||
if err != nil {
|
|
||||||
log.Err(err).Msg("Failed to get cross-room reply portal; proceeding")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if targetPortal == nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
messageID := discordid.MakeMessageID(ref.MessageID)
|
|
||||||
repliedToMatrixMsg, err := mc.Bridge.DB.Message.GetFirstPartByID(ctx, source.ID, messageID)
|
|
||||||
if err != nil {
|
|
||||||
log.Err(err).Msg("Failed to query database for first message part; proceeding")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if repliedToMatrixMsg == nil {
|
|
||||||
log.Debug().Msg("Couldn't find a first message part for reply target; proceeding")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
converted.ReplyTo = &networkid.MessageOptionalPartID{
|
|
||||||
MessageID: repliedToMatrixMsg.ID,
|
|
||||||
PartID: &repliedToMatrixMsg.PartID,
|
|
||||||
}
|
|
||||||
converted.ReplyToRoom = targetPortal.PortalKey
|
|
||||||
converted.ReplyToUser = repliedToMatrixMsg.SenderID
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mc *MessageConverter) renderDiscordTextMessage(ctx context.Context, intent bridgev2.MatrixAPI, portal *bridgev2.Portal, msg *discordgo.Message, source *bridgev2.UserLogin) *bridgev2.ConvertedMessagePart {
|
|
||||||
log := zerolog.Ctx(ctx)
|
|
||||||
switch msg.Type {
|
|
||||||
case discordgo.MessageTypeCall:
|
|
||||||
return &bridgev2.ConvertedMessagePart{Type: event.EventMessage, Content: &event.MessageEventContent{
|
|
||||||
MsgType: event.MsgEmote,
|
|
||||||
Body: "started a call",
|
|
||||||
}}
|
|
||||||
case discordgo.MessageTypeGuildMemberJoin:
|
|
||||||
return &bridgev2.ConvertedMessagePart{Type: event.EventMessage, Content: &event.MessageEventContent{
|
|
||||||
MsgType: event.MsgEmote,
|
|
||||||
Body: "joined the server",
|
|
||||||
}}
|
|
||||||
}
|
|
||||||
|
|
||||||
var htmlParts []string
|
|
||||||
|
|
||||||
if msg.Interaction != nil {
|
|
||||||
ghost, err := mc.Bridge.GetGhostByID(ctx, discordid.MakeUserID(msg.Interaction.User.ID))
|
|
||||||
// TODO(skip): Try doing ghost.UpdateInfoIfNecessary.
|
|
||||||
if err == nil {
|
|
||||||
htmlParts = append(htmlParts, fmt.Sprintf(msgInteractionTemplateHTML, ghost.Intent.GetMXID(), ghost.Name, msg.Interaction.Name))
|
|
||||||
} else {
|
|
||||||
log.Err(err).Msg("Couldn't get ghost by ID while bridging interaction")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if msg.Content != "" && !isPlainGifMessage(msg) {
|
|
||||||
// Bridge basic text messages.
|
|
||||||
htmlParts = append(htmlParts, mc.renderDiscordMarkdownOnlyHTML(portal, msg.Content, true))
|
|
||||||
} else if msg.MessageReference != nil &&
|
|
||||||
msg.MessageReference.Type == discordgo.MessageReferenceTypeForward &&
|
|
||||||
len(msg.MessageSnapshots) > 0 &&
|
|
||||||
msg.MessageSnapshots[0].Message != nil {
|
|
||||||
// Bridge forwarded messages.
|
|
||||||
htmlParts = append(htmlParts, mc.forwardedMessageHTMLPart(ctx, portal, source, msg))
|
|
||||||
}
|
|
||||||
|
|
||||||
previews := make([]*event.BeeperLinkPreview, 0)
|
|
||||||
for i, embed := range msg.Embeds {
|
|
||||||
if i == 0 && msg.MessageReference == nil && isReplyEmbed(embed) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
with := log.With().
|
|
||||||
Str("embed_type", string(embed.Type)).
|
|
||||||
Int("embed_index", i)
|
|
||||||
|
|
||||||
switch getEmbedType(msg, embed) {
|
|
||||||
case EmbedRich:
|
|
||||||
log := with.Str("computed_embed_type", "rich").Logger()
|
|
||||||
htmlParts = append(htmlParts, mc.renderDiscordRichEmbed(log.WithContext(ctx), embed))
|
|
||||||
case EmbedLinkPreview:
|
|
||||||
log := with.Str("computed_embed_type", "link preview").Logger()
|
|
||||||
previews = append(previews, mc.renderDiscordLinkEmbed(log.WithContext(ctx), embed))
|
|
||||||
case EmbedVideo:
|
|
||||||
// Video embeds are handled as separate messages via renderDiscordVideoEmbed.
|
|
||||||
default:
|
|
||||||
log := with.Logger()
|
|
||||||
log.Warn().Msg("Unknown embed type in message")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(msg.Components) > 0 {
|
|
||||||
htmlParts = append(htmlParts, msgComponentTemplateHTML)
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(htmlParts) == 0 {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
fullHTML := strings.Join(htmlParts, "\n")
|
|
||||||
if !msg.MentionEveryone {
|
|
||||||
fullHTML = strings.ReplaceAll(fullHTML, "@room", "@\u2063ro\u2063om")
|
|
||||||
}
|
|
||||||
|
|
||||||
content := format.HTMLToContent(fullHTML)
|
|
||||||
extraContent := map[string]any{
|
|
||||||
"com.beeper.linkpreviews": previews,
|
|
||||||
}
|
|
||||||
|
|
||||||
return &bridgev2.ConvertedMessagePart{Type: event.EventMessage, Content: &content, Extra: extraContent}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mc *MessageConverter) forwardedMessageHTMLPart(ctx context.Context, portal *bridgev2.Portal, source *bridgev2.UserLogin, msg *discordgo.Message) string {
|
|
||||||
log := zerolog.Ctx(ctx)
|
|
||||||
|
|
||||||
forwardedHTML := mc.renderDiscordMarkdownOnlyHTMLNoUnwrap(portal, msg.MessageSnapshots[0].Message.Content, true)
|
|
||||||
msgTSText := msg.MessageSnapshots[0].Message.Timestamp.Format("2006-01-02 15:04 MST")
|
|
||||||
origLink := fmt.Sprintf("unknown channel • %s", msgTSText)
|
|
||||||
if forwardedFromPortal, err := mc.Bridge.DB.Portal.GetByKey(ctx, discordid.MakePortalKeyWithID(msg.MessageReference.ChannelID)); err == nil && forwardedFromPortal != nil {
|
|
||||||
if origMessage, err := mc.Bridge.DB.Message.GetFirstPartByID(ctx, source.ID, discordid.MakeMessageID(msg.MessageReference.MessageID)); err == nil && origMessage != nil {
|
|
||||||
// We've bridged the message that was forwarded, so we can link to it directly.
|
|
||||||
origLink = fmt.Sprintf(
|
|
||||||
`<a href="%s">#%s • %s</a>`,
|
|
||||||
forwardedFromPortal.MXID.EventURI(origMessage.MXID, mc.Bridge.Matrix.ServerName()),
|
|
||||||
forwardedFromPortal.Name,
|
|
||||||
msgTSText,
|
|
||||||
)
|
|
||||||
} else if err != nil {
|
|
||||||
log.Err(err).Msg("Couldn't find corresponding message when bridging forwarded message")
|
|
||||||
} else if forwardedFromPortal.MXID != "" {
|
|
||||||
// We don't have the message but we have the portal, so link to that.
|
|
||||||
origLink = fmt.Sprintf(
|
|
||||||
`<a href="%s">#%s</a> • %s`,
|
|
||||||
forwardedFromPortal.MXID.URI(mc.Bridge.Matrix.ServerName()),
|
|
||||||
forwardedFromPortal.Name,
|
|
||||||
msgTSText,
|
|
||||||
)
|
|
||||||
} else if forwardedFromPortal.Name != "" {
|
|
||||||
// We only have the name of the portal.
|
|
||||||
origLink = fmt.Sprintf("%s • %s", forwardedFromPortal.Name, msgTSText)
|
|
||||||
}
|
|
||||||
} else if err != nil {
|
|
||||||
log.Err(err).Msg("Couldn't find corresponding portal when bridging forwarded message")
|
|
||||||
}
|
|
||||||
|
|
||||||
return fmt.Sprintf(forwardTemplateHTML, forwardedHTML, origLink)
|
|
||||||
}
|
|
||||||
|
|
||||||
func mediaFailedMessage(err error) *event.MessageEventContent {
|
|
||||||
return &event.MessageEventContent{
|
|
||||||
Body: fmt.Sprintf("Failed to bridge media: %v", err),
|
|
||||||
MsgType: event.MsgNotice,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mc *MessageConverter) renderDiscordVideoEmbed(ctx context.Context, embed *discordgo.MessageEmbed) *bridgev2.ConvertedMessagePart {
|
|
||||||
var proxyURL string
|
|
||||||
if embed.Video != nil {
|
|
||||||
proxyURL = embed.Video.ProxyURL
|
|
||||||
} else if embed.Thumbnail != nil {
|
|
||||||
proxyURL = embed.Thumbnail.ProxyURL
|
|
||||||
} else {
|
|
||||||
zerolog.Ctx(ctx).Warn().Str("embed_url", embed.URL).Msg("No video or thumbnail proxy URL found in embed")
|
|
||||||
return &bridgev2.ConvertedMessagePart{
|
|
||||||
Type: event.EventMessage,
|
|
||||||
Content: &event.MessageEventContent{
|
|
||||||
Body: "Failed to bridge media: no video or thumbnail proxy URL found in embed",
|
|
||||||
MsgType: event.MsgNotice,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
reupload, err := mc.ReuploadUnknownMedia(ctx, proxyURL, true)
|
|
||||||
if err != nil {
|
|
||||||
zerolog.Ctx(ctx).Err(err).Msg("Failed to copy video embed to Matrix")
|
|
||||||
return &bridgev2.ConvertedMessagePart{
|
|
||||||
Type: event.EventMessage,
|
|
||||||
Content: mediaFailedMessage(err),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
content := &event.MessageEventContent{
|
|
||||||
Body: embed.URL,
|
|
||||||
URL: reupload.MXC,
|
|
||||||
File: reupload.File,
|
|
||||||
Info: &event.FileInfo{
|
|
||||||
MimeType: reupload.MimeType,
|
|
||||||
Size: reupload.Size,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
if embed.Video != nil {
|
|
||||||
content.MsgType = event.MsgVideo
|
|
||||||
content.Info.Width = embed.Video.Width
|
|
||||||
content.Info.Height = embed.Video.Height
|
|
||||||
} else {
|
|
||||||
content.MsgType = event.MsgImage
|
|
||||||
content.Info.Width = embed.Thumbnail.Width
|
|
||||||
content.Info.Height = embed.Thumbnail.Height
|
|
||||||
}
|
|
||||||
|
|
||||||
extra := map[string]any{}
|
|
||||||
if content.MsgType == event.MsgVideo && embed.Type == discordgo.EmbedTypeGifv {
|
|
||||||
extra["info"] = map[string]any{
|
|
||||||
"fi.mau.discord.gifv": true,
|
|
||||||
"fi.mau.gif": true,
|
|
||||||
"fi.mau.loop": true,
|
|
||||||
"fi.mau.autoplay": true,
|
|
||||||
"fi.mau.hide_controls": true,
|
|
||||||
"fi.mau.no_audio": true,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return &bridgev2.ConvertedMessagePart{
|
|
||||||
Type: event.EventMessage,
|
|
||||||
Content: content,
|
|
||||||
Extra: extra,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mc *MessageConverter) renderDiscordSticker(ctx context.Context, sticker *discordgo.StickerItem) *bridgev2.ConvertedMessagePart {
|
|
||||||
panic("unimplemented")
|
|
||||||
}
|
|
||||||
|
|
||||||
const (
|
|
||||||
embedHTMLWrapper = `<blockquote class="discord-embed">%s</blockquote>`
|
|
||||||
embedHTMLWrapperColor = `<blockquote class="discord-embed" background-color="#%06X">%s</blockquote>`
|
|
||||||
embedHTMLAuthorWithImage = `<p class="discord-embed-author"><img data-mx-emoticon height="24" src="%s" title="Author icon" alt=""> <span>%s</span></p>`
|
|
||||||
embedHTMLAuthorPlain = `<p class="discord-embed-author"><span>%s</span></p>`
|
|
||||||
embedHTMLAuthorLink = `<a href="%s">%s</a>`
|
|
||||||
embedHTMLTitleWithLink = `<p class="discord-embed-title"><a href="%s"><strong>%s</strong></a></p>`
|
|
||||||
embedHTMLTitlePlain = `<p class="discord-embed-title"><strong>%s</strong></p>`
|
|
||||||
embedHTMLDescription = `<p class="discord-embed-description">%s</p>`
|
|
||||||
embedHTMLFieldName = `<th>%s</th>`
|
|
||||||
embedHTMLFieldValue = `<td>%s</td>`
|
|
||||||
embedHTMLFields = `<table class="discord-embed-fields"><tr>%s</tr><tr>%s</tr></table>`
|
|
||||||
embedHTMLLinearField = `<p class="discord-embed-field" x-inline="%s"><strong>%s</strong><br><span>%s</span></p>`
|
|
||||||
embedHTMLImage = `<p class="discord-embed-image"><img src="%s" alt="" title="Embed image"></p>`
|
|
||||||
embedHTMLFooterWithImage = `<p class="discord-embed-footer"><sub><img data-mx-emoticon height="20" src="%s" title="Footer icon" alt=""> <span>%s</span>%s</sub></p>`
|
|
||||||
embedHTMLFooterPlain = `<p class="discord-embed-footer"><sub><span>%s</span>%s</sub></p>`
|
|
||||||
embedHTMLFooterOnlyDate = `<p class="discord-embed-footer"><sub>%s</sub></p>`
|
|
||||||
embedHTMLDate = `<time datetime="%s">%s</time>`
|
|
||||||
embedFooterDateSeparator = ` • `
|
|
||||||
)
|
|
||||||
|
|
||||||
func (mc *MessageConverter) renderDiscordRichEmbed(ctx context.Context, embed *discordgo.MessageEmbed) string {
|
|
||||||
log := zerolog.Ctx(ctx)
|
|
||||||
var htmlParts []string
|
|
||||||
if embed.Author != nil {
|
|
||||||
var authorHTML string
|
|
||||||
authorNameHTML := html.EscapeString(embed.Author.Name)
|
|
||||||
if embed.Author.URL != "" {
|
|
||||||
authorNameHTML = fmt.Sprintf(embedHTMLAuthorLink, embed.Author.URL, authorNameHTML)
|
|
||||||
}
|
|
||||||
authorHTML = fmt.Sprintf(embedHTMLAuthorPlain, authorNameHTML)
|
|
||||||
if embed.Author.ProxyIconURL != "" {
|
|
||||||
reupload, err := mc.ReuploadUnknownMedia(ctx, embed.Author.ProxyIconURL, false)
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
log.Warn().Err(err).Msg("Failed to reupload author icon in embed")
|
|
||||||
} else {
|
|
||||||
authorHTML = fmt.Sprintf(embedHTMLAuthorWithImage, reupload.MXC, authorNameHTML)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
htmlParts = append(htmlParts, authorHTML)
|
|
||||||
}
|
|
||||||
|
|
||||||
portal := ctx.Value(contextKeyPortal).(*bridgev2.Portal)
|
|
||||||
if embed.Title != "" {
|
|
||||||
var titleHTML string
|
|
||||||
baseTitleHTML := mc.renderDiscordMarkdownOnlyHTML(portal, embed.Title, false)
|
|
||||||
if embed.URL != "" {
|
|
||||||
titleHTML = fmt.Sprintf(embedHTMLTitleWithLink, html.EscapeString(embed.URL), baseTitleHTML)
|
|
||||||
} else {
|
|
||||||
titleHTML = fmt.Sprintf(embedHTMLTitlePlain, baseTitleHTML)
|
|
||||||
}
|
|
||||||
htmlParts = append(htmlParts, titleHTML)
|
|
||||||
}
|
|
||||||
|
|
||||||
if embed.Description != "" {
|
|
||||||
htmlParts = append(htmlParts, fmt.Sprintf(embedHTMLDescription, mc.renderDiscordMarkdownOnlyHTML(portal, embed.Description, true)))
|
|
||||||
}
|
|
||||||
|
|
||||||
for i := 0; i < len(embed.Fields); i++ {
|
|
||||||
item := embed.Fields[i]
|
|
||||||
// TODO(skip): Port EmbedFieldsAsTables.
|
|
||||||
if false {
|
|
||||||
splitItems := []*discordgo.MessageEmbedField{item}
|
|
||||||
if item.Inline && len(embed.Fields) > i+1 && embed.Fields[i+1].Inline {
|
|
||||||
splitItems = append(splitItems, embed.Fields[i+1])
|
|
||||||
i++
|
|
||||||
if len(embed.Fields) > i+1 && embed.Fields[i+1].Inline {
|
|
||||||
splitItems = append(splitItems, embed.Fields[i+1])
|
|
||||||
i++
|
|
||||||
}
|
|
||||||
}
|
|
||||||
headerParts := make([]string, len(splitItems))
|
|
||||||
contentParts := make([]string, len(splitItems))
|
|
||||||
for j, splitItem := range splitItems {
|
|
||||||
headerParts[j] = fmt.Sprintf(embedHTMLFieldName, mc.renderDiscordMarkdownOnlyHTML(portal, splitItem.Name, false))
|
|
||||||
contentParts[j] = fmt.Sprintf(embedHTMLFieldValue, mc.renderDiscordMarkdownOnlyHTML(portal, splitItem.Value, true))
|
|
||||||
}
|
|
||||||
htmlParts = append(htmlParts, fmt.Sprintf(embedHTMLFields, strings.Join(headerParts, ""), strings.Join(contentParts, "")))
|
|
||||||
} else {
|
|
||||||
htmlParts = append(htmlParts, fmt.Sprintf(embedHTMLLinearField,
|
|
||||||
strconv.FormatBool(item.Inline),
|
|
||||||
mc.renderDiscordMarkdownOnlyHTML(portal, item.Name, false),
|
|
||||||
mc.renderDiscordMarkdownOnlyHTML(portal, item.Value, true),
|
|
||||||
))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if embed.Image != nil {
|
|
||||||
reupload, err := mc.ReuploadUnknownMedia(ctx, embed.Image.ProxyURL, false)
|
|
||||||
if err != nil {
|
|
||||||
log.Warn().Err(err).Msg("Failed to reupload image in embed")
|
|
||||||
} else {
|
|
||||||
htmlParts = append(htmlParts, fmt.Sprintf(embedHTMLImage, reupload.MXC))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var embedDateHTML string
|
|
||||||
if embed.Timestamp != "" {
|
|
||||||
formattedTime := embed.Timestamp
|
|
||||||
parsedTS, err := time.Parse(time.RFC3339, embed.Timestamp)
|
|
||||||
if err != nil {
|
|
||||||
log.Warn().Err(err).Msg("Failed to parse timestamp in embed")
|
|
||||||
} else {
|
|
||||||
formattedTime = parsedTS.Format(discordTimestampStyle('F').Format())
|
|
||||||
}
|
|
||||||
embedDateHTML = fmt.Sprintf(embedHTMLDate, embed.Timestamp, formattedTime)
|
|
||||||
}
|
|
||||||
|
|
||||||
if embed.Footer != nil {
|
|
||||||
var footerHTML string
|
|
||||||
var datePart string
|
|
||||||
if embedDateHTML != "" {
|
|
||||||
datePart = embedFooterDateSeparator + embedDateHTML
|
|
||||||
}
|
|
||||||
footerHTML = fmt.Sprintf(embedHTMLFooterPlain, html.EscapeString(embed.Footer.Text), datePart)
|
|
||||||
if embed.Footer.ProxyIconURL != "" {
|
|
||||||
reupload, err := mc.ReuploadUnknownMedia(ctx, embed.Footer.ProxyIconURL, false)
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
log.Warn().Err(err).Msg("Failed to reupload footer icon in embed")
|
|
||||||
} else {
|
|
||||||
footerHTML = fmt.Sprintf(embedHTMLFooterWithImage, reupload.MXC, html.EscapeString(embed.Footer.Text), datePart)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
htmlParts = append(htmlParts, footerHTML)
|
|
||||||
} else if embed.Timestamp != "" {
|
|
||||||
htmlParts = append(htmlParts, fmt.Sprintf(embedHTMLFooterOnlyDate, embedDateHTML))
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(htmlParts) == 0 {
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
compiledHTML := strings.Join(htmlParts, "")
|
|
||||||
if embed.Color != 0 {
|
|
||||||
compiledHTML = fmt.Sprintf(embedHTMLWrapperColor, embed.Color, compiledHTML)
|
|
||||||
} else {
|
|
||||||
compiledHTML = fmt.Sprintf(embedHTMLWrapper, compiledHTML)
|
|
||||||
}
|
|
||||||
return compiledHTML
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mc *MessageConverter) renderDiscordLinkEmbedImage(
|
|
||||||
ctx context.Context, url string, width, height int, preview *event.BeeperLinkPreview,
|
|
||||||
) {
|
|
||||||
reupload, err := mc.ReuploadUnknownMedia(ctx, url, true)
|
|
||||||
if err != nil {
|
|
||||||
zerolog.Ctx(ctx).Warn().Err(err).Msg("Failed to reupload image in URL preview, ignoring")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if width != 0 || height != 0 {
|
|
||||||
preview.ImageWidth = event.IntOrString(width)
|
|
||||||
preview.ImageHeight = event.IntOrString(height)
|
|
||||||
}
|
|
||||||
preview.ImageSize = event.IntOrString(reupload.Size)
|
|
||||||
preview.ImageType = reupload.MimeType
|
|
||||||
preview.ImageURL, preview.ImageEncryption = reupload.MXC, reupload.File
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mc *MessageConverter) renderDiscordLinkEmbed(ctx context.Context, embed *discordgo.MessageEmbed) *event.BeeperLinkPreview {
|
|
||||||
var preview event.BeeperLinkPreview
|
|
||||||
preview.MatchedURL = embed.URL
|
|
||||||
preview.Title = embed.Title
|
|
||||||
preview.Description = embed.Description
|
|
||||||
if embed.Image != nil {
|
|
||||||
mc.renderDiscordLinkEmbedImage(ctx, embed.Image.ProxyURL, embed.Image.Width, embed.Image.Height, &preview)
|
|
||||||
} else if embed.Thumbnail != nil {
|
|
||||||
mc.renderDiscordLinkEmbedImage(ctx, embed.Thumbnail.ProxyURL, embed.Thumbnail.Width, embed.Thumbnail.Height, &preview)
|
|
||||||
}
|
|
||||||
return &preview
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mc *MessageConverter) renderDiscordAttachment(ctx context.Context, att *discordgo.MessageAttachment) *bridgev2.ConvertedMessagePart {
|
|
||||||
// TODO(skip): Support direct media.
|
|
||||||
reupload, err := mc.ReuploadMedia(ctx, att.URL, att.ContentType, att.Filename, att.Size, true)
|
|
||||||
if err != nil {
|
|
||||||
zerolog.Ctx(ctx).Err(err).Msg("Failed to copy attachment to Matrix")
|
|
||||||
return &bridgev2.ConvertedMessagePart{
|
|
||||||
Type: event.EventMessage,
|
|
||||||
Content: mediaFailedMessage(err),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
content := &event.MessageEventContent{
|
|
||||||
Body: reupload.FileName,
|
|
||||||
Info: &event.FileInfo{
|
|
||||||
Width: att.Width,
|
|
||||||
Height: att.Height,
|
|
||||||
MimeType: reupload.MimeType,
|
|
||||||
Size: reupload.Size,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
var extra = make(map[string]any)
|
|
||||||
|
|
||||||
if strings.HasPrefix(att.Filename, "SPOILER_") {
|
|
||||||
extra["page.codeberg.everypizza.msc4193.spoiler"] = true
|
|
||||||
}
|
|
||||||
|
|
||||||
if att.Description != "" {
|
|
||||||
content.Body = att.Description
|
|
||||||
content.FileName = reupload.FileName
|
|
||||||
}
|
|
||||||
|
|
||||||
switch strings.ToLower(strings.Split(content.Info.MimeType, "/")[0]) {
|
|
||||||
case "audio":
|
|
||||||
content.MsgType = event.MsgAudio
|
|
||||||
if att.Waveform != nil {
|
|
||||||
// Bridge a voice message.
|
|
||||||
|
|
||||||
// TODO convert waveform
|
|
||||||
extra["org.matrix.msc1767.audio"] = map[string]any{
|
|
||||||
"duration": int(att.DurationSeconds * 1000),
|
|
||||||
}
|
|
||||||
extra["org.matrix.msc3245.voice"] = map[string]any{}
|
|
||||||
}
|
|
||||||
case "image":
|
|
||||||
content.MsgType = event.MsgImage
|
|
||||||
case "video":
|
|
||||||
content.MsgType = event.MsgVideo
|
|
||||||
default:
|
|
||||||
content.MsgType = event.MsgFile
|
|
||||||
}
|
|
||||||
|
|
||||||
content.URL, content.File = reupload.MXC, reupload.File
|
|
||||||
content.Info.Size = reupload.Size
|
|
||||||
if content.Info.Width == 0 && content.Info.Height == 0 {
|
|
||||||
content.Info.Width = att.Width
|
|
||||||
content.Info.Height = att.Height
|
|
||||||
}
|
|
||||||
|
|
||||||
return &bridgev2.ConvertedMessagePart{
|
|
||||||
Type: event.EventMessage,
|
|
||||||
Content: content,
|
|
||||||
Extra: extra,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,204 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 msgconv
|
|
||||||
|
|
||||||
import (
|
|
||||||
"bytes"
|
|
||||||
"context"
|
|
||||||
"fmt"
|
|
||||||
"io"
|
|
||||||
"net/http"
|
|
||||||
"strconv"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
"github.com/rs/zerolog"
|
|
||||||
"go.mau.fi/util/variationselector"
|
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
|
||||||
"maunium.net/go/mautrix/event"
|
|
||||||
"maunium.net/go/mautrix/format"
|
|
||||||
|
|
||||||
"go.mau.fi/mautrix-discord/pkg/discordid"
|
|
||||||
)
|
|
||||||
|
|
||||||
const discordEpochMillis = 1420070400000
|
|
||||||
|
|
||||||
func generateMessageNonce() string {
|
|
||||||
snowflake := (time.Now().UnixMilli() - discordEpochMillis) << 22
|
|
||||||
// Nonce snowflakes don't have internal IDs or increments
|
|
||||||
return strconv.FormatInt(snowflake, 10)
|
|
||||||
}
|
|
||||||
|
|
||||||
func parseAllowedLinkPreviews(raw map[string]any) []string {
|
|
||||||
if raw == nil {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
linkPreviews, ok := raw["com.beeper.linkpreviews"].([]any)
|
|
||||||
if !ok {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
allowedLinkPreviews := make([]string, 0, len(linkPreviews))
|
|
||||||
for _, preview := range linkPreviews {
|
|
||||||
previewMap, ok := preview.(map[string]any)
|
|
||||||
if !ok {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
matchedURL, _ := previewMap["matched_url"].(string)
|
|
||||||
if matchedURL != "" {
|
|
||||||
allowedLinkPreviews = append(allowedLinkPreviews, matchedURL)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return allowedLinkPreviews
|
|
||||||
}
|
|
||||||
|
|
||||||
func uploadDiscordAttachment(cli *http.Client, url string, data []byte) error {
|
|
||||||
req, err := http.NewRequest(http.MethodPut, url, bytes.NewReader(data))
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
for key, value := range discordgo.DroidBaseHeaders {
|
|
||||||
req.Header.Set(key, value)
|
|
||||||
}
|
|
||||||
req.Header.Set("Content-Type", "application/octet-stream")
|
|
||||||
req.Header.Set("Referer", "https://discord.com/")
|
|
||||||
req.Header.Set("Sec-Fetch-Dest", "empty")
|
|
||||||
req.Header.Set("Sec-Fetch-Mode", "cors")
|
|
||||||
req.Header.Set("Sec-Fetch-Site", "cross-site")
|
|
||||||
|
|
||||||
resp, err := cli.Do(req)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
defer resp.Body.Close()
|
|
||||||
if resp.StatusCode > 300 {
|
|
||||||
respData, _ := io.ReadAll(resp.Body)
|
|
||||||
return fmt.Errorf("unexpected status %d: %s", resp.StatusCode, respData)
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// ToDiscord converts a Matrix message into a discordgo.MessageSend that is appropriate
|
|
||||||
// for bridging the message to Discord.
|
|
||||||
func (mc *MessageConverter) ToDiscord(
|
|
||||||
ctx context.Context,
|
|
||||||
session *discordgo.Session,
|
|
||||||
msg *bridgev2.MatrixMessage,
|
|
||||||
) (*discordgo.MessageSend, error) {
|
|
||||||
ctx = context.WithValue(ctx, contextKeyPortal, msg.Portal)
|
|
||||||
ctx = context.WithValue(ctx, contextKeyDiscordClient, session)
|
|
||||||
var req discordgo.MessageSend
|
|
||||||
req.Nonce = generateMessageNonce()
|
|
||||||
log := zerolog.Ctx(ctx)
|
|
||||||
|
|
||||||
if msg.ReplyTo != nil {
|
|
||||||
req.Reference = &discordgo.MessageReference{
|
|
||||||
ChannelID: discordid.ParsePortalID(msg.ReplyTo.Room.ID),
|
|
||||||
MessageID: discordid.ParseMessageID(msg.ReplyTo.ID),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
portal := msg.Portal
|
|
||||||
guildID := msg.Portal.Metadata.(*discordid.PortalMetadata).GuildID
|
|
||||||
channelID := discordid.ParsePortalID(portal.ID)
|
|
||||||
content := msg.Content
|
|
||||||
|
|
||||||
convertMatrix := func() {
|
|
||||||
req.Content, req.AllowedMentions = mc.convertMatrixMessageContent(ctx, msg.Portal, content, parseAllowedLinkPreviews(msg.Event.Content.Raw))
|
|
||||||
if content.MsgType == event.MsgEmote {
|
|
||||||
req.Content = fmt.Sprintf("_%s_", req.Content)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
switch content.MsgType {
|
|
||||||
case event.MsgText, event.MsgEmote, event.MsgNotice:
|
|
||||||
convertMatrix()
|
|
||||||
case event.MsgAudio, event.MsgFile, event.MsgVideo:
|
|
||||||
mediaData, err := mc.Bridge.Bot.DownloadMedia(ctx, content.URL, content.File)
|
|
||||||
if err != nil {
|
|
||||||
log.Err(err).Msg("Failed to download Matrix attachment for bridging")
|
|
||||||
return nil, bridgev2.ErrMediaDownloadFailed
|
|
||||||
}
|
|
||||||
|
|
||||||
filename := content.Body
|
|
||||||
if content.FileName != "" && content.FileName != content.Body {
|
|
||||||
filename = content.FileName
|
|
||||||
convertMatrix()
|
|
||||||
}
|
|
||||||
if msg.Event.Content.Raw["page.codeberg.everypizza.msc4193.spoiler"] == true {
|
|
||||||
filename = "SPOILER_" + filename
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: Support attachments for relay/webhook. (A branch was removed here.)
|
|
||||||
att := &discordgo.MessageAttachment{
|
|
||||||
ID: "0",
|
|
||||||
Filename: filename,
|
|
||||||
}
|
|
||||||
|
|
||||||
upload_id := mc.NextDiscordUploadID()
|
|
||||||
log.Debug().Str("upload_id", upload_id).Msg("Preparing attachment")
|
|
||||||
prep, err := session.ChannelAttachmentCreate(channelID, &discordgo.ReqPrepareAttachments{
|
|
||||||
Files: []*discordgo.FilePrepare{{
|
|
||||||
Size: len(mediaData),
|
|
||||||
Name: att.Filename,
|
|
||||||
ID: mc.NextDiscordUploadID(),
|
|
||||||
}},
|
|
||||||
// TODO: Support threads.
|
|
||||||
}, discordgo.WithChannelReferer(guildID, channelID))
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
log.Err(err).Msg("Failed to create attachment in preparation for attachment reupload")
|
|
||||||
return nil, bridgev2.ErrMediaReuploadFailed
|
|
||||||
}
|
|
||||||
|
|
||||||
prepared := prep.Attachments[0]
|
|
||||||
att.UploadedFilename = prepared.UploadFilename
|
|
||||||
|
|
||||||
err = uploadDiscordAttachment(session.Client, prepared.UploadURL, mediaData)
|
|
||||||
if err != nil {
|
|
||||||
log.Err(err).Msg("Failed to reupload Discord attachment after preparing")
|
|
||||||
return nil, bridgev2.ErrMediaReuploadFailed
|
|
||||||
}
|
|
||||||
|
|
||||||
req.Attachments = append(req.Attachments, att)
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: Handle (silent) replies and allowed mentions.
|
|
||||||
|
|
||||||
return &req, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mc *MessageConverter) convertMatrixMessageContent(ctx context.Context, portal *bridgev2.Portal, content *event.MessageEventContent, allowedLinkPreviews []string) (string, *discordgo.MessageAllowedMentions) {
|
|
||||||
allowedMentions := &discordgo.MessageAllowedMentions{
|
|
||||||
Parse: []discordgo.AllowedMentionType{},
|
|
||||||
Users: []string{},
|
|
||||||
RepliedUser: true,
|
|
||||||
}
|
|
||||||
|
|
||||||
if content.Format == event.FormatHTML && len(content.FormattedBody) > 0 {
|
|
||||||
ctx := format.NewContext(ctx)
|
|
||||||
ctx.ReturnData[formatterContextInputAllowedLinkPreviewsKey] = allowedLinkPreviews
|
|
||||||
ctx.ReturnData[formatterContextPortalKey] = portal
|
|
||||||
ctx.ReturnData[formatterContextAllowedMentionsKey] = allowedMentions
|
|
||||||
if content.Mentions != nil {
|
|
||||||
ctx.ReturnData[formatterContextInputAllowedMentionsKey] = content.Mentions.UserIDs
|
|
||||||
}
|
|
||||||
return variationselector.FullyQualify(matrixHTMLParser.Parse(content.FormattedBody, ctx)), allowedMentions
|
|
||||||
} else {
|
|
||||||
return variationselector.FullyQualify(escapeDiscordMarkdown(content.Body)), allowedMentions
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,48 +0,0 @@
|
|||||||
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
|
||||||
// Copyright (C) 2026 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 msgconv
|
|
||||||
|
|
||||||
import (
|
|
||||||
"math/rand"
|
|
||||||
"strconv"
|
|
||||||
"sync/atomic"
|
|
||||||
|
|
||||||
"maunium.net/go/mautrix/bridgev2"
|
|
||||||
)
|
|
||||||
|
|
||||||
type MessageConverter struct {
|
|
||||||
Bridge *bridgev2.Bridge
|
|
||||||
|
|
||||||
nextDiscordUploadID atomic.Int32
|
|
||||||
|
|
||||||
MaxFileSize int64
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewMessageConverter(bridge *bridgev2.Bridge) *MessageConverter {
|
|
||||||
mc := &MessageConverter{
|
|
||||||
Bridge: bridge,
|
|
||||||
MaxFileSize: 50 * 1024 * 1024,
|
|
||||||
}
|
|
||||||
|
|
||||||
mc.nextDiscordUploadID.Store(rand.Int31n(100))
|
|
||||||
return mc
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mc *MessageConverter) NextDiscordUploadID() string {
|
|
||||||
val := mc.nextDiscordUploadID.Add(2)
|
|
||||||
return strconv.Itoa(int(val))
|
|
||||||
}
|
|
||||||
779
portal_convert.go
Normal file
779
portal_convert.go
Normal file
@@ -0,0 +1,779 @@
|
|||||||
|
// mautrix-discord - A Matrix-Discord puppeting bridge.
|
||||||
|
// Copyright (C) 2023 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 (
|
||||||
|
"context"
|
||||||
|
"crypto/sha256"
|
||||||
|
"encoding/hex"
|
||||||
|
"fmt"
|
||||||
|
"html"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
"github.com/rs/zerolog"
|
||||||
|
"golang.org/x/exp/slices"
|
||||||
|
"maunium.net/go/mautrix"
|
||||||
|
"maunium.net/go/mautrix/appservice"
|
||||||
|
"maunium.net/go/mautrix/event"
|
||||||
|
"maunium.net/go/mautrix/format"
|
||||||
|
"maunium.net/go/mautrix/id"
|
||||||
|
|
||||||
|
"go.mau.fi/mautrix-discord/database"
|
||||||
|
)
|
||||||
|
|
||||||
|
type ConvertedMessage struct {
|
||||||
|
AttachmentID string
|
||||||
|
|
||||||
|
Type event.Type
|
||||||
|
Content *event.MessageEventContent
|
||||||
|
Extra map[string]any
|
||||||
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) createMediaFailedMessage(bridgeErr error) *event.MessageEventContent {
|
||||||
|
return &event.MessageEventContent{
|
||||||
|
Body: fmt.Sprintf("Failed to bridge media: %v", bridgeErr),
|
||||||
|
MsgType: event.MsgNotice,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const DiscordStickerSize = 160
|
||||||
|
|
||||||
|
func (portal *Portal) convertDiscordFile(ctx context.Context, typeName string, intent *appservice.IntentAPI, id, url string, content *event.MessageEventContent) *event.MessageEventContent {
|
||||||
|
meta := AttachmentMeta{AttachmentID: id, MimeType: content.Info.MimeType}
|
||||||
|
if typeName == "sticker" && content.Info.MimeType == "application/json" {
|
||||||
|
meta.Converter = portal.bridge.convertLottie
|
||||||
|
}
|
||||||
|
dbFile, err := portal.bridge.copyAttachmentToMatrix(intent, url, portal.Encrypted, meta)
|
||||||
|
if err != nil {
|
||||||
|
zerolog.Ctx(ctx).Err(err).Msg("Failed to copy attachment to Matrix")
|
||||||
|
return portal.createMediaFailedMessage(err)
|
||||||
|
}
|
||||||
|
if typeName == "sticker" && content.Info.MimeType == "application/json" {
|
||||||
|
content.Info.MimeType = dbFile.MimeType
|
||||||
|
}
|
||||||
|
content.Info.Size = dbFile.Size
|
||||||
|
if content.Info.Width == 0 && content.Info.Height == 0 {
|
||||||
|
content.Info.Width = dbFile.Width
|
||||||
|
content.Info.Height = dbFile.Height
|
||||||
|
}
|
||||||
|
if dbFile.DecryptionInfo != nil {
|
||||||
|
content.File = &event.EncryptedFileInfo{
|
||||||
|
EncryptedFile: *dbFile.DecryptionInfo,
|
||||||
|
URL: dbFile.MXC.CUString(),
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
content.URL = dbFile.MXC.CUString()
|
||||||
|
}
|
||||||
|
return content
|
||||||
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) cleanupConvertedStickerInfo(content *event.MessageEventContent) {
|
||||||
|
if content.Info == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if content.Info.Width == 0 && content.Info.Height == 0 {
|
||||||
|
content.Info.Width = DiscordStickerSize
|
||||||
|
content.Info.Height = DiscordStickerSize
|
||||||
|
} else if content.Info.Width > DiscordStickerSize || content.Info.Height > DiscordStickerSize {
|
||||||
|
if content.Info.Width > content.Info.Height {
|
||||||
|
content.Info.Height /= content.Info.Width / DiscordStickerSize
|
||||||
|
content.Info.Width = DiscordStickerSize
|
||||||
|
} else if content.Info.Width < content.Info.Height {
|
||||||
|
content.Info.Width /= content.Info.Height / DiscordStickerSize
|
||||||
|
content.Info.Height = DiscordStickerSize
|
||||||
|
} else {
|
||||||
|
content.Info.Width = DiscordStickerSize
|
||||||
|
content.Info.Height = DiscordStickerSize
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) convertDiscordSticker(ctx context.Context, intent *appservice.IntentAPI, sticker *discordgo.StickerItem) *ConvertedMessage {
|
||||||
|
var mime string
|
||||||
|
switch sticker.FormatType {
|
||||||
|
case discordgo.StickerFormatTypePNG:
|
||||||
|
mime = "image/png"
|
||||||
|
case discordgo.StickerFormatTypeAPNG:
|
||||||
|
mime = "image/apng"
|
||||||
|
case discordgo.StickerFormatTypeLottie:
|
||||||
|
mime = "application/json"
|
||||||
|
case discordgo.StickerFormatTypeGIF:
|
||||||
|
mime = "image/gif"
|
||||||
|
default:
|
||||||
|
zerolog.Ctx(ctx).Warn().
|
||||||
|
Int("sticker_format", int(sticker.FormatType)).
|
||||||
|
Str("sticker_id", sticker.ID).
|
||||||
|
Msg("Unknown sticker format")
|
||||||
|
}
|
||||||
|
content := &event.MessageEventContent{
|
||||||
|
Body: sticker.Name, // TODO find description from somewhere?
|
||||||
|
Info: &event.FileInfo{
|
||||||
|
MimeType: mime,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
mxc := portal.bridge.DMA.StickerMXC(sticker.ID, sticker.FormatType)
|
||||||
|
// TODO add config option to use direct media even for lottie stickers
|
||||||
|
if mxc.IsEmpty() && mime != "application/json" {
|
||||||
|
content = portal.convertDiscordFile(ctx, "sticker", intent, sticker.ID, sticker.URL(), content)
|
||||||
|
} else {
|
||||||
|
content.URL = mxc.CUString()
|
||||||
|
}
|
||||||
|
portal.cleanupConvertedStickerInfo(content)
|
||||||
|
return &ConvertedMessage{
|
||||||
|
AttachmentID: sticker.ID,
|
||||||
|
Type: event.EventSticker,
|
||||||
|
Content: content,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) convertDiscordAttachment(ctx context.Context, intent *appservice.IntentAPI, messageID string, att *discordgo.MessageAttachment) *ConvertedMessage {
|
||||||
|
content := &event.MessageEventContent{
|
||||||
|
Body: att.Filename,
|
||||||
|
Info: &event.FileInfo{
|
||||||
|
Height: att.Height,
|
||||||
|
MimeType: att.ContentType,
|
||||||
|
Width: att.Width,
|
||||||
|
|
||||||
|
// This gets overwritten later after the file is uploaded to the homeserver
|
||||||
|
Size: att.Size,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
var extra = make(map[string]any)
|
||||||
|
|
||||||
|
if strings.HasPrefix(att.Filename, "SPOILER_") {
|
||||||
|
extra["page.codeberg.everypizza.msc4193.spoiler"] = true
|
||||||
|
}
|
||||||
|
|
||||||
|
if att.Description != "" {
|
||||||
|
content.Body = att.Description
|
||||||
|
content.FileName = att.Filename
|
||||||
|
}
|
||||||
|
|
||||||
|
switch strings.ToLower(strings.Split(att.ContentType, "/")[0]) {
|
||||||
|
case "audio":
|
||||||
|
content.MsgType = event.MsgAudio
|
||||||
|
if att.Waveform != nil {
|
||||||
|
// TODO convert waveform
|
||||||
|
extra["org.matrix.msc1767.audio"] = map[string]any{
|
||||||
|
"duration": int(att.DurationSeconds * 1000),
|
||||||
|
}
|
||||||
|
extra["org.matrix.msc3245.voice"] = map[string]any{}
|
||||||
|
}
|
||||||
|
case "image":
|
||||||
|
content.MsgType = event.MsgImage
|
||||||
|
case "video":
|
||||||
|
content.MsgType = event.MsgVideo
|
||||||
|
default:
|
||||||
|
content.MsgType = event.MsgFile
|
||||||
|
}
|
||||||
|
mxc := portal.bridge.DMA.AttachmentMXC(portal.Key.ChannelID, messageID, att)
|
||||||
|
if mxc.IsEmpty() {
|
||||||
|
content = portal.convertDiscordFile(ctx, "attachment", intent, att.ID, att.URL, content)
|
||||||
|
} else {
|
||||||
|
content.URL = mxc.CUString()
|
||||||
|
}
|
||||||
|
return &ConvertedMessage{
|
||||||
|
AttachmentID: att.ID,
|
||||||
|
Type: event.EventMessage,
|
||||||
|
Content: content,
|
||||||
|
Extra: extra,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) convertDiscordVideoEmbed(ctx context.Context, intent *appservice.IntentAPI, embed *discordgo.MessageEmbed) *ConvertedMessage {
|
||||||
|
attachmentID := fmt.Sprintf("video_%s", embed.URL)
|
||||||
|
var proxyURL string
|
||||||
|
if embed.Video != nil {
|
||||||
|
proxyURL = embed.Video.ProxyURL
|
||||||
|
} else if embed.Thumbnail != nil {
|
||||||
|
proxyURL = embed.Thumbnail.ProxyURL
|
||||||
|
} else {
|
||||||
|
zerolog.Ctx(ctx).Warn().Str("embed_url", embed.URL).Msg("No video or thumbnail proxy URL found in embed")
|
||||||
|
return &ConvertedMessage{
|
||||||
|
AttachmentID: attachmentID,
|
||||||
|
Type: event.EventMessage,
|
||||||
|
Content: &event.MessageEventContent{
|
||||||
|
Body: "Failed to bridge media: no video or thumbnail proxy URL found in embed",
|
||||||
|
MsgType: event.MsgNotice,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
dbFile, err := portal.bridge.copyAttachmentToMatrix(intent, proxyURL, portal.Encrypted, NoMeta)
|
||||||
|
if err != nil {
|
||||||
|
zerolog.Ctx(ctx).Err(err).Msg("Failed to copy video embed to Matrix")
|
||||||
|
return &ConvertedMessage{
|
||||||
|
AttachmentID: attachmentID,
|
||||||
|
Type: event.EventMessage,
|
||||||
|
Content: portal.createMediaFailedMessage(err),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
content := &event.MessageEventContent{
|
||||||
|
Body: embed.URL,
|
||||||
|
Info: &event.FileInfo{
|
||||||
|
MimeType: dbFile.MimeType,
|
||||||
|
Size: dbFile.Size,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
if embed.Video != nil {
|
||||||
|
content.MsgType = event.MsgVideo
|
||||||
|
content.Info.Width = embed.Video.Width
|
||||||
|
content.Info.Height = embed.Video.Height
|
||||||
|
} else {
|
||||||
|
content.MsgType = event.MsgImage
|
||||||
|
content.Info.Width = embed.Thumbnail.Width
|
||||||
|
content.Info.Height = embed.Thumbnail.Height
|
||||||
|
}
|
||||||
|
if content.Info.Width == 0 && content.Info.Height == 0 {
|
||||||
|
content.Info.Width = dbFile.Width
|
||||||
|
content.Info.Height = dbFile.Height
|
||||||
|
}
|
||||||
|
if dbFile.DecryptionInfo != nil {
|
||||||
|
content.File = &event.EncryptedFileInfo{
|
||||||
|
EncryptedFile: *dbFile.DecryptionInfo,
|
||||||
|
URL: dbFile.MXC.CUString(),
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
content.URL = dbFile.MXC.CUString()
|
||||||
|
}
|
||||||
|
extra := map[string]any{}
|
||||||
|
if content.MsgType == event.MsgVideo && embed.Type == discordgo.EmbedTypeGifv {
|
||||||
|
extra["info"] = map[string]any{
|
||||||
|
"fi.mau.discord.gifv": true,
|
||||||
|
"fi.mau.gif": true,
|
||||||
|
"fi.mau.loop": true,
|
||||||
|
"fi.mau.autoplay": true,
|
||||||
|
"fi.mau.hide_controls": true,
|
||||||
|
"fi.mau.no_audio": true,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return &ConvertedMessage{
|
||||||
|
AttachmentID: attachmentID,
|
||||||
|
Type: event.EventMessage,
|
||||||
|
Content: content,
|
||||||
|
Extra: extra,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) convertDiscordMessage(ctx context.Context, puppet *Puppet, intent *appservice.IntentAPI, msg *discordgo.Message) []*ConvertedMessage {
|
||||||
|
predictedLength := len(msg.Attachments) + len(msg.StickerItems)
|
||||||
|
if msg.Content != "" {
|
||||||
|
predictedLength++
|
||||||
|
}
|
||||||
|
parts := make([]*ConvertedMessage, 0, predictedLength)
|
||||||
|
if textPart := portal.convertDiscordTextMessage(ctx, intent, msg); textPart != nil {
|
||||||
|
parts = append(parts, textPart)
|
||||||
|
}
|
||||||
|
log := zerolog.Ctx(ctx)
|
||||||
|
handledIDs := make(map[string]struct{})
|
||||||
|
for _, att := range msg.Attachments {
|
||||||
|
if _, handled := handledIDs[att.ID]; handled {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
handledIDs[att.ID] = struct{}{}
|
||||||
|
log := log.With().Str("attachment_id", att.ID).Logger()
|
||||||
|
if part := portal.convertDiscordAttachment(log.WithContext(ctx), intent, msg.ID, att); part != nil {
|
||||||
|
parts = append(parts, part)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for _, sticker := range msg.StickerItems {
|
||||||
|
if _, handled := handledIDs[sticker.ID]; handled {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
handledIDs[sticker.ID] = struct{}{}
|
||||||
|
log := log.With().Str("sticker_id", sticker.ID).Logger()
|
||||||
|
if part := portal.convertDiscordSticker(log.WithContext(ctx), intent, sticker); part != nil {
|
||||||
|
parts = append(parts, part)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for i, embed := range msg.Embeds {
|
||||||
|
// Ignore non-video embeds, they're handled in convertDiscordTextMessage
|
||||||
|
if getEmbedType(msg, embed) != EmbedVideo {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
// Discord deduplicates embeds by URL. It makes things easier for us too.
|
||||||
|
if _, handled := handledIDs[embed.URL]; handled {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
handledIDs[embed.URL] = struct{}{}
|
||||||
|
log := log.With().
|
||||||
|
Str("computed_embed_type", "video").
|
||||||
|
Str("embed_type", string(embed.Type)).
|
||||||
|
Int("embed_index", i).
|
||||||
|
Logger()
|
||||||
|
part := portal.convertDiscordVideoEmbed(log.WithContext(ctx), intent, embed)
|
||||||
|
if part != nil {
|
||||||
|
parts = append(parts, part)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(parts) == 0 && msg.Thread != nil {
|
||||||
|
parts = append(parts, &ConvertedMessage{Type: event.EventMessage, Content: &event.MessageEventContent{
|
||||||
|
MsgType: event.MsgText,
|
||||||
|
Body: fmt.Sprintf("Created a thread: %s", msg.Thread.Name),
|
||||||
|
}})
|
||||||
|
}
|
||||||
|
for _, part := range parts {
|
||||||
|
puppet.addWebhookMeta(part, msg)
|
||||||
|
puppet.addMemberMeta(part, msg)
|
||||||
|
}
|
||||||
|
return parts
|
||||||
|
}
|
||||||
|
|
||||||
|
func (puppet *Puppet) addMemberMeta(part *ConvertedMessage, msg *discordgo.Message) {
|
||||||
|
if msg.Member == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if part.Extra == nil {
|
||||||
|
part.Extra = make(map[string]any)
|
||||||
|
}
|
||||||
|
var avatarURL id.ContentURI
|
||||||
|
var discordAvatarURL string
|
||||||
|
if msg.Member.Avatar != "" {
|
||||||
|
var err error
|
||||||
|
avatarURL, discordAvatarURL, err = puppet.bridge.reuploadUserAvatar(puppet.DefaultIntent(), msg.GuildID, msg.Author.ID, msg.Member.Avatar)
|
||||||
|
if err != nil {
|
||||||
|
puppet.log.Warn().Err(err).
|
||||||
|
Str("avatar_id", msg.Member.Avatar).
|
||||||
|
Msg("Failed to reupload guild user avatar")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
part.Extra["fi.mau.discord.guild_member_metadata"] = map[string]any{
|
||||||
|
"nick": msg.Member.Nick,
|
||||||
|
"avatar_id": msg.Member.Avatar,
|
||||||
|
"avatar_url": discordAvatarURL,
|
||||||
|
"avatar_mxc": avatarURL.String(),
|
||||||
|
}
|
||||||
|
if msg.Member.Nick != "" || !avatarURL.IsEmpty() {
|
||||||
|
perMessageProfile := map[string]any{
|
||||||
|
"id": fmt.Sprintf("%s_%s", msg.GuildID, msg.Author.ID),
|
||||||
|
"displayname": msg.Member.Nick,
|
||||||
|
"avatar_url": avatarURL.String(),
|
||||||
|
}
|
||||||
|
if msg.Member.Nick == "" {
|
||||||
|
perMessageProfile["displayname"] = puppet.Name
|
||||||
|
}
|
||||||
|
if avatarURL.IsEmpty() {
|
||||||
|
perMessageProfile["avatar_url"] = puppet.AvatarURL.String()
|
||||||
|
}
|
||||||
|
part.Extra["com.beeper.per_message_profile"] = perMessageProfile
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (puppet *Puppet) addWebhookMeta(part *ConvertedMessage, msg *discordgo.Message) {
|
||||||
|
if msg.WebhookID == "" {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if part.Extra == nil {
|
||||||
|
part.Extra = make(map[string]any)
|
||||||
|
}
|
||||||
|
var avatarURL id.ContentURI
|
||||||
|
if msg.Author.Avatar != "" {
|
||||||
|
var err error
|
||||||
|
avatarURL, _, err = puppet.bridge.reuploadUserAvatar(puppet.DefaultIntent(), "", msg.Author.ID, msg.Author.Avatar)
|
||||||
|
if err != nil {
|
||||||
|
puppet.log.Warn().Err(err).
|
||||||
|
Str("avatar_id", msg.Author.Avatar).
|
||||||
|
Msg("Failed to reupload webhook avatar")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
part.Extra["fi.mau.discord.webhook_metadata"] = map[string]any{
|
||||||
|
"id": msg.WebhookID,
|
||||||
|
"name": msg.Author.Username,
|
||||||
|
"avatar_id": msg.Author.Avatar,
|
||||||
|
"avatar_url": msg.Author.AvatarURL(""),
|
||||||
|
"avatar_mxc": avatarURL.String(),
|
||||||
|
}
|
||||||
|
profileID := sha256.Sum256(fmt.Appendf(nil, "%s:%s", msg.Author.Username, msg.Author.Avatar))
|
||||||
|
hasFallback := false
|
||||||
|
if msg.ApplicationID == "" &&
|
||||||
|
puppet.bridge.Config.Bridge.PrefixWebhookMessages &&
|
||||||
|
(part.Content.MsgType == event.MsgText || part.Content.MsgType == event.MsgNotice || (part.Content.FileName != "" && part.Content.FileName != part.Content.Body)) {
|
||||||
|
part.Content.EnsureHasHTML()
|
||||||
|
part.Content.Body = fmt.Sprintf("%s: %s", msg.Author.Username, part.Content.Body)
|
||||||
|
part.Content.FormattedBody = fmt.Sprintf("<strong data-mx-profile-fallback>%s: </strong>%s", html.EscapeString(msg.Author.Username), part.Content.FormattedBody)
|
||||||
|
hasFallback = true
|
||||||
|
}
|
||||||
|
part.Extra["com.beeper.per_message_profile"] = map[string]any{
|
||||||
|
"id": hex.EncodeToString(profileID[:]),
|
||||||
|
"avatar_url": avatarURL.String(),
|
||||||
|
"displayname": msg.Author.Username,
|
||||||
|
"has_fallback": hasFallback,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
embedHTMLWrapper = `<blockquote class="discord-embed">%s</blockquote>`
|
||||||
|
embedHTMLWrapperColor = `<blockquote class="discord-embed" background-color="#%06X">%s</blockquote>`
|
||||||
|
embedHTMLAuthorWithImage = `<p class="discord-embed-author"><img data-mx-emoticon height="24" src="%s" title="Author icon" alt=""> <span>%s</span></p>`
|
||||||
|
embedHTMLAuthorPlain = `<p class="discord-embed-author"><span>%s</span></p>`
|
||||||
|
embedHTMLAuthorLink = `<a href="%s">%s</a>`
|
||||||
|
embedHTMLTitleWithLink = `<p class="discord-embed-title"><a href="%s"><strong>%s</strong></a></p>`
|
||||||
|
embedHTMLTitlePlain = `<p class="discord-embed-title"><strong>%s</strong></p>`
|
||||||
|
embedHTMLDescription = `<p class="discord-embed-description">%s</p>`
|
||||||
|
embedHTMLFieldName = `<th>%s</th>`
|
||||||
|
embedHTMLFieldValue = `<td>%s</td>`
|
||||||
|
embedHTMLFields = `<table class="discord-embed-fields"><tr>%s</tr><tr>%s</tr></table>`
|
||||||
|
embedHTMLLinearField = `<p class="discord-embed-field" x-inline="%s"><strong>%s</strong><br><span>%s</span></p>`
|
||||||
|
embedHTMLImage = `<p class="discord-embed-image"><img src="%s" alt="" title="Embed image"></p>`
|
||||||
|
embedHTMLFooterWithImage = `<p class="discord-embed-footer"><sub><img data-mx-emoticon height="20" src="%s" title="Footer icon" alt=""> <span>%s</span>%s</sub></p>`
|
||||||
|
embedHTMLFooterPlain = `<p class="discord-embed-footer"><sub><span>%s</span>%s</sub></p>`
|
||||||
|
embedHTMLFooterOnlyDate = `<p class="discord-embed-footer"><sub>%s</sub></p>`
|
||||||
|
embedHTMLDate = `<time datetime="%s">%s</time>`
|
||||||
|
embedFooterDateSeparator = ` • `
|
||||||
|
)
|
||||||
|
|
||||||
|
func (portal *Portal) convertDiscordRichEmbed(ctx context.Context, intent *appservice.IntentAPI, embed *discordgo.MessageEmbed, msgID string, index int) string {
|
||||||
|
log := zerolog.Ctx(ctx)
|
||||||
|
var htmlParts []string
|
||||||
|
if embed.Author != nil {
|
||||||
|
var authorHTML string
|
||||||
|
authorNameHTML := html.EscapeString(embed.Author.Name)
|
||||||
|
if embed.Author.URL != "" {
|
||||||
|
authorNameHTML = fmt.Sprintf(embedHTMLAuthorLink, embed.Author.URL, authorNameHTML)
|
||||||
|
}
|
||||||
|
authorHTML = fmt.Sprintf(embedHTMLAuthorPlain, authorNameHTML)
|
||||||
|
if embed.Author.ProxyIconURL != "" {
|
||||||
|
dbFile, err := portal.bridge.copyAttachmentToMatrix(intent, embed.Author.ProxyIconURL, false, NoMeta)
|
||||||
|
if err != nil {
|
||||||
|
log.Warn().Err(err).Msg("Failed to reupload author icon in embed")
|
||||||
|
} else {
|
||||||
|
authorHTML = fmt.Sprintf(embedHTMLAuthorWithImage, dbFile.MXC, authorNameHTML)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
htmlParts = append(htmlParts, authorHTML)
|
||||||
|
}
|
||||||
|
if embed.Title != "" {
|
||||||
|
var titleHTML string
|
||||||
|
baseTitleHTML := portal.renderDiscordMarkdownOnlyHTML(embed.Title, false)
|
||||||
|
if embed.URL != "" {
|
||||||
|
titleHTML = fmt.Sprintf(embedHTMLTitleWithLink, html.EscapeString(embed.URL), baseTitleHTML)
|
||||||
|
} else {
|
||||||
|
titleHTML = fmt.Sprintf(embedHTMLTitlePlain, baseTitleHTML)
|
||||||
|
}
|
||||||
|
htmlParts = append(htmlParts, titleHTML)
|
||||||
|
}
|
||||||
|
if embed.Description != "" {
|
||||||
|
htmlParts = append(htmlParts, fmt.Sprintf(embedHTMLDescription, portal.renderDiscordMarkdownOnlyHTML(embed.Description, true)))
|
||||||
|
}
|
||||||
|
for i := 0; i < len(embed.Fields); i++ {
|
||||||
|
item := embed.Fields[i]
|
||||||
|
if portal.bridge.Config.Bridge.EmbedFieldsAsTables {
|
||||||
|
splitItems := []*discordgo.MessageEmbedField{item}
|
||||||
|
if item.Inline && len(embed.Fields) > i+1 && embed.Fields[i+1].Inline {
|
||||||
|
splitItems = append(splitItems, embed.Fields[i+1])
|
||||||
|
i++
|
||||||
|
if len(embed.Fields) > i+1 && embed.Fields[i+1].Inline {
|
||||||
|
splitItems = append(splitItems, embed.Fields[i+1])
|
||||||
|
i++
|
||||||
|
}
|
||||||
|
}
|
||||||
|
headerParts := make([]string, len(splitItems))
|
||||||
|
contentParts := make([]string, len(splitItems))
|
||||||
|
for j, splitItem := range splitItems {
|
||||||
|
headerParts[j] = fmt.Sprintf(embedHTMLFieldName, portal.renderDiscordMarkdownOnlyHTML(splitItem.Name, false))
|
||||||
|
contentParts[j] = fmt.Sprintf(embedHTMLFieldValue, portal.renderDiscordMarkdownOnlyHTML(splitItem.Value, true))
|
||||||
|
}
|
||||||
|
htmlParts = append(htmlParts, fmt.Sprintf(embedHTMLFields, strings.Join(headerParts, ""), strings.Join(contentParts, "")))
|
||||||
|
} else {
|
||||||
|
htmlParts = append(htmlParts, fmt.Sprintf(embedHTMLLinearField,
|
||||||
|
strconv.FormatBool(item.Inline),
|
||||||
|
portal.renderDiscordMarkdownOnlyHTML(item.Name, false),
|
||||||
|
portal.renderDiscordMarkdownOnlyHTML(item.Value, true),
|
||||||
|
))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if embed.Image != nil {
|
||||||
|
dbFile, err := portal.bridge.copyAttachmentToMatrix(intent, embed.Image.ProxyURL, false, NoMeta)
|
||||||
|
if err != nil {
|
||||||
|
log.Warn().Err(err).Msg("Failed to reupload image in embed")
|
||||||
|
} else {
|
||||||
|
htmlParts = append(htmlParts, fmt.Sprintf(embedHTMLImage, dbFile.MXC))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var embedDateHTML string
|
||||||
|
if embed.Timestamp != "" {
|
||||||
|
formattedTime := embed.Timestamp
|
||||||
|
parsedTS, err := time.Parse(time.RFC3339, embed.Timestamp)
|
||||||
|
if err != nil {
|
||||||
|
log.Warn().Err(err).Msg("Failed to parse timestamp in embed")
|
||||||
|
} else {
|
||||||
|
formattedTime = parsedTS.Format(discordTimestampStyle('F').Format())
|
||||||
|
}
|
||||||
|
embedDateHTML = fmt.Sprintf(embedHTMLDate, embed.Timestamp, formattedTime)
|
||||||
|
}
|
||||||
|
if embed.Footer != nil {
|
||||||
|
var footerHTML string
|
||||||
|
var datePart string
|
||||||
|
if embedDateHTML != "" {
|
||||||
|
datePart = embedFooterDateSeparator + embedDateHTML
|
||||||
|
}
|
||||||
|
footerHTML = fmt.Sprintf(embedHTMLFooterPlain, html.EscapeString(embed.Footer.Text), datePart)
|
||||||
|
if embed.Footer.ProxyIconURL != "" {
|
||||||
|
dbFile, err := portal.bridge.copyAttachmentToMatrix(intent, embed.Footer.ProxyIconURL, false, NoMeta)
|
||||||
|
if err != nil {
|
||||||
|
log.Warn().Err(err).Msg("Failed to reupload footer icon in embed")
|
||||||
|
} else {
|
||||||
|
footerHTML = fmt.Sprintf(embedHTMLFooterWithImage, dbFile.MXC, html.EscapeString(embed.Footer.Text), datePart)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
htmlParts = append(htmlParts, footerHTML)
|
||||||
|
} else if embed.Timestamp != "" {
|
||||||
|
htmlParts = append(htmlParts, fmt.Sprintf(embedHTMLFooterOnlyDate, embedDateHTML))
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(htmlParts) == 0 {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
compiledHTML := strings.Join(htmlParts, "")
|
||||||
|
if embed.Color != 0 {
|
||||||
|
compiledHTML = fmt.Sprintf(embedHTMLWrapperColor, embed.Color, compiledHTML)
|
||||||
|
} else {
|
||||||
|
compiledHTML = fmt.Sprintf(embedHTMLWrapper, compiledHTML)
|
||||||
|
}
|
||||||
|
return compiledHTML
|
||||||
|
}
|
||||||
|
|
||||||
|
type BeeperLinkPreview struct {
|
||||||
|
mautrix.RespPreviewURL
|
||||||
|
MatchedURL string `json:"matched_url"`
|
||||||
|
ImageEncryption *event.EncryptedFileInfo `json:"beeper:image:encryption,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) convertDiscordLinkEmbedImage(ctx context.Context, intent *appservice.IntentAPI, url string, width, height int, preview *BeeperLinkPreview) {
|
||||||
|
dbFile, err := portal.bridge.copyAttachmentToMatrix(intent, url, portal.Encrypted, NoMeta)
|
||||||
|
if err != nil {
|
||||||
|
zerolog.Ctx(ctx).Warn().Err(err).Msg("Failed to reupload image in URL preview")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if width != 0 || height != 0 {
|
||||||
|
preview.ImageWidth = width
|
||||||
|
preview.ImageHeight = height
|
||||||
|
} else {
|
||||||
|
preview.ImageWidth = dbFile.Width
|
||||||
|
preview.ImageHeight = dbFile.Height
|
||||||
|
}
|
||||||
|
preview.ImageSize = dbFile.Size
|
||||||
|
preview.ImageType = dbFile.MimeType
|
||||||
|
if dbFile.Encrypted {
|
||||||
|
preview.ImageEncryption = &event.EncryptedFileInfo{
|
||||||
|
EncryptedFile: *dbFile.DecryptionInfo,
|
||||||
|
URL: dbFile.MXC.CUString(),
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
preview.ImageURL = dbFile.MXC.CUString()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) convertDiscordLinkEmbedToBeeper(ctx context.Context, intent *appservice.IntentAPI, embed *discordgo.MessageEmbed) *BeeperLinkPreview {
|
||||||
|
var preview BeeperLinkPreview
|
||||||
|
preview.MatchedURL = embed.URL
|
||||||
|
preview.Title = embed.Title
|
||||||
|
preview.Description = embed.Description
|
||||||
|
if embed.Image != nil {
|
||||||
|
portal.convertDiscordLinkEmbedImage(ctx, intent, embed.Image.ProxyURL, embed.Image.Width, embed.Image.Height, &preview)
|
||||||
|
} else if embed.Thumbnail != nil {
|
||||||
|
portal.convertDiscordLinkEmbedImage(ctx, intent, embed.Thumbnail.ProxyURL, embed.Thumbnail.Width, embed.Thumbnail.Height, &preview)
|
||||||
|
}
|
||||||
|
return &preview
|
||||||
|
}
|
||||||
|
|
||||||
|
const msgInteractionTemplateHTML = `<blockquote>
|
||||||
|
<a href="https://matrix.to/#/%s">%s</a> used <font color="#3771bb">/%s</font>
|
||||||
|
</blockquote>`
|
||||||
|
|
||||||
|
const msgComponentTemplateHTML = `<p>This message contains interactive elements. Use the Discord app to interact with the message.</p>`
|
||||||
|
|
||||||
|
type BridgeEmbedType int
|
||||||
|
|
||||||
|
const (
|
||||||
|
EmbedUnknown BridgeEmbedType = iota
|
||||||
|
EmbedRich
|
||||||
|
EmbedLinkPreview
|
||||||
|
EmbedVideo
|
||||||
|
)
|
||||||
|
|
||||||
|
func isActuallyLinkPreview(embed *discordgo.MessageEmbed) bool {
|
||||||
|
// Sending YouTube links creates a video embed, but we want to bridge it as a URL preview,
|
||||||
|
// so this is a hacky way to detect those.
|
||||||
|
return embed.Video != nil && embed.Video.ProxyURL == ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func getEmbedType(msg *discordgo.Message, embed *discordgo.MessageEmbed) BridgeEmbedType {
|
||||||
|
switch embed.Type {
|
||||||
|
case discordgo.EmbedTypeLink, discordgo.EmbedTypeArticle:
|
||||||
|
return EmbedLinkPreview
|
||||||
|
case discordgo.EmbedTypeVideo:
|
||||||
|
if isActuallyLinkPreview(embed) {
|
||||||
|
return EmbedLinkPreview
|
||||||
|
}
|
||||||
|
return EmbedVideo
|
||||||
|
case discordgo.EmbedTypeGifv:
|
||||||
|
return EmbedVideo
|
||||||
|
case discordgo.EmbedTypeImage:
|
||||||
|
if msg != nil && isPlainGifMessage(msg) {
|
||||||
|
return EmbedVideo
|
||||||
|
} else if embed.Image == nil && embed.Thumbnail != nil {
|
||||||
|
return EmbedLinkPreview
|
||||||
|
}
|
||||||
|
return EmbedRich
|
||||||
|
case discordgo.EmbedTypeRich:
|
||||||
|
return EmbedRich
|
||||||
|
default:
|
||||||
|
return EmbedUnknown
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func isPlainGifMessage(msg *discordgo.Message) bool {
|
||||||
|
if len(msg.Embeds) != 1 {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
embed := msg.Embeds[0]
|
||||||
|
isGifVideo := embed.Type == discordgo.EmbedTypeGifv && embed.Video != nil
|
||||||
|
isGifImage := embed.Type == discordgo.EmbedTypeImage && embed.Image == nil && embed.Thumbnail != nil && embed.Title == ""
|
||||||
|
contentIsOnlyURL := msg.Content == embed.URL || discordLinkRegexFull.MatchString(msg.Content)
|
||||||
|
return contentIsOnlyURL && (isGifVideo || isGifImage)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (portal *Portal) convertDiscordMentions(msg *discordgo.Message, syncGhosts bool) *event.Mentions {
|
||||||
|
var matrixMentions event.Mentions
|
||||||
|
for _, mention := range msg.Mentions {
|
||||||
|
puppet := portal.bridge.GetPuppetByID(mention.ID)
|
||||||
|
if syncGhosts {
|
||||||
|
puppet.UpdateInfo(nil, mention, nil)
|
||||||
|
}
|
||||||
|
user := portal.bridge.GetUserByID(mention.ID)
|
||||||
|
if user != nil {
|
||||||
|
matrixMentions.UserIDs = append(matrixMentions.UserIDs, user.MXID)
|
||||||
|
} else {
|
||||||
|
matrixMentions.UserIDs = append(matrixMentions.UserIDs, puppet.MXID)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
slices.Sort(matrixMentions.UserIDs)
|
||||||
|
matrixMentions.UserIDs = slices.Compact(matrixMentions.UserIDs)
|
||||||
|
if msg.MentionEveryone {
|
||||||
|
matrixMentions.Room = true
|
||||||
|
}
|
||||||
|
return &matrixMentions
|
||||||
|
}
|
||||||
|
|
||||||
|
const forwardTemplateHTML = `<blockquote>
|
||||||
|
<p>↷ Forwarded</p>
|
||||||
|
%s
|
||||||
|
<p>%s</p>
|
||||||
|
</blockquote>`
|
||||||
|
|
||||||
|
func (portal *Portal) convertDiscordTextMessage(ctx context.Context, intent *appservice.IntentAPI, msg *discordgo.Message) *ConvertedMessage {
|
||||||
|
log := zerolog.Ctx(ctx)
|
||||||
|
if msg.Type == discordgo.MessageTypeCall {
|
||||||
|
return &ConvertedMessage{Type: event.EventMessage, Content: &event.MessageEventContent{
|
||||||
|
MsgType: event.MsgEmote,
|
||||||
|
Body: "started a call",
|
||||||
|
}}
|
||||||
|
} else if msg.Type == discordgo.MessageTypeGuildMemberJoin {
|
||||||
|
return &ConvertedMessage{Type: event.EventMessage, Content: &event.MessageEventContent{
|
||||||
|
MsgType: event.MsgEmote,
|
||||||
|
Body: "joined the server",
|
||||||
|
}}
|
||||||
|
}
|
||||||
|
var htmlParts []string
|
||||||
|
if msg.Interaction != nil {
|
||||||
|
puppet := portal.bridge.GetPuppetByID(msg.Interaction.User.ID)
|
||||||
|
puppet.UpdateInfo(nil, msg.Interaction.User, nil)
|
||||||
|
htmlParts = append(htmlParts, fmt.Sprintf(msgInteractionTemplateHTML, puppet.MXID, puppet.Name, msg.Interaction.Name))
|
||||||
|
}
|
||||||
|
if msg.Content != "" && !isPlainGifMessage(msg) {
|
||||||
|
htmlParts = append(htmlParts, portal.renderDiscordMarkdownOnlyHTML(msg.Content, true))
|
||||||
|
} else if msg.MessageReference != nil &&
|
||||||
|
msg.MessageReference.Type == discordgo.MessageReferenceTypeForward &&
|
||||||
|
len(msg.MessageSnapshots) > 0 &&
|
||||||
|
msg.MessageSnapshots[0].Message != nil {
|
||||||
|
forwardedHTML := portal.renderDiscordMarkdownOnlyHTMLNoUnwrap(msg.MessageSnapshots[0].Message.Content, true)
|
||||||
|
msgTSText := msg.MessageSnapshots[0].Message.Timestamp.Format("2006-01-02 15:04 MST")
|
||||||
|
origLink := fmt.Sprintf("unknown channel • %s", msgTSText)
|
||||||
|
forwardedFromPortal := portal.bridge.GetExistingPortalByID(database.NewPortalKey(msg.MessageReference.ChannelID, ""))
|
||||||
|
if forwardedFromPortal != nil {
|
||||||
|
origMessage := portal.bridge.DB.Message.GetFirstByDiscordID(forwardedFromPortal.Key, msg.MessageReference.MessageID)
|
||||||
|
if origMessage != nil {
|
||||||
|
origLink = fmt.Sprintf(
|
||||||
|
`<a href="%s">#%s • %s</a>`,
|
||||||
|
forwardedFromPortal.MXID.EventURI(origMessage.MXID, portal.bridge.AS.HomeserverDomain),
|
||||||
|
forwardedFromPortal.PlainName,
|
||||||
|
msgTSText,
|
||||||
|
)
|
||||||
|
} else if forwardedFromPortal.MXID != "" {
|
||||||
|
origLink = fmt.Sprintf(
|
||||||
|
`<a href="%s">#%s</a> • %s`,
|
||||||
|
forwardedFromPortal.MXID.URI(portal.bridge.AS.HomeserverDomain),
|
||||||
|
forwardedFromPortal.PlainName,
|
||||||
|
msgTSText,
|
||||||
|
)
|
||||||
|
} else if forwardedFromPortal.PlainName != "" {
|
||||||
|
origLink = fmt.Sprintf("%s • %s", forwardedFromPortal.PlainName, msgTSText)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
htmlParts = append(htmlParts, fmt.Sprintf(forwardTemplateHTML, forwardedHTML, origLink))
|
||||||
|
}
|
||||||
|
previews := make([]*BeeperLinkPreview, 0)
|
||||||
|
for i, embed := range msg.Embeds {
|
||||||
|
if i == 0 && msg.MessageReference == nil && isReplyEmbed(embed) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
with := log.With().
|
||||||
|
Str("embed_type", string(embed.Type)).
|
||||||
|
Int("embed_index", i)
|
||||||
|
switch getEmbedType(msg, embed) {
|
||||||
|
case EmbedRich:
|
||||||
|
log := with.Str("computed_embed_type", "rich").Logger()
|
||||||
|
htmlParts = append(htmlParts, portal.convertDiscordRichEmbed(log.WithContext(ctx), intent, embed, msg.ID, i))
|
||||||
|
case EmbedLinkPreview:
|
||||||
|
log := with.Str("computed_embed_type", "link preview").Logger()
|
||||||
|
previews = append(previews, portal.convertDiscordLinkEmbedToBeeper(log.WithContext(ctx), intent, embed))
|
||||||
|
case EmbedVideo:
|
||||||
|
// Ignore video embeds, they're handled as separate messages
|
||||||
|
default:
|
||||||
|
log := with.Logger()
|
||||||
|
log.Warn().Msg("Unknown embed type in message")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(msg.Components) > 0 {
|
||||||
|
htmlParts = append(htmlParts, msgComponentTemplateHTML)
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(htmlParts) == 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
fullHTML := strings.Join(htmlParts, "\n")
|
||||||
|
if !msg.MentionEveryone {
|
||||||
|
fullHTML = strings.ReplaceAll(fullHTML, "@room", "@\u2063ro\u2063om")
|
||||||
|
}
|
||||||
|
|
||||||
|
content := format.HTMLToContent(fullHTML)
|
||||||
|
extraContent := map[string]any{
|
||||||
|
"com.beeper.linkpreviews": previews,
|
||||||
|
}
|
||||||
|
|
||||||
|
return &ConvertedMessage{Type: event.EventMessage, Content: &content, Extra: extraContent}
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user