ldpr.py 31 KB

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