-
Notifications
You must be signed in to change notification settings - Fork 13
/
stripe.go
193 lines (167 loc) · 8.45 KB
/
stripe.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
package stripe
import (
"github.com/stripe/stripe-go/v72"
"github.com/stripe/stripe-go/v72/account"
"github.com/stripe/stripe-go/v72/accountlink"
portalsession "github.com/stripe/stripe-go/v72/billingportal/session"
"github.com/stripe/stripe-go/v72/checkout/session"
"github.com/stripe/stripe-go/v72/customer"
"github.com/stripe/stripe-go/v72/paymentintent"
"github.com/stripe/stripe-go/v72/refund"
"github.com/stripe/stripe-go/v72/setupintent"
"github.com/stripe/stripe-go/v72/sub"
"github.com/stripe/stripe-go/v72/webhook"
"github.com/coretrix/hitrix/service/component/app"
)
const Env = "env"
type Stripe struct {
webhookSecrets map[string]string
appService *app.App
}
func NewStripe(token string, webhookSecrets map[string]string, appService *app.App) *Stripe {
stripe.Key = token
return &Stripe{
webhookSecrets: webhookSecrets,
appService: appService,
}
}
func (s *Stripe) CreateAccount(accountParams *stripe.AccountParams) (*stripe.Account, error) {
if accountParams.Params.Metadata == nil {
accountParams.Params.Metadata = map[string]string{Env: s.appService.Mode}
} else {
accountParams.Params.Metadata[Env] = s.appService.Mode
}
return account.New(accountParams)
}
func (s *Stripe) GetAccount(accountID string, params *stripe.AccountParams) (*stripe.Account, error) {
return account.GetByID(accountID, params)
}
func (s *Stripe) CreateCustomer(customerParams *stripe.CustomerParams) (*stripe.Customer, error) {
if customerParams.Params.Metadata == nil {
customerParams.Params.Metadata = map[string]string{Env: s.appService.Mode}
} else {
customerParams.Params.Metadata[Env] = s.appService.Mode
}
return customer.New(customerParams)
}
func (s *Stripe) UpdateCustomer(customerID string, customerParams *stripe.CustomerParams) (*stripe.Customer, error) {
if customerParams.Params.Metadata == nil {
customerParams.Params.Metadata = map[string]string{Env: s.appService.Mode}
} else {
customerParams.Params.Metadata[Env] = s.appService.Mode
}
return customer.Update(customerID, customerParams)
}
func (s *Stripe) CreateCheckoutSession(checkoutSessionParams *stripe.CheckoutSessionParams) (*stripe.CheckoutSession, error) {
if checkoutSessionParams.Params.Metadata == nil {
checkoutSessionParams.Params.Metadata = map[string]string{Env: s.appService.Mode}
} else {
checkoutSessionParams.Params.Metadata[Env] = s.appService.Mode
}
return session.New(checkoutSessionParams)
}
func (s *Stripe) CreateBillingPortalSession(billingPortalSessionParams *stripe.BillingPortalSessionParams) (*stripe.BillingPortalSession, error) {
return portalsession.New(billingPortalSessionParams)
}
func (s *Stripe) GetSubscription(subscriptionID string, params *stripe.SubscriptionParams) (*stripe.Subscription, error) {
return sub.Get(subscriptionID, params)
}
func (s *Stripe) CreateSubscription(subscriptionParams *stripe.SubscriptionParams) (*stripe.Subscription, error) {
if subscriptionParams.Params.Metadata == nil {
subscriptionParams.Params.Metadata = map[string]string{Env: s.appService.Mode}
} else {
subscriptionParams.Params.Metadata[Env] = s.appService.Mode
}
return sub.New(subscriptionParams)
}
func (s *Stripe) UpdateSubscription(subscriptionID string, subscriptionParams *stripe.SubscriptionParams) (*stripe.Subscription, error) {
if subscriptionParams.Params.Metadata == nil {
subscriptionParams.Params.Metadata = map[string]string{Env: s.appService.Mode}
} else {
subscriptionParams.Params.Metadata[Env] = s.appService.Mode
}
return sub.Update(subscriptionID, subscriptionParams)
}
func (s *Stripe) CancelSubscription(subscriptionID string, subscriptionCancelParams *stripe.SubscriptionCancelParams) (*stripe.Subscription, error) {
if subscriptionCancelParams.Params.Metadata == nil {
subscriptionCancelParams.Params.Metadata = map[string]string{Env: s.appService.Mode}
} else {
subscriptionCancelParams.Params.Metadata[Env] = s.appService.Mode
}
return sub.Cancel(subscriptionID, subscriptionCancelParams)
}
func (s *Stripe) CreateSetupIntent(setupIntentParams *stripe.SetupIntentParams) (*stripe.SetupIntent, error) {
if setupIntentParams.Params.Metadata == nil {
setupIntentParams.Params.Metadata = map[string]string{Env: s.appService.Mode}
} else {
setupIntentParams.Params.Metadata[Env] = s.appService.Mode
}
return setupintent.New(setupIntentParams)
}
func (s *Stripe) CreateAccountLink(accountLinkParams *stripe.AccountLinkParams) (*stripe.AccountLink, error) {
return accountlink.New(accountLinkParams)
}
func (s *Stripe) GetPaymentIntent(paymentIntentID string, paymentIntentParams *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error) {
return paymentintent.Get(paymentIntentID, paymentIntentParams)
}
func (s *Stripe) CreatePaymentIntentMultiparty(paymentIntentParams *stripe.PaymentIntentParams, linkedAccountID string) (*stripe.PaymentIntent, error) {
if paymentIntentParams.Params.Metadata == nil {
paymentIntentParams.Params.Metadata = map[string]string{Env: s.appService.Mode}
} else {
paymentIntentParams.Params.Metadata[Env] = s.appService.Mode
}
paymentIntentParams.SetStripeAccount(linkedAccountID)
return paymentintent.New(paymentIntentParams)
}
func (s *Stripe) CreateRefundMultiparty(refundParams *stripe.RefundParams, linkedAccountID string) (*stripe.Refund, error) {
if refundParams.Params.Metadata == nil {
refundParams.Params.Metadata = map[string]string{Env: s.appService.Mode}
} else {
refundParams.Params.Metadata[Env] = s.appService.Mode
}
refundParams.SetStripeAccount(linkedAccountID)
return refund.New(refundParams)
}
func (s *Stripe) NewCheckoutSession(paymentMethods []string, mode, successURL, CancelURL string, lineItems []*stripe.CheckoutSessionLineItemParams, discounts []*stripe.CheckoutSessionDiscountParams) *stripe.CheckoutSession {
params := &stripe.CheckoutSessionParams{
Params: stripe.Params{Metadata: map[string]string{Env: s.appService.Mode}},
PaymentMethodTypes: stripe.StringSlice(paymentMethods),
LineItems: lineItems,
Mode: stripe.String(mode),
SuccessURL: stripe.String(successURL),
CancelURL: stripe.String(CancelURL),
Discounts: discounts,
}
checkoutSession, err := session.New(params)
if err != nil {
panic("failed creating new session for stripe checkout" + err.Error())
}
return checkoutSession
}
func (s *Stripe) ConstructWebhookEvent(reqBody []byte, signature string, webhookKey string) (stripe.Event, error) {
secret, ok := s.webhookSecrets[webhookKey]
if !ok {
panic("stripe webhook secret [" + webhookKey + "] not found")
}
event, err := webhook.ConstructEvent(reqBody, signature, secret)
return event, err
}
type IStripe interface {
CreateAccount(accountParams *stripe.AccountParams) (*stripe.Account, error)
GetAccount(accountID string, accountParams *stripe.AccountParams) (*stripe.Account, error)
CreateCustomer(customerParams *stripe.CustomerParams) (*stripe.Customer, error)
UpdateCustomer(customerID string, customerParams *stripe.CustomerParams) (*stripe.Customer, error)
CreateCheckoutSession(checkoutSessionParams *stripe.CheckoutSessionParams) (*stripe.CheckoutSession, error)
GetSubscription(subscriptionID string, subscriptionParams *stripe.SubscriptionParams) (*stripe.Subscription, error)
CreateSubscription(subscriptionParams *stripe.SubscriptionParams) (*stripe.Subscription, error)
UpdateSubscription(subscriptionID string, subscriptionParams *stripe.SubscriptionParams) (*stripe.Subscription, error)
CancelSubscription(subscriptionID string, subscriptionCancelParams *stripe.SubscriptionCancelParams) (*stripe.Subscription, error)
CreateSetupIntent(setupIntentParams *stripe.SetupIntentParams) (*stripe.SetupIntent, error)
CreateBillingPortalSession(billingPortalSessionParams *stripe.BillingPortalSessionParams) (*stripe.BillingPortalSession, error)
CreateAccountLink(accountLinkParams *stripe.AccountLinkParams) (*stripe.AccountLink, error)
GetPaymentIntent(paymentIntentID string, paymentIntentParams *stripe.PaymentIntentParams) (*stripe.PaymentIntent, error)
CreatePaymentIntentMultiparty(paymentIntentParams *stripe.PaymentIntentParams, linkedAccountID string) (*stripe.PaymentIntent, error)
CreateRefundMultiparty(refundParams *stripe.RefundParams, linkedAccountID string) (*stripe.Refund, error)
ConstructWebhookEvent(reqBody []byte, signature string, webhookKey string) (stripe.Event, error)
NewCheckoutSession(paymentMethods []string, mode, successURL, CancelURL string, lineItems []*stripe.CheckoutSessionLineItemParams, discounts []*stripe.CheckoutSessionDiscountParams) *stripe.CheckoutSession
}