Skip to content

Remove deprecated auth sources#35272

Merged
techknowlogick merged 17 commits into
go-gitea:mainfrom
techknowlogick:deprecate-azure-ad-auth
Aug 23, 2025
Merged

Remove deprecated auth sources#35272
techknowlogick merged 17 commits into
go-gitea:mainfrom
techknowlogick:deprecate-azure-ad-auth

Conversation

@techknowlogick

Copy link
Copy Markdown
Member

Entra ID users should use the OIDC oauth2 provider.

They will still be shown if the instance has a previous Azure AD source configured.

Entra ID users should use the OIDC oauth2 provider
@GiteaBot GiteaBot added the lgtm/need 2 This PR needs two approvals by maintainers to be considered for merging. label Aug 13, 2025
Comment thread services/auth/source/oauth2/providers.go Outdated
@techknowlogick techknowlogick requested a review from lunny August 15, 2025 18:36
Comment thread services/auth/source/oauth2/providers.go Outdated
@GiteaBot GiteaBot added lgtm/need 1 This PR needs approval from one additional maintainer to be merged. and removed lgtm/need 2 This PR needs two approvals by maintainers to be considered for merging. labels Aug 17, 2025
@techknowlogick techknowlogick requested a review from lunny August 18, 2025 03:23
Comment thread services/auth/source/oauth2/providers.go Outdated
@techknowlogick techknowlogick requested a review from lunny August 18, 2025 15:18
@GiteaBot GiteaBot added lgtm/done This PR has enough approvals to get merged. There are no important open reservations anymore. and removed lgtm/need 1 This PR needs approval from one additional maintainer to be merged. labels Aug 18, 2025
@lunny lunny added the type/enhancement An improvement of existing functionality label Aug 18, 2025
@lunny lunny added this to the 1.25.0 milestone Aug 18, 2025
@lunny lunny added the reviewed/wait-merge This pull request is part of the merge queue. It will be merged soon. label Aug 18, 2025
Comment thread services/auth/source/oauth2/providers.go
Comment thread services/auth/source/oauth2/providers.go Outdated
existAuthSources := getExistingAzureADAuthSources(ctx)

for _, provider := range gothProviders {
if slices.Contains(azureProviders, provider.Name()) && !slices.Contains(existAuthSources, provider.Name()) {

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't that an gothProviders = gothProviders.Remove(existingAzureSources)?
(Although it will probably look different since the stdlib doesn't seem to support that method…)

@techknowlogick techknowlogick removed the reviewed/wait-merge This pull request is part of the merge queue. It will be merged soon. label Aug 18, 2025
Comment on lines +95 to +100
authSources, err := db.Find[auth.Source](ctx, auth.FindSourcesOptions{
LoginType: auth.OAuth2,
})
if err != nil {
return nil
}

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It shouldn't silently ignore an unknown error.

@techknowlogick techknowlogick enabled auto-merge (squash) August 23, 2025 20:13
@techknowlogick techknowlogick merged commit a2d88cd into go-gitea:main Aug 23, 2025
// Note: Azure AD providers (azuread, microsoftonline, azureadv2) are filtered out
// unless they already exist in the system to encourage use of OpenID Connect
func GetSupportedOAuth2Providers() []Provider {
return GetSupportedOAuth2ProvidersWithContext(context.Background())

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In most cases, context.Background shouldn't be used

-> Fix context usages #35348

@go-gitea go-gitea locked as resolved and limited conversation to collaborators Nov 22, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

lgtm/done This PR has enough approvals to get merged. There are no important open reservations anymore. type/enhancement An improvement of existing functionality

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants