Source code for airflow.providers.fab.auth_manager.api_fastapi.routes.login
# 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.
from __future__ import annotations
from typing import Any
from fastapi import Body
from starlette import status
from starlette.requests import Request # noqa: TC002
from starlette.responses import RedirectResponse
from airflow.api_fastapi.app import get_auth_manager
from airflow.api_fastapi.auth.managers.base_auth_manager import COOKIE_NAME_JWT_TOKEN
from airflow.api_fastapi.common.router import AirflowRouter
from airflow.api_fastapi.core_api.openapi.exceptions import create_openapi_http_exception_doc
from airflow.configuration import conf
from airflow.providers.fab.auth_manager.api_fastapi.datamodels.login import LoginResponse
from airflow.providers.fab.auth_manager.api_fastapi.services.login import FABAuthManagerLogin
from airflow.providers.fab.auth_manager.cli_commands.utils import get_application_builder
[docs]
login_router = AirflowRouter(tags=["FabAuthManager"])
@login_router.post(
"/token",
response_model=LoginResponse,
status_code=status.HTTP_201_CREATED,
responses=create_openapi_http_exception_doc([status.HTTP_400_BAD_REQUEST, status.HTTP_401_UNAUTHORIZED]),
)
[docs]
def create_token(request: Request, body: dict[str, Any] = Body(...)) -> LoginResponse:
"""Generate a new API token."""
with get_application_builder():
return FABAuthManagerLogin.create_token(headers=dict(request.headers), body=body)
@login_router.post(
"/token/cli",
response_model=LoginResponse,
status_code=status.HTTP_201_CREATED,
responses=create_openapi_http_exception_doc([status.HTTP_400_BAD_REQUEST, status.HTTP_401_UNAUTHORIZED]),
)
[docs]
def create_token_cli(request: Request, body: dict[str, Any] = Body(...)) -> LoginResponse:
"""Generate a new CLI API token."""
with get_application_builder():
return FABAuthManagerLogin.create_token(
headers=dict(request.headers),
body=body,
expiration_time_in_seconds=conf.getint("api_auth", "jwt_cli_expiration_time"),
)
@login_router.get(
"/logout",
status_code=status.HTTP_307_TEMPORARY_REDIRECT,
)
[docs]
def logout(request: Request) -> RedirectResponse:
"""Generate a new API token."""
with get_application_builder():
login_url = get_auth_manager().get_url_login()
secure = request.base_url.scheme == "https" or bool(conf.get("api", "ssl_cert", fallback=""))
response = RedirectResponse(login_url)
response.delete_cookie(
key="session",
secure=secure,
httponly=True,
)
response.delete_cookie(
key=COOKIE_NAME_JWT_TOKEN,
secure=secure,
httponly=True,
)
return response