-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move Rest API auth related methods to FAB auth manager (#34924)
- Loading branch information
Showing
11 changed files
with
654 additions
and
482 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# | ||
# 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# | ||
# 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# | ||
# 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# 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 functools import wraps | ||
from typing import TYPE_CHECKING, Any, Callable, TypeVar, cast | ||
|
||
from flask import Response, request | ||
from flask_appbuilder.const import AUTH_LDAP | ||
from flask_login import login_user | ||
|
||
from airflow.utils.airflow_flask_app import get_airflow_app | ||
|
||
if TYPE_CHECKING: | ||
from airflow.auth.managers.fab.models import User | ||
|
||
CLIENT_AUTH: tuple[str, str] | Any | None = None | ||
|
||
T = TypeVar("T", bound=Callable) | ||
|
||
|
||
def init_app(_): | ||
"""Initialize authentication backend.""" | ||
|
||
|
||
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 | ||
|
||
ab_security_manager = get_airflow_app().appbuilder.sm | ||
user = None | ||
if ab_security_manager.auth_type == AUTH_LDAP: | ||
user = ab_security_manager.auth_user_ldap(auth.username, auth.password) | ||
if user is None: | ||
user = ab_security_manager.auth_user_db(auth.username, auth.password) | ||
if user is not None: | ||
login_user(user, remember=False) | ||
return user | ||
|
||
|
||
def requires_authentication(function: T): | ||
"""Decorate functions that require authentication.""" | ||
|
||
@wraps(function) | ||
def decorated(*args, **kwargs): | ||
if auth_current_user() is not None: | ||
return function(*args, **kwargs) | ||
else: | ||
return Response("Unauthorized", 401, {"WWW-Authenticate": "Basic"}) | ||
|
||
return cast(T, decorated) |
39 changes: 39 additions & 0 deletions
39
airflow/auth/managers/fab/api/auth/backend/kerberos_auth.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# | ||
# 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 | ||
|
||
import logging | ||
from functools import partial | ||
from typing import Any | ||
|
||
from requests_kerberos import HTTPKerberosAuth | ||
|
||
from airflow.api.auth.backend.kerberos_auth import ( | ||
init_app as base_init_app, | ||
requires_authentication as base_requires_authentication, | ||
) | ||
from airflow.utils.airflow_flask_app import get_airflow_app | ||
|
||
log = logging.getLogger(__name__) | ||
|
||
CLIENT_AUTH: tuple[str, str] | Any | None = HTTPKerberosAuth(service="airflow") | ||
|
||
init_app = base_init_app | ||
requires_authentication = partial( | ||
base_requires_authentication, find_user=get_airflow_app().appbuilder.sm.find_user | ||
) |
Oops, something went wrong.