2017-02-18 22:10:22 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2017-12-07 22:48:44 +00:00
|
|
|
"encoding/json"
|
2017-02-18 22:10:22 +00:00
|
|
|
"github.com/42wim/matterbridge/bridge/config"
|
|
|
|
log "github.com/Sirupsen/logrus"
|
|
|
|
"github.com/labstack/echo"
|
2017-06-05 22:05:32 +00:00
|
|
|
"github.com/labstack/echo/middleware"
|
2017-02-18 22:10:22 +00:00
|
|
|
"github.com/zfjagann/golang-ring"
|
|
|
|
"net/http"
|
|
|
|
"sync"
|
2017-12-07 22:48:44 +00:00
|
|
|
"time"
|
2017-02-18 22:10:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Api struct {
|
|
|
|
Config *config.Protocol
|
|
|
|
Remote chan config.Message
|
|
|
|
Account string
|
|
|
|
Messages ring.Ring
|
|
|
|
sync.RWMutex
|
|
|
|
}
|
|
|
|
|
|
|
|
type ApiMessage struct {
|
|
|
|
Text string `json:"text"`
|
|
|
|
Username string `json:"username"`
|
2017-06-18 13:44:54 +00:00
|
|
|
UserID string `json:"userid"`
|
2017-02-18 22:10:22 +00:00
|
|
|
Avatar string `json:"avatar"`
|
2017-06-07 21:54:50 +00:00
|
|
|
Gateway string `json:"gateway"`
|
2017-02-18 22:10:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var flog *log.Entry
|
|
|
|
var protocol = "api"
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
flog = log.WithFields(log.Fields{"module": protocol})
|
|
|
|
}
|
|
|
|
|
|
|
|
func New(cfg config.Protocol, account string, c chan config.Message) *Api {
|
|
|
|
b := &Api{}
|
|
|
|
e := echo.New()
|
|
|
|
b.Messages = ring.Ring{}
|
|
|
|
b.Messages.SetCapacity(cfg.Buffer)
|
|
|
|
b.Config = &cfg
|
|
|
|
b.Account = account
|
|
|
|
b.Remote = c
|
2017-06-05 22:05:32 +00:00
|
|
|
if b.Config.Token != "" {
|
|
|
|
e.Use(middleware.KeyAuth(func(key string, c echo.Context) (bool, error) {
|
|
|
|
return key == b.Config.Token, nil
|
|
|
|
}))
|
|
|
|
}
|
2017-02-18 22:10:22 +00:00
|
|
|
e.GET("/api/messages", b.handleMessages)
|
2017-12-07 22:48:44 +00:00
|
|
|
e.GET("/api/stream", b.handleStream)
|
2017-02-18 22:10:22 +00:00
|
|
|
e.POST("/api/message", b.handlePostMessage)
|
|
|
|
go func() {
|
|
|
|
flog.Fatal(e.Start(cfg.BindAddress))
|
|
|
|
}()
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Api) Connect() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
func (b *Api) Disconnect() error {
|
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|
2017-08-12 12:51:41 +00:00
|
|
|
func (b *Api) JoinChannel(channel config.ChannelInfo) error {
|
2017-02-18 22:10:22 +00:00
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-08-27 20:59:37 +00:00
|
|
|
func (b *Api) Send(msg config.Message) (string, error) {
|
2017-02-18 22:10:22 +00:00
|
|
|
b.Lock()
|
|
|
|
defer b.Unlock()
|
2017-09-11 20:45:15 +00:00
|
|
|
// ignore delete messages
|
|
|
|
if msg.Event == config.EVENT_MSG_DELETE {
|
|
|
|
return "", nil
|
|
|
|
}
|
2017-02-18 22:10:22 +00:00
|
|
|
b.Messages.Enqueue(&msg)
|
2017-08-27 20:59:37 +00:00
|
|
|
return "", nil
|
2017-02-18 22:10:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Api) handlePostMessage(c echo.Context) error {
|
|
|
|
message := &ApiMessage{}
|
|
|
|
if err := c.Bind(message); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-06-07 21:54:50 +00:00
|
|
|
flog.Debugf("Sending message from %s on %s to gateway", message.Username, "api")
|
2017-02-18 22:10:22 +00:00
|
|
|
b.Remote <- config.Message{
|
|
|
|
Text: message.Text,
|
|
|
|
Username: message.Username,
|
2017-06-18 13:44:54 +00:00
|
|
|
UserID: message.UserID,
|
2017-02-18 22:10:22 +00:00
|
|
|
Channel: "api",
|
|
|
|
Avatar: message.Avatar,
|
|
|
|
Account: b.Account,
|
2017-06-07 21:54:50 +00:00
|
|
|
Gateway: message.Gateway,
|
|
|
|
Protocol: "api",
|
2017-02-18 22:10:22 +00:00
|
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, message)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Api) handleMessages(c echo.Context) error {
|
|
|
|
b.Lock()
|
|
|
|
defer b.Unlock()
|
2017-06-05 21:08:36 +00:00
|
|
|
c.JSONPretty(http.StatusOK, b.Messages.Values(), " ")
|
2017-02-18 22:10:22 +00:00
|
|
|
b.Messages = ring.Ring{}
|
|
|
|
return nil
|
|
|
|
}
|
2017-12-07 22:48:44 +00:00
|
|
|
|
|
|
|
func (b *Api) handleStream(c echo.Context) error {
|
|
|
|
c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSON)
|
|
|
|
c.Response().WriteHeader(http.StatusOK)
|
|
|
|
closeNotifier := c.Response().CloseNotify()
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-closeNotifier:
|
|
|
|
return nil
|
|
|
|
default:
|
|
|
|
msg := b.Messages.Dequeue()
|
|
|
|
if msg != nil {
|
|
|
|
if err := json.NewEncoder(c.Response()).Encode(msg); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
c.Response().Flush()
|
|
|
|
}
|
|
|
|
time.Sleep(200 * time.Millisecond)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|