2024-01-09 03:20:42 +01:00
|
|
|
// Copyright (C) 2017 Tulir Asokan
|
|
|
|
// Copyright (C) 2018-2020 Luca Weiss
|
|
|
|
// Copyright (C) 2023 Tulir Asokan
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/chzyer/readline"
|
2024-01-09 05:09:01 +01:00
|
|
|
"github.com/joho/godotenv"
|
2024-01-09 03:20:42 +01:00
|
|
|
_ "github.com/mattn/go-sqlite3"
|
|
|
|
"github.com/rs/zerolog"
|
|
|
|
|
|
|
|
"maunium.net/go/mautrix"
|
|
|
|
"maunium.net/go/mautrix/crypto/cryptohelper"
|
|
|
|
"maunium.net/go/mautrix/event"
|
|
|
|
"maunium.net/go/mautrix/id"
|
|
|
|
)
|
|
|
|
|
|
|
|
var debug = flag.Bool("debug", false, "Enable debug logs")
|
|
|
|
|
2024-01-09 05:09:01 +01:00
|
|
|
//var database = flag.String("database", "test.db", "SQLite database path")
|
|
|
|
|
2024-01-10 18:32:29 +01:00
|
|
|
type application struct {
|
2024-01-10 18:10:28 +01:00
|
|
|
MatrixClient *mautrix.Client
|
|
|
|
Log zerolog.Logger
|
|
|
|
}
|
|
|
|
|
2024-01-09 03:20:42 +01:00
|
|
|
func main() {
|
|
|
|
flag.Parse()
|
2024-01-09 05:09:01 +01:00
|
|
|
err := godotenv.Load()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
2024-01-09 03:20:42 +01:00
|
|
|
}
|
|
|
|
|
2024-01-09 05:09:01 +01:00
|
|
|
homeserver := os.Getenv("MATRIX_HOMESERVER")
|
|
|
|
username := os.Getenv("MATRIX_USERNAME")
|
|
|
|
password := os.Getenv("MATRIX_PASSWORD")
|
|
|
|
database := os.Getenv("SQLITE_DATABASE")
|
|
|
|
|
|
|
|
client, err := mautrix.NewClient(homeserver, "", "")
|
2024-01-09 03:20:42 +01:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2024-01-10 18:10:28 +01:00
|
|
|
|
2024-01-09 03:20:42 +01:00
|
|
|
rl, err := readline.New("[no room]> ")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
defer rl.Close()
|
|
|
|
log := zerolog.New(zerolog.NewConsoleWriter(func(w *zerolog.ConsoleWriter) {
|
|
|
|
w.Out = rl.Stdout()
|
|
|
|
w.TimeFormat = time.Stamp
|
|
|
|
})).With().Timestamp().Logger()
|
|
|
|
if !*debug {
|
|
|
|
log = log.Level(zerolog.InfoLevel)
|
|
|
|
}
|
|
|
|
client.Log = log
|
|
|
|
|
2024-01-10 18:32:29 +01:00
|
|
|
app := &application{
|
2024-01-10 18:10:28 +01:00
|
|
|
MatrixClient: client,
|
|
|
|
Log: log,
|
|
|
|
}
|
2024-01-09 03:20:42 +01:00
|
|
|
var lastRoomID id.RoomID
|
|
|
|
|
2024-01-10 18:10:28 +01:00
|
|
|
syncer := app.MatrixClient.Syncer.(*mautrix.DefaultSyncer)
|
2024-01-09 03:20:42 +01:00
|
|
|
syncer.OnEventType(event.EventMessage, func(source mautrix.EventSource, evt *event.Event) {
|
|
|
|
lastRoomID = evt.RoomID
|
|
|
|
rl.SetPrompt(fmt.Sprintf("%s> ", lastRoomID))
|
2024-01-10 18:10:28 +01:00
|
|
|
if evt.Content.AsMessage().Body[:1] == "!" {
|
|
|
|
app.Log.Info().
|
|
|
|
Str("sender", evt.Sender.String()).
|
|
|
|
Str("type", evt.Type.String()).
|
|
|
|
Str("id", evt.ID.String()).
|
|
|
|
Str("body", evt.Content.AsMessage().Body).
|
|
|
|
Msg("Received xdddddddddddddddddddddddd message")
|
|
|
|
|
|
|
|
app.ParseCommand(evt)
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
app.ParseEvent(evt)
|
|
|
|
return
|
|
|
|
}
|
2024-01-09 03:20:42 +01:00
|
|
|
})
|
|
|
|
syncer.OnEventType(event.StateMember, func(source mautrix.EventSource, evt *event.Event) {
|
2024-01-10 18:10:28 +01:00
|
|
|
if evt.GetStateKey() == app.MatrixClient.UserID.String() && evt.Content.AsMember().Membership == event.MembershipInvite {
|
|
|
|
_, err := app.MatrixClient.JoinRoomByID(context.TODO(), evt.RoomID)
|
2024-01-09 03:20:42 +01:00
|
|
|
if err == nil {
|
|
|
|
lastRoomID = evt.RoomID
|
|
|
|
rl.SetPrompt(fmt.Sprintf("%s> ", lastRoomID))
|
|
|
|
log.Info().
|
|
|
|
Str("room_id", evt.RoomID.String()).
|
|
|
|
Str("inviter", evt.Sender.String()).
|
|
|
|
Msg("Joined room after invite")
|
|
|
|
} else {
|
|
|
|
log.Error().Err(err).
|
|
|
|
Str("room_id", evt.RoomID.String()).
|
|
|
|
Str("inviter", evt.Sender.String()).
|
|
|
|
Msg("Failed to join room after invite")
|
|
|
|
}
|
|
|
|
}
|
2024-01-10 18:10:28 +01:00
|
|
|
|
2024-01-09 03:20:42 +01:00
|
|
|
})
|
|
|
|
|
2024-01-10 18:10:28 +01:00
|
|
|
cryptoHelper, err := cryptohelper.NewCryptoHelper(app.MatrixClient, []byte("meow"), database)
|
2024-01-09 03:20:42 +01:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// You can also store the user/device IDs and access token and put them in the client beforehand instead of using LoginAs.
|
|
|
|
//client.UserID = "..."
|
|
|
|
//client.DeviceID = "..."
|
|
|
|
//client.AccessToken = "..."
|
|
|
|
// You don't need to set a device ID in LoginAs because the crypto helper will set it for you if necessary.
|
|
|
|
cryptoHelper.LoginAs = &mautrix.ReqLogin{
|
|
|
|
Type: mautrix.AuthTypePassword,
|
2024-01-09 05:09:01 +01:00
|
|
|
Identifier: mautrix.UserIdentifier{Type: mautrix.IdentifierTypeUser, User: username},
|
|
|
|
Password: password,
|
2024-01-09 03:20:42 +01:00
|
|
|
}
|
|
|
|
// If you want to use multiple clients with the same DB, you should set a distinct database account ID for each one.
|
|
|
|
//cryptoHelper.DBAccountID = ""
|
|
|
|
err = cryptoHelper.Init()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
// Set the client crypto helper in order to automatically encrypt outgoing messages
|
2024-01-10 18:10:28 +01:00
|
|
|
app.MatrixClient.Crypto = cryptoHelper
|
2024-01-09 03:20:42 +01:00
|
|
|
|
|
|
|
log.Info().Msg("Now running")
|
|
|
|
syncCtx, cancelSync := context.WithCancel(context.Background())
|
|
|
|
var syncStopWait sync.WaitGroup
|
|
|
|
syncStopWait.Add(1)
|
|
|
|
|
|
|
|
go func() {
|
2024-01-10 18:10:28 +01:00
|
|
|
err = app.MatrixClient.SyncWithContext(syncCtx)
|
2024-01-09 03:20:42 +01:00
|
|
|
defer syncStopWait.Done()
|
|
|
|
if err != nil && !errors.Is(err, context.Canceled) {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
for {
|
|
|
|
line, err := rl.Readline()
|
|
|
|
if err != nil { // io.EOF
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if lastRoomID == "" {
|
|
|
|
log.Error().Msg("Wait for an incoming message before sending messages")
|
|
|
|
continue
|
|
|
|
}
|
2024-01-10 18:10:28 +01:00
|
|
|
resp, err := app.MatrixClient.SendText(context.TODO(), lastRoomID, line)
|
2024-01-09 03:20:42 +01:00
|
|
|
if err != nil {
|
|
|
|
log.Error().Err(err).Msg("Failed to send event")
|
|
|
|
} else {
|
|
|
|
log.Info().Str("event_id", resp.EventID.String()).Msg("Event sent")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cancelSync()
|
|
|
|
syncStopWait.Wait()
|
|
|
|
err = cryptoHelper.Close()
|
|
|
|
if err != nil {
|
|
|
|
log.Error().Err(err).Msg("Error closing database")
|
|
|
|
}
|
|
|
|
}
|
2024-01-10 18:10:28 +01:00
|
|
|
|
2024-01-10 18:32:29 +01:00
|
|
|
func (app *application) SendText(evt *event.Event, message string) {
|
2024-01-10 18:10:28 +01:00
|
|
|
room := evt.RoomID
|
|
|
|
|
|
|
|
resp, err := app.MatrixClient.SendText(context.TODO(), room, message)
|
|
|
|
if err != nil {
|
|
|
|
app.Log.Error().Err(err).Msg("Failed to send event")
|
|
|
|
} else {
|
|
|
|
app.Log.Info().Str("event_id", resp.EventID.String()).Msg("Event sent")
|
|
|
|
}
|
|
|
|
}
|