ldpr.py 15 KB

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