Make auth parameters optional
This commit is contained in:
parent
748e4acfb6
commit
aabf0843ab
|
@ -44,18 +44,32 @@ func addConfigFlags(flags *pflag.FlagSet) {
|
||||||
flags.Bool("branding.disableExternal", false, "disable external links such as GitHub links")
|
flags.Bool("branding.disableExternal", false, "disable external links such as GitHub links")
|
||||||
}
|
}
|
||||||
|
|
||||||
func getAuthentication(flags *pflag.FlagSet, defaults ...*settings.Settings) (settings.AuthMethod, auth.Auther) {
|
func getAuthentication(flags *pflag.FlagSet, defaults ...interface{}) (settings.AuthMethod, auth.Auther) {
|
||||||
method := settings.AuthMethod(mustGetString(flags, "auth.method"))
|
method := settings.AuthMethod(mustGetString(flags, "auth.method"))
|
||||||
if len(defaults) > 0 {
|
|
||||||
method = defaults[0].AuthMethod
|
var defaultAuther map[string]interface{}
|
||||||
|
for _, arg := range defaults {
|
||||||
|
switch def := arg.(type) {
|
||||||
|
case *settings.Settings:
|
||||||
|
method = settings.AuthMethod(def.AuthMethod)
|
||||||
|
case auth.Auther:
|
||||||
|
ms, _ := json.Marshal(def)
|
||||||
|
json.Unmarshal(ms, &defaultAuther)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var auther auth.Auther
|
var auther auth.Auther
|
||||||
if method == auth.MethodProxyAuth {
|
if method == auth.MethodProxyAuth {
|
||||||
header := mustGetString(flags, "auth.header")
|
header := mustGetString(flags, "auth.header")
|
||||||
|
|
||||||
|
if header == "" {
|
||||||
|
header = defaultAuther["header"].(string)
|
||||||
|
}
|
||||||
|
|
||||||
if header == "" {
|
if header == "" {
|
||||||
panic(nerrors.New("you must set the flag 'auth.header' for method 'proxy'"))
|
panic(nerrors.New("you must set the flag 'auth.header' for method 'proxy'"))
|
||||||
}
|
}
|
||||||
|
|
||||||
auther = &auth.ProxyAuth{Header: header}
|
auther = &auth.ProxyAuth{Header: header}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -70,6 +84,16 @@ func getAuthentication(flags *pflag.FlagSet, defaults ...*settings.Settings) (se
|
||||||
key := mustGetString(flags, "recaptcha.key")
|
key := mustGetString(flags, "recaptcha.key")
|
||||||
secret := mustGetString(flags, "recaptcha.secret")
|
secret := mustGetString(flags, "recaptcha.secret")
|
||||||
|
|
||||||
|
if key == "" {
|
||||||
|
kmap := defaultAuther["recaptcha"].(map[string]interface{})
|
||||||
|
key = kmap["key"].(string)
|
||||||
|
}
|
||||||
|
|
||||||
|
if secret == "" {
|
||||||
|
smap := defaultAuther["recaptcha"].(map[string]interface{})
|
||||||
|
secret = smap["secret"].(string)
|
||||||
|
}
|
||||||
|
|
||||||
if key == "" || secret == "" {
|
if key == "" || secret == "" {
|
||||||
panic(nerrors.New("you must set the flag 'recaptcha.key' and 'recaptcha.secret' for method 'json'"))
|
panic(nerrors.New("you must set the flag 'recaptcha.key' and 'recaptcha.secret' for method 'json'"))
|
||||||
}
|
}
|
||||||
|
|
|
@ -72,7 +72,7 @@ you want to change. Other options will remain unchanged.`,
|
||||||
auther, err = d.store.Auth.Get(set.AuthMethod)
|
auther, err = d.store.Auth.Get(set.AuthMethod)
|
||||||
checkErr(err)
|
checkErr(err)
|
||||||
// check if there are new flags for existing auth method
|
// check if there are new flags for existing auth method
|
||||||
set.AuthMethod, auther = getAuthentication(flags, set)
|
set.AuthMethod, auther = getAuthentication(flags, set, auther)
|
||||||
err = d.store.Auth.Save(auther)
|
err = d.store.Auth.Save(auther)
|
||||||
checkErr(err)
|
checkErr(err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue