forked from stripe/stripe-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
106 lines (87 loc) · 2.92 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
package topup
import (
"net/http"
stripe "github.com/stripe/stripe-go/v72"
"github.com/stripe/stripe-go/v72/form"
)
// Client is used to invoke /topups APIs.
type Client struct {
B stripe.Backend
Key string
}
// Cancel cancels a topup.
func Cancel(id string, params *stripe.TopupParams) (*stripe.Topup, error) {
return getC().Cancel(id, params)
}
// Cancel cancels a topup.
func (c Client) Cancel(id string, params *stripe.TopupParams) (*stripe.Topup, error) {
path := stripe.FormatURLPath("/v1/topups/%s/cancel", id)
topup := &stripe.Topup{}
err := c.B.Call(http.MethodPost, path, c.Key, params, topup)
return topup, err
}
// New creates a new topup.
func New(params *stripe.TopupParams) (*stripe.Topup, error) {
return getC().New(params)
}
// New creates a new topup.
func (c Client) New(params *stripe.TopupParams) (*stripe.Topup, error) {
topup := &stripe.Topup{}
err := c.B.Call(http.MethodPost, "/v1/topups", c.Key, params, topup)
return topup, err
}
// Get returns the details of a topup.
func Get(id string, params *stripe.TopupParams) (*stripe.Topup, error) {
return getC().Get(id, params)
}
// Get returns the details of a topup.
func (c Client) Get(id string, params *stripe.TopupParams) (*stripe.Topup, error) {
path := stripe.FormatURLPath("/v1/topups/%s", id)
topup := &stripe.Topup{}
err := c.B.Call(http.MethodGet, path, c.Key, params, topup)
return topup, err
}
// Update updates a topup's properties.
func Update(id string, params *stripe.TopupParams) (*stripe.Topup, error) {
return getC().Update(id, params)
}
// Update updates a topup's properties.
func (c Client) Update(id string, params *stripe.TopupParams) (*stripe.Topup, error) {
path := stripe.FormatURLPath("/v1/topups/%s", id)
topup := &stripe.Topup{}
err := c.B.Call(http.MethodPost, path, c.Key, params, topup)
return topup, err
}
// List returns a list of topups.
func List(params *stripe.TopupListParams) *Iter {
return getC().List(params)
}
// List returns a list of topups.
func (c Client) List(listParams *stripe.TopupListParams) *Iter {
return &Iter{stripe.GetIter(listParams, func(p *stripe.Params, b *form.Values) ([]interface{}, stripe.ListContainer, error) {
list := &stripe.TopupList{}
err := c.B.CallRaw(http.MethodGet, "/v1/topups", c.Key, b, p, list)
ret := make([]interface{}, len(list.Data))
for i, v := range list.Data {
ret[i] = v
}
return ret, list, err
})}
}
// Iter is an iterator for topups.
type Iter struct {
*stripe.Iter
}
// Topup returns the topup item which the iterator is currently pointing to.
func (i *Iter) Topup() *stripe.Topup {
return i.Current().(*stripe.Topup)
}
// TopupList returns the current list object which the iterator is currently
// using. List objects will change as new API calls are made to continue
// pagination.
func (i *Iter) TopupList() *stripe.TopupList {
return i.List().(*stripe.TopupList)
}
func getC() Client {
return Client{stripe.GetBackend(stripe.APIBackend), stripe.Key}
}