mirror of
https://github.com/maubot/maubot.git
synced 2024-10-01 01:06:10 -04:00
72 lines
2.0 KiB
Go
72 lines
2.0 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"
|
|
"maunium.net/go/gomatrix"
|
|
"maunium.net/go/gomatrix/format"
|
|
)
|
|
|
|
type EventFuncsImpl struct {
|
|
*gomatrix.Event
|
|
Client *Client
|
|
}
|
|
|
|
func (client *Client) ParseEvent(mxEvent *gomatrix.Event) *maubot.Event {
|
|
if mxEvent == nil {
|
|
return nil
|
|
}
|
|
mxEvent.Content.RemoveReplyFallback()
|
|
return &maubot.Event{
|
|
EventFuncs: &EventFuncsImpl{
|
|
Event: mxEvent,
|
|
Client: client,
|
|
},
|
|
Event: mxEvent,
|
|
}
|
|
}
|
|
|
|
func (evt *EventFuncsImpl) MarkRead() error {
|
|
return evt.Client.MarkRead(evt.RoomID, evt.ID)
|
|
}
|
|
|
|
func (evt *EventFuncsImpl) Reply(text string) (string, error) {
|
|
return evt.ReplyContent(format.RenderMarkdown(text))
|
|
}
|
|
|
|
func (evt *EventFuncsImpl) ReplyContent(content gomatrix.Content) (string, error) {
|
|
content.SetReply(evt.Event)
|
|
return evt.SendContent(content)
|
|
}
|
|
|
|
func (evt *EventFuncsImpl) SendMessage(text string) (string, error) {
|
|
return evt.SendContent(format.RenderMarkdown(text))
|
|
}
|
|
|
|
func (evt *EventFuncsImpl) SendContent(content gomatrix.Content) (string, error) {
|
|
return evt.SendRawEvent(gomatrix.EventMessage, content)
|
|
}
|
|
|
|
func (evt *EventFuncsImpl) SendRawEvent(evtType gomatrix.EventType, content interface{}) (string, error) {
|
|
resp, err := evt.Client.SendMessageEvent(evt.RoomID, evtType, content)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return resp.EventID, nil
|
|
}
|