ldpr.py 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939
  1. import logging
  2. from abc import ABCMeta
  3. from collections import defaultdict
  4. from copy import deepcopy
  5. from itertools import accumulate, groupby
  6. from pprint import pformat
  7. from uuid import uuid4
  8. import arrow
  9. import rdflib
  10. from flask import current_app, g, request
  11. from rdflib import Graph
  12. from rdflib.resource import Resource
  13. from rdflib.namespace import RDF, XSD
  14. from rdflib.term import URIRef, Literal
  15. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  16. from lakesuperior.dictionaries.srv_mgd_terms import srv_mgd_subjects, \
  17. srv_mgd_predicates, srv_mgd_types
  18. from lakesuperior.exceptions import *
  19. from lakesuperior.store_layouts.ldp_rs.base_rdf_layout import BaseRdfLayout
  20. def atomic(fn):
  21. '''
  22. Handle atomic operations in an RDF store.
  23. This wrapper ensures that a write operation is performed atomically. It
  24. also takes care of sending a message for each resource changed in the
  25. transaction.
  26. '''
  27. def wrapper(self, *args, **kwargs):
  28. request.changelog = []
  29. try:
  30. ret = fn(self, *args, **kwargs)
  31. except:
  32. self._logger.warn('Rolling back transaction.')
  33. self.rdfly.store.rollback()
  34. raise
  35. else:
  36. self._logger.info('Committing transaction.')
  37. self.rdfly.store.commit()
  38. for ev in request.changelog:
  39. self._logger.info('Message: {}'.format(pformat(ev)))
  40. self._send_event_msg(*ev)
  41. return ret
  42. return wrapper
  43. class Ldpr(metaclass=ABCMeta):
  44. '''LDPR (LDP Resource).
  45. Definition: https://www.w3.org/TR/ldp/#ldpr-resource
  46. This class and related subclasses contain the implementation pieces of
  47. the vanilla LDP specifications. This is extended by the
  48. `lakesuperior.fcrepo.Resource` class.
  49. Inheritance graph: https://www.w3.org/TR/ldp/#fig-ldpc-types
  50. Note: Even though LdpNr (which is a subclass of Ldpr) handles binary files,
  51. it still has an RDF representation in the triplestore. Hence, some of the
  52. RDF-related methods are defined in this class rather than in the LdpRs
  53. class.
  54. Convention notes:
  55. All the methods in this class handle internal UUIDs (URN). Public-facing
  56. URIs are converted from URNs and passed by these methods to the methods
  57. handling HTTP negotiation.
  58. The data passed to the store layout for processing should be in a graph.
  59. All conversion from request payload strings is done here.
  60. '''
  61. EMBED_CHILD_RES_URI = nsc['fcrepo'].EmbedResources
  62. FCREPO_PTREE_TYPE = nsc['fcrepo'].Pairtree
  63. INS_CNT_REL_URI = nsc['ldp'].insertedContentRelation
  64. LDP_NR_TYPE = nsc['ldp'].NonRDFSource
  65. LDP_RS_TYPE = nsc['ldp'].RDFSource
  66. MBR_RSRC_URI = nsc['ldp'].membershipResource
  67. MBR_REL_URI = nsc['ldp'].hasMemberRelation
  68. RETURN_CHILD_RES_URI = nsc['fcrepo'].Children
  69. RETURN_INBOUND_REF_URI = nsc['fcrepo'].InboundReferences
  70. RETURN_SRV_MGD_RES_URI = nsc['fcrepo'].ServerManaged
  71. ROOT_NODE_URN = nsc['fcsystem'].root
  72. # Workflow type. Inbound means that the resource is being written to the
  73. # store, outbounnd is being retrieved for output.
  74. WRKF_INBOUND = '_workflow:inbound_'
  75. WRKF_OUTBOUND = '_workflow:outbound_'
  76. # Default user to be used for the `createdBy` and `lastUpdatedBy` if a user
  77. # is not provided.
  78. DEFAULT_USER = Literal('BypassAdmin')
  79. RES_CREATED = '_create_'
  80. RES_DELETED = '_delete_'
  81. RES_UPDATED = '_update_'
  82. protected_pred = (
  83. nsc['fcrepo'].created,
  84. nsc['fcrepo'].createdBy,
  85. nsc['ldp'].contains,
  86. )
  87. _logger = logging.getLogger(__name__)
  88. ## STATIC & CLASS METHODS ##
  89. @classmethod
  90. def outbound_inst(cls, uuid, repr_opts=None, **kwargs):
  91. '''
  92. Create an instance for retrieval purposes.
  93. This factory method creates and returns an instance of an LDPR subclass
  94. based on information that needs to be queried from the underlying
  95. graph store.
  96. N.B. The resource must exist.
  97. @param uuid UUID of the instance.
  98. '''
  99. cls._logger.info('Retrieving stored resource: {}'.format(uuid))
  100. imr_urn = nsc['fcres'][uuid] if uuid else cls.ROOT_NODE_URN
  101. imr = current_app.rdfly.extract_imr(imr_urn, **repr_opts)
  102. cls._logger.debug('Extracted graph: {}'.format(
  103. pformat(set(imr.graph))))
  104. rdf_types = set(imr.graph.objects(imr.identifier, RDF.type))
  105. if cls.LDP_NR_TYPE in rdf_types:
  106. from lakesuperior.model.ldp_nr import LdpNr
  107. cls._logger.info('Resource is a LDP-NR.')
  108. rsrc = LdpNr(uuid, repr_opts, **kwargs)
  109. elif cls.LDP_RS_TYPE in rdf_types:
  110. from lakesuperior.model.ldp_rs import LdpRs
  111. cls._logger.info('Resource is a LDP-RS.')
  112. rsrc = LdpRs(uuid, repr_opts, **kwargs)
  113. else:
  114. raise ResourceNotExistsError(uuid)
  115. # Sneak in the already extracted IMR to save a query.
  116. rsrc._imr = imr
  117. return rsrc
  118. @staticmethod
  119. def inbound_inst(uuid, content_length, mimetype, stream, **kwargs):
  120. '''
  121. Determine LDP type (and instance class) from request headers and body.
  122. This is used with POST and PUT methods.
  123. @param uuid (string) UUID of the resource to be created or updated.
  124. '''
  125. # @FIXME Circular reference.
  126. from lakesuperior.model.ldp_nr import LdpNr
  127. from lakesuperior.model.ldp_rs import Ldpc, LdpDc, LdpIc, LdpRs
  128. urn = nsc['fcres'][uuid]
  129. logger = __class__._logger
  130. if not content_length:
  131. # Create empty LDPC.
  132. logger.debug('No data received in request. '
  133. 'Creating empty container.')
  134. inst = Ldpc(uuid, provided_imr=Resource(Graph(), urn), **kwargs)
  135. elif __class__.is_rdf_parsable(mimetype):
  136. # Create container and populate it with provided RDF data.
  137. input_rdf = stream.read()
  138. provided_gr = Graph().parse(data=input_rdf,
  139. format=mimetype, publicID=urn)
  140. logger.debug('Provided graph: {}'.format(
  141. pformat(set(provided_gr))))
  142. local_gr = g.tbox.localize_graph(provided_gr)
  143. logger.debug('Parsed local graph: {}'.format(
  144. pformat(set(local_gr))))
  145. provided_imr = Resource(local_gr, urn)
  146. # Determine whether it is a basic, direct or indirect container.
  147. if Ldpr.MBR_RSRC_URI in local_gr.predicates() and \
  148. Ldpr.MBR_REL_URI in local_gr.predicates():
  149. if Ldpr.INS_CNT_REL_URI in local_gr.predicates():
  150. cls = LdpIc
  151. else:
  152. cls = LdpDc
  153. else:
  154. cls = Ldpc
  155. inst = cls(uuid, provided_imr=provided_imr, **kwargs)
  156. # Make sure we are not updating an LDP-RS with an LDP-NR.
  157. if inst.is_stored and inst.LDP_NR_TYPE in inst.ldp_types:
  158. raise IncompatibleLdpTypeError(uuid, mimetype)
  159. inst._check_mgd_terms(inst.provided_imr.graph)
  160. else:
  161. # Create a LDP-NR and equip it with the binary file provided.
  162. provided_imr = Resource(Graph(), urn)
  163. inst = LdpNr(uuid, stream=stream, mimetype=mimetype,
  164. provided_imr=provided_imr, **kwargs)
  165. # Make sure we are not updating an LDP-NR with an LDP-RS.
  166. if inst.is_stored and inst.LDP_RS_TYPE in inst.ldp_types:
  167. raise IncompatibleLdpTypeError(uuid, mimetype)
  168. logger.info('Creating resource of type: {}'.format(
  169. inst.__class__.__name__))
  170. try:
  171. types = inst.types
  172. except:
  173. types = set()
  174. if nsc['fcrepo'].Pairtree in types:
  175. raise InvalidResourceError(inst.uuid)
  176. return inst
  177. @staticmethod
  178. def is_rdf_parsable(mimetype):
  179. '''
  180. Checks whether a MIME type support RDF parsing by a RDFLib plugin.
  181. @param mimetype (string) MIME type to check.
  182. '''
  183. try:
  184. rdflib.plugin.get(mimetype, rdflib.parser.Parser)
  185. except rdflib.plugin.PluginException:
  186. return False
  187. else:
  188. return True
  189. @staticmethod
  190. def is_rdf_serializable(mimetype):
  191. '''
  192. Checks whether a MIME type support RDF serialization by a RDFLib plugin
  193. @param mimetype (string) MIME type to check.
  194. '''
  195. try:
  196. rdflib.plugin.get(mimetype, rdflib.serializer.Serializer)
  197. except rdflib.plugin.PluginException:
  198. return False
  199. else:
  200. return True
  201. ## MAGIC METHODS ##
  202. def __init__(self, uuid, repr_opts={}, provided_imr=None, **kwargs):
  203. '''Instantiate an in-memory LDP resource that can be loaded from and
  204. persisted to storage.
  205. Persistence is done in this class. None of the operations in the store
  206. layout should commit an open transaction. Methods are wrapped in a
  207. transaction by using the `@atomic` decorator.
  208. @param uuid (string) UUID of the resource. If None (must be explicitly
  209. set) it refers to the root node. It can also be the full URI or URN,
  210. in which case it will be converted.
  211. @param repr_opts (dict) Options used to retrieve the IMR. See
  212. `parse_rfc7240` for format details.
  213. @Param provd_rdf (string) RDF data provided by the client in
  214. operations isuch as `PUT` or `POST`, serialized as a string. This sets
  215. the `provided_imr` property.
  216. '''
  217. self.uuid = g.tbox.uri_to_uuid(uuid) \
  218. if isinstance(uuid, URIRef) else uuid
  219. self.urn = nsc['fcres'][uuid] \
  220. if self.uuid else self.ROOT_NODE_URN
  221. self.uri = g.tbox.uuid_to_uri(self.uuid)
  222. self.rdfly = current_app.rdfly
  223. self.nonrdfly = current_app.nonrdfly
  224. self.provided_imr = provided_imr
  225. @property
  226. def rsrc(self):
  227. '''
  228. The RDFLib resource representing this LDPR. This is a live
  229. representation of the stored data if present.
  230. @return rdflib.resource.Resource
  231. '''
  232. if not hasattr(self, '_rsrc'):
  233. self._rsrc = self.rdfly.ds.resource(self.urn)
  234. return self._rsrc
  235. @property
  236. def imr(self):
  237. '''
  238. Extract an in-memory resource from the graph store.
  239. If the resource is not stored (yet), a `ResourceNotExistsError` is
  240. raised.
  241. @return rdflib.resource.Resource
  242. '''
  243. if not hasattr(self, '_imr'):
  244. if hasattr(self, '_imr_options'):
  245. self._logger.debug('IMR options: {}'.format(self._imr_options))
  246. imr_options = self._imr_options
  247. else:
  248. imr_options = {}
  249. options = dict(imr_options, strict=True)
  250. self._imr = self.rdfly.extract_imr(self.urn, **options)
  251. return self._imr
  252. @property
  253. def stored_or_new_imr(self):
  254. '''
  255. Extract an in-memory resource for harmless manipulation and output.
  256. If the resource is not stored (yet), initialize a new IMR with basic
  257. triples.
  258. @return rdflib.resource.Resource
  259. '''
  260. if not hasattr(self, '_imr'):
  261. if hasattr(self, '_imr_options'):
  262. self._logger.debug('IMR options: {}'.format(self._imr_options))
  263. imr_options = self._imr_options
  264. else:
  265. imr_options = {}
  266. options = dict(imr_options, strict=True)
  267. try:
  268. self._imr = self.rdfly.extract_imr(self.urn, **options)
  269. except ResourceNotExistsError:
  270. self._imr = Resource(Graph(), self.urn)
  271. for t in self.base_types:
  272. self.imr.add(RDF.type, t)
  273. return self._imr
  274. @imr.deleter
  275. def imr(self):
  276. '''
  277. Delete in-memory buffered resource.
  278. '''
  279. delattr(self, '_imr')
  280. @property
  281. def out_graph(self):
  282. '''
  283. Retun a globalized graph of the resource's IMR.
  284. Internal URNs are replaced by global URIs using the endpoint webroot.
  285. '''
  286. # Remove digest hash.
  287. self.imr.remove(nsc['premis'].hasMessageDigest)
  288. if not self._imr_options.get('incl_srv_mgd', True):
  289. for p in srv_mgd_predicates:
  290. self._logger.debug('Removing predicate: {}'.format(p))
  291. self.imr.remove(p)
  292. for t in srv_mgd_types:
  293. self._logger.debug('Removing type: {}'.format(t))
  294. self.imr.remove(RDF.type, t)
  295. out_gr = g.tbox.globalize_graph(self.imr.graph)
  296. # Clear IMR because it's been pruned. In the rare case it is needed
  297. # after this method, it will be retrieved again.
  298. delattr(self, 'imr')
  299. return out_gr
  300. @property
  301. def is_stored(self):
  302. if hasattr(self, '_imr'):
  303. return len(self.imr.graph) > 0
  304. else:
  305. return self.rdfly.ask_rsrc_exists(self.urn)
  306. @property
  307. def types(self):
  308. '''All RDF types.
  309. @return set(rdflib.term.URIRef)
  310. '''
  311. if not hasattr(self, '_types'):
  312. if hasattr(self, 'imr') and len(self.imr.graph):
  313. imr = self.imr
  314. elif hasattr(self, 'provided_imr') and \
  315. len(self.provided_imr.graph):
  316. imr = provided_imr
  317. self._types = set(imr.graph[self.urn : RDF.type])
  318. return self._types
  319. @property
  320. def ldp_types(self):
  321. '''The LDP types.
  322. @return set(rdflib.term.URIRef)
  323. '''
  324. if not hasattr(self, '_ldp_types'):
  325. self._ldp_types = { t for t in self.types if nsc['ldp'] in t }
  326. return self._ldp_types
  327. ## LDP METHODS ##
  328. def head(self):
  329. '''
  330. Return values for the headers.
  331. '''
  332. out_headers = defaultdict(list)
  333. digest = self.imr.value(nsc['premis'].hasMessageDigest)
  334. if digest:
  335. etag = digest.identifier.split(':')[-1]
  336. out_headers['ETag'] = 'W/"{}"'.format(etag),
  337. last_updated_term = self.imr.value(nsc['fcrepo'].lastModified)
  338. if last_updated_term:
  339. out_headers['Last-Modified'] = arrow.get(last_updated_term)\
  340. .format('ddd, D MMM YYYY HH:mm:ss Z')
  341. for t in self.ldp_types:
  342. out_headers['Link'].append(
  343. '{};rel="type"'.format(t.n3()))
  344. return out_headers
  345. def get(self):
  346. '''
  347. This gets the RDF metadata. The binary retrieval is handled directly
  348. by the route.
  349. '''
  350. return self.out_graph
  351. @atomic
  352. def post(self):
  353. '''
  354. https://www.w3.org/TR/ldp/#ldpr-HTTP_POST
  355. Perform a POST action after a valid resource URI has been found.
  356. '''
  357. return self._create_or_replace_rsrc(create_only=True)
  358. @atomic
  359. def put(self):
  360. '''
  361. https://www.w3.org/TR/ldp/#ldpr-HTTP_PUT
  362. '''
  363. return self._create_or_replace_rsrc()
  364. def patch(self, *args, **kwargs):
  365. raise NotImplementedError()
  366. @atomic
  367. def delete(self, inbound=True, delete_children=True, leave_tstone=True):
  368. '''
  369. https://www.w3.org/TR/ldp/#ldpr-HTTP_DELETE
  370. @param inbound (boolean) If specified, delete all inbound relationships
  371. as well. This is the default and is always the case if referential
  372. integrity is enforced by configuration.
  373. @param delete_children (boolean) Whether to delete all child resources.
  374. This is the default.
  375. '''
  376. refint = current_app.config['store']['ldp_rs']['referential_integrity']
  377. inbound = True if refint else inbound
  378. children = self.imr[nsc['ldp'].contains * '+'] \
  379. if delete_children else []
  380. ret = self._delete_rsrc(inbound, leave_tstone)
  381. for child_uri in children:
  382. child_rsrc = Ldpr.outbound_inst(
  383. g.tbox.uri_to_uuid(child_uri.identifier),
  384. repr_opts={'incl_children' : False})
  385. child_rsrc._delete_rsrc(inbound, leave_tstone,
  386. tstone_pointer=self.urn)
  387. return ret
  388. @atomic
  389. def delete_tombstone(self):
  390. '''
  391. Delete a tombstone.
  392. N.B. This does not trigger an event.
  393. '''
  394. remove_trp = {
  395. (self.urn, RDF.type, nsc['fcsystem'].Tombstone),
  396. (self.urn, nsc['fcrepo'].created, None),
  397. (None, nsc['fcsystem'].tombstone, self.urn),
  398. }
  399. self.rdfly.modify_dataset(remove_trp)
  400. ## PROTECTED METHODS ##
  401. def _create_or_replace_rsrc(self, create_only=False):
  402. '''
  403. Create or update a resource. PUT and POST methods, which are almost
  404. identical, are wrappers for this method.
  405. @param create_only (boolean) Whether this is a create-only operation.
  406. '''
  407. create = create_only or not self.is_stored
  408. self._add_srv_mgd_triples(create)
  409. self._ensure_single_subject_rdf(self.provided_imr.graph)
  410. ref_int = self.rdfly.config['referential_integrity']
  411. if ref_int:
  412. self._check_ref_int(ref_int)
  413. if create:
  414. ev_type = self._create_rsrc()
  415. else:
  416. ev_type = self._replace_rsrc()
  417. self._set_containment_rel()
  418. return ev_type
  419. def _create_rsrc(self):
  420. '''
  421. Create a new resource by comparing an empty graph with the provided
  422. IMR graph.
  423. '''
  424. self._modify_rsrc(self.RES_CREATED, add_trp=self.provided_imr.graph)
  425. return self.RES_CREATED
  426. def _replace_rsrc(self):
  427. '''
  428. Replace a resource.
  429. The existing resource graph is removed except for the protected terms.
  430. '''
  431. # The extracted IMR is used as a "minus" delta, so protected predicates
  432. # must be removed.
  433. for p in self.protected_pred:
  434. self.imr.remove(p)
  435. delta = self._dedup_deltas(self.imr.graph, self.provided_imr.graph)
  436. self._modify_rsrc(self.RES_UPDATED, *delta)
  437. # Reset the IMR because it has changed.
  438. delattr(self, 'imr')
  439. return self.RES_UPDATED
  440. def _delete_rsrc(self, inbound, leave_tstone=True, tstone_pointer=None):
  441. '''
  442. Delete a single resource and create a tombstone.
  443. @param inbound (boolean) Whether to delete the inbound relationships.
  444. @param tstone_pointer (URIRef) If set to a URN, this creates a pointer
  445. to the tombstone of the resource that used to contain the deleted
  446. resource. Otherwise the delete resource becomes a tombstone.
  447. '''
  448. self._logger.info('Removing resource {}'.format(self.urn))
  449. remove_trp = self.imr.graph
  450. add_trp = Graph()
  451. if leave_tstone:
  452. if tstone_pointer:
  453. add_trp.add((self.urn, nsc['fcsystem'].tombstone,
  454. tstone_pointer))
  455. else:
  456. add_trp.add((self.urn, RDF.type, nsc['fcsystem'].Tombstone))
  457. add_trp.add((self.urn, nsc['fcrepo'].created, g.timestamp_term))
  458. else:
  459. self._logger.info('NOT leaving tombstone.')
  460. self._modify_rsrc(self.RES_DELETED, remove_trp, add_trp)
  461. if inbound:
  462. remove_trp = set()
  463. for ib_rsrc_uri in self.imr.graph.subjects(None, self.urn):
  464. remove_trp = {(ib_rsrc_uri, None, self.urn)}
  465. Ldpr(ib_rsrc_uri)._modify_rsrc(self.RES_UPDATED, remove_trp)
  466. return self.RES_DELETED
  467. def _modify_rsrc(self, ev_type, remove_trp=Graph(), add_trp=Graph()):
  468. '''
  469. Low-level method to modify a graph for a single resource.
  470. @param ev_type (string) The type of event (create, update, delete).
  471. @param remove_trp (rdflib.Graph) Triples to be removed.
  472. @param add_trp (rdflib.Graph) Triples to be added.
  473. '''
  474. # If one of the triple sets is not a graph, do a set merge and
  475. # filtering. This is necessary to support non-RDF terms (e.g.
  476. # variables).
  477. if not isinstance(remove_trp, Graph) or not isinstance(add_trp, Graph):
  478. if isinstance(remove_trp, Graph):
  479. remove_trp = set(remove_trp)
  480. if isinstance(add_trp, Graph):
  481. add_trp = set(add_trp)
  482. merge_gr = remove_trp | add_trp
  483. type = { trp[2] for trp in merge_gr if trp[1] == RDF.type }
  484. actor = { trp[2] for trp in merge_gr \
  485. if trp[1] == nsc['fcrepo'].createdBy }
  486. else:
  487. merge_gr = remove_trp | add_trp
  488. type = merge_gr[ self.urn : RDF.type ]
  489. actor = merge_gr[ self.urn : nsc['fcrepo'].createdBy ]
  490. return self.rdfly.modify_dataset(remove_trp, add_trp, metadata={
  491. 'ev_type' : ev_type,
  492. 'time' : g.timestamp,
  493. 'type' : type,
  494. 'actor' : actor,
  495. })
  496. def _ensure_single_subject_rdf(self, gr):
  497. '''
  498. Ensure that a RDF payload for a POST or PUT has a single resource.
  499. '''
  500. for s in set(gr.subjects()):
  501. if not s == self.urn:
  502. raise SingleSubjectError(s, self.uuid)
  503. def _check_ref_int(self, config):
  504. gr = self.provided_imr.graph
  505. for o in gr.objects():
  506. if isinstance(o, URIRef) and str(o).startswith(g.webroot)\
  507. and not self.rdfly.ask_rsrc_exists(o):
  508. if config == 'strict':
  509. raise RefIntViolationError(o)
  510. else:
  511. self._logger.info(
  512. 'Removing link to non-existent repo resource: {}'
  513. .format(o))
  514. gr.remove((None, None, o))
  515. def _check_mgd_terms(self, gr):
  516. '''
  517. Check whether server-managed terms are in a RDF payload.
  518. '''
  519. # @FIXME Need to be more consistent
  520. if getattr(self, 'handling', 'none') == 'none':
  521. return gr
  522. offending_subjects = set(gr.subjects()) & srv_mgd_subjects
  523. if offending_subjects:
  524. if self.handling=='strict':
  525. raise ServerManagedTermError(offending_subjects, 's')
  526. else:
  527. for s in offending_subjects:
  528. self._logger.info('Removing offending subj: {}'.format(s))
  529. gr.remove((s, None, None))
  530. offending_predicates = set(gr.predicates()) & srv_mgd_predicates
  531. if offending_predicates:
  532. if self.handling=='strict':
  533. raise ServerManagedTermError(offending_predicates, 'p')
  534. else:
  535. for p in offending_predicates:
  536. self._logger.info('Removing offending pred: {}'.format(p))
  537. gr.remove((None, p, None))
  538. offending_types = set(gr.objects(predicate=RDF.type)) & srv_mgd_types
  539. if offending_types:
  540. if self.handling=='strict':
  541. raise ServerManagedTermError(offending_types, 't')
  542. else:
  543. for t in offending_types:
  544. self._logger.info('Removing offending type: {}'.format(t))
  545. gr.remove((None, RDF.type, t))
  546. self._logger.debug('Sanitized graph: {}'.format(gr.serialize(
  547. format='turtle').decode('utf-8')))
  548. return gr
  549. def _sparql_delta(self, q):
  550. '''
  551. Calculate the delta obtained by a SPARQL Update operation.
  552. This is a critical component of the SPARQL query prcess and does a
  553. couple of things:
  554. 1. It ensures that no resources outside of the subject of the request
  555. are modified (e.g. by variable subjects)
  556. 2. It verifies that none of the terms being modified is server managed.
  557. This method extracts an in-memory copy of the resource and performs the
  558. query on that once it has checked if any of the server managed terms is
  559. in the delta. If it is, it raises an exception.
  560. NOTE: This only checks if a server-managed term is effectively being
  561. modified. If a server-managed term is present in the query but does not
  562. cause any change in the updated resource, no error is raised.
  563. @return tuple(rdflib.Graph) Remove and add graphs. These can be used
  564. with `BaseStoreLayout.update_resource` and/or recorded as separate
  565. events in a provenance tracking system.
  566. '''
  567. pre_gr = self.imr.graph
  568. post_gr = deepcopy(pre_gr)
  569. post_gr.update(q)
  570. remove_gr, add_gr = self._dedup_deltas(pre_gr, post_gr)
  571. #self._logger.info('Removing: {}'.format(
  572. # remove_gr.serialize(format='turtle').decode('utf8')))
  573. #self._logger.info('Adding: {}'.format(
  574. # add_gr.serialize(format='turtle').decode('utf8')))
  575. remove_gr = self._check_mgd_terms(remove_gr)
  576. add_gr = self._check_mgd_terms(add_gr)
  577. return remove_gr, add_gr
  578. def _add_srv_mgd_triples(self, create=False):
  579. '''
  580. Add server-managed triples to a provided IMR.
  581. @param create (boolean) Whether the resource is being created.
  582. '''
  583. # Base LDP types.
  584. for t in self.base_types:
  585. self.provided_imr.add(RDF.type, t)
  586. # Message digest.
  587. cksum = g.tbox.rdf_cksum(self.provided_imr.graph)
  588. self.provided_imr.set(nsc['premis'].hasMessageDigest,
  589. URIRef('urn:sha1:{}'.format(cksum)))
  590. # Create and modify timestamp.
  591. if create:
  592. self.provided_imr.set(nsc['fcrepo'].created, g.timestamp_term)
  593. self.provided_imr.set(nsc['fcrepo'].createdBy, self.DEFAULT_USER)
  594. self.provided_imr.set(nsc['fcrepo'].lastModified, g.timestamp_term)
  595. self.provided_imr.set(nsc['fcrepo'].lastModifiedBy, self.DEFAULT_USER)
  596. def _set_containment_rel(self):
  597. '''Find the closest parent in the path indicated by the UUID and
  598. establish a containment triple.
  599. E.g. if only urn:fcres:a (short: a) exists:
  600. - If a/b/c/d is being created, a becomes container of a/b/c/d. Also,
  601. pairtree nodes are created for a/b and a/b/c.
  602. - If e is being created, the root node becomes container of e.
  603. '''
  604. # @FIXME Circular reference.
  605. from lakesuperior.model.ldp_rs import Ldpc
  606. if self.urn == self.ROOT_NODE_URN:
  607. return
  608. elif '/' in self.uuid:
  609. # Traverse up the hierarchy to find the parent.
  610. parent_uri = self._find_parent_or_create_pairtree(self.uuid)
  611. else:
  612. parent_uri = self.ROOT_NODE_URN
  613. add_gr = Graph()
  614. add_gr.add((parent_uri, nsc['ldp'].contains, self.urn))
  615. parent_rsrc = Ldpc(parent_uri, repr_opts={
  616. 'incl_children' : False}, handling='none')
  617. parent_rsrc._modify_rsrc(self.RES_UPDATED, add_trp=add_gr)
  618. # Direct or indirect container relationship.
  619. self._add_ldp_dc_ic_rel(parent_uri)
  620. def _find_parent_or_create_pairtree(self, uuid):
  621. '''
  622. Check the path-wise parent of the new resource. If it exists, return
  623. its URI. Otherwise, create pairtree resources up the path until an
  624. actual resource or the root node is found.
  625. @return rdflib.term.URIRef
  626. '''
  627. path_components = uuid.split('/')
  628. # If there is only on element, the parent is the root node.
  629. if len(path_components) < 2:
  630. return self.ROOT_NODE_URN
  631. # Build search list, e.g. for a/b/c/d/e would be a/b/c/d, a/b/c, a/b, a
  632. self._logger.info('Path components: {}'.format(path_components))
  633. fwd_search_order = accumulate(
  634. list(path_components)[:-1],
  635. func=lambda x,y : x + '/' + y
  636. )
  637. rev_search_order = reversed(list(fwd_search_order))
  638. cur_child_uri = nsc['fcres'][uuid]
  639. for cparent_uuid in rev_search_order:
  640. cparent_uri = nsc['fcres'][cparent_uuid]
  641. if self.rdfly.ask_rsrc_exists(cparent_uri):
  642. return cparent_uri
  643. else:
  644. self._create_path_segment(cparent_uri, cur_child_uri)
  645. cur_child_uri = cparent_uri
  646. return self.ROOT_NODE_URN
  647. def _dedup_deltas(self, remove_gr, add_gr):
  648. '''
  649. Remove duplicate triples from add and remove delta graphs, which would
  650. otherwise contain unnecessary statements that annul each other.
  651. '''
  652. return (
  653. remove_gr - add_gr,
  654. add_gr - remove_gr
  655. )
  656. def _create_path_segment(self, uri, child_uri):
  657. '''
  658. Create a path segment with a non-LDP containment statement.
  659. This diverges from the default fcrepo4 behavior which creates pairtree
  660. resources.
  661. If a resource such as `fcres:a/b/c` is created, and neither fcres:a or
  662. fcres:a/b exists, we have to create two "hidden" containment statements
  663. between a and a/b and between a/b and a/b/c in order to maintain the
  664. `containment chain.
  665. '''
  666. imr = Resource(Graph(), uri)
  667. imr.add(RDF.type, nsc['ldp'].Container)
  668. imr.add(RDF.type, nsc['ldp'].BasicContainer)
  669. imr.add(RDF.type, nsc['ldp'].RDFSource)
  670. imr.add(RDF.type, nsc['fcrepo'].Pairtree)
  671. imr.add(nsc['fcrepo'].contains, child_uri)
  672. # If the path segment is just below root
  673. if '/' not in str(uri):
  674. imr.graph.add((nsc['fcsystem'].root, nsc['fcrepo'].contains, uri))
  675. self.rdfly.modify_dataset(add_trp=imr.graph)
  676. def _add_ldp_dc_ic_rel(self, cont_uri):
  677. '''
  678. Add relationship triples from a parent direct or indirect container.
  679. @param cont_uri (rdflib.term.URIRef) The container URI.
  680. '''
  681. cont_uuid = g.tbox.uri_to_uuid(cont_uri)
  682. cont_rsrc = Ldpr.outbound_inst(cont_uuid,
  683. repr_opts={'incl_children' : False})
  684. cont_p = set(cont_rsrc.imr.graph.predicates())
  685. add_gr = Graph()
  686. self._logger.info('Checking direct or indirect containment.')
  687. self._logger.debug('Parent predicates: {}'.format(cont_p))
  688. if self.MBR_RSRC_URI in cont_p and self.MBR_REL_URI in cont_p:
  689. s = g.tbox.localize_term(
  690. cont_rsrc.imr.value(self.MBR_RSRC_URI).identifier)
  691. p = cont_rsrc.imr.value(self.MBR_REL_URI).identifier
  692. if cont_rsrc.imr[RDF.type : nsc['ldp'].DirectContainer]:
  693. self._logger.info('Parent is a direct container.')
  694. self._logger.debug('Creating DC triples.')
  695. add_gr.add((s, p, self.urn))
  696. elif cont_rsrc.imr[RDF.type : nsc['ldp'].IndirectContainer] \
  697. and self.INS_CNT_REL_URI in cont_p:
  698. self._logger.info('Parent is an indirect container.')
  699. cont_rel_uri = cont_rsrc.imr.value(self.INS_CNT_REL_URI).identifier
  700. target_uri = self.provided_imr.value(cont_rel_uri).identifier
  701. self._logger.debug('Target URI: {}'.format(target_uri))
  702. if target_uri:
  703. self._logger.debug('Creating IC triples.')
  704. add_gr.add((s, p, target_uri))
  705. if len(add_gr):
  706. add_gr = self._check_mgd_terms(add_gr)
  707. self._logger.debug('Adding DC/IC triples: {}'.format(
  708. add_gr.serialize(format='turtle').decode('utf-8')))
  709. self._modify_rsrc(self.RES_UPDATED, add_trp=add_gr)
  710. def _send_event_msg(self, remove_trp, add_trp, metadata):
  711. '''
  712. Break down delta triples, find subjects and send event message.
  713. '''
  714. remove_grp = groupby(remove_trp, lambda x : x[0])
  715. remove_dict = { k[0] : k[1] for k in remove_grp }
  716. add_grp = groupby(add_trp, lambda x : x[0])
  717. add_dict = { k[0] : k[1] for k in add_grp }
  718. subjects = set(remove_dict.keys()) | set(add_dict.keys())
  719. for rsrc_uri in subjects:
  720. self._logger.info('subject: {}'.format(rsrc_uri))
  721. #current_app.messenger.send