error.py 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. from dataclasses import dataclass
  2. @dataclass
  3. class LCRedirect(Exception):
  4. path: str
  5. def to_path(self) -> str:
  6. return self.path
  7. class LCException(Exception):
  8. def to_json(self) -> dict:
  9. return {"error": str(self)}
  10. def http_code(self) -> int:
  11. return 500
  12. @dataclass
  13. class BadPayload(LCException):
  14. key: str
  15. def __str__(self):
  16. return f"Missing value for '{self.key}' in request"
  17. def http_code(self) -> int:
  18. return 400
  19. @dataclass
  20. class UserExists(LCException):
  21. name: str
  22. def __str__(self):
  23. return f"A user named {self.name} already exists."
  24. @dataclass
  25. class NoSuchUser(LCException):
  26. name: str
  27. def __str__(self):
  28. return f"No user named {self.name} exists."
  29. def http_code(self) -> int:
  30. return 404
  31. @dataclass
  32. class BadPassword(LCException):
  33. name: str
  34. def __str__(self):
  35. return f"Wrong password for user {self.name}."
  36. def http_code(self) -> int:
  37. return 403
  38. @dataclass
  39. class NotImplemented(LCException):
  40. def __str__(self):
  41. return f"Bad request: no handler for route."
  42. def http_code(self) -> int:
  43. return 404
  44. @dataclass
  45. class BadPermissions(LCException):
  46. def __str__(self):
  47. return f"Insufficient permissions."
  48. def http_code(self) -> int:
  49. return 403
  50. @dataclass
  51. class BadContentType(LCException):
  52. content_type: str
  53. def __str__(self):
  54. return f"Bad content type for request: {self.content_type}"
  55. def http_code(self) -> int:
  56. return 403
  57. @dataclass
  58. class NoSuchInvite(LCException):
  59. invite: str
  60. def __str__(self):
  61. return f"No such invite code: {self.invite}."
  62. def http_code(self) -> int:
  63. return 404
  64. @dataclass
  65. class AlreadyUsedInvite(LCException):
  66. invite: str
  67. def __str__(self):
  68. return f"Invite code {self.invite} already taken."
  69. def http_code(self) -> int:
  70. return 403
  71. @dataclass
  72. class MismatchedPassword(LCException):
  73. def __str__(self):
  74. return f"Provided passwords do not match. Please check your passwords."
  75. def http_code(self) -> int:
  76. return 400