2023-09-15 12:32:44 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
//"context"
|
2023-09-15 12:43:55 +00:00
|
|
|
"errors"
|
2023-09-15 12:32:44 +00:00
|
|
|
"fmt"
|
2023-09-15 12:43:55 +00:00
|
|
|
garage "git.deuxfleurs.fr/garage-sdk/garage-admin-sdk-golang"
|
2023-09-15 12:32:44 +00:00
|
|
|
"github.com/go-ldap/ldap/v3"
|
|
|
|
//"github.com/gorilla/mux"
|
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2023-09-15 12:43:55 +00:00
|
|
|
func checkLoginAPI(w http.ResponseWriter, r *http.Request) (*LoginStatus, error) {
|
2023-09-15 12:32:44 +00:00
|
|
|
username, password, ok := r.BasicAuth()
|
|
|
|
if !ok {
|
|
|
|
w.Header().Set("WWW-Authenticate", `Basic realm="restricted", charset="UTF-8"`)
|
|
|
|
http.Error(w, "Unauthorized", http.StatusUnauthorized)
|
2023-09-15 12:43:55 +00:00
|
|
|
return nil, errors.New("Missing or invalid 'Authenticate: Basic' field")
|
2023-09-15 12:32:44 +00:00
|
|
|
}
|
|
|
|
user_dn := buildUserDN(username)
|
|
|
|
|
|
|
|
login_info := &LoginInfo{
|
|
|
|
DN: user_dn,
|
|
|
|
Username: username,
|
|
|
|
Password: password,
|
|
|
|
}
|
|
|
|
|
|
|
|
l := ldapOpen(w)
|
|
|
|
if l == nil {
|
|
|
|
log.Println(l)
|
|
|
|
http.Error(w, "Internal server error", http.StatusInternalServerError)
|
2023-09-15 12:43:55 +00:00
|
|
|
return nil, errors.New("Unable to open LDAP connection")
|
2023-09-15 12:32:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err := l.Bind(login_info.DN, login_info.Password)
|
|
|
|
if err != nil {
|
|
|
|
w.Header().Set("WWW-Authenticate", `Basic realm="restricted", charset="UTF-8"`)
|
|
|
|
http.Error(w, "Unauthorized", http.StatusUnauthorized)
|
2023-09-15 12:43:55 +00:00
|
|
|
return nil, errors.New("Unable to bind this user+password combination on the LDAP server")
|
2023-09-15 12:32:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
loginStatus := &LoginStatus{
|
|
|
|
Info: login_info,
|
|
|
|
conn: l,
|
|
|
|
}
|
|
|
|
|
|
|
|
requestKind := "(objectClass=organizationalPerson)"
|
|
|
|
|
|
|
|
if strings.EqualFold(login_info.DN, config.AdminAccount) {
|
|
|
|
requestKind = "(objectclass=*)"
|
|
|
|
}
|
|
|
|
searchRequest := ldap.NewSearchRequest(
|
|
|
|
login_info.DN,
|
|
|
|
ldap.ScopeBaseObject, ldap.NeverDerefAliases, 0, 0, false,
|
|
|
|
requestKind,
|
|
|
|
[]string{
|
|
|
|
"dn",
|
|
|
|
"displayname",
|
|
|
|
"givenname",
|
|
|
|
"sn",
|
|
|
|
"mail",
|
|
|
|
"memberof",
|
|
|
|
"description",
|
|
|
|
"garage_s3_access_key",
|
|
|
|
FIELD_NAME_DIRECTORY_VISIBILITY,
|
|
|
|
FIELD_NAME_PROFILE_PICTURE,
|
|
|
|
},
|
|
|
|
nil)
|
|
|
|
|
|
|
|
sr, err := l.Search(searchRequest)
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
http.Error(w, "Internal server error", http.StatusInternalServerError)
|
2023-09-15 12:43:55 +00:00
|
|
|
return nil, errors.New("Unable to search essential information about the logged user on LDAP")
|
2023-09-15 12:32:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(sr.Entries) != 1 {
|
|
|
|
log.Println(fmt.Sprintf("Unable to find entry for %s", login_info.DN))
|
|
|
|
http.Error(w, "Internal server error", http.StatusInternalServerError)
|
2023-09-15 12:43:55 +00:00
|
|
|
return nil, errors.New("Not enough or too many entries for this user in the LDAP directory (expect a unique result)")
|
2023-09-15 12:32:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
loginStatus.UserEntry = sr.Entries[0]
|
|
|
|
|
|
|
|
loginStatus.CanAdmin = strings.EqualFold(loginStatus.Info.DN, config.AdminAccount)
|
|
|
|
loginStatus.CanInvite = false
|
|
|
|
for _, attr := range loginStatus.UserEntry.Attributes {
|
|
|
|
if strings.EqualFold(attr.Name, "memberof") {
|
|
|
|
for _, group := range attr.Values {
|
|
|
|
if config.GroupCanInvite != "" && strings.EqualFold(group, config.GroupCanInvite) {
|
|
|
|
loginStatus.CanInvite = true
|
|
|
|
}
|
|
|
|
if config.GroupCanAdmin != "" && strings.EqualFold(group, config.GroupCanAdmin) {
|
|
|
|
loginStatus.CanAdmin = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-15 12:43:55 +00:00
|
|
|
return loginStatus, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func checkLoginAndS3API(w http.ResponseWriter, r *http.Request) (*LoginStatus, *garage.KeyInfo, error) {
|
|
|
|
login, err := checkLoginAPI(w, r)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
keyPair, err := checkS3(login)
|
|
|
|
return login, keyPair, err
|
2023-09-15 12:32:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func handleAPIGarageBucket(w http.ResponseWriter, r *http.Request) {
|
2023-09-15 12:43:55 +00:00
|
|
|
login, s3key, err := checkLoginAndS3API(w, r)
|
2023-09-15 12:32:44 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
return
|
|
|
|
}
|
2023-09-15 12:43:55 +00:00
|
|
|
|
|
|
|
log.Println(login, s3key)
|
2023-09-15 12:32:44 +00:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|