Skip to content

Commit f3ed00d

Browse files
committed
refactor extensions handling
1 parent f5bbc55 commit f3ed00d

File tree

3 files changed

+91
-84
lines changed

3 files changed

+91
-84
lines changed

internal/cmdcommon/extension.go

+14-21
Original file line numberDiff line numberDiff line change
@@ -53,34 +53,23 @@ func (kec *KymaExtensionsConfig) GetRawExtensions() ExtensionList {
5353
func (kec *KymaExtensionsConfig) BuildExtensions(availableTemplateCommands *TemplateCommandsList, availableCoreCommands CoreCommandsMap, cmd *cobra.Command) []*cobra.Command {
5454
var cmds []*cobra.Command
5555

56-
if getBoolFlagValue("--skip-extensions") {
57-
// skip extensions fetching
58-
return nil
59-
}
60-
61-
var cms, cmsError = getExtensionConfigMaps(kec.kymaConfig.Ctx, kec.kymaConfig.KubeClientConfig)
62-
if cmsError != nil {
63-
kec.parseErrors = cmsError
64-
return nil
65-
}
66-
6756
existingCommands := make(map[string]bool)
6857
for _, baseCmd := range cmd.Commands() {
6958
existingCommands[baseCmd.Name()] = true
7059
}
7160

72-
for _, cm := range cms.Items {
73-
extension, _ := parseResourceExtension(cm.Data)
61+
for _, extensionItem := range kec.extensions {
62+
extension := extensionItem.Extension
7463
if existingCommands[extension.RootCommand.Name] {
7564
kec.parseErrors = errors.Join(
7665
kec.parseErrors,
7766
fmt.Errorf("failed to validate configmap '%s/%s': base command with name='%s' already exists",
78-
cm.GetNamespace(), cm.GetName(), extension.RootCommand.Name),
67+
extensionItem.ConfigMapNamespace, extensionItem.ConfigMapName, extension.RootCommand.Name),
7968
)
8069
continue
8170
}
8271

83-
cmds = append(cmds, buildCommandFromExtension(kec.kymaConfig, extension, availableTemplateCommands, availableCoreCommands))
72+
cmds = append(cmds, buildCommandFromExtension(kec.kymaConfig, &extension, availableTemplateCommands, availableCoreCommands))
8473
}
8574

8675
return cmds
@@ -117,13 +106,13 @@ func getExtensionConfigMaps(ctx context.Context, clientConfig *KubeClientConfig)
117106
return cms, nil
118107
}
119108

120-
func loadExtensionsFromCluster(ctx context.Context, clientConfig *KubeClientConfig) ([]Extension, error) {
109+
func loadExtensionsFromCluster(ctx context.Context, clientConfig *KubeClientConfig) (ExtensionList, error) {
121110
var cms, cmsError = getExtensionConfigMaps(ctx, clientConfig)
122111
if cmsError != nil {
123112
return nil, cmsError
124113
}
125114

126-
var extensions []Extension
115+
var extensionsItems ExtensionList
127116
var parseErrors error
128117
for _, cm := range cms.Items {
129118
extension, err := parseResourceExtension(cm.Data)
@@ -137,8 +126,8 @@ func loadExtensionsFromCluster(ctx context.Context, clientConfig *KubeClientConf
137126
continue
138127
}
139128

140-
if slices.ContainsFunc(extensions, func(e Extension) bool {
141-
return e.RootCommand.Name == extension.RootCommand.Name
129+
if slices.ContainsFunc(extensionsItems, func(e ExtensionItem) bool {
130+
return e.Extension.RootCommand.Name == extension.RootCommand.Name
142131
}) {
143132
parseErrors = errors.Join(
144133
parseErrors,
@@ -148,10 +137,14 @@ func loadExtensionsFromCluster(ctx context.Context, clientConfig *KubeClientConf
148137
continue
149138
}
150139

151-
extensions = append(extensions, *extension)
140+
extensionsItems = append(extensionsItems, ExtensionItem{
141+
ConfigMapName: cm.GetName(),
142+
ConfigMapNamespace: cm.GetNamespace(),
143+
Extension: *extension,
144+
})
152145
}
153146

154-
return extensions, parseErrors
147+
return extensionsItems, parseErrors
155148
}
156149

157150
func parseResourceExtension(cmData map[string]string) (*Extension, error) {

internal/cmdcommon/extension_test.go

+68-60
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,14 @@ descriptionLong: test-description-long
129129

130130
want := ExtensionList{
131131
{
132-
RootCommand: types.RootCommand{
133-
Name: "test-command",
134-
Description: "test-description",
135-
DescriptionLong: "test-description-long",
132+
ConfigMapName: "bad-data",
133+
ConfigMapNamespace: "",
134+
Extension: Extension{
135+
RootCommand: types.RootCommand{
136+
Name: "test-command",
137+
Description: "test-description",
138+
DescriptionLong: "test-description-long",
139+
},
136140
},
137141
},
138142
}
@@ -251,70 +255,74 @@ create:
251255
}
252256
}
253257

254-
func fixTestExtension(name string) Extension {
255-
return Extension{
256-
RootCommand: types.RootCommand{
257-
Name: name,
258-
Description: "test-description",
259-
DescriptionLong: "test-description-long",
260-
},
261-
Resource: &types.ResourceInfo{
262-
Scope: types.NamespaceScope,
263-
Kind: "TestKind",
264-
Group: "test.group",
265-
Version: "v1",
266-
},
267-
TemplateCommands: &TemplateCommands{
268-
GetCommand: &types.GetCommand{
269-
Description: "test-get-description",
270-
DescriptionLong: "test-get-description-long",
271-
Parameters: []types.Parameter{
272-
{
273-
Path: ".metadata.generation",
274-
Name: "generation",
275-
},
276-
},
277-
},
278-
ExplainCommand: &types.ExplainCommand{
258+
func fixTestExtension(name string) ExtensionItem {
259+
return ExtensionItem{
260+
ConfigMapName: name,
261+
ConfigMapNamespace: "",
262+
Extension: Extension{
263+
RootCommand: types.RootCommand{
264+
Name: name,
279265
Description: "test-description",
280266
DescriptionLong: "test-description-long",
281-
Output: "test-explain-output",
282267
},
283-
DeleteCommand: &types.DeleteCommand{
284-
Description: "test-delete-description",
285-
DescriptionLong: "test-delete-description-long",
268+
Resource: &types.ResourceInfo{
269+
Scope: types.NamespaceScope,
270+
Kind: "TestKind",
271+
Group: "test.group",
272+
Version: "v1",
286273
},
287-
CreateCommand: &types.CreateCommand{
288-
Description: "create test resource",
289-
DescriptionLong: "use this command to create test resource",
290-
CustomFlags: []types.CustomFlag{
291-
{
292-
Type: types.StringCustomFlagType,
293-
Name: "test-flag",
294-
Description: "test-flag description",
295-
Shorthand: "t",
296-
Path: ".spec.test.field",
297-
DefaultValue: "test-default",
298-
Required: true,
274+
TemplateCommands: &TemplateCommands{
275+
GetCommand: &types.GetCommand{
276+
Description: "test-get-description",
277+
DescriptionLong: "test-get-description-long",
278+
Parameters: []types.Parameter{
279+
{
280+
Path: ".metadata.generation",
281+
Name: "generation",
282+
},
299283
},
300-
{
301-
Type: types.PathCustomFlagType,
302-
Name: "test-flag-2",
303-
Description: "test-flag-2 description",
304-
Shorthand: "f",
305-
Path: ".spec.test.field2",
306-
DefaultValue: "test-default2",
307-
Required: false,
284+
},
285+
ExplainCommand: &types.ExplainCommand{
286+
Description: "test-description",
287+
DescriptionLong: "test-description-long",
288+
Output: "test-explain-output",
289+
},
290+
DeleteCommand: &types.DeleteCommand{
291+
Description: "test-delete-description",
292+
DescriptionLong: "test-delete-description-long",
293+
},
294+
CreateCommand: &types.CreateCommand{
295+
Description: "create test resource",
296+
DescriptionLong: "use this command to create test resource",
297+
CustomFlags: []types.CustomFlag{
298+
{
299+
Type: types.StringCustomFlagType,
300+
Name: "test-flag",
301+
Description: "test-flag description",
302+
Shorthand: "t",
303+
Path: ".spec.test.field",
304+
DefaultValue: "test-default",
305+
Required: true,
306+
},
307+
{
308+
Type: types.PathCustomFlagType,
309+
Name: "test-flag-2",
310+
Description: "test-flag-2 description",
311+
Shorthand: "f",
312+
Path: ".spec.test.field2",
313+
DefaultValue: "test-default2",
314+
Required: false,
315+
},
308316
},
309317
},
310318
},
311-
},
312-
CoreCommands: []CoreCommandInfo{
313-
{
314-
ActionID: "test-action-id-1",
315-
},
316-
{
317-
ActionID: "test-action-id-2",
319+
CoreCommands: []CoreCommandInfo{
320+
{
321+
ActionID: "test-action-id-1",
322+
},
323+
{
324+
ActionID: "test-action-id-2",
325+
},
318326
},
319327
},
320328
}

internal/cmdcommon/extension_types.go

+9-3
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,17 @@ type TemplateCommandsList struct {
2727
Delete func(templates.KubeClientGetter, *templates.DeleteOptions) *cobra.Command
2828
}
2929

30-
type ExtensionList []Extension
30+
type ExtensionList []ExtensionItem
31+
32+
type ExtensionItem struct {
33+
ConfigMapName string
34+
ConfigMapNamespace string
35+
Extension Extension
36+
}
3137

3238
func (el *ExtensionList) ContainResource(kind string) bool {
33-
for _, extension := range *el {
34-
if extension.Resource.Kind == kind {
39+
for _, item := range *el {
40+
if item.Extension.Resource.Kind == kind {
3541
return true
3642
}
3743
}

0 commit comments

Comments
 (0)