1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 05:09:42 +02:00
documize/domain/auth/ldap/endpoint.go

409 lines
11 KiB
Go
Raw Normal View History

2018-08-28 10:19:22 +01:00
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
//
// This software (Documize Community Edition) is licensed under
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
//
// You can operate outside the AGPL restrictions by purchasing
// Documize Enterprise Edition and obtaining a commercial license
// by contacting <sales@documize.com>.
//
// https://documize.com
package ldap
import (
2018-09-04 17:19:26 +01:00
"database/sql"
2018-09-03 17:36:54 +01:00
"encoding/json"
2018-08-28 10:19:22 +01:00
"fmt"
2018-09-03 17:36:54 +01:00
"io/ioutil"
2018-08-28 10:19:22 +01:00
"net/http"
2018-09-04 17:19:26 +01:00
"sort"
"strings"
2018-08-28 10:19:22 +01:00
"github.com/documize/community/core/env"
2022-03-16 16:58:42 -04:00
"github.com/documize/community/core/i18n"
2018-08-28 10:19:22 +01:00
"github.com/documize/community/core/response"
2018-09-04 17:19:26 +01:00
"github.com/documize/community/core/secrets"
2018-09-03 17:36:54 +01:00
"github.com/documize/community/core/streamutil"
2018-08-28 10:19:22 +01:00
"github.com/documize/community/domain"
2018-09-04 17:19:26 +01:00
"github.com/documize/community/domain/auth"
"github.com/documize/community/domain/store"
2018-09-04 17:19:26 +01:00
usr "github.com/documize/community/domain/user"
2018-08-28 10:19:22 +01:00
ath "github.com/documize/community/model/auth"
lm "github.com/documize/community/model/auth"
2018-09-03 17:36:54 +01:00
"github.com/documize/community/model/user"
2018-08-28 10:19:22 +01:00
)
// Handler contains the runtime information such as logging and database.
type Handler struct {
Runtime *env.Runtime
Store *store.Store
2018-08-28 10:19:22 +01:00
}
2018-09-04 17:19:26 +01:00
// Preview connects to LDAP using paylaod and returns first 50 users.
2018-09-03 17:36:54 +01:00
func (h *Handler) Preview(w http.ResponseWriter, r *http.Request) {
h.Runtime.Log.Info("Sync'ing with LDAP")
ctx := domain.GetRequestContext(r)
if !ctx.Administrator {
response.WriteForbiddenError(w)
return
}
var result struct {
Message string `json:"message"`
IsError bool `json:"isError"`
Users []user.User `json:"users"`
2018-09-04 17:19:26 +01:00
Count int `json:"count"`
2018-09-03 17:36:54 +01:00
}
2018-09-05 15:54:00 +01:00
result.IsError = true
2018-09-03 18:19:46 +01:00
result.Users = []user.User{}
2018-09-03 17:36:54 +01:00
// Read the request.
defer streamutil.Close(r.Body)
body, err := ioutil.ReadAll(r.Body)
if err != nil {
result.Message = "Error: unable read request body"
result.IsError = true
response.WriteJSON(w, result)
h.Runtime.Log.Error(result.Message, err)
return
}
// Decode LDAP config.
c := lm.LDAPConfig{}
err = json.Unmarshal(body, &c)
if err != nil {
result.Message = "Error: unable read LDAP configuration payload"
result.IsError = true
response.WriteJSON(w, result)
h.Runtime.Log.Error(result.Message, err)
return
}
2018-09-05 15:54:00 +01:00
if c.ServerPort == 0 && len(c.ServerHost) == 0 {
result.Message = "Missing LDAP server details"
result.IsError = true
response.WriteJSON(w, result)
return
}
if len(c.BindDN) == 0 && len(c.BindPassword) == 0 {
result.Message = "Missing LDAP bind credentials"
result.IsError = true
response.WriteJSON(w, result)
return
}
if len(c.UserFilter) == 0 && len(c.GroupFilter) == 0 {
result.Message = "Missing LDAP search filters"
result.IsError = true
response.WriteJSON(w, result)
return
}
2018-09-03 17:36:54 +01:00
h.Runtime.Log.Info("Fetching LDAP users")
users, err := fetchUsers(c)
if err != nil {
result.Message = "Error: unable fetch users from LDAP"
result.IsError = true
response.WriteJSON(w, result)
h.Runtime.Log.Error(result.Message, err)
return
}
result.IsError = false
2018-09-05 15:54:00 +01:00
result.Message = fmt.Sprintf("Previewing LDAP, found %d users", len(users))
2018-09-04 17:19:26 +01:00
result.Count = len(users)
result.Users = users
// Preview does not require more than 50 users.
if len(users) > 50 {
result.Users = users[:50]
2018-09-03 17:36:54 +01:00
}
h.Runtime.Log.Info(result.Message)
response.WriteJSON(w, result)
}
2019-05-10 16:38:19 +01:00
// Sync gets list of LDAP users and inserts new users into Documize.
2018-08-28 10:19:22 +01:00
func (h *Handler) Sync(w http.ResponseWriter, r *http.Request) {
ctx := domain.GetRequestContext(r)
if !ctx.Administrator {
response.WriteForbiddenError(w)
return
}
var result struct {
Message string `json:"message"`
IsError bool `json:"isError"`
}
2018-09-05 15:54:00 +01:00
result.IsError = true
result.Message = "Unable to connect to LDAP"
2018-08-28 10:19:22 +01:00
// Org contains raw auth provider config
org, err := h.Store.Organization.GetOrganization(ctx, ctx.OrgID)
if err != nil {
2022-03-16 16:58:42 -04:00
result.Message = i18n.Localize(ctx.Locale, "server_error_org")
2018-08-28 10:19:22 +01:00
result.IsError = true
response.WriteJSON(w, result)
h.Runtime.Log.Error(result.Message, err)
return
}
// Exit if not using LDAP
if org.AuthProvider != ath.AuthProviderLDAP {
2022-03-16 16:58:42 -04:00
result.Message = i18n.Localize(ctx.Locale, "server_ldap_error1")
2018-09-04 17:19:26 +01:00
result.IsError = true
response.WriteJSON(w, result)
h.Runtime.Log.Info(result.Message)
return
2018-08-28 10:19:22 +01:00
}
2018-09-04 17:19:26 +01:00
// Get auth provider config
2018-08-28 10:19:22 +01:00
c := lm.LDAPConfig{}
2018-09-04 17:19:26 +01:00
err = json.Unmarshal([]byte(org.AuthConfig), &c)
2018-08-28 10:19:22 +01:00
if err != nil {
2022-03-16 16:58:42 -04:00
result.Message = i18n.Localize(ctx.Locale, "server_ldap_error2")
2018-08-28 10:19:22 +01:00
result.IsError = true
response.WriteJSON(w, result)
h.Runtime.Log.Error(result.Message, err)
return
}
2018-09-04 17:19:26 +01:00
// Get user list from LDAP.
ldapUsers, err := fetchUsers(c)
2018-08-28 10:19:22 +01:00
if err != nil {
2022-03-16 16:58:42 -04:00
result.Message = i18n.Localize(ctx.Locale, "server_ldap_error3", err.Error())
2018-08-28 10:19:22 +01:00
result.IsError = true
response.WriteJSON(w, result)
h.Runtime.Log.Error(result.Message, err)
return
}
2018-09-04 17:19:26 +01:00
// Get user list from Documize
dmzUsers, err := h.Store.User.GetUsersForOrganization(ctx, "", 99999)
2018-08-28 10:19:22 +01:00
if err != nil {
2022-03-16 16:58:42 -04:00
result.Message = i18n.Localize(ctx.Locale, "server_error_user")
2018-08-28 10:19:22 +01:00
result.IsError = true
response.WriteJSON(w, result)
h.Runtime.Log.Error(result.Message, err)
return
}
2018-09-04 17:19:26 +01:00
sort.Slice(ldapUsers, func(i, j int) bool { return ldapUsers[i].Email < ldapUsers[j].Email })
sort.Slice(dmzUsers, func(i, j int) bool { return dmzUsers[i].Email < dmzUsers[j].Email })
insert := []user.User{}
for _, k := range ldapUsers {
exists := false
for _, d := range dmzUsers {
if k.Email == d.Email {
exists = true
}
}
if !exists {
insert = append(insert, k)
}
}
// Track the number of LDAP users with missing data.
missing := 0
// Insert new users into Documize
for _, u := range insert {
if len(u.Email) == 0 {
missing++
} else {
_, err = auth.AddExternalUser(ctx, h.Runtime, h.Store, u, c.DefaultPermissionAddSpace)
}
2018-08-28 10:19:22 +01:00
}
result.IsError = false
2022-03-16 16:58:42 -04:00
result.Message = i18n.Localize(ctx.Locale, "server_ldap_complete")
result.Message = i18n.Localize(ctx.Locale, "server_ldap_summary", fmt.Sprintf("%d", len(ldapUsers)), fmt.Sprintf("%d", len(insert)), fmt.Sprintf("%d", missing))
2018-08-28 10:19:22 +01:00
h.Runtime.Log.Info(result.Message)
2018-09-04 17:19:26 +01:00
response.WriteJSON(w, result)
2018-08-28 10:19:22 +01:00
}
2018-09-04 17:19:26 +01:00
// Authenticate checks LDAP authentication credentials.
2018-09-03 17:36:54 +01:00
func (h *Handler) Authenticate(w http.ResponseWriter, r *http.Request) {
2018-09-04 17:19:26 +01:00
method := "ldap.authenticate"
ctx := domain.GetRequestContext(r)
// check for http header
authHeader := r.Header.Get("Authorization")
if len(authHeader) == 0 {
response.WriteBadRequestError(w, method, "Missing Authorization header")
return
}
// decode what we received
data := strings.Replace(authHeader, "Basic ", "", 1)
decodedBytes, err := secrets.DecodeBase64([]byte(data))
if err != nil {
response.WriteBadRequestError(w, method, "Unable to decode authentication token")
h.Runtime.Log.Error("decode auth header", err)
return
}
decoded := string(decodedBytes)
// check that we have domain:username:password (but allow for : in password field!)
credentials := strings.SplitN(decoded, ":", 3)
if len(credentials) != 3 {
response.WriteBadRequestError(w, method, "Bad authentication token, expecting domain:username:password")
h.Runtime.Log.Error("bad auth token", err)
return
}
dom := strings.TrimSpace(strings.ToLower(credentials[0]))
username := strings.TrimSpace(strings.ToLower(credentials[1]))
password := credentials[2]
// Check for required fields.
if len(username) == 0 || len(password) == 0 {
response.WriteUnauthorizedError(w)
2019-03-08 15:45:46 +00:00
h.Runtime.Log.Info("LDAP authentication aborted due to missing username/password")
2018-09-04 17:19:26 +01:00
return
}
dom = h.Store.Organization.CheckDomain(ctx, dom) // TODO optimize by removing this once js allows empty domains
// Get the org and it's associated LDAP config.
org, err := h.Store.Organization.GetOrganizationByDomain(dom)
if err != nil {
response.WriteUnauthorizedError(w)
h.Runtime.Log.Error("bad auth organization", err)
return
}
lc := lm.LDAPConfig{}
err = json.Unmarshal([]byte(org.AuthConfig), &lc)
if err != nil {
response.WriteBadRequestError(w, method, "unable to read LDAP config during authorization")
h.Runtime.Log.Error(method, err)
return
}
ctx.OrgID = org.RefID
// We first connect to LDAP and try to authenticate user.
// If user auth fails and dual authentication is enabled,
// we try to authenticate with email/password combo.
var u user.User
// Try LDAP
h.Runtime.Log.Info("LDAP login request " + username + " @ " + dom)
2018-09-04 17:19:26 +01:00
l, err := connect(lc)
if err != nil {
response.WriteBadRequestError(w, method, "unable to dial LDAP server")
h.Runtime.Log.Error(method, err)
return
}
defer l.Close()
lu, ok, err := authenticate(l, lc, username, password)
if err != nil {
response.WriteBadRequestError(w, method, "error during LDAP authentication")
h.Runtime.Log.Error(method, err)
return
}
// If OK then we complete LDAP specific processing
if ok {
h.Runtime.Log.Info("LDAP logon completed " + lu.Email)
2018-09-04 17:19:26 +01:00
u, err = h.Store.User.GetByDomain(ctx, dom, lu.Email)
if err != nil && err != sql.ErrNoRows {
response.WriteServerError(w, method, err)
h.Runtime.Log.Error(method, err)
return
}
2022-01-12 14:12:51 -05:00
if len(lu.Email) == 0 || len(u.Email) == 0 {
response.WriteUnauthorizedError(w)
h.Runtime.Log.Infof("LDAP user without email faild auth (%s)", username)
return
}
2022-01-12 14:12:51 -05:00
// If user authenticated BUT is not within Documize, we fail authentication.
// If dual auth is enabled, we can try regular email/password login (see next).
if err == sql.ErrNoRows {
2022-01-12 14:12:51 -05:00
ok = false
}
2018-09-04 17:19:26 +01:00
}
// If LDAP authentication failed, we check to see if we are allowed
// to perform authentication via regular email/password.
if !ok {
// Return as unauthorized if dual authentication not enabled.
if !lc.AllowFormsAuth {
h.Runtime.Log.Info("LDAP failed login request for " + username + " @ " + dom)
response.WriteUnauthorizedError(w)
return
}
2018-09-04 17:19:26 +01:00
h.Runtime.Log.Info("Trying forms auth as LDAP login login failed for " + username + " @ " + dom)
2018-09-04 17:19:26 +01:00
// Now try regular email/password authentication.
u, err = h.Store.User.GetByDomain(ctx, dom, username)
if err == sql.ErrNoRows {
response.WriteUnauthorizedError(w)
return
}
if err != nil && err != sql.ErrNoRows {
h.Runtime.Log.Error("unable to fetch user", err)
2018-09-04 17:19:26 +01:00
response.WriteServerError(w, method, err)
return
}
if len(u.Reset) > 0 || len(u.Password) == 0 {
response.WriteUnauthorizedError(w)
return
}
// Password correct and active user
if username != strings.TrimSpace(strings.ToLower(u.Email)) || !secrets.MatchPassword(u.Password, password, u.Salt) {
response.WriteUnauthorizedError(w)
2018-09-04 17:19:26 +01:00
return
}
}
// Below is standard flow for user authentication regardless
// if they used LDAP or email/password combo.
2018-09-04 17:19:26 +01:00
// Attach user accounts and work out permissions.
usr.AttachUserAccounts(ctx, *h.Store, org.RefID, &u)
// No accounts signals data integrity problem so we reject login request.
2018-09-04 17:19:26 +01:00
if len(u.Accounts) == 0 {
response.WriteUnauthorizedError(w)
h.Runtime.Log.Error(method, err)
return
}
// Abort login request if account is disabled.
for _, ac := range u.Accounts {
if ac.OrgID == org.RefID {
if ac.Active == false {
response.WriteUnauthorizedError(w)
h.Runtime.Log.Error(method, err)
return
}
break
}
}
// Send back newly generated JWT token.
2018-09-04 17:19:26 +01:00
authModel := ath.AuthenticationModel{}
authModel.Token = auth.GenerateJWT(h.Runtime, u.RefID, org.RefID, dom)
authModel.User = u
response.WriteJSON(w, authModel)
2018-09-03 17:36:54 +01:00
}