-
Notifications
You must be signed in to change notification settings - Fork 14.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove permissions to read Configurations for User and Viewer roles (#…
…14067) Only `Admin` or `Op` roles should have permissions to view Configurations. Previously, Users with `User` or `Viewer` role were able to get/view configurations using the REST API or in the Webserver. From Airflow 2.0.1, only users with `Admin` or `Op` role would be able to get/view Configurations.
- Loading branch information
Showing
5 changed files
with
93 additions
and
3 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
64 changes: 64 additions & 0 deletions
64
airflow/migrations/versions/82b7c48c147f_remove_can_read_permission_on_config_.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,64 @@ | ||
# | ||
# 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. | ||
|
||
"""Remove can_read permission on config resource for User and Viewer role | ||
Revision ID: 82b7c48c147f | ||
Revises: 449b4072c2da | ||
Create Date: 2021-02-04 12:45:58.138224 | ||
""" | ||
|
||
from airflow.security import permissions | ||
from airflow.www.app import create_app | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = '82b7c48c147f' | ||
down_revision = '449b4072c2da' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
"""Remove can_read permission on config resource for User and Viewer role""" | ||
appbuilder = create_app(config={'FAB_UPDATE_PERMS': False}).appbuilder | ||
roles_to_modify = [role for role in appbuilder.sm.get_all_roles() if role.name in ["User", "Viewer"]] | ||
can_read_on_config_perm = appbuilder.sm.find_permission_view_menu( | ||
permissions.ACTION_CAN_READ, permissions.RESOURCE_CONFIG | ||
) | ||
|
||
for role in roles_to_modify: | ||
if appbuilder.sm.exist_permission_on_roles( | ||
permissions.RESOURCE_CONFIG, permissions.ACTION_CAN_READ, [role.id] | ||
): | ||
appbuilder.sm.del_permission_role(role, can_read_on_config_perm) | ||
|
||
|
||
def downgrade(): | ||
"""Add can_read permission on config resource for User and Viewer role""" | ||
appbuilder = create_app(config={'FAB_UPDATE_PERMS': False}).appbuilder | ||
roles_to_modify = [role for role in appbuilder.sm.get_all_roles() if role.name in ["User", "Viewer"]] | ||
can_read_on_config_perm = appbuilder.sm.find_permission_view_menu( | ||
permissions.ACTION_CAN_READ, permissions.RESOURCE_CONFIG | ||
) | ||
|
||
for role in roles_to_modify: | ||
if not appbuilder.sm.exist_permission_on_roles( | ||
permissions.RESOURCE_CONFIG, permissions.ACTION_CAN_READ, [role.id] | ||
): | ||
appbuilder.sm.add_permission_role(role, can_read_on_config_perm) |
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