forked from bold-commerce/go-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
payouts.go
96 lines (80 loc) · 2.88 KB
/
payouts.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
package goshopify
import (
"context"
"fmt"
"github.com/shopspring/decimal"
)
const payoutsBasePath = "shopify_payments/payouts"
// PayoutsService is an interface for interfacing with the payouts endpoints of
// the Shopify API.
// See: https://shopify.dev/docs/api/admin-rest/2023-01/resources/payouts
type PayoutsService interface {
List(context.Context, interface{}) ([]Payout, error)
ListWithPagination(context.Context, interface{}) ([]Payout, *Pagination, error)
Get(context.Context, uint64, interface{}) (*Payout, error)
}
// PayoutsServiceOp handles communication with the payout related methods of the
// Shopify API.
type PayoutsServiceOp struct {
client *Client
}
// A struct for all available payout list options
type PayoutsListOptions struct {
PageInfo string `url:"page_info,omitempty"`
Limit int `url:"limit,omitempty"`
Fields string `url:"fields,omitempty"`
LastId uint64 `url:"last_id,omitempty"`
SinceId uint64 `url:"since_id,omitempty"`
Status PayoutStatus `url:"status,omitempty"`
DateMin *OnlyDate `url:"date_min,omitempty"`
DateMax *OnlyDate `url:"date_max,omitempty"`
Date *OnlyDate `url:"date,omitempty"`
}
// Payout represents a Shopify payout
type Payout struct {
Id uint64 `json:"id,omitempty"`
Date OnlyDate `json:"date,omitempty"`
Currency string `json:"currency,omitempty"`
Amount decimal.Decimal `json:"amount,omitempty"`
Status PayoutStatus `json:"status,omitempty"`
}
type PayoutStatus string
const (
PayoutStatusScheduled PayoutStatus = "scheduled"
PayoutStatusInTransit PayoutStatus = "in_transit"
PayoutStatusPaid PayoutStatus = "paid"
PayoutStatusFailed PayoutStatus = "failed"
PayoutStatusCancelled PayoutStatus = "canceled"
)
// Represents the result from the payouts/X.json endpoint
type PayoutResource struct {
Payout *Payout `json:"payout"`
}
// Represents the result from the payouts.json endpoint
type PayoutsResource struct {
Payouts []Payout `json:"payouts"`
}
// List payouts
func (s *PayoutsServiceOp) List(ctx context.Context, options interface{}) ([]Payout, error) {
payouts, _, err := s.ListWithPagination(ctx, options)
if err != nil {
return nil, err
}
return payouts, nil
}
func (s *PayoutsServiceOp) ListWithPagination(ctx context.Context, options interface{}) ([]Payout, *Pagination, error) {
path := fmt.Sprintf("%s.json", payoutsBasePath)
resource := new(PayoutsResource)
pagination, err := s.client.ListWithPagination(ctx, path, resource, options)
if err != nil {
return nil, nil, err
}
return resource.Payouts, pagination, nil
}
// Get individual payout
func (s *PayoutsServiceOp) Get(ctx context.Context, id uint64, options interface{}) (*Payout, error) {
path := fmt.Sprintf("%s/%d.json", payoutsBasePath, id)
resource := new(PayoutResource)
err := s.client.Get(ctx, path, resource, options)
return resource.Payout, err
}