forked from stripe/stripe-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
84 lines (66 loc) · 1.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
// Package event provides the /events APIs
package event
import (
"strconv"
stripe "github.com/stripe/stripe-go"
)
// Client is used to invoke /events APIs.
type Client struct {
B stripe.Backend
Key string
}
// Get returns the details of an event
// For more details see https://stripe.com/docs/api#retrieve_event.
func Get(id string, params *stripe.Params) (*stripe.Event, error) {
return getC().Get(id, params)
}
func (c Client) Get(id string, params *stripe.Params) (*stripe.Event, error) {
event := &stripe.Event{}
err := c.B.Call("GET", "/events/"+id, c.Key, nil, params, event)
return event, err
}
// List returns a list of events.
// For more details see https://stripe.com/docs/api#list_events
func List(params *stripe.EventListParams) *Iter {
return getC().List(params)
}
func (c Client) List(params *stripe.EventListParams) *Iter {
var body *stripe.RequestValues
var lp *stripe.ListParams
var p *stripe.Params
if params != nil {
body = &stripe.RequestValues{}
if params.Created > 0 {
body.Add("created", strconv.FormatInt(params.Created, 10))
}
if len(params.Type) > 0 {
body.Add("type", params.Type)
}
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.EventList{}
err := c.B.Call("GET", "/events", 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 Events.
// The embedded Iter carries methods with it;
// see its documentation for details.
type Iter struct {
*stripe.Iter
}
// Event returns the most recent Event
// visited by a call to Next.
func (i *Iter) Event() *stripe.Event {
return i.Current().(*stripe.Event)
}
func getC() Client {
return Client{stripe.GetBackend(stripe.APIBackend), stripe.Key}
}