forked from stripe/stripe-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
128 lines (106 loc) · 4.17 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
// Package paymentintent provides API functions related to payment intents.
//
// For more details, see: https://stripe.com/docs/api/go#payment_intents.
package paymentintent
import (
"net/http"
stripe "github.com/stripe/stripe-go"
"github.com/stripe/stripe-go/form"
)
// Client is used to invoke APIs related to payment intents.
type Client struct {
B stripe.Backend
Key string
}
// New creates a payment intent.
func New(params *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error) {
return getC().New(params)
}
// New creates a payment intent.
func (c Client) New(params *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error) {
intent := &stripe.PaymentIntent{}
err := c.B.Call(http.MethodPost, "/v1/payment_intents", c.Key, params, intent)
return intent, err
}
// Get retrieves a payment intent.
func Get(id string, params *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error) {
return getC().Get(id, params)
}
// Get retrieves a payment intent.
func (c Client) Get(id string, params *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error) {
path := stripe.FormatURLPath("/v1/payment_intents/%s", id)
intent := &stripe.PaymentIntent{}
err := c.B.Call(http.MethodGet, path, c.Key, params, intent)
return intent, err
}
// Update updates a payment intent.
func Update(id string, params *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error) {
return getC().Update(id, params)
}
// Update updates a payment intent.
func (c Client) Update(id string, params *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error) {
path := stripe.FormatURLPath("/v1/payment_intents/%s", id)
intent := &stripe.PaymentIntent{}
err := c.B.Call(http.MethodPost, path, c.Key, params, intent)
return intent, err
}
// Cancel cancels a payment intent.
func Cancel(id string, params *stripe.PaymentIntentCancelParams) (*stripe.PaymentIntent, error) {
return getC().Cancel(id, params)
}
// Cancel cancels a payment intent.
func (c Client) Cancel(id string, params *stripe.PaymentIntentCancelParams) (*stripe.PaymentIntent, error) {
path := stripe.FormatURLPath("/v1/payment_intents/%s/cancel", id)
intent := &stripe.PaymentIntent{}
err := c.B.Call(http.MethodPost, path, c.Key, params, intent)
return intent, err
}
// Capture captures a payment intent.
func Capture(id string, params *stripe.PaymentIntentCaptureParams) (*stripe.PaymentIntent, error) {
return getC().Capture(id, params)
}
// Capture captures a payment intent.
func (c Client) Capture(id string, params *stripe.PaymentIntentCaptureParams) (*stripe.PaymentIntent, error) {
path := stripe.FormatURLPath("/v1/payment_intents/%s/capture", id)
intent := &stripe.PaymentIntent{}
err := c.B.Call(http.MethodPost, path, c.Key, params, intent)
return intent, err
}
// Confirm confirms a payment intent.
func Confirm(id string, params *stripe.PaymentIntentConfirmParams) (*stripe.PaymentIntent, error) {
return getC().Confirm(id, params)
}
// Confirm confirms a payment intent.
func (c Client) Confirm(id string, params *stripe.PaymentIntentConfirmParams) (*stripe.PaymentIntent, error) {
path := stripe.FormatURLPath("/v1/payment_intents/%s/confirm", id)
intent := &stripe.PaymentIntent{}
err := c.B.Call(http.MethodPost, path, c.Key, params, intent)
return intent, err
}
// List returns a list of payment intents.
func List(params *stripe.PaymentIntentListParams) *Iter {
return getC().List(params)
}
// List returns a list of payment intents.
func (c Client) List(listParams *stripe.PaymentIntentListParams) *Iter {
return &Iter{stripe.GetIter(listParams, func(p *stripe.Params, b *form.Values) ([]interface{}, stripe.ListMeta, error) {
list := &stripe.PaymentIntentList{}
err := c.B.CallRaw(http.MethodGet, "/v1/payment_intents", 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 payment intents.
type Iter struct {
*stripe.Iter
}
// PaymentIntent returns the payment intent which the iterator is currently pointing to.
func (i *Iter) PaymentIntent() *stripe.PaymentIntent {
return i.Current().(*stripe.PaymentIntent)
}
func getC() Client {
return Client{stripe.GetBackend(stripe.APIBackend), stripe.Key}
}