forked from stripe/stripe-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
329 lines (254 loc) · 8.1 KB
/
client.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
// Package invoice provides the /invoices APIs
package invoice
import (
"fmt"
"strconv"
stripe "github.com/stripe/stripe-go"
)
const (
TypeInvoiceItem stripe.InvoiceLineType = "invoiceitem"
TypeSubscription stripe.InvoiceLineType = "subscription"
)
// Client is the client used to invoke /invoices APIs.
type Client struct {
B stripe.Backend
Key string
}
// New POSTs new invoices.
// For more details see https://stripe.com/docs/api#create_invoice.
func New(params *stripe.InvoiceParams) (*stripe.Invoice, error) {
return getC().New(params)
}
func (c Client) New(params *stripe.InvoiceParams) (*stripe.Invoice, error) {
body := &stripe.RequestValues{}
body.Add("customer", params.Customer)
if len(params.Billing) > 0 {
body.Add("billing", string(params.Billing))
}
if params.DaysUntilDue > 0 {
body.Add("days_until_due", strconv.FormatUint(params.DaysUntilDue, 10))
}
if params.DueDate > 0 {
body.Add("due_date", strconv.FormatInt(params.DueDate, 10))
}
if len(params.Desc) > 0 {
body.Add("description", params.Desc)
}
if len(params.Statement) > 0 {
body.Add("statement_descriptor", params.Statement)
}
if len(params.Sub) > 0 {
body.Add("subscription", params.Sub)
}
params.AppendTo(body)
token := c.Key
if params.Fee > 0 {
body.Add("application_fee", strconv.FormatUint(params.Fee, 10))
}
if params.TaxPercent > 0 {
body.Add("tax_percent", strconv.FormatFloat(params.TaxPercent, 'f', 4, 64))
} else if params.TaxPercentZero {
body.Add("tax_percent", "0")
}
invoice := &stripe.Invoice{}
err := c.B.Call("POST", "/invoices", token, body, ¶ms.Params, invoice)
return invoice, err
}
// Get returns the details of an invoice.
// For more details see https://stripe.com/docs/api#retrieve_invoice.
func Get(id string, params *stripe.InvoiceParams) (*stripe.Invoice, error) {
return getC().Get(id, params)
}
func (c Client) Get(id string, params *stripe.InvoiceParams) (*stripe.Invoice, error) {
var body *stripe.RequestValues
var commonParams *stripe.Params
if params != nil {
commonParams = ¶ms.Params
body = &stripe.RequestValues{}
params.AppendTo(body)
}
invoice := &stripe.Invoice{}
err := c.B.Call("GET", "/invoices/"+id, c.Key, body, commonParams, invoice)
return invoice, err
}
// Pay pays an invoice.
// For more details see https://stripe.com/docs/api#pay_invoice.
func Pay(id string, params *stripe.InvoiceParams) (*stripe.Invoice, error) {
return getC().Pay(id, params)
}
func (c Client) Pay(id string, params *stripe.InvoiceParams) (*stripe.Invoice, error) {
var body *stripe.RequestValues
var commonParams *stripe.Params
if params != nil {
commonParams = ¶ms.Params
body = &stripe.RequestValues{}
params.AppendTo(body)
}
invoice := &stripe.Invoice{}
err := c.B.Call("POST", fmt.Sprintf("/invoices/%v/pay", id), c.Key, body, commonParams, invoice)
return invoice, err
}
// Update updates an invoice's properties.
// For more details see https://stripe.com/docs/api#update_invoice.
func Update(id string, params *stripe.InvoiceParams) (*stripe.Invoice, error) {
return getC().Update(id, params)
}
func (c Client) Update(id string, params *stripe.InvoiceParams) (*stripe.Invoice, error) {
var body *stripe.RequestValues
token := c.Key
var commonParams *stripe.Params
if params != nil {
commonParams = ¶ms.Params
body = &stripe.RequestValues{}
if params.Paid {
body.Add("paid", strconv.FormatBool(true))
}
if len(params.Desc) > 0 {
body.Add("description", params.Desc)
}
if len(params.Statement) > 0 {
body.Add("statement_descriptor", params.Statement)
}
if len(params.Sub) > 0 {
body.Add("subscription", params.Sub)
}
if params.Closed {
body.Add("closed", strconv.FormatBool(true))
} else if params.NoClosed {
body.Add("closed", strconv.FormatBool(false))
}
if params.Forgive {
body.Add("forgiven", strconv.FormatBool(true))
}
if params.Fee > 0 {
body.Add("application_fee", strconv.FormatUint(params.Fee, 10))
}
if params.TaxPercent > 0 {
body.Add("tax_percent", strconv.FormatFloat(params.TaxPercent, 'f', 4, 64))
} else if params.TaxPercentZero {
body.Add("tax_percent", "0")
}
params.AppendTo(body)
}
invoice := &stripe.Invoice{}
err := c.B.Call("POST", "/invoices/"+id, token, body, commonParams, invoice)
return invoice, err
}
// GetNext returns the upcoming invoice's properties.
// For more details see https://stripe.com/docs/api#retrieve_customer_invoice.
func GetNext(params *stripe.InvoiceParams) (*stripe.Invoice, error) {
return getC().GetNext(params)
}
func (c Client) GetNext(params *stripe.InvoiceParams) (*stripe.Invoice, error) {
body := &stripe.RequestValues{}
body.Add("customer", params.Customer)
if len(params.Sub) > 0 {
body.Add("subscription", params.Sub)
}
if len(params.SubPlan) > 0 {
body.Add("subscription_plan", params.SubPlan)
}
if params.SubNoProrate {
body.Add("subscription_prorate", strconv.FormatBool(false))
}
if params.SubProrationDate > 0 {
body.Add("subscription_proration_date", strconv.FormatInt(params.SubProrationDate, 10))
}
if params.SubQuantity > 0 {
body.Add("subscription_quantity", strconv.FormatUint(params.SubQuantity, 10))
}
if params.SubTrialEnd > 0 {
body.Add("subscription_trial_end", strconv.FormatInt(params.SubTrialEnd, 10))
}
params.AppendTo(body)
invoice := &stripe.Invoice{}
err := c.B.Call("GET", "/invoices/upcoming", c.Key, body, ¶ms.Params, invoice)
return invoice, err
}
// List returns a list of invoices.
// For more details see https://stripe.com/docs/api#list_customer_invoices.
func List(params *stripe.InvoiceListParams) *Iter {
return getC().List(params)
}
func (c Client) List(params *stripe.InvoiceListParams) *Iter {
var body *stripe.RequestValues
var lp *stripe.ListParams
var p *stripe.Params
if params != nil {
body = &stripe.RequestValues{}
if len(params.Customer) > 0 {
body.Add("customer", params.Customer)
}
if len(params.Sub) > 0 {
body.Add("subscription", params.Sub)
}
if params.Date > 0 {
body.Add("date", strconv.FormatInt(params.Date, 10))
}
params.AppendTo(body)
lp = ¶ms.ListParams
p = params.ToParams()
}
return &Iter{stripe.GetIter(lp, body, func(b *stripe.RequestValues) ([]interface{}, stripe.ListMeta, error) {
list := &stripe.InvoiceList{}
err := c.B.Call("GET", "/invoices", c.Key, b, p, list)
ret := make([]interface{}, len(list.Values))
for i, v := range list.Values {
ret[i] = v
}
return ret, list.ListMeta, err
})}
}
// ListLines returns a list of line items.
// For more details see https://stripe.com/docs/api#invoice_lines.
func ListLines(params *stripe.InvoiceLineListParams) *LineIter {
return getC().ListLines(params)
}
func (c Client) ListLines(params *stripe.InvoiceLineListParams) *LineIter {
body := &stripe.RequestValues{}
var lp *stripe.ListParams
var p *stripe.Params
if len(params.Customer) > 0 {
body.Add("customer", params.Customer)
}
if len(params.Sub) > 0 {
body.Add("subscription", params.Sub)
}
params.AppendTo(body)
lp = ¶ms.ListParams
p = params.ToParams()
return &LineIter{stripe.GetIter(lp, body, func(b *stripe.RequestValues) ([]interface{}, stripe.ListMeta, error) {
list := &stripe.InvoiceLineList{}
err := c.B.Call("GET", fmt.Sprintf("/invoices/%v/lines", params.ID), c.Key, b, p, list)
ret := make([]interface{}, len(list.Values))
for i, v := range list.Values {
ret[i] = v
}
return ret, list.ListMeta, err
})}
}
// Iter is an iterator for lists of Invoices.
// The embedded Iter carries methods with it;
// see its documentation for details.
type Iter struct {
*stripe.Iter
}
// Invoice returns the most recent Invoice
// visited by a call to Next.
func (i *Iter) Invoice() *stripe.Invoice {
return i.Current().(*stripe.Invoice)
}
// LineIter is an iterator for lists of InvoiceLines.
// The embedded Iter carries methods with it;
// see its documentation for details.
type LineIter struct {
*stripe.Iter
}
// InvoiceLine returns the most recent InvoiceLine
// visited by a call to Next.
func (i *LineIter) InvoiceLine() *stripe.InvoiceLine {
return i.Current().(*stripe.InvoiceLine)
}
func getC() Client {
return Client{stripe.GetBackend(stripe.APIBackend), stripe.Key}
}