You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wg-access-server/pkg/authnz/authconfig/gitlab.go

28 lines
709 B
Go

package authconfig
import "github.com/place1/wg-access-server/pkg/authnz/authruntime"
type GitlabConfig struct {
Name string `yaml:"name"`
BaseURL string `yaml:"baseURL"`
ClientID string `yaml:"clientID"`
ClientSecret string `yaml:"clientSecret"`
RedirectURL string `yaml:"redirectURL"`
EmailDomains []string `yaml:"emailDomains"`
}
func (c *GitlabConfig) Provider() *authruntime.Provider {
o := OIDCConfig{
Name: c.Name,
Issuer: c.BaseURL,
ClientID: c.ClientID,
ClientSecret: c.ClientSecret,
RedirectURL: c.RedirectURL,
Scopes: []string{"openid"},
EmailDomains: c.EmailDomains,
}
p := o.Provider()
p.Type = "Gitlab"
return p
}