Implementing Activate User
This commit is contained in:
parent
395c00b9ec
commit
891f18f009
4 changed files with 24 additions and 9 deletions
|
@ -51,6 +51,9 @@ type ConfigFile struct {
|
||||||
S3Bucket string `json:"s3_bucket"`
|
S3Bucket string `json:"s3_bucket"`
|
||||||
|
|
||||||
Org string `json:"org"`
|
Org string `json:"org"`
|
||||||
|
DomainName string `json:"domain_name"`
|
||||||
|
NewUserDN string `json:"new_user_dn"`
|
||||||
|
NewUserPassword string `json:"new_user_password"`
|
||||||
}
|
}
|
||||||
|
|
||||||
var configFlag = flag.String("config", "./config.json", "Configuration file path")
|
var configFlag = flag.String("config", "./config.json", "Configuration file path")
|
||||||
|
|
10
invite.go
10
invite.go
|
@ -39,9 +39,9 @@ func checkInviterLogin(w http.ResponseWriter, r *http.Request) *LoginStatus {
|
||||||
|
|
||||||
func handleInviteNewAccount(w http.ResponseWriter, r *http.Request) {
|
func handleInviteNewAccount(w http.ResponseWriter, r *http.Request) {
|
||||||
login := checkInviterLogin(w, r)
|
login := checkInviterLogin(w, r)
|
||||||
if login == nil {
|
// if login == nil {
|
||||||
return
|
// return
|
||||||
}
|
// }
|
||||||
|
|
||||||
handleNewAccount(w, r, login.conn, login.Info.DN)
|
handleNewAccount(w, r, login.conn, login.Info.DN)
|
||||||
}
|
}
|
||||||
|
@ -124,7 +124,7 @@ func handleNewAccount(w http.ResponseWriter, r *http.Request, l *ldap.Conn, invi
|
||||||
r.ParseForm()
|
r.ParseForm()
|
||||||
|
|
||||||
newUser := NewUser{}
|
newUser := NewUser{}
|
||||||
login := checkLogin(w, r)
|
// login := checkLogin(w, r)
|
||||||
|
|
||||||
newUser.CN = fmt.Sprintf("%s@%s", strings.TrimSpace(strings.Join(r.Form["username"], "")), "lesgv.com")
|
newUser.CN = fmt.Sprintf("%s@%s", strings.TrimSpace(strings.Join(r.Form["username"], "")), "lesgv.com")
|
||||||
newUser.DisplayName = strings.TrimSpace(strings.Join(r.Form["displayname"], ""))
|
newUser.DisplayName = strings.TrimSpace(strings.Join(r.Form["displayname"], ""))
|
||||||
|
@ -142,7 +142,7 @@ func handleNewAccount(w http.ResponseWriter, r *http.Request, l *ldap.Conn, invi
|
||||||
data.ErrorPasswordMismatch = true
|
data.ErrorPasswordMismatch = true
|
||||||
} else {
|
} else {
|
||||||
newUser.Password = password2
|
newUser.Password = password2
|
||||||
data.Success = addNewUser(newUser, config, login)
|
data.Success = addNewUser(newUser, config)
|
||||||
http.Redirect(w, r, "/admin/ldap/"+newUser.DN, http.StatusFound)
|
http.Redirect(w, r, "/admin/ldap/"+newUser.DN, http.StatusFound)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -92,10 +92,18 @@
|
||||||
function changeDisplayname () {
|
function changeDisplayname () {
|
||||||
displayname = document.getElementById("displayname");
|
displayname = document.getElementById("displayname");
|
||||||
username = document.getElementById("username");
|
username = document.getElementById("username");
|
||||||
|
givenname = document.getElementById("givenname");
|
||||||
|
sn = document.getElementById("sn");
|
||||||
if (!username.value) {
|
if (!username.value) {
|
||||||
username.value = displayname.value;
|
username.value = displayname.value;
|
||||||
changeUsername();
|
changeUsername();
|
||||||
}
|
}
|
||||||
|
if (!givenname.value) {
|
||||||
|
givenname.value = displayname.value.split(" ")[0];
|
||||||
|
}
|
||||||
|
if (!sn.value) {
|
||||||
|
sn.value = displayname.value.split(" ")[1];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
function changeUsername () {
|
function changeUsername () {
|
||||||
username = document.getElementById("username");
|
username = document.getElementById("username");
|
||||||
|
|
10
utils.go
10
utils.go
|
@ -40,9 +40,10 @@ func suggestPassword() string {
|
||||||
return password
|
return password
|
||||||
}
|
}
|
||||||
|
|
||||||
func addNewUser(newUser NewUser, config *ConfigFile, login *LoginStatus) bool {
|
func addNewUser(newUser NewUser, config *ConfigFile) bool {
|
||||||
log.Printf(fmt.Sprint("Adding New User"))
|
log.Printf(fmt.Sprint("Adding New User"))
|
||||||
// l := openLdap(config)
|
l := openLdap(*config)
|
||||||
|
l.Bind(config.NewUserDN, config.NewUserPassword)
|
||||||
// l.Bind(config.)
|
// l.Bind(config.)
|
||||||
dn := newUser.DN
|
dn := newUser.DN
|
||||||
req := ldap.NewAddRequest(dn, nil)
|
req := ldap.NewAddRequest(dn, nil)
|
||||||
|
@ -72,7 +73,10 @@ func addNewUser(newUser NewUser, config *ConfigFile, login *LoginStatus) bool {
|
||||||
pw, _ := SSHAEncode(newUser.Password)
|
pw, _ := SSHAEncode(newUser.Password)
|
||||||
req.Attribute("userPassword", []string{pw})
|
req.Attribute("userPassword", []string{pw})
|
||||||
}
|
}
|
||||||
err := login.conn.Add(req)
|
|
||||||
|
// conn :=
|
||||||
|
|
||||||
|
err := l.Add(req)
|
||||||
log.Printf(fmt.Sprintf("71: %v", err))
|
log.Printf(fmt.Sprintf("71: %v", err))
|
||||||
log.Printf(fmt.Sprintf("72: %v", req))
|
log.Printf(fmt.Sprintf("72: %v", req))
|
||||||
log.Printf(fmt.Sprintf("73: %v", newUser))
|
log.Printf(fmt.Sprintf("73: %v", newUser))
|
||||||
|
|
Loading…
Reference in a new issue