-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.go
282 lines (262 loc) · 7.72 KB
/
main.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
// Package zarinpal provides simple methods to work
// with Zarinpal (https://www.zarinpal.com/) checkout gateway
package zarinpal
import (
"bytes"
"encoding/json"
"errors"
"io/ioutil"
"log"
"net/http"
"strconv"
)
// Zarinpal is the base struct for zarinpal payment
// gateway, one shall not create or manipulate instances
// if this struct manually and just use provided methods
// to woek with it.
type Zarinpal struct {
MerchantID string
Sandbox bool
APIEndpoint string
PaymentEndpoint string
}
type paymentRequestReqBody struct {
MerchantID string
Amount int
CallbackURL string
Description string
Email string
Mobile string
}
type paymentRequestResp struct {
Status int
Authority string
}
type paymentVerificationReqBody struct {
MerchantID string
Authority string
Amount int
}
type paymentVerificationResp struct {
Status int
RefID json.Number
}
type unverifiedTransactionsReqBody struct {
MerchantID string
}
// UnverifiedAuthority is the base struct for Authorities in unverifiedTransactionsResp
type UnverifiedAuthority struct {
Authority string
Amount int
Channel string
CallbackURL string
Referer string
Email string
CellPhone string
Date string // ToDo Check type to be date
}
type unverifiedTransactionsResp struct {
Status int
Authorities []UnverifiedAuthority
}
type refreshAuthorityReqBody struct {
MerchantID string
Authority string
ExpireIn int
}
type refreshAuthorityResp struct {
Status int
}
// NewZarinpal creates a new instance of zarinpal payment
// gateway with provided configs. It also tries to validate
// provided configs.
func NewZarinpal(merchantID string, sandbox bool) (*Zarinpal, error) {
if len(merchantID) != 36 {
return nil, errors.New("MerchantID must be 36 characters")
}
apiEndPoint := "https://www.zarinpal.com/pg/rest/WebGate/"
paymentEndpoint := "https://www.zarinpal.com/pg/StartPay/"
if sandbox == true {
apiEndPoint = "https://sandbox.zarinpal.com/pg/rest/WebGate/"
paymentEndpoint = "https://sandbox.zarinpal.com/pg/StartPay/"
}
return &Zarinpal{
MerchantID: merchantID,
Sandbox: sandbox,
APIEndpoint: apiEndPoint,
PaymentEndpoint: paymentEndpoint,
}, nil
}
// NewPaymentRequest gets a payment url from Zarinpal.
// amount is in Tomans (not Rials) format.
// email and mobile are optional.
//
// If error is not nil, you can check statusCode for
// specific error handling based on Zarinpal error codes.
// If statusCode is not 100, it means Zarinpal raised an error
// on their end and you can check the error code and its reason
// based on their documentation placed in
// https://github.com/ZarinPal-Lab/Documentation-PaymentGateway/archive/master.zip
func (zarinpal *Zarinpal) NewPaymentRequest(amount int, callbackURL, description, email, mobile string) (paymentURL, authority string, statusCode int, err error) {
if amount < 1 {
err = errors.New("amount must be a positive number")
return
}
if callbackURL == "" {
err = errors.New("callbackURL should not be empty")
return
}
if description == "" {
err = errors.New("description should not be empty")
return
}
paymentRequest := paymentRequestReqBody{
MerchantID: zarinpal.MerchantID,
Amount: amount,
CallbackURL: callbackURL,
Description: description,
Email: email,
Mobile: mobile,
}
var resp paymentRequestResp
err = zarinpal.request("PaymentRequest.json", &paymentRequest, &resp)
if err != nil {
return
}
statusCode = resp.Status
if resp.Status == 100 {
authority = resp.Authority
paymentURL = zarinpal.PaymentEndpoint + resp.Authority
} else {
err = errors.New(strconv.Itoa(resp.Status))
}
return
}
// PaymentVerification verifies if a payment was done successfully, Authority of the
// payment request should be passed to this method alongside its Amount in Tomans.
//
// If error is not nil, you can check statusCode for
// specific error handling based on Zarinpal error codes.
// If statusCode is not 100, it means Zarinpal raised an error
// on their end and you can check the error code and its reason
// based on their documentation placed in
// https://github.com/ZarinPal-Lab/Documentation-PaymentGateway/archive/master.zip
func (zarinpal *Zarinpal) PaymentVerification(amount int, authority string) (verified bool, refID string, statusCode int, err error) {
if amount <= 0 {
err = errors.New("amount must be a positive number")
return
}
if authority == "" {
err = errors.New("authority should not be empty")
return
}
paymentVerification := paymentVerificationReqBody{
MerchantID: zarinpal.MerchantID,
Amount: amount,
Authority: authority,
}
var resp paymentVerificationResp
err = zarinpal.request("PaymentVerification.json", &paymentVerification, &resp)
if err != nil {
return
}
statusCode = resp.Status
if resp.Status == 100 {
verified = true
refID = string(resp.RefID)
} else {
err = errors.New(strconv.Itoa(resp.Status))
}
return
}
// UnverifiedTransactions gets unverified transactions.
//
// If error is not nil, you can check statusCode for
// specific error handling based on Zarinpal error codes.
// If statusCode is not 100, it means Zarinpal raised an error
// on their end and you can check the error code and its reason
// based on their documentation placed in
// https://github.com/ZarinPal-Lab/Documentation-PaymentGateway/archive/master.zip
func (zarinpal *Zarinpal) UnverifiedTransactions() (authorities []UnverifiedAuthority, statusCode int, err error) {
unverifiedTransactions := unverifiedTransactionsReqBody{
MerchantID: zarinpal.MerchantID,
}
var resp unverifiedTransactionsResp
err = zarinpal.request("UnverifiedTransactions.json", &unverifiedTransactions, &resp)
if err != nil {
return
}
if resp.Status == 100 {
statusCode = resp.Status
authorities = resp.Authorities
} else {
err = errors.New(strconv.Itoa(resp.Status))
}
return
}
// RefreshAuthority update authority expiration time.\n
// expire should be number between [1800,3888000] seconds.
//
// If error is not nil, you can check statusCode for
// specific error handling based on Zarinpal error codes.
// If statusCode is not 100, it means Zarinpal raised an error
// on their end and you can check the error code and its reason
// based on their documentation placed in
// https://github.com/ZarinPal-Lab/Documentation-PaymentGateway/archive/master.zip
func (zarinpal *Zarinpal) RefreshAuthority(authority string, expire int) (statusCode int, err error) {
if authority == "" {
err = errors.New("authority should not be empty")
return
}
if expire < 1800 {
err = errors.New("expire must be at least 1800")
return
} else if expire > 3888000 {
err = errors.New("expire must not be greater than 3888000")
return
}
refreshAuthority := refreshAuthorityReqBody{
MerchantID: zarinpal.MerchantID,
Authority: authority,
ExpireIn: expire,
}
var resp refreshAuthorityResp
err = zarinpal.request("RefreshAuthority.json", &refreshAuthority, &resp)
if err != nil {
return
}
if resp.Status == 100 {
statusCode = resp.Status
} else {
err = errors.New(strconv.Itoa(resp.Status))
}
return
}
func (zarinpal *Zarinpal) request(method string, data interface{}, res interface{}) error {
reqBytes, err := json.Marshal(data)
if err != nil {
return err
}
req, err := http.NewRequest("POST", zarinpal.APIEndpoint+method, bytes.NewBuffer(reqBytes))
if err != nil {
return err
}
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return err
}
log.Println(string(body))
err = json.Unmarshal(body, res)
if err != nil {
err = errors.New("zarinpal invalid json response")
return err
}
return nil
}