ldpr.py 29 KB

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