ldpr.py 21 KB

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