aboutsummaryrefslogtreecommitdiff
path: root/interface/matrix.go
diff options
context:
space:
mode:
Diffstat (limited to 'interface/matrix.go')
-rw-r--r--interface/matrix.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/interface/matrix.go b/interface/matrix.go
index 95122cc..40710ac 100644
--- a/interface/matrix.go
+++ b/interface/matrix.go
@@ -25,16 +25,21 @@ type MatrixContainer interface {
Client() *gomatrix.Client
InitClient() error
Initialized() bool
- Login(user, password string) error
+
Start()
Stop()
+
+ Login(user, password string) error
+
SendMessage(roomID, msgtype, message string) (string, error)
SendMarkdownMessage(roomID, msgtype, message string) (string, error)
SendTyping(roomID string, typing bool)
JoinRoom(roomID string) (*rooms.Room, error)
LeaveRoom(roomID string) error
+
GetHistory(roomID, prevBatch string, limit int) ([]gomatrix.Event, string, error)
GetRoom(roomID string) *rooms.Room
+
Download(mxcURL string) ([]byte, string, string, error)
GetCachePath(homeserver, fileID string) string
}