Beispiel #1
0
 def get(self):
     # get the auth token
     auth_header = request.headers.get('Authorization')
     if auth_header:
         try:
             auth_token = auth_header.split(" ")[1]
         except IndexError:
             response = {
                 'status': 'fail',
                 'message': 'Bearer token malformed.'
             }
             return make_response(jsonify(response)), 401
     else:
         auth_token = ''
     if auth_token:
         resp = Account.decode_auth_token(auth_token)
         if not isinstance(resp, str):
             account = Account.query.filter_by(id=resp).first()
             response = {
                 'status': 'success',
                 'data': {
                     'user_id': account.id,
                     'email': account.email,
                     'admin': account.admin,
                     'registered_on': account.registered_on
                 }
             }
             return make_response(jsonify(response)), 200
         response = {'status': 'fail', 'message': resp}
         return make_response(jsonify(response)), 401
     else:
         response = {
             'status': 'fail',
             'message': 'Provide a valid auth token.'
         }
         return make_response(jsonify(response)), 401
Beispiel #2
0
 def test_decode_auth_token(self):
     account = Account(email="*****@*****.**", password="******")
     account.save()
     auth_token = account.encode_auth_token()
     assert isinstance(auth_token, bytes)
     assert Account.decode_auth_token(auth_token.decode('utf-8')) == 1