-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi_keys.go
77 lines (60 loc) · 1.28 KB
/
api_keys.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
package symbiosis
import (
"fmt"
"time"
)
type ApiKey struct {
ID string `json:"id"`
Token string `json:"token"`
SubjectID string `json:"subjectId"`
Role UserRole `json:"role"`
Description string `json:"description"`
LastUsedAt time.Time `json:"lastUsedAt"`
}
type ApiKeyService interface {
Create(input ApiKeyInput) (*ApiKey, error)
List() (ApiKeyCollection, error)
Delete(id string) error
}
type ApiKeyInput struct {
Role UserRole `json:"role"`
Description string `json:"description"`
}
type ApiKeyCollection []*ApiKey
type ApiKeyServiceClient struct {
client *Client
}
func (n *ApiKeyServiceClient) Create(input ApiKeyInput) (*ApiKey, error) {
var apiKey *ApiKey
err := n.client.Call(
"/rest/v1/api-keys",
"Post",
&apiKey,
WithBody(input),
)
if err != nil {
return nil, err
}
return apiKey, nil
}
func (n *ApiKeyServiceClient) List() (ApiKeyCollection, error) {
var apiKeys ApiKeyCollection
err := n.client.
Call("/rest/v1/api-keys",
"Get",
&apiKeys)
if err != nil {
return nil, err
}
return apiKeys, nil
}
func (n *ApiKeyServiceClient) Delete(id string) error {
err := n.client.
Call(fmt.Sprintf("/rest/v1/api-keys/%s", id),
"Delete",
nil)
if err != nil {
return err
}
return nil
}