mtfosbot/router/line/line.go

95 lines
1.8 KiB
Go
Raw Normal View History

2018-09-02 01:15:35 +00:00
package line
2018-09-13 10:18:59 +00:00
import (
"crypto/hmac"
"crypto/sha256"
"encoding/base64"
"encoding/json"
2018-10-01 14:50:27 +00:00
"fmt"
2018-09-13 10:18:59 +00:00
"io/ioutil"
"git.trj.tw/golang/mtfosbot/module/config"
"git.trj.tw/golang/mtfosbot/module/context"
"git.trj.tw/golang/mtfosbot/module/line-message"
lineobj "git.trj.tw/golang/mtfosbot/module/line-message/line-object"
)
// GetRawBody - line webhook body get
func GetRawBody(c *context.Context) {
byteBody, err := ioutil.ReadAll(c.Request.Body)
if err != nil {
c.DataFormat("body read fail")
return
}
c.Set("rawbody", byteBody)
c.Next()
}
// VerifyLine - middleware
func VerifyLine(c *context.Context) {
rawbody, ok := c.Get("rawbody")
if !ok {
c.DataFormat("body read fail")
return
}
var raw []byte
if raw, ok = rawbody.([]byte); !ok {
c.DataFormat("body type error")
return
}
sign := c.GetHeader("X-Line-Signature")
if len(sign) == 0 {
c.Next()
return
}
conf := config.GetConf()
hash := hmac.New(sha256.New, []byte(conf.Line.Secret))
_, err := hash.Write(raw)
if err != nil {
c.ServerError(nil)
return
}
hashSign := base64.StdEncoding.EncodeToString(hash.Sum(nil))
if hashSign != sign {
c.CustomRes(403, map[string]string{
"message": "sign verify fail",
})
return
}
c.Next()
}
2018-09-02 01:15:35 +00:00
// GetLineMessage -
func GetLineMessage(c *context.Context) {
2018-09-13 10:18:59 +00:00
rawbody, ok := c.Get("rawbody")
if !ok {
c.DataFormat("body read fail")
}
var raw []byte
if raw, ok = rawbody.([]byte); !ok {
c.DataFormat("body type error")
}
2018-10-01 14:50:27 +00:00
fmt.Println("Line Hook ::: ", string(raw))
2018-09-13 10:18:59 +00:00
events := struct {
Events []*lineobj.EventObject `json:"events"`
}{}
err := json.Unmarshal(raw, &events)
if err != nil {
c.ServerError(nil)
return
}
if len(events.Events) > 0 {
for _, v := range events.Events {
go linemsg.MessageEvent(v)
}
}
2018-09-02 01:15:35 +00:00
2018-09-13 10:18:59 +00:00
c.Success(nil)
2018-09-02 01:15:35 +00:00
}