-
Notifications
You must be signed in to change notification settings - Fork 459
/
client.go
74 lines (61 loc) · 2.13 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
package source
import (
"errors"
"net/http"
stripe "github.com/stripe/stripe-go"
)
// Client is used to invoke /sources APIs.
type Client struct {
B stripe.Backend
Key string
}
// New creates a new source.
func New(params *stripe.SourceObjectParams) (*stripe.Source, error) {
return getC().New(params)
}
// New creates a new source.
func (c Client) New(params *stripe.SourceObjectParams) (*stripe.Source, error) {
p := &stripe.Source{}
err := c.B.Call(http.MethodPost, "/sources", c.Key, params, p)
return p, err
}
// Get returns the details of a source.
func Get(id string, params *stripe.SourceObjectParams) (*stripe.Source, error) {
return getC().Get(id, params)
}
// Get returns the details of a source.
func (c Client) Get(id string, params *stripe.SourceObjectParams) (*stripe.Source, error) {
path := stripe.FormatURLPath("/sources/%s", id)
source := &stripe.Source{}
err := c.B.Call(http.MethodGet, path, c.Key, params, source)
return source, err
}
// Update updates a source's properties.
func Update(id string, params *stripe.SourceObjectParams) (*stripe.Source, error) {
return getC().Update(id, params)
}
// Update updates a source's properties.
func (c Client) Update(id string, params *stripe.SourceObjectParams) (*stripe.Source, error) {
path := stripe.FormatURLPath("/sources/%s", id)
source := &stripe.Source{}
err := c.B.Call(http.MethodPost, path, c.Key, params, source)
return source, err
}
// Detach detaches the source from a customer.
func Detach(id string, params *stripe.SourceObjectDetachParams) (*stripe.Source, error) {
return getC().Detach(id, params)
}
// Detach detaches the source from a customer.
func (c Client) Detach(id string, params *stripe.SourceObjectDetachParams) (*stripe.Source, error) {
if params.Customer == nil {
return nil, errors.New("Invalid source detach params: Customer needs to be set")
}
path := stripe.FormatURLPath("/customers/%s/sources/%s",
stripe.StringValue(params.Customer), id)
source := &stripe.Source{}
err := c.B.Call(http.MethodDelete, path, c.Key, params, source)
return source, err
}
func getC() Client {
return Client{stripe.GetBackend(stripe.APIBackend), stripe.Key}
}