ldpr.py 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578
  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. self._logger.info('Committing transaction.')
  26. self.rdfly.store.commit()
  27. return ret
  28. except:
  29. self._logger.warn('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. RETURN_CHILD_RES_URI = nsc['fcrepo'].EmbedResources
  75. RETURN_INBOUND_REF_URI = nsc['fcrepo'].InboundReferences
  76. RETURN_SRV_MGD_RES_URI = nsc['fcrepo'].ServerManaged
  77. _logger = logging.getLogger(__name__)
  78. rdf_store_layout = config['application']['store']['ldp_rs']['layout']
  79. non_rdf_store_layout = config['application']['store']['ldp_nr']['layout']
  80. ## MAGIC METHODS ##
  81. def __init__(self, uuid, repr_opts={}):
  82. '''Instantiate an in-memory LDP resource that can be loaded from and
  83. persisted to storage.
  84. Persistence is done in this class. None of the operations in the store
  85. layout should commit an open transaction. Methods are wrapped in a
  86. transaction by using the `@transactional` decorator.
  87. @param uuid (string) UUID of the resource. If None (must be explicitly
  88. set) it refers to the root node.
  89. '''
  90. self.uuid = uuid
  91. self._urn = nsc['fcres'][uuid] if self.uuid is not None \
  92. else BaseRdfLayout.ROOT_NODE_URN
  93. self._imr_options = __class__.imr_options(repr_opts)
  94. @property
  95. def urn(self):
  96. '''
  97. The internal URI (URN) for the resource as stored in the triplestore.
  98. This is a URN that needs to be converted to a global URI for the LDP
  99. API.
  100. @return rdflib.URIRef
  101. '''
  102. return self._urn
  103. @property
  104. def uri(self):
  105. '''
  106. The URI for the resource as published by the REST API.
  107. @return rdflib.URIRef
  108. '''
  109. return Translator.uuid_to_uri(self.uuid)
  110. @property
  111. def rdfly(self):
  112. '''
  113. Load RDF store layout.
  114. '''
  115. if not hasattr(self, '_rdfly'):
  116. self._rdfly = __class__.load_layout('rdf')
  117. return self._rdfly
  118. @property
  119. def rsrc(self):
  120. '''
  121. The RDFLib resource representing this LDPR. This is a live
  122. representation of the stored data if present.
  123. @return rdflib.resource.Resource
  124. '''
  125. if not hasattr(self, '_rsrc'):
  126. self._rsrc = self.rdfly.rsrc(self.urn)
  127. return self._rsrc
  128. @property
  129. def imr(self):
  130. '''
  131. Extract an in-memory resource from the graph store.
  132. If the resource is not stored (yet), a `ResourceNotExistsError` is
  133. raised.
  134. @return rdflib.resource.Resource
  135. '''
  136. if not hasattr(self, '_imr'):
  137. self._logger.debug('IMR options: {}'.format(self._imr_options))
  138. options = dict(self._imr_options, strict=True)
  139. self._imr = self.rdfly.extract_imr(self.urn, **options)
  140. return self._imr
  141. @property
  142. def stored_or_new_imr(self):
  143. '''
  144. Extract an in-memory resource for harmless manipulation and output.
  145. If the resource is not stored (yet), initialize a new IMR with basic
  146. triples.
  147. @return rdflib.resource.Resource
  148. '''
  149. if not hasattr(self, '_imr'):
  150. options = dict(self._imr_options, strict=True)
  151. try:
  152. self._imr = self.rdfly.extract_imr(self.urn, **options)
  153. except ResourceNotExistsError:
  154. self._imr = Resource(Graph(), self.urn)
  155. for t in self.base_types:
  156. self.imr.add(RDF.type, t)
  157. return self._imr
  158. @imr.deleter
  159. def imr(self):
  160. '''
  161. Delete in-memory buffered resource.
  162. '''
  163. delattr(self, '_imr')
  164. @property
  165. def is_stored(self):
  166. return self.rdfly.ask_rsrc_exists(self.urn)
  167. @property
  168. def types(self):
  169. '''All RDF types.
  170. @return set(rdflib.term.URIRef)
  171. '''
  172. if not hasattr(self, '_types'):
  173. self._types = set(self.rsrc[RDF.type])
  174. return self._types
  175. @property
  176. def ldp_types(self):
  177. '''The LDP types.
  178. @return set(rdflib.term.URIRef)
  179. '''
  180. if not hasattr(self, '_ldp_types'):
  181. self._ldp_types = set()
  182. for t in self.types:
  183. if t.qname()[:4] == 'ldp:':
  184. self._ldp_types.add(t)
  185. return self._ldp_types
  186. @property
  187. def containment(self):
  188. if not hasattr(self, '_containment'):
  189. q = '''
  190. SELECT ?container ?contained {
  191. {
  192. ?s ldp:contains ?contained .
  193. } UNION {
  194. ?container ldp:contains ?s .
  195. }
  196. }
  197. '''
  198. qres = self.rsrc.graph.query(q, initBindings={'s' : self.urn})
  199. # There should only be one container.
  200. for t in qres:
  201. if t[0]:
  202. container = self.rdfly.ds.resource(t[0])
  203. contains = ( self.rdfly.ds.resource(t[1]) for t in qres if t[1] )
  204. self._containment = {
  205. 'container' : container, 'contains' : contains}
  206. return self._containment
  207. @containment.deleter
  208. def containment(self):
  209. '''
  210. Reset containment variable when changing containment triples.
  211. '''
  212. del self._containment
  213. @property
  214. def container(self):
  215. return self.containment['container']
  216. @property
  217. def contains(self):
  218. return self.containment['contains']
  219. ## STATIC & CLASS METHODS ##
  220. @classmethod
  221. def load_layout(cls, type, uuid=None):
  222. '''
  223. Dynamically load the store layout indicated in the configuration.
  224. @param type (string) One of `rdf` or `non_rdf`. Determines the type of
  225. layout to be loaded.
  226. @param uuid (string) UUID of the base resource. For RDF layouts only.
  227. '''
  228. layout_cls = getattr(cls, '{}_store_layout'.format(type))
  229. store_mod = import_module('lakesuperior.store_layouts.{0}.{1}'.format(
  230. type, layout_cls))
  231. layout_cls = getattr(store_mod, Translator.camelcase(layout_cls))
  232. return layout_cls()
  233. @classmethod
  234. def readonly_inst(cls, uuid, repr_opts=None):
  235. '''
  236. Factory method that creates and returns an instance of an LDPR subclass
  237. based on information that needs to be queried from the underlying
  238. graph store.
  239. This is used with retrieval methods for resources that already exist.
  240. @param uuid UUID of the instance.
  241. '''
  242. rdfly = cls.load_layout('rdf')
  243. imr_urn = nsc['fcres'][uuid] if uuid else rdfly.ROOT_NODE_URN
  244. cls._logger.debug('Representation options: {}'.format(repr_opts))
  245. imr_opts = cls.imr_options(repr_opts)
  246. imr = rdfly.extract_imr(imr_urn, **imr_opts)
  247. rdf_types = imr.objects(RDF.type)
  248. for t in rdf_types:
  249. cls._logger.debug('Checking RDF type: {}'.format(t.identifier))
  250. if t.identifier == cls.LDP_NR_TYPE:
  251. from lakesuperior.model.ldp_nr import LdpNr
  252. cls._logger.info('Resource is a LDP-NR.')
  253. return LdpNr(uuid, repr_opts)
  254. if t.identifier == cls.LDP_RS_TYPE:
  255. from lakesuperior.model.ldp_rs import LdpRs
  256. cls._logger.info('Resource is a LDP-RS.')
  257. return LdpRs(uuid, repr_opts)
  258. raise ResourceNotExistsError(uuid)
  259. @classmethod
  260. def inst_for_post(cls, parent_uuid=None, slug=None):
  261. '''
  262. Validate conditions to perform a POST and return an LDP resource
  263. instancefor using with the `post` method.
  264. This may raise an exception resulting in a 404 if the parent is not
  265. found or a 409 if the parent is not a valid container.
  266. '''
  267. # Shortcut!
  268. if not slug and not parent_uuid:
  269. return cls(str(uuid4()))
  270. rdfly = cls.load_layout('rdf')
  271. parent = cls(parent_uuid, incl_children=False)
  272. # Set prefix.
  273. if parent_uuid:
  274. parent_types = { t.identifier for t in \
  275. parent.imr.objects(RDF.type) }
  276. cls._logger.debug('Parent types: {}'.format(
  277. parent_types))
  278. if nsc['ldp'].Container not in parent_types:
  279. raise InvalidResourceError('Parent {} is not a container.'
  280. .format(parent_uuid))
  281. pfx = parent_uuid + '/'
  282. else:
  283. pfx = ''
  284. # Create candidate UUID and validate.
  285. if slug:
  286. cnd_uuid = pfx + slug
  287. cnd_rsrc = Resource(rdfly.ds, nsc['fcres'][cnd_uuid])
  288. if rdfly.ask_rsrc_exists(cnd_rsrc.identifier):
  289. return cls(pfx + str(uuid4()))
  290. else:
  291. return cls(cnd_uuid)
  292. else:
  293. return cls(pfx + str(uuid4()))
  294. @classmethod
  295. def imr_options(cls, repr_opts):
  296. '''
  297. Set options to retrieve IMR.
  298. Ideally, IMR retrieval is done once per request, so all the options
  299. are set once in the `imr()` property.
  300. @param repr_opts (dict): Options parsed from `Prefer` header.
  301. '''
  302. cls._logger.debug('Setting retrieval options from: {}'.format(repr_opts))
  303. imr_options = {}
  304. #imr_options['embed_children'] = imr_options['incl_inbound'] = False
  305. #imr_options['incl_srv_mgd'] = True
  306. if 'value' in repr_opts and repr_opts['value'] == 'minimal':
  307. imr_options = {
  308. 'incl_srv_mgd' : False,
  309. 'incl_inbound' : False,
  310. 'embed_children' : False,
  311. }
  312. elif 'parameters' in repr_opts:
  313. include = repr_opts['parameters']['include'].split(' ') \
  314. if 'include' in repr_opts['parameters'] else []
  315. omit = repr_opts['parameters']['omit'].split(' ') \
  316. if 'omit' in repr_opts['parameters'] else []
  317. cls._logger.debug('Include: {}'.format(include))
  318. cls._logger.debug('Omit: {}'.format(omit))
  319. if str(cls.RETURN_INBOUND_REF_URI) in include:
  320. imr_options['incl_inbound'] = True
  321. if str(cls.RETURN_CHILD_RES_URI) in include:
  322. imr_options['embed_children'] = True
  323. if str(cls.RETURN_SRV_MGD_RES_URI) in omit:
  324. imr_options['incl_srv_mgd'] = False
  325. cls._logger.debug('Retrieval options: {}'.format(imr_options))
  326. return imr_options
  327. ## LDP METHODS ##
  328. def head(self):
  329. '''
  330. Return values for the headers.
  331. '''
  332. out_headers = defaultdict(list)
  333. self._logger.debug('IMR options in head(): {}'.format(self._imr_options))
  334. digest = self.imr.value(nsc['premis'].hasMessageDigest)
  335. if digest:
  336. etag = digest.identifier.split(':')[-1]
  337. out_headers['ETag'] = 'W/"{}"'.format(etag),
  338. last_updated_term = self.imr.value(nsc['fcrepo'].lastModified)
  339. if last_updated_term:
  340. out_headers['Last-Modified'] = arrow.get(last_updated_term)\
  341. .format('ddd, D MMM YYYY HH:mm:ss Z')
  342. for t in self.ldp_types:
  343. out_headers['Link'].append(
  344. '{};rel="type"'.format(t.identifier.n3()))
  345. return out_headers
  346. def get(self, *args, **kwargs):
  347. raise NotImplementedError()
  348. def post(self, *args, **kwargs):
  349. raise NotImplementedError()
  350. def put(self, *args, **kwargs):
  351. raise NotImplementedError()
  352. def patch(self, *args, **kwargs):
  353. raise NotImplementedError()
  354. @transactional
  355. @must_exist
  356. def delete(self):
  357. '''
  358. https://www.w3.org/TR/ldp/#ldpr-HTTP_DELETE
  359. '''
  360. self.rdfly.delete_rsrc(self.urn)
  361. ## PROTECTED METHODS ##
  362. def _set_containment_rel(self):
  363. '''Find the closest parent in the path indicated by the UUID and
  364. establish a containment triple.
  365. E.g.
  366. - If only urn:fcres:a (short: a) exists:
  367. - If a/b/c/d is being created, a becomes container of a/b/c/d. Also,
  368. pairtree nodes are created for a/b and a/b/c.
  369. - If e is being created, the root node becomes container of e.
  370. '''
  371. if '/' in self.uuid:
  372. # Traverse up the hierarchy to find the parent.
  373. cparent_uri = self._find_parent_or_create_pairtree(self.uuid)
  374. # Reroute possible containment relationships between parent and new
  375. # resource.
  376. #self._splice_in(cparent)
  377. if cparent_uri:
  378. self.rdfly.ds.add((cparent_uri, nsc['ldp'].contains,
  379. self.rsrc.identifier))
  380. else:
  381. self.rsrc.graph.add((nsc['fcsystem'].root, nsc['ldp'].contains,
  382. self.rsrc.identifier))
  383. # If a resource has no parent and should be parent of the new resource,
  384. # add the relationship.
  385. #for child_uri in self.find_lost_children():
  386. # self.rsrc.add(nsc['ldp'].contains, child_uri)
  387. def _find_parent_or_create_pairtree(self, uuid):
  388. '''
  389. Check the path-wise parent of the new resource. If it exists, return
  390. its URI. Otherwise, create pairtree resources up the path until an
  391. actual resource or the root node is found.
  392. @return rdflib.term.URIRef
  393. '''
  394. path_components = uuid.split('/')
  395. if len(path_components) < 2:
  396. return None
  397. # Build search list, e.g. for a/b/c/d/e would be a/b/c/d, a/b/c, a/b, a
  398. self._logger.info('Path components: {}'.format(path_components))
  399. fwd_search_order = accumulate(
  400. list(path_components)[:-1],
  401. func=lambda x,y : x + '/' + y
  402. )
  403. rev_search_order = reversed(list(fwd_search_order))
  404. cur_child_uri = nsc['fcres'][uuid]
  405. for cparent_uuid in rev_search_order:
  406. cparent_uri = nsc['fcres'][cparent_uuid]
  407. if self.rdfly.ask_rsrc_exists(cparent_uri):
  408. return cparent_uri
  409. else:
  410. self._create_path_segment(cparent_uri, cur_child_uri)
  411. cur_child_uri = cparent_uri
  412. return None
  413. def _create_path_segment(self, uri, child_uri):
  414. '''
  415. Create a path segment with a non-LDP containment statement.
  416. This diverges from the default fcrepo4 behavior which creates pairtree
  417. resources.
  418. If a resource such as `fcres:a/b/c` is created, and neither fcres:a or
  419. fcres:a/b exists, we have to create two "hidden" containment statements
  420. between a and a/b and between a/b and a/b/c in order to maintain the
  421. `containment chain.
  422. '''
  423. imr = Resource(Graph(), uri)
  424. imr.add(RDF.type, nsc['ldp'].Container)
  425. imr.add(RDF.type, nsc['ldp'].BasicContainer)
  426. imr.add(RDF.type, nsc['ldp'].RDFSource)
  427. imr.add(nsc['fcrepo'].contains, child_uri)
  428. # If the path segment is just below root
  429. if '/' not in str(uri):
  430. imr.graph.add((nsc['fcsystem'].root, nsc['fcrepo'].contains, uri))
  431. self.rdfly.create_rsrc(imr)