-
Notifications
You must be signed in to change notification settings - Fork 13
/
provisioning.go
482 lines (410 loc) · 14.6 KB
/
provisioning.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
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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
package agent
import (
"context"
"github.com/Axway/agent-sdk/pkg/agent/handler"
v1 "github.com/Axway/agent-sdk/pkg/apic/apiserver/models/api/v1"
management "github.com/Axway/agent-sdk/pkg/apic/apiserver/models/management/v1alpha1"
"github.com/Axway/agent-sdk/pkg/apic/definitions"
"github.com/Axway/agent-sdk/pkg/apic/provisioning"
"github.com/Axway/agent-sdk/pkg/authz/oauth"
"github.com/Axway/agent-sdk/pkg/config"
"github.com/Axway/agent-sdk/pkg/migrate"
"github.com/Axway/agent-sdk/pkg/util"
"github.com/Axway/agent-sdk/pkg/util/log"
)
var supportedIDPGrantTypes = map[string]bool{
"client_credentials": true,
"authorization_code": true}
var supportedIDPTokenAuthMethods = map[string]bool{
"client_secret_basic": true,
"client_secret_post": true,
"client_secret_jwt": true,
"private_key_jwt": true}
// credential request definitions
// createOrUpdateDefinition -
func createOrUpdateDefinition(data v1.Interface, marketplaceMigration migrate.Migrator) (*v1.ResourceInstance, error) {
if agent.agentFeaturesCfg == nil || !agent.agentFeaturesCfg.MarketplaceProvisioningEnabled() {
return nil, nil
}
ri, err := agent.apicClient.CreateOrUpdateResource(data)
if err != nil {
return nil, err
}
if runMarketplaceMigration(ri, marketplaceMigration) {
migrateMarketPlace(marketplaceMigration, ri)
}
return ri, nil
}
func runMarketplaceMigration(ri *v1.ResourceInstance, marketplaceMigration migrate.Migrator) bool {
// check if the KIND and ID combo have an item in the cache
var existingRI *v1.ResourceInstance
switch ri.Kind {
case management.AccessRequestDefinitionGVK().Kind:
existingRI, _ = agent.cacheManager.GetAccessRequestDefinitionByName(ri.Name)
case management.CredentialRequestDefinitionGVK().Kind:
existingRI, _ = agent.cacheManager.GetCredentialRequestDefinitionByName(ri.Name)
}
return existingRI == nil && marketplaceMigration != nil
}
// migrateMarketPlace -
func migrateMarketPlace(marketplaceMigration migrate.Migrator, ri *v1.ResourceInstance) (*v1.ResourceInstance, error) {
switch ri.Kind {
case management.AccessRequestDefinitionGVK().Kind:
agent.cacheManager.AddAccessRequestDefinition(ri)
case management.CredentialRequestDefinitionGVK().Kind:
agent.cacheManager.AddCredentialRequestDefinition(ri)
}
apiSvcResources := make([]*v1.ResourceInstance, 0)
cache := agent.cacheManager.GetAPIServiceCache()
for _, key := range cache.GetKeys() {
item, _ := cache.Get(key)
if item == nil {
continue
}
svc, ok := item.(*v1.ResourceInstance)
if ok {
apiSvcResources = append(apiSvcResources, svc)
}
}
for _, svc := range apiSvcResources {
var err error
mig := marketplaceMigration.(*migrate.MarketplaceMigration)
logger.Tracef("update apiserviceinstances with request definition %s: %s", ri.Kind, ri.Name)
mig.UpdateService(context.Background(), svc)
// Mark marketplace migration completed here in provisioning
util.SetAgentDetailsKey(svc, definitions.MarketplaceMigration, definitions.MigrationCompleted)
ri, err = GetCentralClient().UpdateResourceInstance(svc)
if err != nil {
return nil, err
}
//update sub resources
inst, err := svc.AsInstance()
if xagentdetails, found := inst.SubResources[definitions.XAgentDetails]; found && err == nil {
err = GetCentralClient().CreateSubResource(ri.ResourceMeta, map[string]interface{}{definitions.XAgentDetails: xagentdetails})
if err != nil {
return nil, err
}
log.Debugf("updated x-agent-details with marketplace-migration: completed")
}
}
return ri, nil
}
// createOrUpdateCredentialRequestDefinition -
func createOrUpdateCredentialRequestDefinition(data *management.CredentialRequestDefinition) (*management.CredentialRequestDefinition, error) {
ri, err := createOrUpdateDefinition(data, agent.marketplaceMigration)
if ri == nil || err != nil {
return nil, err
}
err = data.FromInstance(ri)
return data, err
}
type crdBuilderOptions struct {
name string
title string
renewable bool
suspendable bool
provProps []provisioning.PropertyBuilder
reqProps []provisioning.PropertyBuilder
}
// NewCredentialRequestBuilder - called by the agents to build and register a new credential reqest definition
func NewCredentialRequestBuilder(options ...func(*crdBuilderOptions)) provisioning.CredentialRequestBuilder {
thisCred := &crdBuilderOptions{
renewable: false,
provProps: make([]provisioning.PropertyBuilder, 0),
reqProps: make([]provisioning.PropertyBuilder, 0),
}
for _, o := range options {
o(thisCred)
}
provSchema := provisioning.NewSchemaBuilder()
for _, provProp := range thisCred.provProps {
provSchema.AddProperty(provProp)
}
reqSchema := provisioning.NewSchemaBuilder()
for _, props := range thisCred.reqProps {
reqSchema.AddProperty(props)
}
builder := provisioning.NewCRDBuilder(createOrUpdateCredentialRequestDefinition).
SetName(thisCred.name).
SetTitle(thisCred.title).
SetProvisionSchema(provSchema).
SetRequestSchema(reqSchema).
SetExpirationDays(agent.cfg.GetCredentialConfig().GetExpirationDays())
if thisCred.renewable {
builder.IsRenewable()
}
if thisCred.suspendable {
builder.IsSuspendable()
}
if agent.cfg.GetCredentialConfig().ShouldDeprovisionExpired() {
builder.SetDeprovisionExpired()
}
return builder
}
// WithCRDName - set another name for the CRD
func WithCRDName(name string) func(c *crdBuilderOptions) {
return func(c *crdBuilderOptions) {
c.name = name
}
}
// WithCRDName - set another name for the CRD
func WithCRDTitle(title string) func(c *crdBuilderOptions) {
return func(c *crdBuilderOptions) {
c.title = title
}
}
// WithCRDIsRenewable - set another name for the CRD
func WithCRDIsRenewable() func(c *crdBuilderOptions) {
return func(c *crdBuilderOptions) {
c.renewable = true
}
}
// WithCRDIsSuspendable - set another name for the CRD
func WithCRDIsSuspendable() func(c *crdBuilderOptions) {
return func(c *crdBuilderOptions) {
c.suspendable = true
}
}
// WithCRDProvisionSchemaProperty - add more provisioning properties
func WithCRDProvisionSchemaProperty(prop provisioning.PropertyBuilder) func(c *crdBuilderOptions) {
return func(c *crdBuilderOptions) {
c.provProps = append(c.provProps, prop)
}
}
// WithCRDRequestSchemaProperty - add more request properties
func WithCRDRequestSchemaProperty(prop provisioning.PropertyBuilder) func(c *crdBuilderOptions) {
return func(c *crdBuilderOptions) {
c.reqProps = append(c.reqProps, prop)
}
}
// WithCRDForIDP - set the schema properties using the provider metadata
func WithCRDForIDP(p oauth.Provider, scopes []string) func(c *crdBuilderOptions) {
return func(c *crdBuilderOptions) {
if c.name == "" {
name := util.ConvertToDomainNameCompliant(p.GetName())
c.name = name + "-" + provisioning.OAuthIDPCRD
c.title = "OAuth" + p.GetName()
}
setIDPClientSecretSchemaProperty(c)
setIDPTokenURLSchemaProperty(p, c)
setIDPScopesSchemaProperty(p, scopes, c)
setIDPGrantTypesSchemaProperty(p, c)
setIDPTokenAuthMethodSchemaProperty(p, c)
setIDPRedirectURIsSchemaProperty(p, c)
setIDPJWKSURISchemaProperty(p, c)
setIDPJWKSSchemaProperty(p, c)
}
}
func setIDPClientSecretSchemaProperty(c *crdBuilderOptions) {
c.provProps = append(c.provProps,
provisioning.NewSchemaPropertyBuilder().
SetName(provisioning.OauthClientSecret).
SetLabel("Client Secret").
IsString().
IsEncrypted())
}
func setIDPTokenURLSchemaProperty(p oauth.Provider, c *crdBuilderOptions) {
c.reqProps = append(c.reqProps,
provisioning.NewSchemaPropertyBuilder().
SetName(provisioning.IDPTokenURL).
SetRequired().
SetLabel("Token URL").
SetReadOnly().
IsString().
SetDefaultValue(p.GetTokenEndpoint()))
}
func setIDPScopesSchemaProperty(p oauth.Provider, scopes []string, c *crdBuilderOptions) {
c.reqProps = append(c.reqProps,
provisioning.NewSchemaPropertyBuilder().
SetName(provisioning.OauthScopes).
SetLabel("Scopes").
IsArray().
AddItem(
provisioning.NewSchemaPropertyBuilder().
SetName("scope").
IsString().SetEnumValues(scopes)))
}
func setIDPGrantTypesSchemaProperty(p oauth.Provider, c *crdBuilderOptions) {
grantType := removeUnsupportedTypes(
p.GetSupportedGrantTypes(), supportedIDPGrantTypes)
c.reqProps = append(c.reqProps,
provisioning.NewSchemaPropertyBuilder().
SetName(provisioning.OauthGrantType).
SetLabel("Grant Type").
IsString().
SetDefaultValue("client_credentials").
SetEnumValues(grantType))
}
func removeUnsupportedTypes(values []string, supportedTypes map[string]bool) []string {
var result []string
for _, s := range values {
if ok := supportedTypes[s]; ok {
result = append(result, s)
}
}
return result
}
func setIDPTokenAuthMethodSchemaProperty(p oauth.Provider, c *crdBuilderOptions) {
tokenAuthMethod := removeUnsupportedTypes(
p.GetSupportedTokenAuthMethods(), supportedIDPTokenAuthMethods)
c.reqProps = append(c.reqProps,
provisioning.NewSchemaPropertyBuilder().
SetName(provisioning.OauthTokenAuthMethod).
SetLabel("Token Auth Method").
IsString().
SetDefaultValue("client_secret_basic").
SetEnumValues(tokenAuthMethod))
}
func setIDPRedirectURIsSchemaProperty(p oauth.Provider, c *crdBuilderOptions) {
c.reqProps = append(c.reqProps,
provisioning.NewSchemaPropertyBuilder().
SetName(provisioning.OauthRedirectURIs).
SetLabel("Redirect URLs").
IsArray().
AddItem(
provisioning.NewSchemaPropertyBuilder().
SetName("URL").
IsString()))
}
func setIDPJWKSURISchemaProperty(p oauth.Provider, c *crdBuilderOptions) {
c.reqProps = append(c.reqProps,
provisioning.NewSchemaPropertyBuilder().
SetName(provisioning.OauthJwksURI).
SetLabel("JWKS URI").
IsString())
}
func setIDPJWKSSchemaProperty(p oauth.Provider, c *crdBuilderOptions) {
c.reqProps = append(c.reqProps,
provisioning.NewSchemaPropertyBuilder().
SetName(provisioning.OauthJwks).
SetLabel("Public Key").
IsString())
}
// WithCRDOAuthSecret - set that the Oauth cred is secret based
func WithCRDOAuthSecret() func(c *crdBuilderOptions) {
return func(c *crdBuilderOptions) {
if c.name == "" {
c.name = provisioning.OAuthSecretCRD
c.title = "OAuth Client ID & Secret"
}
c.provProps = append(c.provProps,
provisioning.NewSchemaPropertyBuilder().
SetName(provisioning.OauthClientSecret).
SetLabel("Client Secret").
SetRequired().
IsString().
IsEncrypted())
}
}
// WithCRDOAuthPublicKey - set that the Oauth cred is key based
func WithCRDOAuthPublicKey() func(c *crdBuilderOptions) {
return func(c *crdBuilderOptions) {
if c.name == "" {
c.name = provisioning.OAuthPublicKeyCRD
c.title = "OAuth Client ID & Private Key"
}
c.reqProps = append(c.reqProps,
provisioning.NewSchemaPropertyBuilder().
SetName(provisioning.OauthPublicKey).
SetLabel("Public Key").
SetRequired().
IsString())
}
}
// NewAPIKeyCredentialRequestBuilder - add api key base properties for provisioning schema
func NewAPIKeyCredentialRequestBuilder(options ...func(*crdBuilderOptions)) provisioning.CredentialRequestBuilder {
apiKeyOptions := []func(*crdBuilderOptions){
WithCRDName(provisioning.APIKeyCRD),
WithCRDTitle("API Key"),
WithCRDProvisionSchemaProperty(
provisioning.NewSchemaPropertyBuilder().
SetName(provisioning.APIKey).
SetLabel("API Key").
SetRequired().
IsString().
IsEncrypted()),
}
apiKeyOptions = append(apiKeyOptions, options...)
return NewCredentialRequestBuilder(apiKeyOptions...)
}
// NewBasicAuthCredentialRequestBuilder - add basic auth base properties for provisioning schema
func NewBasicAuthCredentialRequestBuilder(options ...func(*crdBuilderOptions)) provisioning.CredentialRequestBuilder {
basicAuthOptions := []func(*crdBuilderOptions){
WithCRDName(provisioning.BasicAuthCRD),
WithCRDTitle("Basic Auth"),
WithCRDProvisionSchemaProperty(
provisioning.NewSchemaPropertyBuilder().
SetName(provisioning.BasicAuthUsername).
SetLabel("Username").
SetRequired().
IsString().
IsEncrypted()),
WithCRDProvisionSchemaProperty(
provisioning.NewSchemaPropertyBuilder().
SetName(provisioning.BasicAuthPassword).
SetLabel("Password").
SetRequired().
IsString().
IsEncrypted()),
}
basicAuthOptions = append(basicAuthOptions, options...)
return NewCredentialRequestBuilder(basicAuthOptions...)
}
// NewOAuthCredentialRequestBuilder - add oauth base properties for provisioning schema
func NewOAuthCredentialRequestBuilder(options ...func(*crdBuilderOptions)) provisioning.CredentialRequestBuilder {
oauthOptions := []func(*crdBuilderOptions){
WithCRDProvisionSchemaProperty(
provisioning.NewSchemaPropertyBuilder().
SetName(provisioning.OauthClientID).
SetLabel("Client ID").
SetRequired().
IsString().
IsCopyable()),
}
oauthOptions = append(oauthOptions, options...)
return NewCredentialRequestBuilder(oauthOptions...)
}
// access request definitions
// createOrUpdateAccessRequestDefinition -
func createOrUpdateAccessRequestDefinition(data *management.AccessRequestDefinition) (*management.AccessRequestDefinition, error) {
ri, err := createOrUpdateDefinition(data, agent.marketplaceMigration)
if ri == nil || err != nil {
return nil, err
}
err = data.FromInstance(ri)
return data, err
}
// NewAccessRequestBuilder - called by the agents to build and register a new access request definition
func NewAccessRequestBuilder() provisioning.AccessRequestBuilder {
return provisioning.NewAccessRequestBuilder(createOrUpdateAccessRequestDefinition)
}
// NewBasicAuthAccessRequestBuilder - called by the agents
func NewBasicAuthAccessRequestBuilder() provisioning.AccessRequestBuilder {
return NewAccessRequestBuilder().SetName(provisioning.BasicAuthARD)
}
// NewAPIKeyAccessRequestBuilder - called by the agents
func NewAPIKeyAccessRequestBuilder() provisioning.AccessRequestBuilder {
return NewAccessRequestBuilder().SetName(provisioning.APIKeyARD)
}
// provisioner
// RegisterProvisioner - allow the agent to register a provisioner
func RegisterProvisioner(provisioner provisioning.Provisioning) {
if agent.agentFeaturesCfg == nil || !agent.agentFeaturesCfg.MarketplaceProvisioningEnabled() {
return
}
agent.provisioner = provisioner
if agent.cfg.GetAgentType() == config.DiscoveryAgent || agent.cfg.GetAgentType() == config.GovernanceAgent {
agent.proxyResourceHandler.RegisterTargetHandler(
"accessrequesthandler",
handler.NewAccessRequestHandler(agent.provisioner, agent.cacheManager, agent.apicClient),
)
agent.proxyResourceHandler.RegisterTargetHandler(
"managedappHandler",
handler.NewManagedApplicationHandler(agent.provisioner, agent.cacheManager, agent.apicClient),
)
agent.proxyResourceHandler.RegisterTargetHandler(
"credentialHandler",
handler.NewCredentialHandler(agent.provisioner, agent.apicClient, agent.authProviderRegistry),
)
}
}