-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathagent_access_tokens.go
173 lines (153 loc) · 4.35 KB
/
agent_access_tokens.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
//
// Author:: Salim Afiune Maya (<[email protected]>)
// Copyright:: Copyright 2021, Lacework Inc.
// License:: Apache License, Version 2.0
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
package api
import (
"fmt"
"time"
"github.com/pkg/errors"
)
// AgentAccessTokensService is the service that interacts with
// the AgentAccessTokens schema from the Lacework APIv2 Server
type AgentAccessTokensService struct {
client *Client
}
// List returns a list of Agent Access Tokens
func (svc *AgentAccessTokensService) List() (response AgentAccessTokensResponse, err error) {
err = svc.client.RequestDecoder("GET", apiV2AgentAccessTokens, nil, &response)
return
}
// Create creates a single Agent Access Token
func (svc *AgentAccessTokensService) Create(alias, desc string, osType string) (
response AgentAccessTokenResponse,
err error,
) {
if alias == "" {
err = errors.New("token alias is required")
return
}
err = svc.client.RequestEncoderDecoder("POST",
apiV2AgentAccessTokens,
AgentAccessTokenRequest{
TokenAlias: alias,
Enabled: 1,
Props: &AgentAccessTokenProps{
Description: desc,
OS: osType,
},
},
&response,
)
return
}
// Get returns an Agent Access Token with the matching ID (token)
func (svc *AgentAccessTokensService) Get(token string) (
response AgentAccessTokenResponse,
err error,
) {
err = svc.client.RequestDecoder("GET",
fmt.Sprintf(apiV2AgentAccessTokenFromID, token),
nil,
&response,
)
return
}
// Update updates an Agent Access Token with the provided request data
func (svc *AgentAccessTokensService) Update(token string, data AgentAccessTokenRequest) (
response AgentAccessTokenResponse,
err error,
) {
err = svc.client.RequestEncoderDecoder("PATCH",
fmt.Sprintf(apiV2AgentAccessTokenFromID, token),
data,
&response,
)
return
}
// UpdateState updates only the state of an Agent Access Token (enable or disable)
func (svc *AgentAccessTokensService) UpdateState(token string, enable bool) (
response AgentAccessTokenResponse,
err error,
) {
request := AgentAccessTokenRequest{Enabled: 0}
if enable {
request.Enabled = 1
}
err = svc.client.RequestEncoderDecoder("PATCH",
fmt.Sprintf(apiV2AgentAccessTokenFromID, token),
request,
&response,
)
return
}
// SearchAlias will search for an Agent Access Token that matches the provider token alias
func (svc *AgentAccessTokensService) SearchAlias(alias string) (
response AgentAccessTokensResponse,
err error,
) {
if alias == "" {
err = errors.New("specify a token alias to search")
return
}
err = svc.client.RequestEncoderDecoder("POST",
apiV2AgentAccessTokensSearch,
SearchFilter{
Filters: []Filter{
{
Field: "tokenAlias",
Expression: "eq",
Value: alias,
},
},
},
&response,
)
return
}
type AgentAccessToken struct {
AccessToken string `json:"accessToken"`
CreatedTime time.Time `json:"createdTime"`
Props AgentAccessTokenProps `json:"props,omitempty"`
TokenAlias string `json:"tokenAlias"`
Enabled int `json:"tokenEnabled"`
Version string `json:"version"`
}
func (t AgentAccessToken) State() bool {
return t.Enabled == 1
}
func (t AgentAccessToken) PrettyState() string {
if t.State() {
return "Enabled"
}
return "Disabled"
}
type AgentAccessTokenProps struct {
CreatedTime time.Time `json:"createdTime,omitempty"`
Description string `json:"description,omitempty"`
OS string `json:"os,omitempty"`
}
type AgentAccessTokenResponse struct {
Data AgentAccessToken `json:"data"`
}
type AgentAccessTokensResponse struct {
Data []AgentAccessToken `json:"data"`
}
type AgentAccessTokenRequest struct {
Enabled int `json:"tokenEnabled"`
TokenAlias string `json:"tokenAlias,omitempty"`
Props *AgentAccessTokenProps `json:"props,omitempty"`
}