ldpr.py 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016
  1. import logging
  2. from abc import ABCMeta
  3. from collections import defaultdict
  4. from itertools import accumulate, groupby
  5. #from pprint import pformat
  6. from uuid import uuid4
  7. import arrow
  8. from flask import current_app, g
  9. from rdflib import Graph
  10. from rdflib.resource import Resource
  11. from rdflib.namespace import RDF
  12. from rdflib.term import URIRef, Literal
  13. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  14. from lakesuperior.dictionaries.namespaces import ns_mgr as nsm
  15. from lakesuperior.dictionaries.srv_mgd_terms import srv_mgd_subjects, \
  16. srv_mgd_predicates, srv_mgd_types
  17. from lakesuperior.exceptions import (RefIntViolationError,
  18. ResourceNotExistsError, ServerManagedTermError, TombstoneError)
  19. from lakesuperior.model.ldp_factory import LdpFactory
  20. from lakesuperior.store_layouts.ldp_rs.rsrc_centric_layout import (
  21. VERS_CONT_LABEL)
  22. ROOT_UID = ''
  23. ROOT_RSRC_URI = nsc['fcres'][ROOT_UID]
  24. def atomic(fn):
  25. '''
  26. Handle atomic operations in an RDF store.
  27. This wrapper ensures that a write operation is performed atomically. It
  28. also takes care of sending a message for each resource changed in the
  29. transaction.
  30. '''
  31. def wrapper(self, *args, **kwargs):
  32. g.changelog = []
  33. try:
  34. ret = fn(self, *args, **kwargs)
  35. except:
  36. self._logger.warn('Rolling back transaction.')
  37. self.rdfly.store.rollback()
  38. raise
  39. else:
  40. self._logger.info('Committing transaction.')
  41. #if hasattr(self.rdfly.store, '_edits'):
  42. # # @FIXME ugly.
  43. # self.rdfly._conn.optimize_edits()
  44. self.rdfly.store.commit()
  45. for ev in g.changelog:
  46. #self._logger.info('Message: {}'.format(pformat(ev)))
  47. self._send_event_msg(*ev)
  48. return ret
  49. return wrapper
  50. class Ldpr(metaclass=ABCMeta):
  51. '''LDPR (LDP Resource).
  52. Definition: https://www.w3.org/TR/ldp/#ldpr-resource
  53. This class and related subclasses contain the implementation pieces of
  54. the vanilla LDP specifications. This is extended by the
  55. `lakesuperior.fcrepo.Resource` class.
  56. Inheritance graph: https://www.w3.org/TR/ldp/#fig-ldpc-types
  57. Note: Even though LdpNr (which is a subclass of Ldpr) handles binary files,
  58. it still has an RDF representation in the triplestore. Hence, some of the
  59. RDF-related methods are defined in this class rather than in the LdpRs
  60. class.
  61. Convention notes:
  62. All the methods in this class handle internal UUIDs (URN). Public-facing
  63. URIs are converted from URNs and passed by these methods to the methods
  64. handling HTTP negotiation.
  65. The data passed to the store layout for processing should be in a graph.
  66. All conversion from request payload strings is done here.
  67. '''
  68. EMBED_CHILD_RES_URI = nsc['fcrepo'].EmbedResources
  69. FCREPO_PTREE_TYPE = nsc['fcrepo'].Pairtree
  70. INS_CNT_REL_URI = nsc['ldp'].insertedContentRelation
  71. MBR_RSRC_URI = nsc['ldp'].membershipResource
  72. MBR_REL_URI = nsc['ldp'].hasMemberRelation
  73. RETURN_CHILD_RES_URI = nsc['fcrepo'].Children
  74. RETURN_INBOUND_REF_URI = nsc['fcrepo'].InboundReferences
  75. RETURN_SRV_MGD_RES_URI = nsc['fcrepo'].ServerManaged
  76. # Workflow type. Inbound means that the resource is being written to the
  77. # store, outbounnd is being retrieved for output.
  78. WRKF_INBOUND = '_workflow:inbound_'
  79. WRKF_OUTBOUND = '_workflow:outbound_'
  80. # Default user to be used for the `createdBy` and `lastUpdatedBy` if a user
  81. # is not provided.
  82. DEFAULT_USER = Literal('BypassAdmin')
  83. RES_CREATED = '_create_'
  84. RES_DELETED = '_delete_'
  85. RES_UPDATED = '_update_'
  86. base_types = {
  87. nsc['fcrepo'].Resource,
  88. nsc['ldp'].Resource,
  89. nsc['ldp'].RDFSource,
  90. }
  91. protected_pred = (
  92. nsc['fcrepo'].created,
  93. nsc['fcrepo'].createdBy,
  94. nsc['ldp'].contains,
  95. )
  96. _logger = logging.getLogger(__name__)
  97. ## MAGIC METHODS ##
  98. def __init__(self, uid, repr_opts={}, provided_imr=None, **kwargs):
  99. '''Instantiate an in-memory LDP resource that can be loaded from and
  100. persisted to storage.
  101. Persistence is done in this class. None of the operations in the store
  102. layout should commit an open transaction. Methods are wrapped in a
  103. transaction by using the `@atomic` decorator.
  104. @param uid (string) uid of the resource. If None (must be explicitly
  105. set) it refers to the root node. It can also be the full URI or URN,
  106. in which case it will be converted.
  107. @param repr_opts (dict) Options used to retrieve the IMR. See
  108. `parse_rfc7240` for format details.
  109. @Param provd_rdf (string) RDF data provided by the client in
  110. operations such as `PUT` or `POST`, serialized as a string. This sets
  111. the `provided_imr` property.
  112. '''
  113. self.uid = g.tbox.uri_to_uuid(uid) \
  114. if isinstance(uid, URIRef) else uid
  115. self.urn = nsc['fcres'][uid]
  116. self.uri = g.tbox.uuid_to_uri(self.uid)
  117. self.rdfly = current_app.rdfly
  118. self.nonrdfly = current_app.nonrdfly
  119. self.provided_imr = provided_imr
  120. @property
  121. def rsrc(self):
  122. '''
  123. The RDFLib resource representing this LDPR. This is a live
  124. representation of the stored data if present.
  125. @return rdflib.resource.Resource
  126. '''
  127. if not hasattr(self, '_rsrc'):
  128. self._rsrc = self.rdfly.ds.resource(self.urn)
  129. return self._rsrc
  130. @property
  131. def imr(self):
  132. '''
  133. Extract an in-memory resource from the graph store.
  134. If the resource is not stored (yet), a `ResourceNotExistsError` is
  135. raised.
  136. @return rdflib.resource.Resource
  137. '''
  138. if not hasattr(self, '_imr'):
  139. if hasattr(self, '_imr_options'):
  140. #self._logger.debug('IMR options: {}'.format(self._imr_options))
  141. imr_options = self._imr_options
  142. else:
  143. imr_options = {}
  144. options = dict(imr_options, strict=True)
  145. self._imr = self.rdfly.extract_imr(self.uid, **options)
  146. return self._imr
  147. @imr.setter
  148. def imr(self, v):
  149. '''
  150. Replace in-memory buffered resource.
  151. @param v (set | rdflib.Graph) New set of triples to populate the IMR
  152. with.
  153. '''
  154. if isinstance(v, Resource):
  155. v = v.graph
  156. self._imr = Resource(Graph(), self.urn)
  157. gr = self._imr.graph
  158. gr += v
  159. @imr.deleter
  160. def imr(self):
  161. '''
  162. Delete in-memory buffered resource.
  163. '''
  164. delattr(self, '_imr')
  165. @property
  166. def metadata(self):
  167. '''
  168. Get resource metadata.
  169. '''
  170. if not hasattr(self, '_metadata'):
  171. self._metadata = self.rdfly.get_metadata(self.uid)
  172. return self._metadata
  173. @metadata.setter
  174. def metadata(self, rsrc):
  175. '''
  176. Set resource metadata.
  177. '''
  178. if not isinstance(rsrc, Resource):
  179. raise TypeError('Provided metadata is not a Resource object.')
  180. self._metadata = rsrc
  181. @property
  182. def stored_or_new_imr(self):
  183. '''
  184. Extract an in-memory resource for harmless manipulation and output.
  185. If the resource is not stored (yet), initialize a new IMR with basic
  186. triples.
  187. @return rdflib.resource.Resource
  188. '''
  189. if not hasattr(self, '_imr'):
  190. if hasattr(self, '_imr_options'):
  191. #self._logger.debug('IMR options: {}'.format(self._imr_options))
  192. imr_options = self._imr_options
  193. else:
  194. imr_options = {}
  195. options = dict(imr_options, strict=True)
  196. try:
  197. self._imr = self.rdfly.extract_imr(self.uid, **options)
  198. except ResourceNotExistsError:
  199. self._imr = Resource(Graph(), self.urn)
  200. for t in self.base_types:
  201. self.imr.add(RDF.type, t)
  202. return self._imr
  203. @property
  204. def out_graph(self):
  205. '''
  206. Retun a graph of the resource's IMR formatted for output.
  207. '''
  208. out_gr = Graph()
  209. for t in self.imr.graph:
  210. if (
  211. # Exclude digest hash and version information.
  212. t[1] not in {
  213. nsc['premis'].hasMessageDigest,
  214. nsc['fcrepo'].hasVersion,
  215. }
  216. ) and (
  217. # Only include server managed triples if requested.
  218. self._imr_options.get('incl_srv_mgd', True)
  219. or not self._is_trp_managed(t)
  220. ):
  221. out_gr.add(t)
  222. return out_gr
  223. @property
  224. def version_info(self):
  225. '''
  226. Return version metadata (`fcr:versions`).
  227. '''
  228. if not hasattr(self, '_version_info'):
  229. try:
  230. self._version_info = self.rdfly.get_version_info(self.uid)
  231. except ResourceNotExistsError as e:
  232. self._version_info = Resource(Graph(), self.urn)
  233. return self._version_info
  234. @property
  235. def versions(self):
  236. '''
  237. Return a generator of version URIs.
  238. '''
  239. return set(self.version_info[self.urn : nsc['fcrepo'].hasVersion :])
  240. @property
  241. def version_uids(self):
  242. '''
  243. Return a generator of version UIDs (relative to their parent resource).
  244. '''
  245. gen = self.version_info[
  246. nsc['fcrepo'].hasVersion / nsc['fcrepo'].hasVersionLabel]
  247. return { str(uid) for uid in gen }
  248. @property
  249. def is_stored(self):
  250. if not hasattr(self, '_is_stored'):
  251. if hasattr(self, '_imr'):
  252. self._is_stored = len(self.imr.graph) > 0
  253. else:
  254. self._is_stored = self.rdfly.ask_rsrc_exists(self.uid)
  255. return self._is_stored
  256. @property
  257. def types(self):
  258. '''All RDF types.
  259. @return set(rdflib.term.URIRef)
  260. '''
  261. if not hasattr(self, '_types'):
  262. if len(self.metadata.graph):
  263. metadata = self.metadata
  264. elif getattr(self, 'provided_imr', None) and \
  265. len(self.provided_imr.graph):
  266. metadata = self.provided_imr
  267. else:
  268. return set()
  269. self._types = set(metadata.graph[self.urn : RDF.type])
  270. return self._types
  271. @property
  272. def ldp_types(self):
  273. '''The LDP types.
  274. @return set(rdflib.term.URIRef)
  275. '''
  276. if not hasattr(self, '_ldp_types'):
  277. self._ldp_types = { t for t in self.types if nsc['ldp'] in t }
  278. return self._ldp_types
  279. ## LDP METHODS ##
  280. def head(self):
  281. '''
  282. Return values for the headers.
  283. '''
  284. out_headers = defaultdict(list)
  285. digest = self.metadata.value(nsc['premis'].hasMessageDigest)
  286. if digest:
  287. etag = digest.identifier.split(':')[-1]
  288. out_headers['ETag'] = 'W/"{}"'.format(etag),
  289. last_updated_term = self.metadata.value(nsc['fcrepo'].lastModified)
  290. if last_updated_term:
  291. out_headers['Last-Modified'] = arrow.get(last_updated_term)\
  292. .format('ddd, D MMM YYYY HH:mm:ss Z')
  293. for t in self.ldp_types:
  294. out_headers['Link'].append(
  295. '{};rel="type"'.format(t.n3()))
  296. return out_headers
  297. def get(self):
  298. '''
  299. Get an RDF representation of the resource.
  300. The binary retrieval is handled directly by the router.
  301. Internal URNs are replaced by global URIs using the endpoint webroot.
  302. '''
  303. gr = g.tbox.globalize_graph(self.out_graph)
  304. gr.namespace_manager = nsm
  305. return gr
  306. def get_version_info(self):
  307. '''
  308. Get the `fcr:versions` graph.
  309. '''
  310. gr = g.tbox.globalize_graph(self.version_info.graph)
  311. gr.namespace_manager = nsm
  312. return gr
  313. def get_version(self, ver_uid, **kwargs):
  314. '''
  315. Get a version by label.
  316. '''
  317. ver_gr = self.rdfly.extract_imr(self.uid, ver_uid, **kwargs).graph
  318. gr = g.tbox.globalize_graph(ver_gr)
  319. gr.namespace_manager = nsm
  320. return gr
  321. @atomic
  322. def post(self):
  323. '''
  324. https://www.w3.org/TR/ldp/#ldpr-HTTP_POST
  325. Perform a POST action after a valid resource URI has been found.
  326. '''
  327. return self._create_or_replace_rsrc(create_only=True)
  328. @atomic
  329. def put(self):
  330. '''
  331. https://www.w3.org/TR/ldp/#ldpr-HTTP_PUT
  332. '''
  333. return self._create_or_replace_rsrc()
  334. def patch(self, *args, **kwargs):
  335. raise NotImplementedError()
  336. @atomic
  337. def delete(self, inbound=True, delete_children=True, leave_tstone=True):
  338. '''
  339. https://www.w3.org/TR/ldp/#ldpr-HTTP_DELETE
  340. @param inbound (boolean) If specified, delete all inbound relationships
  341. as well. This is the default and is always the case if referential
  342. integrity is enforced by configuration.
  343. @param delete_children (boolean) Whether to delete all child resources.
  344. This is the default.
  345. '''
  346. refint = self.rdfly.config['referential_integrity']
  347. inbound = True if refint else inbound
  348. children = self.imr[nsc['ldp'].contains * '+'] \
  349. if delete_children else []
  350. if leave_tstone:
  351. ret = self._bury_rsrc(inbound)
  352. else:
  353. ret = self._purge_rsrc(inbound)
  354. for child_uri in children:
  355. child_rsrc = LdpFactory.from_stored(
  356. g.tbox.uri_to_uuid(child_uri.identifier),
  357. repr_opts={'incl_children' : False})
  358. if leave_tstone:
  359. child_rsrc._bury_rsrc(inbound, tstone_pointer=self.urn)
  360. else:
  361. child_rsrc._purge_rsrc(inbound)
  362. return ret
  363. @atomic
  364. def resurrect(self):
  365. '''
  366. Resurrect a resource from a tombstone.
  367. @EXPERIMENTAL
  368. '''
  369. tstone_trp = set(self.rdfly.extract_imr(self.uid, strict=False).graph)
  370. ver_rsp = self.version_info.graph.query('''
  371. SELECT ?uid {
  372. ?latest fcrepo:hasVersionLabel ?uid ;
  373. fcrepo:created ?ts .
  374. }
  375. ORDER BY DESC(?ts)
  376. LIMIT 1
  377. ''')
  378. ver_uid = str(ver_rsp.bindings[0]['uid'])
  379. ver_trp = set(self.rdfly.get_metadata(self.uid, ver_uid).graph)
  380. laz_gr = Graph()
  381. for t in ver_trp:
  382. if t[1] != RDF.type or t[2] not in {
  383. nsc['fcrepo'].Version,
  384. }:
  385. laz_gr.add((self.urn, t[1], t[2]))
  386. laz_gr.add((self.urn, RDF.type, nsc['fcrepo'].Resource))
  387. if nsc['ldp'].NonRdfSource in laz_gr[: RDF.type :]:
  388. laz_gr.add((self.urn, RDF.type, nsc['fcrepo'].Binary))
  389. elif nsc['ldp'].Container in laz_gr[: RDF.type :]:
  390. laz_gr.add((self.urn, RDF.type, nsc['fcrepo'].Container))
  391. self._modify_rsrc(self.RES_CREATED, tstone_trp, set(laz_gr))
  392. self._set_containment_rel()
  393. return self.uri
  394. @atomic
  395. def purge(self, inbound=True):
  396. '''
  397. Delete a tombstone and all historic snapstots.
  398. N.B. This does not trigger an event.
  399. '''
  400. refint = current_app.config['store']['ldp_rs']['referential_integrity']
  401. inbound = True if refint else inbound
  402. return self._purge_rsrc(inbound)
  403. @atomic
  404. def create_version(self, ver_uid=None):
  405. '''
  406. Create a new version of the resource.
  407. NOTE: This creates an event only for the resource being updated (due
  408. to the added `hasVersion` triple and possibly to the `hasVersions` one)
  409. but not for the version being created.
  410. @param ver_uid Version ver_uid. If already existing, an exception is
  411. raised.
  412. '''
  413. if not ver_uid or ver_uid in self.version_uids:
  414. ver_uid = str(uuid4())
  415. return g.tbox.globalize_term(self.create_rsrc_snapshot(ver_uid))
  416. @atomic
  417. def revert_to_version(self, ver_uid, backup=True):
  418. '''
  419. Revert to a previous version.
  420. @param ver_uid (string) Version UID.
  421. @param backup (boolean) Whether to create a backup snapshot. Default is
  422. true.
  423. '''
  424. # Create a backup snapshot.
  425. if backup:
  426. self.create_version()
  427. ver_gr = self.rdfly.extract_imr(self.uid, ver_uid=ver_uid,
  428. incl_children=False)
  429. self.provided_imr = Resource(Graph(), self.urn)
  430. for t in ver_gr.graph:
  431. if not self._is_trp_managed(t):
  432. self.provided_imr.add(t[1], t[2])
  433. # @TODO Check individual objects: if they are repo-managed URIs
  434. # and not existing or tombstones, they are not added.
  435. return self._create_or_replace_rsrc(create_only=False)
  436. ## PROTECTED METHODS ##
  437. def _is_trp_managed(self, t):
  438. '''
  439. Whether a triple is server-managed.
  440. @return boolean
  441. '''
  442. return t[1] in srv_mgd_predicates or (
  443. t[1] == RDF.type and t[2] in srv_mgd_types)
  444. def _create_or_replace_rsrc(self, create_only=False):
  445. '''
  446. Create or update a resource. PUT and POST methods, which are almost
  447. identical, are wrappers for this method.
  448. @param create_only (boolean) Whether this is a create-only operation.
  449. '''
  450. create = create_only or not self.is_stored
  451. self._add_srv_mgd_triples(create)
  452. #self._ensure_single_subject_rdf(self.provided_imr.graph)
  453. ref_int = self.rdfly.config['referential_integrity']
  454. if ref_int:
  455. self._check_ref_int(ref_int)
  456. self.rdfly.create_or_replace_rsrc(self.uid, self.provided_imr.graph)
  457. self._set_containment_rel()
  458. return self.RES_CREATED if create else self.RES_UPDATED
  459. def _bury_rsrc(self, inbound, tstone_pointer=None):
  460. '''
  461. Delete a single resource and create a tombstone.
  462. @param inbound (boolean) Whether to delete the inbound relationships.
  463. @param tstone_pointer (URIRef) If set to a URN, this creates a pointer
  464. to the tombstone of the resource that used to contain the deleted
  465. resource. Otherwise the deleted resource becomes a tombstone.
  466. '''
  467. self._logger.info('Burying resource {}'.format(self.uid))
  468. # Create a backup snapshot for resurrection purposes.
  469. self.create_rsrc_snapshot(uuid4())
  470. remove_trp = set(self.imr.graph)
  471. if tstone_pointer:
  472. add_trp = {(self.urn, nsc['fcsystem'].tombstone,
  473. tstone_pointer)}
  474. else:
  475. add_trp = {
  476. (self.urn, RDF.type, nsc['fcsystem'].Tombstone),
  477. (self.urn, nsc['fcrepo'].created, g.timestamp_term),
  478. }
  479. self._modify_rsrc(self.RES_DELETED, remove_trp, add_trp)
  480. if inbound:
  481. for ib_rsrc_uri in self.imr.graph.subjects(None, self.urn):
  482. remove_trp = {(ib_rsrc_uri, None, self.urn)}
  483. ib_rsrc = Ldpr(ib_rsrc_uri)
  484. # To preserve inbound links in history, create a snapshot
  485. ib_rsrc.create_rsrc_snapshot(uuid4())
  486. ib_rsrc._modify_rsrc(self.RES_UPDATED, remove_trp)
  487. return self.RES_DELETED
  488. def _purge_rsrc(self, inbound):
  489. '''
  490. Remove all traces of a resource and versions.
  491. '''
  492. self._logger.info('Purging resource {}'.format(self.uid))
  493. self.rdfly.purge_rsrc(self.uid, inbound)
  494. # @TODO This could be a different event type.
  495. return self.RES_DELETED
  496. def create_rsrc_snapshot(self, ver_uid):
  497. '''
  498. Perform version creation and return the internal URN.
  499. '''
  500. # Create version resource from copying the current state.
  501. self._logger.info(
  502. 'Creating version snapshot {} for resource {}.'.format(
  503. ver_uid, self.uid))
  504. ver_add_gr = set()
  505. vers_uid = '{}/{}'.format(self.uid, VERS_CONT_LABEL)
  506. ver_uid = '{}/{}'.format(vers_uid, ver_uid)
  507. ver_uri = nsc['fcres'][ver_uid]
  508. ver_add_gr.add((ver_uri, RDF.type, nsc['fcrepo'].Version))
  509. for t in self.imr.graph:
  510. if (
  511. t[1] == RDF.type and t[2] in {
  512. nsc['fcrepo'].Binary,
  513. nsc['fcrepo'].Container,
  514. nsc['fcrepo'].Resource,
  515. }
  516. ) or (
  517. t[1] in {
  518. nsc['fcrepo'].hasParent,
  519. nsc['fcrepo'].hasVersions,
  520. nsc['fcrepo'].hasVersion,
  521. nsc['premis'].hasMessageDigest,
  522. }
  523. ):
  524. pass
  525. else:
  526. ver_add_gr.add((
  527. g.tbox.replace_term_domain(t[0], self.urn, ver_uri),
  528. t[1], t[2]))
  529. self.rdfly.modify_rsrc(ver_uid, add_trp=ver_add_gr)
  530. # Update resource admin data.
  531. rsrc_add_gr = {
  532. (self.urn, nsc['fcrepo'].hasVersion, ver_uri),
  533. (self.urn, nsc['fcrepo'].hasVersions, nsc['fcres'][vers_uid]),
  534. }
  535. self._modify_rsrc(self.RES_UPDATED, add_trp=rsrc_add_gr, notify=False)
  536. return nsc['fcres'][ver_uid]
  537. def _modify_rsrc(self, ev_type, remove_trp=set(), add_trp=set(),
  538. notify=True):
  539. '''
  540. Low-level method to modify a graph for a single resource.
  541. This is a crucial point for messaging. Any write operation on the RDF
  542. store that needs to be notified should be performed by invoking this
  543. method.
  544. @param ev_type (string) The type of event (create, update, delete).
  545. @param remove_trp (set) Triples to be removed.
  546. @param add_trp (set) Triples to be added.
  547. @param notify (boolean) Whether to send a message about the change.
  548. '''
  549. #for trp in [remove_trp, add_trp]:
  550. # if not isinstance(trp, set):
  551. # trp = set(trp)
  552. ret = self.rdfly.modify_rsrc(self.uid, remove_trp, add_trp)
  553. if notify and current_app.config.get('messaging'):
  554. self._send_msg(ev_type, remove_trp, add_trp)
  555. return ret
  556. def _send_msg(self, ev_type, remove_trp=None, add_trp=None):
  557. '''
  558. Sent a message about a changed (created, modified, deleted) resource.
  559. '''
  560. try:
  561. type = self.types
  562. actor = self.metadata.value(nsc['fcrepo'].createdBy)
  563. except (ResourceNotExistsError, TombstoneError):
  564. type = set()
  565. actor = None
  566. for t in add_trp:
  567. if t[1] == RDF.type:
  568. type.add(t[2])
  569. elif actor is None and t[1] == nsc['fcrepo'].createdBy:
  570. actor = t[2]
  571. g.changelog.append((set(remove_trp), set(add_trp), {
  572. 'ev_type' : ev_type,
  573. 'time' : g.timestamp,
  574. 'type' : type,
  575. 'actor' : actor,
  576. }))
  577. # Not used. @TODO Deprecate or reimplement depending on requirements.
  578. #def _ensure_single_subject_rdf(self, gr, add_fragment=True):
  579. # '''
  580. # Ensure that a RDF payload for a POST or PUT has a single resource.
  581. # '''
  582. # for s in set(gr.subjects()):
  583. # # Fragment components
  584. # if '#' in s:
  585. # parts = s.split('#')
  586. # frag = s
  587. # s = URIRef(parts[0])
  588. # if add_fragment:
  589. # # @TODO This is added to the main graph. It should be added
  590. # # to the metadata graph.
  591. # gr.add((frag, nsc['fcsystem'].fragmentOf, s))
  592. # if not s == self.urn:
  593. # raise SingleSubjectError(s, self.uid)
  594. def _check_ref_int(self, config):
  595. gr = self.provided_imr.graph
  596. for o in gr.objects():
  597. if isinstance(o, URIRef) and str(o).startswith(g.webroot)\
  598. and not self.rdfly.ask_rsrc_exists(o):
  599. if config == 'strict':
  600. raise RefIntViolationError(o)
  601. else:
  602. self._logger.info(
  603. 'Removing link to non-existent repo resource: {}'
  604. .format(o))
  605. gr.remove((None, None, o))
  606. def _check_mgd_terms(self, gr):
  607. '''
  608. Check whether server-managed terms are in a RDF payload.
  609. '''
  610. offending_subjects = set(gr.subjects()) & srv_mgd_subjects
  611. if offending_subjects:
  612. if self.handling=='strict':
  613. raise ServerManagedTermError(offending_subjects, 's')
  614. else:
  615. for s in offending_subjects:
  616. self._logger.info('Removing offending subj: {}'.format(s))
  617. gr.remove((s, None, None))
  618. offending_predicates = set(gr.predicates()) & srv_mgd_predicates
  619. if offending_predicates:
  620. if self.handling=='strict':
  621. raise ServerManagedTermError(offending_predicates, 'p')
  622. else:
  623. for p in offending_predicates:
  624. self._logger.info('Removing offending pred: {}'.format(p))
  625. gr.remove((None, p, None))
  626. offending_types = set(gr.objects(predicate=RDF.type)) & srv_mgd_types
  627. if offending_types:
  628. if self.handling=='strict':
  629. raise ServerManagedTermError(offending_types, 't')
  630. else:
  631. for t in offending_types:
  632. self._logger.info('Removing offending type: {}'.format(t))
  633. gr.remove((None, RDF.type, t))
  634. #self._logger.debug('Sanitized graph: {}'.format(gr.serialize(
  635. # format='turtle').decode('utf-8')))
  636. return gr
  637. def _add_srv_mgd_triples(self, create=False):
  638. '''
  639. Add server-managed triples to a provided IMR.
  640. @param create (boolean) Whether the resource is being created.
  641. '''
  642. # Base LDP types.
  643. for t in self.base_types:
  644. self.provided_imr.add(RDF.type, t)
  645. # Message digest.
  646. cksum = g.tbox.rdf_cksum(self.provided_imr.graph)
  647. self.provided_imr.set(nsc['premis'].hasMessageDigest,
  648. URIRef('urn:sha1:{}'.format(cksum)))
  649. # Create and modify timestamp.
  650. if create:
  651. self.provided_imr.set(nsc['fcrepo'].created, g.timestamp_term)
  652. self.provided_imr.set(nsc['fcrepo'].createdBy, self.DEFAULT_USER)
  653. else:
  654. self.provided_imr.set(nsc['fcrepo'].created, self.metadata.value(
  655. nsc['fcrepo'].created))
  656. self.provided_imr.set(nsc['fcrepo'].createdBy, self.metadata.value(
  657. nsc['fcrepo'].createdBy))
  658. self.provided_imr.set(nsc['fcrepo'].lastModified, g.timestamp_term)
  659. self.provided_imr.set(nsc['fcrepo'].lastModifiedBy, self.DEFAULT_USER)
  660. def _set_containment_rel(self):
  661. '''Find the closest parent in the path indicated by the uid and
  662. establish a containment triple.
  663. E.g. if only urn:fcres:a (short: a) exists:
  664. - If a/b/c/d is being created, a becomes container of a/b/c/d. Also,
  665. pairtree nodes are created for a/b and a/b/c.
  666. - If e is being created, the root node becomes container of e.
  667. '''
  668. if '/' in self.uid:
  669. # Traverse up the hierarchy to find the parent.
  670. parent_uid = self._find_parent_or_create_pairtree()
  671. else:
  672. parent_uid = ROOT_UID
  673. add_gr = Graph()
  674. add_gr.add((nsc['fcres'][parent_uid], nsc['ldp'].contains, self.urn))
  675. parent_rsrc = LdpFactory.from_stored(
  676. parent_uid, repr_opts={
  677. 'incl_children' : False}, handling='none')
  678. parent_rsrc._modify_rsrc(self.RES_UPDATED, add_trp=add_gr)
  679. # Direct or indirect container relationship.
  680. self._add_ldp_dc_ic_rel(parent_rsrc)
  681. def _find_parent_or_create_pairtree(self):
  682. '''
  683. Check the path-wise parent of the new resource. If it exists, return
  684. its UID. Otherwise, create pairtree resources up the path until an
  685. actual resource or the root node is found.
  686. @return string Resource UID.
  687. '''
  688. path_components = self.uid.split('/')
  689. # If there is only one element, the parent is the root node.
  690. if len(path_components) < 2:
  691. return ROOT_UID
  692. # Build search list, e.g. for a/b/c/d/e would be a/b/c/d, a/b/c, a/b, a
  693. self._logger.info('Path components: {}'.format(path_components))
  694. fwd_search_order = accumulate(
  695. list(path_components)[:-1],
  696. func=lambda x,y : x + '/' + y
  697. )
  698. rev_search_order = reversed(list(fwd_search_order))
  699. cur_child_uid = self.uid
  700. parent_uid = ROOT_UID # Defaults to root
  701. segments = []
  702. for cparent_uid in rev_search_order:
  703. if self.rdfly.ask_rsrc_exists(cparent_uid):
  704. # If a real parent is found, set that and break the loop.
  705. parent_uid = cparent_uid
  706. break
  707. else:
  708. # Otherwise, add to the list of segments to be built.
  709. segments.append((cparent_uid, cur_child_uid))
  710. cur_child_uid = cparent_uid
  711. for segm_uid, next_uid in segments:
  712. self.rdfly.add_path_segment(uid=segm_uid, next_uid=next_uid,
  713. child_uid=self.uid, parent_uid=parent_uid)
  714. return parent_uid
  715. def _dedup_deltas(self, remove_gr, add_gr):
  716. '''
  717. Remove duplicate triples from add and remove delta graphs, which would
  718. otherwise contain unnecessary statements that annul each other.
  719. '''
  720. return (
  721. remove_gr - add_gr,
  722. add_gr - remove_gr
  723. )
  724. #def _create_path_segment(self, uid, child_uid, parent_uid):
  725. # '''
  726. # Create a path segment with a non-LDP containment statement.
  727. # If a resource such as `fcres:a/b/c` is created, and neither fcres:a or
  728. # fcres:a/b exists, we have to create two "hidden" containment statements
  729. # between a and a/b and between a/b and a/b/c in order to maintain the
  730. # containment chain.
  731. # These triples are stored separately and are not versioned.
  732. # '''
  733. # rsrc_uri = nsc['fcres'][uid]
  734. # add_trp = {
  735. # (rsrc_uri, nsc['fcsystem'].contains, nsc['fcres'][child_uid]),
  736. # (rsrc_uri, nsc['ldp'].contains, self.urn),
  737. # (rsrc_uri, RDF.type, nsc['ldp'].Container),
  738. # (rsrc_uri, RDF.type, nsc['ldp'].BasicContainer),
  739. # (rsrc_uri, RDF.type, nsc['ldp'].RDFSource),
  740. # (rsrc_uri, RDF.type, nsc['fcrepo'].Pairtree),
  741. # (rsrc_uri, nsc['fcrepo'].hasParent, nsc['fcres'][real_parent_uid]),
  742. # }
  743. # self.rdfly.add_segment(nsc['fcres'][uid], next=self.urn,
  744. # child=nsc['fcres'][child_uid],
  745. # parent=nsc['fcres'][parent_uid])
  746. # # If the path segment is just below root
  747. # if '/' not in uid:
  748. # self.rdfly.modify_rsrc(ROOT_UID, add_trp={
  749. # (ROOT_RSRC_URI, nsc['fcsystem'].contains, nsc['fcres'][uid])
  750. # })
  751. def _add_ldp_dc_ic_rel(self, cont_rsrc):
  752. '''
  753. Add relationship triples from a parent direct or indirect container.
  754. @param cont_rsrc (rdflib.resource.Resouce) The container resource.
  755. '''
  756. cont_p = set(cont_rsrc.metadata.graph.predicates())
  757. self._logger.info('Checking direct or indirect containment.')
  758. self._logger.debug('Parent predicates: {}'.format(cont_p))
  759. add_trp = {(self.urn, nsc['fcrepo'].hasParent, cont_rsrc.urn)}
  760. if self.MBR_RSRC_URI in cont_p and self.MBR_REL_URI in cont_p:
  761. s = cont_rsrc.metadata.value(self.MBR_RSRC_URI).identifier
  762. p = cont_rsrc.metadata.value(self.MBR_REL_URI).identifier
  763. if cont_rsrc.metadata[RDF.type : nsc['ldp'].DirectContainer]:
  764. self._logger.info('Parent is a direct container.')
  765. self._logger.debug('Creating DC triples.')
  766. o = self.urn
  767. elif cont_rsrc.metadata[RDF.type : nsc['ldp'].IndirectContainer] \
  768. and self.INS_CNT_REL_URI in cont_p:
  769. self._logger.info('Parent is an indirect container.')
  770. cont_rel_uri = cont_rsrc.metadata.value(
  771. self.INS_CNT_REL_URI).identifier
  772. o = self.provided_imr.value(cont_rel_uri).identifier
  773. self._logger.debug('Target URI: {}'.format(o))
  774. self._logger.debug('Creating IC triples.')
  775. target_rsrc = LdpFactory.from_stored(g.tbox.uri_to_uuid(s))
  776. target_rsrc._modify_rsrc(self.RES_UPDATED, add_trp={(s, p, o)})
  777. self._modify_rsrc(self.RES_UPDATED, add_trp=add_trp)
  778. def _send_event_msg(self, remove_trp, add_trp, metadata):
  779. '''
  780. Break down delta triples, find subjects and send event message.
  781. '''
  782. remove_grp = groupby(remove_trp, lambda x : x[0])
  783. remove_dict = { k[0] : k[1] for k in remove_grp }
  784. add_grp = groupby(add_trp, lambda x : x[0])
  785. add_dict = { k[0] : k[1] for k in add_grp }
  786. subjects = set(remove_dict.keys()) | set(add_dict.keys())
  787. for rsrc_uri in subjects:
  788. self._logger.info('subject: {}'.format(rsrc_uri))
  789. #current_app.messenger.send