ldp_rs.py 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  2. from lakesuperior.model.ldpr import Ldpr, atomic
  3. class LdpRs(Ldpr):
  4. '''LDP-RS (LDP RDF source).
  5. Definition: https://www.w3.org/TR/ldp/#ldprs
  6. '''
  7. def __init__(self, uuid, repr_opts={}, handling='lenient', **kwargs):
  8. '''
  9. Extends Ldpr.__init__ by adding LDP-RS specific parameters.
  10. @param handling (string) One of `strict`, `lenient` (the default) or
  11. `none`. `strict` raises an error if a server-managed term is in the
  12. graph. `lenient` removes all sever-managed triples encountered. `none`
  13. skips all server-managed checks. It is used for internal modifications.
  14. '''
  15. super().__init__(uuid, **kwargs)
  16. # provided_imr can be empty. If None, it is an outbound resource.
  17. if self.provided_imr is not None:
  18. self.workflow = self.WRKF_INBOUND
  19. else:
  20. self.workflow = self.WRKF_OUTBOUND
  21. self._imr_options = repr_opts
  22. self.handling = handling
  23. ## LDP METHODS ##
  24. @atomic
  25. def patch(self, update_str):
  26. '''
  27. https://www.w3.org/TR/ldp/#ldpr-HTTP_PATCH
  28. Update an existing resource by applying a SPARQL-UPDATE query.
  29. @param update_str (string) SPARQL-Update staements.
  30. '''
  31. delta = self._sparql_delta(update_str.replace('<>', self.urn.n3()))
  32. return self._modify_rsrc(self.RES_UPDATED, *delta)
  33. class Ldpc(LdpRs):
  34. '''LDPC (LDP Container).'''
  35. def __init__(self, uuid, *args, **kwargs):
  36. super().__init__(uuid, *args, **kwargs)
  37. self.base_types.update({
  38. nsc['fcrepo'].Container,
  39. nsc['ldp'].Container,
  40. })
  41. class LdpBc(Ldpc):
  42. '''LDP-BC (LDP Basic Container).'''
  43. def __init__(self, uuid, *args, **kwargs):
  44. super().__init__(uuid, *args, **kwargs)
  45. self.base_types.update({
  46. nsc['ldp'].BasicContainer,
  47. })
  48. class LdpDc(Ldpc):
  49. '''LDP-DC (LDP Direct Container).'''
  50. def __init__(self, uuid, *args, **kwargs):
  51. super().__init__(uuid, *args, **kwargs)
  52. self.base_types.update({
  53. nsc['ldp'].DirectContainer,
  54. })
  55. class LdpIc(Ldpc):
  56. '''LDP-IC (LDP Indirect Container).'''
  57. def __init__(self, uuid, *args, **kwargs):
  58. super().__init__(uuid, *args, **kwargs)
  59. self.base_types.update({
  60. nsc['ldp'].IndirectContainer,
  61. })