ldpr.py 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470
  1. import logging
  2. from abc import ABCMeta
  3. from collections import defaultdict
  4. from importlib import import_module
  5. from itertools import accumulate
  6. from uuid import uuid4
  7. import arrow
  8. from rdflib import Graph
  9. from rdflib.resource import Resource
  10. from rdflib.namespace import RDF, XSD
  11. from lakesuperior.config_parser import config
  12. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  13. from lakesuperior.exceptions import InvalidResourceError, \
  14. ResourceNotExistsError, ServerManagedTermError
  15. from lakesuperior.store_layouts.rdf.base_rdf_layout import BaseRdfLayout
  16. from lakesuperior.util.translator import Translator
  17. def transactional(fn):
  18. '''
  19. Decorator for methods of the Ldpr class to handle transactions in an RDF
  20. store.
  21. '''
  22. def wrapper(self, *args, **kwargs):
  23. try:
  24. ret = fn(self, *args, **kwargs)
  25. print('Committing transaction.')
  26. self.rdfly.store.commit()
  27. return ret
  28. except:
  29. print('Rolling back transaction.')
  30. self.rdfly.store.rollback()
  31. raise
  32. return wrapper
  33. def must_exist(fn):
  34. '''
  35. Ensures that a method is applied to a stored resource.
  36. Decorator for methods of the Ldpr class.
  37. '''
  38. def wrapper(self, *args, **kwargs):
  39. if not self.is_stored:
  40. raise ResourceNotExistsError(self.uuid)
  41. return fn(self, *args, **kwargs)
  42. return wrapper
  43. def must_not_exist(fn):
  44. '''
  45. Ensures that a method is applied to a resource that is not stored.
  46. Decorator for methods of the Ldpr class.
  47. '''
  48. def wrapper(self, *args, **kwargs):
  49. if self.is_stored:
  50. raise ResourceExistsError(self.uuid)
  51. return fn(self, *args, **kwargs)
  52. return wrapper
  53. class Ldpr(metaclass=ABCMeta):
  54. '''LDPR (LDP Resource).
  55. Definition: https://www.w3.org/TR/ldp/#ldpr-resource
  56. This class and related subclasses contain the implementation pieces of
  57. the vanilla LDP specifications. This is extended by the
  58. `lakesuperior.fcrepo.Resource` class.
  59. Inheritance graph: https://www.w3.org/TR/ldp/#fig-ldpc-types
  60. Note: Even though LdpNr (which is a subclass of Ldpr) handles binary files,
  61. it still has an RDF representation in the triplestore. Hence, some of the
  62. RDF-related methods are defined in this class rather than in the LdpRs
  63. class.
  64. Convention notes:
  65. All the methods in this class handle internal UUIDs (URN). Public-facing
  66. URIs are converted from URNs and passed by these methods to the methods
  67. handling HTTP negotiation.
  68. The data passed to the store layout for processing should be in a graph.
  69. All conversion from request payload strings is done here.
  70. '''
  71. FCREPO_PTREE_TYPE = nsc['fcrepo'].Pairtree
  72. LDP_NR_TYPE = nsc['ldp'].NonRDFSource
  73. LDP_RS_TYPE = nsc['ldp'].RDFSource
  74. _logger = logging.getLogger(__name__)
  75. rdf_store_layout = config['application']['store']['ldp_rs']['layout']
  76. non_rdf_store_layout = config['application']['store']['ldp_nr']['layout']
  77. ## MAGIC METHODS ##
  78. def __init__(self, uuid):
  79. '''Instantiate an in-memory LDP resource that can be loaded from and
  80. persisted to storage.
  81. Persistence is done in this class. None of the operations in the store
  82. layout should commit an open transaction. Methods are wrapped in a
  83. transaction by using the `@transactional` decorator.
  84. @param uuid (string) UUID of the resource.
  85. '''
  86. self.uuid = uuid
  87. self._urn = nsc['fcres'][uuid] if self.uuid is not None \
  88. else BaseRdfLayout.ROOT_NODE_URN
  89. self.rdfly = __class__.load_layout('rdf', self._urn)
  90. self.nonrdfly = __class__.load_layout('non_rdf')
  91. @property
  92. def urn(self):
  93. '''
  94. The internal URI (URN) for the resource as stored in the triplestore.
  95. This is a URN that needs to be converted to a global URI for the REST
  96. API.
  97. @return rdflib.URIRef
  98. '''
  99. return self._urn
  100. @property
  101. def uri(self):
  102. '''
  103. The URI for the resource as published by the REST API.
  104. @return rdflib.URIRef
  105. '''
  106. return Translator.uuid_to_uri(self.uuid)
  107. @property
  108. def rsrc(self):
  109. '''
  110. The RDFLib resource representing this LDPR. This is a copy of the
  111. stored data if present, and what gets passed to most methods of the
  112. store layout methods.
  113. @return rdflib.resource.Resource
  114. '''
  115. if not hasattr(self, '_rsrc'):
  116. self._rsrc = self.rdfly.rsrc
  117. return self._rsrc
  118. @property
  119. def is_stored(self):
  120. return self.rdfly.ask_rsrc_exists()
  121. @property
  122. def types(self):
  123. '''All RDF types.
  124. @return generator
  125. '''
  126. if not hasattr(self, '_types'):
  127. self._types = set(self.rsrc[RDF.type])
  128. return self._types
  129. @property
  130. def ldp_types(self):
  131. '''The LDP types.
  132. @return set(rdflib.term.URIRef)
  133. '''
  134. if not hasattr(self, '_ldp_types'):
  135. self._ldp_types = set()
  136. for t in self.types:
  137. if t.qname()[:4] == 'ldp:':
  138. self._ldp_types.add(t)
  139. return self._ldp_types
  140. @property
  141. def containment(self):
  142. if not hasattr(self, '_containment'):
  143. q = '''
  144. SELECT ?container ?contained {
  145. {
  146. ?s ldp:contains ?contained .
  147. } UNION {
  148. ?container ldp:contains ?s .
  149. }
  150. }
  151. '''
  152. qres = self.rsrc.graph.query(q, initBindings={'s' : self.urn})
  153. # There should only be one container.
  154. for t in qres:
  155. if t[0]:
  156. container = self.rdfly.ds.resource(t[0])
  157. contains = ( self.rdfly.ds.resource(t[1]) for t in qres if t[1] )
  158. self._containment = {
  159. 'container' : container, 'contains' : contains}
  160. return self._containment
  161. @containment.deleter
  162. def containment(self):
  163. '''
  164. Reset containment variable when changing containment triples.
  165. '''
  166. del self._containment
  167. @property
  168. def container(self):
  169. return self.containment['container']
  170. @property
  171. def contains(self):
  172. return self.containment['contains']
  173. ## STATIC & CLASS METHODS ##
  174. @classmethod
  175. def load_layout(cls, type, uuid=None):
  176. '''
  177. Dynamically load the store layout indicated in the configuration.
  178. @param type (string) One of `rdf` or `non_rdf`. Determines the type of
  179. layout to be loaded.
  180. @param uuid (string) UUID of the base resource. For RDF layouts only.
  181. '''
  182. layout_name = getattr(cls, '{}_store_layout'.format(type))
  183. store_mod = import_module('lakesuperior.store_layouts.{0}.{1}'.format(
  184. type, layout_name))
  185. layout_cls = getattr(store_mod, Translator.camelcase(layout_name))
  186. return layout_cls(uuid) if type=='rdf' else layout_cls()
  187. @classmethod
  188. def readonly_inst(cls, uuid):
  189. '''
  190. Fatory method that creates and returns an instance of an LDPR subclass
  191. based on information that needs to be queried from the underlying
  192. graph store.
  193. This is used with retrieval methods for resources that already exist.
  194. @param uuid UUID of the instance.
  195. '''
  196. rdfly = cls.load_rdf_layout(cls, uuid)
  197. rdf_types = rdfly.rsrc[nsc['res'][uuid] : RDF.type]
  198. for t in rdf_types:
  199. if t == cls.LDP_NR_TYPE:
  200. return LdpNr(uuid)
  201. if t == cls.LDP_RS_TYPE:
  202. return LdpRs(uuid)
  203. else:
  204. raise ResourceNotExistsError(uuid)
  205. @classmethod
  206. def inst_for_post(cls, parent_uuid=None, slug=None):
  207. '''
  208. Validate conditions to perform a POST and return an LDP resource
  209. instancefor using with the `post` method.
  210. This may raise an exception resulting in a 404 if the parent is not
  211. found or a 409 if the parent is not a valid container.
  212. '''
  213. # Shortcut!
  214. if not slug and not parent_uuid:
  215. return cls(str(uuid4()))
  216. rdfly = cls.load_rdf_layout()
  217. parent_imr = rdfly.extract_imr(nsc['fcres'][parent_uuid])
  218. # Set prefix.
  219. if parent_uuid:
  220. parent_exists = rdfly.ask_rsrc_exists(parent_imr.identifier)
  221. if not parent_exists:
  222. raise ResourceNotExistsError(parent_uuid)
  223. parent_types = { t.identifier for t in \
  224. parent_imr.objects(RDF.type) }
  225. cls._logger.debug('Parent types: {}'.format(
  226. parent_types))
  227. if nsc['ldp'].Container not in parent_types:
  228. raise InvalidResourceError('Parent {} is not a container.'
  229. .format(parent_uuid))
  230. pfx = parent_uuid + '/'
  231. else:
  232. pfx = ''
  233. # Create candidate UUID and validate.
  234. if slug:
  235. cnd_uuid = pfx + slug
  236. cnd_rsrc = Resource(rdfly.ds, nsc['fcres'][cnd_uuid])
  237. if rdfly.ask_rsrc_exists(cnd_rsrc.identifier):
  238. return cls(pfx + str(uuid4()))
  239. else:
  240. return cls(cnd_uuid)
  241. else:
  242. return cls(pfx + str(uuid4()))
  243. ## LDP METHODS ##
  244. def head(self):
  245. '''
  246. Return values for the headers.
  247. '''
  248. out_rsrc = self.rdfly.out_rsrc
  249. out_headers = defaultdict(list)
  250. digest = out_rsrc.value(nsc['premis'].hasMessageDigest)
  251. if digest:
  252. etag = digest.identifier.split(':')[-1]
  253. out_headers['ETag'] = 'W/"{}"'.format(etag),
  254. last_updated_term = out_rsrc.value(nsc['fcrepo'].lastModified)
  255. if last_updated_term:
  256. out_headers['Last-Modified'] = arrow.get(last_updated_term)\
  257. .format('ddd, D MMM YYYY HH:mm:ss Z')
  258. for t in self.ldp_types:
  259. out_headers['Link'].append(
  260. '{};rel="type"'.format(t.identifier.n3()))
  261. return out_headers
  262. def get(self, *args, **kwargs):
  263. raise NotImplementedError()
  264. def post(self, *args, **kwargs):
  265. raise NotImplementedError()
  266. def put(self, *args, **kwargs):
  267. raise NotImplementedError()
  268. def patch(self, *args, **kwargs):
  269. raise NotImplementedError()
  270. @transactional
  271. @must_exist
  272. def delete(self):
  273. '''
  274. https://www.w3.org/TR/ldp/#ldpr-HTTP_DELETE
  275. '''
  276. self.rdfly.delete_rsrc(self.urn)
  277. ## PROTECTED METHODS ##
  278. def _set_containment_rel(self):
  279. '''Find the closest parent in the path indicated by the UUID and
  280. establish a containment triple.
  281. E.g.
  282. - If only urn:fcres:a (short: a) exists:
  283. - If a/b/c/d is being created, a becomes container of a/b/c/d. Also,
  284. pairtree nodes are created for a/b and a/b/c.
  285. - If e is being created, the root node becomes container of e.
  286. '''
  287. if '/' in self.uuid:
  288. # Traverse up the hierarchy to find the parent.
  289. cparent_uri = self._find_parent_or_create_pairtree(self.uuid)
  290. # Reroute possible containment relationships between parent and new
  291. # resource.
  292. #self._splice_in(cparent)
  293. if cparent_uri:
  294. self.rdfly.ds.add((cparent_uri, nsc['ldp'].contains,
  295. self.rsrc.identifier))
  296. else:
  297. self.rsrc.graph.add((nsc['fcsystem'].root, nsc['ldp'].contains,
  298. self.rsrc.identifier))
  299. # If a resource has no parent and should be parent of the new resource,
  300. # add the relationship.
  301. #for child_uri in self.find_lost_children():
  302. # self.rsrc.add(nsc['ldp'].contains, child_uri)
  303. def _find_parent_or_create_pairtree(self, uuid):
  304. '''
  305. Check the path-wise parent of the new resource. If it exists, return
  306. its URI. Otherwise, create pairtree resources up the path until an
  307. actual resource or the root node is found.
  308. @return rdflib.term.URIRef
  309. '''
  310. path_components = uuid.split('/')
  311. if len(path_components) < 2:
  312. return None
  313. # Build search list, e.g. for a/b/c/d/e would be a/b/c/d, a/b/c, a/b, a
  314. self._logger.info('Path components: {}'.format(path_components))
  315. fwd_search_order = accumulate(
  316. list(path_components)[:-1],
  317. func=lambda x,y : x + '/' + y
  318. )
  319. rev_search_order = reversed(list(fwd_search_order))
  320. cur_child_uri = nsc['fcres'][uuid]
  321. for cparent_uuid in rev_search_order:
  322. cparent_uri = nsc['fcres'][cparent_uuid]
  323. if self.rdfly.ask_rsrc_exists(cparent_uri):
  324. return cparent_uri
  325. else:
  326. self._create_path_segment(cparent_uri, cur_child_uri)
  327. cur_child_uri = cparent_uri
  328. return None
  329. def _create_path_segment(self, uri, child_uri):
  330. '''
  331. Create a path segment with a non-LDP containment statement.
  332. This diverges from the default fcrepo4 behavior which creates pairtree
  333. resources.
  334. If a resource such as `fcres:a/b/c` is created, and neither fcres:a or
  335. fcres:a/b exists, we have to create two "hidden" containment statements
  336. between a and a/b and between a/b and a/b/c in order to maintain the
  337. `containment chain.
  338. '''
  339. g = Graph()
  340. g.add((uri, RDF.type, nsc['ldp'].Container))
  341. g.add((uri, RDF.type, nsc['ldp'].BasicContainer))
  342. g.add((uri, RDF.type, nsc['ldp'].RDFSource))
  343. g.add((uri, nsc['fcrepo'].contains, child_uri))
  344. # If the path segment is just below root
  345. if '/' not in str(uri):
  346. g.add((nsc['fcsystem'].root, nsc['fcrepo'].contains, uri))
  347. self.rdfly.create_rsrc(g)