simple_layout.py 6.5 KB

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