zrok/sdk/config.go

39 lines
799 B
Go
Raw Normal View History

package sdk
2022-08-15 23:29:31 +02:00
import "github.com/pkg/errors"
2022-08-15 23:29:31 +02:00
const ZrokProxyConfig = "zrok.proxy.v1"
type ProxyConfig struct {
AuthScheme AuthScheme `json:"auth_scheme"`
BasicAuth *BasicAuth `json:"basic_auth"`
OauthAuth *OauthAuth `json:"oauth"`
2022-08-15 23:29:31 +02:00
}
2022-08-16 17:27:31 +02:00
type BasicAuth struct {
2022-08-16 17:43:17 +02:00
Users []*AuthUser `json:"users"`
2022-08-16 17:27:31 +02:00
}
type AuthUser struct {
2022-08-16 17:43:17 +02:00
Username string `json:"username"`
Password string `json:"password"`
2022-08-16 17:27:31 +02:00
}
type OauthAuth struct {
Provider string `json:"provider"`
EmailDomains []string `json:"email_domains"`
}
func ParseAuthScheme(authScheme string) (AuthScheme, error) {
switch authScheme {
case string(None):
return None, nil
case string(Basic):
return Basic, nil
case string(Oauth):
return Oauth, nil
default:
return None, errors.Errorf("unknown auth scheme '%v'", authScheme)
}
}