ldpr.py 33 KB

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