simple_layout.py 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. from copy import deepcopy
  2. import arrow
  3. from rdflib import Graph
  4. from rdflib.namespace import XSD
  5. from rdflib.query import ResultException
  6. from rdflib.resource import Resource
  7. from rdflib.term import Literal, URIRef, Variable
  8. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  9. from lakesuperior.dictionaries.namespaces import ns_mgr as nsm
  10. from lakesuperior.store_layouts.rdf.base_rdf_layout import BaseRdfLayout
  11. from lakesuperior.util.digest import Digest
  12. class SimpleLayout(BaseRdfLayout):
  13. '''
  14. This is the simplest layout.
  15. It uses a flat triple structure without named graphs aimed at performance.
  16. Changes are destructive.
  17. In theory it could be used on top of a triplestore instead of a quad-store
  18. for (possible) improved speed and reduced storage.
  19. '''
  20. @property
  21. def headers(self):
  22. '''
  23. See base_rdf_layout.headers.
  24. '''
  25. headers = {
  26. 'Link' : [],
  27. }
  28. # @NOTE: Easy with these one-by-one picks. Each one of them is a call
  29. # to the triplestore.
  30. digest = self.rsrc.value(nsc['premis'].hasMessageDigest)
  31. if digest:
  32. etag = digest.identifier.split(':')[-1]
  33. headers['ETag'] = 'W/"{}"'.format(etag),
  34. last_updated_term = self.rsrc.value(nsc['fcrepo'].lastUpdated)
  35. if last_updated_term:
  36. headers['Last-Modified'] = arrow.get(last_updated_term)\
  37. .format('ddd, D MMM YYYY HH:mm:ss Z')
  38. return headers
  39. def extract_imr(self, uri=None, graph=None, inbound=False):
  40. '''
  41. See base_rdf_layout.extract_imr.
  42. '''
  43. uri = uri or self.base_urn
  44. inbound_qry = '\n?s1 ?p1 {}'.format(self.base_urn.n3()) \
  45. if inbound else ''
  46. q = '''
  47. CONSTRUCT {{
  48. {0} ?p ?o .{1}
  49. }} WHERE {{
  50. {0} ?p ?o .{1}
  51. #FILTER (?p != premis:hasMessageDigest) .
  52. }}
  53. '''.format(uri.n3(), inbound_qry)
  54. try:
  55. qres = self.query(q)
  56. except ResultException:
  57. # RDFlib bug? https://github.com/RDFLib/rdflib/issues/775
  58. g = Graph()
  59. else:
  60. g = qres.graph
  61. return Resource(g, uri)
  62. def out_rsrc(self, srv_mgd=True, inbound=False, embed_children=False):
  63. '''
  64. See base_rdf_layout.out_rsrc.
  65. '''
  66. im_rsrc = self.extract_imr(inbound=inbound)
  67. im_rsrc.remove(nsc['premis'].hasMessageDigest)
  68. return im_rsrc
  69. def ask_rsrc_exists(self, uri=None):
  70. '''
  71. See base_rdf_layout.ask_rsrc_exists.
  72. '''
  73. if not uri:
  74. if self.rsrc is not None:
  75. uri = self.rsrc.identifier
  76. else:
  77. return False
  78. self._logger.info('Searching for resource: {}'.format(uri))
  79. return (uri, Variable('p'), Variable('o')) in self.ds
  80. def create_or_replace_rsrc(self, g):
  81. '''
  82. See base_rdf_layout.create_or_replace_rsrc.
  83. '''
  84. # @TODO Use gunicorn to get request timestamp.
  85. ts = Literal(arrow.utcnow(), datatype=XSD.dateTime)
  86. if self.ask_rsrc_exists():
  87. self._logger.info(
  88. 'Resource {} exists. Removing all outbound triples.'
  89. .format(self.rsrc.identifier))
  90. # Delete all triples but keep creation date and creator.
  91. created = self.rsrc.value(nsc['fcrepo'].created)
  92. created_by = self.rsrc.value(nsc['fcrepo'].createdBy)
  93. self.delete_rsrc()
  94. else:
  95. created = ts
  96. created_by = Literal('BypassAdmin')
  97. self.rsrc.set(nsc['fcrepo'].created, created)
  98. self.rsrc.set(nsc['fcrepo'].createdBy, created_by)
  99. self.rsrc.set(nsc['fcrepo'].lastUpdated, ts)
  100. self.rsrc.set(nsc['fcrepo'].lastUpdatedBy, Literal('BypassAdmin'))
  101. for s, p, o in g:
  102. self.ds.add((s, p, o))
  103. def create_rsrc(self, g):
  104. '''
  105. See base_rdf_layout.create_rsrc.
  106. '''
  107. # @TODO Use gunicorn to get request timestamp.
  108. ts = Literal(arrow.utcnow(), datatype=XSD.dateTime)
  109. self.rsrc.set(nsc['fcrepo'].created, ts)
  110. self.rsrc.set(nsc['fcrepo'].createdBy, Literal('BypassAdmin'))
  111. cksum = Digest.rdf_cksum(self.rsrc.graph)
  112. self.rsrc.set(nsc['premis'].hasMessageDigest,
  113. URIRef('urn:sha1:{}'.format(cksum)))
  114. for s, p, o in g:
  115. self.ds.add((s, p, o))
  116. def patch_rsrc(self, data):
  117. '''
  118. Perform a SPARQL UPDATE on a resource.
  119. '''
  120. # @TODO Use gunicorn to get request timestamp.
  121. ts = Literal(arrow.utcnow(), datatype=XSD.dateTime)
  122. q = Translator.localize_string(data).replace(
  123. '<>', self.rsrc.identifier.n3())
  124. self.rsrc.set(nsc['fcrepo'].lastUpdated, ts)
  125. self.rsrc.set(nsc['fcrepo'].lastUpdatedBy, Literal('BypassAdmin'))
  126. self.ds.update(q)
  127. def delete_rsrc(self, inbound=False):
  128. '''
  129. Delete a resource. If `inbound` is specified, delete all inbound
  130. relationships as well.
  131. '''
  132. print('Removing resource {}.'.format(self.rsrc.identifier))
  133. self.rsrc.remove(Variable('p'))
  134. if inbound:
  135. self.ds.remove((Variable('s'), Variable('p'), self.rsrc.identifier))
  136. ## PROTECTED METHODS ##
  137. def _unique_value(self, p):
  138. '''
  139. Use this to retrieve a single value knowing that there SHOULD be only
  140. one (e.g. `skos:prefLabel`), If more than one is found, raise an
  141. exception.
  142. @param rdflib.Resource rsrc The resource to extract value from.
  143. @param rdflib.term.URIRef p The predicate to serach for.
  144. @throw ValueError if more than one value is found.
  145. '''
  146. values = self.rsrc[p]
  147. value = next(values)
  148. try:
  149. next(values)
  150. except StopIteration:
  151. return value
  152. # If the second next() did not raise a StopIteration, something is
  153. # wrong.
  154. raise ValueError('Predicate {} should be single valued. Found: {}.'\
  155. .format(set(values)))