ldpr.py 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669
  1. import logging
  2. from abc import ABCMeta
  3. from collections import defaultdict
  4. from itertools import accumulate
  5. from uuid import uuid4
  6. import arrow
  7. from flask import current_app
  8. from rdflib import Graph
  9. from rdflib.resource import Resource
  10. from rdflib.namespace import RDF, XSD
  11. from rdflib.term import URIRef, Literal
  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.ldp_rs.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. RES_CREATED = 'Create'
  85. RES_DELETED = 'Delete'
  86. RES_UPDATED = 'Update'
  87. protected_pred = (
  88. nsc['fcrepo'].created,
  89. nsc['fcrepo'].createdBy,
  90. nsc['ldp'].contains,
  91. )
  92. _logger = logging.getLogger(__name__)
  93. ## STATIC & CLASS METHODS ##
  94. @classmethod
  95. def inst(cls, uuid, repr_opts=None):
  96. '''
  97. Factory method that creates and returns an instance of an LDPR subclass
  98. based on information that needs to be queried from the underlying
  99. graph store.
  100. N.B. The resource must exist.
  101. @param uuid UUID of the instance.
  102. '''
  103. imr_urn = nsc['fcres'][uuid] if uuid else cls.ROOT_NODE_URN
  104. cls._logger.debug('Representation options: {}'.format(repr_opts))
  105. imr_opts = cls.set_imr_options(repr_opts)
  106. imr = current_app.rdfly.extract_imr(imr_urn, **imr_opts)
  107. rdf_types = set(imr.objects(RDF.type))
  108. for t in rdf_types:
  109. cls._logger.debug('Checking RDF type: {}'.format(t.identifier))
  110. if t.identifier == cls.LDP_NR_TYPE:
  111. from lakesuperior.model.ldp_nr import LdpNr
  112. cls._logger.info('Resource is a LDP-NR.')
  113. return LdpNr(uuid, repr_opts)
  114. if t.identifier == cls.LDP_RS_TYPE:
  115. from lakesuperior.model.ldp_rs import LdpRs
  116. cls._logger.info('Resource is a LDP-RS.')
  117. return LdpRs(uuid, repr_opts)
  118. raise ResourceNotExistsError(uuid)
  119. @classmethod
  120. def inst_for_post(cls, parent_uuid=None, slug=None):
  121. '''
  122. Validate conditions to perform a POST and return an LDP resource
  123. instancefor using with the `post` method.
  124. This may raise an exception resulting in a 404 if the parent is not
  125. found or a 409 if the parent is not a valid container.
  126. '''
  127. # Shortcut!
  128. if not slug and not parent_uuid:
  129. return cls(str(uuid4()))
  130. parent = cls(parent_uuid, repr_opts={
  131. 'parameters' : {'omit' : cls.RETURN_CHILD_RES_URI}
  132. })
  133. # Set prefix.
  134. if parent_uuid:
  135. parent_types = { t.identifier for t in \
  136. parent.imr.objects(RDF.type) }
  137. cls._logger.debug('Parent types: {}'.format(
  138. parent_types))
  139. if nsc['ldp'].Container not in parent_types:
  140. raise InvalidResourceError('Parent {} is not a container.'
  141. .format(parent_uuid))
  142. pfx = parent_uuid + '/'
  143. else:
  144. pfx = ''
  145. # Create candidate UUID and validate.
  146. if slug:
  147. cnd_uuid = pfx + slug
  148. cnd_rsrc = Resource(current_app.rdfly.ds, nsc['fcres'][cnd_uuid])
  149. if current_app.rdfly.ask_rsrc_exists(cnd_rsrc.identifier):
  150. return cls(pfx + str(uuid4()))
  151. else:
  152. return cls(cnd_uuid)
  153. else:
  154. return cls(pfx + str(uuid4()))
  155. @classmethod
  156. def set_imr_options(cls, repr_opts):
  157. '''
  158. Set options to retrieve IMR.
  159. Ideally, IMR retrieval is done once per request, so all the options
  160. are set once in the `imr()` property.
  161. @param repr_opts (dict): Options parsed from `Prefer` header.
  162. '''
  163. cls._logger.debug('Setting retrieval options from: {}'.format(repr_opts))
  164. imr_options = {}
  165. if repr_opts.setdefault('value') == 'minimal':
  166. imr_options = {
  167. 'embed_children' : False,
  168. 'incl_children' : False,
  169. 'incl_inbound' : False,
  170. 'incl_srv_mgd' : False,
  171. }
  172. else:
  173. # Default.
  174. imr_options = {
  175. 'embed_children' : False,
  176. 'incl_children' : True,
  177. 'incl_inbound' : False,
  178. 'incl_srv_mgd' : True,
  179. }
  180. # Override defaults.
  181. if 'parameters' in repr_opts:
  182. include = repr_opts['parameters']['include'].split(' ') \
  183. if 'include' in repr_opts['parameters'] else []
  184. omit = repr_opts['parameters']['omit'].split(' ') \
  185. if 'omit' in repr_opts['parameters'] else []
  186. cls._logger.debug('Include: {}'.format(include))
  187. cls._logger.debug('Omit: {}'.format(omit))
  188. if str(cls.EMBED_CHILD_RES_URI) in include:
  189. imr_options['embed_children'] = True
  190. if str(cls.RETURN_CHILD_RES_URI) in omit:
  191. imr_options['incl_children'] = False
  192. if str(cls.RETURN_INBOUND_REF_URI) in include:
  193. imr_options['incl_inbound'] = True
  194. if str(cls.RETURN_SRV_MGD_RES_URI) in omit:
  195. imr_options['incl_srv_mgd'] = False
  196. cls._logger.debug('Retrieval options: {}'.format(imr_options))
  197. return imr_options
  198. ## MAGIC METHODS ##
  199. def __init__(self, uuid, repr_opts={}):
  200. '''Instantiate an in-memory LDP resource that can be loaded from and
  201. persisted to storage.
  202. Persistence is done in this class. None of the operations in the store
  203. layout should commit an open transaction. Methods are wrapped in a
  204. transaction by using the `@transactional` decorator.
  205. @param uuid (string) UUID of the resource. If None (must be explicitly
  206. set) it refers to the root node.
  207. '''
  208. self.uuid = uuid
  209. self.urn = nsc['fcres'][uuid] if self.uuid else self.ROOT_NODE_URN
  210. self.uri = Toolbox().uuid_to_uri(self.uuid)
  211. self.repr_opts = repr_opts
  212. self._imr_options = __class__.set_imr_options(self.repr_opts)
  213. self.rdfly = current_app.rdfly
  214. self.nonrdfly = current_app.nonrdfly
  215. @property
  216. def rsrc(self):
  217. '''
  218. The RDFLib resource representing this LDPR. This is a live
  219. representation of the stored data if present.
  220. @return rdflib.resource.Resource
  221. '''
  222. if not hasattr(self, '_rsrc'):
  223. self._rsrc = self.rdfly.ds.resource(self.urn)
  224. return self._rsrc
  225. @property
  226. def imr(self):
  227. '''
  228. Extract an in-memory resource from the graph store.
  229. If the resource is not stored (yet), a `ResourceNotExistsError` is
  230. raised.
  231. @return rdflib.resource.Resource
  232. '''
  233. if not hasattr(self, '_imr'):
  234. self._logger.debug('IMR options: {}'.format(self._imr_options))
  235. options = dict(self._imr_options, strict=True)
  236. self._imr = self.rdfly.extract_imr(self.urn, **options)
  237. return self._imr
  238. @property
  239. def stored_or_new_imr(self):
  240. '''
  241. Extract an in-memory resource for harmless manipulation and output.
  242. If the resource is not stored (yet), initialize a new IMR with basic
  243. triples.
  244. @return rdflib.resource.Resource
  245. '''
  246. if not hasattr(self, '_imr'):
  247. options = dict(self._imr_options, strict=True)
  248. try:
  249. self._imr = self.rdfly.extract_imr(self.urn, **options)
  250. except ResourceNotExistsError:
  251. self._imr = Resource(Graph(), self.urn)
  252. for t in self.base_types:
  253. self.imr.add(RDF.type, t)
  254. return self._imr
  255. @imr.deleter
  256. def imr(self):
  257. '''
  258. Delete in-memory buffered resource.
  259. '''
  260. delattr(self, '_imr')
  261. @property
  262. def out_graph(self):
  263. '''
  264. Retun a globalized graph of the resource's IMR.
  265. Internal URNs are replaced by global URIs using the endpoint webroot.
  266. '''
  267. # Remove digest hash.
  268. self.imr.remove(nsc['premis'].hasMessageDigest)
  269. if not self._imr_options.setdefault('incl_srv_mgd', False):
  270. for p in srv_mgd_predicates:
  271. self._logger.debug('Removing predicate: {}'.format(p))
  272. self.imr.remove(p)
  273. for t in srv_mgd_types:
  274. self._logger.debug('Removing type: {}'.format(t))
  275. self.imr.remove(RDF.type, t)
  276. out_g = Toolbox().globalize_graph(self.imr.graph)
  277. # Clear IMR because it's been pruned. In the rare case it is needed
  278. # after this method, it will be retrieved again.
  279. delattr(self, 'imr')
  280. return out_g
  281. @property
  282. def is_stored(self):
  283. return self.rdfly.ask_rsrc_exists(self.urn)
  284. @property
  285. def types(self):
  286. '''All RDF types.
  287. @return set(rdflib.term.URIRef)
  288. '''
  289. if not hasattr(self, '_types'):
  290. self._types = self.imr.graph[self.imr.identifier : RDF.type]
  291. return self._types
  292. @property
  293. def ldp_types(self):
  294. '''The LDP types.
  295. @return set(rdflib.term.URIRef)
  296. '''
  297. if not hasattr(self, '_ldp_types'):
  298. self._ldp_types = { t for t in self.types if t[:4] == 'ldp:' }
  299. return self._ldp_types
  300. ## LDP METHODS ##
  301. def head(self):
  302. '''
  303. Return values for the headers.
  304. '''
  305. out_headers = defaultdict(list)
  306. self._logger.debug('IMR options in head(): {}'.format(self._imr_options))
  307. digest = self.imr.value(nsc['premis'].hasMessageDigest)
  308. if digest:
  309. etag = digest.identifier.split(':')[-1]
  310. out_headers['ETag'] = 'W/"{}"'.format(etag),
  311. last_updated_term = self.imr.value(nsc['fcrepo'].lastModified)
  312. if last_updated_term:
  313. out_headers['Last-Modified'] = arrow.get(last_updated_term)\
  314. .format('ddd, D MMM YYYY HH:mm:ss Z')
  315. for t in self.ldp_types:
  316. out_headers['Link'].append(
  317. '{};rel="type"'.format(t.n3()))
  318. return out_headers
  319. def get(self, *args, **kwargs):
  320. raise NotImplementedError()
  321. def post(self, *args, **kwargs):
  322. raise NotImplementedError()
  323. def put(self, *args, **kwargs):
  324. raise NotImplementedError()
  325. def patch(self, *args, **kwargs):
  326. raise NotImplementedError()
  327. @transactional
  328. @must_exist
  329. def delete(self, inbound=True, delete_children=True):
  330. '''
  331. https://www.w3.org/TR/ldp/#ldpr-HTTP_DELETE
  332. @param inbound (boolean) If specified, delete all inbound relationships
  333. as well. This is the default and is always the case if referential
  334. integrity is enforced by configuration.
  335. @param delete_children (boolean) Whether to delete all child resources.
  336. This is the default.
  337. '''
  338. refint = current_app.config['store']['ldp_rs']['referential_integrity']
  339. inbound = True if refint else inbound
  340. children = self.imr[nsc['ldp'].contains * '+'] \
  341. if delete_children else []
  342. ret = self._delete_rsrc(inbound)
  343. for child_uri in children:
  344. child_rsrc = Ldpr.inst(
  345. Toolbox().uri_to_uuid(child_uri.identifier), self.repr_opts)
  346. child_rsrc._delete_rsrc(inbound, tstone_pointer=self.uri)
  347. return ret
  348. @transactional
  349. def delete_tombstone(self):
  350. '''
  351. Delete a tombstone.
  352. '''
  353. return self.rdfly.delete_tombstone(self.urn)
  354. ## PROTECTED METHODS ##
  355. def _create_rsrc(self):
  356. '''
  357. Create a new resource by comparing an empty graph with the provided
  358. IMR graph.
  359. '''
  360. self.rdfly.modify_dataset(add_trp=self.provided_imr.graph)
  361. return self.RES_CREATED
  362. def _replace_rsrc(self):
  363. '''
  364. Replace a resource.
  365. The existing resource graph is removed except for the protected terms.
  366. '''
  367. # The extracted IMR is used as a "minus" delta, so protected predicates
  368. # must be removed.
  369. for p in self.protected_pred:
  370. self.imr.remove(p)
  371. delta = self._dedup_deltas(self.imr.graph, self.provided_imr.graph)
  372. self.rdfly.modify_dataset(*delta)
  373. # Reset the IMR because it has changed.
  374. delattr(self, 'imr')
  375. return self.RES_UPDATED
  376. def _delete_rsrc(self, inbound, tstone_pointer=None):
  377. '''
  378. Delete a single resource and create a tombstone.
  379. @param inbound (boolean) Whether to delete the inbound relationships.
  380. @param tstone_pointer (URIRef) If set to a URI, this creates a pointer
  381. to the tombstone of the resource that used to contain the deleted
  382. resource. Otherwise the delete resource becomes a tombstone.
  383. '''
  384. self._logger.info('Removing resource {}'.format(self.urn))
  385. remove_trp = set(self.imr.graph)
  386. add_trp = set()
  387. if tstone_pointer:
  388. add_trp.add((self.urn, nsc['fcsystem'].tombstone, tstone_pointer))
  389. else:
  390. ts = Literal(arrow.utcnow(), datatype=XSD.dateTime)
  391. add_trp.add((self.urn, RDF.type, nsc['fcsystem'].Tombstone))
  392. add_trp.add((self.urn, nsc['fcrepo'].created, ts))
  393. if inbound:
  394. for ib_rsrc_uri in self.imr.graph.subjects(None, self.urn):
  395. remove_trp.add((ib_rsrc_uri, None, self.urn))
  396. self.rdfly.modify_dataset(remove_trp, add_trp)
  397. return self.RES_DELETED
  398. def _set_containment_rel(self):
  399. '''Find the closest parent in the path indicated by the UUID and
  400. establish a containment triple.
  401. E.g.
  402. - If only urn:fcres:a (short: a) exists:
  403. - If a/b/c/d is being created, a becomes container of a/b/c/d. Also,
  404. pairtree nodes are created for a/b and a/b/c.
  405. - If e is being created, the root node becomes container of e.
  406. '''
  407. if '/' in self.uuid:
  408. # Traverse up the hierarchy to find the parent.
  409. parent_uri = self._find_parent_or_create_pairtree(self.uuid)
  410. if parent_uri:
  411. self.rdfly.ds.add((parent_uri, nsc['ldp'].contains,
  412. self.rsrc.identifier))
  413. # Direct or indirect container relationship.
  414. self._add_ldp_dc_ic_rel(parent_uri)
  415. else:
  416. self.rsrc.graph.add((nsc['fcsystem'].root, nsc['ldp'].contains,
  417. self.rsrc.identifier))
  418. def _find_parent_or_create_pairtree(self, uuid):
  419. '''
  420. Check the path-wise parent of the new resource. If it exists, return
  421. its URI. Otherwise, create pairtree resources up the path until an
  422. actual resource or the root node is found.
  423. @return rdflib.term.URIRef
  424. '''
  425. path_components = uuid.split('/')
  426. if len(path_components) < 2:
  427. return None
  428. # Build search list, e.g. for a/b/c/d/e would be a/b/c/d, a/b/c, a/b, a
  429. self._logger.info('Path components: {}'.format(path_components))
  430. fwd_search_order = accumulate(
  431. list(path_components)[:-1],
  432. func=lambda x,y : x + '/' + y
  433. )
  434. rev_search_order = reversed(list(fwd_search_order))
  435. cur_child_uri = nsc['fcres'][uuid]
  436. for cparent_uuid in rev_search_order:
  437. cparent_uri = nsc['fcres'][cparent_uuid]
  438. if self.rdfly.ask_rsrc_exists(cparent_uri):
  439. return cparent_uri
  440. else:
  441. self._create_path_segment(cparent_uri, cur_child_uri)
  442. cur_child_uri = cparent_uri
  443. return None
  444. def _dedup_deltas(self, remove_g, add_g):
  445. '''
  446. Remove duplicate triples from add and remove delta graphs, which would
  447. otherwise contain unnecessary statements that annul each other.
  448. '''
  449. return (
  450. remove_g - add_g,
  451. add_g - remove_g
  452. )
  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)