forked from hashicorp/go-tfe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin_user.go
239 lines (190 loc) · 6.53 KB
/
admin_user.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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package tfe
import (
"context"
"fmt"
"net/url"
)
// Compile-time proof of interface implementation.
var _ AdminUsers = (*adminUsers)(nil)
// AdminUsers describes all the admin user related methods that the Terraform
// Enterprise API supports.
// It contains endpoints to help site administrators manage their users.
//
// TFE API docs: https://developer.hashicorp.com/terraform/enterprise/api-docs/admin/users
type AdminUsers interface {
// List all the users of the given installation.
List(ctx context.Context, options *AdminUserListOptions) (*AdminUserList, error)
// Delete a user by its ID.
Delete(ctx context.Context, userID string) error
// Suspend a user by its ID.
Suspend(ctx context.Context, userID string) (*AdminUser, error)
// Unsuspend a user by its ID.
Unsuspend(ctx context.Context, userID string) (*AdminUser, error)
// GrantAdmin grants admin privileges to a user by its ID.
GrantAdmin(ctx context.Context, userID string) (*AdminUser, error)
// RevokeAdmin revokees admin privileges to a user by its ID.
RevokeAdmin(ctx context.Context, userID string) (*AdminUser, error)
// Disable2FA disables a user's two-factor authentication in the situation
// where they have lost access to their device and recovery codes.
Disable2FA(ctx context.Context, userID string) (*AdminUser, error)
}
// adminUsers implements the AdminUsers interface.
type adminUsers struct {
client *Client
}
// AdminUser represents a user as seen by an Admin.
type AdminUser struct {
ID string `jsonapi:"primary,users"`
Email string `jsonapi:"attr,email"`
Username string `jsonapi:"attr,username"`
AvatarURL string `jsonapi:"attr,avatar-url"`
TwoFactor *TwoFactor `jsonapi:"attr,two-factor"`
IsAdmin bool `jsonapi:"attr,is-admin"`
IsSuspended bool `jsonapi:"attr,is-suspended"`
IsServiceAccount bool `jsonapi:"attr,is-service-account"`
// Relations
Organizations []*Organization `jsonapi:"relation,organizations"`
}
// AdminUserList represents a list of users.
type AdminUserList struct {
*Pagination
Items []*AdminUser
}
// AdminUserIncludeOpt represents the available options for include query params.
// https://developer.hashicorp.com/terraform/enterprise/api-docs/admin/users#available-related-resources
type AdminUserIncludeOpt string
const AdminUserOrgs AdminUserIncludeOpt = "organizations"
// AdminUserListOptions represents the options for listing users.
// https://developer.hashicorp.com/terraform/enterprise/api-docs/admin/users#query-parameters
type AdminUserListOptions struct {
ListOptions
// Optional: A search query string. Users are searchable by username and email address.
Query string `url:"q,omitempty"`
// Optional: Can be "true" or "false" to show only administrators or non-administrators.
Administrators string `url:"filter[admin],omitempty"`
// Optional: Can be "true" or "false" to show only suspended users or users who are not suspended.
SuspendedUsers string `url:"filter[suspended],omitempty"`
// Optional: A list of relations to include. See available resources
// https://developer.hashicorp.com/terraform/enterprise/api-docs/admin/users#available-related-resources
Include []AdminUserIncludeOpt `url:"include,omitempty"`
}
// List all user accounts in the Terraform Enterprise installation
func (a *adminUsers) List(ctx context.Context, options *AdminUserListOptions) (*AdminUserList, error) {
if err := options.valid(); err != nil {
return nil, err
}
u := "admin/users"
req, err := a.client.NewRequest("GET", u, options)
if err != nil {
return nil, err
}
aul := &AdminUserList{}
err = req.Do(ctx, aul)
if err != nil {
return nil, err
}
return aul, nil
}
// Delete a user by its ID.
func (a *adminUsers) Delete(ctx context.Context, userID string) error {
if !validStringID(&userID) {
return ErrInvalidUserValue
}
u := fmt.Sprintf("admin/users/%s", url.QueryEscape(userID))
req, err := a.client.NewRequest("DELETE", u, nil)
if err != nil {
return err
}
return req.Do(ctx, nil)
}
// Suspend a user by its ID.
func (a *adminUsers) Suspend(ctx context.Context, userID string) (*AdminUser, error) {
if !validStringID(&userID) {
return nil, ErrInvalidUserValue
}
u := fmt.Sprintf("admin/users/%s/actions/suspend", url.QueryEscape(userID))
req, err := a.client.NewRequest("POST", u, nil)
if err != nil {
return nil, err
}
au := &AdminUser{}
err = req.Do(ctx, au)
if err != nil {
return nil, err
}
return au, nil
}
// Unsuspend a user by its ID.
func (a *adminUsers) Unsuspend(ctx context.Context, userID string) (*AdminUser, error) {
if !validStringID(&userID) {
return nil, ErrInvalidUserValue
}
u := fmt.Sprintf("admin/users/%s/actions/unsuspend", url.QueryEscape(userID))
req, err := a.client.NewRequest("POST", u, nil)
if err != nil {
return nil, err
}
au := &AdminUser{}
err = req.Do(ctx, au)
if err != nil {
return nil, err
}
return au, nil
}
// GrantAdmin grants admin privileges to a user by its ID.
func (a *adminUsers) GrantAdmin(ctx context.Context, userID string) (*AdminUser, error) {
if !validStringID(&userID) {
return nil, ErrInvalidUserValue
}
u := fmt.Sprintf("admin/users/%s/actions/grant_admin", url.QueryEscape(userID))
req, err := a.client.NewRequest("POST", u, nil)
if err != nil {
return nil, err
}
au := &AdminUser{}
err = req.Do(ctx, au)
if err != nil {
return nil, err
}
return au, nil
}
// RevokeAdmin revokes admin privileges to a user by its ID.
func (a *adminUsers) RevokeAdmin(ctx context.Context, userID string) (*AdminUser, error) {
if !validStringID(&userID) {
return nil, ErrInvalidUserValue
}
u := fmt.Sprintf("admin/users/%s/actions/revoke_admin", url.QueryEscape(userID))
req, err := a.client.NewRequest("POST", u, nil)
if err != nil {
return nil, err
}
au := &AdminUser{}
err = req.Do(ctx, au)
if err != nil {
return nil, err
}
return au, nil
}
// Disable2FA disables a user's two-factor authentication in the situation
// where they have lost access to their device and recovery codes.
func (a *adminUsers) Disable2FA(ctx context.Context, userID string) (*AdminUser, error) {
if !validStringID(&userID) {
return nil, ErrInvalidUserValue
}
u := fmt.Sprintf("admin/users/%s/actions/disable_two_factor", url.QueryEscape(userID))
req, err := a.client.NewRequest("POST", u, nil)
if err != nil {
return nil, err
}
au := &AdminUser{}
err = req.Do(ctx, au)
if err != nil {
return nil, err
}
return au, nil
}
func (o *AdminUserListOptions) valid() error {
return nil
}