forked from stripe/stripe-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
75 lines (61 loc) · 2 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
// Package review provides the /reviews APIs
package review
import (
"net/http"
stripe "github.com/stripe/stripe-go"
"github.com/stripe/stripe-go/form"
)
// Client is used to invoke /reviews APIs.
type Client struct {
B stripe.Backend
Key string
}
// Approve approves a review.
func Approve(id string, params *stripe.ReviewApproveParams) (*stripe.Review, error) {
return getC().Approve(id, params)
}
// Approve approves a review.
func (c Client) Approve(id string, params *stripe.ReviewApproveParams) (*stripe.Review, error) {
path := stripe.FormatURLPath("/v1/reviews/%s/approve", id)
review := &stripe.Review{}
err := c.B.Call(http.MethodPost, path, c.Key, params, review)
return review, err
}
// Get returns the details of a review.
func Get(id string, params *stripe.ReviewParams) (*stripe.Review, error) {
return getC().Get(id, params)
}
// Get returns the details of a review.
func (c Client) Get(id string, params *stripe.ReviewParams) (*stripe.Review, error) {
path := stripe.FormatURLPath("/v1/reviews/%s", id)
review := &stripe.Review{}
err := c.B.Call(http.MethodGet, path, c.Key, params, review)
return review, err
}
// List returns a list of reviews.
func List(params *stripe.ReviewListParams) *Iter {
return getC().List(params)
}
// List returns a list of reviews.
func (c Client) List(listParams *stripe.ReviewListParams) *Iter {
return &Iter{stripe.GetIter(listParams, func(p *stripe.Params, b *form.Values) ([]interface{}, stripe.ListMeta, error) {
list := &stripe.ReviewList{}
err := c.B.CallRaw(http.MethodGet, "/v1/reviews", 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
})}
}
// Iter is an iterator for reviews.
type Iter struct {
*stripe.Iter
}
// Review returns the review which the iterator is currently pointing to.
func (i *Iter) Review() *stripe.Review {
return i.Current().(*stripe.Review)
}
func getC() Client {
return Client{stripe.GetBackend(stripe.APIBackend), stripe.Key}
}