ldpr.py 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502
  1. import logging
  2. from abc import ABCMeta
  3. from importlib import import_module
  4. from itertools import accumulate
  5. from uuid import uuid4
  6. import arrow
  7. from rdflib import Graph
  8. from rdflib.resource import Resource
  9. from rdflib.namespace import RDF, XSD
  10. from rdflib.term import Literal
  11. from lakesuperior.config_parser import config
  12. from lakesuperior.connectors.filesystem_connector import FilesystemConnector
  13. from lakesuperior.core.namespaces import ns_collection as nsc
  14. from lakesuperior.util.translator import Translator
  15. class ResourceExistsError(RuntimeError):
  16. '''
  17. Raised in an attempt to create a resource a URN that already exists and is
  18. not supposed to.
  19. This usually surfaces at the HTTP level as a 409.
  20. '''
  21. pass
  22. class ResourceNotExistsError(RuntimeError):
  23. '''
  24. Raised in an attempt to create a resource a URN that does not exist and is
  25. supposed to.
  26. This usually surfaces at the HTTP level as a 404.
  27. '''
  28. pass
  29. class InvalidResourceError(RuntimeError):
  30. '''
  31. Raised when an invalid resource is found.
  32. This usually surfaces at the HTTP level as a 409 or other error.
  33. '''
  34. pass
  35. def transactional(fn):
  36. '''
  37. Decorator for methods of the Ldpr class to handle transactions in an RDF
  38. store.
  39. '''
  40. def wrapper(self, *args, **kwargs):
  41. try:
  42. ret = fn(self, *args, **kwargs)
  43. print('Committing transaction.')
  44. self.rdfly.store.commit()
  45. return ret
  46. except:
  47. print('Rolling back transaction.')
  48. self.rdfly.store.rollback()
  49. raise
  50. return wrapper
  51. def must_exist(fn):
  52. '''
  53. Ensures that a method is applied to a stored resource.
  54. Decorator for methods of the Ldpr class.
  55. '''
  56. def wrapper(self, *args, **kwargs):
  57. if not self.is_stored:
  58. raise ResourceNotExistsError(
  59. 'Resource #{} not found'.format(self.uuid))
  60. return fn(self, *args, **kwargs)
  61. return wrapper
  62. def must_not_exist(fn):
  63. '''
  64. Ensures that a method is applied to a resource that is not stored.
  65. Decorator for methods of the Ldpr class.
  66. '''
  67. def wrapper(self, *args, **kwargs):
  68. if self.is_stored:
  69. raise ResourceExistsError(
  70. 'Resource #{} already exists.'.format(self.uuid))
  71. return fn(self, *args, **kwargs)
  72. return wrapper
  73. class Ldpr(metaclass=ABCMeta):
  74. '''LDPR (LDP Resource).
  75. Definition: https://www.w3.org/TR/ldp/#ldpr-resource
  76. This class and related subclasses contain the implementation pieces of
  77. the vanilla LDP specifications. This is extended by the
  78. `lakesuperior.fcrepo.Resource` class.
  79. Inheritance graph: https://www.w3.org/TR/ldp/#fig-ldpc-types
  80. Note: Even though LdpNr (which is a subclass of Ldpr) handles binary files,
  81. it still has an RDF representation in the triplestore. Hence, some of the
  82. RDF-related methods are defined in this class rather than in the LdpRs
  83. class.
  84. Convention notes:
  85. All the methods in this class handle internal UUIDs (URN). Public-facing
  86. URIs are converted from URNs and passed by these methods to the methods
  87. handling HTTP negotiation.
  88. The data passed to the store layout for processing should be in a graph.
  89. All conversion from request payload strings is done here.
  90. '''
  91. FCREPO_PTREE_TYPE = nsc['fcrepo'].Pairtree
  92. LDP_NR_TYPE = nsc['ldp'].NonRDFSource
  93. LDP_RS_TYPE = nsc['ldp'].RDFSource
  94. _logger = logging.getLogger(__module__)
  95. rdf_store_layout = config['application']['store']['ldp_rs']['layout']
  96. ## MAGIC METHODS ##
  97. def __init__(self, uuid):
  98. '''Instantiate an in-memory LDP resource that can be loaded from and
  99. persisted to storage.
  100. Persistence is done in this class. None of the operations in the store
  101. layout should commit an open transaction. Methods are wrapped in a
  102. transaction by using the `@transactional` decorator.
  103. @param uuid (string) UUID of the resource.
  104. '''
  105. self.uuid = uuid
  106. # Dynamically load the store layout indicated in the configuration.
  107. store_mod = import_module(
  108. 'lakesuperior.store_layouts.rdf.{}'.format(
  109. self.rdf_store_layout))
  110. # Ideally, _rdf_store_cls should not be a class member, but
  111. # `_find_parent_or_create_pairtree` is using it at the moment. That
  112. # should be fixed some time.
  113. self._rdf_store_cls = getattr(store_mod, Translator.camelcase(
  114. self.rdf_store_layout))
  115. self._urn = nsc['fcres'][uuid] if self.uuid is not None \
  116. else self._rdf_store_cls.ROOT_NODE_URN
  117. self.rdfly = self._rdf_store_cls(self._urn)
  118. # Same thing coud be done for the filesystem store layout, but we
  119. # will keep it simple for now.
  120. self.fs = FilesystemConnector()
  121. @property
  122. def urn(self):
  123. '''
  124. The internal URI (URN) for the resource as stored in the triplestore.
  125. This is a URN that needs to be converted to a global URI for the REST
  126. API.
  127. @return rdflib.URIRef
  128. '''
  129. return self._urn
  130. @property
  131. def uri(self):
  132. '''
  133. The URI for the resource as published by the REST API.
  134. @return rdflib.URIRef
  135. '''
  136. return Translator.uuid_to_uri(self.uuid)
  137. @property
  138. def rsrc(self):
  139. '''
  140. The RDFLib resource representing this LDPR. This is a copy of the
  141. stored data if present, and what gets passed to most methods of the
  142. store layout methods.
  143. @return rdflib.resource.Resource
  144. '''
  145. if not hasattr(self, '_rsrc'):
  146. self._rsrc = self.rdfly.rsrc
  147. return self._rsrc
  148. @property
  149. def is_stored(self):
  150. return self.rdfly.ask_rsrc_exists()
  151. @property
  152. def types(self):
  153. '''All RDF types.
  154. @return generator
  155. '''
  156. if not hasattr(self, '_types'):
  157. self._types = set(self.rsrc[RDF.type])
  158. return self._types
  159. @property
  160. def ldp_types(self):
  161. '''The LDP types.
  162. @return set(rdflib.term.URIRef)
  163. '''
  164. if not hasattr(self, '_ldp_types'):
  165. self._ldp_types = set()
  166. for t in self.types:
  167. if t.qname()[:4] == 'ldp:':
  168. self._ldp_types.add(t)
  169. return self._ldp_types
  170. @property
  171. def containment(self):
  172. if not hasattr(self, '_containment'):
  173. q = '''
  174. SELECT ?container ?contained {
  175. {
  176. ?s ldp:contains ?contained .
  177. } UNION {
  178. ?container ldp:contains ?s .
  179. }
  180. }
  181. '''
  182. qres = self.rsrc.graph.query(q, initBindings={'s' : self.urn})
  183. # There should only be one container.
  184. for t in qres:
  185. if t[0]:
  186. container = self.rdfly.ds.resource(t[0])
  187. contains = ( self.rdfly.ds.resource(t[1]) for t in qres if t[1] )
  188. self._containment = {
  189. 'container' : container, 'contains' : contains}
  190. return self._containment
  191. @containment.deleter
  192. def containment(self):
  193. '''
  194. Reset containment variable when changing containment triples.
  195. '''
  196. del self._containment
  197. @property
  198. def container(self):
  199. return self.containment['container']
  200. @property
  201. def contains(self):
  202. return self.containment['contains']
  203. ## STATIC & CLASS METHODS ##
  204. @classmethod
  205. def load_rdf_layout(cls, uuid=None):
  206. '''
  207. Dynamically load the store layout indicated in the configuration.
  208. This essentially replicates the init() code in a static context.
  209. '''
  210. store_mod = import_module(
  211. 'lakesuperior.store_layouts.rdf.{}'.format(
  212. cls.rdf_store_layout))
  213. rdf_layout_cls = getattr(store_mod, Translator.camelcase(
  214. cls.rdf_store_layout))
  215. return rdf_layout_cls(uuid)
  216. @classmethod
  217. def readonly_inst(cls, uuid):
  218. '''
  219. Fatory method that creates and returns an instance of an LDPR subclass
  220. based on information that needs to be queried from the underlying
  221. graph store.
  222. This is used with retrieval methods for resources that already exist.
  223. @param uuid UUID of the instance.
  224. '''
  225. rdfly = cls.load_rdf_layout(cls, uuid)
  226. rdf_types = rdfly.rsrc[nsc['res'][uuid] : RDF.type]
  227. for t in rdf_types:
  228. if t == cls.LDP_NR_TYPE:
  229. return LdpNr(uuid)
  230. if t == cls.LDP_RS_TYPE:
  231. return LdpRs(uuid)
  232. raise ResourceNotExistsError('Resource #{} does not exist or does not '
  233. 'have a valid LDP type.'.format(uuid))
  234. @classmethod
  235. def inst_for_post(cls, parent_uuid=None, slug=None):
  236. '''
  237. Validate conditions to perform a POST and return an LDP resource
  238. instancefor using with the `post` method.
  239. This may raise an exception resulting in a 404 if the parent is not
  240. found or a 409 if the parent is not a valid container.
  241. '''
  242. # Shortcut!
  243. if not slug and not parent_uuid:
  244. return cls(str(uuid4()))
  245. rdfly = cls.load_rdf_layout()
  246. parent_rsrc = Resource(rdfly.ds, nsc['fcres'][parent_uuid])
  247. # Set prefix.
  248. if parent_uuid:
  249. parent_exists = rdfly.ask_rsrc_exists(parent_rsrc)
  250. if not parent_exists:
  251. raise ResourceNotExistsError('Parent not found: {}.'
  252. .format(parent_uuid))
  253. if nsc['ldp'].Container not in rdfly.rsrc.values(RDF.type):
  254. raise InvalidResourceError('Parent {} is not a container.'
  255. .format(parent_uuid))
  256. pfx = parent_uuid + '/'
  257. else:
  258. pfx = ''
  259. # Create candidate UUID and validate.
  260. if slug:
  261. cnd_uuid = pfx + slug
  262. cnd_rsrc = Resource(rdfly.ds, nsc['fcres'][cnd_uuid])
  263. if rdfly.ask_rsrc_exists(cnd_rsrc):
  264. return cls(pfx + str(uuid4()))
  265. else:
  266. return cls(cnd_uuid)
  267. else:
  268. return cls(pfx + str(uuid4()))
  269. ## LDP METHODS ##
  270. @transactional
  271. def post(self, data, format='text/turtle'):
  272. '''
  273. https://www.w3.org/TR/ldp/#ldpr-HTTP_POST
  274. Perform a POST action after a valid resource URI has been found.
  275. '''
  276. g = Graph()
  277. g.parse(data=data, format=format, publicID=self.urn)
  278. for t in self.base_types:
  279. g.add((self.urn, RDF.type, t))
  280. self.rdfly.create_rsrc(g)
  281. self._set_containment_rel()
  282. @transactional
  283. def put(self, data, format='text/turtle'):
  284. '''
  285. https://www.w3.org/TR/ldp/#ldpr-HTTP_PUT
  286. '''
  287. g = Graph()
  288. g.parse(data=data, format=format, publicID=self.urn)
  289. for t in self.base_types:
  290. g.add((self.urn, RDF.type, t))
  291. self.rdfly.create_or_replace_rsrc(g)
  292. self._set_containment_rel()
  293. @transactional
  294. @must_exist
  295. def delete(self):
  296. '''
  297. https://www.w3.org/TR/ldp/#ldpr-HTTP_DELETE
  298. '''
  299. self.rdfly.delete_rsrc(self.urn)
  300. ## PROTECTED METHODS ##
  301. def _set_containment_rel(self):
  302. '''Find the closest parent in the path indicated by the UUID and
  303. establish a containment triple.
  304. E.g.
  305. - If only urn:fcres:a (short: a) exists:
  306. - If a/b/c/d is being created, a becomes container of a/b/c/d. Also,
  307. pairtree nodes are created for a/b and a/b/c.
  308. - If e is being created, the root node becomes container of e.
  309. '''
  310. if '/' in self.uuid:
  311. # Traverse up the hierarchy to find the parent.
  312. #candidate_parent_urn = self._find_first_ancestor()
  313. #cparent = self.rdfly.ds.resource(candidate_parent_urn)
  314. cparent_uri = self._find_parent_or_create_pairtree(self.uuid)
  315. # Reroute possible containment relationships between parent and new
  316. # resource.
  317. #self._splice_in(cparent)
  318. if cparent_uri:
  319. self.rdfly.ds.add((cparent_uri, nsc['ldp'].contains,
  320. self.rsrc.identifier))
  321. else:
  322. self.rsrc.graph.add((nsc['fcsystem'].root, nsc['ldp'].contains,
  323. self.rsrc.identifier))
  324. # If a resource has no parent and should be parent of the new resource,
  325. # add the relationship.
  326. #for child_uri in self.find_lost_children():
  327. # self.rsrc.add(nsc['ldp'].contains, child_uri)
  328. def _find_parent_or_create_pairtree(self, uuid):
  329. '''
  330. Check the path-wise parent of the new resource. If it exists, return
  331. its URI. Otherwise, create pairtree resources up the path until an
  332. actual resource or the root node is found.
  333. @return rdflib.term.URIRef
  334. '''
  335. path_components = uuid.split('/')
  336. if len(path_components) < 2:
  337. return None
  338. # Build search list, e.g. for a/b/c/d/e would be a/b/c/d, a/b/c, a/b, a
  339. self._logger.info('Path components: {}'.format(path_components))
  340. fwd_search_order = accumulate(
  341. list(path_components)[:-1],
  342. func=lambda x,y : x + '/' + y
  343. )
  344. rev_search_order = reversed(list(fwd_search_order))
  345. cur_child_uri = nsc['fcres'][uuid]
  346. for cparent_uuid in rev_search_order:
  347. cparent_uri = nsc['fcres'][cparent_uuid]
  348. # @FIXME A bit ugly. Maybe we should use a Pairtree class.
  349. if self._rdf_store_cls(cparent_uri).ask_rsrc_exists():
  350. return cparent_uri
  351. else:
  352. self._create_pairtree(cparent_uri, cur_child_uri)
  353. cur_child_uri = cparent_uri
  354. return None
  355. def _create_pairtree(self, uri, child_uri):
  356. '''
  357. Create a pairtree node with a containment statement.
  358. This is the default fcrepo4 behavior and probably not the best one, but
  359. we are following it here.
  360. If a resource such as `fcres:a/b/c` is created, and neither fcres:a or
  361. fcres:a/b exists, we have to create pairtree nodes in order to maintain
  362. the containment chain.
  363. This way, both fcres:a and fcres:a/b become thus containers of
  364. fcres:a/b/c, which may be confusing.
  365. '''
  366. g = Graph()
  367. g.add((uri, RDF.type, nsc['fcrepo'].Pairtree))
  368. g.add((uri, RDF.type, nsc['ldp'].Container))
  369. g.add((uri, RDF.type, nsc['ldp'].BasicContainer))
  370. g.add((uri, RDF.type, nsc['ldp'].RDFSource))
  371. g.add((uri, nsc['ldp'].contains, child_uri))
  372. if '/' not in str(uri):
  373. g.add((nsc['fcsystem'].root, nsc['ldp'].contains, uri))
  374. self.rdfly.create_rsrc(g)