forked from stripe/stripe-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
105 lines (81 loc) · 2.9 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
// Package reversal provides the /transfers/reversals APIs
package reversal
import (
"fmt"
stripe "github.com/stripe/stripe-go"
"github.com/stripe/stripe-go/form"
)
// Client is used to invoke /transfers/reversals APIs.
type Client struct {
B stripe.Backend
Key string
}
// New POSTs a new transfer reversal.
func New(params *stripe.ReversalParams) (*stripe.Reversal, error) {
return getC().New(params)
}
func (c Client) New(params *stripe.ReversalParams) (*stripe.Reversal, error) {
body := &form.Values{}
form.AppendTo(body, params)
reversal := &stripe.Reversal{}
err := c.B.Call("POST", fmt.Sprintf("/transfers/%v/reversals", params.Transfer), c.Key, body, ¶ms.Params, reversal)
return reversal, err
}
// Get returns the details of a transfer reversal.
func Get(id string, params *stripe.ReversalParams) (*stripe.Reversal, error) {
return getC().Get(id, params)
}
func (c Client) Get(id string, params *stripe.ReversalParams) (*stripe.Reversal, error) {
if params == nil {
return nil, fmt.Errorf("params cannot be nil, and params.Transfer must be set")
}
body := &form.Values{}
form.AppendTo(body, params)
reversal := &stripe.Reversal{}
err := c.B.Call("GET", fmt.Sprintf("/transfers/%v/reversals/%v", params.Transfer, id), c.Key, body, ¶ms.Params, reversal)
return reversal, err
}
// Update updates a transfer reversal's properties.
func Update(id string, params *stripe.ReversalParams) (*stripe.Reversal, error) {
return getC().Update(id, params)
}
func (c Client) Update(id string, params *stripe.ReversalParams) (*stripe.Reversal, error) {
body := &form.Values{}
form.AppendTo(body, params)
reversal := &stripe.Reversal{}
err := c.B.Call("POST", fmt.Sprintf("/transfers/%v/reversals/%v", params.Transfer, id), c.Key, body, ¶ms.Params, reversal)
return reversal, err
}
// List returns a list of transfer reversals.
func List(params *stripe.ReversalListParams) *Iter {
return getC().List(params)
}
func (c Client) List(params *stripe.ReversalListParams) *Iter {
body := &form.Values{}
var lp *stripe.ListParams = ¶ms.ListParams
var p *stripe.Params = params.ToParams()
form.AppendTo(body, params)
return &Iter{stripe.GetIter(lp, body, func(b *form.Values) ([]interface{}, stripe.ListMeta, error) {
list := &stripe.ReversalList{}
err := c.B.Call("GET", fmt.Sprintf("/transfers/%v/reversals", params.Transfer), 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 Reversals.
// The embedded Iter carries methods with it;
// see its documentation for details.
type Iter struct {
*stripe.Iter
}
// Refund returns the most recent Reversals
// visited by a call to Next.
func (i *Iter) Reversal() *stripe.Reversal {
return i.Current().(*stripe.Reversal)
}
func getC() Client {
return Client{stripe.GetBackend(stripe.APIBackend), stripe.Key}
}