ldpr.py 14 KB

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