ldpr.py 29 KB

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