-
Notifications
You must be signed in to change notification settings - Fork 17
/
tax.go
179 lines (144 loc) · 4.01 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
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
package lago
import (
"context"
"encoding/json"
"fmt"
"time"
"github.com/google/uuid"
)
type TaxRequest struct {
client *Client
}
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"`
CreatedAt time.Time `json:"created_at,omitempty"`
}
type TaxListInput struct {
PerPage int `json:"per_page,omitempty,string"`
Page int `json:"page,omitempty,string"`
}
type TaxResult struct {
Tax *Tax `json:"tax,omitempty"`
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"`
AddOnsCount int `json:"add_ons_count,omitempty"`
CustomersCount int `json:"customers_count,omitempty"`
PlansCount int `json:"plans_count,omitempty"`
ChargesCount int `json:"charges_count,omitempty"`
AppliedToOrganization bool `json:"applied_to_organization,omitempty"`
CreatedAt time.Time `json:"created_at,omitempty"`
}
func (c *Client) Tax() *TaxRequest {
return &TaxRequest{
client: c,
}
}
func (adr *TaxRequest) Get(ctx context.Context, taxCode string) (*Tax, *Error) {
subPath := fmt.Sprintf("%s/%s", "taxes", taxCode)
clientRequest := &ClientRequest{
Path: subPath,
Result: &TaxResult{},
}
result, err := adr.client.Get(ctx, clientRequest)
if err != nil {
return nil, err
}
taxResult, ok := result.(*TaxResult)
if !ok {
return nil, &ErrorTypeAssert
}
return taxResult.Tax, nil
}
func (adr *TaxRequest) GetList(ctx context.Context, taxListInput *TaxListInput) (*TaxResult, *Error) {
jsonQueryparams, err := json.Marshal(taxListInput)
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: "taxes",
QueryParams: queryParams,
Result: &TaxResult{},
}
result, clientErr := adr.client.Get(ctx, clientRequest)
if clientErr != nil {
return nil, clientErr
}
taxResult, ok := result.(*TaxResult)
if !ok {
return nil, &ErrorTypeAssert
}
return taxResult, nil
}
func (adr *TaxRequest) Create(ctx context.Context, taxInput *TaxInput) (*Tax, *Error) {
taxParams := &TaxParams{
Tax: taxInput,
}
clientRequest := &ClientRequest{
Path: "taxes",
Result: &TaxResult{},
Body: taxParams,
}
result, err := adr.client.Post(ctx, clientRequest)
if err != nil {
return nil, err
}
taxResult, ok := result.(*TaxResult)
if !ok {
return nil, &ErrorTypeAssert
}
return taxResult.Tax, nil
}
func (adr *TaxRequest) Update(ctx context.Context, taxInput *TaxInput) (*Tax, *Error) {
subPath := fmt.Sprintf("%s/%s", "taxes", taxInput.Code)
taxParams := &TaxParams{
Tax: taxInput,
}
clientRequest := &ClientRequest{
Path: subPath,
Result: &TaxResult{},
Body: taxParams,
}
result, err := adr.client.Put(ctx, clientRequest)
if err != nil {
return nil, err
}
taxResult, ok := result.(*TaxResult)
if !ok {
return nil, &ErrorTypeAssert
}
return taxResult.Tax, nil
}
func (adr *TaxRequest) Delete(ctx context.Context, taxCode string) (*Tax, *Error) {
subPath := fmt.Sprintf("%s/%s", "taxes", taxCode)
clientRequest := &ClientRequest{
Path: subPath,
Result: &TaxResult{},
}
result, err := adr.client.Delete(ctx, clientRequest)
if err != nil {
return nil, err
}
taxResult, ok := result.(*TaxResult)
if !ok {
return nil, &ErrorTypeAssert
}
return taxResult.Tax, nil
}