ldpr.py 34 KB

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