2016-12-29 20:02:06 +00:00
|
|
|
/*
|
|
|
|
Copyright 2017 The Kubernetes Authors.
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
http://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 resolver
|
|
|
|
|
|
|
|
import (
|
2017-07-16 19:19:59 +00:00
|
|
|
api "k8s.io/api/core/v1"
|
2016-12-29 20:02:06 +00:00
|
|
|
|
|
|
|
"k8s.io/ingress/core/pkg/ingress/defaults"
|
|
|
|
)
|
|
|
|
|
|
|
|
// DefaultBackend has a method that returns the backend
|
|
|
|
// that must be used as default
|
|
|
|
type DefaultBackend interface {
|
|
|
|
GetDefaultBackend() defaults.Backend
|
|
|
|
}
|
|
|
|
|
2017-02-05 22:41:05 +00:00
|
|
|
// Secret has a method that searches for secrets contenating
|
2016-12-29 20:02:06 +00:00
|
|
|
// the namespace and name using a the character /
|
|
|
|
type Secret interface {
|
|
|
|
GetSecret(string) (*api.Secret, error)
|
|
|
|
}
|
|
|
|
|
2017-01-10 12:16:18 +00:00
|
|
|
// AuthCertificate resolves a given secret name into an SSL certificate.
|
2016-12-29 20:02:06 +00:00
|
|
|
// The secret must contain 3 keys named:
|
2017-01-10 12:16:18 +00:00
|
|
|
// ca.crt: contains the certificate chain used for authentication
|
2016-12-29 20:02:06 +00:00
|
|
|
type AuthCertificate interface {
|
2017-01-10 12:16:18 +00:00
|
|
|
GetAuthCertificate(string) (*AuthSSLCert, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AuthSSLCert contains the necessary information to do certificate based
|
|
|
|
// authentication of an ingress location
|
|
|
|
type AuthSSLCert struct {
|
|
|
|
// Secret contains the name of the secret this was fetched from
|
|
|
|
Secret string `json:"secret"`
|
|
|
|
// CAFileName contains the path to the secrets 'ca.crt'
|
|
|
|
CAFileName string `json:"caFilename"`
|
|
|
|
// PemSHA contains the SHA1 hash of the 'tls.crt' value
|
|
|
|
PemSHA string `json:"pemSha"`
|
2016-12-29 20:02:06 +00:00
|
|
|
}
|
2017-06-14 21:33:12 +00:00
|
|
|
|
|
|
|
func (asslc1 *AuthSSLCert) Equal(assl2 *AuthSSLCert) bool {
|
|
|
|
if asslc1.Secret != assl2.Secret {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if asslc1.CAFileName != assl2.CAFileName {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if asslc1.PemSHA != assl2.PemSHA {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|