ldpr.py 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009
  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, request
  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. request.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. for ev in request.changelog:
  45. #self._logger.info('Message: {}'.format(pformat(ev)))
  46. self._send_event_msg(*ev)
  47. return ret
  48. return wrapper
  49. class Ldpr(metaclass=ABCMeta):
  50. '''LDPR (LDP Resource).
  51. Definition: https://www.w3.org/TR/ldp/#ldpr-resource
  52. This class and related subclasses contain the implementation pieces of
  53. the vanilla LDP specifications. This is extended by the
  54. `lakesuperior.fcrepo.Resource` class.
  55. Inheritance graph: https://www.w3.org/TR/ldp/#fig-ldpc-types
  56. Note: Even though LdpNr (which is a subclass of Ldpr) handles binary files,
  57. it still has an RDF representation in the triplestore. Hence, some of the
  58. RDF-related methods are defined in this class rather than in the LdpRs
  59. class.
  60. Convention notes:
  61. All the methods in this class handle internal UUIDs (URN). Public-facing
  62. URIs are converted from URNs and passed by these methods to the methods
  63. handling HTTP negotiation.
  64. The data passed to the store layout for processing should be in a graph.
  65. All conversion from request payload strings is done here.
  66. '''
  67. EMBED_CHILD_RES_URI = nsc['fcrepo'].EmbedResources
  68. FCREPO_PTREE_TYPE = nsc['fcrepo'].Pairtree
  69. INS_CNT_REL_URI = nsc['ldp'].insertedContentRelation
  70. MBR_RSRC_URI = nsc['ldp'].membershipResource
  71. MBR_REL_URI = nsc['ldp'].hasMemberRelation
  72. RETURN_CHILD_RES_URI = nsc['fcrepo'].Children
  73. RETURN_INBOUND_REF_URI = nsc['fcrepo'].InboundReferences
  74. RETURN_SRV_MGD_RES_URI = nsc['fcrepo'].ServerManaged
  75. # Workflow type. Inbound means that the resource is being written to the
  76. # store, outbounnd is being retrieved for output.
  77. WRKF_INBOUND = '_workflow:inbound_'
  78. WRKF_OUTBOUND = '_workflow:outbound_'
  79. # Default user to be used for the `createdBy` and `lastUpdatedBy` if a user
  80. # is not provided.
  81. DEFAULT_USER = Literal('BypassAdmin')
  82. RES_CREATED = '_create_'
  83. RES_DELETED = '_delete_'
  84. RES_UPDATED = '_update_'
  85. base_types = {
  86. nsc['fcrepo'].Resource,
  87. nsc['ldp'].Resource,
  88. nsc['ldp'].RDFSource,
  89. }
  90. protected_pred = (
  91. nsc['fcrepo'].created,
  92. nsc['fcrepo'].createdBy,
  93. nsc['ldp'].contains,
  94. )
  95. _logger = logging.getLogger(__name__)
  96. ## MAGIC METHODS ##
  97. def __init__(self, uid, repr_opts={}, provided_imr=None, **kwargs):
  98. '''Instantiate an in-memory LDP resource that can be loaded from and
  99. persisted to storage.
  100. Persistence is done in this class. None of the operations in the store
  101. layout should commit an open transaction. Methods are wrapped in a
  102. transaction by using the `@atomic` decorator.
  103. @param uid (string) uid of the resource. If None (must be explicitly
  104. set) it refers to the root node. It can also be the full URI or URN,
  105. in which case it will be converted.
  106. @param repr_opts (dict) Options used to retrieve the IMR. See
  107. `parse_rfc7240` for format details.
  108. @Param provd_rdf (string) RDF data provided by the client in
  109. operations such as `PUT` or `POST`, serialized as a string. This sets
  110. the `provided_imr` property.
  111. '''
  112. self.uid = g.tbox.uri_to_uuid(uid) \
  113. if isinstance(uid, URIRef) else uid
  114. self.urn = nsc['fcres'][uid]
  115. self.uri = g.tbox.uuid_to_uri(self.uid)
  116. self.rdfly = current_app.rdfly
  117. self.nonrdfly = current_app.nonrdfly
  118. self.provided_imr = provided_imr
  119. @property
  120. def rsrc(self):
  121. '''
  122. The RDFLib resource representing this LDPR. This is a live
  123. representation of the stored data if present.
  124. @return rdflib.resource.Resource
  125. '''
  126. if not hasattr(self, '_rsrc'):
  127. self._rsrc = self.rdfly.ds.resource(self.urn)
  128. return self._rsrc
  129. @property
  130. def imr(self):
  131. '''
  132. Extract an in-memory resource from the graph store.
  133. If the resource is not stored (yet), a `ResourceNotExistsError` is
  134. raised.
  135. @return rdflib.resource.Resource
  136. '''
  137. if not hasattr(self, '_imr'):
  138. if hasattr(self, '_imr_options'):
  139. #self._logger.debug('IMR options: {}'.format(self._imr_options))
  140. imr_options = self._imr_options
  141. else:
  142. imr_options = {}
  143. options = dict(imr_options, strict=True)
  144. self._imr = self.rdfly.extract_imr(self.uid, **options)
  145. return self._imr
  146. @imr.setter
  147. def imr(self, v):
  148. '''
  149. Replace in-memory buffered resource.
  150. @param v (set | rdflib.Graph) New set of triples to populate the IMR
  151. with.
  152. '''
  153. if isinstance(v, Resource):
  154. v = v.graph
  155. self._imr = Resource(Graph(), self.urn)
  156. gr = self._imr.graph
  157. gr += v
  158. @imr.deleter
  159. def imr(self):
  160. '''
  161. Delete in-memory buffered resource.
  162. '''
  163. delattr(self, '_imr')
  164. @property
  165. def metadata(self):
  166. '''
  167. Get resource metadata.
  168. '''
  169. if not hasattr(self, '_metadata'):
  170. self._metadata = self.rdfly.get_metadata(self.uid)
  171. return self._metadata
  172. @metadata.setter
  173. def metadata(self, rsrc):
  174. '''
  175. Set resource metadata.
  176. '''
  177. if not isinstance(rsrc, Resource):
  178. raise TypeError('Provided metadata is not a Resource object.')
  179. self._metadata = rsrc
  180. @property
  181. def stored_or_new_imr(self):
  182. '''
  183. Extract an in-memory resource for harmless manipulation and output.
  184. If the resource is not stored (yet), initialize a new IMR with basic
  185. triples.
  186. @return rdflib.resource.Resource
  187. '''
  188. if not hasattr(self, '_imr'):
  189. if hasattr(self, '_imr_options'):
  190. #self._logger.debug('IMR options: {}'.format(self._imr_options))
  191. imr_options = self._imr_options
  192. else:
  193. imr_options = {}
  194. options = dict(imr_options, strict=True)
  195. try:
  196. self._imr = self.rdfly.extract_imr(self.uid, **options)
  197. except ResourceNotExistsError:
  198. self._imr = Resource(Graph(), self.urn)
  199. for t in self.base_types:
  200. self.imr.add(RDF.type, t)
  201. return self._imr
  202. @property
  203. def out_graph(self):
  204. '''
  205. Retun a globalized graph of the resource's IMR.
  206. Internal URNs are replaced by global URIs using the endpoint webroot.
  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 = Graph()
  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. This gets the RDF metadata. The binary retrieval is handled directly
  300. by the route.
  301. '''
  302. gr = g.tbox.globalize_graph(self.out_graph)
  303. gr.namespace_manager = nsm
  304. return gr
  305. def get_version_info(self):
  306. '''
  307. Get the `fcr:versions` graph.
  308. '''
  309. gr = g.tbox.globalize_graph(self.version_info.graph)
  310. gr.namespace_manager = nsm
  311. return gr
  312. def get_version(self, ver_uid, **kwargs):
  313. '''
  314. Get a version by label.
  315. '''
  316. ver_gr = self.rdfly.extract_imr(self.uid, ver_uid, **kwargs).graph
  317. gr = g.tbox.globalize_graph(ver_gr)
  318. gr.namespace_manager = nsm
  319. return gr
  320. @atomic
  321. def post(self):
  322. '''
  323. https://www.w3.org/TR/ldp/#ldpr-HTTP_POST
  324. Perform a POST action after a valid resource URI has been found.
  325. '''
  326. return self._create_or_replace_rsrc(create_only=True)
  327. @atomic
  328. def put(self):
  329. '''
  330. https://www.w3.org/TR/ldp/#ldpr-HTTP_PUT
  331. '''
  332. return self._create_or_replace_rsrc()
  333. def patch(self, *args, **kwargs):
  334. raise NotImplementedError()
  335. @atomic
  336. def delete(self, inbound=True, delete_children=True, leave_tstone=True):
  337. '''
  338. https://www.w3.org/TR/ldp/#ldpr-HTTP_DELETE
  339. @param inbound (boolean) If specified, delete all inbound relationships
  340. as well. This is the default and is always the case if referential
  341. integrity is enforced by configuration.
  342. @param delete_children (boolean) Whether to delete all child resources.
  343. This is the default.
  344. '''
  345. refint = self.rdfly.config['referential_integrity']
  346. inbound = True if refint else inbound
  347. children = self.imr[nsc['ldp'].contains * '+'] \
  348. if delete_children else []
  349. if leave_tstone:
  350. ret = self._bury_rsrc(inbound)
  351. else:
  352. ret = self._purge_rsrc(inbound)
  353. for child_uri in children:
  354. child_rsrc = LdpFactory.from_stored(
  355. g.tbox.uri_to_uuid(child_uri.identifier),
  356. repr_opts={'incl_children' : False})
  357. if leave_tstone:
  358. child_rsrc._bury_rsrc(inbound, tstone_pointer=self.urn)
  359. else:
  360. child_rsrc._purge_rsrc(inbound)
  361. return ret
  362. @atomic
  363. def resurrect(self):
  364. '''
  365. Resurrect a resource from a tombstone.
  366. @EXPERIMENTAL
  367. '''
  368. tstone_trp = set(self.rdfly.extract_imr(self.uid, strict=False).graph)
  369. ver_rsp = self.version_info.graph.query('''
  370. SELECT ?uid {
  371. ?latest fcrepo:hasVersionLabel ?uid ;
  372. fcrepo:created ?ts .
  373. }
  374. ORDER BY DESC(?ts)
  375. LIMIT 1
  376. ''')
  377. #import pdb; pdb.set_trace()
  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. Return whether a triple is server-managed.
  440. This is true if one of its terms is in the managed terms list.
  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. try:
  553. type = self.types
  554. actor = self.metadata.value(nsc['fcrepo'].createdBy)
  555. except (ResourceNotExistsError, TombstoneError):
  556. type = set()
  557. actor = None
  558. for t in add_trp:
  559. if t[1] == RDF.type:
  560. type.add(t[2])
  561. elif actor is None and t[1] == nsc['fcrepo'].createdBy:
  562. actor = t[2]
  563. ret = self.rdfly.modify_rsrc(self.uid, remove_trp, add_trp)
  564. if notify and current_app.config.get('messaging'):
  565. request.changelog.append((set(remove_trp), set(add_trp), {
  566. 'ev_type' : ev_type,
  567. 'time' : g.timestamp,
  568. 'type' : type,
  569. 'actor' : actor,
  570. }))
  571. return ret
  572. # Not used. @TODO Deprecate or reimplement depending on requirements.
  573. #def _ensure_single_subject_rdf(self, gr, add_fragment=True):
  574. # '''
  575. # Ensure that a RDF payload for a POST or PUT has a single resource.
  576. # '''
  577. # for s in set(gr.subjects()):
  578. # # Fragment components
  579. # if '#' in s:
  580. # parts = s.split('#')
  581. # frag = s
  582. # s = URIRef(parts[0])
  583. # if add_fragment:
  584. # # @TODO This is added to the main graph. It should be added
  585. # # to the metadata graph.
  586. # gr.add((frag, nsc['fcsystem'].fragmentOf, s))
  587. # if not s == self.urn:
  588. # raise SingleSubjectError(s, self.uid)
  589. def _check_ref_int(self, config):
  590. gr = self.provided_imr.graph
  591. for o in gr.objects():
  592. if isinstance(o, URIRef) and str(o).startswith(g.webroot)\
  593. and not self.rdfly.ask_rsrc_exists(o):
  594. if config == 'strict':
  595. raise RefIntViolationError(o)
  596. else:
  597. self._logger.info(
  598. 'Removing link to non-existent repo resource: {}'
  599. .format(o))
  600. gr.remove((None, None, o))
  601. def _check_mgd_terms(self, gr):
  602. '''
  603. Check whether server-managed terms are in a RDF payload.
  604. '''
  605. # @FIXME Need to be more consistent
  606. if getattr(self, 'handling', 'none') == 'none':
  607. return gr
  608. offending_subjects = set(gr.subjects()) & srv_mgd_subjects
  609. if offending_subjects:
  610. if self.handling=='strict':
  611. raise ServerManagedTermError(offending_subjects, 's')
  612. else:
  613. for s in offending_subjects:
  614. self._logger.info('Removing offending subj: {}'.format(s))
  615. gr.remove((s, None, None))
  616. offending_predicates = set(gr.predicates()) & srv_mgd_predicates
  617. if offending_predicates:
  618. if self.handling=='strict':
  619. raise ServerManagedTermError(offending_predicates, 'p')
  620. else:
  621. for p in offending_predicates:
  622. self._logger.info('Removing offending pred: {}'.format(p))
  623. gr.remove((None, p, None))
  624. offending_types = set(gr.objects(predicate=RDF.type)) & srv_mgd_types
  625. if offending_types:
  626. if self.handling=='strict':
  627. raise ServerManagedTermError(offending_types, 't')
  628. else:
  629. for t in offending_types:
  630. self._logger.info('Removing offending type: {}'.format(t))
  631. gr.remove((None, RDF.type, t))
  632. #self._logger.debug('Sanitized graph: {}'.format(gr.serialize(
  633. # format='turtle').decode('utf-8')))
  634. return gr
  635. def _add_srv_mgd_triples(self, create=False):
  636. '''
  637. Add server-managed triples to a provided IMR.
  638. @param create (boolean) Whether the resource is being created.
  639. '''
  640. # Base LDP types.
  641. for t in self.base_types:
  642. self.provided_imr.add(RDF.type, t)
  643. # Message digest.
  644. cksum = g.tbox.rdf_cksum(self.provided_imr.graph)
  645. self.provided_imr.set(nsc['premis'].hasMessageDigest,
  646. URIRef('urn:sha1:{}'.format(cksum)))
  647. # Create and modify timestamp.
  648. if create:
  649. self.provided_imr.set(nsc['fcrepo'].created, g.timestamp_term)
  650. self.provided_imr.set(nsc['fcrepo'].createdBy, self.DEFAULT_USER)
  651. else:
  652. self.provided_imr.set(nsc['fcrepo'].created, self.metadata.value(
  653. nsc['fcrepo'].created))
  654. self.provided_imr.set(nsc['fcrepo'].createdBy, self.metadata.value(
  655. nsc['fcrepo'].createdBy))
  656. self.provided_imr.set(nsc['fcrepo'].lastModified, g.timestamp_term)
  657. self.provided_imr.set(nsc['fcrepo'].lastModifiedBy, self.DEFAULT_USER)
  658. def _set_containment_rel(self):
  659. '''Find the closest parent in the path indicated by the uid and
  660. establish a containment triple.
  661. E.g. if only urn:fcres:a (short: a) exists:
  662. - If a/b/c/d is being created, a becomes container of a/b/c/d. Also,
  663. pairtree nodes are created for a/b and a/b/c.
  664. - If e is being created, the root node becomes container of e.
  665. '''
  666. if '/' in self.uid:
  667. # Traverse up the hierarchy to find the parent.
  668. parent_uid = self._find_parent_or_create_pairtree()
  669. else:
  670. parent_uid = ROOT_UID
  671. add_gr = Graph()
  672. add_gr.add((nsc['fcres'][parent_uid], nsc['ldp'].contains, self.urn))
  673. parent_rsrc = LdpFactory.from_stored(
  674. parent_uid, repr_opts={
  675. 'incl_children' : False}, handling='none')
  676. parent_rsrc._modify_rsrc(self.RES_UPDATED, add_trp=add_gr)
  677. # Direct or indirect container relationship.
  678. self._add_ldp_dc_ic_rel(parent_rsrc)
  679. def _find_parent_or_create_pairtree(self):
  680. '''
  681. Check the path-wise parent of the new resource. If it exists, return
  682. its UID. Otherwise, create pairtree resources up the path until an
  683. actual resource or the root node is found.
  684. @return string Resource UID.
  685. '''
  686. path_components = self.uid.split('/')
  687. # If there is only one element, the parent is the root node.
  688. if len(path_components) < 2:
  689. return ROOT_UID
  690. # Build search list, e.g. for a/b/c/d/e would be a/b/c/d, a/b/c, a/b, a
  691. self._logger.info('Path components: {}'.format(path_components))
  692. fwd_search_order = accumulate(
  693. list(path_components)[:-1],
  694. func=lambda x,y : x + '/' + y
  695. )
  696. rev_search_order = reversed(list(fwd_search_order))
  697. cur_child_uid = self.uid
  698. parent_uid = ROOT_UID # Defaults to root
  699. segments = []
  700. for cparent_uid in rev_search_order:
  701. cparent_uid = cparent_uid
  702. if self.rdfly.ask_rsrc_exists(cparent_uid):
  703. parent_uid = cparent_uid
  704. break
  705. else:
  706. segments.append((cparent_uid, cur_child_uid))
  707. cur_child_uid = cparent_uid
  708. for uid, child_uid in segments:
  709. self._create_path_segment(uid, child_uid, parent_uid)
  710. return parent_uid
  711. def _dedup_deltas(self, remove_gr, add_gr):
  712. '''
  713. Remove duplicate triples from add and remove delta graphs, which would
  714. otherwise contain unnecessary statements that annul each other.
  715. '''
  716. return (
  717. remove_gr - add_gr,
  718. add_gr - remove_gr
  719. )
  720. def _create_path_segment(self, uid, child_uid, real_parent_uid):
  721. '''
  722. Create a path segment with a non-LDP containment statement.
  723. If a resource such as `fcres:a/b/c` is created, and neither fcres:a or
  724. fcres:a/b exists, we have to create two "hidden" containment statements
  725. between a and a/b and between a/b and a/b/c in order to maintain the
  726. `containment chain.
  727. '''
  728. rsrc_uri = nsc['fcres'][uid]
  729. add_trp = {
  730. (rsrc_uri, nsc['fcsystem'].contains, nsc['fcres'][child_uid]),
  731. (rsrc_uri, nsc['ldp'].contains, self.urn),
  732. (rsrc_uri, RDF.type, nsc['ldp'].Container),
  733. (rsrc_uri, RDF.type, nsc['ldp'].BasicContainer),
  734. (rsrc_uri, RDF.type, nsc['ldp'].RDFSource),
  735. (rsrc_uri, RDF.type, nsc['fcrepo'].Pairtree),
  736. (rsrc_uri, nsc['fcrepo'].hasParent, nsc['fcres'][real_parent_uid]),
  737. }
  738. self.rdfly.modify_rsrc(
  739. uid, add_trp=add_trp)
  740. # If the path segment is just below root
  741. if '/' not in uid:
  742. self.rdfly.modify_rsrc(ROOT_UID, add_trp={
  743. (ROOT_RSRC_URI, nsc['fcsystem'].contains, nsc['fcres'][uid])
  744. })
  745. def _add_ldp_dc_ic_rel(self, cont_rsrc):
  746. '''
  747. Add relationship triples from a parent direct or indirect container.
  748. @param cont_rsrc (rdflib.resource.Resouce) The container resource.
  749. '''
  750. cont_p = set(cont_rsrc.metadata.graph.predicates())
  751. add_trp = set()
  752. self._logger.info('Checking direct or indirect containment.')
  753. self._logger.debug('Parent predicates: {}'.format(cont_p))
  754. add_trp.add((self.urn, nsc['fcrepo'].hasParent, cont_rsrc.urn))
  755. if self.MBR_RSRC_URI in cont_p and self.MBR_REL_URI in cont_p:
  756. s = g.tbox.localize_term(
  757. cont_rsrc.metadata.value(self.MBR_RSRC_URI).identifier)
  758. p = cont_rsrc.metadata.value(self.MBR_REL_URI).identifier
  759. if cont_rsrc.metadata[RDF.type : nsc['ldp'].DirectContainer]:
  760. self._logger.info('Parent is a direct container.')
  761. self._logger.debug('Creating DC triples.')
  762. add_trp.add((s, p, self.urn))
  763. elif cont_rsrc.metadata[RDF.type : nsc['ldp'].IndirectContainer] \
  764. and self.INS_CNT_REL_URI in cont_p:
  765. self._logger.info('Parent is an indirect container.')
  766. cont_rel_uri = cont_rsrc.metadata.value(
  767. self.INS_CNT_REL_URI).identifier
  768. target_uri = self.provided_metadata.value(
  769. cont_rel_uri).identifier
  770. self._logger.debug('Target URI: {}'.format(target_uri))
  771. if target_uri:
  772. self._logger.debug('Creating IC triples.')
  773. add_trp.add((s, p, target_uri))
  774. self._modify_rsrc(self.RES_UPDATED, add_trp=add_trp)
  775. def _send_event_msg(self, remove_trp, add_trp, metadata):
  776. '''
  777. Break down delta triples, find subjects and send event message.
  778. '''
  779. remove_grp = groupby(remove_trp, lambda x : x[0])
  780. remove_dict = { k[0] : k[1] for k in remove_grp }
  781. add_grp = groupby(add_trp, lambda x : x[0])
  782. add_dict = { k[0] : k[1] for k in add_grp }
  783. subjects = set(remove_dict.keys()) | set(add_dict.keys())
  784. for rsrc_uri in subjects:
  785. self._logger.info('subject: {}'.format(rsrc_uri))
  786. #current_app.messenger.send