ldpr.py 27 KB

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