This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
devicehub-teal/ereuse_devicehub/api/views.py

39 lines
1015 B
Python
Raw Normal View History

2022-04-06 17:43:35 +00:00
from binascii import Error as asciiError
from flask import Blueprint, jsonify, request
from flask.views import View
from werkzeug.exceptions import Unauthorized
from ereuse_devicehub.auth import Auth
api = Blueprint('api', __name__, url_prefix='/api')
class LoginMix(View):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.authenticate()
def authenticate(self):
unauthorized = Unauthorized('Provide a suitable token.')
basic_token = request.headers.get('Authorization', " ").split(" ")
if not len(basic_token) == 2:
raise unauthorized
token = basic_token[1]
try:
token = Auth.decode(token)
except asciiError:
raise unauthorized
self.user = Auth().authenticate(token)
class InventoryView(LoginMix):
methods = ['POST']
def dispatch_request(self):
return jsonify("Ok")
api.add_url_rule('/inventory/', view_func=InventoryView.as_view('inventory'))