mirror of
https://github.com/h44z/wg-portal.git
synced 2026-05-28 08:56:17 +00:00
* feat: sanitize external user data * remove config option to disable Sanitization: sanitize_external_user_data * cleanup --------- Co-authored-by: Christoph Haas <christoph.h@sprinternet.at>
97 lines
2.3 KiB
Go
97 lines
2.3 KiB
Go
package users
|
|
|
|
import (
|
|
"fmt"
|
|
"slices"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/go-ldap/ldap/v3"
|
|
|
|
"github.com/h44z/wg-portal/internal"
|
|
"github.com/h44z/wg-portal/internal/config"
|
|
"github.com/h44z/wg-portal/internal/domain"
|
|
)
|
|
|
|
func convertRawLdapUser(
|
|
providerName string,
|
|
rawUser map[string]any,
|
|
fields *config.LdapFields,
|
|
adminGroupDN *ldap.DN,
|
|
) (*domain.User, error) {
|
|
now := time.Now()
|
|
|
|
isAdmin, err := internal.LdapIsMemberOf(rawUser[fields.GroupMembership].([][]byte), adminGroupDN)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to check admin group: %w", err)
|
|
}
|
|
|
|
uid := domain.UserIdentifier(internal.MapDefaultString(rawUser, fields.UserIdentifier, ""))
|
|
|
|
user := &domain.User{
|
|
BaseModel: domain.BaseModel{
|
|
CreatedBy: domain.CtxSystemLdapSyncer,
|
|
UpdatedBy: domain.CtxSystemLdapSyncer,
|
|
CreatedAt: now,
|
|
UpdatedAt: now,
|
|
},
|
|
Identifier: uid,
|
|
Email: strings.ToLower(internal.MapDefaultString(rawUser, fields.Email, "")),
|
|
IsAdmin: isAdmin,
|
|
Authentications: []domain.UserAuthentication{
|
|
{
|
|
UserIdentifier: uid,
|
|
Source: domain.UserSourceLdap,
|
|
ProviderName: providerName,
|
|
},
|
|
},
|
|
Firstname: internal.MapDefaultString(rawUser, fields.Firstname, ""),
|
|
Lastname: internal.MapDefaultString(rawUser, fields.Lastname, ""),
|
|
Phone: internal.MapDefaultString(rawUser, fields.Phone, ""),
|
|
Department: internal.MapDefaultString(rawUser, fields.Department, ""),
|
|
}
|
|
|
|
if err := user.SanitizeExternalData("ldap", providerName); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Update authentication identifier after sanitization
|
|
user.Authentications[0].UserIdentifier = user.Identifier
|
|
|
|
return user, nil
|
|
}
|
|
|
|
func userChangedInLdap(dbUser, ldapUser *domain.User) bool {
|
|
if dbUser.Firstname != ldapUser.Firstname {
|
|
return true
|
|
}
|
|
if dbUser.Lastname != ldapUser.Lastname {
|
|
return true
|
|
}
|
|
if dbUser.Email != ldapUser.Email {
|
|
return true
|
|
}
|
|
if dbUser.Phone != ldapUser.Phone {
|
|
return true
|
|
}
|
|
if dbUser.Department != ldapUser.Department {
|
|
return true
|
|
}
|
|
|
|
if dbUser.IsDisabled() != ldapUser.IsDisabled() {
|
|
return true
|
|
}
|
|
|
|
if dbUser.IsAdmin != ldapUser.IsAdmin {
|
|
return true
|
|
}
|
|
|
|
if !slices.ContainsFunc(dbUser.Authentications, func(authentication domain.UserAuthentication) bool {
|
|
return authentication.Source == ldapUser.Authentications[0].Source
|
|
}) {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|