mirror of
https://github.com/openziti/zrok.git
synced 2024-11-07 16:54:23 +01:00
38 lines
698 B
Go
38 lines
698 B
Go
package model
|
|
|
|
import "github.com/pkg/errors"
|
|
|
|
const ZrokProxyConfig = "zrok.proxy.v1"
|
|
|
|
type AuthScheme string
|
|
|
|
const (
|
|
None AuthScheme = "none"
|
|
Basic AuthScheme = "basic"
|
|
)
|
|
|
|
type ProxyConfig struct {
|
|
AuthScheme AuthScheme `json:"auth_scheme"`
|
|
BasicAuth *BasicAuth `json:"basic_auth"`
|
|
}
|
|
|
|
type BasicAuth struct {
|
|
Users []*AuthUser `json:"users"`
|
|
}
|
|
|
|
type AuthUser struct {
|
|
Username string `json:"username"`
|
|
Password string `json:"password"`
|
|
}
|
|
|
|
func ParseAuthScheme(authScheme string) (AuthScheme, error) {
|
|
switch authScheme {
|
|
case string(None):
|
|
return None, nil
|
|
case string(Basic):
|
|
return Basic, nil
|
|
default:
|
|
return None, errors.Errorf("unknown auth scheme '%v'", authScheme)
|
|
}
|
|
}
|