-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathapi_keys.go
178 lines (143 loc) · 5.21 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
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
package mongodbatlas
import (
"context"
"fmt"
"net/http"
"net/url"
)
const apiKeysPath = "orgs/%s/apiKeys"
// APIKeysService is an interface for interfacing with the APIKeys
// endpoints of the MongoDB Atlas API.
// See more: https://docs.atlas.mongodb.com/reference/api/apiKeys/
type APIKeysService interface {
List(context.Context, string, *ListOptions) ([]APIKey, *Response, error)
Get(context.Context, string, string) (*APIKey, *Response, error)
Create(context.Context, string, *APIKeyInput) (*APIKey, *Response, error)
Update(context.Context, string, string, *APIKeyInput) (*APIKey, *Response, error)
Delete(context.Context, string, string) (*Response, error)
}
// APIKeysServiceOp handles communication with the APIKey related methods
// of the MongoDB Atlas API
type APIKeysServiceOp service
var _ APIKeysService = &APIKeysServiceOp{}
// APIKeyInput represents MongoDB API key input request for Create.
type APIKeyInput struct {
Desc string `json:"desc,omitempty"`
Roles []string `json:"roles,omitempty"`
}
// APIKey represents MongoDB API Key.
type APIKey struct {
ID string `json:"id,omitempty"`
Desc string `json:"desc,omitempty"`
Roles []AtlasRole `json:"roles,omitempty"`
PrivateKey string `json:"privateKey,omitempty"`
PublicKey string `json:"publicKey,omitempty"`
}
// AtlasRole represents a role name of API key
type AtlasRole struct {
GroupID string `json:"groupId,omitempty"`
OrgID string `json:"orgId,omitempty"`
RoleName string `json:"roleName,omitempty"`
}
// apiKeysResponse is the response from the APIKeysService.List.
type apiKeysResponse struct {
Links []*Link `json:"links,omitempty"`
Results []APIKey `json:"results,omitempty"`
TotalCount int `json:"totalCount,omitempty"`
}
// List all API-KEY in the organization associated to {ORG-ID}.
// See more: https://docs.atlas.mongodb.com/reference/api/apiKeys-orgs-get-all/
func (s *APIKeysServiceOp) List(ctx context.Context, orgID string, listOptions *ListOptions) ([]APIKey, *Response, error) {
path := fmt.Sprintf(apiKeysPath, orgID)
// Add query params from listOptions
path, err := setListOptions(path, listOptions)
if err != nil {
return nil, nil, err
}
req, err := s.Client.NewRequest(ctx, http.MethodGet, path, nil)
if err != nil {
return nil, nil, err
}
root := new(apiKeysResponse)
resp, err := s.Client.Do(ctx, req, root)
if err != nil {
return nil, resp, err
}
if l := root.Links; l != nil {
resp.Links = l
}
return root.Results, resp, nil
}
// Get gets the APIKey specified to {API-KEY-ID} from the organization associated to {ORG-ID}.
// See more: https://docs.atlas.mongodb.com/reference/api/apiKeys-orgs-get-one/
func (s *APIKeysServiceOp) Get(ctx context.Context, orgID, apiKeyID string) (*APIKey, *Response, error) {
if apiKeyID == "" {
return nil, nil, NewArgError("name", "must be set")
}
basePath := fmt.Sprintf(apiKeysPath, orgID)
escapedEntry := url.PathEscape(apiKeyID)
path := fmt.Sprintf("%s/%s", basePath, escapedEntry)
req, err := s.Client.NewRequest(ctx, http.MethodGet, path, nil)
if err != nil {
return nil, nil, err
}
root := new(APIKey)
resp, err := s.Client.Do(ctx, req, root)
if err != nil {
return nil, resp, err
}
return root, resp, err
}
// Create an API Key by the {ORG-ID}.
// See more: https://docs.atlas.mongodb.com/reference/api/apiKeys-orgs-create-one/
func (s *APIKeysServiceOp) Create(ctx context.Context, orgID string, createRequest *APIKeyInput) (*APIKey, *Response, error) {
if createRequest == nil {
return nil, nil, NewArgError("createRequest", "cannot be nil")
}
path := fmt.Sprintf(apiKeysPath, orgID)
req, err := s.Client.NewRequest(ctx, http.MethodPost, path, createRequest)
if err != nil {
return nil, nil, err
}
root := new(APIKey)
resp, err := s.Client.Do(ctx, req, root)
if err != nil {
return nil, resp, err
}
return root, resp, err
}
// Update a API Key in the organization associated to {ORG-ID}
// See more: https://docs.atlas.mongodb.com/reference/api/apiKeys-orgs-update-one/
func (s *APIKeysServiceOp) Update(ctx context.Context, orgID, apiKeyID string, updateRequest *APIKeyInput) (*APIKey, *Response, error) {
if updateRequest == nil {
return nil, nil, NewArgError("updateRequest", "cannot be nil")
}
basePath := fmt.Sprintf(apiKeysPath, orgID)
path := fmt.Sprintf("%s/%s", basePath, apiKeyID)
req, err := s.Client.NewRequest(ctx, http.MethodPatch, path, updateRequest)
if err != nil {
return nil, nil, err
}
root := new(APIKey)
resp, err := s.Client.Do(ctx, req, root)
if err != nil {
return nil, resp, err
}
return root, resp, err
}
// Delete the API Key specified to {API-KEY-ID} from the organization associated to {ORG-ID}.
// See more: https://docs.atlas.mongodb.com/reference/api/apiKey-delete-one-apiKey/
func (s *APIKeysServiceOp) Delete(ctx context.Context, orgID, apiKeyID string) (*Response, error) {
if apiKeyID == "" {
return nil, NewArgError("apiKeyID", "must be set")
}
basePath := fmt.Sprintf(apiKeysPath, orgID)
escapedEntry := url.PathEscape(apiKeyID)
path := fmt.Sprintf("%s/%s", basePath, escapedEntry)
req, err := s.Client.NewRequest(ctx, http.MethodDelete, path, nil)
if err != nil {
return nil, err
}
resp, err := s.Client.Do(ctx, req, nil)
return resp, err
}