exceptions.py 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. ''' Put all exceptions here. '''
  2. class ResourceError(RuntimeError):
  3. '''
  4. Raised in an attempt to create a resource a URI that already exists and is
  5. not supposed to.
  6. This usually surfaces at the HTTP level as a 409.
  7. '''
  8. def __init__(self, uuid, msg=None):
  9. self.uuid = uuid
  10. self.msg = msg
  11. class ResourceExistsError(ResourceError):
  12. '''
  13. Raised in an attempt to create a resource a URI that already exists and is
  14. not supposed to.
  15. This usually surfaces at the HTTP level as a 409.
  16. '''
  17. def __str__(self):
  18. return self.msg or 'Resource /{} already exists.'.format(self.uuid)
  19. class ResourceNotExistsError(ResourceError):
  20. '''
  21. Raised in an attempt to create a resource a URN that does not exist and is
  22. supposed to.
  23. This usually surfaces at the HTTP level as a 404.
  24. '''
  25. def __str__(self):
  26. return self.msg or 'Resource /{} not found.'.format(self.uuid)
  27. class InvalidResourceError(ResourceError):
  28. '''
  29. Raised when an invalid resource is found.
  30. This usually surfaces at the HTTP level as a 409 or other error.
  31. '''
  32. def __str__(self):
  33. return self.msg or 'Resource /{} is invalid.'.format(self.uuid)
  34. class IncompatibleLdpTypeError(ResourceError):
  35. '''
  36. Raised when a LDP-NR resource is PUT in place of a LDP-RS and vice versa.
  37. This usually surfaces at the HTTP level as a 415.
  38. '''
  39. def __init__(self, uuid, mimetype, msg=None):
  40. super().__init__(uuid, msg)
  41. self.mimetype = mimetype
  42. def __str__(self):
  43. return self.msg or 'Invalid content type \'{}\' for resource /{}'.\
  44. format(self.mimetype, self.uuid)
  45. class ServerManagedTermError(RuntimeError):
  46. '''
  47. Raised in an attempt to change a triple containing a server-managed term.
  48. This usually surfaces at the HTTP level as a 409 or other error.
  49. '''
  50. def __init__(self, terms, term_type):
  51. if term_type == 's':
  52. term_name = 'subject'
  53. elif term_type == 'p':
  54. term_name = 'predicate'
  55. elif term_type == 't':
  56. term_name = 'RDF type'
  57. else:
  58. term_name = 'term'
  59. self.terms = terms
  60. self.term_name = term_name
  61. def __str__(self):
  62. return 'Some {}s are server managed and cannot be modified: {}'\
  63. .format(self.term_name, ' , '.join(self.terms))
  64. class InvalidTripleError(RuntimeError):
  65. '''
  66. Raised when a triple in a delta is not valid.
  67. This does not necessarily that it is not valid RDF, but rather that it may
  68. not be valid for the context it is meant to be utilized.
  69. '''
  70. def __init__(self, t):
  71. self.t = t
  72. def __str__(self):
  73. return '{} is not a valid triple.'.format(self.t)
  74. class RefIntViolationError(RuntimeError):
  75. '''
  76. Raised when a provided data set has a link to a non-existing repository
  77. resource. With some setups this is handled silently, with a strict setting
  78. it raises this exception that should return a 412 HTTP code.
  79. '''
  80. def __init__(self, o):
  81. self.o = o
  82. def __str__(self):
  83. return 'Resource {} does not exist in repository. Linking to it '\
  84. 'constitutes an integrity violation under the current setup.'\
  85. .format(self.o)
  86. class SingleSubjectError(RuntimeError):
  87. '''
  88. Raised when a SPARQL-Update query or a RDF payload for a PUT contain
  89. subjects that do not correspond to the resource being operated on.
  90. '''
  91. def __init__(self, uuid, subject):
  92. self.uuid = uuid
  93. self.subject = subject
  94. def __str__(self):
  95. return '{} is not in the topic of this RDF, which is {}'.format(
  96. self.uuid, self.subject)
  97. class TombstoneError(RuntimeError):
  98. '''
  99. Raised when a tombstone resource is found.
  100. It is up to the caller to handle this which may be a benign and expected
  101. result.
  102. '''
  103. def __init__(self, uuid, ts):
  104. self.uuid = uuid
  105. self.ts = ts
  106. def __str__(self):
  107. return 'Discovered tombstone resource at /{}, departed: {}'.format(
  108. self.uuid, self.ts)