-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpersonalization.go
65 lines (59 loc) · 2.1 KB
/
personalization.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
package stream
import (
"context"
"encoding/json"
"errors"
"fmt"
)
// PersonalizationClient is a specialized client for personalization features.
type PersonalizationClient struct {
client *Client
}
func (c *PersonalizationClient) decode(resp []byte, err error) (*PersonalizationResponse, error) {
if err != nil {
return nil, err
}
var result PersonalizationResponse
if err := json.Unmarshal(resp, &result); err != nil {
return nil, fmt.Errorf("cannot unmarshal resp: %w", err)
}
return &result, nil
}
// Get obtains a PersonalizationResponse for the given resource and params.
func (c *PersonalizationClient) Get(ctx context.Context, resource string, params map[string]any) (*PersonalizationResponse, error) {
if resource == "" {
return nil, errors.New("missing resource")
}
endpoint := c.client.makeEndpoint("%s/", resource)
for k, v := range params {
endpoint.addQueryParam(makeRequestOption(k, v))
}
return c.decode(c.client.get(ctx, endpoint, nil, c.client.authenticator.personalizationAuth))
}
// Post sends data to the given resource, adding the given params to the request.
func (c *PersonalizationClient) Post(ctx context.Context, resource string, params, data map[string]any) (*PersonalizationResponse, error) {
if resource == "" {
return nil, errors.New("missing resource")
}
endpoint := c.client.makeEndpoint("%s/", resource)
for k, v := range params {
endpoint.addQueryParam(makeRequestOption(k, v))
}
if data != nil {
data = map[string]any{
"data": data,
}
}
return c.decode(c.client.post(ctx, endpoint, data, c.client.authenticator.personalizationAuth))
}
// Delete removes data from the given resource, adding the given params to the request.
func (c *PersonalizationClient) Delete(ctx context.Context, resource string, params map[string]any) (*PersonalizationResponse, error) {
if resource == "" {
return nil, errors.New("missing resource")
}
endpoint := c.client.makeEndpoint("%s/", resource)
for k, v := range params {
endpoint.addQueryParam(makeRequestOption(k, v))
}
return c.decode(c.client.delete(ctx, endpoint, nil, c.client.authenticator.personalizationAuth))
}