ldpr.py 19 KB

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