-
Notifications
You must be signed in to change notification settings - Fork 0
/
tax.go
118 lines (94 loc) · 2.55 KB
/
tax.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
package lago
import (
"context"
"net/url"
"strconv"
"time"
"github.com/google/uuid"
)
type taxParams struct {
Tax *TaxInput `json:"tax"`
}
type TaxInput struct {
Name string `json:"name,omitempty"`
Code string `json:"code,omitempty"`
Rate *float32 `json:"rate,omitempty"`
Description string `json:"description,omitempty"`
AppliedToOrganization bool `json:"applied_to_organization,omitempty"`
}
type TaxListInput struct {
PerPage int `json:"per_page,omitempty,string"`
Page int `json:"page,omitempty,string"`
}
func (i *TaxListInput) 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 taxResult struct {
Tax *Tax `json:"tax,omitempty"`
}
type TaxList struct {
Taxes []*Tax `json:"taxes,omitempty"`
Meta Metadata `json:"meta,omitempty"`
}
type Tax struct {
LagoID uuid.UUID `json:"lago_id,omitempty"`
Name string `json:"name,omitempty"`
Code string `json:"code,omitempty"`
Rate float32 `json:"rate,omitempty"`
Description string `json:"description,omitempty"`
AppliedToOrganization bool `json:"applied_to_organization,omitempty"`
CreatedAt time.Time `json:"created_at,omitempty"`
}
func (c *Client) GetTax(ctx context.Context, taxCode string) (*Tax, error) {
u := c.url("taxes/"+taxCode, nil)
result, err := get[taxResult](ctx, c, u)
if err != nil {
return nil, err
}
return result.Tax, nil
}
func (c *Client) ListTaxes(ctx context.Context, taxListInput *TaxListInput) (*TaxList, error) {
u := c.url("taxes", taxListInput.query())
return get[TaxList](ctx, c, u)
}
func (c *Client) CreateTax(ctx context.Context, taxInput *TaxInput) (*Tax, error) {
u := c.url("taxes", nil)
result, err := post[taxParams, taxResult](
ctx,
c,
u,
&taxParams{Tax: taxInput},
)
if err != nil {
return nil, err
}
return result.Tax, nil
}
func (c *Client) UpdateTax(ctx context.Context, taxInput *TaxInput) (*Tax, error) {
u := c.url("taxes/"+taxInput.Code, nil)
result, err := put[taxParams, taxResult](
ctx,
c,
u,
&taxParams{Tax: taxInput},
)
if err != nil {
return nil, err
}
return result.Tax, nil
}
func (c *Client) DeleteTax(ctx context.Context, taxCode string) (*Tax, error) {
u := c.url("taxes/"+taxCode, nil)
result, err := delete[taxResult](ctx, c, u)
if err != nil {
return nil, err
}
return result.Tax, nil
}