forked from getlago/lago-go-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plan.go
234 lines (191 loc) · 6.8 KB
/
plan.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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
package lago
import (
"context"
"encoding/json"
"fmt"
"time"
"github.com/google/uuid"
)
type PlanRequest struct {
client *Client
}
type PlanResult struct {
Plan *Plan `json:"plan,omitempty"`
Plans []Plan `json:"plans,omitempty"`
Meta Metadata `json:"meta,omitempty"`
}
type PlanParams struct {
Plan *PlanInput `json:"plan"`
}
type PlanInterval string
const (
PlanWeekly PlanInterval = "weekly"
PlanMonthly PlanInterval = "monthly"
PlanQuarterly PlanInterval = "quarterly"
PlanYearly PlanInterval = "yearly"
)
type PlanChargeInput struct {
LagoID *uuid.UUID `json:"id,omitempty"`
BillableMetricID uuid.UUID `json:"billable_metric_id,omitempty"`
AmountCurrency Currency `json:"amount_currency,omitempty"`
ChargeModel ChargeModel `json:"charge_model,omitempty"`
PayInAdvance bool `json:"pay_in_advance,omitempty"`
Invoiceable bool `json:"invoiceable,omitempty"`
Prorated bool `json:"prorated,omitempty"`
MinAmountCents int `json:"min_amount_cents,omitempty"`
Properties map[string]interface{} `json:"properties"`
GroupProperties []GroupProperties `json:"group_properties,omitempty"`
Filters []ChargeFilter `json:"filters,omitempty"`
TaxCodes []string `json:"tax_codes,omitempty"`
}
type MinimumCommitmentInput struct {
AmountCents int `json:"amount_cents,omitempty"`
InvoiceDisplayName string `json:"invoice_display_name,omitempty"`
TaxCodes []string `json:"tax_codes,omitempty"`
}
type PlanInput struct {
Name string `json:"name,omitempty"`
InvoiceDisplayName string `json:"invoice_display_name,omitempty"`
Code string `json:"code,omitempty"`
Interval PlanInterval `json:"interval,omitempty"`
Description string `json:"description,omitempty"`
AmountCents int `json:"amount_cents"`
AmountCurrency Currency `json:"amount_currency,omitempty"`
PayInAdvance bool `json:"pay_in_advance"`
BillChargeMonthly bool `json:"bill_charge_monthly"`
TrialPeriod float32 `json:"trial_period"`
Charges []PlanChargeInput `json:"charges,omitempty"`
MinimumCommitment *MinimumCommitmentInput `json:"minimum_commitment,omitempty"`
TaxCodes []string `json:"tax_codes,omitempty"`
}
type PlanListInput struct {
PerPage int `json:"per_page,omitempty,string"`
Page int `json:"page,omitempty,string"`
}
type MinimumCommitment struct {
LagoID uuid.UUID `json:"lago_id"`
PlanCode string `json:"plan_code,omitempty"`
InvoiceDisplayName string `json:"invoice_display_name,omitempty"`
AmountCents int `json:"amount_cents"`
Interval PlanInterval `json:"interval,omitempty"`
CreatedAt time.Time `json:"created_at,omitempty"`
UpdatedAt time.Time `json:"updated_at,omitempty"`
Taxes []Tax `json:"tax,omitempty"`
}
type Plan struct {
LagoID uuid.UUID `json:"lago_id"`
Name string `json:"name,omitempty"`
InvoiceDisplayName string `json:"invoice_display_name,omitempty"`
Code string `json:"code,omitempty"`
Interval PlanInterval `json:"interval,omitempty"`
Description string `json:"description,omitempty"`
AmountCents int `json:"amount_cents,omitempty"`
AmountCurrency Currency `json:"amount_currency,omitempty"`
PayInAdvance bool `json:"pay_in_advance,omitempty"`
BillChargeMonthly bool `json:"bill_charge_monthly,omitempty"`
ActiveSubscriptionsCount int `json:"active_subscriptions_count,omitempty"`
DraftInvoicesCount int `json:"draft_invoices_count,omitempty"`
Charges []Charge `json:"charges,omitempty"`
MinimumCommitment *MinimumCommitment `json:"minimum_commitment"`
Taxes []Tax `json:"taxes,omitempty"`
}
func (c *Client) Plan() *PlanRequest {
return &PlanRequest{
client: c,
}
}
func (pr *PlanRequest) Get(ctx context.Context, planCode string) (*Plan, *Error) {
subPath := fmt.Sprintf("%s/%s", "plans", planCode)
clientRequest := &ClientRequest{
Path: subPath,
Result: &PlanResult{},
}
result, err := pr.client.Get(ctx, clientRequest)
if err != nil {
return nil, err
}
planResult, ok := result.(*PlanResult)
if !ok {
return nil, &ErrorTypeAssert
}
return planResult.Plan, nil
}
func (pr *PlanRequest) GetList(ctx context.Context, planListInput *PlanListInput) (*PlanResult, *Error) {
jsonQueryParams, err := json.Marshal(planListInput)
if err != nil {
return nil, &Error{Err: err}
}
queryParams := make(map[string]string)
if err = json.Unmarshal(jsonQueryParams, &queryParams); err != nil {
return nil, &Error{Err: err}
}
clientRequest := &ClientRequest{
Path: "plans",
QueryParams: queryParams,
Result: &PlanResult{},
}
result, clientErr := pr.client.Get(ctx, clientRequest)
if clientErr != nil {
return nil, clientErr
}
planResult, ok := result.(*PlanResult)
if !ok {
return nil, &ErrorTypeAssert
}
return planResult, nil
}
func (pr *PlanRequest) Create(ctx context.Context, planInput *PlanInput) (*Plan, *Error) {
planParams := &PlanParams{
Plan: planInput,
}
clientRequest := &ClientRequest{
Path: "plans",
Result: &PlanResult{},
Body: planParams,
}
result, err := pr.client.Post(ctx, clientRequest)
if err != nil {
return nil, err
}
planResult, ok := result.(*PlanResult)
if !ok {
return nil, &ErrorTypeAssert
}
return planResult.Plan, nil
}
func (pr *PlanRequest) Update(ctx context.Context, planInput *PlanInput) (*Plan, *Error) {
subPath := fmt.Sprintf("%s/%s", "plans", planInput.Code)
planParams := &PlanParams{
Plan: planInput,
}
clientRequest := &ClientRequest{
Path: subPath,
Result: &PlanResult{},
Body: planParams,
}
result, err := pr.client.Put(ctx, clientRequest)
if err != nil {
return nil, err
}
planResult, ok := result.(*PlanResult)
if !ok {
return nil, &ErrorTypeAssert
}
return planResult.Plan, nil
}
func (pr *PlanRequest) Delete(ctx context.Context, planCode string) (*Plan, *Error) {
subPath := fmt.Sprintf("%s/%s", "plans", planCode)
clientRequest := &ClientRequest{
Path: subPath,
Result: &PlanResult{},
}
result, err := pr.client.Delete(ctx, clientRequest)
if err != nil {
return nil, err
}
planResult, ok := result.(*PlanResult)
if !ok {
return nil, &ErrorTypeAssert
}
return planResult.Plan, nil
}