ldp_rs.py 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. from rdflib import Graph
  2. from lakesuperior.env import env
  3. from lakesuperior.globals import RES_UPDATED
  4. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  5. from lakesuperior.model.ldpr import Ldpr
  6. class LdpRs(Ldpr):
  7. '''LDP-RS (LDP RDF source).
  8. Definition: https://www.w3.org/TR/ldp/#ldprs
  9. '''
  10. def __init__(self, uuid, repr_opts={}, handling='lenient', **kwargs):
  11. '''
  12. Extends Ldpr.__init__ by adding LDP-RS specific parameters.
  13. @param handling (string) One of `strict`, `lenient` (the default) or
  14. `none`. `strict` raises an error if a server-managed term is in the
  15. graph. `lenient` removes all sever-managed triples encountered. `none`
  16. skips all server-managed checks. It is used for internal modifications.
  17. '''
  18. super().__init__(uuid, **kwargs)
  19. self.base_types = super().base_types | {
  20. nsc['fcrepo'].Container,
  21. nsc['ldp'].Container,
  22. }
  23. # provided_imr can be empty. If None, it is an outbound resource.
  24. if self.provided_imr is not None:
  25. self.workflow = self.WRKF_INBOUND
  26. else:
  27. self.workflow = self.WRKF_OUTBOUND
  28. self._imr_options = repr_opts
  29. self.handling = handling
  30. ## LDP METHODS ##
  31. def patch(self, update_str):
  32. '''
  33. Update an existing resource by applying a SPARQL-UPDATE query.
  34. @param update_str (string) SPARQL-Update staements.
  35. '''
  36. self.handling = 'lenient' # FCREPO does that and Hyrax requires it.
  37. return self._sparql_update(update_str)
  38. #def _sparql_delta(self, q):
  39. # '''
  40. # Calculate the delta obtained by a SPARQL Update operation.
  41. # This is a critical component of the SPARQL update prcess and does a
  42. # couple of things:
  43. # 1. It ensures that no resources outside of the subject of the request
  44. # are modified (e.g. by variable subjects)
  45. # 2. It verifies that none of the terms being modified is server managed.
  46. # This method extracts an in-memory copy of the resource and performs the
  47. # query on that once it has checked if any of the server managed terms is
  48. # in the delta. If it is, it raises an exception.
  49. # NOTE: This only checks if a server-managed term is effectively being
  50. # modified. If a server-managed term is present in the query but does not
  51. # cause any change in the updated resource, no error is raised.
  52. # @return tuple(rdflib.Graph) Remove and add graphs. These can be used
  53. # with `BaseStoreLayout.update_resource` and/or recorded as separate
  54. # events in a provenance tracking system.
  55. # '''
  56. # self._logger.debug('Provided SPARQL query: {}'.format(q))
  57. # pre_gr = self.imr.graph
  58. # post_gr = pre_gr | Graph()
  59. # post_gr.update(q)
  60. # remove_gr, add_gr = self._dedup_deltas(pre_gr, post_gr)
  61. # #self._logger.debug('Removing: {}'.format(
  62. # # remove_gr.serialize(format='turtle').decode('utf8')))
  63. # #self._logger.debug('Adding: {}'.format(
  64. # # add_gr.serialize(format='turtle').decode('utf8')))
  65. # remove_gr = self._check_mgd_terms(remove_gr)
  66. # add_gr = self._check_mgd_terms(add_gr)
  67. # return set(remove_gr), set(add_gr)
  68. class Ldpc(LdpRs):
  69. '''LDPC (LDP Container).'''
  70. def __init__(self, uuid, *args, **kwargs):
  71. super().__init__(uuid, *args, **kwargs)
  72. self.base_types |= {
  73. nsc['fcrepo'].Container,
  74. nsc['ldp'].Container,
  75. }
  76. class LdpBc(Ldpc):
  77. '''LDP-BC (LDP Basic Container).'''
  78. def __init__(self, uuid, *args, **kwargs):
  79. super().__init__(uuid, *args, **kwargs)
  80. self.base_types |= {
  81. nsc['ldp'].BasicContainer,
  82. }
  83. class LdpDc(Ldpc):
  84. '''LDP-DC (LDP Direct Container).'''
  85. def __init__(self, uuid, *args, **kwargs):
  86. super().__init__(uuid, *args, **kwargs)
  87. self.base_types |= {
  88. nsc['ldp'].DirectContainer,
  89. }
  90. class LdpIc(Ldpc):
  91. '''LDP-IC (LDP Indirect Container).'''
  92. def __init__(self, uuid, *args, **kwargs):
  93. super().__init__(uuid, *args, **kwargs)
  94. self.base_types |= {
  95. nsc['ldp'].IndirectContainer,
  96. }