mirror of
https://github.com/maubot/maubot.git
synced 2024-10-01 01:06:10 -04:00
90 lines
2.4 KiB
Go
90 lines
2.4 KiB
Go
// maubot - A plugin-based Matrix bot system written in Go.
|
|
// Copyright (C) 2018 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 matrix
|
|
|
|
import (
|
|
"maubot.xyz"
|
|
"maubot.xyz/database"
|
|
"maunium.net/go/gomatrix"
|
|
log "maunium.net/go/maulogger"
|
|
)
|
|
|
|
type Client struct {
|
|
*gomatrix.Client
|
|
syncer *MaubotSyncer
|
|
|
|
DB *database.MatrixClient
|
|
}
|
|
|
|
func NewClient(db *database.MatrixClient) (*Client, error) {
|
|
mxClient, err := gomatrix.NewClient(db.Homeserver, db.UserID, db.AccessToken)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
client := &Client{
|
|
Client: mxClient,
|
|
DB: db,
|
|
}
|
|
|
|
client.syncer = NewMaubotSyncer(client, client.Store)
|
|
client.Client.Syncer = client.syncer
|
|
|
|
client.AddEventHandler(maubot.StateMember, client.onJoin)
|
|
|
|
return client, nil
|
|
}
|
|
|
|
func (client *Client) AddEventHandler(evt maubot.EventType, handler maubot.EventHandler) {
|
|
client.syncer.OnEventType(evt, func(evt *maubot.Event) maubot.EventHandlerResult {
|
|
if evt.Sender == client.UserID {
|
|
return maubot.StopPropagation
|
|
}
|
|
return handler(evt)
|
|
})
|
|
}
|
|
|
|
func (client *Client) GetEvent(roomID, eventID string) *maubot.Event {
|
|
evt, err := client.Client.GetEvent(roomID, eventID)
|
|
if err != nil {
|
|
log.Warnf("Failed to get event %s @ %s: %v\n", eventID, roomID, err)
|
|
return nil
|
|
}
|
|
return client.ParseEvent(evt).Event
|
|
}
|
|
|
|
func (client *Client) onJoin(evt *maubot.Event) maubot.EventHandlerResult {
|
|
if client.DB.AutoJoinRooms && evt.StateKey == client.DB.UserID && evt.Content.Membership == "invite" {
|
|
client.JoinRoom(evt.RoomID)
|
|
return maubot.StopPropagation
|
|
}
|
|
return maubot.Continue
|
|
}
|
|
|
|
func (client *Client) JoinRoom(roomID string) {
|
|
client.Client.JoinRoom(roomID, "", nil)
|
|
}
|
|
|
|
func (client *Client) Sync() {
|
|
go func() {
|
|
err := client.Client.Sync()
|
|
if err != nil {
|
|
log.Errorln("Sync() in client", client.UserID, "errored:", err)
|
|
}
|
|
}()
|
|
}
|