ldpr.py 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689
  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['fedora'].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. self._rdf_store_cls = getattr(store_mod, Translator.camelcase(
  111. self.rdf_store_layout))
  112. self.rdfly = self._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 nsc['fcres'][self.uuid]
  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_rsrc = Resource(rdfly.ds, nsc['fcres'][parent_uuid])
  242. # Set prefix.
  243. if parent_uuid:
  244. parent_exists = rdfly.ask_rsrc_exists(parent_rsrc)
  245. if not parent_exists:
  246. raise ResourceNotExistsError('Parent not found: {}.'
  247. .format(parent_uuid))
  248. if nsc['ldp'].Container not in rdfly.rsrc.values(RDF.type):
  249. raise InvalidResourceError('Parent {} is not a container.'
  250. .format(parent_uuid))
  251. pfx = parent_uuid + '/'
  252. else:
  253. pfx = ''
  254. # Create candidate UUID and validate.
  255. if slug:
  256. cnd_uuid = pfx + slug
  257. cnd_rsrc = Resource(rdfly.ds, nsc['fcres'][cnd_uuid])
  258. if rdfly.ask_rsrc_exists(cnd_rsrc):
  259. return cls(pfx + str(uuid4()))
  260. else:
  261. return cls(cnd_uuid)
  262. else:
  263. return cls(pfx + str(uuid4()))
  264. ## LDP METHODS ##
  265. def head(self):
  266. '''
  267. Return values for the headers.
  268. '''
  269. headers = self.rdfly.headers
  270. for t in self.ldp_types:
  271. headers['Link'].append('{};rel="type"'.format(t.identifier.n3()))
  272. return headers
  273. def get(self, inbound=False):
  274. '''
  275. https://www.w3.org/TR/ldp/#ldpr-HTTP_GET
  276. '''
  277. im_rsrc = self.rdfly.out_rsrc(inbound)
  278. if not len(im_rsrc.graph):
  279. raise ResourceNotExistsError()
  280. return Translator.globalize_rsrc(im_rsrc)
  281. @transactional
  282. def post(self, data, format='text/turtle'):
  283. '''
  284. https://www.w3.org/TR/ldp/#ldpr-HTTP_POST
  285. Perform a POST action after a valid resource URI has been found.
  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_rsrc(g)
  292. self._set_containment_rel()
  293. @transactional
  294. def put(self, data, format='text/turtle'):
  295. '''
  296. https://www.w3.org/TR/ldp/#ldpr-HTTP_PUT
  297. '''
  298. g = Graph()
  299. g.parse(data=data, format=format, publicID=self.urn)
  300. for t in self.base_types:
  301. g.add((self.urn, RDF.type, t))
  302. self.rdfly.create_or_replace_rsrc(g)
  303. self._set_containment_rel()
  304. @transactional
  305. @must_exist
  306. def delete(self):
  307. '''
  308. https://www.w3.org/TR/ldp/#ldpr-HTTP_DELETE
  309. '''
  310. self.rdfly.delete_rsrc(self.urn)
  311. ## PROTECTED METHODS ##
  312. def _set_containment_rel(self):
  313. '''Find the closest parent in the path indicated by the UUID and
  314. establish a containment triple.
  315. E.g.
  316. - If only urn:fcres:a (short: a) exists:
  317. - If a/b/c/d is being created, a becomes container of a/b/c/d. Also,
  318. pairtree nodes are created for a/b and a/b/c.
  319. - If e is being created, the root node becomes container of e.
  320. '''
  321. if '/' in self.uuid:
  322. # Traverse up the hierarchy to find the parent.
  323. #candidate_parent_urn = self._find_first_ancestor()
  324. #cparent = self.rdfly.ds.resource(candidate_parent_urn)
  325. cparent_uri = self._find_parent_or_create_pairtree(self.uuid)
  326. # Reroute possible containment relationships between parent and new
  327. # resource.
  328. #self._splice_in(cparent)
  329. if cparent_uri:
  330. self.rdfly.ds.add((cparent_uri, nsc['ldp'].contains,
  331. self.rsrc.identifier))
  332. else:
  333. self.rsrc.graph.add((nsc['fcsystem'].root, nsc['ldp'].contains,
  334. self.rsrc.identifier))
  335. # If a resource has no parent and should be parent of the new resource,
  336. # add the relationship.
  337. #for child_uri in self.find_lost_children():
  338. # self.rsrc.add(nsc['ldp'].contains, child_uri)
  339. def _find_parent_or_create_pairtree(self, uuid):
  340. '''
  341. Check the path-wise parent of the new resource. If it exists, return
  342. its URI. Otherwise, create pairtree resources up the path until an
  343. actual resource or the root node is found.
  344. @return rdflib.term.URIRef
  345. '''
  346. path_components = uuid.split('/')
  347. if len(path_components) < 2:
  348. return None
  349. # Build search list, e.g. for a/b/c/d/e would be a/b/c/d, a/b/c, a/b, a
  350. self._logger.info('Path components: {}'.format(path_components))
  351. fwd_search_order = accumulate(
  352. list(path_components)[:-1],
  353. func=lambda x,y : x + '/' + y
  354. )
  355. rev_search_order = reversed(list(fwd_search_order))
  356. cur_child_uri = nsc['fcres'][uuid]
  357. for cparent_uuid in rev_search_order:
  358. cparent_uri = nsc['fcres'][cparent_uuid]
  359. # @FIXME A bit ugly. Maybe we should use a Pairtree class.
  360. if self._rdf_store_cls(cparent_uri).ask_rsrc_exists():
  361. return cparent_uri
  362. else:
  363. self._create_pairtree(cparent_uri, cur_child_uri)
  364. cur_child_uri = cparent_uri
  365. return None
  366. #def _find_first_ancestor(self):
  367. # '''
  368. # Find by logic and triplestore queries the first existing resource by
  369. # traversing a path hierarchy upwards.
  370. # @return rdflib.term.URIRef
  371. # '''
  372. # path_components = self.uuid.split('/')
  373. # if len(path_components) < 2:
  374. # return None
  375. # # Build search list, e.g. for a/b/c/d/e would be a/b/c/d, a/b/c, a/b, a
  376. # search_order = accumulate(
  377. # reversed(search_order)[1:],
  378. # func=lambda x,y : x + '/' + y
  379. # )
  380. # for cmp in search_order:
  381. # if self.rdfly.ask_rsrc_exists(ns['fcres'].cmp):
  382. # return urn
  383. # else:
  384. # self._create_pairtree_node(cmp)
  385. # return None
  386. def _create_pairtree(self, uri, child_uri):
  387. '''
  388. Create a pairtree node with a containment statement.
  389. This is the default fcrepo4 behavior and probably not the best one, but
  390. we are following it here.
  391. If a resource such as `fcres:a/b/c` is created, and neither fcres:a or
  392. fcres:a/b exists, we have to create pairtree nodes in order to maintain
  393. the containment chain.
  394. This way, both fcres:a and fcres:a/b become thus containers of
  395. fcres:a/b/c, which may be confusing.
  396. '''
  397. g = Graph()
  398. g.add((uri, RDF.type, nsc['fedora'].Pairtree))
  399. g.add((uri, RDF.type, nsc['ldp'].Container))
  400. g.add((uri, RDF.type, nsc['ldp'].BasicContainer))
  401. g.add((uri, RDF.type, nsc['ldp'].RDFSource))
  402. g.add((uri, nsc['ldp'].contains, child_uri))
  403. if '/' not in str(uri):
  404. g.add((nsc['fcsystem'].root, nsc['ldp'].contains, uri))
  405. self.rdfly.create_rsrc(g)
  406. #def _splice_in(self, parent):
  407. # '''
  408. # Insert the new resource between a container and its child.
  409. # If a resource is inserted between two resources that already have a
  410. # containment relationship, e.g. inserting `<a/b>` where
  411. # `<a> ldp:contains <a/b/c>` exists, the existing containment
  412. # relationship must be broken in order to insert the resource in between.
  413. # NOTE: This method only removes the containment relationship between the
  414. # old parent (`<a>` in the example above) and old child (`<a/b/c>`) and
  415. # sets a new one between the new parent and child (`<a/b>` and
  416. # `<a/b/c>`). The relationship between `<a>` and `<a/b>` is set
  417. # separately.
  418. # @param rdflib.resource.Resource parent The parent resource. This
  419. # includes the root node.
  420. # '''
  421. # # For some reason, initBindings (which adds a VALUES statement in the
  422. # # query) does not work **just for `?new`**. `BIND` is necessary along
  423. # # with a format() function.
  424. # q = '''
  425. # SELECT ?child {{
  426. # ?p ldp:contains ?child .
  427. # FILTER ( ?child != <{}> ) .
  428. # FILTER STRSTARTS(str(?child), "{}") .
  429. # }}
  430. # LIMIT 1
  431. # '''.format(self.urn)
  432. # qres = self.rsrc.graph.query(q, initBindings={'p' : parent.identifier})
  433. # if not qres:
  434. # return
  435. # child_urn = qres.next()[0]
  436. # parent.remove(nsc['ldp'].contains, child_urn)
  437. # self.src.add(nsc['ldp'].contains, child_urn)
  438. #def find_lost_children(self):
  439. # '''
  440. # If the parent was created after its children and has to find them!
  441. # '''
  442. # q = '''
  443. # SELECT ?child {
  444. class LdpRs(Ldpr):
  445. '''LDP-RS (LDP RDF source).
  446. Definition: https://www.w3.org/TR/ldp/#ldprs
  447. '''
  448. base_types = {
  449. nsc['ldp'].RDFSource
  450. }
  451. std_headers = {
  452. 'Accept-Post' : {
  453. 'text/turtle',
  454. 'text/rdf+n3',
  455. 'text/n3',
  456. 'application/rdf+xml',
  457. 'application/n-triples',
  458. 'application/ld+json',
  459. 'multipart/form-data',
  460. 'application/sparql-update',
  461. },
  462. 'Accept-Patch' : {
  463. 'application/sparql-update',
  464. },
  465. }
  466. @transactional
  467. @must_exist
  468. def patch(self, data):
  469. '''
  470. https://www.w3.org/TR/ldp/#ldpr-HTTP_PATCH
  471. '''
  472. ts = Literal(arrow.utcnow(), datatype=XSD.dateTime)
  473. self.rdfly.patch_rsrc(self.urn, data, ts)
  474. self.rdfly.ds.add((self.urn, nsc['fedora'].lastUpdated, ts))
  475. self.rdfly.ds.add((self.urn, nsc['fedora'].lastUpdatedBy,
  476. Literal('BypassAdmin')))
  477. class LdpNr(LdpRs):
  478. '''LDP-NR (Non-RDF Source).
  479. Definition: https://www.w3.org/TR/ldp/#ldpnr
  480. '''
  481. pass
  482. class Ldpc(LdpRs):
  483. '''LDPC (LDP Container).'''
  484. def __init__(self, uuid):
  485. super().__init__(uuid)
  486. self.base_types.update({
  487. nsc['ldp'].Container,
  488. })
  489. class LdpBc(Ldpc):
  490. '''LDP-BC (LDP Basic Container).'''
  491. def __init__(self, uuid):
  492. super().__init__(uuid)
  493. self.base_types.update({
  494. nsc['ldp'].BasicContainer,
  495. })
  496. class LdpDc(Ldpc):
  497. '''LDP-DC (LDP Direct Container).'''
  498. def __init__(self, uuid):
  499. super().__init__(uuid)
  500. self.base_types.update({
  501. nsc['ldp'].DirectContainer,
  502. })
  503. class LdpIc(Ldpc):
  504. '''LDP-IC (LDP Indirect Container).'''
  505. def __init__(self, uuid):
  506. super().__init__(uuid)
  507. self.base_types.update({
  508. nsc['ldp'].IndirectContainer,
  509. })