mirror of
https://github.com/goharbor/harbor.git
synced 2025-04-06 03:56:13 +02:00
if password is not provided read it from config when calling ping ldap API
This commit is contained in:
parent
ed1cad0ba8
commit
12847f90d1
@ -16,6 +16,7 @@
|
|||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"strings"
|
"strings"
|
||||||
@ -65,6 +66,22 @@ func (l *LdapAPI) Ping() {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
l.DecodeJSONReqAndValidate(&ldapConfs)
|
l.DecodeJSONReqAndValidate(&ldapConfs)
|
||||||
|
v := map[string]interface{}{}
|
||||||
|
if err := json.Unmarshal(l.Ctx.Input.RequestBody,
|
||||||
|
&v); err != nil {
|
||||||
|
log.Errorf("failed to unmarshal LDAP server settings: %v", err)
|
||||||
|
l.RenderError(http.StatusInternalServerError, "")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if _, ok := v["ldap_search_password"]; !ok {
|
||||||
|
settings, err := ldapUtils.GetSystemLdapConf()
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("Can't load system configuration, error: %v", err)
|
||||||
|
l.RenderError(http.StatusInternalServerError, fmt.Sprintf("can't load system configuration: %v", err))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
ldapConfs.LdapSearchPassword = settings.LdapSearchPassword
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ldapConfs, err = ldapUtils.ValidateLdapConf(ldapConfs)
|
ldapConfs, err = ldapUtils.ValidateLdapConf(ldapConfs)
|
||||||
|
Loading…
Reference in New Issue
Block a user