ldp_rs.py 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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='strict', **kwargs):
  13. '''
  14. Extends Ldpr.__init__ by adding LDP-RS specific parameters.
  15. @param handling (string) One of `strict` (the default), `lenient` 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. def get(self):
  30. '''
  31. https://www.w3.org/TR/ldp/#ldpr-HTTP_GET
  32. '''
  33. return self.out_graph.serialize(format='turtle')
  34. @atomic
  35. def patch(self, update_str):
  36. '''
  37. https://www.w3.org/TR/ldp/#ldpr-HTTP_PATCH
  38. Update an existing resource by applying a SPARQL-UPDATE query.
  39. @param update_str (string) SPARQL-Update staements.
  40. '''
  41. delta = self._sparql_delta(update_str.replace('<>', self.urn.n3()))
  42. return self._modify_rsrc(self.RES_UPDATED, *delta)
  43. class Ldpc(LdpRs):
  44. '''LDPC (LDP Container).'''
  45. def __init__(self, uuid, *args, **kwargs):
  46. super().__init__(uuid, *args, **kwargs)
  47. self.base_types.update({
  48. nsc['ldp'].Container,
  49. })
  50. class LdpBc(Ldpc):
  51. '''LDP-BC (LDP Basic Container).'''
  52. def __init__(self, uuid, *args, **kwargs):
  53. super().__init__(uuid, *args, **kwargs)
  54. self.base_types.update({
  55. nsc['ldp'].BasicContainer,
  56. })
  57. class LdpDc(Ldpc):
  58. '''LDP-DC (LDP Direct Container).'''
  59. def __init__(self, uuid, *args, **kwargs):
  60. super().__init__(uuid, *args, **kwargs)
  61. self.base_types.update({
  62. nsc['ldp'].DirectContainer,
  63. })
  64. class LdpIc(Ldpc):
  65. '''LDP-IC (LDP Indirect Container).'''
  66. def __init__(self, uuid, *args, **kwargs):
  67. super().__init__(uuid, *args, **kwargs)
  68. self.base_types.update({
  69. nsc['ldp'].IndirectContainer,
  70. })