ldp_rs.py 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. #from copy import deepcopy
  2. from flask import current_app, g
  3. from rdflib import Graph
  4. from rdflib.plugins.sparql.algebra import translateUpdate
  5. from rdflib.plugins.sparql.parser import parseUpdate
  6. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  7. from lakesuperior.model.ldpr import Ldpr, atomic
  8. class LdpRs(Ldpr):
  9. '''LDP-RS (LDP RDF source).
  10. Definition: https://www.w3.org/TR/ldp/#ldprs
  11. '''
  12. def __init__(self, uuid, repr_opts={}, handling='lenient', **kwargs):
  13. '''
  14. Extends Ldpr.__init__ by adding LDP-RS specific parameters.
  15. @param handling (string) One of `strict`, `lenient` (the default) or
  16. `none`. `strict` raises an error if a server-managed term is in the
  17. graph. `lenient` removes all sever-managed triples encountered. `none`
  18. skips all server-managed checks. It is used for internal modifications.
  19. '''
  20. super().__init__(uuid, **kwargs)
  21. self.base_types = super().base_types | {
  22. nsc['fcrepo'].Container,
  23. nsc['ldp'].Container,
  24. }
  25. # provided_imr can be empty. If None, it is an outbound resource.
  26. if self.provided_imr is not None:
  27. self.workflow = self.WRKF_INBOUND
  28. else:
  29. self.workflow = self.WRKF_OUTBOUND
  30. self._imr_options = repr_opts
  31. self.handling = handling
  32. ## LDP METHODS ##
  33. @atomic
  34. def patch(self, update_str):
  35. '''
  36. https://www.w3.org/TR/ldp/#ldpr-HTTP_PATCH
  37. Update an existing resource by applying a SPARQL-UPDATE query.
  38. @param update_str (string) SPARQL-Update staements.
  39. '''
  40. self.handling = 'lenient' # FCREPO does that and Hyrax requires it.
  41. local_update_str = g.tbox.localize_ext_str(update_str, self.urn)
  42. self._logger.debug('Local update string: {}'.format(local_update_str))
  43. return self._sparql_update(local_update_str)
  44. def _sparql_update(self, update_str, notify=True):
  45. '''
  46. Apply a SPARQL update to a resource.
  47. The SPARQL string is validated beforehand to make sure that it does
  48. not contain server-managed terms.
  49. In theory, server-managed terms in DELETE statements are harmless
  50. because the patch is only applied over the user-provided triples, but
  51. at the moment those are also checked.
  52. '''
  53. # Parse the SPARQL update string and validate contents.
  54. qry_struct = translateUpdate(parseUpdate(update_str))
  55. check_ins_gr = Graph()
  56. check_del_gr = Graph()
  57. for stmt in qry_struct:
  58. try:
  59. check_ins_gr += set(stmt.insert.triples)
  60. except AttributeError:
  61. pass
  62. try:
  63. check_del_gr += set(stmt.delete.triples)
  64. except AttributeError:
  65. pass
  66. self._check_mgd_terms(check_ins_gr)
  67. self._check_mgd_terms(check_del_gr)
  68. self.rdfly.patch_rsrc(self.uid, update_str)
  69. if notify and current_app.config.get('messaging'):
  70. self._send_msg(self.RES_UPDATED, check_del_gr, check_ins_gr)
  71. # @FIXME Ugly workaround until we find how to recompose a SPARQL query
  72. # string from a parsed query object.
  73. self.rdfly.clear_smt(self.uid)
  74. return self.RES_UPDATED
  75. #def _sparql_delta(self, q):
  76. # '''
  77. # Calculate the delta obtained by a SPARQL Update operation.
  78. # This is a critical component of the SPARQL update prcess and does a
  79. # couple of things:
  80. # 1. It ensures that no resources outside of the subject of the request
  81. # are modified (e.g. by variable subjects)
  82. # 2. It verifies that none of the terms being modified is server managed.
  83. # This method extracts an in-memory copy of the resource and performs the
  84. # query on that once it has checked if any of the server managed terms is
  85. # in the delta. If it is, it raises an exception.
  86. # NOTE: This only checks if a server-managed term is effectively being
  87. # modified. If a server-managed term is present in the query but does not
  88. # cause any change in the updated resource, no error is raised.
  89. # @return tuple(rdflib.Graph) Remove and add graphs. These can be used
  90. # with `BaseStoreLayout.update_resource` and/or recorded as separate
  91. # events in a provenance tracking system.
  92. # '''
  93. # self._logger.debug('Provided SPARQL query: {}'.format(q))
  94. # pre_gr = self.imr.graph
  95. # post_gr = pre_gr | Graph()
  96. # post_gr.update(q)
  97. # remove_gr, add_gr = self._dedup_deltas(pre_gr, post_gr)
  98. # #self._logger.debug('Removing: {}'.format(
  99. # # remove_gr.serialize(format='turtle').decode('utf8')))
  100. # #self._logger.debug('Adding: {}'.format(
  101. # # add_gr.serialize(format='turtle').decode('utf8')))
  102. # remove_gr = self._check_mgd_terms(remove_gr)
  103. # add_gr = self._check_mgd_terms(add_gr)
  104. # return set(remove_gr), set(add_gr)
  105. class Ldpc(LdpRs):
  106. '''LDPC (LDP Container).'''
  107. def __init__(self, uuid, *args, **kwargs):
  108. super().__init__(uuid, *args, **kwargs)
  109. self.base_types |= {
  110. nsc['fcrepo'].Container,
  111. nsc['ldp'].Container,
  112. }
  113. class LdpBc(Ldpc):
  114. '''LDP-BC (LDP Basic Container).'''
  115. def __init__(self, uuid, *args, **kwargs):
  116. super().__init__(uuid, *args, **kwargs)
  117. self.base_types |= {
  118. nsc['ldp'].BasicContainer,
  119. }
  120. class LdpDc(Ldpc):
  121. '''LDP-DC (LDP Direct Container).'''
  122. def __init__(self, uuid, *args, **kwargs):
  123. super().__init__(uuid, *args, **kwargs)
  124. self.base_types |= {
  125. nsc['ldp'].DirectContainer,
  126. }
  127. class LdpIc(Ldpc):
  128. '''LDP-IC (LDP Indirect Container).'''
  129. def __init__(self, uuid, *args, **kwargs):
  130. super().__init__(uuid, *args, **kwargs)
  131. self.base_types |= {
  132. nsc['ldp'].IndirectContainer,
  133. }