ldpr.py 13 KB

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