Auth: Fix for the github_oauth parse config error (#79063)

* Fix for reverting the github_oauth parse config behaviour

* minimal changes
This commit is contained in:
Misi 2023-12-05 12:13:55 +01:00 committed by GitHub
parent f51ad749ab
commit d099292d99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 7 deletions

View File

@ -57,10 +57,7 @@ func NewGitHubProvider(settings map[string]any, cfg *setting.Cfg, features *feat
return nil, err
}
teamIds, err := mustInts(util.SplitString(info.Extra[teamIdsKey]))
if err != nil {
return nil, err
}
teamIds := mustInts(util.SplitString(info.Extra[teamIdsKey]))
config := createOAuthConfig(info, cfg, GitHubProviderName)
provider := &SocialGithub{
@ -329,14 +326,15 @@ func convertToGroupList(t []GithubTeam) []string {
return groups
}
func mustInts(s []string) ([]int, error) {
func mustInts(s []string) []int {
result := make([]int, 0, len(s))
for _, v := range s {
num, err := strconv.Atoi(v)
if err != nil {
return nil, err
// TODO: add log here
return []int{}
}
result = append(result, num)
}
return result, nil
return result
}

View File

@ -307,6 +307,16 @@ func TestSocialGitHub_InitializeExtraFields(t *testing.T) {
allowedOrganizations: []string{},
},
},
{
name: "should not error when teamIds are not integers",
settings: map[string]any{
"team_ids": "abc1234,5678",
},
want: settingFields{
teamIds: []int{},
allowedOrganizations: []string{},
},
},
}
for _, tc := range testCases {