-
Notifications
You must be signed in to change notification settings - Fork 460
/
client.go
87 lines (71 loc) · 2.45 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
package dispute
import (
"net/http"
stripe "github.com/stripe/stripe-go"
"github.com/stripe/stripe-go/form"
)
// Client is used to invoke dispute-related APIs.
type Client struct {
B stripe.Backend
Key string
}
// Get returns the details of a dispute.
func Get(id string, params *stripe.DisputeParams) (*stripe.Dispute, error) {
return getC().Get(id, params)
}
// Get returns the details of a dispute.
func (c Client) Get(id string, params *stripe.DisputeParams) (*stripe.Dispute, error) {
path := stripe.FormatURLPath("/v1/disputes/%s", id)
dispute := &stripe.Dispute{}
err := c.B.Call(http.MethodGet, path, c.Key, params, dispute)
return dispute, err
}
// List returns a list of disputes.
func List(params *stripe.DisputeListParams) *Iter {
return getC().List(params)
}
// List returns a list of disputes.
func (c Client) List(listParams *stripe.DisputeListParams) *Iter {
return &Iter{stripe.GetIter(listParams, func(p *stripe.Params, b *form.Values) ([]interface{}, stripe.ListMeta, error) {
list := &stripe.DisputeList{}
err := c.B.CallRaw(http.MethodGet, "/v1/disputes", 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
})}
}
// Update updates a dispute.
func Update(id string, params *stripe.DisputeParams) (*stripe.Dispute, error) {
return getC().Update(id, params)
}
// Update updates a dispute.
func (c Client) Update(id string, params *stripe.DisputeParams) (*stripe.Dispute, error) {
path := stripe.FormatURLPath("/v1/disputes/%s", id)
dispute := &stripe.Dispute{}
err := c.B.Call(http.MethodPost, path, c.Key, params, dispute)
return dispute, err
}
// Close dismisses a dispute in the customer's favor.
func Close(id string, params *stripe.DisputeParams) (*stripe.Dispute, error) {
return getC().Close(id, params)
}
// Close dismisses a dispute in the customer's favor.
func (c Client) Close(id string, params *stripe.DisputeParams) (*stripe.Dispute, error) {
path := stripe.FormatURLPath("/v1/disputes/%s/close", id)
dispute := &stripe.Dispute{}
err := c.B.Call(http.MethodPost, path, c.Key, params, dispute)
return dispute, err
}
// Iter is an iterator for disputes.
type Iter struct {
*stripe.Iter
}
// Dispute returns the dispute which the iterator is currently pointing to.
func (i *Iter) Dispute() *stripe.Dispute {
return i.Current().(*stripe.Dispute)
}
func getC() Client {
return Client{stripe.GetBackend(stripe.APIBackend), stripe.Key}
}