Files
ziti/controller/model/config_model.go
T
Andrew M 3087972172 all conversion work
- remove old JSON schema, unsused code
- remove unused variables from base router functions
- rework all API entities
- rework all links
- fix lint issues
- adds error conversion logic
- update tests as needed
- fix up go test
- fix backwards compat w/ non json enroller
2020-06-09 14:11:23 -04:00

105 lines
3.2 KiB
Go

/*
Copyright NetFoundry, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package model
import (
"github.com/openziti/edge/controller/persistence"
"github.com/openziti/edge/controller/schema"
"github.com/openziti/fabric/controller/models"
"github.com/openziti/foundation/storage/boltz"
"github.com/openziti/foundation/validation"
"github.com/pkg/errors"
"github.com/xeipuuv/gojsonschema"
"go.etcd.io/bbolt"
"reflect"
)
type Config struct {
models.BaseEntity
Name string
TypeId string
Data map[string]interface{}
}
func (entity *Config) toBoltEntity(tx *bbolt.Tx, handler Handler) (boltz.Entity, error) {
if entity.TypeId != "" {
providedType := entity.TypeId
configTypeStore := handler.GetEnv().GetStores().ConfigType
if !configTypeStore.IsEntityPresent(tx, entity.TypeId) {
return nil, validation.NewFieldError("invalid config type", persistence.FieldConfigType, providedType)
}
}
if entity.TypeId == "" {
currentConfig, err := handler.GetEnv().GetHandlers().Config.readInTx(tx, entity.Id)
if err != nil {
return nil, err
}
entity.TypeId = currentConfig.TypeId
}
if configType, _ := handler.GetEnv().GetHandlers().ConfigType.readInTx(tx, entity.TypeId); configType != nil && len(configType.Schema) > 0 {
compileSchema, err := configType.GetCompiledSchema()
if err != nil {
return nil, err
}
jsonLoader := gojsonschema.NewGoLoader(entity.Data)
result, err := compileSchema.Validate(jsonLoader)
if err != nil {
return nil, err
}
if !result.Valid() {
return nil, schema.NewValidationErrors(result)
}
}
return &persistence.Config{
BaseExtEntity: *boltz.NewExtEntity(entity.Id, entity.Tags),
Name: entity.Name,
Type: entity.TypeId,
Data: entity.Data,
}, nil
}
func (entity *Config) toBoltEntityForCreate(tx *bbolt.Tx, handler Handler) (boltz.Entity, error) {
if entity.TypeId == "" {
return nil, validation.NewFieldError("config type must be specified", persistence.FieldConfigType, entity.TypeId)
}
return entity.toBoltEntity(tx, handler)
}
func (entity *Config) toBoltEntityForUpdate(tx *bbolt.Tx, handler Handler) (boltz.Entity, error) {
return entity.toBoltEntity(tx, handler)
}
func (entity *Config) toBoltEntityForPatch(tx *bbolt.Tx, handler Handler) (boltz.Entity, error) {
return entity.toBoltEntity(tx, handler)
}
func (entity *Config) fillFrom(_ Handler, _ *bbolt.Tx, boltEntity boltz.Entity) error {
boltConfig, ok := boltEntity.(*persistence.Config)
if !ok {
return errors.Errorf("unexpected type %v when filling model config", reflect.TypeOf(boltEntity))
}
entity.FillCommon(boltConfig)
entity.Name = boltConfig.Name
entity.TypeId = boltConfig.Type
entity.Data = boltConfig.Data
return nil
}