2017-02-18 14:10:22 -08:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2017-12-07 14:48:44 -08:00
|
|
|
"encoding/json"
|
2018-06-09 03:47:40 -07:00
|
|
|
"net/http"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
2018-02-26 15:33:21 -08:00
|
|
|
"github.com/42wim/matterbridge/bridge"
|
2017-02-18 14:10:22 -08:00
|
|
|
"github.com/42wim/matterbridge/bridge/config"
|
2019-01-31 08:06:36 -08:00
|
|
|
"github.com/labstack/echo/v4"
|
|
|
|
"github.com/labstack/echo/v4/middleware"
|
2020-06-24 15:25:10 -07:00
|
|
|
ring "github.com/zfjagann/golang-ring"
|
2017-02-18 14:10:22 -08:00
|
|
|
)
|
|
|
|
|
2018-11-15 11:43:43 -08:00
|
|
|
type API struct {
|
2017-02-18 14:10:22 -08:00
|
|
|
Messages ring.Ring
|
|
|
|
sync.RWMutex
|
2018-03-04 14:52:14 -08:00
|
|
|
*bridge.Config
|
2017-02-18 14:10:22 -08:00
|
|
|
}
|
|
|
|
|
2018-11-15 11:43:43 -08:00
|
|
|
type Message struct {
|
2017-02-18 14:10:22 -08:00
|
|
|
Text string `json:"text"`
|
|
|
|
Username string `json:"username"`
|
2017-06-18 06:44:54 -07:00
|
|
|
UserID string `json:"userid"`
|
2017-02-18 14:10:22 -08:00
|
|
|
Avatar string `json:"avatar"`
|
2017-06-07 14:54:50 -07:00
|
|
|
Gateway string `json:"gateway"`
|
2017-02-18 14:10:22 -08:00
|
|
|
}
|
|
|
|
|
2018-03-04 14:52:14 -08:00
|
|
|
func New(cfg *bridge.Config) bridge.Bridger {
|
2018-11-15 11:43:43 -08:00
|
|
|
b := &API{Config: cfg}
|
2017-02-18 14:10:22 -08:00
|
|
|
e := echo.New()
|
2018-02-20 15:49:10 -08:00
|
|
|
e.HideBanner = true
|
|
|
|
e.HidePort = true
|
2017-02-18 14:10:22 -08:00
|
|
|
b.Messages = ring.Ring{}
|
2018-11-05 12:53:51 -08:00
|
|
|
if b.GetInt("Buffer") != 0 {
|
|
|
|
b.Messages.SetCapacity(b.GetInt("Buffer"))
|
|
|
|
}
|
2018-03-04 14:52:14 -08:00
|
|
|
if b.GetString("Token") != "" {
|
2017-06-05 15:05:32 -07:00
|
|
|
e.Use(middleware.KeyAuth(func(key string, c echo.Context) (bool, error) {
|
2018-03-04 14:52:14 -08:00
|
|
|
return key == b.GetString("Token"), nil
|
2017-06-05 15:05:32 -07:00
|
|
|
}))
|
|
|
|
}
|
2020-06-24 15:25:10 -07:00
|
|
|
|
|
|
|
// Set RemoteNickFormat to a sane default
|
|
|
|
if !b.IsKeySet("RemoteNickFormat") {
|
|
|
|
b.Log.Debugln("RemoteNickFormat is unset, defaulting to \"{NICK}\"")
|
|
|
|
b.Config.Config.Viper().Set(b.GetConfigKey("RemoteNickFormat"), "{NICK}")
|
|
|
|
}
|
|
|
|
|
2018-11-07 00:11:59 -08:00
|
|
|
e.GET("/api/health", b.handleHealthcheck)
|
2017-02-18 14:10:22 -08:00
|
|
|
e.GET("/api/messages", b.handleMessages)
|
2017-12-07 14:48:44 -08:00
|
|
|
e.GET("/api/stream", b.handleStream)
|
2017-02-18 14:10:22 -08:00
|
|
|
e.POST("/api/message", b.handlePostMessage)
|
|
|
|
go func() {
|
2018-03-04 14:52:14 -08:00
|
|
|
if b.GetString("BindAddress") == "" {
|
2018-02-26 15:33:21 -08:00
|
|
|
b.Log.Fatalf("No BindAddress configured.")
|
2018-02-20 15:49:10 -08:00
|
|
|
}
|
2018-03-04 14:52:14 -08:00
|
|
|
b.Log.Infof("Listening on %s", b.GetString("BindAddress"))
|
|
|
|
b.Log.Fatal(e.Start(b.GetString("BindAddress")))
|
2017-02-18 14:10:22 -08:00
|
|
|
}()
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2018-11-15 11:43:43 -08:00
|
|
|
func (b *API) Connect() error {
|
2017-02-18 14:10:22 -08:00
|
|
|
return nil
|
|
|
|
}
|
2018-11-15 11:43:43 -08:00
|
|
|
func (b *API) Disconnect() error {
|
2017-02-18 14:10:22 -08:00
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|
2018-11-15 11:43:43 -08:00
|
|
|
func (b *API) JoinChannel(channel config.ChannelInfo) error {
|
2017-02-18 14:10:22 -08:00
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-11-15 11:43:43 -08:00
|
|
|
func (b *API) Send(msg config.Message) (string, error) {
|
2017-02-18 14:10:22 -08:00
|
|
|
b.Lock()
|
|
|
|
defer b.Unlock()
|
2017-09-11 13:45:15 -07:00
|
|
|
// ignore delete messages
|
2018-11-15 11:43:43 -08:00
|
|
|
if msg.Event == config.EventMsgDelete {
|
2017-09-11 13:45:15 -07:00
|
|
|
return "", nil
|
|
|
|
}
|
2017-02-18 14:10:22 -08:00
|
|
|
b.Messages.Enqueue(&msg)
|
2017-08-27 13:59:37 -07:00
|
|
|
return "", nil
|
2017-02-18 14:10:22 -08:00
|
|
|
}
|
|
|
|
|
2018-11-15 11:43:43 -08:00
|
|
|
func (b *API) handleHealthcheck(c echo.Context) error {
|
2018-11-07 00:11:59 -08:00
|
|
|
return c.String(http.StatusOK, "OK")
|
|
|
|
}
|
|
|
|
|
2018-11-15 11:43:43 -08:00
|
|
|
func (b *API) handlePostMessage(c echo.Context) error {
|
2018-02-20 09:36:44 -08:00
|
|
|
message := config.Message{}
|
|
|
|
if err := c.Bind(&message); err != nil {
|
2017-02-18 14:10:22 -08:00
|
|
|
return err
|
|
|
|
}
|
2018-02-20 09:36:44 -08:00
|
|
|
// these values are fixed
|
|
|
|
message.Channel = "api"
|
|
|
|
message.Protocol = "api"
|
|
|
|
message.Account = b.Account
|
|
|
|
message.ID = ""
|
|
|
|
message.Timestamp = time.Now()
|
2018-02-26 15:33:21 -08:00
|
|
|
b.Log.Debugf("Sending message from %s on %s to gateway", message.Username, "api")
|
2018-02-20 09:36:44 -08:00
|
|
|
b.Remote <- message
|
2017-02-18 14:10:22 -08:00
|
|
|
return c.JSON(http.StatusOK, message)
|
|
|
|
}
|
|
|
|
|
2018-11-15 11:43:43 -08:00
|
|
|
func (b *API) handleMessages(c echo.Context) error {
|
2017-02-18 14:10:22 -08:00
|
|
|
b.Lock()
|
|
|
|
defer b.Unlock()
|
2017-06-05 14:08:36 -07:00
|
|
|
c.JSONPretty(http.StatusOK, b.Messages.Values(), " ")
|
2017-02-18 14:10:22 -08:00
|
|
|
b.Messages = ring.Ring{}
|
|
|
|
return nil
|
|
|
|
}
|
2017-12-07 14:48:44 -08:00
|
|
|
|
2018-11-15 11:43:43 -08:00
|
|
|
func (b *API) handleStream(c echo.Context) error {
|
2017-12-07 14:48:44 -08:00
|
|
|
c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSON)
|
|
|
|
c.Response().WriteHeader(http.StatusOK)
|
2018-11-02 08:35:13 -07:00
|
|
|
greet := config.Message{
|
2018-11-15 11:43:43 -08:00
|
|
|
Event: config.EventAPIConnected,
|
2018-11-07 11:36:50 -08:00
|
|
|
Timestamp: time.Now(),
|
2018-11-02 08:35:13 -07:00
|
|
|
}
|
|
|
|
if err := json.NewEncoder(c.Response()).Encode(greet); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
c.Response().Flush()
|
2017-12-07 14:48:44 -08:00
|
|
|
for {
|
2019-01-31 08:06:36 -08:00
|
|
|
msg := b.Messages.Dequeue()
|
|
|
|
if msg != nil {
|
|
|
|
if err := json.NewEncoder(c.Response()).Encode(msg); err != nil {
|
|
|
|
return err
|
2017-12-07 14:48:44 -08:00
|
|
|
}
|
2019-01-31 08:06:36 -08:00
|
|
|
c.Response().Flush()
|
2017-12-07 14:48:44 -08:00
|
|
|
}
|
2019-01-31 08:06:36 -08:00
|
|
|
time.Sleep(200 * time.Millisecond)
|
2017-12-07 14:48:44 -08:00
|
|
|
}
|
|
|
|
}
|