This repository has been archived by the owner on Jun 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathnotify.go
488 lines (429 loc) · 11.1 KB
/
notify.go
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
package wego
import (
"encoding/xml"
"github.com/godcong/wego/cipher"
"github.com/godcong/wego/util"
"github.com/json-iterator/go"
"golang.org/x/xerrors"
"net/http"
"net/url"
)
// NotifyResult ...
type NotifyResult struct {
ReturnCode string `json:"return_code" xml:"return_code"`
ReturnMsg string `json:"return_msg,omitempty" xml:"return_msg,omitempty"`
AppID string `json:"appid,omitempty" xml:"appid,omitempty"`
MchID string `json:"mch_id,omitempty" xml:"mch_id,omitempty"`
NonceStr string `json:"nonce_str,omitempty" xml:"nonce_str,omitempty"`
PrepayID string `json:"prepay_id,omitempty" xml:"prepay_id,omitempty"`
ResultCode string `json:"result_code,omitempty" xml:"result_code,omitempty"`
ErrCodeDes string `json:"err_code_des,omitempty" xml:"err_code_des,omitempty"`
Sign string `json:"sign,omitempty" xml:"sign,omitempty"`
}
// Notifier ...
type Notifier interface {
ServeHTTP(w http.ResponseWriter, req *http.Request)
}
// ServeHTTPFunc ...
type ServeHTTPFunc func(w http.ResponseWriter, req *http.Request)
// RequestHook ...
type RequestHook func(req Requester) (util.Map, error)
// TokenHook ...
type TokenHook func(w http.ResponseWriter, req *http.Request, token *Token, state string) []byte
// UserHook ...
type UserHook func(w http.ResponseWriter, req *http.Request, user *WechatUser) []byte
// StateHook ...
type StateHook func(w http.ResponseWriter, req *http.Request) string
/*authorizeNotify 监听 */
type authorizeNotify struct {
*OfficialAccount
TokenHook
UserHook
StateHook
}
// ServeHTTP ...
func (n *authorizeNotify) ServeHTTP(w http.ResponseWriter, req *http.Request) {
log.Debug("authorizeNotify")
query := req.URL.Query()
if code := query.Get("code"); code != "" {
token := n.hookAuthorizeToken(w, req, code, query.Get("state"))
if token != nil {
info := n.hookUserInfo(w, req, token)
if info != nil {
}
}
return
}
u := n.hookState(w, req)
log.Debug("hookState|url", u)
http.Redirect(w, req, u, http.StatusFound)
}
func (n *authorizeNotify) hookState(w http.ResponseWriter, req *http.Request) string {
if n.StateHook != nil {
s := n.StateHook(w, req)
return n.AuthCodeURL(s)
}
return n.AuthCodeURL("")
}
func (n *authorizeNotify) hookUserInfo(w http.ResponseWriter, req *http.Request, token *Token) *WechatUser {
log.Debug("hookUserInfo", token)
info, e := n.GetUserInfo(token)
if e != nil {
log.Error("hookUserInfo err:", e.Error())
return nil
}
if n.UserHook != nil {
bytes := n.UserHook(w, req, info)
n.responseWriter(w, bytes)
}
return info
}
// NotifyResult ...
func (n *authorizeNotify) responseWriter(w http.ResponseWriter, bytes []byte) {
e := ResponseWriter(w, JSONResponse(bytes))
if e != nil {
log.Error(e)
}
return
}
func (n *authorizeNotify) hookAuthorizeToken(w http.ResponseWriter, req *http.Request, code string, state string) *Token {
log.Debug("hookAuthorizeToken", code)
token, e := n.Oauth2AuthorizeToken(code)
if e != nil {
return nil
}
if n.TokenHook != nil {
bytes := n.TokenHook(w, req, token, state)
n.responseWriter(w, bytes)
}
return token
}
/*messageNotify 监听 */
type messageNotify struct {
*OfficialAccount
RequestHook
cipher cipher.Cipher
//bizMsg *cipher.BizMsg
}
// DecodeReqInfo ...
func (n *messageNotify) decodeInfo(query url.Values, requester Requester) (util.Map, error) {
var bodies []byte
var e error
encryptType := query.Get("encrypt_type")
timeStamp := query.Get("timestamp")
nonce := query.Get("nonce")
msgSignature := query.Get("msg_signature")
if encryptType != "aes" {
p := util.Map{}
e = xml.Unmarshal(bodies, &p)
if e != nil {
log.Error(e)
return nil, e
}
bodies, e = n.cipher.Decrypt(&cipher.BizMsgData{
RSAEncrypt: p.GetString("RSAEncrypt"),
TimeStamp: timeStamp,
Nonce: nonce,
MsgSignature: msgSignature,
})
//错误返回,并记录log
if e != nil {
log.Error(e)
return nil, e
}
}
p := util.Map{}
e = xml.Unmarshal(bodies, &p)
if e != nil {
log.Error(e)
return nil, e
}
return p, e
}
// DecodeReqInfo ...
func (n *messageNotify) encodeInfo(p util.Map, ts, nonce string) ([]byte, error) {
var e error
bodies, e := n.cipher.Encrypt(&cipher.BizMsgData{
Text: string(p.ToXML()),
TimeStamp: ts,
Nonce: nonce,
})
//错误返回,并记录log
if e != nil {
log.Error(e)
return nil, e
}
return bodies, nil
}
// ServeHTTP ...
func (n *messageNotify) ServeHTTP(w http.ResponseWriter, req *http.Request) {
var e error
if n.RequestHook == nil {
log.Error(xerrors.New("null notify callback "))
return
}
requester := BuildRequester(req)
if e = requester.Error(); e != nil {
log.Error(e)
return
}
query, e := url.ParseQuery(req.URL.RawQuery)
if e != nil {
log.Error(e)
return
}
maps, e := n.decodeInfo(query, requester)
if e != nil {
log.Error(e)
return
}
r, e := n.RequestHook(RebuildRequester(requester, maps))
if e != nil {
log.Error(e)
return
}
_, e = w.Write(r.ToXML())
if e != nil {
log.Error(e)
return
}
}
/*Notifier 监听 */
type paymentPaidNotify struct {
*Payment
RequestHook
}
// ServerHttp ...
func (n *paymentPaidNotify) ServeHTTP(w http.ResponseWriter, req *http.Request) {
var e error
requester := BuildRequester(req)
resp := NotifyTypeResponder(requester.Type(), NotifySuccess())
defer func() {
e = resp.Write(w)
log.Error(e)
}()
if e = requester.Error(); e != nil {
log.Error(e.Error())
resp.SetNotifyResult(NotifyFail(e.Error()))
return
}
reqData := requester.ToMap()
if util.ValidateSign(reqData, n.GetKey()) {
if n.RequestHook == nil {
log.Error(xerrors.New("null notify callback "))
return
}
_, e = n.RequestHook(requester)
if e != nil {
log.Error(e.Error())
resp.SetNotifyResult(NotifyFail(e.Error()))
}
}
}
/*Notifier 监听 */
type paymentRefundedNotify struct {
cipher cipher.Cipher
RequestHook
}
// ServeHTTP ...
func (obj *paymentRefundedNotify) ServeHTTP(w http.ResponseWriter, req *http.Request) {
var e error
if obj.RequestHook == nil {
log.Error(xerrors.New("null notify callback"))
return
}
requester := BuildRequester(req)
resp := NotifyTypeResponder(requester.Type(), NotifySuccess())
defer func() {
e = resp.Write(w)
log.Error(e)
}()
if e = requester.Error(); e != nil {
log.Error(e.Error())
resp.SetNotifyResult(NotifyFail(e.Error()))
return
}
reqData := requester.ToMap()
reqInfo := reqData.GetString("req_info")
reqData.Set("reqInfo", obj.DecodeReqInfo(reqInfo))
_, e = obj.RequestHook(requester)
if e != nil {
log.Error(e.Error())
resp.SetNotifyResult(NotifyFail(e.Error()))
}
}
// DecodeReqInfo ...
func (obj *paymentRefundedNotify) DecodeReqInfo(info string) util.Map {
maps := util.Map{}
dec, _ := obj.cipher.Decrypt(info)
e := xml.Unmarshal(dec, &maps)
if e != nil {
log.Error(e)
}
return maps
}
/*Notifier 监听 */
type paymentScannedNotify struct {
*Payment
RequestHook
}
// ServeHTTP ...
func (obj *paymentScannedNotify) ServeHTTP(w http.ResponseWriter, req *http.Request) {
var e error
var p util.Map
if obj.RequestHook == nil {
log.Error(xerrors.New("null notify callback"))
return
}
requester := BuildRequester(req)
resp := NotifyTypeResponder(requester.Type(), NotifySuccess())
defer func() {
e = resp.Write(w)
log.Error(e)
}()
if e = requester.Error(); e != nil {
log.Error(e.Error())
resp.SetNotifyResult(NotifyFail(e.Error()))
return
}
reqData := requester.ToMap()
if util.ValidateSign(reqData, obj.GetKey()) {
p, e = obj.RequestHook(requester)
if e != nil {
log.Error(e.Error())
resp.SetNotifyResult(NotifyFailDes(resp.NotifyResult(), e.Error()))
}
if !p.Has("prepay_id") {
log.Error("null prepay_id")
resp.SetNotifyResult(NotifyFailDes(resp.NotifyResult(), "null prepay_id"))
} else {
//公众账号ID appid String(32) 是 wx8888888888888888 微信分配的公众账号ID
//商户号 mch_id String(32) 是 1900000109 微信支付分配的商户号
//随机字符串 nonce_str String(32) 是 5K8264ILTKCH16CQ2502SI8ZNMTM67VS 微信返回的随机字符串
//预支付ID prepay_id String(64) 是 wx201410272009395522657a690389285100 调用统一下单接口生成的预支付ID
//业务结果 result_code String(16) 是 SUCCESS SUCCESS/FAIL
//错误描述 err_code_des String(128) 否 当result_code为FAIL时,商户展示给用户的错误提
//签名 sign String(32) 是 C380BEC2BFD727A4B6845133519F3AD6 返回数据签名,签名生成算法
res := resp.NotifyResult()
res.AppID = obj.AppID
res.MchID = obj.MchID
res.NonceStr = util.GenerateNonceStr()
res.PrepayID = p.GetString("prepay_id")
res.Sign = util.GenSign(reqData, obj.GetKey())
}
}
}
// NotifyResponder ...
type NotifyResponder interface {
SetNotifyResult(result *NotifyResult)
NotifyResult() *NotifyResult
Write(w http.ResponseWriter) error
}
type xmlNotify struct {
notifyResult *NotifyResult
}
// NotifyResult ...
func (obj *xmlNotify) NotifyResult() *NotifyResult {
return obj.notifyResult
}
// SetNotifyResult ...
func (obj *xmlNotify) SetNotifyResult(notifyResult *NotifyResult) {
obj.notifyResult = notifyResult
}
// Write ...
func (obj *xmlNotify) Write(w http.ResponseWriter) error {
w.WriteHeader(http.StatusOK)
header := w.Header()
if val := header["Content-Type"]; len(val) == 0 {
header["Content-Type"] = []string{"application/xml; charset=utf-8"}
}
if obj.notifyResult == nil {
return xerrors.New("null notify result")
}
_, err := w.Write(obj.notifyResult.ToXML())
if err != nil {
log.Error(err)
return err
}
return nil
}
type jsonNotify struct {
notifyResult *NotifyResult
}
// NotifyResult ...
func (obj *jsonNotify) NotifyResult() *NotifyResult {
return obj.notifyResult
}
// SetNotifyResult ...
func (obj *jsonNotify) SetNotifyResult(notifyResult *NotifyResult) {
obj.notifyResult = notifyResult
}
// Write ...
func (obj *jsonNotify) Write(w http.ResponseWriter) error {
w.WriteHeader(http.StatusOK)
header := w.Header()
if val := header["Content-Type"]; len(val) == 0 {
header["Content-Type"] = []string{"application/json; charset=utf-8"}
}
if obj.notifyResult == nil {
return xerrors.New("null notify result")
}
_, err := w.Write(obj.notifyResult.ToJSON())
if err != nil {
log.Error(err)
return err
}
return nil
}
// NotifyTypeResponder ...
func NotifyTypeResponder(bodyType BodyType, notifyResult *NotifyResult) NotifyResponder {
switch bodyType {
case BodyTypeJSON:
return &jsonNotify{
notifyResult: notifyResult,
}
case BodyTypeXML:
return &xmlNotify{
notifyResult: notifyResult,
}
}
return nil
}
// ToJSON ...
func (obj *NotifyResult) ToJSON() []byte {
bytes, e := jsoniter.Marshal(obj)
if e != nil {
log.Error(e)
return nil
}
return bytes
}
// ToXML ...
func (obj *NotifyResult) ToXML() []byte {
bytes, e := xml.Marshal(obj)
if e != nil {
log.Error(e)
return nil
}
return bytes
}
// NotifySuccess ...
func NotifySuccess() *NotifyResult {
return &NotifyResult{
ReturnCode: "SUCCESS",
ReturnMsg: "OK",
}
}
// NotifyFail ...
func NotifyFail(msg string) *NotifyResult {
return &NotifyResult{
ReturnCode: "FAIL",
ReturnMsg: msg,
}
}
// NotifyFailDes ...
func NotifyFailDes(r *NotifyResult, msg string) *NotifyResult {
r.ResultCode = "FAIL"
r.ErrCodeDes = msg
return r
}