ldp_rs.py 5.7 KB

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