-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapi_requst.go
More file actions
286 lines (212 loc) · 6.51 KB
/
api_requst.go
File metadata and controls
286 lines (212 loc) · 6.51 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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
package ypmn
import (
"crypto/md5"
"encoding/json"
"encoding/hex"
"crypto/hmac"
"crypto/sha256"
"crypto/tls"
"net/http"
"net/url"
"io/ioutil"
"time"
"bytes"
"github.com/google/go-querystring/query"
)
const HOST = "https://secure.ypmn.ru"
const SANDBOX_HOST = "https://sandbox.ypmn.ru"
const AUTHORIZE_API = "/api/v4/payments/authorize"
const CAPTURE_API = "/api/v4/payments/capture"
const REFUND_API = "/api/v4/payments/refund"
const REPORT_GENERAL_API = "/api/v4/reports/general"
const REPORT_CHART_API = "/api/v4/reports/chart"
const REPORT_ORDER_API = "/api/v4/reports/orders"
const ORDER_STATUS_API = "/api/v4/payments/status"
type ApiRequest struct {
Merchant Merchant
SandboxModeIsOn bool
DebugModeIsOn bool
}
func (request ApiRequest) SendAuthRequest(payment Payment) (map[string]interface{}, error) {
return request.sendPostRequest(payment, AUTHORIZE_API)
}
func (request ApiRequest) SendCaptureRequest(capture Capture) (map[string]interface{}, error) {
return request.sendPostRequest(capture, CAPTURE_API)
}
func (request ApiRequest) SendRefundRequest(capture Capture) (map[string]interface{}, error) {
return request.sendPostRequest(capture, REFUND_API)
}
func (request ApiRequest) sendPostRequest(data interface{}, api string) (map[string]interface{}, error) {
json_data, err := json.Marshal(data)
h := md5.New()
h.Write([]byte(json_data))
hash := hex.EncodeToString(h.Sum(nil))
date := time.Now().Format("2006-01-02T15:04:05+00:00")
var tr *http.Transport
if request.DebugModeIsOn {
tr = &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
} else {
tr = &http.Transport{}
}
client := &http.Client {
Transport: tr,
}
urlHost := ""
if request.SandboxModeIsOn {
urlHost = SANDBOX_HOST
} else {
urlHost = HOST
}
url := urlHost + api
req, err := http.NewRequest("POST", url, bytes.NewReader(json_data))
if err != nil {
return nil, err
}
signature := GetSignature(request.Merchant, date, url, "POST", hash)
req.Header.Add("Accept", "application/json")
req.Header.Add("X-Header-Signature", signature)
req.Header.Add("X-Header-Merchant", request.Merchant.MerchantCode)
req.Header.Add("X-Header-Date", date)
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
return nil, err
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
return nil, err
}
var jsonMap map[string]interface{}
err = json.Unmarshal(body, &jsonMap)
return jsonMap, err
}
func (request ApiRequest) SendReportGeneralRequest(dateStart time.Time, dateEnd time.Time, periodLength string) (map[string]interface{}, error) {
type GeneralReportRequest struct {
DateStart string `url:"dateStart"`
DateEnd string `url:"dateEnd"`
PeriodLength string `url:"periodDate"`
Merchant string `url:"merchant"`
}
if(periodLength == ""){
periodLength = DAY
}
if(dateEnd.IsZero()){
dateEnd = time.Now()
}
data := GeneralReportRequest{
DateStart: dateStart.Format("2006-01-02"),
DateEnd: dateStart.Format("2006-01-02"),
PeriodLength: periodLength,
}
return request.sendGetRequest(data, REPORT_GENERAL_API)
}
func (request ApiRequest) SendOrderStatusRequest(merchantPaymentReference string) (map[string]interface{}, error) {
var data map[string]interface{}
return request.sendGetRequest(data, ORDER_STATUS_API + "/" + merchantPaymentReference)
}
func (request ApiRequest) SendReportChartRequest(dateStart time.Time, dateEnd time.Time, periodLength string) (map[string]interface{}, error){
type ChartReportRequest struct{
DateStart string `url:"dateStart"`
DateEnd string `url:"dateEnd"`
PeriodLength string `url:"periodDate"`
Merchant string `url:"merchant"`
}
if(periodLength == ""){
periodLength = DAY
}
if(dateEnd.IsZero()){
dateEnd = time.Now()
}
data := ChartReportRequest{
DateStart: dateStart.Format("2006-01-02"),
DateEnd: dateStart.Format("2006-01-02"),
PeriodLength: periodLength,
}
return request.sendGetRequest(data, REPORT_CHART_API)
}
func (request ApiRequest) SendReportOrderRequest(dateStart time.Time, dateEnd time.Time, periodLength string) (map[string]interface{}, error){
type ChartReportRequest struct{
DateStart string `url:"dateStart"`
DateEnd string `url:"dateEnd"`
PeriodLength string `url:"periodDate"`
Merchant string `url:"merchant"`
}
if(periodLength == ""){
periodLength = DAY
}
if(dateEnd.IsZero()){
dateEnd = time.Now()
}
data := ChartReportRequest{
DateStart: dateStart.Format("2006-01-02"),
DateEnd: dateStart.Format("2006-01-02"),
PeriodLength: periodLength,
}
return request.sendGetRequest(data, REPORT_ORDER_API)
}
func (request ApiRequest) sendGetRequest(data interface{}, api string) (map[string]interface{}, error) {
h := md5.New()
hash := hex.EncodeToString(h.Sum(nil))
date := time.Now().Format("2006-01-02T15:04:05+00:00")
var tr *http.Transport
if request.DebugModeIsOn {
tr = &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
} else {
tr = &http.Transport{}
}
client := &http.Client {
Transport: tr,
}
urlHost := ""
if request.SandboxModeIsOn {
urlHost = SANDBOX_HOST
} else {
urlHost = HOST
}
vals, _ := query.Values(data)
params := vals.Encode()
var url string
if len(vals) > 0 {
url = urlHost + api + "/?" + params
} else {
url = urlHost + api
}
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return nil, err
}
signature := GetSignature(request.Merchant, date, url, "GET", hash)
req.Header.Add("Accept", "application/json")
req.Header.Add("X-Header-Signature", signature)
req.Header.Add("X-Header-Merchant", request.Merchant.MerchantCode)
req.Header.Add("X-Header-Date", date)
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
return nil, err
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
return nil, err
}
var jsonMap map[string]interface{}
err = json.Unmarshal(body, &jsonMap)
return jsonMap, err
}
func GetSignature (merchant Merchant, date string, apiUrl string, httpMethod string, bodyHash string) string {
urlParts, _ := url.Parse(apiUrl)
urlHashableParts := httpMethod + urlParts.Path
if urlParts.RawQuery != "" {
urlHashableParts += urlParts.RawQuery
}
hashableString := merchant.MerchantCode + date + urlHashableParts + bodyHash
h := hmac.New(sha256.New, []byte(merchant.MerchantSecret))
h.Write([]byte(hashableString))
return hex.EncodeToString(h.Sum(nil))
}