-
Notifications
You must be signed in to change notification settings - Fork 0
/
plan.go
177 lines (147 loc) · 5.63 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
package lago
import (
"context"
"net/url"
"strconv"
"time"
"github.com/google/uuid"
)
type planResult struct {
Plan *Plan `json:"plan,omitempty"`
}
type PlanList struct {
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"`
RegroupPaidFees string `json:"regroup_paid_fees,omitempty"`
Prorated bool `json:"prorated,omitempty"`
MinAmountCents int `json:"min_amount_cents,omitempty"`
Properties map[string]interface{} `json:"properties"`
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"`
UsageThresholds []*UsageThresholdInput `json:"usage_thresholds,omitempty"`
CascadeUpdates bool `json:"cascade_updates"`
}
type PlanListInput struct {
PerPage int `json:"per_page,omitempty,string"`
Page int `json:"page,omitempty,string"`
}
func (i *PlanListInput) query() url.Values {
q := make(url.Values)
if i.PerPage > 0 {
q.Add("per_page", strconv.Itoa(i.PerPage))
}
if i.Page > 0 {
q.Add("page", strconv.Itoa(i.Page))
}
return q
}
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"`
Charges []*Charge `json:"charges,omitempty"`
MinimumCommitment *MinimumCommitment `json:"minimum_commitment"`
Taxes []*Tax `json:"taxes,omitempty"`
UsageThresholds []*UsageThreshold `json:"usage_thresholds,omitempty"`
}
func (c *Client) GetPlan(ctx context.Context, planCode string) (*Plan, error) {
u := c.url("plans/"+planCode, nil)
result, err := get[planResult](ctx, c, u)
if err != nil {
return nil, err
}
return result.Plan, nil
}
func (c *Client) ListPlans(ctx context.Context, planListInput *PlanListInput) (*PlanList, error) {
u := c.url("plans", planListInput.query())
return get[PlanList](ctx, c, u)
}
func (c *Client) CreatePlan(ctx context.Context, planInput *PlanInput) (*Plan, error) {
u := c.url("plans", nil)
result, err := post[planParams, planResult](
ctx,
c,
u,
&planParams{Plan: planInput},
)
if err != nil {
return nil, err
}
return result.Plan, nil
}
func (c *Client) UpdatePlan(ctx context.Context, planInput *PlanInput) (*Plan, error) {
u := c.url("plans/"+planInput.Code, nil)
result, err := put[planParams, planResult](
ctx,
c,
u,
&planParams{Plan: planInput},
)
if err != nil {
return nil, err
}
return result.Plan, nil
}
func (c *Client) DeletePlan(ctx context.Context, planCode string) (*Plan, error) {
u := c.url("plans/"+planCode, nil)
result, err := delete[planResult](ctx, c, u)
if err != nil {
return nil, err
}
return result.Plan, nil
}