ldp_rs.py 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. base_types = {
  8. nsc['fcrepo'].Resource,
  9. nsc['ldp'].Resource,
  10. nsc['ldp'].RDFSource,
  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. # provided_imr can be empty. If None, it is an outbound resource.
  22. if self.provided_imr is not None:
  23. self.workflow = self.WRKF_INBOUND
  24. else:
  25. self.workflow = self.WRKF_OUTBOUND
  26. self._imr_options = repr_opts
  27. self.handling = handling
  28. ## LDP METHODS ##
  29. @atomic
  30. def patch(self, update_str):
  31. '''
  32. https://www.w3.org/TR/ldp/#ldpr-HTTP_PATCH
  33. Update an existing resource by applying a SPARQL-UPDATE query.
  34. @param update_str (string) SPARQL-Update staements.
  35. '''
  36. delta = self._sparql_delta(update_str.replace('<>', self.urn.n3()))
  37. return self._modify_rsrc(self.RES_UPDATED, *delta)
  38. class Ldpc(LdpRs):
  39. '''LDPC (LDP Container).'''
  40. def __init__(self, uuid, *args, **kwargs):
  41. super().__init__(uuid, *args, **kwargs)
  42. self.base_types.update({
  43. nsc['fcrepo'].Container,
  44. nsc['ldp'].Container,
  45. })
  46. class LdpBc(Ldpc):
  47. '''LDP-BC (LDP Basic Container).'''
  48. def __init__(self, uuid, *args, **kwargs):
  49. super().__init__(uuid, *args, **kwargs)
  50. self.base_types.update({
  51. nsc['ldp'].BasicContainer,
  52. })
  53. class LdpDc(Ldpc):
  54. '''LDP-DC (LDP Direct Container).'''
  55. def __init__(self, uuid, *args, **kwargs):
  56. super().__init__(uuid, *args, **kwargs)
  57. self.base_types.update({
  58. nsc['ldp'].DirectContainer,
  59. })
  60. class LdpIc(Ldpc):
  61. '''LDP-IC (LDP Indirect Container).'''
  62. def __init__(self, uuid, *args, **kwargs):
  63. super().__init__(uuid, *args, **kwargs)
  64. self.base_types.update({
  65. nsc['ldp'].IndirectContainer,
  66. })