ldp_rs.py 2.5 KB

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