ldpr.py 19 KB

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