diff options
author | Alex Auvolat <alex@adnab.me> | 2020-02-09 18:28:42 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-02-09 18:28:42 +0100 |
commit | 13222204392009e07382eecb908b7e6e01155ec4 (patch) | |
tree | 5295169a49765d9649be96d3bc599ce73c6640a0 /admin.go | |
parent | e9140c5a66ff9035dc973e93aad9c0ed909b6f13 (diff) | |
download | guichet-13222204392009e07382eecb908b7e6e01155ec4.tar.gz guichet-13222204392009e07382eecb908b7e6e01155ec4.zip |
User list
Diffstat (limited to 'admin.go')
-rw-r--r-- | admin.go | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/admin.go b/admin.go new file mode 100644 index 0000000..60296dc --- /dev/null +++ b/admin.go @@ -0,0 +1,81 @@ +package main + +import ( + "html/template" + "net/http" + "fmt" + "sort" + + "github.com/go-ldap/ldap/v3" +) + +func checkAdminLogin(w http.ResponseWriter, r *http.Request) *LoginStatus { + login := checkLogin(w, r) + if login == nil { + return nil + } + + can_admin := false + for _, group := range login.UserEntry.GetAttributeValues("memberof") { + if config.GroupCanAdmin != "" && group == config.GroupCanAdmin { + can_admin = true + } + } + + if !can_admin { + http.Redirect(w, r, "/", http.StatusFound) + return nil + } + + return login +} + +type AdminUsersTplData struct { + Login *LoginStatus + UserNameAttr string + Users []*ldap.Entry +} + +func handleAdminUsers(w http.ResponseWriter, r *http.Request) { + templateAdminUsers := template.Must(template.ParseFiles("templates/layout.html", "templates/admin_users.html")) + + login := checkLogin(w, r) + if login == nil { + return + } + + searchRequest := ldap.NewSearchRequest( + config.UserBaseDN, + ldap.ScopeSingleLevel, ldap.NeverDerefAliases, 0, 0, false, + fmt.Sprintf("(&(objectClass=organizationalPerson))"), + []string{config.UserNameAttr, "dn", "displayname", "givenname", "sn", "mail"}, + nil) + + sr, err := login.conn.Search(searchRequest) + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } + + data := &AdminUsersTplData{ + Login: login, + UserNameAttr: config.UserNameAttr, + Users: sr.Entries, + } + sort.Sort(data) + + templateAdminUsers.Execute(w, data) +} + +func (d *AdminUsersTplData) Len() int { + return len(d.Users) +} + +func (d *AdminUsersTplData) Swap(i, j int) { + d.Users[i], d.Users[j] = d.Users[j], d.Users[i] +} + +func (d *AdminUsersTplData) Less(i, j int) bool { + return d.Users[i].GetAttributeValue(config.UserNameAttr) < + d.Users[j].GetAttributeValue(config.UserNameAttr) +} |