2023-07-26 06:39:41 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2023-07-26 07:00:42 +00:00
|
|
|
// b64 "encoding/base64"
|
|
|
|
// "fmt"
|
|
|
|
// "log"
|
2023-07-26 06:39:41 +00:00
|
|
|
"net/http"
|
|
|
|
"strings"
|
2023-07-26 07:00:42 +00:00
|
|
|
// "github.com/gorilla/mux"
|
2023-07-26 06:39:41 +00:00
|
|
|
)
|
|
|
|
|
2023-07-26 07:00:42 +00:00
|
|
|
func handleUser(w http.ResponseWriter, r *http.Request) {
|
2023-07-26 06:39:41 +00:00
|
|
|
templateProfile := getTemplate("user.html")
|
|
|
|
|
|
|
|
login := checkLogin(w, r)
|
|
|
|
if login == nil {
|
|
|
|
templatePasswd := getTemplate("passwd.html")
|
|
|
|
templatePasswd.Execute(w, PasswdTplData{
|
|
|
|
|
|
|
|
Common: NestedCommonTplData{
|
2023-07-26 06:50:33 +00:00
|
|
|
// CanAdmin: login.Common.CanAdmin,
|
|
|
|
CanAdmin: false,
|
2023-07-26 06:39:41 +00:00
|
|
|
LoggedIn: true},
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
data := &ProfileTplData{
|
|
|
|
Login: NestedLoginTplData{
|
|
|
|
Status: login,
|
|
|
|
Login: login,
|
|
|
|
},
|
|
|
|
Common: NestedCommonTplData{
|
|
|
|
CanAdmin: login.Common.CanAdmin,
|
|
|
|
LoggedIn: true,
|
|
|
|
ErrorMessage: "",
|
|
|
|
Success: false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
data.Mail = login.UserEntry.GetAttributeValue("mail")
|
|
|
|
data.DisplayName = login.UserEntry.GetAttributeValue("displayName")
|
|
|
|
data.GivenName = login.UserEntry.GetAttributeValue("givenName")
|
|
|
|
data.Surname = login.UserEntry.GetAttributeValue("sn")
|
|
|
|
// data.Visibility = login.UserEntry.GetAttributeValue(FIELD_NAME_DIRECTORY_VISIBILITY)
|
|
|
|
data.Description = login.UserEntry.GetAttributeValue("description")
|
|
|
|
//data.ProfilePicture = login.UserEntry.GetAttributeValue(FIELD_NAME_PROFILE_PICTURE)
|
|
|
|
|
|
|
|
if r.Method == "POST" {
|
|
|
|
//5MB maximum size files
|
|
|
|
r.ParseMultipartForm(5 << 20)
|
|
|
|
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: ,
|
|
|
|
}
|
|
|
|
|
|
|
|
if user.DisplayName != "" {
|
|
|
|
err := modify(user, config, login.conn)
|
|
|
|
if err != nil {
|
2023-07-26 07:00:42 +00:00
|
|
|
data.Common.ErrorMessage = "handleUser : " + err.Error()
|
2023-07-26 06:39:41 +00:00
|
|
|
} else {
|
|
|
|
data.Common.Success = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
findUser, err := get(user, config, login.conn)
|
|
|
|
if err != nil {
|
2023-07-26 07:00:42 +00:00
|
|
|
data.Common.ErrorMessage = "handleUser : " + err.Error()
|
2023-07-26 06:39:41 +00:00
|
|
|
}
|
|
|
|
data.DisplayName = findUser.DisplayName
|
|
|
|
data.GivenName = findUser.GivenName
|
|
|
|
data.Surname = findUser.SN
|
|
|
|
data.Description = findUser.Description
|
|
|
|
data.Mail = findUser.Mail
|
|
|
|
data.Common.LoggedIn = false
|
|
|
|
|
|
|
|
/*
|
|
|
|
visible := strings.TrimSpace(strings.Join(r.Form["visibility"], ""))
|
|
|
|
if visible != "" {
|
|
|
|
visible = "on"
|
|
|
|
} else {
|
|
|
|
visible = "off"
|
|
|
|
}
|
|
|
|
data.Visibility = visible
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
profilePicture, err := uploadProfilePicture(w, r, login)
|
|
|
|
if err != nil {
|
|
|
|
data.Common.ErrorMessage = err.Error()
|
|
|
|
}
|
|
|
|
if profilePicture != "" {
|
|
|
|
data.ProfilePicture = profilePicture
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
//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)
|
|
|
|
// 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.Common.ErrorMessage = err.Error()
|
|
|
|
// } else {
|
|
|
|
// data.Common.Success = true
|
|
|
|
// }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
templateProfile.Execute(w, data)
|
|
|
|
}
|