1
0
mirror of https://github.com/rancher/norman.git synced 2025-06-22 21:47:32 +00:00
norman/parse/builder/builder.go

356 lines
8.9 KiB
Go
Raw Normal View History

2017-11-11 04:44:02 +00:00
package builder
2017-10-16 02:23:15 +00:00
import (
"fmt"
"strings"
"github.com/rancher/norman/httperror"
2017-11-11 04:44:02 +00:00
"github.com/rancher/norman/types"
"github.com/rancher/norman/types/convert"
"github.com/rancher/norman/types/definition"
2017-10-16 02:23:15 +00:00
)
var (
Create = Operation("create")
Update = Operation("update")
Action = Operation("action")
2017-11-11 04:44:02 +00:00
List = Operation("list")
2017-10-16 02:23:15 +00:00
)
type Operation string
type Builder struct {
2018-01-17 23:33:05 +00:00
apiContext *types.APIContext
2017-11-11 04:44:02 +00:00
Version *types.APIVersion
Schemas *types.Schemas
RefValidator types.ReferenceValidator
2017-10-16 02:23:15 +00:00
}
2017-11-11 04:44:02 +00:00
func NewBuilder(apiRequest *types.APIContext) *Builder {
return &Builder{
2018-01-17 23:33:05 +00:00
apiContext: apiRequest,
2017-11-11 04:44:02 +00:00
Version: apiRequest.Version,
Schemas: apiRequest.Schemas,
RefValidator: apiRequest.ReferenceValidator,
}
}
func (b *Builder) Construct(schema *types.Schema, input map[string]interface{}, op Operation) (map[string]interface{}, error) {
2018-01-17 23:33:05 +00:00
result, err := b.copyFields(schema, input, op)
if err != nil {
return nil, err
}
if (op == Create || op == Update) && schema.Validator != nil {
if err := schema.Validator(b.apiContext, schema, result); err != nil {
return nil, err
}
}
return result, nil
2017-10-16 02:23:15 +00:00
}
2017-11-11 04:44:02 +00:00
func (b *Builder) copyInputs(schema *types.Schema, input map[string]interface{}, op Operation, result map[string]interface{}) error {
2017-10-16 02:23:15 +00:00
for fieldName, value := range input {
field, ok := schema.ResourceFields[fieldName]
if !ok {
continue
}
if !fieldMatchesOp(field, op) {
continue
}
wasNull := value == nil && (field.Nullable || field.Default == nil)
value, err := b.convert(field.Type, value, op)
if err != nil {
2017-11-21 20:46:30 +00:00
return httperror.WrapFieldAPIError(err, httperror.InvalidFormat, fieldName, err.Error())
2017-10-16 02:23:15 +00:00
}
if value != nil || wasNull {
2017-11-11 04:44:02 +00:00
if op != List {
if slice, ok := value.([]interface{}); ok {
for _, sliceValue := range slice {
if sliceValue == nil {
2017-11-21 20:46:30 +00:00
return httperror.NewFieldAPIError(httperror.NotNullable, fieldName, "Individual array values can not be null")
2017-11-11 04:44:02 +00:00
}
if err := checkFieldCriteria(fieldName, field, sliceValue); err != nil {
return err
}
2017-10-16 02:23:15 +00:00
}
2017-11-11 04:44:02 +00:00
} else {
if err := checkFieldCriteria(fieldName, field, value); err != nil {
2017-10-16 02:23:15 +00:00
return err
}
}
}
result[fieldName] = value
2017-11-11 04:44:02 +00:00
if op == List && field.Type == "date" && value != "" {
ts, err := convert.ToTimestamp(value)
if err == nil {
result[fieldName+"TS"] = ts
}
}
2017-10-16 02:23:15 +00:00
}
}
2017-11-21 20:46:30 +00:00
if op == List {
2017-12-05 16:21:12 +00:00
if !convert.IsEmpty(input["type"]) {
result["type"] = input["type"]
}
if !convert.IsEmpty(input["id"]) {
result["id"] = input["id"]
}
2017-11-21 20:46:30 +00:00
}
2017-10-16 02:23:15 +00:00
return nil
}
2017-11-11 04:44:02 +00:00
func (b *Builder) checkDefaultAndRequired(schema *types.Schema, input map[string]interface{}, op Operation, result map[string]interface{}) error {
2017-10-16 02:23:15 +00:00
for fieldName, field := range schema.ResourceFields {
_, hasKey := result[fieldName]
if op == Create && !hasKey && field.Default != nil {
result[fieldName] = field.Default
}
_, hasKey = result[fieldName]
if op == Create && fieldMatchesOp(field, Create) && field.Required {
if !hasKey {
2017-11-21 20:46:30 +00:00
return httperror.NewFieldAPIError(httperror.MissingRequired, fieldName, "")
2017-10-16 02:23:15 +00:00
}
2017-11-11 04:44:02 +00:00
if definition.IsArrayType(field.Type) {
2017-10-16 02:23:15 +00:00
slice, err := b.convertArray(fieldName, result[fieldName], op)
if err != nil {
return err
}
if len(slice) == 0 {
2017-11-21 20:46:30 +00:00
return httperror.NewFieldAPIError(httperror.MissingRequired, fieldName, "")
2017-10-16 02:23:15 +00:00
}
}
}
2017-11-29 21:27:02 +00:00
if op == List && fieldMatchesOp(field, List) && definition.IsReferenceType(field.Type) && !hasKey {
result[fieldName] = nil
}
2017-10-16 02:23:15 +00:00
}
return nil
}
2017-11-11 04:44:02 +00:00
func (b *Builder) copyFields(schema *types.Schema, input map[string]interface{}, op Operation) (map[string]interface{}, error) {
2017-10-16 02:23:15 +00:00
result := map[string]interface{}{}
if err := b.copyInputs(schema, input, op, result); err != nil {
return nil, err
}
return result, b.checkDefaultAndRequired(schema, input, op, result)
}
2017-11-11 04:44:02 +00:00
func checkFieldCriteria(fieldName string, field types.Field, value interface{}) error {
2017-10-16 02:23:15 +00:00
numVal, isNum := value.(int64)
strVal := ""
hasStrVal := false
if value == nil && field.Default != nil {
value = field.Default
}
if value != nil {
hasStrVal = true
strVal = fmt.Sprint(value)
}
2017-11-21 20:46:30 +00:00
if (value == nil || value == "") && !field.Nullable {
if field.Default == nil {
return httperror.NewFieldAPIError(httperror.NotNullable, fieldName, "")
}
2017-10-16 02:23:15 +00:00
}
if isNum {
if field.Min != nil && numVal < *field.Min {
2017-11-21 20:46:30 +00:00
return httperror.NewFieldAPIError(httperror.MinLimitExceeded, fieldName, "")
2017-10-16 02:23:15 +00:00
}
if field.Max != nil && numVal > *field.Max {
2017-11-21 20:46:30 +00:00
return httperror.NewFieldAPIError(httperror.MaxLimitExceeded, fieldName, "")
2017-10-16 02:23:15 +00:00
}
}
if hasStrVal {
2017-11-11 04:44:02 +00:00
if field.MinLength != nil && int64(len(strVal)) < *field.MinLength {
2017-11-21 20:46:30 +00:00
return httperror.NewFieldAPIError(httperror.MinLengthExceeded, fieldName, "")
2017-10-16 02:23:15 +00:00
}
2017-11-11 04:44:02 +00:00
if field.MaxLength != nil && int64(len(strVal)) > *field.MaxLength {
2017-11-21 20:46:30 +00:00
return httperror.NewFieldAPIError(httperror.MaxLengthExceeded, fieldName, "")
2017-10-16 02:23:15 +00:00
}
}
if len(field.Options) > 0 {
if hasStrVal || !field.Nullable {
found := false
for _, option := range field.Options {
if strVal == option {
found = true
break
}
}
if !found {
2018-01-03 02:18:19 +00:00
return httperror.NewFieldAPIError(httperror.InvalidOption, fieldName, "")
2017-10-16 02:23:15 +00:00
}
}
}
if len(field.ValidChars) > 0 && hasStrVal {
for _, c := range strVal {
if !strings.ContainsRune(field.ValidChars, c) {
2018-01-03 02:18:19 +00:00
return httperror.NewFieldAPIError(httperror.InvalidCharacters, fieldName, "")
2017-10-16 02:23:15 +00:00
}
}
}
if len(field.InvalidChars) > 0 && hasStrVal {
if strings.ContainsAny(strVal, field.InvalidChars) {
2018-01-03 02:18:19 +00:00
return httperror.NewFieldAPIError(httperror.InvalidCharacters, fieldName, "")
2017-10-16 02:23:15 +00:00
}
}
return nil
}
func (b *Builder) convert(fieldType string, value interface{}, op Operation) (interface{}, error) {
if value == nil {
return value, nil
}
switch {
2017-11-11 04:44:02 +00:00
case definition.IsMapType(fieldType):
return b.convertMap(fieldType, value, op)
case definition.IsArrayType(fieldType):
return b.convertArray(fieldType, value, op)
case definition.IsReferenceType(fieldType):
2017-10-16 02:23:15 +00:00
return b.convertReferenceType(fieldType, value)
}
switch fieldType {
case "json":
return value, nil
case "date":
2017-11-21 20:46:30 +00:00
v := convert.ToString(value)
if v == "" {
return nil, nil
}
return v, nil
2017-10-16 02:23:15 +00:00
case "boolean":
2017-11-11 04:44:02 +00:00
return convert.ToBool(value), nil
2017-10-16 02:23:15 +00:00
case "enum":
2017-11-11 04:44:02 +00:00
return convert.ToString(value), nil
2017-10-16 02:23:15 +00:00
case "int":
2017-11-11 04:44:02 +00:00
return convert.ToNumber(value)
2017-10-16 02:23:15 +00:00
case "password":
2017-11-11 04:44:02 +00:00
return convert.ToString(value), nil
2017-10-16 02:23:15 +00:00
case "string":
2017-11-11 04:44:02 +00:00
return convert.ToString(value), nil
2017-12-29 22:06:36 +00:00
case "dnsLabel":
return convert.ToString(value), nil
case "intOrString":
num, err := convert.ToNumber(value)
if err == nil {
return num, nil
}
return convert.ToString(value), nil
2017-12-23 06:11:55 +00:00
case "base64":
return convert.ToString(value), nil
2017-10-16 02:23:15 +00:00
case "reference":
2017-11-11 04:44:02 +00:00
return convert.ToString(value), nil
2017-10-16 02:23:15 +00:00
}
return b.convertType(fieldType, value, op)
}
func (b *Builder) convertType(fieldType string, value interface{}, op Operation) (interface{}, error) {
2017-11-11 04:44:02 +00:00
schema := b.Schemas.Schema(b.Version, fieldType)
2017-10-16 02:23:15 +00:00
if schema == nil {
2017-11-21 20:46:30 +00:00
return nil, httperror.NewAPIError(httperror.InvalidType, "Failed to find type "+fieldType)
2017-10-16 02:23:15 +00:00
}
mapValue, ok := value.(map[string]interface{})
if !ok {
2017-11-21 20:46:30 +00:00
return nil, httperror.NewAPIError(httperror.InvalidFormat, fmt.Sprintf("Value can not be converted to type %s: %v", fieldType, value))
2017-10-16 02:23:15 +00:00
}
return b.Construct(schema, mapValue, op)
}
func (b *Builder) convertReferenceType(fieldType string, value interface{}) (string, error) {
2017-11-11 04:44:02 +00:00
subType := definition.SubType(fieldType)
strVal := convert.ToString(value)
if b.RefValidator != nil && !b.RefValidator.Validate(subType, strVal) {
2017-11-21 20:46:30 +00:00
return "", httperror.NewAPIError(httperror.InvalidReference, fmt.Sprintf("Not found type: %s id: %s", subType, strVal))
2017-10-16 02:23:15 +00:00
}
return strVal, nil
}
func (b *Builder) convertArray(fieldType string, value interface{}, op Operation) ([]interface{}, error) {
2017-11-11 04:44:02 +00:00
if strSliceValue, ok := value.([]string); ok {
// Form data will be []string
2017-11-29 21:27:02 +00:00
var result []interface{}
2017-11-11 04:44:02 +00:00
for _, value := range strSliceValue {
result = append(result, value)
}
return result, nil
}
2017-10-16 02:23:15 +00:00
sliceValue, ok := value.([]interface{})
if !ok {
return nil, nil
}
result := []interface{}{}
2017-11-11 04:44:02 +00:00
subType := definition.SubType(fieldType)
2017-10-16 02:23:15 +00:00
for _, value := range sliceValue {
val, err := b.convert(subType, value, op)
if err != nil {
return nil, err
}
result = append(result, val)
}
return result, nil
}
func (b *Builder) convertMap(fieldType string, value interface{}, op Operation) (map[string]interface{}, error) {
mapValue, ok := value.(map[string]interface{})
if !ok {
return nil, nil
}
result := map[string]interface{}{}
2017-11-11 04:44:02 +00:00
subType := definition.SubType(fieldType)
2017-10-16 02:23:15 +00:00
for key, value := range mapValue {
val, err := b.convert(subType, value, op)
if err != nil {
2017-11-21 20:46:30 +00:00
return nil, httperror.WrapAPIError(err, httperror.InvalidFormat, err.Error())
2017-10-16 02:23:15 +00:00
}
result[key] = val
}
return result, nil
}
2017-11-11 04:44:02 +00:00
func fieldMatchesOp(field types.Field, op Operation) bool {
2017-10-16 02:23:15 +00:00
switch op {
case Create:
return field.Create
case Update:
return field.Update
2017-11-11 04:44:02 +00:00
case List:
return !field.WriteOnly
2017-10-16 02:23:15 +00:00
default:
return false
}
}