-
Notifications
You must be signed in to change notification settings - Fork 7
/
recurring_billing.go
373 lines (334 loc) · 10.9 KB
/
recurring_billing.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
package authorizenet
import (
"encoding/json"
)
func (res SubscriptionResponse) Approved() bool {
if res.Messages.ResultCode == "Ok" {
return true
}
return false
}
func (res SubscriptionResponse) CustomerProfileId() string {
return res.Profile.CustomerProfileID
}
func (res SubscriptionResponse) CustomerPaymentProfileId() string {
return res.Profile.CustomerPaymentProfileID
}
func (res SubscriptionResponse) ErrorMessage() string {
return res.Messages.Message[0].Text
}
func (sub Subscription) Charge(c Client) (*SubscriptionResponse, error) {
res, err := c.SendSubscription(sub)
return res, err
}
func (sub Subscription) Update(c Client) (*SubscriptionResponse, error) {
res, err := c.UpdateSubscription(sub)
return res, err
}
func (res SubscriptionResponse) Info() string {
return res.Messages.Message[0].Text
}
type UpdateSubscriptionRequest struct {
ARBUpdateSubscriptionRequest ARBUpdateSubscriptionRequest `json:"ARBUpdateSubscriptionRequest"`
}
type ARBUpdateSubscriptionRequest struct {
MerchantAuthentication MerchantAuthentication `json:"merchantAuthentication"`
RefID string `json:"refId,omitempty"`
SubscriptionId string `json:"subscriptionId,omitempty"`
Subscription Subscription `json:"subscription,omitempty"`
}
type CreateSubscriptionRequest struct {
ARBCreateSubscriptionRequest ARBCreateSubscriptionRequest `json:"ARBCreateSubscriptionRequest"`
}
type ARBCreateSubscriptionRequest struct {
MerchantAuthentication MerchantAuthentication `json:"merchantAuthentication"`
RefID string `json:"refId,omitempty"`
Subscription Subscription `json:"subscription"`
}
type GetSubscriptionStatusRequest struct {
ARBGetSubscriptionStatusRequest ARBGetSubscriptionRequest `json:"ARBGetSubscriptionStatusRequest"`
}
type GetSubscriptionCancelRequest struct {
ARBCancelSubscriptionRequest ARBGetSubscriptionRequest `json:"ARBCancelSubscriptionRequest"`
}
type GetSubscriptionRequest struct {
ARBGetSubscriptionRequest ARBGetSubscriptionRequest `json:"ARBGetSubscriptionRequest"`
}
type ARBGetSubscriptionRequest struct {
MerchantAuthentication MerchantAuthentication `json:"merchantAuthentication"`
RefID string `json:"refId"`
SubscriptionID string `json:"subscriptionId"`
}
type SetSubscription struct {
Id string `json:"subscriptionId"`
}
type Subscription struct {
Name string `json:"name,omitempty"`
PaymentSchedule *PaymentSchedule `json:"paymentSchedule,omitempty"`
Amount string `json:"amount,omitempty"`
TrialAmount string `json:"trialAmount,omitempty"`
Payment *Payment `json:"payment,omitempty"`
BillTo *BillTo `json:"billTo,omitempty"`
SubscriptionId string `json:"subscriptionId,omitempty"`
Profile *CustomerProfiler `json:"profile,omitempty"`
}
type BillTo struct {
FirstName string `json:"firstName,omitempty"`
LastName string `json:"lastName,omitempty"`
Address string `json:"address,omitempty"`
City string `json:"city,omitempty"`
State string `json:"state,omitempty"`
Zip string `json:"zip,omitempty"`
Country string `json:"country,omitempty"`
PhoneNumber string `json:"phoneNumber,omitempty"`
}
type PaymentSchedule struct {
Interval Interval `json:"interval,omitempty"`
StartDate string `json:"startDate,omitempty"`
TotalOccurrences string `json:"totalOccurrences,omitempty"`
TrialOccurrences string `json:"trialOccurrences,omitempty"`
}
type Interval struct {
Length string `json:"length,omitempty"`
Unit string `json:"unit,omitempty"`
}
type SubscriptionResponse struct {
SubscriptionID string `json:"subscriptionId"`
Profile struct {
CustomerProfileID string `json:"customerProfileId"`
CustomerPaymentProfileID string `json:"customerPaymentProfileId"`
} `json:"profile"`
Messages struct {
ResultCode string `json:"resultCode"`
Message []struct {
Code string `json:"code"`
Text string `json:"text"`
} `json:"message"`
} `json:"messages"`
}
func (c Client) SendSubscription(sub Subscription) (*SubscriptionResponse, error) {
action := CreateSubscriptionRequest{
ARBCreateSubscriptionRequest: ARBCreateSubscriptionRequest{
MerchantAuthentication: c.GetAuthentication(),
Subscription: sub,
},
}
req, err := json.Marshal(action)
if err != nil {
return nil, err
}
res, err := c.SendRequest(req)
var dat SubscriptionResponse
err = json.Unmarshal(res, &dat)
if err != nil {
return nil, err
}
return &dat, err
}
func (c Client) UpdateSubscription(sub Subscription) (*SubscriptionResponse, error) {
action := UpdateSubscriptionRequest{
ARBUpdateSubscriptionRequest: ARBUpdateSubscriptionRequest{
MerchantAuthentication: c.GetAuthentication(),
SubscriptionId: sub.SubscriptionId,
Subscription: Subscription{
Payment: &Payment{
CreditCard: sub.Payment.CreditCard,
},
},
},
}
req, err := json.Marshal(action)
if err != nil {
return nil, err
}
res, err := c.SendRequest(req)
var dat SubscriptionResponse
err = json.Unmarshal(res, &dat)
if err != nil {
return nil, err
}
return &dat, err
}
func (sub GetSubscriptionList) Count() int {
return sub.TotalNumInResultSet
}
func (sub SetSubscription) Info(c Client) (*GetSubscriptionResponse, error) {
action := GetSubscriptionRequest{
ARBGetSubscriptionRequest: ARBGetSubscriptionRequest{
MerchantAuthentication: c.GetAuthentication(),
SubscriptionID: sub.Id,
},
}
req, err := json.Marshal(action)
if err != nil {
return nil, err
}
res, err := c.SendRequest(req)
var dat GetSubscriptionResponse
err = json.Unmarshal(res, &dat)
if err != nil {
return nil, err
}
return &dat, err
}
func (s SubscriptionStatus) Active() bool {
if s.Status == "active" {
return true
}
return false
}
func (sub SetSubscription) Status(c Client) (*SubscriptionStatus, error) {
action := GetSubscriptionStatusRequest{
ARBGetSubscriptionStatusRequest: ARBGetSubscriptionRequest{
MerchantAuthentication: c.GetAuthentication(),
SubscriptionID: sub.Id,
},
}
req, err := json.Marshal(action)
if err != nil {
return nil, err
}
res, err := c.SendRequest(req)
var dat SubscriptionStatus
err = json.Unmarshal(res, &dat)
if err != nil {
return nil, err
}
return &dat, err
}
func (sub SetSubscription) Cancel(c Client) (*SubscriptionCancel, error) {
action := GetSubscriptionCancelRequest{
ARBCancelSubscriptionRequest: ARBGetSubscriptionRequest{
MerchantAuthentication: c.GetAuthentication(),
SubscriptionID: sub.Id,
},
}
req, err := json.Marshal(action)
if err != nil {
return nil, err
}
res, err := c.SendRequest(req)
var dat SubscriptionCancel
err = json.Unmarshal(res, &dat)
if err != nil {
return nil, err
}
return &dat, err
}
func (c Client) SubscriptionList(search string) (*GetSubscriptionList, error) {
action := GetSubscriptionListRequest{
ARBGetSubscriptionListRequest: ARBGetSubscriptionListRequest{
MerchantAuthentication: c.GetAuthentication(),
SearchType: search,
Sorting: Sorting{
OrderBy: "id",
OrderDescending: "false",
},
Paging: Paging{
Limit: "1000",
Offset: "1",
},
},
}
req, err := json.Marshal(action)
if err != nil {
return nil, err
}
res, err := c.SendRequest(req)
var dat GetSubscriptionList
err = json.Unmarshal(res, &dat)
if err != nil {
return nil, err
}
return &dat, err
}
func (sub GetSubscriptionResponse) ErrorMessage() string {
return sub.Messages.Message[0].Text
}
type GetSubscriptionResponse struct {
Subscription struct {
Name string `json:"name"`
PaymentSchedule struct {
Interval struct {
Length int `json:"length"`
Unit string `json:"unit"`
} `json:"interval"`
StartDate string `json:"startDate"`
TotalOccurrences int `json:"totalOccurrences"`
TrialOccurrences int `json:"trialOccurrences"`
} `json:"paymentSchedule"`
Amount float64 `json:"amount"`
TrialAmount float64 `json:"trialAmount"`
Status string `json:"status"`
Profile struct {
PaymentProfile struct {
CustomerPaymentProfileID string `json:"customerPaymentProfileId"`
Payment struct {
CreditCard struct {
CardNumber string `json:"cardNumber"`
ExpirationDate string `json:"expirationDate"`
} `json:"creditCard"`
} `json:"payment"`
CustomerType string `json:"customerType"`
BillTo struct {
FirstName string `json:"firstName"`
LastName string `json:"lastName"`
} `json:"billTo"`
} `json:"paymentProfile"`
CustomerProfileID string `json:"customerProfileId"`
Description string `json:"description"`
} `json:"profile"`
} `json:"subscription"`
RefID string `json:"refId"`
MessagesResponse
}
type SubscriptionStatus struct {
Note string `json:"note"`
Status string `json:"status"`
StatusSpecified bool `json:"statusSpecified"`
RefID string `json:"refId"`
MessagesResponse
}
type SubscriptionCancel struct {
RefID string `json:"refId"`
MessagesResponse
}
type GetSubscriptionListRequest struct {
ARBGetSubscriptionListRequest ARBGetSubscriptionListRequest `json:"ARBGetSubscriptionListRequest"`
}
type ARBGetSubscriptionListRequest struct {
MerchantAuthentication MerchantAuthentication `json:"merchantAuthentication"`
SearchType string `json:"searchType"`
Sorting Sorting `json:"sorting"`
Paging Paging `json:"paging"`
}
type Sorting struct {
OrderBy string `json:"orderBy"`
OrderDescending string `json:"orderDescending"`
}
type Paging struct {
Limit string `json:"limit"`
Offset string `json:"offset"`
}
type GetSubscriptionList struct {
TotalNumInResultSet int `json:"totalNumInResultSet"`
SubscriptionDetails []struct {
ID int `json:"id"`
Name string `json:"name"`
Status string `json:"status"`
CreateTimeStampUTC string `json:"createTimeStampUTC"`
FirstName string `json:"firstName"`
LastName string `json:"lastName"`
TotalOccurrences int `json:"totalOccurrences"`
PastOccurrences int `json:"pastOccurrences"`
PaymentMethod string `json:"paymentMethod"`
AccountNumber string `json:"accountNumber"`
Invoice string `json:"invoice"`
Amount float64 `json:"amount"`
CurrencyCode string `json:"currencyCode"`
CustomerProfileID int `json:"customerProfileId"`
CustomerPaymentProfileID int `json:"customerPaymentProfileId,omitempty"`
CustomerShippingProfileID int `json:"customerShippingProfileId,omitempty"`
} `json:"subscriptionDetails"`
MessagesResponse
}