Lunching for groups.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.6 KiB

#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from flask import jsonify
class LunchoException(Exception):
"""Generic exception."""
def __init__(self):
self.status = 500
self.message = 'Unknown error'
self.extra_fields = None
def response(self):
"""Return a JSON representation of the exception."""
json = {'status': 'ERROR',
'message': self.message}
if self.extra_fields:
json.update(self.extra_fields)
response = jsonify(json)
response.status_code = self.status
return response
class RequestMustBeJSONException(LunchoException):
"""The request is not a valid JSON."""
def __init__(self):
super(RequestMustBeJSONException, self).__init__()
self.status = 400
self.message = 'Request MUST be in JSON format'
class MissingFieldsException(LunchoException):
"""There are missing fields in the request."""
def __init__(self, fields):
super(MissingFieldsException, self).__init__()
self.status = 400
self.message = 'Missing fields'
self.extra_fields = {'fields': fields}
class InvalidTokenException(LunchoException):
"""The passed token is invalid."""
def __init__(self):
super(InvalidTokenException, self).__init__()
self.status = 400
self.message = 'Invalid token'
class UserNotFoundException(LunchoException):
"""There is no user with the token."""
def __init__(self):
super(UserNotFoundException, self).__init__()
self.status = 404
self.message = 'User not found (via token)'