Factoring the model user and correcting password
This commit is contained in:
parent
46bd43d52b
commit
25522b81fb
5 changed files with 77 additions and 137 deletions
2
Makefile
2
Makefile
|
@ -1,5 +1,5 @@
|
|||
BIN=guichet
|
||||
SRC=main.go ssha.go profile.go admin.go invite.go directory.go utils.go picture.go login.go config.go http-utils.go home.go
|
||||
SRC=main.go ssha.go profile.go admin.go invite.go directory.go utils.go picture.go login.go config.go http-utils.go home.go model-user.go
|
||||
DOCKER=lxpz/guichet_amd64
|
||||
|
||||
all: $(BIN)
|
||||
|
|
4
admin.go
4
admin.go
|
@ -1031,7 +1031,7 @@ func handleAdminCreate(w http.ResponseWriter, r *http.Request) {
|
|||
} else if len(data.IdValue) == 0 {
|
||||
data.Error = "No identifier specified"
|
||||
} else {
|
||||
newUser := NewUser{
|
||||
newUser := User{
|
||||
DN: data.IdType + "=" + data.IdValue + "," + super_dn,
|
||||
}
|
||||
// dn := data.IdType + "=" + data.IdValue + "," + super_dn
|
||||
|
@ -1076,7 +1076,7 @@ func handleAdminCreate(w http.ResponseWriter, r *http.Request) {
|
|||
// req.Attribute("description", []string{data.Description})
|
||||
}
|
||||
|
||||
addNewUser(newUser, config, login.conn)
|
||||
add(newUser, config, login.conn)
|
||||
|
||||
// err := login.conn.Add(req)
|
||||
// // log.Printf(fmt.Sprintf("899: %v",err))
|
||||
|
|
|
@ -147,7 +147,7 @@ func handleNewAccount(w http.ResponseWriter, r *http.Request, l *ldap.Conn, invi
|
|||
if r.Method == "POST" {
|
||||
r.ParseForm()
|
||||
|
||||
newUser := NewUser{}
|
||||
newUser := User{}
|
||||
// login := checkLogin(w, r)
|
||||
|
||||
newUser.CN = fmt.Sprintf("%s@%s", strings.TrimSpace(strings.Join(r.Form["username"], "")), "lesgv.com")
|
||||
|
@ -167,7 +167,11 @@ func handleNewAccount(w http.ResponseWriter, r *http.Request, l *ldap.Conn, invi
|
|||
} else {
|
||||
newUser.Password = password2
|
||||
l.Bind(config.NewUserDN, config.NewUserPassword)
|
||||
data.Success = addNewUser(newUser, config, l)
|
||||
err := add(newUser, config, l)
|
||||
if err != nil {
|
||||
data.Success = false
|
||||
data.ErrorMessage = err.Error()
|
||||
}
|
||||
http.Redirect(w, r, "/admin/ldap/"+newUser.DN, http.StatusFound)
|
||||
}
|
||||
|
||||
|
|
47
profile.go
47
profile.go
|
@ -17,6 +17,7 @@ type ProfileTplData struct {
|
|||
Surname string
|
||||
Description string
|
||||
}
|
||||
|
||||
//ProfilePicture string
|
||||
//Visibility string
|
||||
|
||||
|
@ -45,10 +46,28 @@ func handleProfile(w http.ResponseWriter, r *http.Request) {
|
|||
if r.Method == "POST" {
|
||||
//5MB maximum size files
|
||||
r.ParseMultipartForm(5 << 20)
|
||||
data.DisplayName = strings.TrimSpace(strings.Join(r.Form["display_name"], ""))
|
||||
data.GivenName = strings.TrimSpace(strings.Join(r.Form["given_name"], ""))
|
||||
data.Surname = strings.TrimSpace(strings.Join(r.Form["surname"], ""))
|
||||
data.Description = strings.Trim(strings.Join(r.Form["description"], ""), "")
|
||||
user := User{
|
||||
DN: login.Info.DN,
|
||||
// CN: ,
|
||||
GivenName: strings.TrimSpace(strings.Join(r.Form["given_name"], "")),
|
||||
DisplayName: strings.TrimSpace(strings.Join(r.Form["display_name"], "")),
|
||||
Mail: strings.TrimSpace(strings.Join(r.Form["mail"], "")),
|
||||
SN: strings.TrimSpace(strings.Join(r.Form["surname"], "")),
|
||||
//UID: ,
|
||||
Description: strings.TrimSpace(strings.Join(r.Form["description"], "")),
|
||||
// Password: ,
|
||||
}
|
||||
data.DisplayName = user.DisplayName
|
||||
data.GivenName = user.GivenName
|
||||
data.Surname = user.SN
|
||||
data.Description = user.Description
|
||||
err := modify(user, config, login.conn)
|
||||
if err != nil {
|
||||
data.ErrorMessage = "handleProfile : " + err.Error()
|
||||
} else {
|
||||
data.Success = true
|
||||
}
|
||||
|
||||
/*
|
||||
visible := strings.TrimSpace(strings.Join(r.Form["visibility"], ""))
|
||||
if visible != "" {
|
||||
|
@ -67,26 +86,22 @@ func handleProfile(w http.ResponseWriter, r *http.Request) {
|
|||
data.ProfilePicture = profilePicture
|
||||
}
|
||||
*/
|
||||
modify_request := ldap.NewModifyRequest(login.Info.DN, nil)
|
||||
modify_request.Replace("displayname", []string{data.DisplayName})
|
||||
modify_request.Replace("givenname", []string{data.GivenName})
|
||||
modify_request.Replace("surname", []string{data.Surname})
|
||||
modify_request.Replace("description", []string{data.Description})
|
||||
|
||||
//modify_request.Replace(FIELD_NAME_DIRECTORY_VISIBILITY, []string{data.Visibility})
|
||||
//modify_request.Replace(FIELD_NAME_DIRECTORY_VISIBILITY, []string{"on"})
|
||||
//if data.ProfilePicture != "" {
|
||||
// modify_request.Replace(FIELD_NAME_PROFILE_PICTURE, []string{data.ProfilePicture})
|
||||
// }
|
||||
|
||||
err := login.conn.Modify(modify_request)
|
||||
// err := login.conn.Modify(modify_request)
|
||||
// log.Printf(fmt.Sprintf("Profile:079: %v",modify_request))
|
||||
// log.Printf(fmt.Sprintf("Profile:079: %v",err))
|
||||
// log.Printf(fmt.Sprintf("Profile:079: %v",data))
|
||||
if err != nil {
|
||||
data.ErrorMessage = err.Error()
|
||||
} else {
|
||||
data.Success = true
|
||||
}
|
||||
// if err != nil {
|
||||
// data.ErrorMessage = err.Error()
|
||||
// } else {
|
||||
// data.Success = true
|
||||
// }
|
||||
|
||||
}
|
||||
|
||||
|
@ -126,7 +141,7 @@ func handlePasswd(w http.ResponseWriter, r *http.Request) {
|
|||
} else if password2 != password {
|
||||
data.NoMatchError = true
|
||||
} else {
|
||||
passwordModifyRequest := ldap.NewPasswordModifyRequest(login.Info.DN,"",password)
|
||||
passwordModifyRequest := ldap.NewPasswordModifyRequest(login.Info.DN, "", password)
|
||||
_, err := login.conn.PasswordModify(passwordModifyRequest)
|
||||
if err != nil {
|
||||
data.ErrorMessage = err.Error()
|
||||
|
|
79
utils.go
79
utils.go
|
@ -10,18 +10,6 @@ import (
|
|||
"golang.org/x/text/encoding/unicode"
|
||||
)
|
||||
|
||||
type NewUser struct {
|
||||
DN string
|
||||
CN string
|
||||
GivenName string
|
||||
DisplayName string
|
||||
Mail string
|
||||
SN string
|
||||
UID string
|
||||
Description string
|
||||
Password string
|
||||
}
|
||||
|
||||
func openLdap(config ConfigFile) *ldap.Conn {
|
||||
l, err := ldap.DialURL(config.LdapServerAddr)
|
||||
if err != nil {
|
||||
|
@ -40,70 +28,3 @@ func suggestPassword() string {
|
|||
}
|
||||
return password
|
||||
}
|
||||
|
||||
func addNewUser(newUser NewUser, config *ConfigFile, ldapConn *ldap.Conn) bool {
|
||||
log.Printf(fmt.Sprint("Adding New User"))
|
||||
// l, _ := ldap.DialURL(config.LdapServerAddr)
|
||||
// l.Bind(config.NewUserDN, config.NewUserPassword)
|
||||
// err := l.StartTLS(&tls.Config{InsecureSkipVerify: true})
|
||||
// if err != nil {
|
||||
// log.Printf(fmt.Sprintf("86: %v", err))
|
||||
// }
|
||||
|
||||
// l.Bind(config.)
|
||||
dn := newUser.DN
|
||||
req := ldap.NewAddRequest(dn, nil)
|
||||
req.Attribute("objectClass", []string{"top", "inetOrgPerson"})
|
||||
if newUser.DisplayName != "" {
|
||||
req.Attribute("displayName", []string{newUser.DisplayName})
|
||||
}
|
||||
if newUser.GivenName != "" {
|
||||
req.Attribute("givenName", []string{newUser.GivenName})
|
||||
}
|
||||
if newUser.Mail != "" {
|
||||
req.Attribute("mail", []string{newUser.Mail})
|
||||
}
|
||||
if newUser.UID != "" {
|
||||
req.Attribute("uid", []string{newUser.UID})
|
||||
}
|
||||
// if newUser.Member != "" {
|
||||
// req.Attribute("member", []string{newUser.Member})
|
||||
// }
|
||||
if newUser.SN != "" {
|
||||
req.Attribute("sn", []string{newUser.SN})
|
||||
}
|
||||
if newUser.Description != "" {
|
||||
req.Attribute("description", []string{newUser.Description})
|
||||
}
|
||||
if newUser.Password != "" {
|
||||
pwdEncoded, _ := encodePassword(newUser.Password)
|
||||
// if err != nil {
|
||||
// log.Printf("Error encoding password: %s", err)
|
||||
// return err
|
||||
// }
|
||||
req.Attribute("userPassword", []string{pwdEncoded})
|
||||
}
|
||||
|
||||
// conn :=
|
||||
|
||||
err := ldapConn.Add(req)
|
||||
log.Printf(fmt.Sprintf("71: %v", err))
|
||||
log.Printf(fmt.Sprintf("72: %v", req))
|
||||
log.Printf(fmt.Sprintf("73: %v", newUser))
|
||||
if err != nil {
|
||||
log.Printf(fmt.Sprintf("86: %v", err))
|
||||
return false
|
||||
} else {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
func encodePassword(inPassword string) (string, error) {
|
||||
utf16 := unicode.UTF16(unicode.LittleEndian, unicode.IgnoreBOM)
|
||||
return utf16.NewEncoder().String("\"" + inPassword + "\"")
|
||||
// if err != nil {
|
||||
// log.Printf("Error encoding password: %s", err)
|
||||
// return err
|
||||
// }
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue