Source code for airflow.providers.fab.auth_manager.views.auth_oauth

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.

"""Custom OAuth authentication view to fix session timing race condition."""

from __future__ import annotations

import logging

from flask import session
from flask_appbuilder.security.views import AuthOAuthView

from airflow.configuration import conf

[docs] log = logging.getLogger(__name__)
[docs] class CustomAuthOAuthView(AuthOAuthView): """ Custom OAuth authentication view that ensures session is committed before redirect. Fixes issue #57981 where UI requests fail with 401 during OAuth flow because the Flask session is not yet committed when the redirect response is sent. """
[docs] def oauth_authorized(self, provider): """ OAuth callback handler that explicitly commits session before redirect. This method overrides the parent's oauth_authorized to ensure that the Flask session (containing OAuth tokens and user authentication) is fully committed to the session backend (cookie or database) before redirecting the user to the UI. This prevents the race condition where the UI makes API requests before the session is available, causing temporary 401 errors during login. Args: provider: OAuth provider name (e.g., 'azure', 'google', 'github') Returns: Flask response object (redirect to original URL or home page) """ log.debug("OAuth callback received for provider: %s", provider) # Call parent's OAuth callback handling # This processes the OAuth response, authenticates the user, and sets session data response = super().oauth_authorized(provider) # Explicitly mark the Flask session as modified to ensure it's persisted # before the redirect response is sent to the client session.modified = True session_backend = conf.get("fab", "SESSION_BACKEND", fallback="securecookie") log.debug("Marked session as modified for %s backend", session_backend) log.debug("OAuth callback handling completed for provider: %s", provider) return response

Was this entry helpful?