Files
ziti/controller/model/env.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

51 lines
1.5 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/config"
"github.com/openziti/edge/controller/persistence"
"github.com/openziti/edge/internal/cert"
"github.com/openziti/edge/internal/jwt"
"github.com/openziti/fabric/controller/network"
"github.com/xeipuuv/gojsonschema"
)
type Env interface {
GetHandlers() *Handlers
GetConfig() *config.Config
GetEnrollmentJwtGenerator() jwt.EnrollmentGenerator
GetDbProvider() persistence.DbProvider
GetStores() *persistence.Stores
GetAuthRegistry() AuthRegistry
GetEnrollRegistry() EnrollmentRegistry
GetApiClientCsrSigner() cert.Signer
GetApiServerCsrSigner() cert.Signer
GetControlClientCsrSigner() cert.Signer
GetHostController() HostController
IsEdgeRouterOnline(id string) bool
}
type HostController interface {
GetNetwork() *network.Network
}
type Schemas interface {
GetEnrollErPost() *gojsonschema.Schema
GetEnrollUpdbPost() *gojsonschema.Schema
}