Files
ziti/controller/model/authenticator.go
T
Andrew Martinez 3e5f08c99f adds cert authenticator extension endpoint
- adds endpoint POST /edge/management/v1/authenticator/{id}/extend
- adds endpoint POST /edge/management/v1/authenticator/{id}/extend-verify
- adds endpoint POST /edge/client/v1/authenticator/{id}/extend
- adds endpoint POST /edge/client/v1/authenticator/{id}/extend-verify
- add logic that allows a client endpoint to extend the valid period for
  their current certificate authenticator
- requires clients to use their existing client cetificate for extension
- requires clients to verify they have received the new public key
- allows clients to use a new private key if desired
- allows only 1st party certificate authenticators to extend
- adds authenticatorId to apiSession for persistence, model, api model
- add session cert to already authenticated session on extend
- removes empty test stub
2022-03-02 09:20:08 -05:00

100 lines
2.4 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 (
"crypto/x509"
"encoding/json"
"net/http"
)
type AuthProcessor interface {
CanHandle(method string) bool
Process(context AuthContext) (identityId string, authenticatorId string, err error)
}
type AuthRegistry interface {
Add(method AuthProcessor)
GetByMethod(method string) AuthProcessor
}
type AuthProcessorRegistryImpl struct {
processors []AuthProcessor
}
func (registry *AuthProcessorRegistryImpl) Add(processor AuthProcessor) {
registry.processors = append(registry.processors, processor)
}
func (registry *AuthProcessorRegistryImpl) GetByMethod(method string) AuthProcessor {
for _, processor := range registry.processors {
if processor.CanHandle(method) {
return processor
}
}
return nil
}
type AuthContext interface {
GetMethod() string
GetData() map[string]interface{}
GetCerts() []*x509.Certificate
GetHeaders() map[string]interface{}
}
type AuthContextHttp struct {
Method string
Data map[string]interface{}
Certs []*x509.Certificate
Headers map[string]interface{}
}
func NewAuthContextHttp(request *http.Request, method string, data interface{}) AuthContext {
//TODO: this is a giant hack to not deal w/ removing the AuthContext layer
sigh, _ := json.Marshal(data)
mapData := map[string]interface{}{}
_ = json.Unmarshal(sigh, &mapData)
headers := map[string]interface{}{}
for h, v := range request.Header {
headers[h] = v
}
return &AuthContextHttp{
Method: method,
Data: mapData,
Certs: request.TLS.PeerCertificates,
Headers: headers,
}
}
func (context *AuthContextHttp) GetMethod() string {
return context.Method
}
func (context *AuthContextHttp) GetData() map[string]interface{} {
return context.Data
}
func (context *AuthContextHttp) GetHeaders() map[string]interface{} {
return context.Headers
}
func (context *AuthContextHttp) GetCerts() []*x509.Certificate {
return context.Certs
}