ldpr.py 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696
  1. import logging
  2. from abc import ABCMeta
  3. from collections import defaultdict
  4. from itertools import accumulate, groupby
  5. from uuid import uuid4
  6. import arrow
  7. from flask import current_app, request
  8. from rdflib import Graph
  9. from rdflib.resource import Resource
  10. from rdflib.namespace import RDF, XSD
  11. from rdflib.term import URIRef, Literal
  12. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  13. from lakesuperior.dictionaries.srv_mgd_terms import srv_mgd_subjects, \
  14. srv_mgd_predicates, srv_mgd_types
  15. from lakesuperior.exceptions import InvalidResourceError, \
  16. ResourceNotExistsError, ServerManagedTermError
  17. from lakesuperior.store_layouts.ldp_rs.base_rdf_layout import BaseRdfLayout
  18. from lakesuperior.toolbox import Toolbox
  19. def atomic(fn):
  20. '''
  21. Handle atomic operations in an RDF store.
  22. This wrapper ensures that a write operation is performed atomically. It
  23. also takes care of sending a message for each resource changed in the
  24. transaction.
  25. '''
  26. def wrapper(self, *args, **kwargs):
  27. request.changelog = []
  28. try:
  29. ret = fn(self, *args, **kwargs)
  30. except:
  31. self._logger.warn('Rolling back transaction.')
  32. self.rdfly.store.rollback()
  33. raise
  34. else:
  35. self._logger.info('Committing transaction.')
  36. self.rdfly.store.commit()
  37. for ev in request.changelog:
  38. self._logger.info('Message: {}'.format(ev))
  39. self._send_event_msg(*ev)
  40. return ret
  41. return wrapper
  42. class Ldpr(metaclass=ABCMeta):
  43. '''LDPR (LDP Resource).
  44. Definition: https://www.w3.org/TR/ldp/#ldpr-resource
  45. This class and related subclasses contain the implementation pieces of
  46. the vanilla LDP specifications. This is extended by the
  47. `lakesuperior.fcrepo.Resource` class.
  48. Inheritance graph: https://www.w3.org/TR/ldp/#fig-ldpc-types
  49. Note: Even though LdpNr (which is a subclass of Ldpr) handles binary files,
  50. it still has an RDF representation in the triplestore. Hence, some of the
  51. RDF-related methods are defined in this class rather than in the LdpRs
  52. class.
  53. Convention notes:
  54. All the methods in this class handle internal UUIDs (URN). Public-facing
  55. URIs are converted from URNs and passed by these methods to the methods
  56. handling HTTP negotiation.
  57. The data passed to the store layout for processing should be in a graph.
  58. All conversion from request payload strings is done here.
  59. '''
  60. EMBED_CHILD_RES_URI = nsc['fcrepo'].EmbedResources
  61. FCREPO_PTREE_TYPE = nsc['fcrepo'].Pairtree
  62. INS_CNT_REL_URI = nsc['ldp'].insertedContentRelation
  63. LDP_NR_TYPE = nsc['ldp'].NonRDFSource
  64. LDP_RS_TYPE = nsc['ldp'].RDFSource
  65. MBR_RSRC_URI = nsc['ldp'].membershipResource
  66. MBR_REL_URI = nsc['ldp'].hasMemberRelation
  67. RETURN_CHILD_RES_URI = nsc['fcrepo'].Children
  68. RETURN_INBOUND_REF_URI = nsc['fcrepo'].InboundReferences
  69. RETURN_SRV_MGD_RES_URI = nsc['fcrepo'].ServerManaged
  70. ROOT_NODE_URN = nsc['fcsystem'].root
  71. RES_CREATED = '_create_'
  72. RES_DELETED = '_delete_'
  73. RES_UPDATED = '_update_'
  74. protected_pred = (
  75. nsc['fcrepo'].created,
  76. nsc['fcrepo'].createdBy,
  77. nsc['ldp'].contains,
  78. )
  79. _logger = logging.getLogger(__name__)
  80. ## STATIC & CLASS METHODS ##
  81. @classmethod
  82. def inst(cls, uuid, repr_opts=None):
  83. '''
  84. Factory method that creates and returns an instance of an LDPR subclass
  85. based on information that needs to be queried from the underlying
  86. graph store.
  87. N.B. The resource must exist.
  88. @param uuid UUID of the instance.
  89. '''
  90. imr_urn = nsc['fcres'][uuid] if uuid else cls.ROOT_NODE_URN
  91. cls._logger.debug('Representation options: {}'.format(repr_opts))
  92. imr_opts = cls.set_imr_options(repr_opts)
  93. imr = current_app.rdfly.extract_imr(imr_urn, **imr_opts)
  94. rdf_types = set(imr.objects(RDF.type))
  95. for t in rdf_types:
  96. cls._logger.debug('Checking RDF type: {}'.format(t.identifier))
  97. if t.identifier == cls.LDP_NR_TYPE:
  98. from lakesuperior.model.ldp_nr import LdpNr
  99. cls._logger.info('Resource is a LDP-NR.')
  100. return LdpNr(uuid, repr_opts)
  101. if t.identifier == cls.LDP_RS_TYPE:
  102. from lakesuperior.model.ldp_rs import LdpRs
  103. cls._logger.info('Resource is a LDP-RS.')
  104. return LdpRs(uuid, repr_opts)
  105. raise ResourceNotExistsError(uuid)
  106. @classmethod
  107. def inst_for_post(cls, parent_uuid=None, slug=None):
  108. '''
  109. Validate conditions to perform a POST and return an LDP resource
  110. instancefor using with the `post` method.
  111. This may raise an exception resulting in a 404 if the parent is not
  112. found or a 409 if the parent is not a valid container.
  113. '''
  114. # Shortcut!
  115. if not slug and not parent_uuid:
  116. return cls(str(uuid4()))
  117. parent = cls(parent_uuid, repr_opts={
  118. 'parameters' : {'omit' : cls.RETURN_CHILD_RES_URI}
  119. })
  120. # Set prefix.
  121. if parent_uuid:
  122. parent_types = { t.identifier for t in \
  123. parent.imr.objects(RDF.type) }
  124. cls._logger.debug('Parent types: {}'.format(
  125. parent_types))
  126. if nsc['ldp'].Container not in parent_types:
  127. raise InvalidResourceError('Parent {} is not a container.'
  128. .format(parent_uuid))
  129. pfx = parent_uuid + '/'
  130. else:
  131. pfx = ''
  132. # Create candidate UUID and validate.
  133. if slug:
  134. cnd_uuid = pfx + slug
  135. cnd_rsrc = Resource(current_app.rdfly.ds, nsc['fcres'][cnd_uuid])
  136. if current_app.rdfly.ask_rsrc_exists(cnd_rsrc.identifier):
  137. return cls(pfx + str(uuid4()))
  138. else:
  139. return cls(cnd_uuid)
  140. else:
  141. return cls(pfx + str(uuid4()))
  142. @classmethod
  143. def set_imr_options(cls, repr_opts):
  144. '''
  145. Set options to retrieve IMR.
  146. Ideally, IMR retrieval is done once per request, so all the options
  147. are set once in the `imr()` property.
  148. @param repr_opts (dict): Options parsed from `Prefer` header.
  149. '''
  150. cls._logger.debug('Setting retrieval options from: {}'.format(repr_opts))
  151. imr_options = {}
  152. if repr_opts.setdefault('value') == 'minimal':
  153. imr_options = {
  154. 'embed_children' : False,
  155. 'incl_children' : False,
  156. 'incl_inbound' : False,
  157. 'incl_srv_mgd' : False,
  158. }
  159. else:
  160. # Default.
  161. imr_options = {
  162. 'embed_children' : False,
  163. 'incl_children' : True,
  164. 'incl_inbound' : False,
  165. 'incl_srv_mgd' : True,
  166. }
  167. # Override defaults.
  168. if 'parameters' in repr_opts:
  169. include = repr_opts['parameters']['include'].split(' ') \
  170. if 'include' in repr_opts['parameters'] else []
  171. omit = repr_opts['parameters']['omit'].split(' ') \
  172. if 'omit' in repr_opts['parameters'] else []
  173. cls._logger.debug('Include: {}'.format(include))
  174. cls._logger.debug('Omit: {}'.format(omit))
  175. if str(cls.EMBED_CHILD_RES_URI) in include:
  176. imr_options['embed_children'] = True
  177. if str(cls.RETURN_CHILD_RES_URI) in omit:
  178. imr_options['incl_children'] = False
  179. if str(cls.RETURN_INBOUND_REF_URI) in include:
  180. imr_options['incl_inbound'] = True
  181. if str(cls.RETURN_SRV_MGD_RES_URI) in omit:
  182. imr_options['incl_srv_mgd'] = False
  183. cls._logger.debug('Retrieval options: {}'.format(imr_options))
  184. return imr_options
  185. ## MAGIC METHODS ##
  186. def __init__(self, uuid, repr_opts={}):
  187. '''Instantiate an in-memory LDP resource that can be loaded from and
  188. persisted to storage.
  189. Persistence is done in this class. None of the operations in the store
  190. layout should commit an open transaction. Methods are wrapped in a
  191. transaction by using the `@atomic` decorator.
  192. @param uuid (string) UUID of the resource. If None (must be explicitly
  193. set) it refers to the root node. It can also be the full URI or URN,
  194. in which case it will be converted.
  195. '''
  196. self.uuid = Toolbox().uri_to_uuid(uuid) \
  197. if isinstance(uuid, URIRef) else uuid
  198. self.urn = nsc['fcres'][uuid] \
  199. if self.uuid else self.ROOT_NODE_URN
  200. self.uri = Toolbox().uuid_to_uri(self.uuid)
  201. self.repr_opts = repr_opts
  202. self._imr_options = __class__.set_imr_options(self.repr_opts)
  203. self.rdfly = current_app.rdfly
  204. self.nonrdfly = current_app.nonrdfly
  205. @property
  206. def rsrc(self):
  207. '''
  208. The RDFLib resource representing this LDPR. This is a live
  209. representation of the stored data if present.
  210. @return rdflib.resource.Resource
  211. '''
  212. if not hasattr(self, '_rsrc'):
  213. self._rsrc = self.rdfly.ds.resource(self.urn)
  214. return self._rsrc
  215. @property
  216. def imr(self):
  217. '''
  218. Extract an in-memory resource from the graph store.
  219. If the resource is not stored (yet), a `ResourceNotExistsError` is
  220. raised.
  221. @return rdflib.resource.Resource
  222. '''
  223. if not hasattr(self, '_imr'):
  224. self._logger.debug('IMR options: {}'.format(self._imr_options))
  225. options = dict(self._imr_options, strict=True)
  226. self._imr = self.rdfly.extract_imr(self.urn, **options)
  227. return self._imr
  228. @property
  229. def stored_or_new_imr(self):
  230. '''
  231. Extract an in-memory resource for harmless manipulation and output.
  232. If the resource is not stored (yet), initialize a new IMR with basic
  233. triples.
  234. @return rdflib.resource.Resource
  235. '''
  236. if not hasattr(self, '_imr'):
  237. options = dict(self._imr_options, strict=True)
  238. try:
  239. self._imr = self.rdfly.extract_imr(self.urn, **options)
  240. except ResourceNotExistsError:
  241. self._imr = Resource(Graph(), self.urn)
  242. for t in self.base_types:
  243. self.imr.add(RDF.type, t)
  244. return self._imr
  245. @imr.deleter
  246. def imr(self):
  247. '''
  248. Delete in-memory buffered resource.
  249. '''
  250. delattr(self, '_imr')
  251. @property
  252. def out_graph(self):
  253. '''
  254. Retun a globalized graph of the resource's IMR.
  255. Internal URNs are replaced by global URIs using the endpoint webroot.
  256. '''
  257. # Remove digest hash.
  258. self.imr.remove(nsc['premis'].hasMessageDigest)
  259. if not self._imr_options.setdefault('incl_srv_mgd', False):
  260. for p in srv_mgd_predicates:
  261. self._logger.debug('Removing predicate: {}'.format(p))
  262. self.imr.remove(p)
  263. for t in srv_mgd_types:
  264. self._logger.debug('Removing type: {}'.format(t))
  265. self.imr.remove(RDF.type, t)
  266. out_g = Toolbox().globalize_graph(self.imr.graph)
  267. # Clear IMR because it's been pruned. In the rare case it is needed
  268. # after this method, it will be retrieved again.
  269. delattr(self, 'imr')
  270. return out_g
  271. @property
  272. def is_stored(self):
  273. return self.rdfly.ask_rsrc_exists(self.urn)
  274. @property
  275. def types(self):
  276. '''All RDF types.
  277. @return set(rdflib.term.URIRef)
  278. '''
  279. if not hasattr(self, '_types'):
  280. self._types = self.imr.graph[self.imr.identifier : RDF.type]
  281. return self._types
  282. @property
  283. def ldp_types(self):
  284. '''The LDP types.
  285. @return set(rdflib.term.URIRef)
  286. '''
  287. if not hasattr(self, '_ldp_types'):
  288. self._ldp_types = { t for t in self.types if t[:4] == 'ldp:' }
  289. return self._ldp_types
  290. ## LDP METHODS ##
  291. def head(self):
  292. '''
  293. Return values for the headers.
  294. '''
  295. out_headers = defaultdict(list)
  296. self._logger.debug('IMR options in head(): {}'.format(self._imr_options))
  297. digest = self.imr.value(nsc['premis'].hasMessageDigest)
  298. if digest:
  299. etag = digest.identifier.split(':')[-1]
  300. out_headers['ETag'] = 'W/"{}"'.format(etag),
  301. last_updated_term = self.imr.value(nsc['fcrepo'].lastModified)
  302. if last_updated_term:
  303. out_headers['Last-Modified'] = arrow.get(last_updated_term)\
  304. .format('ddd, D MMM YYYY HH:mm:ss Z')
  305. for t in self.ldp_types:
  306. out_headers['Link'].append(
  307. '{};rel="type"'.format(t.n3()))
  308. return out_headers
  309. def get(self, *args, **kwargs):
  310. raise NotImplementedError()
  311. def post(self, *args, **kwargs):
  312. raise NotImplementedError()
  313. def put(self, *args, **kwargs):
  314. raise NotImplementedError()
  315. def patch(self, *args, **kwargs):
  316. raise NotImplementedError()
  317. @atomic
  318. def delete(self, inbound=True, delete_children=True, leave_tstone=True):
  319. '''
  320. https://www.w3.org/TR/ldp/#ldpr-HTTP_DELETE
  321. @param inbound (boolean) If specified, delete all inbound relationships
  322. as well. This is the default and is always the case if referential
  323. integrity is enforced by configuration.
  324. @param delete_children (boolean) Whether to delete all child resources.
  325. This is the default.
  326. '''
  327. refint = current_app.config['store']['ldp_rs']['referential_integrity']
  328. inbound = True if refint else inbound
  329. children = self.imr[nsc['ldp'].contains * '+'] \
  330. if delete_children else []
  331. ret = self._delete_rsrc(inbound, leave_tstone)
  332. for child_uri in children:
  333. child_rsrc = Ldpr.inst(
  334. Toolbox().uri_to_uuid(child_uri.identifier), self.repr_opts)
  335. child_rsrc._delete_rsrc(inbound, leave_tstone,
  336. tstone_pointer=self.urn)
  337. return ret
  338. @atomic
  339. def delete_tombstone(self):
  340. '''
  341. Delete a tombstone.
  342. N.B. This does not trigger an event.
  343. '''
  344. remove_trp = {
  345. (self.urn, RDF.type, nsc['fcsystem'].Tombstone),
  346. (self.urn, nsc['fcrepo'].created, None),
  347. (None, nsc['fcsystem'].tombstone, self.urn),
  348. }
  349. self.rdfly.modify_dataset(remove_trp)
  350. ## PROTECTED METHODS ##
  351. def _create_rsrc(self):
  352. '''
  353. Create a new resource by comparing an empty graph with the provided
  354. IMR graph.
  355. '''
  356. self._modify_rsrc(self.RES_CREATED, add_trp=self.provided_imr.graph)
  357. return self.RES_CREATED
  358. def _replace_rsrc(self):
  359. '''
  360. Replace a resource.
  361. The existing resource graph is removed except for the protected terms.
  362. '''
  363. # The extracted IMR is used as a "minus" delta, so protected predicates
  364. # must be removed.
  365. for p in self.protected_pred:
  366. self.imr.remove(p)
  367. delta = self._dedup_deltas(self.imr.graph, self.provided_imr.graph)
  368. self._modify_rsrc(self.RES_UPDATED, *delta)
  369. # Reset the IMR because it has changed.
  370. delattr(self, 'imr')
  371. return self.RES_UPDATED
  372. def _delete_rsrc(self, inbound, leave_tstone=True, tstone_pointer=None):
  373. '''
  374. Delete a single resource and create a tombstone.
  375. @param inbound (boolean) Whether to delete the inbound relationships.
  376. @param tstone_pointer (URIRef) If set to a URN, this creates a pointer
  377. to the tombstone of the resource that used to contain the deleted
  378. resource. Otherwise the delete resource becomes a tombstone.
  379. '''
  380. self._logger.info('Removing resource {}'.format(self.urn))
  381. remove_trp = set(self.imr.graph)
  382. add_trp = set()
  383. if leave_tstone:
  384. if tstone_pointer:
  385. add_trp.add((self.urn, nsc['fcsystem'].tombstone,
  386. tstone_pointer))
  387. else:
  388. ts = Literal(arrow.utcnow(), datatype=XSD.dateTime)
  389. add_trp.add((self.urn, RDF.type, nsc['fcsystem'].Tombstone))
  390. add_trp.add((self.urn, nsc['fcrepo'].created, ts))
  391. else:
  392. self._logger.info('NOT leaving tombstone.')
  393. self._modify_rsrc(self.RES_DELETED, remove_trp, add_trp)
  394. if inbound:
  395. remove_trp = set()
  396. for ib_rsrc_uri in self.imr.graph.subjects(None, self.urn):
  397. remove_trp = {(ib_rsrc_uri, None, self.urn)}
  398. Ldpr(ib_rsrc_uri)._modify_rsrc(self.RES_UPDATED, remove_trp)
  399. return self.RES_DELETED
  400. def _modify_rsrc(self, ev_type, remove_trp={}, add_trp={}):
  401. '''
  402. Low-level method to modify a graph for a single resource.
  403. @param remove_trp (Iterable) Triples to be removed. This can be a graph
  404. @param add_trp (Iterable) Triples to be added. This can be a graph.
  405. '''
  406. return self.rdfly.modify_dataset(remove_trp, add_trp, metadata={
  407. 'ev_type' : ev_type,
  408. 'time' : arrow.utcnow(),
  409. 'type' : list(self.imr.graph.objects(self.urn, RDF.type)),
  410. 'actor' : self.imr.value(nsc['fcrepo'].lastModifiedBy),
  411. })
  412. def _set_containment_rel(self):
  413. '''Find the closest parent in the path indicated by the UUID and
  414. establish a containment triple.
  415. E.g.
  416. - If only urn:fcres:a (short: a) exists:
  417. - If a/b/c/d is being created, a becomes container of a/b/c/d. Also,
  418. pairtree nodes are created for a/b and a/b/c.
  419. - If e is being created, the root node becomes container of e.
  420. '''
  421. if '/' in self.uuid:
  422. # Traverse up the hierarchy to find the parent.
  423. parent_uri = self._find_parent_or_create_pairtree(self.uuid)
  424. if parent_uri:
  425. self.rdfly.ds.add((parent_uri, nsc['ldp'].contains,
  426. self.rsrc.identifier))
  427. # Direct or indirect container relationship.
  428. self._add_ldp_dc_ic_rel(parent_uri)
  429. else:
  430. self.rsrc.graph.add((nsc['fcsystem'].root, nsc['ldp'].contains,
  431. self.rsrc.identifier))
  432. def _find_parent_or_create_pairtree(self, uuid):
  433. '''
  434. Check the path-wise parent of the new resource. If it exists, return
  435. its URI. Otherwise, create pairtree resources up the path until an
  436. actual resource or the root node is found.
  437. @return rdflib.term.URIRef
  438. '''
  439. path_components = uuid.split('/')
  440. if len(path_components) < 2:
  441. return None
  442. # Build search list, e.g. for a/b/c/d/e would be a/b/c/d, a/b/c, a/b, a
  443. self._logger.info('Path components: {}'.format(path_components))
  444. fwd_search_order = accumulate(
  445. list(path_components)[:-1],
  446. func=lambda x,y : x + '/' + y
  447. )
  448. rev_search_order = reversed(list(fwd_search_order))
  449. cur_child_uri = nsc['fcres'][uuid]
  450. for cparent_uuid in rev_search_order:
  451. cparent_uri = nsc['fcres'][cparent_uuid]
  452. if self.rdfly.ask_rsrc_exists(cparent_uri):
  453. return cparent_uri
  454. else:
  455. self._create_path_segment(cparent_uri, cur_child_uri)
  456. cur_child_uri = cparent_uri
  457. return None
  458. def _dedup_deltas(self, remove_g, add_g):
  459. '''
  460. Remove duplicate triples from add and remove delta graphs, which would
  461. otherwise contain unnecessary statements that annul each other.
  462. '''
  463. return (
  464. remove_g - add_g,
  465. add_g - remove_g
  466. )
  467. def _create_path_segment(self, uri, child_uri):
  468. '''
  469. Create a path segment with a non-LDP containment statement.
  470. This diverges from the default fcrepo4 behavior which creates pairtree
  471. resources.
  472. If a resource such as `fcres:a/b/c` is created, and neither fcres:a or
  473. fcres:a/b exists, we have to create two "hidden" containment statements
  474. between a and a/b and between a/b and a/b/c in order to maintain the
  475. `containment chain.
  476. '''
  477. imr = Resource(Graph(), uri)
  478. imr.add(RDF.type, nsc['ldp'].Container)
  479. imr.add(RDF.type, nsc['ldp'].BasicContainer)
  480. imr.add(RDF.type, nsc['ldp'].RDFSource)
  481. imr.add(nsc['fcrepo'].contains, child_uri)
  482. # If the path segment is just below root
  483. if '/' not in str(uri):
  484. imr.graph.add((nsc['fcsystem'].root, nsc['fcrepo'].contains, uri))
  485. self.rdfly.create_rsrc(imr)
  486. def _add_ldp_dc_ic_rel(self, cont_uri):
  487. '''
  488. Add relationship triples from a parent direct or indirect container.
  489. @param cont_uri (rdflib.term.URIRef) The container URI.
  490. '''
  491. repr_opts = {'parameters' : {'omit' : Ldpr.RETURN_CHILD_RES_URI }}
  492. cont_rsrc = Ldpr.inst(cont_uri, repr_opts=repr_opts)
  493. cont_p = set(cont_rsrc.imr.graph.predicates())
  494. add_g = Graph()
  495. self._logger.info('Checking direct or indirect containment.')
  496. self._logger.debug('Parent predicates: {}'.format(cont_p))
  497. if self.MBR_RSRC_URI in cont_p and self.MBR_REL_URI in cont_p:
  498. s = Toolbox().localize_term(
  499. cont_rsrc.imr.value(self.MBR_RSRC_URI).identifier)
  500. p = cont_rsrc.imr.value(self.MBR_REL_URI).identifier
  501. if cont_rsrc.imr[RDF.type : nsc['ldp'].DirectContainer]:
  502. self._logger.info('Parent is a direct container.')
  503. self._logger.debug('Creating DC triples.')
  504. add_g.add((s, p, self.urn))
  505. elif cont_rsrc.imr[RDF.type : nsc['ldp'].IndirectContainer] \
  506. and self.INS_CNT_REL_URI in cont_p:
  507. self._logger.info('Parent is an indirect container.')
  508. cont_rel_uri = cont_rsrc.imr.value(self.INS_CNT_REL_URI).identifier
  509. target_uri = self.provided_imr.value(cont_rel_uri).identifier
  510. self._logger.debug('Target URI: {}'.format(target_uri))
  511. if target_uri:
  512. self._logger.debug('Creating IC triples.')
  513. add_g.add((s, p, target_uri))
  514. if len(add_g):
  515. add_g = self._check_mgd_terms(add_g)
  516. self._logger.debug('Adding DC/IC triples: {}'.format(
  517. add_g.serialize(format='turtle').decode('utf-8')))
  518. rsrc._modify_rsrc(self.RES_UPDATED, attr_trp=add_g)
  519. def _send_event_msg(self, remove_trp, add_trp, metadata):
  520. '''
  521. Break down delta triples, find subjects and send event message.
  522. '''
  523. remove_grp = groupby(remove_trp, lambda x : x[0])
  524. remove_dict = { k[0] : k[1] for k in remove_grp }
  525. add_grp = groupby(add_trp, lambda x : x[0])
  526. add_dict = { k[0] : k[1] for k in add_grp }
  527. subjects = set(remove_dict.keys()) | set(add_dict.keys())
  528. for rsrc_uri in subjects:
  529. self._logger.info('subject: {}'.format(rsrc_uri))
  530. #current_app.messenger.send