This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
payment_methods.go
163 lines (124 loc) · 5.66 KB
/
payment_methods.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
package zuora
import (
"context"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
)
type paymentMethods struct {
http Doer
authHeaderProvider AuthHeaderProvider
baseURL string
isPce bool
}
func newPaymentMethods(http Doer, authHeaderProvider AuthHeaderProvider, baseURL string, isPce bool) *paymentMethods {
return &paymentMethods{
http: http,
authHeaderProvider: authHeaderProvider,
baseURL: baseURL,
isPce: isPce,
}
}
//GetPaymentMethod Retrieves a specific Payment Method by ObjectID
// More info at: https://www.zuora.com/developer/api-reference/#operation/Object_GETPaymentMethod
func (t *paymentMethods) GetPaymentMethod(ctx context.Context, objectID string) (PaymentMethod, error) {
authHeader, err := t.authHeaderProvider.AuthHeaders(ctx)
if err != nil {
return PaymentMethod{}, responseError{isTemporary: false, message: fmt.Sprintf("error while trying to set auth headers: %v", err)}
}
var url string
if t.isPce {
url = fmt.Sprintf("%v:19016/v1/object/payment-method/%v", t.baseURL, objectID)
} else {
url = fmt.Sprintf("%v/v1/object/payment-method/%v", t.baseURL, objectID)
}
req, err := http.NewRequest(http.MethodGet, url, nil)
if err != nil {
return PaymentMethod{}, responseError{isTemporary: false, message: fmt.Sprintf("error while trying to create an HTTP request: %v", err)}
}
req.Header.Add("Authorization", authHeader)
req.Header.Add("Content-Type", "application/json")
if ctx.Value(ContextKeyZuoraEntityIds) != nil {
req.Header.Add("Zuora-Entity-Ids", ctx.Value(ContextKeyZuoraEntityIds).(string))
}
if ctx.Value(ContextKeyZuoraTrackID) != nil {
req.Header.Add("Zuora-Track-Id", ctx.Value(ContextKeyZuoraTrackID).(string))
}
res, err := t.http.Do(req.WithContext(ctx))
if err != nil {
return PaymentMethod{}, responseError{isTemporary: false, message: fmt.Sprintf("error while trying to make request: %v", err)}
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if res.StatusCode < 200 || res.StatusCode > 299 {
var isTemporary bool
if http.StatusRequestTimeout == res.StatusCode ||
http.StatusTooManyRequests == res.StatusCode ||
http.StatusInternalServerError == res.StatusCode ||
http.StatusServiceUnavailable == res.StatusCode {
isTemporary = true
}
if err != nil {
return PaymentMethod{}, responseError{isTemporary: isTemporary, message: fmt.Sprintf("error while trying to read body response into memory. Response Code: %v - Error: %v", res.StatusCode, err)}
}
return PaymentMethod{}, responseError{isTemporary: isTemporary, message: fmt.Sprintf("got an invalid http status. Response Code: %v - Body: %v", res.StatusCode, string(body))}
}
jsonResponse := PaymentMethod{}
if err := json.Unmarshal(body, &jsonResponse); err != nil {
return PaymentMethod{}, responseError{isTemporary: false, message: fmt.Sprintf("error while Unmarshal json response. Error: %v. JSON: %v", err, string(body))}
}
return jsonResponse, nil
}
// GetPaymentMethodSnapshot A Payment Method Snapshot is a copy of the particular Payment Method used in a
// transaction. If the Payment Method is deleted, the Payment Method Snapshot continues to retain the
// data used in each of the past transactions.
// More info at: https://www.zuora.com/developer/api-reference/#operation/Object_GETPaymentMethodSnapshot
func (t *paymentMethods) GetPaymentMethodSnapshot(ctx context.Context, snapshotID string) (PaymentMethod, error) {
authHeader, err := t.authHeaderProvider.AuthHeaders(ctx)
if err != nil {
return PaymentMethod{}, responseError{isTemporary: false, message: fmt.Sprintf("error while trying to set auth headers: %v", err)}
}
var url string
if t.isPce {
url = fmt.Sprintf("%v:19016/v1/object/payment-method-snapshot/%v", t.baseURL, snapshotID)
} else {
url = fmt.Sprintf("%v/v1/object/payment-method-snapshot/%v", t.baseURL, snapshotID)
}
req, err := http.NewRequest(http.MethodGet, url, nil)
if err != nil {
return PaymentMethod{}, responseError{isTemporary: false, message: fmt.Sprintf("error while trying to create an HTTP request: %v", err)}
}
req.Header.Add("Authorization", authHeader)
req.Header.Add("Content-Type", "application/json")
if ctx.Value(ContextKeyZuoraEntityIds) != nil {
req.Header.Add("Zuora-Entity-Ids", ctx.Value(ContextKeyZuoraEntityIds).(string))
}
if ctx.Value(ContextKeyZuoraTrackID) != nil {
req.Header.Add("Zuora-Track-Id", ctx.Value(ContextKeyZuoraTrackID).(string))
}
res, err := t.http.Do(req.WithContext(ctx))
if err != nil {
return PaymentMethod{}, responseError{isTemporary: false, message: fmt.Sprintf("error while trying to make request: %v", err)}
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if res.StatusCode < 200 || res.StatusCode > 299 {
var isTemporary bool
if http.StatusRequestTimeout == res.StatusCode ||
http.StatusTooManyRequests == res.StatusCode ||
http.StatusInternalServerError == res.StatusCode ||
http.StatusServiceUnavailable == res.StatusCode {
isTemporary = true
}
if err != nil {
return PaymentMethod{}, responseError{isTemporary: isTemporary, message: fmt.Sprintf("error while trying to read body response into memory. Response Code: %v - Error: %v", res.StatusCode, err)}
}
return PaymentMethod{}, responseError{isTemporary: isTemporary, message: fmt.Sprintf("got an invalid http status. Response Code: %v - Body: %v", res.StatusCode, string(body))}
}
jsonResponse := PaymentMethod{}
if err := json.Unmarshal(body, &jsonResponse); err != nil {
return PaymentMethod{}, responseError{isTemporary: false, message: fmt.Sprintf("error while Unmarshal json response. Error: %v. JSON: %v", err, string(body))}
}
return jsonResponse, nil
}