ldp_rs.py 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. from lakesuperior.core.namespaces import ns_collection as nsc
  2. from lakesuperior.model.ldpr import Ldpr, transactional, must_exist, \
  3. ResourceNotExistsError
  4. from lakesuperior.util.translator import Translator
  5. class LdpRs(Ldpr):
  6. '''LDP-RS (LDP RDF source).
  7. Definition: https://www.w3.org/TR/ldp/#ldprs
  8. '''
  9. base_types = {
  10. nsc['ldp'].RDFSource
  11. }
  12. std_headers = {
  13. 'Accept-Post' : {
  14. 'text/turtle',
  15. 'text/rdf+n3',
  16. 'text/n3',
  17. 'application/rdf+xml',
  18. 'application/n-triples',
  19. 'application/ld+json',
  20. 'multipart/form-data',
  21. 'application/sparql-update',
  22. },
  23. 'Accept-Patch' : {
  24. 'application/sparql-update',
  25. },
  26. }
  27. def head(self):
  28. '''
  29. Return values for the headers.
  30. '''
  31. headers = self.rdfly.headers
  32. for t in self.ldp_types:
  33. headers['Link'].append('{};rel="type"'.format(t.identifier.n3()))
  34. return headers
  35. def get(self, inbound=False, children=True, srv_mgd=True):
  36. '''
  37. https://www.w3.org/TR/ldp/#ldpr-HTTP_GET
  38. '''
  39. im_rsrc = self.rdfly.out_rsrc(inbound)
  40. if not len(im_rsrc.graph):
  41. raise ResourceNotExistsError()
  42. return Translator.globalize_rsrc(im_rsrc)
  43. @transactional
  44. @must_exist
  45. def patch(self, data):
  46. '''
  47. https://www.w3.org/TR/ldp/#ldpr-HTTP_PATCH
  48. '''
  49. ts = Literal(arrow.utcnow(), datatype=XSD.dateTime)
  50. self.rdfly.patch_rsrc(self.urn, data, ts)
  51. self.rdfly.ds.add((self.urn, nsc['fcrepo'].lastUpdated, ts))
  52. self.rdfly.ds.add((self.urn, nsc['fcrepo'].lastUpdatedBy,
  53. Literal('BypassAdmin')))
  54. class Ldpc(LdpRs):
  55. '''LDPC (LDP Container).'''
  56. def __init__(self, uuid):
  57. super().__init__(uuid)
  58. self.base_types.update({
  59. nsc['ldp'].Container,
  60. })
  61. class LdpBc(Ldpc):
  62. '''LDP-BC (LDP Basic Container).'''
  63. def __init__(self, uuid):
  64. super().__init__(uuid)
  65. self.base_types.update({
  66. nsc['ldp'].BasicContainer,
  67. })
  68. class LdpDc(Ldpc):
  69. '''LDP-DC (LDP Direct Container).'''
  70. def __init__(self, uuid):
  71. super().__init__(uuid)
  72. self.base_types.update({
  73. nsc['ldp'].DirectContainer,
  74. })
  75. class LdpIc(Ldpc):
  76. '''LDP-IC (LDP Indirect Container).'''
  77. def __init__(self, uuid):
  78. super().__init__(uuid)
  79. self.base_types.update({
  80. nsc['ldp'].IndirectContainer,
  81. })