ldpr.py 20 KB

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