ldpr.py 34 KB

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