You've already forked docker-ldap-change-password-web-ui
Parameters for password validation
This commit is contained in:
@ -9,6 +9,14 @@ func getTitle() string {
|
||||
return envStr("LPW_TITLE", "Change your password on example.org")
|
||||
}
|
||||
|
||||
func getPattern() string {
|
||||
return envStr("LPW_PATTERN", ".{8,}")
|
||||
}
|
||||
|
||||
func getPatternInfo() string {
|
||||
return envStr("LPW_PATTERN_INFO", "Password must be at least 8 characters long.")
|
||||
}
|
||||
|
||||
func envStr(key, defaultValue string) string {
|
||||
val := os.Getenv(key)
|
||||
if val != "" {
|
||||
|
25
app/web.go
25
app/web.go
@ -43,9 +43,11 @@ func (h *RegexpHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||
}
|
||||
|
||||
type pageData struct {
|
||||
Title string
|
||||
Username string
|
||||
Alerts map[string]string
|
||||
Title string
|
||||
Pattern string
|
||||
PatternInfo string
|
||||
Username string
|
||||
Alerts map[string]string
|
||||
}
|
||||
|
||||
// ServeAssets : Serves the static assets
|
||||
@ -55,7 +57,7 @@ func ServeAssets(w http.ResponseWriter, req *http.Request) {
|
||||
|
||||
// ServeIndex : Serves index page on GET request
|
||||
func ServeIndex(w http.ResponseWriter, req *http.Request) {
|
||||
p := &pageData{Title: getTitle()}
|
||||
p := &pageData{Title: getTitle(), Pattern: getPattern(), PatternInfo: getPatternInfo()}
|
||||
t, e := template.ParseFiles(path.Join("templates", "index.html"))
|
||||
if e != nil {
|
||||
log.Printf("Error parsing file %v\n", e)
|
||||
@ -76,23 +78,28 @@ func ChangePassword(w http.ResponseWriter, req *http.Request) {
|
||||
alerts := map[string]string{}
|
||||
|
||||
if len(username) < 1 || username[0] == "" {
|
||||
alerts["error"] = "Username not specified.<br/>"
|
||||
alerts["error"] = "Username not specified."
|
||||
} else {
|
||||
un = username[0]
|
||||
}
|
||||
if len(oldPassword) < 1 || oldPassword[0] == "" {
|
||||
alerts["error"] = alerts["error"] + "Old password not specified.<br/>"
|
||||
alerts["error"] = alerts["error"] + "Old password not specified."
|
||||
}
|
||||
if len(newPassword) < 1 || newPassword[0] == "" {
|
||||
alerts["error"] = alerts["error"] + "New password not specified.<br/>"
|
||||
alerts["error"] = alerts["error"] + "New password not specified."
|
||||
}
|
||||
if len(confirmPassword) < 1 || confirmPassword[0] == "" {
|
||||
alerts["error"] = alerts["error"] + "Confirmation password not specified.<br/>"
|
||||
alerts["error"] = alerts["error"] + "Confirmation password not specified."
|
||||
}
|
||||
|
||||
if len(confirmPassword) >= 1 && len(newPassword) >= 1 && strings.Compare(newPassword[0], confirmPassword[0]) != 0 {
|
||||
alerts["error"] = alerts["error"] + "New and confirmation passwords does not match.<br/>"
|
||||
alerts["error"] = alerts["error"] + "New and confirmation passwords does not match."
|
||||
}
|
||||
|
||||
if m, _ := regexp.MatchString(getPattern(), newPassword[0]); !m {
|
||||
alerts["error"] = alerts["error"] + fmt.Sprintf("%s", getPatternInfo())
|
||||
}
|
||||
|
||||
if len(alerts) == 0 {
|
||||
client := NewLDAPClient()
|
||||
if err := client.ModifyPassword(un, oldPassword[0], newPassword[0]); err != nil {
|
||||
|
Reference in New Issue
Block a user