-
Notifications
You must be signed in to change notification settings - Fork 14.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Guest token (for embedded dashboard auth) (#17517)
* generate an embed token * improve existing tests * add some auth setup, and rename token * fix the stuff for compatibility with external request loaders * docs, standard jwt claims, tweaks * black * lint * tests, and safer token decoding * linting * type annotation * prettier * add feature flag * quiet pylint * apparently typing is a problem again * Make guest role name configurable * fake being a non-anonymous user * just one log entry * customizable algo * lint * lint again * 403 works now! * get guest token from header instead of cookie * Revert "403 works now!" This reverts commit df2f49a. * fix tests * Revert "Revert "403 works now!"" This reverts commit 883dff3. * rename method
- Loading branch information
Showing
7 changed files
with
357 additions
and
27 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
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,73 @@ | ||
# 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 typing import List, Optional, TypedDict, Union | ||
|
||
from flask_appbuilder.security.sqla.models import Role | ||
from flask_login import AnonymousUserMixin | ||
|
||
|
||
class GuestTokenUser(TypedDict, total=False): | ||
username: str | ||
first_name: str | ||
last_name: str | ||
|
||
|
||
class GuestTokenResource(TypedDict): | ||
type: str | ||
id: Union[str, int] | ||
rls: Optional[str] | ||
|
||
|
||
class GuestToken(TypedDict): | ||
iat: float | ||
exp: float | ||
user: GuestTokenUser | ||
resources: List[GuestTokenResource] | ||
|
||
|
||
class GuestUser(AnonymousUserMixin): | ||
""" | ||
Used as the "anonymous" user in case of guest authentication (embedded) | ||
""" | ||
|
||
is_guest_user = True | ||
|
||
@property | ||
def is_authenticated(self) -> bool: | ||
""" | ||
This is set to true because guest users should be considered authenticated, | ||
at least in most places. The treatment of this flag is pretty inconsistent. | ||
""" | ||
return True | ||
|
||
@property | ||
def is_anonymous(self) -> bool: | ||
""" | ||
This is set to false because lots of code assumes that | ||
role = Public if user.is_anonymous == false. | ||
But guest users need to have their own role independent of Public. | ||
""" | ||
return False | ||
|
||
def __init__(self, token: GuestToken, roles: List[Role]): | ||
user = token["user"] | ||
self.guest_token = token | ||
self.username = user.get("username", "guest_user") | ||
self.first_name = user.get("first_name", "Guest") | ||
self.last_name = user.get("last_name", "User") | ||
self.roles = roles | ||
self.resources = token["resources"] |
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
Oops, something went wrong.