Update config to support OIDC and oauth2
This commit is contained in:
parent
430f46ffee
commit
4c1b402137
8 changed files with 92 additions and 42 deletions
|
@ -3,6 +3,7 @@ package config
|
|||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/spf13/viper"
|
||||
|
@ -86,13 +87,14 @@ type EmailConfig struct {
|
|||
}
|
||||
|
||||
type OAuth2Config struct {
|
||||
ClientID string `mapstructure:"client_id" yaml:"client_id"`
|
||||
ClientSecret string `mapstructure:"client_secret" yaml:"client_secret"`
|
||||
RedirectURL string `mapstructure:"redirect_url" yaml:"redirect_url"`
|
||||
Scopes []string
|
||||
AuthURL string `mapstructure:"auth_url" yaml:"auth_url"`
|
||||
TokenURL string `mapstructure:"token_url" yaml:"token_url"`
|
||||
UserInfoURL string `mapstructure:"user_info_url" yaml:"user_info_url"`
|
||||
ClientID string `mapstructure:"client_id" yaml:"client_id"`
|
||||
ClientSecret string `mapstructure:"client_secret" yaml:"client_secret"`
|
||||
RedirectURL string `mapstructure:"redirect_url" yaml:"redirect_url"`
|
||||
Scopes []string `mapstructure:"scopes" yaml:"scopes"`
|
||||
AuthURL string `mapstructure:"auth_url" yaml:"auth_url"`
|
||||
TokenURL string `mapstructure:"token_url" yaml:"token_url"`
|
||||
UserInfoURL string `mapstructure:"user_info_url" yaml:"user_info_url"`
|
||||
Name string `mapstructure:"name" yaml:"name"`
|
||||
}
|
||||
|
||||
func NewConfig() *Config {
|
||||
|
@ -138,6 +140,7 @@ func LoadConfig() *Config {
|
|||
// get logger and log the current environment:
|
||||
fmt.Printf("--ConfigLoad config for environment: %s ", os.Getenv("DT_ENV"))
|
||||
viper.SetEnvPrefix("DT")
|
||||
viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
|
||||
viper.AutomaticEnv()
|
||||
|
||||
viper.AddConfigPath("./config")
|
||||
|
@ -155,11 +158,11 @@ func LoadConfig() *Config {
|
|||
panic(err)
|
||||
}
|
||||
fmt.Printf("--ConfigLoad name : %s ", config.Name)
|
||||
panic(config.OAuth2Config.ClientID)
|
||||
|
||||
// bind all the environment variables to the config:
|
||||
|
||||
configEnvironmentOverrides(&config)
|
||||
panic(config.OAuth2Config.ClientID)
|
||||
return &config
|
||||
|
||||
// return LocalConfig()
|
||||
|
|
|
@ -14,8 +14,8 @@ jwt:
|
|||
max_refresh: 168h
|
||||
server:
|
||||
port: 2021
|
||||
read_timeout: 2s
|
||||
write_timeout: 1s
|
||||
read_timeout: 10s
|
||||
write_timeout: 10s
|
||||
rate_period: 60s
|
||||
rate_limit: 300
|
||||
cors_allow_origins:
|
||||
|
|
|
@ -42,3 +42,4 @@ oauth2:
|
|||
token_url:
|
||||
user_info_url:
|
||||
redirect_url:
|
||||
name:
|
Loading…
Add table
Add a link
Reference in a new issue