2018-05-08 14:45:09 +00:00
|
|
|
import sys
|
2018-05-07 15:17:19 +00:00
|
|
|
from flask import Blueprint, request, g
|
|
|
|
from flask_restful import Api, Resource, abort
|
|
|
|
from functools import wraps
|
2018-05-07 11:57:53 +00:00
|
|
|
from marshmallow import ValidationError
|
2018-10-06 11:38:27 +00:00
|
|
|
from app.accounts.api import validate_token
|
2018-05-06 19:42:21 +00:00
|
|
|
|
2018-05-07 14:13:07 +00:00
|
|
|
|
2018-05-06 19:42:21 +00:00
|
|
|
api_bp = Blueprint('api', __name__)
|
|
|
|
api = Api(api_bp)
|
|
|
|
|
2018-05-07 15:17:19 +00:00
|
|
|
|
|
|
|
def protected(func):
|
|
|
|
@wraps(func)
|
|
|
|
def protected_function(*args, **kwargs):
|
|
|
|
try:
|
|
|
|
token = request.headers['Authorization'] or None
|
|
|
|
|
|
|
|
if not token:
|
|
|
|
abort(401, message='Unauthorized', status='error')
|
|
|
|
|
|
|
|
g.current_account = validate_token(token.replace("Bearer ", ""))
|
|
|
|
if not g.current_account:
|
|
|
|
abort(401, message='Unauthorized', status='error')
|
|
|
|
except Exception:
|
2018-05-08 14:45:09 +00:00
|
|
|
error_type, error_instance, traceback = sys.exc_info()
|
|
|
|
print(str(error_type))
|
|
|
|
print(str(error_instance))
|
2018-05-07 15:17:19 +00:00
|
|
|
abort(401, message='Unauthorized', status='error')
|
|
|
|
|
2018-05-08 14:45:09 +00:00
|
|
|
return func(*args, **kwargs)
|
|
|
|
|
2018-05-07 15:17:19 +00:00
|
|
|
return protected_function
|
|
|
|
|
|
|
|
|
2018-09-22 23:33:31 +00:00
|
|
|
def requires_permission(permission, action_name='Action'):
|
|
|
|
def requires_permission_decorator(func):
|
|
|
|
@wraps(func)
|
|
|
|
def permission_protected_function(*args, **kwargs):
|
|
|
|
if permission not in g.current_account.role.permissions:
|
|
|
|
abort(403,
|
|
|
|
message=(action_name+' is not allowed'),
|
|
|
|
status='error')
|
|
|
|
|
|
|
|
return func(*args, **kwargs)
|
|
|
|
|
|
|
|
return permission_protected_function
|
|
|
|
|
|
|
|
return requires_permission_decorator
|
|
|
|
|
|
|
|
|
2018-05-07 15:17:19 +00:00
|
|
|
class ProtectedResource(Resource):
|
|
|
|
method_decorators = [protected]
|
|
|
|
|
|
|
|
|
|
|
|
def add_resources():
|
2018-09-22 17:01:50 +00:00
|
|
|
from .resources.account import (AccountResource,
|
|
|
|
AccountListResource,
|
2018-09-22 23:22:19 +00:00
|
|
|
AccountRoleResource,
|
|
|
|
RoleResource,
|
|
|
|
RolesResource)
|
2018-05-22 14:20:14 +00:00
|
|
|
from .resources.token import TokenResource, ValidateTokenResource
|
2018-05-08 14:45:09 +00:00
|
|
|
from .resources.device import (DeviceResource,
|
|
|
|
DeviceRecordingResource,
|
2018-09-17 22:51:26 +00:00
|
|
|
DeviceListResource,
|
|
|
|
DeviceTypeResource,
|
2018-09-19 21:31:21 +00:00
|
|
|
DeviceTypeListResource,
|
|
|
|
DeviceConfigurationResource)
|
2018-09-19 23:42:37 +00:00
|
|
|
from .resources.dashboard import DashboardResource, DashboardListResource
|
2018-05-07 15:17:19 +00:00
|
|
|
|
2018-05-08 08:52:36 +00:00
|
|
|
api.add_resource(AccountResource, '/v1/accounts/<int:account_id>')
|
|
|
|
api.add_resource(AccountListResource, '/v1/accounts')
|
2018-09-22 17:01:50 +00:00
|
|
|
api.add_resource(AccountRoleResource, '/v1/accounts/<int:account_id>/role')
|
2018-09-22 23:22:19 +00:00
|
|
|
api.add_resource(RoleResource, '/v1/roles/<int:role_id>')
|
|
|
|
api.add_resource(RolesResource, '/v1/roles')
|
2018-05-07 15:17:19 +00:00
|
|
|
api.add_resource(TokenResource, '/v1/token')
|
2018-05-22 14:20:14 +00:00
|
|
|
api.add_resource(ValidateTokenResource, '/v1/token/validate')
|
2018-05-08 14:45:09 +00:00
|
|
|
api.add_resource(DeviceResource, '/v1/devices/<int:device_id>')
|
|
|
|
api.add_resource(DeviceRecordingResource,
|
|
|
|
'/v1/devices/<int:device_id>/recordings')
|
|
|
|
api.add_resource(DeviceListResource, '/v1/devices')
|
2018-09-17 22:51:26 +00:00
|
|
|
api.add_resource(DeviceTypeResource,
|
|
|
|
'/v1/devices/types/<int:device_type_id>')
|
|
|
|
api.add_resource(DeviceTypeListResource, '/v1/devices/types')
|
2018-09-19 21:31:21 +00:00
|
|
|
api.add_resource(DeviceConfigurationResource,
|
|
|
|
'/v1/devices/<int:device_id>/configuration')
|
2018-09-19 23:42:37 +00:00
|
|
|
api.add_resource(DashboardListResource, '/v1/dashboards')
|
|
|
|
api.add_resource(DashboardResource,
|
|
|
|
'/v1/dashboards/<int:dashboard_id>')
|
2018-05-07 15:17:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
add_resources()
|
2018-05-07 11:57:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
@api_bp.errorhandler(ValidationError)
|
2018-05-07 12:10:20 +00:00
|
|
|
@api_bp.errorhandler(422)
|
2018-05-07 11:57:53 +00:00
|
|
|
def handle_validation_error(e):
|
|
|
|
return {'status': 'error', 'message': str(e)}, 422
|
|
|
|
|
|
|
|
|
|
|
|
@api_bp.errorhandler(Exception)
|
|
|
|
def handle_unknown_errors(e):
|
|
|
|
return ({
|
|
|
|
'status': 'failed',
|
|
|
|
'message': 'Unknown error has occurred! ({0})'.format(str(e))
|
|
|
|
}, 500)
|