-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathclient.go
207 lines (171 loc) · 4.97 KB
/
client.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
package pocketbase
import (
"encoding/json"
"errors"
"fmt"
"time"
"github.com/duke-git/lancet/v2/convertor"
"github.com/go-resty/resty/v2"
)
var ErrInvalidResponse = errors.New("invalid response")
type (
Client struct {
client *resty.Client
url string
authorizer authStore
}
ClientOption func(*Client)
)
func NewClient(url string, opts ...ClientOption) *Client {
client := resty.New()
client.
SetRetryCount(3).
SetRetryWaitTime(3 * time.Second).
SetRetryMaxWaitTime(10 * time.Second)
c := &Client{
client: client,
url: url,
authorizer: authorizeNoOp{},
}
for _, opt := range opts {
opt(c)
}
return c
}
func WithDebug() ClientOption {
return func(c *Client) {
c.client.SetDebug(true)
}
}
func WithAdminEmailPassword(email, password string) ClientOption {
return func(c *Client) {
c.authorizer = newAuthorizeEmailPassword(c.client, c.url+"/api/admins/auth-with-password", email, password)
}
}
func WithUserEmailPassword(email, password string) ClientOption {
return func(c *Client) {
c.authorizer = newAuthorizeEmailPassword(c.client, c.url+"/api/collections/users/auth-with-password", email, password)
}
}
func WithAdminToken(token string) ClientOption {
return func(c *Client) {
c.authorizer = newAuthorizeToken(c.client, c.url+"/api/admins/auth-refresh", token)
}
}
func WithUserToken(token string) ClientOption {
return func(c *Client) {
c.authorizer = newAuthorizeToken(c.client, c.url+"/api/collections/users/auth-refresh", token)
}
}
func (c *Client) Authorize() error {
return c.authorizer.authorize()
}
func (c *Client) Update(collection string, id string, body any) error {
if err := c.Authorize(); err != nil {
return err
}
request := c.client.R().
SetHeader("Content-Type", "application/json").
SetPathParam("collection", collection).
SetBody(body)
resp, err := request.Patch(c.url + "/api/collections/{collection}/records/" + id)
if err != nil {
return fmt.Errorf("[update] can't send update request to pocketbase, err %w", err)
}
if resp.IsError() {
return fmt.Errorf("[update] pocketbase returned status: %d, msg: %s, err %w",
resp.StatusCode(),
resp.String(),
ErrInvalidResponse,
)
}
return nil
}
func (c *Client) Create(collection string, body any) (ResponseCreate, error) {
var response ResponseCreate
if err := c.Authorize(); err != nil {
return response, err
}
request := c.client.R().
SetHeader("Content-Type", "application/json").
SetPathParam("collection", collection).
SetBody(body).
SetResult(&response)
resp, err := request.Post(c.url + "/api/collections/{collection}/records")
if err != nil {
return response, fmt.Errorf("[create] can't send update request to pocketbase, err %w", err)
}
if resp.IsError() {
return response, fmt.Errorf("[create] pocketbase returned status: %d, msg: %s, body: %s, err %w",
resp.StatusCode(),
resp.String(),
fmt.Sprintf("%+v", body), // TODO remove that after debugging
ErrInvalidResponse,
)
}
return *resp.Result().(*ResponseCreate), nil
}
func (c *Client) Delete(collection string, id string) error {
if err := c.Authorize(); err != nil {
return err
}
request := c.client.R().
SetHeader("Content-Type", "application/json").
SetPathParam("collection", collection).
SetPathParam("id", id)
resp, err := request.Delete(c.url + "/api/collections/{collection}/records/{id}")
if err != nil {
return fmt.Errorf("[delete] can't send update request to pocketbase, err %w", err)
}
if resp.IsError() {
return fmt.Errorf("[delete] pocketbase returned status: %d, msg: %s, err %w",
resp.StatusCode(),
resp.String(),
ErrInvalidResponse,
)
}
return nil
}
func (c *Client) List(collection string, params ParamsList) (ResponseList[map[string]any], error) {
var response ResponseList[map[string]any]
if err := c.Authorize(); err != nil {
return response, err
}
request := c.client.R().
SetHeader("Content-Type", "application/json").
SetPathParam("collection", collection)
if params.Page > 0 {
request.SetQueryParam("page", convertor.ToString(params.Page))
}
if params.Size > 0 {
request.SetQueryParam("perPage", convertor.ToString(params.Size))
}
if params.Filters != "" {
request.SetQueryParam("filter", params.Filters)
}
if params.Sort != "" {
request.SetQueryParam("sort", params.Sort)
}
resp, err := request.Get(c.url + "/api/collections/{collection}/records")
if err != nil {
return response, fmt.Errorf("[list] can't send update request to pocketbase, err %w", err)
}
if resp.IsError() {
return response, fmt.Errorf("[list] pocketbase returned status: %d, msg: %s, err %w",
resp.StatusCode(),
resp.String(),
ErrInvalidResponse,
)
}
var responseRef any = &response
if params.hackResponseRef != nil {
responseRef = params.hackResponseRef
}
if err := json.Unmarshal(resp.Body(), responseRef); err != nil {
return response, fmt.Errorf("[list] can't unmarshal response, err %w", err)
}
return response, nil
}
func (c *Client) AuthStore() authStore {
return c.authorizer
}