-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpasargad.go
242 lines (206 loc) · 6.13 KB
/
pasargad.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
package pasargad
import (
"bytes"
"encoding/json"
"errors"
"io/ioutil"
"net/http"
"time"
)
// The API URLs
const (
URL_GET_TOKEN = "https://pep.shaparak.ir/Api/v1/Payment/GetToken"
// Redirect User with token to this URL.
// e.q: https://pep.shaparak.ir/payment.aspx?n=Token
URL_PAYMENT_GATEWAY = "https://pep.shaparak.ir/payment.aspx"
URL_CHECK_TRANSACTION = "https://pep.shaparak.ir/Api/v1/Payment/CheckTransactionResult"
URL_VERIFY_PAYMENT = "https://pep.shaparak.ir/Api/v1/Payment/VerifyPayment"
URL_REFUND = "https://pep.shaparak.ir/Api/v1/Payment/RefundPayment"
)
const ACTION_PAYMENT = "1003"
// The API dateTime format for Pasargad
const dateTimeFormat = "2006/01/02 15:04:05"
// HTTPClient is HTTP client.
type HTTPClient interface {
Do(req *http.Request) (*http.Response, error)
}
// PasargadPaymentAPI for rest
type PasargadPaymentAPI struct {
httpClient HTTPClient
merchantCode int64
terminalId int64
redirectUrl string
certificationFile string
sign string
}
// PasargadAPI creates a new PasargadPaymentAPI instance.
func PasargadAPI(merchantCode int64, terminalId int64, redirectUrl string, certificationFile string) *PasargadPaymentAPI {
return PasargadAPIClient(merchantCode, terminalId, redirectUrl, certificationFile, &http.Client{})
}
// PasargadAPIClient creates a new PasargadPaymentAPI instance
// and allows you to pass a http.Client.
func PasargadAPIClient(merchantCode int64, terminalId int64, redirectUrl string, certificationFile string, httpClient HTTPClient) *PasargadPaymentAPI {
return &PasargadPaymentAPI{
httpClient: httpClient,
merchantCode: merchantCode,
terminalId: terminalId,
redirectUrl: redirectUrl,
certificationFile: certificationFile,
}
}
// makeRequest is our RequestBuilder object (used in other packages of pepco-api)
func (m *PasargadPaymentAPI) makeRequest(url, method string, body interface{}, resp interface{}) error {
var data []byte
if body != nil {
var err error
data, err = json.Marshal(body)
if err != nil {
return err
}
}
req, err := http.NewRequest(method, url, bytes.NewReader(data))
if err != nil {
return err
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Accept", "application/json")
req.Header.Set("Sign", m.sign)
r, err := m.httpClient.Do(req)
if err != nil {
return err
}
defer r.Body.Close()
// From Here --------------------
respData, err := ioutil.ReadAll(r.Body)
if err != nil {
return err
}
if r.StatusCode != 200 {
var errRes ErrorResponse
err = json.Unmarshal(respData, &errRes)
if err != nil {
return err
}
return errRes
} else if resp != nil {
err = json.Unmarshal(respData, &resp)
if err != nil {
return err
}
}
// To here ---------------------
return nil
}
// SetSign sets new key.
func (m *PasargadPaymentAPI) SetSign(sign string) {
m.sign = sign
}
// Sign Data with RSA key
func (m *PasargadPaymentAPI) signData(body interface{}) error {
var data []byte
if body != nil {
var err error
// Getting Data ready for signing with PKCS1
data, err = json.Marshal(body)
if err != nil {
return err
}
// Convert XML to Public/Private Keys
res, err := m.convertXmlToKey()
if err != nil {
return err
}
// Creating Signer with our private key...
signer, err := NewSigner(res)
if err != nil {
return err
}
// ...and finally, siging data.
signedMessage, err := signer.SignBase64(data)
if err != nil {
return err
}
m.SetSign(signedMessage)
}
return nil
}
// Get Current timestamp in Y/m/d H:i:s format
func (m *PasargadPaymentAPI) getTimestamp() string {
now := time.Now()
return now.Format(dateTimeFormat)
}
// Generate Payment URL
func (m *PasargadPaymentAPI) Redirect(request CreatePaymentRequest) (string, error) {
requestBody := request.GetRedirectRequest()
requestBody.Action = ACTION_PAYMENT
requestBody.MerchantCode = m.merchantCode
requestBody.TerminalCode = m.terminalId
requestBody.RedirectAddress = m.redirectUrl
requestBody.TimeStamp = m.getTimestamp()
m.signData(requestBody)
var resp RedirectResponse
err := m.makeRequest(URL_GET_TOKEN, "POST", requestBody, &resp)
if err != nil {
return "", err
}
if resp.IsSuccess == false {
requestError := errors.New(resp.Message)
return "", requestError
}
// In this stage, we got a successful response from Pasargad IPG
var redirectAddress string = URL_PAYMENT_GATEWAY + "?n=" + resp.Token
return redirectAddress, nil
}
// CheckTransaction method
func (m *PasargadPaymentAPI) CheckTransaction(request CreateCheckTransactionRequest) (*CheckTransactionResponse, error) {
requestBody := request.GetCheckTransactionRequest()
requestBody.MerchantCode = m.merchantCode
requestBody.TerminalCode = m.terminalId
m.signData(requestBody)
var resp CheckTransactionResponse
err := m.makeRequest(URL_CHECK_TRANSACTION, "POST", requestBody, &resp)
if err != nil {
return nil, err
}
if resp.IsSuccess == false {
requestError := errors.New(resp.Message)
return nil, requestError
}
return &resp, nil
}
// VerifyPayment method
func (m *PasargadPaymentAPI) VerifyPayment(request CreateVerifyPaymentRequest) (*VerifyPaymentResponse, error) {
requestBody := request.GetVerifyPaymentRequest()
requestBody.MerchantCode = m.merchantCode
requestBody.TerminalCode = m.terminalId
requestBody.TimeStamp = m.getTimestamp()
m.signData(requestBody)
var resp VerifyPaymentResponse
err := m.makeRequest(URL_VERIFY_PAYMENT, "POST", requestBody, &resp)
if err != nil {
return nil, err
}
if resp.IsSuccess == false {
requestError := errors.New(resp.Message)
return nil, requestError
}
return &resp, nil
}
// Refund method
func (m *PasargadPaymentAPI) Refund(request CreateRefundRequest) (*RefundResponse, error) {
requestBody := request.GetRefundRequest()
requestBody.MerchantCode = m.merchantCode
requestBody.TerminalCode = m.terminalId
requestBody.TimeStamp = m.getTimestamp()
m.signData(requestBody)
var resp RefundResponse
err := m.makeRequest(URL_REFUND, "POST", requestBody, &resp)
if err != nil {
return nil, err
}
if resp.IsSuccess == false {
requestError := errors.New(resp.Message)
return nil, requestError
}
return &resp, nil
}