-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrole.go
More file actions
401 lines (339 loc) · 11.1 KB
/
role.go
File metadata and controls
401 lines (339 loc) · 11.1 KB
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
package connector
import (
"context"
"fmt"
"strconv"
"strings"
"github.com/conductorone/baton-postgresql/pkg/postgres"
v2 "github.com/conductorone/baton-sdk/pb/c1/connector/v2"
"github.com/conductorone/baton-sdk/pkg/annotations"
"github.com/conductorone/baton-sdk/pkg/connectorbuilder"
"github.com/conductorone/baton-sdk/pkg/crypto"
"github.com/conductorone/baton-sdk/pkg/pagination"
sdkResource "github.com/conductorone/baton-sdk/pkg/types/resource"
)
var roleResourceType = &v2.ResourceType{
Id: "role",
DisplayName: "Role",
Traits: []v2.ResourceType_Trait{v2.ResourceType_TRAIT_ROLE, v2.ResourceType_TRAIT_USER},
Annotations: nil,
}
type roleSyncer struct {
resourceType *v2.ResourceType
client *postgres.Client
}
func (r *roleSyncer) ResourceType(ctx context.Context) *v2.ResourceType {
return roleResourceType
}
func (r *roleSyncer) makeResource(ctx context.Context, roleModel *postgres.RoleModel) (*v2.Resource, error) {
var annos annotations.Annotations
hasMembers, err := r.client.RoleHasMembers(ctx, roleModel.ID)
if err != nil {
return nil, err
}
if hasMembers {
gt, err := sdkResource.NewGroupTrait()
if err != nil {
return nil, err
}
annos.Update(gt)
}
traitOptions := []sdkResource.UserTraitOption{
sdkResource.WithStatus(v2.UserTrait_Status_STATUS_ENABLED),
}
switch {
case roleModel.Name == "postgres":
traitOptions = append(traitOptions, sdkResource.WithAccountType(v2.UserTrait_ACCOUNT_TYPE_SYSTEM))
case roleModel.CanLogin:
traitOptions = append(traitOptions, sdkResource.WithAccountType(v2.UserTrait_ACCOUNT_TYPE_HUMAN))
default:
traitOptions = append(traitOptions, sdkResource.WithAccountType(v2.UserTrait_ACCOUNT_TYPE_SERVICE))
}
traitOptions = append(traitOptions, sdkResource.WithUserLogin(roleModel.Name))
parts := strings.SplitN(roleModel.Name, "@", 2)
if len(parts) == 2 {
traitOptions = append(traitOptions, sdkResource.WithEmail(roleModel.Name, true))
}
ut, err := sdkResource.NewUserTrait(traitOptions...)
if err != nil {
return nil, err
}
annos.Update(ut)
rt, err := sdkResource.NewRoleTrait()
if err != nil {
return nil, err
}
annos.Update(rt)
return &v2.Resource{
DisplayName: roleModel.Name,
Id: &v2.ResourceId{
ResourceType: r.resourceType.Id,
Resource: formatObjectID(r.resourceType.Id, roleModel.ID),
},
Annotations: annos,
}, nil
}
func (r *roleSyncer) List(ctx context.Context, parentResourceID *v2.ResourceId, pToken *pagination.Token) ([]*v2.Resource, string, annotations.Annotations, error) {
var err error
// if we ever support parentResourceID, be sure to set it in makeResource
if parentResourceID != nil {
return nil, "", nil, fmt.Errorf("unexpected parent resource ID on role: %s", parentResourceID)
}
roles, nextPageToken, err := r.client.ListRoles(ctx, &postgres.Pager{Token: pToken.Token, Size: pToken.Size})
if err != nil {
return nil, "", nil, err
}
var ret []*v2.Resource
for _, o := range roles {
resource, err := r.makeResource(ctx, o)
if err != nil {
return nil, "", nil, err
}
ret = append(ret, resource)
}
return ret, nextPageToken, nil, nil
}
func (r *roleSyncer) Entitlements(ctx context.Context, resource *v2.Resource, pToken *pagination.Token) ([]*v2.Entitlement, string, annotations.Annotations, error) {
var ret []*v2.Entitlement
annos := annotations.Annotations(resource.Annotations)
gt := &v2.GroupTrait{}
ok, err := annos.Pick(gt)
if err != nil {
return nil, "", nil, err
}
if ok {
ret = append(ret, &v2.Entitlement{
Resource: resource,
Id: formatEntitlementID(resource, "member", false),
DisplayName: "Member",
Description: fmt.Sprintf("Is assigned the %s role", resource.DisplayName),
GrantableTo: []*v2.ResourceType{roleResourceType},
Purpose: v2.Entitlement_PURPOSE_VALUE_ASSIGNMENT,
Slug: "member",
})
ret = append(ret, &v2.Entitlement{
Resource: resource,
Id: formatEntitlementID(resource, "admin", false),
DisplayName: "Admin",
Description: fmt.Sprintf("Can grant the %s role to other roles", resource.DisplayName),
GrantableTo: []*v2.ResourceType{roleResourceType},
Purpose: v2.Entitlement_PURPOSE_VALUE_ASSIGNMENT,
Slug: "admin",
})
}
return ret, "", nil, nil
}
func (r *roleSyncer) Grants(ctx context.Context, resource *v2.Resource, pToken *pagination.Token) ([]*v2.Grant, string, annotations.Annotations, error) {
var ret []*v2.Grant
annos := annotations.Annotations(resource.Annotations)
gt := &v2.GroupTrait{}
ok, err := annos.Pick(gt)
if err != nil {
return nil, "", nil, err
}
// Roles only have entitlements if they are a group
if !ok {
return nil, "", nil, nil
}
roleID, err := parseObjectID(resource.Id.Resource)
if err != nil {
return nil, "", nil, err
}
roleMembers, nextPageToken, err := r.client.ListRoleMembers(ctx, roleID, &postgres.Pager{Token: pToken.Token, Size: pToken.Size})
if err != nil {
return nil, "", nil, err
}
var eID string
for _, m := range roleMembers {
if m.IsRoleAdmin() {
eID = formatEntitlementID(resource, "admin", false)
} else {
eID = formatEntitlementID(resource, "member", false)
}
principal := &v2.Resource{
Id: &v2.ResourceId{
ResourceType: roleResourceType.Id,
Resource: formatObjectID(roleResourceType.Id, m.ID),
},
}
ret = append(ret, &v2.Grant{
Id: formatGrantID(eID, principal.Id),
Entitlement: &v2.Entitlement{
Id: eID,
Resource: resource,
},
Principal: principal,
})
}
return ret, nextPageToken, nil, nil
}
func (r *roleSyncer) Create(ctx context.Context, resource *v2.Resource) (*v2.Resource, annotations.Annotations, error) {
return nil, nil, fmt.Errorf("baton-postgres: role creation not supported")
}
func (r *roleSyncer) Delete(ctx context.Context, resourceId *v2.ResourceId) (annotations.Annotations, error) {
if resourceId.ResourceType != roleResourceType.Id {
return nil, fmt.Errorf("baton-postgres: non-role/user resource passed to role delete")
}
roleId, err := parseObjectID(resourceId.Resource)
if err != nil {
return nil, err
}
pgRole, err := r.client.GetRole(ctx, roleId)
if err != nil {
return nil, err
}
err = r.client.DeleteRole(ctx, pgRole.Name)
return nil, err
}
func (r *roleSyncer) Grant(ctx context.Context, principal *v2.Resource, entitlement *v2.Entitlement) ([]*v2.Grant, annotations.Annotations, error) {
if principal.Id.ResourceType != roleResourceType.Id {
return nil, nil, fmt.Errorf("baton-postgres: only users and roles can have roles granted")
}
// TODO: respect isGrant
_, roleIdStr, _, _, err := parseEntitlementID(entitlement.Id)
if err != nil {
return nil, nil, err
}
roleID, err := strconv.ParseInt(roleIdStr, 10, 64)
if err != nil {
return nil, nil, err
}
pgRole, err := r.client.GetRole(ctx, roleID)
if err != nil {
return nil, nil, err
}
principalId, err := parseObjectID(principal.Id.Resource)
if err != nil {
return nil, nil, err
}
pgPrincipal, err := r.client.GetRole(ctx, principalId)
if err != nil {
return nil, nil, err
}
// TODO: respect duration if it's provided
err = r.client.GrantRole(ctx, pgRole.Name, pgPrincipal.Name)
return nil, nil, err
}
func (r *roleSyncer) Revoke(ctx context.Context, grant *v2.Grant) (annotations.Annotations, error) {
entitlement := grant.Entitlement
principal := grant.Principal
_, roleIdStr, _, isGrant, err := parseEntitlementID(entitlement.Id)
if err != nil {
return nil, err
}
roleID, err := strconv.ParseInt(roleIdStr, 10, 64)
if err != nil {
return nil, err
}
pgRole, err := r.client.GetRole(ctx, roleID)
if err != nil {
return nil, err
}
principalName := principal.DisplayName
err = r.client.RevokeRole(ctx, pgRole.Name, principalName, isGrant)
return nil, err
}
func (r *roleSyncer) RotateCapabilityDetails(ctx context.Context) (*v2.CredentialDetailsCredentialRotation, annotations.Annotations, error) {
return &v2.CredentialDetailsCredentialRotation{
SupportedCredentialOptions: []v2.CapabilityDetailCredentialOption{v2.CapabilityDetailCredentialOption_CAPABILITY_DETAIL_CREDENTIAL_OPTION_RANDOM_PASSWORD},
PreferredCredentialOption: v2.CapabilityDetailCredentialOption_CAPABILITY_DETAIL_CREDENTIAL_OPTION_RANDOM_PASSWORD,
}, nil, nil
}
func (r *roleSyncer) Rotate(
ctx context.Context,
resourceId *v2.ResourceId,
credentialOptions *v2.CredentialOptions,
) (
[]*v2.PlaintextData,
annotations.Annotations,
error,
) {
if resourceId.ResourceType != roleResourceType.Id {
return nil, nil, fmt.Errorf("baton-postgres: non-role/user resource passed to rotate credentials")
}
roleId, err := parseObjectID(resourceId.Resource)
if err != nil {
return nil, nil, err
}
pgRole, err := r.client.GetRole(ctx, roleId)
if err != nil {
return nil, nil, err
}
plainTextPassword, err := crypto.GeneratePassword(credentialOptions)
if err != nil {
return nil, nil, err
}
ptd := &v2.PlaintextData{
Name: "password",
Bytes: []byte(plainTextPassword),
}
_, err = r.client.ChangePassword(ctx, pgRole.Name, plainTextPassword)
if err != nil {
return nil, nil, err
}
return []*v2.PlaintextData{ptd}, nil, nil
}
func (r *roleSyncer) CreateAccountCapabilityDetails(ctx context.Context) (*v2.CredentialDetailsAccountProvisioning, annotations.Annotations, error) {
return &v2.CredentialDetailsAccountProvisioning{
SupportedCredentialOptions: []v2.CapabilityDetailCredentialOption{v2.CapabilityDetailCredentialOption_CAPABILITY_DETAIL_CREDENTIAL_OPTION_RANDOM_PASSWORD},
PreferredCredentialOption: v2.CapabilityDetailCredentialOption_CAPABILITY_DETAIL_CREDENTIAL_OPTION_RANDOM_PASSWORD,
}, nil, nil
}
func (r *roleSyncer) CreateAccount(
ctx context.Context,
accountInfo *v2.AccountInfo,
credentialOptions *v2.CredentialOptions,
) (
connectorbuilder.CreateAccountResponse,
[]*v2.PlaintextData,
annotations.Annotations,
error,
) {
roleModel, err := r.client.GetRoleByName(ctx, accountInfo.GetLogin())
if err == nil {
// user already exists. return that resource
resource, err := r.makeResource(ctx, roleModel)
if err != nil {
return nil, nil, nil, err
}
car := &v2.CreateAccountResponse_SuccessResult{
Resource: resource,
}
return car, []*v2.PlaintextData{}, nil, nil
}
plainTextPassword, err := crypto.GeneratePassword(credentialOptions)
if err != nil {
return nil, nil, nil, err
}
ptd := &v2.PlaintextData{
Name: "password",
Bytes: []byte(plainTextPassword),
}
// Default to C1 User's login as email
email := accountInfo.GetLogin()
// If the account provisioning schema has been filled, use the calculated email field
if accountInfo.Profile != nil {
profileMap := accountInfo.Profile.GetFields()
if value, ok := profileMap["email"]; ok && value.GetStringValue() != "" {
email = value.GetStringValue()
}
}
roleModel, err = r.client.CreateUser(ctx, email, plainTextPassword)
if err != nil {
return nil, nil, nil, err
}
resource, err := r.makeResource(ctx, roleModel)
if err != nil {
return nil, nil, nil, err
}
car := &v2.CreateAccountResponse_SuccessResult{
Resource: resource,
}
return car, []*v2.PlaintextData{ptd}, nil, nil
}
func newRoleSyncer(ctx context.Context, c *postgres.Client) *roleSyncer {
return &roleSyncer{
resourceType: roleResourceType,
client: c,
}
}