Skip to content

Commit 3386638

Browse files
ghernandez345georgekarrv
authored andcommitted
fix issue with resetting abm token teams (#26259)
For #24040 Add gitops option for the request to modify the app config. There was an issue with the abm token teams getting reset to default anytime the `PATCH /fleet/config` endpoint was called. @jahzielv and I discussed various options on how to solve this and agreed that the approach taken in this PR was the quickest but not the best. Ideally, we'd like the gitops client to send back the data to the endpoint that its going to update. This will allow the `PATCH /fleet/config` endpoint to work like a standard `PATCH` request and only update the options provided instead of updating the app config differently depending on the client calling the endpoint. - [x] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. See [Changes files](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/Committing-Changes.md#changes-files) for more information. - [x] Added/updated automated tests - [x] Manual QA for all new/changed functionality
1 parent eb0e4ef commit 3386638

File tree

5 files changed

+49
-10
lines changed

5 files changed

+49
-10
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- fix an issue where the abm token teams were being reset when making updates to the app config.

ee/server/service/mdm.go

-1
Original file line numberDiff line numberDiff line change
@@ -1301,7 +1301,6 @@ func (svc *Service) UpdateABMTokenTeams(ctx context.Context, tokenID uint, macOS
13011301
}
13021302

13031303
// validate the team IDs
1304-
13051304
token.MacOSTeam = fleet.ABMTokenTeam{Name: fleet.TeamNameNoTeam}
13061305
token.MacOSDefaultTeamID = nil
13071306
token.IOSTeam = fleet.ABMTokenTeam{Name: fleet.TeamNameNoTeam}

server/service/appconfig.go

+11-9
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,6 @@ func (svc *Service) ModifyAppConfig(ctx context.Context, p []byte, applyOpts fle
697697
}
698698
}
699699

700-
// Reset teams for ABM tokens that exist in Fleet but aren't present in the config being passed
701700
tokensInCfg := make(map[string]struct{})
702701
for _, t := range newAppConfig.MDM.AppleBusinessManager.Value {
703702
tokensInCfg[t.OrganizationName] = struct{}{}
@@ -707,13 +706,16 @@ func (svc *Service) ModifyAppConfig(ctx context.Context, p []byte, applyOpts fle
707706
if err != nil {
708707
return nil, ctxerr.Wrap(ctx, err, "listing ABM tokens")
709708
}
710-
for _, tok := range toks {
711-
if _, ok := tokensInCfg[tok.OrganizationName]; !ok {
712-
tok.MacOSDefaultTeamID = nil
713-
tok.IOSDefaultTeamID = nil
714-
tok.IPadOSDefaultTeamID = nil
715-
if err := svc.ds.SaveABMToken(ctx, tok); err != nil {
716-
return nil, ctxerr.Wrap(ctx, err, "saving ABM token assignments")
709+
710+
if newAppConfig.MDM.AppleBusinessManager.Set && len(newAppConfig.MDM.AppleBusinessManager.Value) == 0 {
711+
for _, tok := range toks {
712+
if _, ok := tokensInCfg[tok.OrganizationName]; !ok {
713+
tok.MacOSDefaultTeamID = nil
714+
tok.IOSDefaultTeamID = nil
715+
tok.IPadOSDefaultTeamID = nil
716+
if err := svc.ds.SaveABMToken(ctx, tok); err != nil {
717+
return nil, ctxerr.Wrap(ctx, err, "saving ABM token assignments")
718+
}
717719
}
718720
}
719721
}
@@ -1224,7 +1226,7 @@ func (svc *Service) validateABMAssignments(
12241226
return []*fleet.ABMToken{tok}, nil
12251227
}
12261228

1227-
if mdm.AppleBusinessManager.Set && mdm.AppleBusinessManager.Valid {
1229+
if mdm.AppleBusinessManager.Set && len(mdm.AppleBusinessManager.Value) > 0 {
12281230
if !license.IsPremium() {
12291231
invalid.Append("mdm.apple_business_manager", ErrMissingLicense.Error())
12301232
return nil, nil

server/service/client.go

+6
Original file line numberDiff line numberDiff line change
@@ -1562,6 +1562,12 @@ func (c *Client) DoGitOps(
15621562
return nil, errors.New("org_settings.mdm config is not a map")
15631563
}
15641564

1565+
if _, ok := mdmAppConfig["apple_bm_default_team"]; !ok && appConfig.License.IsPremium() {
1566+
if _, ok := mdmAppConfig["apple_business_manager"]; !ok {
1567+
mdmAppConfig["apple_business_manager"] = []interface{}{}
1568+
}
1569+
}
1570+
15651571
// Put in default value for volume_purchasing_program to clear the configuration if it's not set.
15661572
if v, ok := mdmAppConfig["volume_purchasing_program"]; !ok || v == nil {
15671573
mdmAppConfig["volume_purchasing_program"] = []interface{}{}

server/service/integration_mdm_test.go

+31
Original file line numberDiff line numberDiff line change
@@ -943,6 +943,37 @@ func (s *integrationMDMTestSuite) getABMTokenByName(orgName string, tokens []*fl
943943
return nil
944944
}
945945

946+
func (s *integrationMDMTestSuite) TestABMTeamPersistsOnConfigChange() {
947+
t := s.T()
948+
949+
s.enableABM(t.Name())
950+
951+
// Same tests, but for teams
952+
team, err := s.ds.NewTeam(context.Background(), &fleet.Team{
953+
Name: "team1",
954+
Description: "desc team1",
955+
})
956+
require.NoError(t, err)
957+
958+
tokensResp := listABMTokensResponse{}
959+
s.DoJSON("GET", "/api/latest/fleet/abm_tokens", nil, http.StatusOK, &tokensResp)
960+
tok := s.getABMTokenByName(t.Name(), tokensResp.Tokens)
961+
962+
s.DoJSON("PATCH", fmt.Sprintf("/api/latest/fleet/abm_tokens/%d/teams", tok.ID), json.RawMessage(fmt.Sprintf(`{
963+
"ios_team_id": %d
964+
}`, team.ID)), http.StatusOK, &updateABMTokenTeamsResponse{})
965+
966+
s.DoJSON("PATCH", "/api/latest/fleet/config", json.RawMessage(`{
967+
"org_info": {"org_name": "New name"}
968+
}`), http.StatusOK, &appConfigResponse{})
969+
970+
s.DoJSON("GET", "/api/latest/fleet/abm_tokens", nil, http.StatusOK, &tokensResp)
971+
972+
require.Len(t, tokensResp.Tokens, 1)
973+
assert.Equal(t, team.Name, tokensResp.Tokens[0].IOSTeam.Name)
974+
assert.Equal(t, team.ID, tokensResp.Tokens[0].IOSTeam.ID)
975+
}
976+
946977
func (s *integrationMDMTestSuite) TestABMExpiredToken() {
947978
t := s.T()
948979

0 commit comments

Comments
 (0)