ldpr.py 31 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. 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(pformat(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. cls._logger.info('Retrieving stored resource: {}'.format(uuid))
  101. imr_urn = nsc['fcres'][uuid] if uuid else cls.ROOT_NODE_URN
  102. imr = current_app.rdfly.extract_imr(imr_urn, **repr_opts)
  103. cls._logger.debug('Extracted graph: {}'.format(
  104. pformat(set(imr.graph))))
  105. rdf_types = set(imr.graph.objects(imr.identifier, RDF.type))
  106. if cls.LDP_NR_TYPE in rdf_types:
  107. from lakesuperior.model.ldp_nr import LdpNr
  108. cls._logger.info('Resource is a LDP-NR.')
  109. rsrc = LdpNr(uuid, repr_opts, **kwargs)
  110. elif cls.LDP_RS_TYPE in rdf_types:
  111. from lakesuperior.model.ldp_rs import LdpRs
  112. cls._logger.info('Resource is a LDP-RS.')
  113. rsrc = LdpRs(uuid, repr_opts, **kwargs)
  114. else:
  115. raise ResourceNotExistsError(uuid)
  116. # Sneak in the already extracted IMR to save a query.
  117. rsrc._imr = imr
  118. return rsrc
  119. @staticmethod
  120. def inbound_inst(uuid, content_length, mimetype, stream, **kwargs):
  121. '''
  122. Determine LDP type (and instance class) from request headers and body.
  123. This is used with POST and PUT methods.
  124. @param uuid (string) UUID of the resource to be created or updated.
  125. '''
  126. # @FIXME Circular reference.
  127. from lakesuperior.model.ldp_nr import LdpNr
  128. from lakesuperior.model.ldp_rs import Ldpc, LdpDc, LdpIc, LdpRs
  129. urn = nsc['fcres'][uuid]
  130. logger = __class__._logger
  131. if not content_length:
  132. # Create empty LDPC.
  133. logger.debug('No data received in request. '
  134. 'Creating empty container.')
  135. inst = Ldpc(uuid, provided_imr=Resource(Graph(), urn), **kwargs)
  136. elif __class__.is_rdf_parsable(mimetype):
  137. # Create container and populate it with provided RDF data.
  138. input_rdf = stream.read()
  139. provided_g = Graph().parse(data=input_rdf,
  140. format=mimetype, publicID=urn)
  141. logger.debug('Provided graph: {}'.format(
  142. pformat(set(provided_g))))
  143. local_g = Toolbox().localize_graph(provided_g)
  144. logger.debug('Parsed local graph: {}'.format(
  145. pformat(set(local_g))))
  146. provided_imr = Resource(local_g, urn)
  147. # Determine whether it is a basic, direct or indirect container.
  148. if Ldpr.MBR_RSRC_URI in local_g.predicates() and \
  149. Ldpr.MBR_REL_URI in local_g.predicates():
  150. if Ldpr.INS_CNT_REL_URI in local_g.predicates():
  151. cls = LdpIc
  152. else:
  153. cls = LdpDc
  154. else:
  155. cls = Ldpc
  156. inst = cls(uuid, provided_imr=provided_imr, **kwargs)
  157. # Make sure we are not updating an LDP-RS with an LDP-NR.
  158. if inst.is_stored and inst.LDP_NR_TYPE in inst.ldp_types:
  159. raise IncompatibleLdpTypeError(uuid, mimetype)
  160. inst._check_mgd_terms(inst.provided_imr.graph)
  161. else:
  162. # Create a LDP-NR and equip it with the binary file provided.
  163. provided_imr = Resource(Graph(), urn)
  164. inst = LdpNr(uuid, stream=stream, mimetype=mimetype,
  165. provided_imr=provided_imr, **kwargs)
  166. # Make sure we are not updating an LDP-NR with an LDP-RS.
  167. if inst.is_stored and inst.LDP_RS_TYPE in inst.ldp_types:
  168. raise IncompatibleLdpTypeError(uuid, mimetype)
  169. logger.info('Creating resource of type: {}'.format(
  170. inst.__class__.__name__))
  171. try:
  172. types = inst.types
  173. except:
  174. types = set()
  175. if nsc['fcrepo'].Pairtree in types:
  176. raise InvalidResourceError(inst.uuid)
  177. return inst
  178. @staticmethod
  179. def is_rdf_parsable(mimetype):
  180. '''
  181. Checks whether a MIME type support RDF parsing by a RDFLib plugin.
  182. @param mimetype (string) MIME type to check.
  183. '''
  184. try:
  185. rdflib.plugin.get(mimetype, rdflib.parser.Parser)
  186. except rdflib.plugin.PluginException:
  187. return False
  188. else:
  189. return True
  190. @staticmethod
  191. def is_rdf_serializable(mimetype):
  192. '''
  193. Checks whether a MIME type support RDF serialization by a RDFLib plugin
  194. @param mimetype (string) MIME type to check.
  195. '''
  196. try:
  197. rdflib.plugin.get(mimetype, rdflib.serializer.Serializer)
  198. except rdflib.plugin.PluginException:
  199. return False
  200. else:
  201. return True
  202. ## MAGIC METHODS ##
  203. def __init__(self, uuid, repr_opts={}, provided_imr=None, **kwargs):
  204. '''Instantiate an in-memory LDP resource that can be loaded from and
  205. persisted to storage.
  206. Persistence is done in this class. None of the operations in the store
  207. layout should commit an open transaction. Methods are wrapped in a
  208. transaction by using the `@atomic` decorator.
  209. @param uuid (string) UUID of the resource. If None (must be explicitly
  210. set) it refers to the root node. It can also be the full URI or URN,
  211. in which case it will be converted.
  212. @param repr_opts (dict) Options used to retrieve the IMR. See
  213. `parse_rfc7240` for format details.
  214. @Param provd_rdf (string) RDF data provided by the client in
  215. operations isuch as `PUT` or `POST`, serialized as a string. This sets
  216. the `provided_imr` property.
  217. '''
  218. self.uuid = Toolbox().uri_to_uuid(uuid) \
  219. if isinstance(uuid, URIRef) else uuid
  220. self.urn = nsc['fcres'][uuid] \
  221. if self.uuid else self.ROOT_NODE_URN
  222. self.uri = Toolbox().uuid_to_uri(self.uuid)
  223. self.rdfly = current_app.rdfly
  224. self.nonrdfly = current_app.nonrdfly
  225. self.provided_imr = provided_imr
  226. @property
  227. def rsrc(self):
  228. '''
  229. The RDFLib resource representing this LDPR. This is a live
  230. representation of the stored data if present.
  231. @return rdflib.resource.Resource
  232. '''
  233. if not hasattr(self, '_rsrc'):
  234. self._rsrc = self.rdfly.ds.resource(self.urn)
  235. return self._rsrc
  236. @property
  237. def imr(self):
  238. '''
  239. Extract an in-memory resource from the graph store.
  240. If the resource is not stored (yet), a `ResourceNotExistsError` is
  241. raised.
  242. @return rdflib.resource.Resource
  243. '''
  244. if not hasattr(self, '_imr'):
  245. if hasattr(self, '_imr_options'):
  246. self._logger.debug('IMR options: {}'.format(self._imr_options))
  247. imr_options = self._imr_options
  248. else:
  249. imr_options = {}
  250. options = dict(imr_options, strict=True)
  251. self._imr = self.rdfly.extract_imr(self.urn, **options)
  252. return self._imr
  253. @property
  254. def stored_or_new_imr(self):
  255. '''
  256. Extract an in-memory resource for harmless manipulation and output.
  257. If the resource is not stored (yet), initialize a new IMR with basic
  258. triples.
  259. @return rdflib.resource.Resource
  260. '''
  261. if not hasattr(self, '_imr'):
  262. if hasattr(self, '_imr_options'):
  263. self._logger.debug('IMR options: {}'.format(self._imr_options))
  264. imr_options = self._imr_options
  265. else:
  266. imr_options = {}
  267. options = dict(imr_options, strict=True)
  268. try:
  269. self._imr = self.rdfly.extract_imr(self.urn, **options)
  270. except ResourceNotExistsError:
  271. self._imr = Resource(Graph(), self.urn)
  272. for t in self.base_types:
  273. self.imr.add(RDF.type, t)
  274. return self._imr
  275. @imr.deleter
  276. def imr(self):
  277. '''
  278. Delete in-memory buffered resource.
  279. '''
  280. delattr(self, '_imr')
  281. @property
  282. def out_graph(self):
  283. '''
  284. Retun a globalized graph of the resource's IMR.
  285. Internal URNs are replaced by global URIs using the endpoint webroot.
  286. '''
  287. # Remove digest hash.
  288. self.imr.remove(nsc['premis'].hasMessageDigest)
  289. if not self._imr_options.setdefault('incl_srv_mgd', True):
  290. for p in srv_mgd_predicates:
  291. self._logger.debug('Removing predicate: {}'.format(p))
  292. self.imr.remove(p)
  293. for t in srv_mgd_types:
  294. self._logger.debug('Removing type: {}'.format(t))
  295. self.imr.remove(RDF.type, t)
  296. out_g = Toolbox().globalize_graph(self.imr.graph)
  297. # Clear IMR because it's been pruned. In the rare case it is needed
  298. # after this method, it will be retrieved again.
  299. delattr(self, 'imr')
  300. return out_g
  301. @property
  302. def is_stored(self):
  303. if hasattr(self, '_imr'):
  304. return len(self.imr.graph) > 0
  305. else:
  306. return self.rdfly.ask_rsrc_exists(self.urn)
  307. @property
  308. def types(self):
  309. '''All RDF types.
  310. @return set(rdflib.term.URIRef)
  311. '''
  312. if not hasattr(self, '_types'):
  313. if hasattr(self, 'imr') and len(self.imr.graph):
  314. imr = self.imr
  315. elif hasattr(self, 'provided_imr') and \
  316. len(self.provided_imr.graph):
  317. imr = provided_imr
  318. self._types = set(imr.graph[self.urn : RDF.type])
  319. return self._types
  320. @property
  321. def ldp_types(self):
  322. '''The LDP types.
  323. @return set(rdflib.term.URIRef)
  324. '''
  325. if not hasattr(self, '_ldp_types'):
  326. self._ldp_types = { t for t in self.types if nsc['ldp'] in t }
  327. return self._ldp_types
  328. ## LDP METHODS ##
  329. def head(self):
  330. '''
  331. Return values for the headers.
  332. '''
  333. out_headers = defaultdict(list)
  334. digest = self.imr.value(nsc['premis'].hasMessageDigest)
  335. if digest:
  336. etag = digest.identifier.split(':')[-1]
  337. out_headers['ETag'] = 'W/"{}"'.format(etag),
  338. last_updated_term = self.imr.value(nsc['fcrepo'].lastModified)
  339. if last_updated_term:
  340. out_headers['Last-Modified'] = arrow.get(last_updated_term)\
  341. .format('ddd, D MMM YYYY HH:mm:ss Z')
  342. for t in self.ldp_types:
  343. out_headers['Link'].append(
  344. '{};rel="type"'.format(t.n3()))
  345. return out_headers
  346. def get(self):
  347. '''
  348. This gets the RDF metadata. The binary retrieval is handled directly
  349. by the route.
  350. '''
  351. return self.out_graph.serialize(format='turtle')
  352. @atomic
  353. def post(self):
  354. '''
  355. https://www.w3.org/TR/ldp/#ldpr-HTTP_POST
  356. Perform a POST action after a valid resource URI has been found.
  357. '''
  358. return self._create_or_replace_rsrc(create_only=True)
  359. @atomic
  360. def put(self):
  361. '''
  362. https://www.w3.org/TR/ldp/#ldpr-HTTP_PUT
  363. '''
  364. return self._create_or_replace_rsrc()
  365. def patch(self, *args, **kwargs):
  366. raise NotImplementedError()
  367. @atomic
  368. def delete(self, inbound=True, delete_children=True, leave_tstone=True):
  369. '''
  370. https://www.w3.org/TR/ldp/#ldpr-HTTP_DELETE
  371. @param inbound (boolean) If specified, delete all inbound relationships
  372. as well. This is the default and is always the case if referential
  373. integrity is enforced by configuration.
  374. @param delete_children (boolean) Whether to delete all child resources.
  375. This is the default.
  376. '''
  377. refint = current_app.config['store']['ldp_rs']['referential_integrity']
  378. inbound = True if refint else inbound
  379. children = self.imr[nsc['ldp'].contains * '+'] \
  380. if delete_children else []
  381. ret = self._delete_rsrc(inbound, leave_tstone)
  382. for child_uri in children:
  383. child_rsrc = Ldpr.outbound_inst(
  384. Toolbox().uri_to_uuid(child_uri.identifier),
  385. repr_opts={'incl_children' : False})
  386. child_rsrc._delete_rsrc(inbound, leave_tstone,
  387. tstone_pointer=self.urn)
  388. return ret
  389. @atomic
  390. def delete_tombstone(self):
  391. '''
  392. Delete a tombstone.
  393. N.B. This does not trigger an event.
  394. '''
  395. remove_trp = {
  396. (self.urn, RDF.type, nsc['fcsystem'].Tombstone),
  397. (self.urn, nsc['fcrepo'].created, None),
  398. (None, nsc['fcsystem'].tombstone, self.urn),
  399. }
  400. self.rdfly.modify_dataset(remove_trp)
  401. ## PROTECTED METHODS ##
  402. def _create_or_replace_rsrc(self, create_only=False):
  403. '''
  404. Create or update a resource. PUT and POST methods, which are almost
  405. identical, are wrappers for this method.
  406. @param create_only (boolean) Whether this is a create-only operation.
  407. '''
  408. create = create_only or not self.is_stored
  409. self._add_srv_mgd_triples(create)
  410. self._ensure_single_subject_rdf(self.provided_imr.graph)
  411. ref_int = self.rdfly.config['referential_integrity']
  412. if ref_int:
  413. self._check_ref_int(ref_int)
  414. if create:
  415. ev_type = self._create_rsrc()
  416. else:
  417. ev_type = self._replace_rsrc()
  418. self._set_containment_rel()
  419. return ev_type
  420. def _create_rsrc(self):
  421. '''
  422. Create a new resource by comparing an empty graph with the provided
  423. IMR graph.
  424. '''
  425. self._modify_rsrc(self.RES_CREATED, add_trp=self.provided_imr.graph)
  426. return self.RES_CREATED
  427. def _replace_rsrc(self):
  428. '''
  429. Replace a resource.
  430. The existing resource graph is removed except for the protected terms.
  431. '''
  432. # The extracted IMR is used as a "minus" delta, so protected predicates
  433. # must be removed.
  434. for p in self.protected_pred:
  435. self.imr.remove(p)
  436. delta = self._dedup_deltas(self.imr.graph, self.provided_imr.graph)
  437. self._modify_rsrc(self.RES_UPDATED, *delta)
  438. # Reset the IMR because it has changed.
  439. delattr(self, 'imr')
  440. return self.RES_UPDATED
  441. def _delete_rsrc(self, inbound, leave_tstone=True, tstone_pointer=None):
  442. '''
  443. Delete a single resource and create a tombstone.
  444. @param inbound (boolean) Whether to delete the inbound relationships.
  445. @param tstone_pointer (URIRef) If set to a URN, this creates a pointer
  446. to the tombstone of the resource that used to contain the deleted
  447. resource. Otherwise the delete resource becomes a tombstone.
  448. '''
  449. self._logger.info('Removing resource {}'.format(self.urn))
  450. remove_trp = self.imr.graph
  451. add_trp = Graph()
  452. if leave_tstone:
  453. if tstone_pointer:
  454. add_trp.add((self.urn, nsc['fcsystem'].tombstone,
  455. tstone_pointer))
  456. else:
  457. add_trp.add((self.urn, RDF.type, nsc['fcsystem'].Tombstone))
  458. add_trp.add((self.urn, nsc['fcrepo'].created, g.timestamp_term))
  459. else:
  460. self._logger.info('NOT leaving tombstone.')
  461. self._modify_rsrc(self.RES_DELETED, remove_trp, add_trp)
  462. if inbound:
  463. remove_trp = set()
  464. for ib_rsrc_uri in self.imr.graph.subjects(None, self.urn):
  465. remove_trp = {(ib_rsrc_uri, None, self.urn)}
  466. Ldpr(ib_rsrc_uri)._modify_rsrc(self.RES_UPDATED, remove_trp)
  467. return self.RES_DELETED
  468. def _modify_rsrc(self, ev_type, remove_trp=Graph(), add_trp=Graph()):
  469. '''
  470. Low-level method to modify a graph for a single resource.
  471. @param ev_type (string) The type of event (create, update, delete).
  472. @param remove_trp (rdflib.Graph) Triples to be removed.
  473. @param add_trp (rdflib.Graph) Triples to be added.
  474. '''
  475. # If one of the triple sets is not a graph, do a set merge and
  476. # filtering. This is necessary to support non-RDF terms (e.g.
  477. # variables).
  478. if not isinstance(remove_trp, Graph) or not isinstance(add_trp, Graph):
  479. if isinstance(remove_trp, Graph):
  480. remove_trp = set(remove_trp)
  481. if isinstance(add_trp, Graph):
  482. add_trp = set(add_trp)
  483. merge_g = remove_trp | add_trp
  484. type = { trp[2] for trp in merge_g if trp[1] == RDF.type }
  485. actor = { trp[2] for trp in merge_g \
  486. if trp[1] == nsc['fcrepo'].createdBy }
  487. else:
  488. merge_g = remove_trp | add_trp
  489. type = merge_g[ self.urn : RDF.type ]
  490. actor = merge_g[ self.urn : nsc['fcrepo'].createdBy ]
  491. return self.rdfly.modify_dataset(remove_trp, add_trp, metadata={
  492. 'ev_type' : ev_type,
  493. 'time' : g.timestamp,
  494. 'type' : type,
  495. 'actor' : actor,
  496. })
  497. def _ensure_single_subject_rdf(self, g):
  498. '''
  499. Ensure that a RDF payload for a POST or PUT has a single resource.
  500. '''
  501. for s in set(g.subjects()):
  502. if not s == self.urn:
  503. raise SingleSubjectError(s, self.uuid)
  504. def _check_ref_int(self, config):
  505. g = self.provided_imr.graph
  506. for o in g.objects():
  507. if isinstance(o, URIRef) and str(o).startswith(Toolbox().base_url)\
  508. and not self.rdfly.ask_rsrc_exists(o):
  509. if config == 'strict':
  510. raise RefIntViolationError(o)
  511. else:
  512. self._logger.info(
  513. 'Removing link to non-existent repo resource: {}'
  514. .format(o))
  515. g.remove((None, None, o))
  516. def _check_mgd_terms(self, g):
  517. '''
  518. Check whether server-managed terms are in a RDF payload.
  519. '''
  520. if self.handling == 'none':
  521. return
  522. offending_subjects = set(g.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. g.remove((s, None, None))
  530. offending_predicates = set(g.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. g.remove((None, p, None))
  538. offending_types = set(g.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. g.remove((None, RDF.type, t))
  546. self._logger.debug('Sanitized graph: {}'.format(g.serialize(
  547. format='turtle').decode('utf-8')))
  548. return g
  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_g = self.imr.graph
  568. post_g = deepcopy(pre_g)
  569. post_g.update(q)
  570. remove_g, add_g = self._dedup_deltas(pre_g, post_g)
  571. #self._logger.info('Removing: {}'.format(
  572. # remove_g.serialize(format='turtle').decode('utf8')))
  573. #self._logger.info('Adding: {}'.format(
  574. # add_g.serialize(format='turtle').decode('utf8')))
  575. remove_g = self._check_mgd_terms(remove_g)
  576. add_g = self._check_mgd_terms(add_g)
  577. return remove_g, add_g
  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 = Toolbox().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_g = Graph()
  614. add_g.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_g)
  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_g, add_g):
  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_g - add_g,
  654. add_g - remove_g
  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 = Toolbox().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_g = 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 = Toolbox().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_g.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_g.add((s, p, target_uri))
  705. if len(add_g):
  706. add_g = self._check_mgd_terms(add_g)
  707. self._logger.debug('Adding DC/IC triples: {}'.format(
  708. add_g.serialize(format='turtle').decode('utf-8')))
  709. self._modify_rsrc(self.RES_UPDATED, add_trp=add_g)
  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