mirror of
https://github.com/openziti/zrok.git
synced 2024-11-25 09:33:43 +01:00
31 lines
606 B
Go
31 lines
606 B
Go
package sdk
|
|
|
|
import "github.com/pkg/errors"
|
|
|
|
const ZrokProxyConfig = "zrok.proxy.v1"
|
|
|
|
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)
|
|
}
|
|
}
|