mirror of
https://github.com/rancher/norman.git
synced 2025-09-20 10:41:04 +00:00
Add ability to generate collection actions
Problem: Collections have actions but are not accessable through the types clients Solution: Update template and generator to output actions living on collections
This commit is contained in:
committed by
Darren Shepherd
parent
e9373e3511
commit
7edec77619
@@ -122,6 +122,21 @@ func getResourceActions(schema *types.Schema, schemas *types.Schemas) map[string
|
|||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func getCollectionActions(schema *types.Schema, schemas *types.Schemas) map[string]types.Action {
|
||||||
|
result := map[string]types.Action{}
|
||||||
|
for name, action := range schema.CollectionActions {
|
||||||
|
if action.Output != "" {
|
||||||
|
output := strings.TrimSuffix(action.Output, "Collection")
|
||||||
|
if schemas.Schema(&schema.Version, output) != nil {
|
||||||
|
result[name] = action
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
result[name] = action
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return result
|
||||||
|
}
|
||||||
|
|
||||||
func generateType(outputDir string, schema *types.Schema, schemas *types.Schemas) error {
|
func generateType(outputDir string, schema *types.Schema, schemas *types.Schemas) error {
|
||||||
filePath := strings.ToLower("zz_generated_" + addUnderscore(schema.ID) + ".go")
|
filePath := strings.ToLower("zz_generated_" + addUnderscore(schema.ID) + ".go")
|
||||||
output, err := os.Create(path.Join(outputDir, filePath))
|
output, err := os.Create(path.Join(outputDir, filePath))
|
||||||
@@ -141,6 +156,7 @@ func generateType(outputDir string, schema *types.Schema, schemas *types.Schemas
|
|||||||
"schema": schema,
|
"schema": schema,
|
||||||
"structFields": getTypeMap(schema, schemas),
|
"structFields": getTypeMap(schema, schemas),
|
||||||
"resourceActions": getResourceActions(schema, schemas),
|
"resourceActions": getResourceActions(schema, schemas),
|
||||||
|
"collectionActions": getCollectionActions(schema, schemas),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -41,12 +41,25 @@ type {{.schema.CodeName}}Operations interface {
|
|||||||
Create(opts *{{.schema.CodeName}}) (*{{.schema.CodeName}}, error)
|
Create(opts *{{.schema.CodeName}}) (*{{.schema.CodeName}}, error)
|
||||||
Update(existing *{{.schema.CodeName}}, updates interface{}) (*{{.schema.CodeName}}, error)
|
Update(existing *{{.schema.CodeName}}, updates interface{}) (*{{.schema.CodeName}}, error)
|
||||||
ByID(id string) (*{{.schema.CodeName}}, error)
|
ByID(id string) (*{{.schema.CodeName}}, error)
|
||||||
Delete(container *{{.schema.CodeName}}) error{{range $key, $value := .resourceActions}}
|
Delete(container *{{.schema.CodeName}}) error
|
||||||
|
{{range $key, $value := .resourceActions}}
|
||||||
{{if eq $value.Input "" }}
|
{{if eq $value.Input "" }}
|
||||||
Action{{$key | capitalize}} (*{{$.schema.CodeName}}) (*{{.Output | capitalize}}, error)
|
Action{{$key | capitalize}} (*{{$.schema.CodeName}}) (*{{.Output | capitalize}}, error)
|
||||||
{{else}}
|
{{else}}
|
||||||
Action{{$key | capitalize}} (*{{$.schema.CodeName}}, *{{$value.Input | capitalize}}) (*{{.Output | capitalize}}, error)
|
Action{{$key | capitalize}} (*{{$.schema.CodeName}}, *{{$value.Input | capitalize}}) (*{{.Output | capitalize}}, error)
|
||||||
{{end}}{{end}}
|
{{end}}
|
||||||
|
{{end}}
|
||||||
|
{{range $key, $value := .collectionActions}}
|
||||||
|
{{if (and (eq $value.Input "") (eq $value.Output ""))}}
|
||||||
|
Action{{$key | capitalize}} (resource *{{$.schema.CodeName}}) (error)
|
||||||
|
{{else if (and (eq $value.Input "") (ne $value.Output ""))}}
|
||||||
|
Action{{$key | capitalize}} (resource *{{$.schema.CodeName}}) (*{{.Output | capitalize}}, error)
|
||||||
|
{{else if (and (ne $value.Input "") (eq $value.Output ""))}}
|
||||||
|
Action{{$key | capitalize}} (resource *{{$.schema.CodeName}}, input *{{$value.Input | capitalize}}) (error)
|
||||||
|
{{else}}
|
||||||
|
Action{{$key | capitalize}} (resource *{{$.schema.CodeName}}, input *{{$value.Input | capitalize}}) (*{{.Output | capitalize}}, error)
|
||||||
|
{{end}}
|
||||||
|
{{end}}
|
||||||
}
|
}
|
||||||
|
|
||||||
func new{{.schema.CodeName}}Client(apiClient *Client) *{{.schema.CodeName}}Client {
|
func new{{.schema.CodeName}}Client(apiClient *Client) *{{.schema.CodeName}}Client {
|
||||||
@@ -109,4 +122,27 @@ func (c *{{.schema.CodeName}}Client) Delete(container *{{.schema.CodeName}}) err
|
|||||||
return resp, err
|
return resp, err
|
||||||
}
|
}
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
||||||
|
{{range $key, $value := .collectionActions}}
|
||||||
|
{{if (and (eq $value.Input "") (eq $value.Output ""))}}
|
||||||
|
func (c *{{$.schema.CodeName}}Client) Action{{$key | capitalize}} (resource *{{$.schema.CodeName}}) (error) {
|
||||||
|
err := c.apiClient.Ops.DoAction({{$.schema.CodeName}}Type, "{{$key}}", &resource.Resource, nil, nil)
|
||||||
|
return err
|
||||||
|
{{else if (and (eq $value.Input "") (ne $value.Output ""))}}
|
||||||
|
func (c *{{$.schema.CodeName}}Client) Action{{$key | capitalize}} (resource *{{$.schema.CodeName}}) (*{{.Output | capitalize}}, error) {
|
||||||
|
resp := &{{.Output | capitalize}}{}
|
||||||
|
err := c.apiClient.Ops.DoAction({{$.schema.CodeName}}Type, "{{$key}}", &resource.Resource, nil, resp)
|
||||||
|
return resp, err
|
||||||
|
{{else if (and (ne $value.Input "") (eq $value.Output ""))}}
|
||||||
|
func (c *{{$.schema.CodeName}}Client) Action{{$key | capitalize}} (resource *{{$.schema.CodeName}}, input *{{$value.Input | capitalize}}) (error) {
|
||||||
|
err := c.apiClient.Ops.DoAction({{$.schema.CodeName}}Type, "{{$key}}", &resource.Resource, input, nil)
|
||||||
|
return err
|
||||||
|
{{else}}
|
||||||
|
func (c *{{$.schema.CodeName}}Client) Action{{$key | capitalize}} (resource *{{$.schema.CodeName}}, input *{{$value.Input | capitalize}}) (*{{.Output | capitalize}}, error) {
|
||||||
|
resp := &{{.Output | capitalize}}{}
|
||||||
|
err := c.apiClient.Ops.DoAction({{$.schema.CodeName}}Type, "{{$key}}", &resource.Resource, input, resp)
|
||||||
|
return resp, err
|
||||||
|
{{end}}
|
||||||
|
}
|
||||||
|
{{end}}
|
||||||
{{end}}`
|
{{end}}`
|
||||||
|
Reference in New Issue
Block a user