Files
open-im-server/internal/push/getui/push.go
T

223 lines
5.6 KiB
Go
Raw Normal View History

2022-04-05 10:27:34 +08:00
package getui
2022-04-08 15:40:07 +08:00
import (
"Open_IM/pkg/common/config"
"Open_IM/pkg/common/db"
"Open_IM/pkg/common/log"
"Open_IM/pkg/utils"
"bytes"
2022-04-08 17:48:16 +08:00
"crypto/sha256"
2022-04-12 11:12:36 +08:00
"errors"
2022-04-08 18:29:54 +08:00
//"crypto/sha512"
2022-04-08 16:15:22 +08:00
"encoding/hex"
2022-04-08 15:40:07 +08:00
"encoding/json"
"io/ioutil"
"net/http"
"strconv"
"time"
)
var (
GetuiClient *Getui
2022-04-12 11:12:36 +08:00
TokenExpireError = errors.New("token expire")
2022-04-08 15:40:07 +08:00
)
2022-04-08 17:00:28 +08:00
const (
2022-04-11 18:12:00 +08:00
PushURL = "/push/single/alias"
2022-04-08 17:00:28 +08:00
AuthURL = "/auth"
)
2022-04-08 15:40:07 +08:00
func init() {
GetuiClient = newGetuiClient()
}
type Getui struct{}
type GetuiCommonResp struct {
Code int `json:"code"`
Msg string `json:"msg"`
Data interface{} `json:"data"`
}
type AuthReq struct {
Sign string `json:"sign"`
Timestamp string `json:"timestamp"`
Appkey string `json:"appkey"`
}
type AuthResp struct {
ExpireTime string `json:"expire_time"`
Token string `json:"token"`
}
type PushReq struct {
RequestID string `json:"request_id"`
Audience struct {
2022-04-11 17:58:23 +08:00
Alias []string `json:"alias"`
2022-04-08 15:40:07 +08:00
} `json:"audience"`
2022-04-11 11:31:20 +08:00
PushMessage struct {
Notification Notification `json:"notification,omitempty"`
Transmission string `json:"transmission,omitempty"`
2022-04-08 15:40:07 +08:00
} `json:"push_message"`
2022-04-13 15:21:53 +08:00
PushChannel struct {
Ios Ios `json:"ios"`
Android Android `json:"android"`
} `json:"push_channel"`
}
type Ios struct {
Aps struct {
Sound string `json:"sound"`
Alert Alert `json:"alert"`
} `json:"aps"`
}
type Alert struct {
Title string `json:"title"`
Body string `json:"body"`
}
type Android struct {
Ups struct {
Notification Notification `json:"notification"`
} `json:"ups"`
2022-04-08 15:40:07 +08:00
}
type Notification struct {
Title string `json:"title"`
Body string `json:"body"`
ClickType string `json:"click_type"`
}
type PushResp struct {
}
func newGetuiClient() *Getui {
return &Getui{}
}
2022-04-13 16:20:30 +08:00
func (g *Getui) Push(userIDList []string, alert, detailContent, operationID string) (resp string, err error) {
2022-04-08 15:40:07 +08:00
token, err := db.DB.GetGetuiToken()
2022-04-11 10:35:33 +08:00
log.NewDebug(operationID, utils.GetSelfFuncName(), "token", token)
2022-04-08 15:40:07 +08:00
if err != nil {
2022-04-08 16:40:39 +08:00
log.NewError(operationID, utils.OperationIDGenerator(), "GetGetuiToken failed", err.Error())
2022-04-08 15:40:07 +08:00
}
if token == "" || err != nil {
2022-04-11 14:41:09 +08:00
token, err = g.getTokenAndSave2Redis(operationID)
2022-04-08 15:40:07 +08:00
if err != nil {
2022-04-11 14:41:09 +08:00
log.NewError(operationID, utils.GetSelfFuncName(), "getTokenAndSave2Redis failed", err.Error())
return "", utils.Wrap(err, "")
2022-04-08 15:40:07 +08:00
}
}
pushReq := PushReq{
RequestID: utils.OperationIDGenerator(),
Audience: struct {
2022-04-11 17:58:23 +08:00
Alias []string `json:"alias"`
}{Alias: []string{userIDList[0]}},
2022-04-08 15:40:07 +08:00
}
2022-04-11 11:31:20 +08:00
pushReq.PushMessage.Notification = Notification{
2022-04-08 15:40:07 +08:00
Title: alert,
Body: alert,
2022-04-11 11:31:20 +08:00
ClickType: "startapp",
2022-04-08 15:40:07 +08:00
}
2022-04-13 15:21:53 +08:00
pushReq.PushChannel.Ios.Aps.Sound = "default"
pushReq.PushChannel.Ios.Aps.Alert = Alert{
Title: alert,
Body: alert,
}
pushReq.PushChannel.Android.Ups.Notification = Notification{
Title: alert,
Body: alert,
ClickType: "startapp",
}
2022-04-08 15:40:07 +08:00
pushResp := PushResp{}
2022-04-08 17:00:28 +08:00
err = g.request(PushURL, pushReq, token, &pushResp, operationID)
2022-04-12 11:12:36 +08:00
switch err {
case TokenExpireError:
2022-04-13 16:25:33 +08:00
token, err = g.getTokenAndSave2Redis(operationID)
2022-04-12 11:12:36 +08:00
if err != nil {
log.NewError(operationID, utils.GetSelfFuncName(), "getTokenAndSave2Redis failed, ", err.Error())
2022-04-13 16:25:33 +08:00
} else {
log.NewInfo(operationID, utils.GetSelfFuncName(), "getTokenAndSave2Redis: ", token)
2022-04-12 11:12:36 +08:00
}
}
2022-04-08 15:40:07 +08:00
if err != nil {
2022-04-08 16:40:39 +08:00
return "", utils.Wrap(err, "push failed")
2022-04-08 15:40:07 +08:00
}
respBytes, err := json.Marshal(pushResp)
2022-04-11 14:41:09 +08:00
return string(respBytes), utils.Wrap(err, "")
2022-04-05 10:27:34 +08:00
}
2022-04-08 16:15:22 +08:00
func (g *Getui) Auth(operationID string, timeStamp int64) (token string, expireTime int64, err error) {
2022-04-08 18:27:20 +08:00
log.NewInfo(operationID, utils.GetSelfFuncName(), config.Config.Push.Getui.AppKey, timeStamp, config.Config.Push.Getui.MasterSecret)
2022-04-08 17:48:16 +08:00
h := sha256.New()
2022-04-08 16:15:22 +08:00
h.Write([]byte(config.Config.Push.Getui.AppKey + strconv.Itoa(int(timeStamp)) + config.Config.Push.Getui.MasterSecret))
sum := h.Sum(nil)
sign := hex.EncodeToString(sum)
log.NewInfo(operationID, utils.GetSelfFuncName(), "sha256 result", sign)
2022-04-08 15:40:07 +08:00
reqAuth := AuthReq{
Sign: sign,
Timestamp: strconv.Itoa(int(timeStamp)),
2022-04-08 16:15:22 +08:00
Appkey: config.Config.Push.Getui.AppKey,
2022-04-08 15:40:07 +08:00
}
respAuth := AuthResp{}
2022-04-08 17:00:28 +08:00
err = g.request(AuthURL, reqAuth, "", &respAuth, operationID)
2022-04-08 16:40:39 +08:00
if err != nil {
return "", 0, err
}
log.NewInfo(operationID, utils.GetSelfFuncName(), "result: ", respAuth)
2022-04-08 15:40:07 +08:00
expire, err := strconv.Atoi(respAuth.ExpireTime)
return respAuth.Token, int64(expire), err
2022-04-05 10:27:34 +08:00
}
2022-04-08 17:12:11 +08:00
func (g *Getui) request(url string, content interface{}, token string, returnStruct interface{}, operationID string) error {
2022-04-08 15:40:07 +08:00
con, err := json.Marshal(content)
if err != nil {
return err
}
client := &http.Client{}
2022-04-08 17:17:26 +08:00
log.Debug(operationID, utils.GetSelfFuncName(), "json:", string(con))
2022-04-08 17:12:11 +08:00
req, err := http.NewRequest("POST", config.Config.Push.Getui.PushUrl+url, bytes.NewBuffer(con))
2022-04-08 15:40:07 +08:00
if err != nil {
return err
}
2022-04-08 16:40:39 +08:00
if token != "" {
2022-04-11 10:35:33 +08:00
req.Header.Set("token", token)
2022-04-08 16:40:39 +08:00
}
2022-04-08 15:40:07 +08:00
req.Header.Set("content-type", "application/json")
resp, err := client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
result, err := ioutil.ReadAll(resp.Body)
if err != nil {
return err
}
2022-04-08 17:32:58 +08:00
log.NewInfo(operationID, "getui", utils.GetSelfFuncName(), "resp, ", string(result))
2022-04-08 19:18:00 +08:00
commonResp := GetuiCommonResp{}
commonResp.Data = returnStruct
2022-04-08 19:31:13 +08:00
if err := json.Unmarshal(result, &commonResp); err != nil {
2022-04-08 15:40:07 +08:00
return err
}
2022-04-12 11:12:36 +08:00
if commonResp.Code == 10001 {
return TokenExpireError
}
2022-04-08 15:40:07 +08:00
return nil
2022-04-05 10:27:34 +08:00
}
2022-04-11 14:41:09 +08:00
func (g *Getui) getTokenAndSave2Redis(operationID string) (token string, err error) {
token, expireTime, err := g.Auth(operationID, time.Now().UnixNano()/1e6)
if err != nil {
return "", utils.Wrap(err, "Auth failed")
}
log.NewDebug(operationID, "getui", utils.GetSelfFuncName(), token, expireTime, err)
err = db.DB.SetGetuiToken(token, 60*60*23)
if err != nil {
return "", utils.Wrap(err, "Auth failed")
}
return token, nil
}