zrok/model/config.go

38 lines
698 B
Go
Raw Normal View History

2022-08-15 23:29:31 +02:00
package model
import "github.com/pkg/errors"
2022-08-15 23:29:31 +02:00
const ZrokProxyConfig = "zrok.proxy.v1"
type AuthScheme string
const (
None AuthScheme = "none"
Basic AuthScheme = "basic"
2022-08-15 23:29:31 +02:00
)
type ProxyConfig struct {
AuthScheme AuthScheme `json:"auth_scheme"`
BasicAuth *BasicAuth `json:"basic_auth"`
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
}
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)
}
}