|
@@ -78,7 +78,7 @@ class LdpFactory:
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
- def from_provided(uid, mimetype, stream=None, **kwargs):
|
|
|
+ def from_provided(uid, mimetype, stream=None, provided_imr=None, **kwargs):
|
|
|
'''
|
|
|
Determine LDP type from request content.
|
|
|
|
|
@@ -90,6 +90,7 @@ class LdpFactory:
|
|
|
@param **kwargs Arguments passed to the LDP class constructor.
|
|
|
'''
|
|
|
uri = nsc['fcres'][uid]
|
|
|
+ disable_checks = rdfly.config.get('disable_checks', False)
|
|
|
|
|
|
if not stream:
|
|
|
# Create empty LDPC.
|
|
@@ -117,22 +118,26 @@ class LdpFactory:
|
|
|
|
|
|
inst = cls(uid, provided_imr=provided_imr, **kwargs)
|
|
|
|
|
|
- # Make sure we are not updating an LDP-RS with an LDP-NR.
|
|
|
- if inst.is_stored and LDP_NR_TYPE in inst.ldp_types:
|
|
|
- raise IncompatibleLdpTypeError(uid, mimetype)
|
|
|
+ if not disable_checks:
|
|
|
+ # Make sure we are not updating an LDP-RS with an LDP-NR.
|
|
|
+ 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.graph)
|
|
|
+ if kwargs.get('handling', 'strict') != 'none':
|
|
|
+ inst._check_mgd_terms(inst.provided_imr.graph)
|
|
|
|
|
|
else:
|
|
|
# Create a LDP-NR and equip it with the binary file provided.
|
|
|
- provided_imr = Resource(Graph(), uri)
|
|
|
+ # The IMR can also be provided for additional metadata.
|
|
|
+ if not provided_imr:
|
|
|
+ provided_imr = Resource(Graph(), uri)
|
|
|
inst = LdpNr(uid, stream=stream, mimetype=mimetype,
|
|
|
provided_imr=provided_imr, **kwargs)
|
|
|
|
|
|
- # Make sure we are not updating an LDP-NR with an LDP-RS.
|
|
|
- if inst.is_stored and LDP_RS_TYPE in inst.ldp_types:
|
|
|
- raise IncompatibleLdpTypeError(uid, mimetype)
|
|
|
+ if not disable_checks:
|
|
|
+ # Make sure we are not updating an LDP-NR with an LDP-RS.
|
|
|
+ if inst.is_stored and LDP_RS_TYPE in inst.ldp_types:
|
|
|
+ raise IncompatibleLdpTypeError(uid, mimetype)
|
|
|
|
|
|
logger.info('Creating resource of type: {}'.format(
|
|
|
inst.__class__.__name__))
|