ldpr.py 30 KB

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