ldpr.py 31 KB

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