ldpr.py 19 KB

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