2023-02-08 07:44:42 +01:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package source
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/models/organization"
|
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
|
|
|
"code.gitea.io/gitea/modules/container"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
)
|
|
|
|
|
|
|
|
type syncType int
|
|
|
|
|
|
|
|
const (
|
|
|
|
syncAdd syncType = iota
|
|
|
|
syncRemove
|
|
|
|
)
|
|
|
|
|
|
|
|
// SyncGroupsToTeams maps authentication source groups to organization and team memberships
|
|
|
|
func SyncGroupsToTeams(ctx context.Context, user *user_model.User, sourceUserGroups container.Set[string], sourceGroupTeamMapping map[string]map[string][]string, performRemoval bool) error {
|
|
|
|
orgCache := make(map[string]*organization.Organization)
|
|
|
|
teamCache := make(map[string]*organization.Team)
|
|
|
|
return SyncGroupsToTeamsCached(ctx, user, sourceUserGroups, sourceGroupTeamMapping, performRemoval, orgCache, teamCache)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SyncGroupsToTeamsCached maps authentication source groups to organization and team memberships
|
|
|
|
func SyncGroupsToTeamsCached(ctx context.Context, user *user_model.User, sourceUserGroups container.Set[string], sourceGroupTeamMapping map[string]map[string][]string, performRemoval bool, orgCache map[string]*organization.Organization, teamCache map[string]*organization.Team) error {
|
|
|
|
membershipsToAdd, membershipsToRemove := resolveMappedMemberships(sourceUserGroups, sourceGroupTeamMapping)
|
|
|
|
|
|
|
|
if performRemoval {
|
|
|
|
if err := syncGroupsToTeamsCached(ctx, user, membershipsToRemove, syncRemove, orgCache, teamCache); err != nil {
|
|
|
|
return fmt.Errorf("could not sync[remove] user groups: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := syncGroupsToTeamsCached(ctx, user, membershipsToAdd, syncAdd, orgCache, teamCache); err != nil {
|
|
|
|
return fmt.Errorf("could not sync[add] user groups: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func resolveMappedMemberships(sourceUserGroups container.Set[string], sourceGroupTeamMapping map[string]map[string][]string) (map[string][]string, map[string][]string) {
|
|
|
|
membershipsToAdd := map[string][]string{}
|
|
|
|
membershipsToRemove := map[string][]string{}
|
|
|
|
for group, memberships := range sourceGroupTeamMapping {
|
|
|
|
isUserInGroup := sourceUserGroups.Contains(group)
|
|
|
|
if isUserInGroup {
|
|
|
|
for org, teams := range memberships {
|
Fix accidental overwriting of LDAP team memberships (#24050)
In the `for` loop, the value of `membershipsToAdd[org]` and
`membershipsToRemove[org]` is a slice that should be appended instead of
overwritten.
Due to the current overwrite, the LDAP group sync only matches the last
group at the moment.
## Example reproduction
- an LDAP user is both a member of
`cn=admin_staff,ou=people,dc=planetexpress,dc=com` and
`cn=ship_crew,ou=people,dc=planetexpress,dc=com`.
- configuration of `Map LDAP groups to Organization teams ` in
`Authentication Sources`:
```json
{
"cn=admin_staff,ou=people,dc=planetexpress,dc=com":{
"test_organization":[
"admin_staff",
"test_add"
]
},
"cn=ship_crew,ou=people,dc=planetexpress,dc=com":{
"test_organization":[
"ship_crew"
]
}
```
- start `Synchronize external user data` task in the `Dashboard`.
- the user was only added for the team `test_organization.ship_crew`
2023-04-12 01:54:26 +02:00
|
|
|
membershipsToAdd[org] = append(membershipsToAdd[org], teams...)
|
2023-02-08 07:44:42 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for org, teams := range memberships {
|
Fix accidental overwriting of LDAP team memberships (#24050)
In the `for` loop, the value of `membershipsToAdd[org]` and
`membershipsToRemove[org]` is a slice that should be appended instead of
overwritten.
Due to the current overwrite, the LDAP group sync only matches the last
group at the moment.
## Example reproduction
- an LDAP user is both a member of
`cn=admin_staff,ou=people,dc=planetexpress,dc=com` and
`cn=ship_crew,ou=people,dc=planetexpress,dc=com`.
- configuration of `Map LDAP groups to Organization teams ` in
`Authentication Sources`:
```json
{
"cn=admin_staff,ou=people,dc=planetexpress,dc=com":{
"test_organization":[
"admin_staff",
"test_add"
]
},
"cn=ship_crew,ou=people,dc=planetexpress,dc=com":{
"test_organization":[
"ship_crew"
]
}
```
- start `Synchronize external user data` task in the `Dashboard`.
- the user was only added for the team `test_organization.ship_crew`
2023-04-12 01:54:26 +02:00
|
|
|
membershipsToRemove[org] = append(membershipsToRemove[org], teams...)
|
2023-02-08 07:44:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return membershipsToAdd, membershipsToRemove
|
|
|
|
}
|
|
|
|
|
|
|
|
func syncGroupsToTeamsCached(ctx context.Context, user *user_model.User, orgTeamMap map[string][]string, action syncType, orgCache map[string]*organization.Organization, teamCache map[string]*organization.Team) error {
|
|
|
|
for orgName, teamNames := range orgTeamMap {
|
|
|
|
var err error
|
|
|
|
org, ok := orgCache[orgName]
|
|
|
|
if !ok {
|
|
|
|
org, err = organization.GetOrgByName(ctx, orgName)
|
|
|
|
if err != nil {
|
|
|
|
if organization.IsErrOrgNotExist(err) {
|
|
|
|
// organization must be created before group sync
|
|
|
|
log.Warn("group sync: Could not find organisation %s: %v", orgName, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
orgCache[orgName] = org
|
|
|
|
}
|
|
|
|
for _, teamName := range teamNames {
|
|
|
|
team, ok := teamCache[orgName+teamName]
|
|
|
|
if !ok {
|
|
|
|
team, err = org.GetTeam(ctx, teamName)
|
|
|
|
if err != nil {
|
|
|
|
if organization.IsErrTeamNotExist(err) {
|
|
|
|
// team must be created before group sync
|
|
|
|
log.Warn("group sync: Could not find team %s: %v", teamName, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
teamCache[orgName+teamName] = team
|
|
|
|
}
|
|
|
|
|
|
|
|
isMember, err := organization.IsTeamMember(ctx, org.ID, team.ID, user.ID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if action == syncAdd && !isMember {
|
|
|
|
if err := models.AddTeamMember(team, user.ID); err != nil {
|
|
|
|
log.Error("group sync: Could not add user to team: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else if action == syncRemove && isMember {
|
|
|
|
if err := models.RemoveTeamMember(team, user.ID); err != nil {
|
|
|
|
log.Error("group sync: Could not remove user from team: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|