Files
ziti/controller/model/env.go
T
Andrew Martinez a3789c063a adds support of API Session Certificates
- adds ability for any authenticated API Session to create ephemeral
 certificates
- allows UPDB session connection
- adds create/delete/read of current api session certificates
- add session cert pem result on create and detail
- fixes ER not updating sessions with new certs from API session
- fixes naming of session vs apiSession on members, functions, etc
- organizes ER state manager functions into apiSession vs session
- adds api session ids to api sessions and sessions sent from the
  controller to ERs
- ensure api and ns fingerprints are the same
- filter api session certs by valid periods
- clarify fingerprint func naming
2021-01-06 09:42:57 -05:00

54 lines
1.6 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/openziti/foundation/metrics"
"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
GetMetricsRegistry() metrics.Registry
GetFingerprintGenerator() cert.FingerprintGenerator
}
type HostController interface {
GetNetwork() *network.Network
}
type Schemas interface {
GetEnrollErPost() *gojsonschema.Schema
GetEnrollUpdbPost() *gojsonschema.Schema
}