-
Notifications
You must be signed in to change notification settings - Fork 0
/
authentication.go
231 lines (181 loc) · 5.18 KB
/
authentication.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
package yunzhanghu
import "context"
/* 银行卡四要素鉴权请求(下发短信验证码) */
const VerifyRequestURI = "/authentication/verify-request"
type (
ReqVerifyRequest struct {
CardNo string `json:"card_no"`
IdCard string `json:"id_card"`
RealName string `json:"real_name"`
Mobile string `json:"mobile"`
}
retVerifyRequest struct {
CommonResponse
Data VerifyRequestData `json:"data"`
}
VerifyRequestData struct {
Ref string `json:"ref"`
}
)
func (y *Yunzhanghu) VerifyRequest(ctx context.Context, req *ReqVerifyRequest) (*VerifyRequestData, error) {
apiName := "银行卡四要素鉴权请求(下发短信验证码)"
resp := new(retVerifyRequest)
json, err := y.postJSON(ctx, VerifyRequestURI, apiName, req)
if err != nil {
return nil, err
}
err = y.decodeWithError(json, resp, apiName)
if err != nil {
return nil, err
}
return &resp.Data, err
}
/* 银行卡四要素确认鉴权(上传短信验证码) */
const VerifyConfirmURI = ""
type (
ReqVerifyConfirm struct {
CardNo string `json:"card_no"`
IdCard string `json:"id_card"`
RealName string `json:"real_name"`
Mobile string `json:"mobile"`
Captcha string `json:"captcha"`
Ref string `json:"ref"`
}
retVerifyConfirm struct {
CommonResponse
}
)
func (y *Yunzhanghu) VerifyConfirm(ctx context.Context, req *ReqVerifyConfirm) error {
apiName := "银行卡四要素确认鉴权(上传短信验证码)"
resp := new(retVerifyConfirm)
json, err := y.postJSON(ctx, VerifyConfirmURI, apiName, req)
if err != nil {
return err
}
return y.decodeWithError(json, resp, apiName)
}
/* 银行卡四要素验证 */
const VerifyBankCardFourFactorURI = "/authentication/verify-bankcard-four-factor"
type (
ReqVerifyBankCardFourFactor struct {
CardNo string `json:"card_no"`
IdCard string `json:"id_card"`
RealName string `json:"real_name"`
Mobile string `json:"mobile"`
}
retVerifyBankCardFourFactor struct {
CommonResponse
}
)
func (y *Yunzhanghu) VerifyBankCardFourFactor(ctx context.Context, req *ReqVerifyBankCardFourFactor) error {
apiName := "银行卡四要素验证"
resp := new(retVerifyBankCardFourFactor)
json, err := y.postJSON(ctx, VerifyBankCardFourFactorURI, apiName, req)
if err != nil {
return err
}
return y.decodeWithError(json, resp, apiName)
}
/* 银行卡三要素验证 */
const VerifyBankCardThreeFactorURI = "/authentication/verify-bankcard-three-factor"
type (
ReqVerifyBankCardThreeFactor struct {
CardNo string `json:"card_no"`
IdCard string `json:"id_card"`
RealName string `json:"real_name"`
}
retVerifyBankCardThreeFactor struct {
CommonResponse
Data VerifyBankCardThreeFactorData `json:"data"`
}
VerifyBankCardThreeFactorData struct {
}
)
func (y *Yunzhanghu) VerifyBankCardThreeFactor(ctx context.Context, req *ReqVerifyBankCardThreeFactor) error {
apiName := "银行卡三要素验证"
resp := new(retVerifyBankCardThreeFactor)
json, err := y.postJSON(ctx, VerifyBankCardThreeFactorURI, apiName, req)
if err != nil {
return err
}
return y.decodeWithError(json, resp, apiName)
}
/* 身份证实名验证 */
const VerifyIdCardURI = "/authentication/verify-id"
type (
ReqVerifyIdCard struct {
IdCard string `json:"id_card"`
RealName string `json:"real_name"`
}
retVerifyIdCard struct {
CommonResponse
}
)
func (y *Yunzhanghu) VerifyIdCard(ctx context.Context, req *ReqVerifyIdCard) error {
apiName := "身份证实名验证"
resp := new(retVerifyIdCard)
json, err := y.postJSON(ctx, VerifyIdCardURI, apiName, req)
if err != nil {
return err
}
return y.decodeWithError(json, resp, apiName)
}
/* 查看用户免验证名单是否存在 */
const UserWhiteCheckURI = "/api/payment/v1/user/white/check"
type (
ReqUserWhiteCheck struct {
RealName string `json:"real_name"`
IdCard string `json:"id_card"`
}
retUserWhiteCheck struct {
CommonResponse
Data UserWhiteCheckData `json:"data"`
}
UserWhiteCheckData struct {
Ok string `json:"ok"`
}
)
func (y *Yunzhanghu) UserWhiteCheck(ctx context.Context, req *ReqUserWhiteCheck) (*UserWhiteCheckData, error) {
apiName := "查看用户免验证名单是否存在"
resp := new(retUserWhiteCheck)
json, err := y.postJSON(ctx, UserWhiteCheckURI, apiName, req)
if err != nil {
return nil, err
}
err = y.decodeWithError(json, resp, apiName)
if err != nil {
return nil, err
}
return &resp.Data, err
}
/* 银行卡信息查询接口 */
const BankCardQueryURI = "/api/payment/v1/card"
type (
ReqBankCardQuery struct {
CardNo string `json:"card_no"`
BankName string `json:"bank_name"`
}
retBankCardQuery struct {
CommonResponse
Data BankCardQueryData `json:"data"`
}
BankCardQueryData struct {
BankCode string `json:"bank_code"`
BankName string `json:"bank_name"`
CardType string `json:"card_type"`
IsSupport bool `json:"is_support"`
}
)
func (y *Yunzhanghu) BankCardQuery(ctx context.Context, req ReqBankCardQuery) (*BankCardQueryData, error) {
apiName := "银行卡信息查询接口"
resp := new(retBankCardQuery)
json, err := y.getJson(ctx, BankCardQueryURI, apiName, req)
if err != nil {
return nil, err
}
err = y.decodeWithError(json, resp, apiName)
if err != nil {
return nil, err
}
return &resp.Data, err
}