ldp_rs.py 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. from copy import deepcopy
  2. from rdflib.namespace import RDF, XSD
  3. from rdflib.plugins.sparql.parser import parseUpdate
  4. from rdflib.term import URIRef, Literal, Variable
  5. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  6. from lakesuperior.dictionaries.srv_mgd_terms import srv_mgd_subjects, \
  7. srv_mgd_predicates, srv_mgd_types
  8. from lakesuperior.model.ldpr import Ldpr, transactional, must_exist, \
  9. ResourceNotExistsError, ServerManagedTermError
  10. from lakesuperior.util.translator import Translator
  11. class LdpRs(Ldpr):
  12. '''LDP-RS (LDP RDF source).
  13. Definition: https://www.w3.org/TR/ldp/#ldprs
  14. '''
  15. base_types = {
  16. nsc['ldp'].RDFSource
  17. }
  18. std_headers = {
  19. 'Accept-Post' : {
  20. 'text/turtle',
  21. 'text/rdf+n3',
  22. 'text/n3',
  23. 'application/rdf+xml',
  24. 'application/n-triples',
  25. 'application/ld+json',
  26. 'multipart/form-data',
  27. 'application/sparql-update',
  28. },
  29. 'Accept-Patch' : {
  30. 'application/sparql-update',
  31. },
  32. }
  33. def head(self):
  34. '''
  35. Return values for the headers.
  36. '''
  37. headers = self.rdfly.headers
  38. for t in self.ldp_types:
  39. headers['Link'].append('{};rel="type"'.format(t.identifier.n3()))
  40. return headers
  41. def get(self, inbound=False, children=True, srv_mgd=True):
  42. '''
  43. https://www.w3.org/TR/ldp/#ldpr-HTTP_GET
  44. '''
  45. im_rsrc = self.rdfly.out_rsrc(inbound)
  46. if not len(im_rsrc.graph):
  47. raise ResourceNotExistsError()
  48. return Translator.globalize_rsrc(im_rsrc)
  49. @transactional
  50. @must_exist
  51. def patch(self, data):
  52. '''
  53. https://www.w3.org/TR/ldp/#ldpr-HTTP_PATCH
  54. '''
  55. self._check_mgd_terms(data)
  56. self.rdfly.patch_rsrc(data)
  57. ## PROTECTED METHODS ##
  58. def _check_mgd_terms(self, q):
  59. '''Parse tokens in update query and verify that none of the terms being
  60. modified is server-managed.
  61. The only reasonable way to do this is to perform the query on a copy
  62. and verify if any of the server managed terms is in the delta. If it
  63. is, it means that some server-managed term is being modified and
  64. an error should be raised.
  65. NOTE: This only checks if a server-managed term is effectively being
  66. modified. If a server-managed term is present in the query but does not
  67. cause any change in the updated resource, no error is raised.
  68. '''
  69. before_test = self.rdfly.extract_imr().graph
  70. after_test = deepcopy(before_test)
  71. after_test.update(q)
  72. delta = before_test ^ after_test
  73. self._logger.info('Delta: {}'.format(delta.serialize(format='turtle')
  74. .decode('utf8')))
  75. for s,p,o in delta:
  76. if s in srv_mgd_subjects:
  77. raise ServerManagedTermError(
  78. 'Subject {} is server managed and cannot be modified.'
  79. .format(s))
  80. if p in srv_mgd_predicates:
  81. raise ServerManagedTermError(
  82. 'Predicate {} is server managed and cannot be modified.'
  83. .format(p))
  84. if p == RDF.type and o in srv_mgd_types:
  85. raise ServerManagedTermError(
  86. 'RDF type {} is server managed and cannot be modified.'
  87. .format(o))
  88. class Ldpc(LdpRs):
  89. '''LDPC (LDP Container).'''
  90. def __init__(self, uuid):
  91. super().__init__(uuid)
  92. self.base_types.update({
  93. nsc['ldp'].Container,
  94. })
  95. class LdpBc(Ldpc):
  96. '''LDP-BC (LDP Basic Container).'''
  97. def __init__(self, uuid):
  98. super().__init__(uuid)
  99. self.base_types.update({
  100. nsc['ldp'].BasicContainer,
  101. })
  102. class LdpDc(Ldpc):
  103. '''LDP-DC (LDP Direct Container).'''
  104. def __init__(self, uuid):
  105. super().__init__(uuid)
  106. self.base_types.update({
  107. nsc['ldp'].DirectContainer,
  108. })
  109. class LdpIc(Ldpc):
  110. '''LDP-IC (LDP Indirect Container).'''
  111. def __init__(self, uuid):
  112. super().__init__(uuid)
  113. self.base_types.update({
  114. nsc['ldp'].IndirectContainer,
  115. })