getui.go
6.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
package getui
import (
"crypto/sha256"
"fmt"
"github.com/astaxie/beego/httplib"
"gitlab.fjmaimaimai.com/mmm-go/gocomm/pkg/log"
"openapi/pkg/infrastructure/push"
"openapi/pkg/infrastructure/utils"
"strings"
"sync"
"time"
)
const (
host = "https://restapi.getui.com"
pushSingle = "push_single"
saveListBody = "save_list_body"
pushList = "push_list"
authSign = "auth_sign "
)
var (
authtoken = ""
expire time.Time
authMux sync.RWMutex
expireSpan = time.Second * 600 //token 10分钟过期
)
const (
error_not_auth = "not_auth"
)
//GetuiNotification 个推消息推送
type GetuiNotification struct {
Options *push.Options
Request *httplib.BeegoHTTPRequest
retry int
}
func (notify *GetuiNotification) Init(options ...push.Option) error {
notify.Options = &push.Options{}
for _, o := range options {
o(notify.Options)
}
notify.retry = 3
return nil
}
func (notify *GetuiNotification) Send(option map[string]interface{}) (err error) {
retry := 1
for {
switch notify.Options.PushType {
case push.PushToSingle:
err = notify.pushToSingle(option)
case push.PushToList:
err = notify.pushToList(option)
default:
err = notify.pushToSingle(option)
}
if err == nil {
break
}
//重试
if err != nil && retry > notify.retry {
return err
}
log.Error(fmt.Sprintf("【个推】 重试:%v 失败:%v", retry, err))
retry++
if retry > notify.retry {
break
}
}
return nil
}
//pushToSingle 单推
func (notify *GetuiNotification) pushToSingle(option map[string]interface{}) (err error) {
var token string
if token, err = notify.GetAuthToken(); err != nil {
return err
}
var (
result *Result
url = notify.Url(notify.Options.AppId, pushSingle)
m = notify.Message(pushSingle)
)
notify.Request = httplib.Post(url)
notify.Request.Header("authtoken", token)
notify.Request.JSONBody(m)
if err = notify.Request.ToJSON(&result); err != nil {
return err
}
notify.print(url, m, result, result)
if err = handleResult(url, result); err != nil {
return err
}
return nil
}
//pushToList 群推
//步骤1.获取token
//步骤2.save_list_body保存消息共同体
//步骤3.push_list
func (notify *GetuiNotification) pushToList(option map[string]interface{}) (err error) {
var (
token string
taskId string
)
if token, err = notify.GetAuthToken(); err != nil {
return err
}
if taskId, err = notify.saveListBody(token, option); err != nil {
return err
}
var (
result *Result
url = notify.Url(notify.Options.AppId, pushList)
m = struct {
Cid []string `json:"cid"`
TaskId string `json:"taskid"`
NeedDetail bool `json:"need_detail"`
}{
Cid: notify.Options.ClientIds,
TaskId: taskId,
NeedDetail: true,
}
)
notify.Request = httplib.Post(url)
notify.Request.Header("authtoken", token)
notify.Request.JSONBody(m)
if err = notify.Request.ToJSON(&result); err != nil {
return err
}
notify.print(url, m, result, result)
if err = handleResult(url, result); err != nil {
return err
}
return nil
}
//saveListBody 保存消息共同体
func (notify *GetuiNotification) saveListBody(token string, option map[string]interface{}) (taskId string, err error) {
var (
result *Result
url = notify.Url(notify.Options.AppId, saveListBody)
m = notify.Message(saveListBody)
)
notify.Request = httplib.Post(url)
notify.Request.Header("authtoken", token)
notify.Request.JSONBody(m)
if err = notify.Request.ToJSON(&result); err != nil {
return
}
notify.print(url, m, result, result)
if err = handleResult(url, result); err != nil {
return
}
taskId = result.TaskId
return
}
//Message 组装消息体
func (notify *GetuiNotification) Message(method string) interface{} {
var m interface{}
switch notify.Options.MsgType {
case push.SystemNotification:
t := NewNotificationTemplate(notify.Options)
if method == saveListBody {
t.ClientId = ""
t.RequestId = ""
}
m = t
break
case push.SystemTransmission:
t := NewTransmissionTemplate(notify.Options)
if method == saveListBody {
t.ClientId = ""
t.RequestId = ""
}
m = t
break
default:
m = NewNotificationTemplate(notify.Options)
break
}
return m
}
//Url 组装请求地址
func (notify *GetuiNotification) Url(param string, method string) string {
return fmt.Sprintf("%v/v1/%v/%v", host, param, method)
}
//GetAuthToken 获取token
func (notify *GetuiNotification) GetAuthToken() (token string, err error) {
if authtoken != "" && expire.Unix() > time.Now().Unix() {
token = authtoken
return
}
authMux.Lock()
defer authMux.Unlock()
url := notify.Url(notify.Options.AppId, authSign)
notify.Request = httplib.Post(strings.TrimSpace(url))
req := &AuthSignRequest{
Timestamp: fmt.Sprintf("%v", time.Now().Unix()*1000), //"1589797286000",//
AppKey: notify.Options.AppKey,
}
req.Sign = sign(req.AppKey, req.Timestamp, notify.Options.AppMasterSecret)
_, err = notify.Request.JSONBody(req)
if err != nil {
return
}
var rsp *AuthSignResponse
err = notify.Request.ToJSON(&rsp)
notify.print(url, req, rsp, rsp.Result)
if err != nil {
return
}
if err = handleResult(url, rsp.Result); err != nil {
return
}
authtoken = rsp.AuthToken
token = rsp.AuthToken
expire = time.Now().Add(expireSpan)
log.Info(fmt.Sprintf("【个推】token:%v expire:%v", token, expire))
return
}
//打印日志 debug_module=true print debug log
func (notify *GetuiNotification) print(url string, v interface{}, rsp interface{}, result *Result) {
if !notify.Options.DebugModule {
return
}
log.Error(fmt.Sprintf("【个推】 url:%v \n request:%v \n response:%v 结果:%v", url, utils.JsonAssertString(v), utils.JsonAssertString(rsp), result.Result))
}
//处理结果
func handleResult(url string, result *Result) (err error) {
if strings.ToLower(result.Result) == "ok" {
return
}
switch result.Result {
case error_not_auth:
setToken("")
break
}
err = fmt.Errorf("grequest fail,url:%v error:%v", url, result.Result)
return err
}
func sign(appkey, timestamp, mastersecret string) string {
sha := sha256.New()
sha.Write([]byte(appkey + timestamp + mastersecret))
return fmt.Sprintf("%x", sha.Sum(nil))
}
func setToken(token string) {
authMux.Lock()
defer authMux.Unlock()
authtoken = ""
}