-
Notifications
You must be signed in to change notification settings - Fork 460
/
client.go
102 lines (83 loc) · 2.4 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
//
//
// File generated from our OpenAPI spec
//
//
// Package file provides the /files APIs
package file
import (
"fmt"
"net/http"
stripe "github.com/stripe/stripe-go/v72"
"github.com/stripe/stripe-go/v72/form"
)
// Client is used to invoke /files APIs.
type Client struct {
B stripe.Backend
Key string
}
// New creates a new file.
func New(params *stripe.FileParams) (*stripe.File, error) {
return getC().New(params)
}
// New creates a new file.
func (c Client) New(params *stripe.FileParams) (*stripe.File, error) {
if params == nil {
return nil, fmt.Errorf(
"params cannot be nil, and params.Purpose and params.File must be set",
)
}
bodyBuffer, boundary, err := params.GetBody()
if err != nil {
return nil, err
}
file := &stripe.File{}
err = c.B.CallMultipart(http.MethodPost, "/v1/files", c.Key, boundary, bodyBuffer, ¶ms.Params, file)
return file, err
}
// Get returns the details of a file.
func Get(id string, params *stripe.FileParams) (*stripe.File, error) {
return getC().Get(id, params)
}
// Get returns the details of a file.
func (c Client) Get(id string, params *stripe.FileParams) (*stripe.File, error) {
path := stripe.FormatURLPath("/v1/files/%s", id)
file := &stripe.File{}
err := c.B.Call(http.MethodGet, path, c.Key, params, file)
return file, err
}
// List returns a list of files.
func List(params *stripe.FileListParams) *Iter {
return getC().List(params)
}
// List returns a list of files.
func (c Client) List(listParams *stripe.FileListParams) *Iter {
return &Iter{
Iter: stripe.GetIter(listParams, func(p *stripe.Params, b *form.Values) ([]interface{}, stripe.ListContainer, error) {
list := &stripe.FileList{}
err := c.B.CallRaw(http.MethodGet, "/v1/files", 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 files.
type Iter struct {
*stripe.Iter
}
// File returns the file which the iterator is currently pointing to.
func (i *Iter) File() *stripe.File {
return i.Current().(*stripe.File)
}
// FileList 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) FileList() *stripe.FileList {
return i.List().(*stripe.FileList)
}
func getC() Client {
return Client{stripe.GetBackend(stripe.UploadsBackend), stripe.Key}
}