Source code for rucio.api.permission
# Copyright European Organization for Nuclear Research (CERN)
#
# Licensed 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
#
# Authors:
# - Angelos Molfetas, <angelos.molfetas@cern.ch>, 2012
# - Vincent Garonne, <vincent.garonne@cern.ch>, 2012-2013
# - Mario Lassnig, <mario.lassnig@cern.ch>, 2012
from rucio.core import permission
[docs]def has_permission(issuer, action, kwargs):
"""
Checks if an account has the specified permission to
execute an action with parameters.
:param issuer: The Account issuer.
:param action: The action (API call) called by the account.
:param kwargs: List of arguments for the action.
:returns: True if account is allowed to call the API call, otherwise False
"""
return permission.has_permission(issuer=issuer, action=action, kwargs=kwargs)