|
@@ -171,16 +171,11 @@ class LdpFactory:
|
|
:return: The confirmed resource UID. This may be different from
|
|
:return: The confirmed resource UID. This may be different from
|
|
what has been indicated.
|
|
what has been indicated.
|
|
"""
|
|
"""
|
|
- def split_if_legacy(uid):
|
|
|
|
- if config['application']['store']['ldp_rs']['legacy_ptree_split']:
|
|
|
|
- uid = tbox.split_uuid(uid)
|
|
|
|
- return uid
|
|
|
|
-
|
|
|
|
if path and path.startswith('/'):
|
|
if path and path.startswith('/'):
|
|
raise ValueError('Slug cannot start with a slash.')
|
|
raise ValueError('Slug cannot start with a slash.')
|
|
# Shortcut!
|
|
# Shortcut!
|
|
if not path and parent_uid == '/':
|
|
if not path and parent_uid == '/':
|
|
- return '/' + split_if_legacy(str(uuid4()))
|
|
|
|
|
|
+ return f'/{uuid4()}'
|
|
|
|
|
|
if not parent_uid.startswith('/'):
|
|
if not parent_uid.startswith('/'):
|
|
raise ValueError('Invalid parent UID: {}'.format(parent_uid))
|
|
raise ValueError('Invalid parent UID: {}'.format(parent_uid))
|
|
@@ -196,6 +191,6 @@ class LdpFactory:
|
|
if not rdfly.ask_rsrc_exists(cnd_uid):
|
|
if not rdfly.ask_rsrc_exists(cnd_uid):
|
|
return cnd_uid
|
|
return cnd_uid
|
|
|
|
|
|
- return pfx + split_if_legacy(str(uuid4()))
|
|
|
|
|
|
+ return f'{pfx}{uuid4()}'
|
|
|
|
|
|
|
|
|