123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026 |
- import logging
- from abc import ABCMeta
- from collections import defaultdict
- from itertools import accumulate, groupby
- from pprint import pformat
- from uuid import uuid4
- import arrow
- from flask import current_app, g, request
- from rdflib import Graph
- from rdflib.resource import Resource
- from rdflib.namespace import RDF
- from rdflib.term import URIRef, Literal
- from lakesuperior.dictionaries.namespaces import ns_collection as nsc
- from lakesuperior.dictionaries.namespaces import ns_mgr as nsm
- from lakesuperior.dictionaries.srv_mgd_terms import srv_mgd_subjects, \
- srv_mgd_predicates, srv_mgd_types
- from lakesuperior.exceptions import *
- from lakesuperior.model.ldp_factory import LdpFactory
- from lakesuperior.store_layouts.ldp_rs.rsrc_centric_layout import (
- VERS_CONT_LABEL)
- ROOT_UID = ''
- ROOT_RSRC_URI = nsc['fcres'][ROOT_UID]
- def atomic(fn):
- '''
- Handle atomic operations in an RDF store.
- This wrapper ensures that a write operation is performed atomically. It
- also takes care of sending a message for each resource changed in the
- transaction.
- '''
- def wrapper(self, *args, **kwargs):
- request.changelog = []
- try:
- ret = fn(self, *args, **kwargs)
- except:
- self._logger.warn('Rolling back transaction.')
- self.rdfly.store.rollback()
- raise
- else:
- self._logger.info('Committing transaction.')
- #if hasattr(self.rdfly.store, '_edits'):
- # # @FIXME ugly.
- # self.rdfly._conn.optimize_edits()
- self.rdfly.store.commit()
- for ev in request.changelog:
- #self._logger.info('Message: {}'.format(pformat(ev)))
- self._send_event_msg(*ev)
- return ret
- return wrapper
- class Ldpr(metaclass=ABCMeta):
- '''LDPR (LDP Resource).
- Definition: https://www.w3.org/TR/ldp/#ldpr-resource
- This class and related subclasses contain the implementation pieces of
- the vanilla LDP specifications. This is extended by the
- `lakesuperior.fcrepo.Resource` class.
- Inheritance graph: https://www.w3.org/TR/ldp/#fig-ldpc-types
- Note: Even though LdpNr (which is a subclass of Ldpr) handles binary files,
- it still has an RDF representation in the triplestore. Hence, some of the
- RDF-related methods are defined in this class rather than in the LdpRs
- class.
- Convention notes:
- All the methods in this class handle internal UUIDs (URN). Public-facing
- URIs are converted from URNs and passed by these methods to the methods
- handling HTTP negotiation.
- The data passed to the store layout for processing should be in a graph.
- All conversion from request payload strings is done here.
- '''
- EMBED_CHILD_RES_URI = nsc['fcrepo'].EmbedResources
- FCREPO_PTREE_TYPE = nsc['fcrepo'].Pairtree
- INS_CNT_REL_URI = nsc['ldp'].insertedContentRelation
- MBR_RSRC_URI = nsc['ldp'].membershipResource
- MBR_REL_URI = nsc['ldp'].hasMemberRelation
- RETURN_CHILD_RES_URI = nsc['fcrepo'].Children
- RETURN_INBOUND_REF_URI = nsc['fcrepo'].InboundReferences
- RETURN_SRV_MGD_RES_URI = nsc['fcrepo'].ServerManaged
- # Workflow type. Inbound means that the resource is being written to the
- # store, outbounnd is being retrieved for output.
- WRKF_INBOUND = '_workflow:inbound_'
- WRKF_OUTBOUND = '_workflow:outbound_'
- # Default user to be used for the `createdBy` and `lastUpdatedBy` if a user
- # is not provided.
- DEFAULT_USER = Literal('BypassAdmin')
- RES_CREATED = '_create_'
- RES_DELETED = '_delete_'
- RES_UPDATED = '_update_'
- base_types = {
- nsc['fcrepo'].Resource,
- nsc['ldp'].Resource,
- nsc['ldp'].RDFSource,
- }
- protected_pred = (
- nsc['fcrepo'].created,
- nsc['fcrepo'].createdBy,
- nsc['ldp'].contains,
- )
- _logger = logging.getLogger(__name__)
- ## MAGIC METHODS ##
- def __init__(self, uid, repr_opts={}, provided_imr=None, **kwargs):
- '''Instantiate an in-memory LDP resource that can be loaded from and
- persisted to storage.
- Persistence is done in this class. None of the operations in the store
- layout should commit an open transaction. Methods are wrapped in a
- transaction by using the `@atomic` decorator.
- @param uid (string) uid of the resource. If None (must be explicitly
- set) it refers to the root node. It can also be the full URI or URN,
- in which case it will be converted.
- @param repr_opts (dict) Options used to retrieve the IMR. See
- `parse_rfc7240` for format details.
- @Param provd_rdf (string) RDF data provided by the client in
- operations such as `PUT` or `POST`, serialized as a string. This sets
- the `provided_imr` property.
- '''
- self.uid = g.tbox.uri_to_uuid(uid) \
- if isinstance(uid, URIRef) else uid
- self.urn = nsc['fcres'][uid]
- self.uri = g.tbox.uuid_to_uri(self.uid)
- self.rdfly = current_app.rdfly
- self.nonrdfly = current_app.nonrdfly
- self.provided_imr = provided_imr
- @property
- def rsrc(self):
- '''
- The RDFLib resource representing this LDPR. This is a live
- representation of the stored data if present.
- @return rdflib.resource.Resource
- '''
- if not hasattr(self, '_rsrc'):
- self._rsrc = self.rdfly.ds.resource(self.urn)
- return self._rsrc
- @property
- def imr(self):
- '''
- Extract an in-memory resource from the graph store.
- If the resource is not stored (yet), a `ResourceNotExistsError` is
- raised.
- @return rdflib.resource.Resource
- '''
- if not hasattr(self, '_imr'):
- if hasattr(self, '_imr_options'):
- #self._logger.debug('IMR options: {}'.format(self._imr_options))
- imr_options = self._imr_options
- else:
- imr_options = {}
- options = dict(imr_options, strict=True)
- self._imr = self.rdfly.extract_imr(self.uid, **options)
- return self._imr
- @imr.setter
- def imr(self, v):
- '''
- Replace in-memory buffered resource.
- @param v (set | rdflib.Graph) New set of triples to populate the IMR
- with.
- '''
- if isinstance(v, Resource):
- v = v.graph
- self._imr = Resource(Graph(), self.urn)
- gr = self._imr.graph
- gr += v
- @imr.deleter
- def imr(self):
- '''
- Delete in-memory buffered resource.
- '''
- delattr(self, '_imr')
- @property
- def metadata(self):
- '''
- Get resource metadata.
- '''
- if not hasattr(self, '_metadata'):
- self._metadata = self.rdfly.get_metadata(self.uid)
- return self._metadata
- @metadata.setter
- def metadata(self, rsrc):
- '''
- Set resource metadata.
- '''
- if not isinstance(rsrc, Resource):
- raise TypeError('Provided metadata is not a Resource object.')
- self._metadata = rsrc
- @property
- def stored_or_new_imr(self):
- '''
- Extract an in-memory resource for harmless manipulation and output.
- If the resource is not stored (yet), initialize a new IMR with basic
- triples.
- @return rdflib.resource.Resource
- '''
- if not hasattr(self, '_imr'):
- if hasattr(self, '_imr_options'):
- #self._logger.debug('IMR options: {}'.format(self._imr_options))
- imr_options = self._imr_options
- else:
- imr_options = {}
- options = dict(imr_options, strict=True)
- try:
- self._imr = self.rdfly.extract_imr(self.uid, **options)
- except ResourceNotExistsError:
- self._imr = Resource(Graph(), self.urn)
- for t in self.base_types:
- self.imr.add(RDF.type, t)
- return self._imr
- @property
- def out_graph(self):
- '''
- Retun a globalized graph of the resource's IMR.
- Internal URNs are replaced by global URIs using the endpoint webroot.
- '''
- out_gr = Graph()
- for t in self.imr.graph:
- if (
- # Exclude digest hash and version information.
- t[1] not in {
- nsc['premis'].hasMessageDigest,
- nsc['fcrepo'].hasVersion,
- }
- ) and (
- # Only include server managed triples if requested.
- self._imr_options.get('incl_srv_mgd', True)
- or (
- not t[1] in srv_mgd_predicates
- and not (t[1] == RDF.type or t[2] in srv_mgd_types)
- )
- ):
- out_gr.add(t)
- return out_gr
- @property
- def version_info(self):
- '''
- Return version metadata (`fcr:versions`).
- '''
- if not hasattr(self, '_version_info'):
- try:
- self._version_info = self.rdfly.get_version_info(self.uid)
- except ResourceNotExistsError as e:
- self._version_info = Graph()
- return self._version_info
- @property
- def versions(self):
- '''
- Return a generator of version URIs.
- '''
- return set(self.version_info[self.urn : nsc['fcrepo'].hasVersion :])
- @property
- def version_uids(self):
- '''
- Return a generator of version UIDs (relative to their parent resource).
- '''
- gen = self.version_info[
- self.urn
- : nsc['fcrepo'].hasVersion / nsc['fcrepo'].hasVersionLabel
- :]
- return { str(uid) for uid in gen }
- @property
- def is_stored(self):
- if not hasattr(self, '_is_stored'):
- if hasattr(self, '_imr'):
- self._is_stored = len(self.imr.graph) > 0
- else:
- self._is_stored = self.rdfly.ask_rsrc_exists(self.uid)
- return self._is_stored
- @property
- def types(self):
- '''All RDF types.
- @return set(rdflib.term.URIRef)
- '''
- if not hasattr(self, '_types'):
- if len(self.metadata.graph):
- metadata = self.metadata
- elif getattr(self, 'provided_imr', None) and \
- len(self.provided_imr.graph):
- metadata = self.provided_imr
- else:
- return set()
- self._types = set(metadata.graph[self.urn : RDF.type])
- return self._types
- @property
- def ldp_types(self):
- '''The LDP types.
- @return set(rdflib.term.URIRef)
- '''
- if not hasattr(self, '_ldp_types'):
- self._ldp_types = { t for t in self.types if nsc['ldp'] in t }
- return self._ldp_types
- ## LDP METHODS ##
- def head(self):
- '''
- Return values for the headers.
- '''
- out_headers = defaultdict(list)
- digest = self.metadata.value(nsc['premis'].hasMessageDigest)
- if digest:
- etag = digest.identifier.split(':')[-1]
- out_headers['ETag'] = 'W/"{}"'.format(etag),
- last_updated_term = self.metadata.value(nsc['fcrepo'].lastModified)
- if last_updated_term:
- out_headers['Last-Modified'] = arrow.get(last_updated_term)\
- .format('ddd, D MMM YYYY HH:mm:ss Z')
- for t in self.ldp_types:
- out_headers['Link'].append(
- '{};rel="type"'.format(t.n3()))
- return out_headers
- def get(self):
- '''
- This gets the RDF metadata. The binary retrieval is handled directly
- by the route.
- '''
- gr = g.tbox.globalize_graph(self.out_graph)
- gr.namespace_manager = nsm
- return gr
- def get_version_info(self):
- '''
- Get the `fcr:versions` graph.
- '''
- gr = g.tbox.globalize_graph(self.version_info)
- gr.namespace_manager = nsm
- return gr
- def get_version(self, ver_uid):
- '''
- Get a version by label.
- '''
- ver_gr = self.rdfly.get_metadata(self.uid, ver_uid).graph
- gr = g.tbox.globalize_graph(ver_gr)
- gr.namespace_manager = nsm
- return gr
- @atomic
- def post(self):
- '''
- https://www.w3.org/TR/ldp/#ldpr-HTTP_POST
- Perform a POST action after a valid resource URI has been found.
- '''
- return self._create_or_replace_rsrc(create_only=True)
- @atomic
- def put(self):
- '''
- https://www.w3.org/TR/ldp/#ldpr-HTTP_PUT
- '''
- return self._create_or_replace_rsrc()
- def patch(self, *args, **kwargs):
- raise NotImplementedError()
- @atomic
- def delete(self, inbound=True, delete_children=True, leave_tstone=True):
- '''
- https://www.w3.org/TR/ldp/#ldpr-HTTP_DELETE
- @param inbound (boolean) If specified, delete all inbound relationships
- as well. This is the default and is always the case if referential
- integrity is enforced by configuration.
- @param delete_children (boolean) Whether to delete all child resources.
- This is the default.
- '''
- refint = self.rdfly.config['referential_integrity']
- inbound = True if refint else inbound
- children = self.imr[nsc['ldp'].contains * '+'] \
- if delete_children else []
- if leave_tstone:
- ret = self._bury_rsrc(inbound)
- else:
- ret = self._purge_rsrc(inbound)
- for child_uri in children:
- child_rsrc = LdpFactory.from_stored(
- g.tbox.uri_to_uuid(child_uri.identifier),
- repr_opts={'incl_children' : False})
- if leave_tstone:
- child_rsrc._bury_rsrc(inbound, tstone_pointer=self.urn)
- else:
- child_rsrc._purge_rsrc(inbound)
- return ret
- @atomic
- def resurrect(self):
- '''
- Resurrect a resource from a tombstone.
- @EXPERIMENTAL
- '''
- tstone_trp = set(self.rdfly.extract_imr(self.uid, strict=False).graph)
- ver_rsp = self.version_info.query('''
- SELECT ?uid {
- ?latest fcrepo:hasVersionLabel ?uid ;
- fcrepo:created ?ts .
- }
- ORDER BY DESC(?ts)
- LIMIT 1
- ''')
- ver_uid = str(ver_rsp.bindings[0]['uid'])
- ver_trp = set(self.rdfly.get_metadata(self.urn, ver_uid))
- laz_gr = Graph()
- for t in ver_trp:
- if t[1] != RDF.type or t[2] not in {
- nsc['fcrepo'].Version,
- }:
- laz_gr.add((self.urn, t[1], t[2]))
- laz_gr.add((self.urn, RDF.type, nsc['fcrepo'].Resource))
- if nsc['ldp'].NonRdfSource in laz_gr[: RDF.type :]:
- laz_gr.add((self.urn, RDF.type, nsc['fcrepo'].Binary))
- elif nsc['ldp'].Container in laz_gr[: RDF.type :]:
- laz_gr.add((self.urn, RDF.type, nsc['fcrepo'].Container))
- self._modify_rsrc(self.RES_CREATED, tstone_trp, set(laz_gr))
- self._set_containment_rel()
- return self.uri
- @atomic
- def purge(self, inbound=True):
- '''
- Delete a tombstone and all historic snapstots.
- N.B. This does not trigger an event.
- '''
- refint = current_app.config['store']['ldp_rs']['referential_integrity']
- inbound = True if refint else inbound
- return self._purge_rsrc(inbound)
- @atomic
- def create_version(self, ver_uid):
- '''
- Create a new version of the resource.
- NOTE: This creates an event only for the resource being updated (due
- to the added `hasVersion` triple and possibly to the `hasVersions` one)
- but not for the version being created.
- @param ver_uid Version ver_uid. If already existing, an exception is
- raised.
- '''
- if not ver_uid or ver_uid in self.version_uids:
- ver_uid = str(uuid4())
- return g.tbox.globalize_term(self.create_rsrc_snapshot(ver_uid))
- @atomic
- def revert_to_version(self, ver_uid, backup=True):
- '''
- Revert to a previous version.
- NOTE: this will create a new version.
- @param ver_uid (string) Version UID.
- @param backup (boolean) Whether to create a backup copy. Default is
- true.
- '''
- # Create a backup snapshot.
- if backup:
- self.create_version(uuid4())
- ver_gr = self.rdfly.get_metadata(self.urn, ver_uid)
- revert_gr = Graph()
- for t in ver_gr:
- if t[1] not in srv_mgd_predicates and not(
- t[1] == RDF.type and t[2] in srv_mgd_types
- ):
- revert_gr.add((self.urn, t[1], t[2]))
- self.provided_imr = revert_gr.resource(self.urn)
- return self._create_or_replace_rsrc(create_only=False)
- ## PROTECTED METHODS ##
- def _create_or_replace_rsrc(self, create_only=False):
- '''
- Create or update a resource. PUT and POST methods, which are almost
- identical, are wrappers for this method.
- @param create_only (boolean) Whether this is a create-only operation.
- '''
- create = create_only or not self.is_stored
- self._add_srv_mgd_triples(create)
- #self._ensure_single_subject_rdf(self.provided_imr.graph)
- ref_int = self.rdfly.config['referential_integrity']
- if ref_int:
- self._check_ref_int(ref_int)
- self.rdfly.create_or_replace_rsrc(self.uid, self.provided_imr.graph)
- self._set_containment_rel()
- return self.RES_CREATED if create else self.RES_UPDATED
- #def _create_rsrc(self):
- # '''
- # Create a new resource by comparing an empty graph with the provided
- # IMR graph.
- # '''
- # self._modify_rsrc(self.RES_CREATED, add_trp=self.provided_imr.graph)
- # # Set the IMR contents to the "add" triples.
- # #self.imr = self.provided_imr.graph
- # return self.RES_CREATED
- #def _replace_rsrc(self):
- # '''
- # Replace a resource.
- # The existing resource graph is removed except for the protected terms.
- # '''
- # # The extracted IMR is used as a "minus" delta, so protected predicates
- # # must be removed.
- # for p in self.protected_pred:
- # self.imr.remove(p)
- # delta = self._dedup_deltas(self.imr.graph, self.provided_imr.graph)
- # self._modify_rsrc(self.RES_UPDATED, *delta)
- # # Set the IMR contents to the "add" triples.
- # #self.imr = delta[1]
- # return self.RES_UPDATED
- def _bury_rsrc(self, inbound, tstone_pointer=None):
- '''
- Delete a single resource and create a tombstone.
- @param inbound (boolean) Whether to delete the inbound relationships.
- @param tstone_pointer (URIRef) If set to a URN, this creates a pointer
- to the tombstone of the resource that used to contain the deleted
- resource. Otherwise the deleted resource becomes a tombstone.
- '''
- self._logger.info('Burying resource {}'.format(self.uid))
- # Create a backup snapshot for resurrection purposes.
- self.create_rsrc_snapshot(uuid4())
- remove_trp = set(self.imr.graph)
- if tstone_pointer:
- add_trp = {(self.urn, nsc['fcsystem'].tombstone,
- tstone_pointer)}
- else:
- add_trp = {
- (self.urn, RDF.type, nsc['fcsystem'].Tombstone),
- (self.urn, nsc['fcrepo'].created, g.timestamp_term),
- }
- self._modify_rsrc(self.RES_DELETED, remove_trp, add_trp)
- if inbound:
- for ib_rsrc_uri in self.imr.graph.subjects(None, self.urn):
- remove_trp = {(ib_rsrc_uri, None, self.urn)}
- ib_rsrc = Ldpr(ib_rsrc_uri)
- # To preserve inbound links in history, create a snapshot
- ib_rsrc.create_rsrc_snapshot(uuid4())
- ib_rsrc._modify_rsrc(self.RES_UPDATED, remove_trp)
- return self.RES_DELETED
- def _purge_rsrc(self, inbound):
- '''
- Remove all traces of a resource and versions.
- '''
- self._logger.info('Purging resource {}'.format(self.uid))
- self.rdfly.purge_rsrc(self.uid, inbound)
- # @TODO This could be a different event type.
- return self.RES_DELETED
- def create_rsrc_snapshot(self, ver_uid):
- '''
- Perform version creation and return the internal URN.
- '''
- # Create version resource from copying the current state.
- ver_add_gr = set()
- vers_uid = '{}/{}'.format(self.uid, VERS_CONT_LABEL)
- ver_uid = '{}/{}'.format(vers_uid, ver_uid)
- ver_uri = nsc['fcres'][ver_uid]
- ver_add_gr.add((ver_uri, RDF.type, nsc['fcrepo'].Version))
- for t in self.metadata.graph:
- if (
- t[1] == RDF.type and t[2] in {
- nsc['fcrepo'].Binary,
- nsc['fcrepo'].Container,
- nsc['fcrepo'].Resource,
- }
- ) or (
- t[1] in {
- nsc['fcrepo'].hasParent,
- nsc['fcrepo'].hasVersions,
- nsc['premis'].hasMessageDigest,
- }
- ):
- pass
- else:
- ver_add_gr.add((
- g.tbox.replace_term_domain(t[0], self.urn, ver_uri),
- t[1], t[2]))
- self.rdfly.modify_rsrc(ver_uid, add_trp=ver_add_gr)
- # Update resource admin data.
- rsrc_add_gr = {
- (self.urn, nsc['fcrepo'].hasVersion, ver_uri),
- (self.urn, nsc['fcrepo'].hasVersions, nsc['fcres'][vers_uid]),
- }
- self._modify_rsrc(self.RES_UPDATED, add_trp=rsrc_add_gr, notify=False)
- return nsc['fcres'][ver_uid]
- def _modify_rsrc(self, ev_type, remove_trp=set(), add_trp=set(),
- notify=True):
- '''
- Low-level method to modify a graph for a single resource.
- This is a crucial point for messaging. Any write operation on the RDF
- store that needs to be notified should be performed by invoking this
- method.
- @param ev_type (string) The type of event (create, update, delete).
- @param remove_trp (set) Triples to be removed.
- @param add_trp (set) Triples to be added.
- @param notify (boolean) Whether to send a message about the change.
- '''
- #for trp in [remove_trp, add_trp]:
- # if not isinstance(trp, set):
- # trp = set(trp)
- type = self.types
- actor = self.metadata.value(nsc['fcrepo'].createdBy)
- ret = self.rdfly.modify_rsrc(self.uid, remove_trp, add_trp)
- if notify and current_app.config.get('messaging'):
- request.changelog.append((set(remove_trp), set(add_trp), {
- 'ev_type' : ev_type,
- 'time' : g.timestamp,
- 'type' : type,
- 'actor' : actor,
- }))
- return ret
- # Not used. @TODO Deprecate or reimplement depending on requirements.
- #def _ensure_single_subject_rdf(self, gr, add_fragment=True):
- # '''
- # Ensure that a RDF payload for a POST or PUT has a single resource.
- # '''
- # for s in set(gr.subjects()):
- # # Fragment components
- # if '#' in s:
- # parts = s.split('#')
- # frag = s
- # s = URIRef(parts[0])
- # if add_fragment:
- # # @TODO This is added to the main graph. It should be added
- # # to the metadata graph.
- # gr.add((frag, nsc['fcsystem'].fragmentOf, s))
- # if not s == self.urn:
- # raise SingleSubjectError(s, self.uid)
- def _check_ref_int(self, config):
- gr = self.provided_imr.graph
- for o in gr.objects():
- if isinstance(o, URIRef) and str(o).startswith(g.webroot)\
- and not self.rdfly.ask_rsrc_exists(o):
- if config == 'strict':
- raise RefIntViolationError(o)
- else:
- self._logger.info(
- 'Removing link to non-existent repo resource: {}'
- .format(o))
- gr.remove((None, None, o))
- def _check_mgd_terms(self, gr):
- '''
- Check whether server-managed terms are in a RDF payload.
- '''
- # @FIXME Need to be more consistent
- if getattr(self, 'handling', 'none') == 'none':
- return gr
- offending_subjects = set(gr.subjects()) & srv_mgd_subjects
- if offending_subjects:
- if self.handling=='strict':
- raise ServerManagedTermError(offending_subjects, 's')
- else:
- for s in offending_subjects:
- self._logger.info('Removing offending subj: {}'.format(s))
- gr.remove((s, None, None))
- offending_predicates = set(gr.predicates()) & srv_mgd_predicates
- if offending_predicates:
- if self.handling=='strict':
- raise ServerManagedTermError(offending_predicates, 'p')
- else:
- for p in offending_predicates:
- self._logger.info('Removing offending pred: {}'.format(p))
- gr.remove((None, p, None))
- offending_types = set(gr.objects(predicate=RDF.type)) & srv_mgd_types
- if offending_types:
- if self.handling=='strict':
- raise ServerManagedTermError(offending_types, 't')
- else:
- for t in offending_types:
- self._logger.info('Removing offending type: {}'.format(t))
- gr.remove((None, RDF.type, t))
- #self._logger.debug('Sanitized graph: {}'.format(gr.serialize(
- # format='turtle').decode('utf-8')))
- return gr
- def _add_srv_mgd_triples(self, create=False):
- '''
- Add server-managed triples to a provided IMR.
- @param create (boolean) Whether the resource is being created.
- '''
- # Base LDP types.
- for t in self.base_types:
- self.provided_imr.add(RDF.type, t)
- # Message digest.
- cksum = g.tbox.rdf_cksum(self.provided_imr.graph)
- self.provided_imr.set(nsc['premis'].hasMessageDigest,
- URIRef('urn:sha1:{}'.format(cksum)))
- # Create and modify timestamp.
- if create:
- self.provided_imr.set(nsc['fcrepo'].created, g.timestamp_term)
- self.provided_imr.set(nsc['fcrepo'].createdBy, self.DEFAULT_USER)
- else:
- self.provided_imr.set(nsc['fcrepo'].created, self.metadata.value(
- nsc['fcrepo'].created))
- self.provided_imr.set(nsc['fcrepo'].createdBy, self.metadata.value(
- nsc['fcrepo'].createdBy))
- self.provided_imr.set(nsc['fcrepo'].lastModified, g.timestamp_term)
- self.provided_imr.set(nsc['fcrepo'].lastModifiedBy, self.DEFAULT_USER)
- def _set_containment_rel(self):
- '''Find the closest parent in the path indicated by the uid and
- establish a containment triple.
- E.g. if only urn:fcres:a (short: a) exists:
- - If a/b/c/d is being created, a becomes container of a/b/c/d. Also,
- pairtree nodes are created for a/b and a/b/c.
- - If e is being created, the root node becomes container of e.
- '''
- if '/' in self.uid:
- # Traverse up the hierarchy to find the parent.
- parent_uid = self._find_parent_or_create_pairtree()
- else:
- parent_uid = ROOT_UID
- add_gr = Graph()
- add_gr.add((nsc['fcres'][parent_uid], nsc['ldp'].contains, self.urn))
- parent_rsrc = LdpFactory.from_stored(
- parent_uid, repr_opts={
- 'incl_children' : False}, handling='none')
- parent_rsrc._modify_rsrc(self.RES_UPDATED, add_trp=add_gr)
- # Direct or indirect container relationship.
- self._add_ldp_dc_ic_rel(parent_rsrc)
- def _find_parent_or_create_pairtree(self):
- '''
- Check the path-wise parent of the new resource. If it exists, return
- its UID. Otherwise, create pairtree resources up the path until an
- actual resource or the root node is found.
- @return string Resource UID.
- '''
- path_components = self.uid.split('/')
- # If there is only one element, the parent is the root node.
- if len(path_components) < 2:
- return ROOT_UID
- # Build search list, e.g. for a/b/c/d/e would be a/b/c/d, a/b/c, a/b, a
- self._logger.info('Path components: {}'.format(path_components))
- fwd_search_order = accumulate(
- list(path_components)[:-1],
- func=lambda x,y : x + '/' + y
- )
- rev_search_order = reversed(list(fwd_search_order))
- cur_child_uid = self.uid
- parent_uid = ROOT_UID # Defaults to root
- segments = []
- for cparent_uid in rev_search_order:
- cparent_uid = cparent_uid
- if self.rdfly.ask_rsrc_exists(cparent_uid):
- parent_uid = cparent_uid
- break
- else:
- segments.append((cparent_uid, cur_child_uid))
- cur_child_uid = cparent_uid
- for uid, child_uid in segments:
- self._create_path_segment(uid, child_uid, parent_uid)
- return parent_uid
- def _dedup_deltas(self, remove_gr, add_gr):
- '''
- Remove duplicate triples from add and remove delta graphs, which would
- otherwise contain unnecessary statements that annul each other.
- '''
- return (
- remove_gr - add_gr,
- add_gr - remove_gr
- )
- def _create_path_segment(self, uid, child_uid, real_parent_uid):
- '''
- Create a path segment with a non-LDP containment statement.
- If a resource such as `fcres:a/b/c` is created, and neither fcres:a or
- fcres:a/b exists, we have to create two "hidden" containment statements
- between a and a/b and between a/b and a/b/c in order to maintain the
- `containment chain.
- '''
- rsrc_uri = nsc['fcres'][uid]
- add_trp = {
- (rsrc_uri, nsc['fcsystem'].contains, nsc['fcres'][child_uid]),
- (rsrc_uri, nsc['ldp'].contains, self.urn),
- (rsrc_uri, RDF.type, nsc['ldp'].Container),
- (rsrc_uri, RDF.type, nsc['ldp'].BasicContainer),
- (rsrc_uri, RDF.type, nsc['ldp'].RDFSource),
- (rsrc_uri, RDF.type, nsc['fcrepo'].Pairtree),
- (rsrc_uri, nsc['fcrepo'].hasParent, nsc['fcres'][real_parent_uid]),
- }
- self.rdfly.modify_rsrc(
- uid, add_trp=add_trp)
- # If the path segment is just below root
- if '/' not in uid:
- self.rdfly.modify_rsrc(ROOT_UID, add_trp={
- (ROOT_RSRC_URI, nsc['fcsystem'].contains, nsc['fcres'][uid])
- })
- def _add_ldp_dc_ic_rel(self, cont_rsrc):
- '''
- Add relationship triples from a parent direct or indirect container.
- @param cont_rsrc (rdflib.resource.Resouce) The container resource.
- '''
- cont_p = set(cont_rsrc.metadata.graph.predicates())
- add_trp = set()
- self._logger.info('Checking direct or indirect containment.')
- self._logger.debug('Parent predicates: {}'.format(cont_p))
- add_trp.add((self.urn, nsc['fcrepo'].hasParent, cont_rsrc.urn))
- if self.MBR_RSRC_URI in cont_p and self.MBR_REL_URI in cont_p:
- s = g.tbox.localize_term(
- cont_rsrc.metadata.value(self.MBR_RSRC_URI).identifier)
- p = cont_rsrc.metadata.value(self.MBR_REL_URI).identifier
- if cont_rsrc.metadata[RDF.type : nsc['ldp'].DirectContainer]:
- self._logger.info('Parent is a direct container.')
- self._logger.debug('Creating DC triples.')
- add_trp.add((s, p, self.urn))
- elif cont_rsrc.metadata[RDF.type : nsc['ldp'].IndirectContainer] \
- and self.INS_CNT_REL_URI in cont_p:
- self._logger.info('Parent is an indirect container.')
- cont_rel_uri = cont_rsrc.metadata.value(
- self.INS_CNT_REL_URI).identifier
- target_uri = self.provided_metadata.value(
- cont_rel_uri).identifier
- self._logger.debug('Target URI: {}'.format(target_uri))
- if target_uri:
- self._logger.debug('Creating IC triples.')
- add_trp.add((s, p, target_uri))
- self._modify_rsrc(self.RES_UPDATED, add_trp=add_trp)
- def _send_event_msg(self, remove_trp, add_trp, metadata):
- '''
- Break down delta triples, find subjects and send event message.
- '''
- remove_grp = groupby(remove_trp, lambda x : x[0])
- remove_dict = { k[0] : k[1] for k in remove_grp }
- add_grp = groupby(add_trp, lambda x : x[0])
- add_dict = { k[0] : k[1] for k in add_grp }
- subjects = set(remove_dict.keys()) | set(add_dict.keys())
- for rsrc_uri in subjects:
- self._logger.info('subject: {}'.format(rsrc_uri))
- #current_app.messenger.send
|