我使用 flask-restful 来创建我的 API。我已用于flask-jwt
启用基于JWT
. 现在我需要做授权。
我试过把我的授权装饰器。
test.py (/测试 api)
from flask_restful import Resource
from flask_jwt import jwt_required
from authorization_helper import authorized_api_user_type
class Test(Resource):
decorators = [jwt_required(), authorized_api_user_type()]
def get(self):
return 'GET OK'
def post(self):
return 'POST OK'
基本上要处理基本授权,我需要访问current_identity
并检查它的类型。然后根据它的类型,我将决定用户是否有权访问 api / 资源。
但current_identity
似乎empty
在那个装饰器中。因此,为了间接获得它,我必须查看代码jwt_handler
并在那里完成工作。
授权助手.py
from functools import wraps
from flask_jwt import _jwt, JWTError
import jwt
from models import Teacher, Student
def authorized_api_user_type(realm=None, user_type='teacher'):
def wrapper(fn):
@wraps(fn)
def decorator(*args, **kwargs):
token = _jwt.request_callback()
if token is None:
raise JWTError('Authorization Required', 'Request does not contain an access token',
headers={'WWW-Authenticate': 'JWT realm="%s"' % realm})
try:
payload = _jwt.jwt_decode_callback(token)
except jwt.InvalidTokenError as e:
raise JWTError('Invalid token', str(e))
identity = _jwt.identity_callback(payload)
if user_type == 'student' and isinstance(identity, Student):
return fn(*args, **kwargs)
elif user_type == 'teacher' and isinstance(identity, Teacher):
return fn(*args, **kwargs)
# NOTE - By default JWTError throws 401. We needed 404. Hence status_code=404
raise JWTError('Unauthorized',
'You are unauthorized to request the api or access the resource',
status_code=404)
return decorator
return wrapper
为什么我不能只current_identity
在我的authorized_api_user_type
装饰器中访问?在烧瓶中进行授权的正确方法是什么?