simple_strategy.py 5.2 KB

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