diff options
author | zsloan | 2020-06-24 17:13:45 -0500 |
---|---|---|
committer | zsloan | 2020-06-24 17:13:45 -0500 |
commit | 645c07b98aae9508e8a0aeedd8eaca815d5daf54 (patch) | |
tree | dfb545105f95bd35fe87c549049d3833281aa6bb /wqflask/utility/authentication_tools.py | |
parent | 9b1aecdbb51c7cb843ca79ab430d8dc2b9d3767e (diff) | |
download | genenetwork2-645c07b98aae9508e8a0aeedd8eaca815d5daf54.tar.gz |
Temporary partial fix to issue of resources without info; need to add something that automatically inserts resources with default privileges
Diffstat (limited to 'wqflask/utility/authentication_tools.py')
-rw-r--r-- | wqflask/utility/authentication_tools.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/wqflask/utility/authentication_tools.py b/wqflask/utility/authentication_tools.py index 06b2854a..f9028f32 100644 --- a/wqflask/utility/authentication_tools.py +++ b/wqflask/utility/authentication_tools.py @@ -32,6 +32,8 @@ def check_resource_availability(dataset, trait_id=None): if resource_id: resource_info = get_resource_info(resource_id) + if not resource_info: + return webqtlConfig.DEFAULT_PRIVILEGES else: return response #ZS: Need to substitute in something that creates the resource in Redis later @@ -85,9 +87,10 @@ def check_owner_or_admin(dataset=None, trait_id=None, resource_id=None): return "owner" resource_info = get_resource_info(resource_id) - if g.user_session.user_id == resource_info['owner_id']: - return "owner" - else: - return check_admin(resource_id) + if resource_info: + if g.user_session.user_id == resource_info['owner_id']: + return "owner" + else: + return check_admin(resource_id) return "not-admin"
\ No newline at end of file |