ldpr.py 34 KB

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