|
@@ -78,8 +78,7 @@ class LdpFactory:
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
- def from_provided(
|
|
|
- uid, mimetype=None, stream=None, init_gr=None, **kwargs):
|
|
|
+ def from_provided(uid, mimetype=None, stream=None, graph=None, **kwargs):
|
|
|
r"""
|
|
|
Create and LDPR instance from provided data.
|
|
|
|
|
@@ -87,80 +86,65 @@ class LdpFactory:
|
|
|
passed.
|
|
|
|
|
|
:param str uid: UID of the resource to be created or updated.
|
|
|
- :param str mimetype: The provided content MIME type.
|
|
|
- :param stream: The provided data stream. This can be
|
|
|
- RDF or non-RDF content, or None. In the latter case, an empty
|
|
|
- container is created.
|
|
|
- :type stream: IOStream or None
|
|
|
- :param rdflib.Graph init_gr: Initial graph to populate the
|
|
|
- resource with, alternatively to ``stream``. This can be
|
|
|
- used for LDP-RS and LDP-NR types alike.
|
|
|
+ :param str mimetype: The provided content MIME type. If this is
|
|
|
+ specified the resource is considered a LDP-NR and a ``stream``
|
|
|
+ *must* be provided.
|
|
|
+ :param IOStream stream: The provided data stream.
|
|
|
+ :param rdflib.Graph graph: Initial graph to populate the
|
|
|
+ resource with. This can be used for LDP-RS and LDP-NR types alike.
|
|
|
:param \*\*kwargs: Arguments passed to the LDP class constructor.
|
|
|
+
|
|
|
+ :raise ValueError: if ``mimetype`` is specified but no data stream is
|
|
|
+ provided.
|
|
|
"""
|
|
|
uri = nsc['fcres'][uid]
|
|
|
|
|
|
- # If no content or MIME type is passed, create an empty LDPC.
|
|
|
- if not any((stream, mimetype, init_gr)):
|
|
|
- logger.info('No data received in request. '
|
|
|
- 'Creating empty container.')
|
|
|
- inst = Ldpc(uid, provided_imr=Graph(identifier=uri), **kwargs)
|
|
|
+ provided_imr = Graph(identifier=uri)
|
|
|
+ if graph:
|
|
|
+ provided_imr += graph
|
|
|
+ #logger.debug('Provided graph: {}'.format(
|
|
|
+ # pformat(set(provided_imr))))
|
|
|
+
|
|
|
+ if stream is None:
|
|
|
+ # Resource is a LDP-RS.
|
|
|
+ if mimetype:
|
|
|
+ raise ValueError(
|
|
|
+ 'Binary stream must be provided if mimetype is specified.')
|
|
|
+
|
|
|
+ # Determine whether it is a basic, direct or indirect container.
|
|
|
+ if Ldpr.MBR_RSRC_URI in provided_imr.predicates() and \
|
|
|
+ Ldpr.MBR_REL_URI in provided_imr.predicates():
|
|
|
+ if Ldpr.INS_CNT_REL_URI in provided_imr.predicates():
|
|
|
+ cls = LdpIc
|
|
|
+ else:
|
|
|
+ cls = LdpDc
|
|
|
+ else:
|
|
|
+ cls = Ldpc
|
|
|
+
|
|
|
+ inst = cls(uid, provided_imr=provided_imr, **kwargs)
|
|
|
|
|
|
# Make sure we are not updating an LDP-NR with an LDP-RS.
|
|
|
if inst.is_stored and LDP_NR_TYPE in inst.ldp_types:
|
|
|
raise IncompatibleLdpTypeError(uid, mimetype)
|
|
|
|
|
|
- # Otherwise, determine LDP type from provided content.
|
|
|
- else:
|
|
|
- # If the stream is RDF, or an IMR is provided, create a container
|
|
|
- # and populate it with provided RDF data.
|
|
|
- provided_imr = Graph(identifier=uri)
|
|
|
- # Provided RDF stream overrides provided IMR.
|
|
|
- if __class__.is_rdf_parsable(mimetype) :
|
|
|
- provided_imr.parse(
|
|
|
- data=stream.read(), format=mimetype, publicID=uri)
|
|
|
- elif init_gr:
|
|
|
- provided_imr += init_gr
|
|
|
- #logger.debug('Provided graph: {}'.format(
|
|
|
- # pformat(set(provided_imr))))
|
|
|
-
|
|
|
- if not mimetype or __class__.is_rdf_parsable(mimetype):
|
|
|
- # Determine whether it is a basic, direct or indirect
|
|
|
- # container.
|
|
|
- if Ldpr.MBR_RSRC_URI in provided_imr.predicates() and \
|
|
|
- Ldpr.MBR_REL_URI in provided_imr.predicates():
|
|
|
- if Ldpr.INS_CNT_REL_URI in provided_imr.predicates():
|
|
|
- cls = LdpIc
|
|
|
- else:
|
|
|
- cls = LdpDc
|
|
|
- else:
|
|
|
- cls = Ldpc
|
|
|
-
|
|
|
- inst = cls(uid, provided_imr=provided_imr, **kwargs)
|
|
|
+ if kwargs.get('handling', 'strict') != 'none':
|
|
|
+ inst._check_mgd_terms(inst.provided_imr)
|
|
|
|
|
|
- # Make sure we are not updating an LDP-NR with an LDP-RS.
|
|
|
- if inst.is_stored and LDP_NR_TYPE in inst.ldp_types:
|
|
|
- raise IncompatibleLdpTypeError(uid, mimetype)
|
|
|
-
|
|
|
- if kwargs.get('handling', 'strict') != 'none':
|
|
|
- inst._check_mgd_terms(inst.provided_imr)
|
|
|
+ else:
|
|
|
+ # Resource is a LDP-NR.
|
|
|
+ if not mimetype:
|
|
|
+ mimetype = 'application/octet-stream'
|
|
|
|
|
|
- else:
|
|
|
- # Create a LDP-NR and equip it with the binary file provided.
|
|
|
- inst = LdpNr(uid, stream=stream, mimetype=mimetype,
|
|
|
- provided_imr=provided_imr, **kwargs)
|
|
|
+ inst = LdpNr(uid, stream=stream, mimetype=mimetype,
|
|
|
+ provided_imr=provided_imr, **kwargs)
|
|
|
|
|
|
- # Make sure we are not updating an LDP-RS with an LDP-NR.
|
|
|
- if inst.is_stored and LDP_RS_TYPE in inst.ldp_types:
|
|
|
- raise IncompatibleLdpTypeError(uid, mimetype)
|
|
|
+ # Make sure we are not updating an LDP-RS with an LDP-NR.
|
|
|
+ if inst.is_stored and LDP_RS_TYPE in inst.ldp_types:
|
|
|
+ raise IncompatibleLdpTypeError(uid, mimetype)
|
|
|
|
|
|
- logger.info('Creating resource of type: {}'.format(
|
|
|
+ logger.debug('Creating resource of type: {}'.format(
|
|
|
inst.__class__.__name__))
|
|
|
|
|
|
- try:
|
|
|
- types = inst.types
|
|
|
- except (TombstoneError, ResourceNotExistsError):
|
|
|
- types = set()
|
|
|
-
|
|
|
return inst
|
|
|
|
|
|
|