Source code for airflow.providers.fab.auth_manager.api.auth.backend.basic_auth
# 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.
"""Basic authentication backend."""
from __future__ import annotations
from collections.abc import Callable
from functools import wraps
from typing import TYPE_CHECKING, Any, TypeVar, cast
from flask import Response, current_app, request
from flask_appbuilder.const import AUTH_LDAP
from flask_login import login_user
from airflow.api_fastapi.app import get_auth_manager
if TYPE_CHECKING:
from airflow.providers.fab.auth_manager.fab_auth_manager import FabAuthManager
from airflow.providers.fab.auth_manager.models import User
[docs]
CLIENT_AUTH: tuple[str, str] | Any | None = None
[docs]
T = TypeVar("T", bound=Callable)
[docs]
def init_app(_):
"""Initialize authentication backend."""
[docs]
def auth_current_user() -> User | None:
"""Authenticate and set current user if Authorization header exists."""
auth = request.authorization
if auth is None or not auth.username or not auth.password:
return None
security_manager = cast("FabAuthManager", get_auth_manager()).security_manager
user = None
if security_manager.auth_type == AUTH_LDAP:
user = security_manager.auth_user_ldap(auth.username, auth.password)
if user is None:
user = security_manager.auth_user_db(auth.username, auth.password)
if user is not None:
login_user(user, remember=False)
return user
[docs]
def requires_authentication(function: T):
"""Decorate functions that require authentication."""
@wraps(function)
def decorated(*args, **kwargs):
if auth_current_user() is not None or current_app.config.get("AUTH_ROLE_PUBLIC", None):
return function(*args, **kwargs)
return Response("Unauthorized", 401, {"WWW-Authenticate": "Basic"})
return cast("T", decorated)