|
@@ -1,6 +1,9 @@
|
|
from copy import deepcopy
|
|
from copy import deepcopy
|
|
|
|
|
|
|
|
+import arrow
|
|
|
|
+
|
|
from rdflib import Graph
|
|
from rdflib import Graph
|
|
|
|
+from rdflib.resource import Resource
|
|
from rdflib.namespace import RDF, XSD
|
|
from rdflib.namespace import RDF, XSD
|
|
from rdflib.plugins.sparql.parser import parseUpdate
|
|
from rdflib.plugins.sparql.parser import parseUpdate
|
|
from rdflib.term import URIRef, Literal, Variable
|
|
from rdflib.term import URIRef, Literal, Variable
|
|
@@ -11,6 +14,7 @@ from lakesuperior.dictionaries.srv_mgd_terms import srv_mgd_subjects, \
|
|
from lakesuperior.model.ldpr import Ldpr, transactional, must_exist
|
|
from lakesuperior.model.ldpr import Ldpr, transactional, must_exist
|
|
from lakesuperior.exceptions import ResourceNotExistsError, \
|
|
from lakesuperior.exceptions import ResourceNotExistsError, \
|
|
ServerManagedTermError, SingleSubjectError
|
|
ServerManagedTermError, SingleSubjectError
|
|
|
|
+from lakesuperior.util.digest import Digest
|
|
from lakesuperior.util.translator import Translator
|
|
from lakesuperior.util.translator import Translator
|
|
|
|
|
|
class LdpRs(Ldpr):
|
|
class LdpRs(Ldpr):
|
|
@@ -19,6 +23,7 @@ class LdpRs(Ldpr):
|
|
Definition: https://www.w3.org/TR/ldp/#ldprs
|
|
Definition: https://www.w3.org/TR/ldp/#ldprs
|
|
'''
|
|
'''
|
|
|
|
|
|
|
|
+ DEFAULT_USER = Literal('BypassAdmin')
|
|
RETURN_CHILD_RES_URI = nsc['fcrepo'].EmbedResources
|
|
RETURN_CHILD_RES_URI = nsc['fcrepo'].EmbedResources
|
|
RETURN_INBOUND_REF_URI = nsc['fcrepo'].InboundReferences
|
|
RETURN_INBOUND_REF_URI = nsc['fcrepo'].InboundReferences
|
|
RETURN_SRV_MGD_RES_URI = nsc['fcrepo'].ServerManaged
|
|
RETURN_SRV_MGD_RES_URI = nsc['fcrepo'].ServerManaged
|
|
@@ -44,18 +49,6 @@ class LdpRs(Ldpr):
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
- def head(self):
|
|
|
|
- '''
|
|
|
|
- Return values for the headers.
|
|
|
|
- '''
|
|
|
|
- headers = self.rdfly.headers
|
|
|
|
-
|
|
|
|
- for t in self.ldp_types:
|
|
|
|
- headers['Link'].append('{};rel="type"'.format(t.identifier.n3()))
|
|
|
|
-
|
|
|
|
- return headers
|
|
|
|
-
|
|
|
|
-
|
|
|
|
def get(self, pref_return):
|
|
def get(self, pref_return):
|
|
'''
|
|
'''
|
|
https://www.w3.org/TR/ldp/#ldpr-HTTP_GET
|
|
https://www.w3.org/TR/ldp/#ldpr-HTTP_GET
|
|
@@ -83,12 +76,12 @@ class LdpRs(Ldpr):
|
|
if str(self.RETURN_SRV_MGD_RES_URI) in omit:
|
|
if str(self.RETURN_SRV_MGD_RES_URI) in omit:
|
|
kwargs['incl_srv_mgd'] = False
|
|
kwargs['incl_srv_mgd'] = False
|
|
|
|
|
|
- im_rsrc = self.rdfly.out_rsrc(**kwargs)
|
|
|
|
|
|
+ imr = self.rdfly.out_rsrc
|
|
|
|
|
|
- if not len(im_rsrc.graph):
|
|
|
|
- raise ResourceNotExistsError(im_rsrc.uuid)
|
|
|
|
|
|
+ if not imr or not len(imr.graph):
|
|
|
|
+ raise ResourceNotExistsError(self.uri)
|
|
|
|
|
|
- return Translator.globalize_rsrc(im_rsrc)
|
|
|
|
|
|
+ return Translator.globalize_rsrc(imr)
|
|
|
|
|
|
|
|
|
|
@transactional
|
|
@transactional
|
|
@@ -100,13 +93,11 @@ class LdpRs(Ldpr):
|
|
'''
|
|
'''
|
|
g = Graph().parse(data=data, format=format, publicID=self.urn)
|
|
g = Graph().parse(data=data, format=format, publicID=self.urn)
|
|
|
|
|
|
- g = self._check_mgd_terms(g, handling)
|
|
|
|
- self._ensure_single_subject_rdf(g)
|
|
|
|
-
|
|
|
|
- for t in self.base_types:
|
|
|
|
- g.add((self.urn, RDF.type, t))
|
|
|
|
|
|
+ imr = Resource(self._check_mgd_terms(g, handling), self.urn)
|
|
|
|
+ imr = self._add_srv_mgd_triples(imr, create=True)
|
|
|
|
+ self._ensure_single_subject_rdf(imr.graph)
|
|
|
|
|
|
- self.rdfly.create_rsrc(g)
|
|
|
|
|
|
+ self.rdfly.create_rsrc(imr)
|
|
|
|
|
|
self._set_containment_rel()
|
|
self._set_containment_rel()
|
|
|
|
|
|
@@ -118,13 +109,11 @@ class LdpRs(Ldpr):
|
|
'''
|
|
'''
|
|
g = Graph().parse(data=data, format=format, publicID=self.urn)
|
|
g = Graph().parse(data=data, format=format, publicID=self.urn)
|
|
|
|
|
|
- g = self._check_mgd_terms(g, handling)
|
|
|
|
- self._ensure_single_subject_rdf(g)
|
|
|
|
|
|
+ imr = Resource(self._check_mgd_terms(g, handling), self.urn)
|
|
|
|
+ imr = self._add_srv_mgd_triples(imr, create=True)
|
|
|
|
+ self._ensure_single_subject_rdf(imr.graph)
|
|
|
|
|
|
- for t in self.base_types:
|
|
|
|
- g.add((self.urn, RDF.type, t))
|
|
|
|
-
|
|
|
|
- res = self.rdfly.create_or_replace_rsrc(g)
|
|
|
|
|
|
+ res = self.rdfly.create_or_replace_rsrc(imr)
|
|
|
|
|
|
self._set_containment_rel()
|
|
self._set_containment_rel()
|
|
|
|
|
|
@@ -137,9 +126,9 @@ class LdpRs(Ldpr):
|
|
'''
|
|
'''
|
|
https://www.w3.org/TR/ldp/#ldpr-HTTP_PATCH
|
|
https://www.w3.org/TR/ldp/#ldpr-HTTP_PATCH
|
|
'''
|
|
'''
|
|
- remove, add = self._sparql_delta(data)
|
|
|
|
|
|
+ trp_remove, trp_add = self._sparql_delta(data)
|
|
|
|
|
|
- self.rdfly.modify_rsrc(remove, add)
|
|
|
|
|
|
+ return self.rdfly.modify_rsrc(trp_remove, trp_add)
|
|
|
|
|
|
|
|
|
|
## PROTECTED METHODS ##
|
|
## PROTECTED METHODS ##
|
|
@@ -175,6 +164,34 @@ class LdpRs(Ldpr):
|
|
return g
|
|
return g
|
|
|
|
|
|
|
|
|
|
|
|
+ def _add_srv_mgd_triples(self, imr, create=False):
|
|
|
|
+ '''
|
|
|
|
+ Add server-managed triples to a graph.
|
|
|
|
+
|
|
|
|
+ @param create (boolean) Whether the resource is being created.
|
|
|
|
+ '''
|
|
|
|
+ # Message digest.
|
|
|
|
+ cksum = Digest.rdf_cksum(imr.graph)
|
|
|
|
+ imr.set(nsc['premis'].hasMessageDigest,
|
|
|
|
+ URIRef('urn:sha1:{}'.format(cksum)))
|
|
|
|
+
|
|
|
|
+ # Create and modify timestamp.
|
|
|
|
+ # @TODO Use gunicorn to get request timestamp.
|
|
|
|
+ ts = Literal(arrow.utcnow(), datatype=XSD.dateTime)
|
|
|
|
+ if create:
|
|
|
|
+ imr.set(nsc['fcrepo'].created, ts)
|
|
|
|
+ imr.set(nsc['fcrepo'].createdBy, self.DEFAULT_USER)
|
|
|
|
+
|
|
|
|
+ imr.set(nsc['fcrepo'].lastModified, ts)
|
|
|
|
+ imr.set(nsc['fcrepo'].lastModifiedBy, self.DEFAULT_USER)
|
|
|
|
+
|
|
|
|
+ # Base LDP types.
|
|
|
|
+ for t in self.base_types:
|
|
|
|
+ imr.add(RDF.type, t)
|
|
|
|
+
|
|
|
|
+ return imr
|
|
|
|
+
|
|
|
|
+
|
|
def _sparql_delta(self, q, handling=None):
|
|
def _sparql_delta(self, q, handling=None):
|
|
'''
|
|
'''
|
|
Calculate the delta obtained by a SPARQL Update operation.
|
|
Calculate the delta obtained by a SPARQL Update operation.
|
|
@@ -183,7 +200,7 @@ class LdpRs(Ldpr):
|
|
|
|
|
|
1. It ensures that no resources outside of the subject of the request
|
|
1. It ensures that no resources outside of the subject of the request
|
|
are modified (e.g. by variable subjects)
|
|
are modified (e.g. by variable subjects)
|
|
- 2. It verifies that none of the terms being modified is server-managed.
|
|
|
|
|
|
+ 2. It verifies that none of the terms being modified is server managed.
|
|
|
|
|
|
This method extracts an in-memory copy of the resource and performs the
|
|
This method extracts an in-memory copy of the resource and performs the
|
|
query on that once it has checked if any of the server managed terms is
|
|
query on that once it has checked if any of the server managed terms is
|