simple_layout.py 6.1 KB

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