payment-poc/providers/stripe/service.go

144 lines
4.4 KiB
Go
Raw Normal View History

2023-07-26 07:51:29 +00:00
package stripe
import (
2023-07-27 20:46:37 +00:00
"github.com/gin-gonic/gin"
2023-07-26 07:51:29 +00:00
"github.com/google/uuid"
2023-07-27 20:46:37 +00:00
"github.com/stripe/stripe-go/v72"
"github.com/stripe/stripe-go/v72/checkout/session"
"github.com/stripe/stripe-go/v72/paymentintent"
"log"
"payment-poc/database"
2023-07-26 07:51:29 +00:00
"payment-poc/state"
)
type Service struct {
2023-07-27 20:46:37 +00:00
ApiKey string
BackendUrl string
2023-07-26 07:51:29 +00:00
}
2023-07-31 07:21:54 +00:00
func (s *Service) UpdatePayment(entry database.PaymentEntry) (updatedEntry database.PaymentEntry, err error) {
pi, err := paymentintent.Get(*entry.PaymentIntentId, nil)
2023-07-27 20:46:37 +00:00
if err != nil {
2023-07-31 07:21:54 +00:00
return entry, err
2023-07-27 20:46:37 +00:00
}
2023-07-31 07:21:54 +00:00
newState := determineState(pi.Status)
if entry.State != newState && newState != "" {
2023-07-31 08:01:37 +00:00
log.Printf("[%s] updated state for %s -> %s", entry.Id.String(), entry.State, newState)
2023-07-31 07:21:54 +00:00
if pi.AmountReceived > 0 {
entry.Amount = &pi.AmountReceived
}
entry.State = newState
2023-07-27 20:46:37 +00:00
}
2023-07-31 07:21:54 +00:00
return entry, nil
}
func determineState(status stripe.PaymentIntentStatus) state.PaymentState {
switch status {
case stripe.PaymentIntentStatusCanceled:
return state.StateCanceled
case stripe.PaymentIntentStatusProcessing:
return state.StatePending
case stripe.PaymentIntentStatusRequiresAction:
return state.StatePending
case stripe.PaymentIntentStatusRequiresCapture:
return state.StateAccepted
case stripe.PaymentIntentStatusRequiresConfirmation:
return state.StatePending
case stripe.PaymentIntentStatusRequiresPaymentMethod:
return state.StateVoided
case stripe.PaymentIntentStatusSucceeded:
return state.StateCompleted
}
return ""
}
func (s *Service) CreatePaymentUrl(entry database.PaymentEntry) (database.PaymentEntry, string, error) {
entry, url, err := s.InitializePayment(entry)
2023-07-27 20:46:37 +00:00
if err != nil {
2023-07-31 07:21:54 +00:00
return entry, "", err
2023-07-27 20:46:37 +00:00
}
2023-07-31 07:21:54 +00:00
return entry, url, nil
2023-07-27 20:46:37 +00:00
}
func (s *Service) InitializePayment(entry database.PaymentEntry) (database.PaymentEntry, string, error) {
currency := string(stripe.CurrencyEUR)
productName := "Example product"
productDescription := "Simple example product"
params := &stripe.CheckoutSessionParams{
LineItems: []*stripe.CheckoutSessionLineItemParams{
{
PriceData: &stripe.CheckoutSessionLineItemPriceDataParams{
Currency: &currency,
ProductData: &stripe.CheckoutSessionLineItemPriceDataProductDataParams{
Name: &productName,
Description: &productDescription,
},
UnitAmount: &entry.TotalAmount,
},
Quantity: stripe.Int64(1),
},
},
Mode: stripe.String(string(stripe.CheckoutSessionModePayment)),
PaymentIntentData: &stripe.CheckoutSessionPaymentIntentDataParams{
CaptureMethod: stripe.String("manual"),
},
SuccessURL: stripe.String(s.BackendUrl + "/stripe/success?token=" + entry.Id.String()),
CancelURL: stripe.String(s.BackendUrl + "/stripe/cancel?token=" + entry.Id.String()),
2023-07-26 07:51:29 +00:00
}
2023-07-27 20:46:37 +00:00
result, err := session.New(params)
2023-07-26 07:51:29 +00:00
if err != nil {
2023-07-27 20:46:37 +00:00
return database.PaymentEntry{}, "", err
2023-07-26 07:51:29 +00:00
}
2023-07-31 07:21:54 +00:00
entry.State = state.StateInitialized
2023-07-27 20:46:37 +00:00
entry.PaymentIntentId = &result.PaymentIntent.ID
return entry, result.URL, nil
2023-07-26 07:51:29 +00:00
}
2023-07-27 20:46:37 +00:00
func (s *Service) CompleteTransaction(entry database.PaymentEntry, amount int64) (database.PaymentEntry, error) {
params := &stripe.PaymentIntentCaptureParams{
AmountToCapture: stripe.Int64(amount),
}
pi, err := paymentintent.Capture(*entry.PaymentIntentId, params)
if err != nil {
return database.PaymentEntry{}, err
}
log.Printf("received state on completion: %v", pi.Status)
2023-07-31 07:21:54 +00:00
newState := determineState(pi.Status)
entry.State = newState
if newState == state.StateCompleted || newState == state.StatePending {
2023-07-30 10:14:05 +00:00
entry.Amount = &pi.AmountReceived
2023-07-27 20:46:37 +00:00
}
return entry, nil
2023-07-26 07:51:29 +00:00
}
2023-07-27 20:46:37 +00:00
func (s *Service) CancelTransaction(entry database.PaymentEntry) (database.PaymentEntry, error) {
params := &stripe.PaymentIntentCancelParams{}
pi, err := paymentintent.Cancel(*entry.PaymentIntentId, params)
if err != nil {
return database.PaymentEntry{}, err
}
log.Printf("received state on completion: %v", pi.Status)
if pi.Status == stripe.PaymentIntentStatusCanceled {
entry.State = state.StateCanceled
}
return entry, nil
2023-07-26 07:51:29 +00:00
}
2023-07-31 07:21:54 +00:00
func (s *Service) HandleResponse(c *gin.Context, provider *database.PaymentEntryProvider, paymentState state.PaymentState) (string, error) {
2023-07-27 20:46:37 +00:00
id := uuid.MustParse(c.Query("token"))
2023-07-31 07:21:54 +00:00
entry, err := provider.FetchById(id)
2023-07-27 20:46:37 +00:00
if err != nil {
return "", err
}
entry.State = paymentState
2023-07-31 08:01:37 +00:00
if _, err := provider.UpdateEntry(entry); err != nil {
return "", err
}
log.Printf("[%s:%s] received authorization response", entry.Id.String(), entry.State)
2023-07-27 20:46:37 +00:00
return "/entries/" + entry.Id.String(), nil
2023-07-26 07:51:29 +00:00
}