forked from stripe/stripe-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
100 lines (82 loc) · 2.81 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
// Package customer provides the /customers APIs
package customer
import (
"net/http"
stripe "github.com/stripe/stripe-go"
"github.com/stripe/stripe-go/form"
)
// Client is used to invoke /customers APIs.
type Client struct {
B stripe.Backend
Key string
}
// New creates a new customer.
func New(params *stripe.CustomerParams) (*stripe.Customer, error) {
return getC().New(params)
}
// New creates a new customer.
func (c Client) New(params *stripe.CustomerParams) (*stripe.Customer, error) {
cust := &stripe.Customer{}
err := c.B.Call(http.MethodPost, "/v1/customers", c.Key, params, cust)
return cust, err
}
// Get returns the details of a customer.
func Get(id string, params *stripe.CustomerParams) (*stripe.Customer, error) {
return getC().Get(id, params)
}
// Get returns the details of a customer.
func (c Client) Get(id string, params *stripe.CustomerParams) (*stripe.Customer, error) {
path := stripe.FormatURLPath("/v1/customers/%s", id)
cust := &stripe.Customer{}
err := c.B.Call(http.MethodGet, path, c.Key, params, cust)
return cust, err
}
// Update updates a customer's properties.
func Update(id string, params *stripe.CustomerParams) (*stripe.Customer, error) {
return getC().Update(id, params)
}
// Update updates a customer's properties.
func (c Client) Update(id string, params *stripe.CustomerParams) (*stripe.Customer, error) {
path := stripe.FormatURLPath("/v1/customers/%s", id)
cust := &stripe.Customer{}
err := c.B.Call(http.MethodPost, path, c.Key, params, cust)
return cust, err
}
// Del removes a customer.
func Del(id string, params *stripe.CustomerParams) (*stripe.Customer, error) {
return getC().Del(id, params)
}
// Del removes a customer.
func (c Client) Del(id string, params *stripe.CustomerParams) (*stripe.Customer, error) {
path := stripe.FormatURLPath("/v1/customers/%s", id)
cust := &stripe.Customer{}
err := c.B.Call(http.MethodDelete, path, c.Key, params, cust)
return cust, err
}
// List returns a list of customers.
func List(params *stripe.CustomerListParams) *Iter {
return getC().List(params)
}
// List returns a list of customers.
func (c Client) List(listParams *stripe.CustomerListParams) *Iter {
return &Iter{stripe.GetIter(listParams, func(p *stripe.Params, b *form.Values) ([]interface{}, stripe.ListMeta, error) {
list := &stripe.CustomerList{}
err := c.B.CallRaw(http.MethodGet, "/v1/customers", c.Key, b, p, list)
ret := make([]interface{}, len(list.Data))
for i, v := range list.Data {
ret[i] = v
}
return ret, list.ListMeta, err
})}
}
// Iter is an iterator for customers.
type Iter struct {
*stripe.Iter
}
// Customer returns the customer which the iterator is currently pointing to.
func (i *Iter) Customer() *stripe.Customer {
return i.Current().(*stripe.Customer)
}
func getC() Client {
return Client{stripe.GetBackend(stripe.APIBackend), stripe.Key}
}