summaryrefslogtreecommitdiffstats
path: root/ipapython/ipautil.py
diff options
context:
space:
mode:
authorTomas Babej <tbabej@redhat.com>2015-09-23 13:27:35 +0200
committerJan Cholasta <jcholast@redhat.com>2015-09-23 17:05:47 +0200
commita758f16abe608569e3797b048676c3eb245d784a (patch)
tree828f9d61f7b236b227a812a3ed64fe19201e4798 /ipapython/ipautil.py
parent4c39561261e79fe1cfdef916eafbcb9c204e77e8 (diff)
downloadfreeipa-a758f16abe608569e3797b048676c3eb245d784a.tar.gz
freeipa-a758f16abe608569e3797b048676c3eb245d784a.tar.xz
freeipa-a758f16abe608569e3797b048676c3eb245d784a.zip
winsync-migrate: Convert entity names to posix friendly strings
During the migration from winsync replicated users to their trusted identities, memberships are being preserved. However, trusted users are external and as such cannot be added as direct members to the IPA entities. External groups which encapsulate the migrated users are added as members to those entities instead. The name of the external group is generated from the type of the entity and its name. However, the entity's name can contain characters which are invalid for use in the group name. Adds a helper function to convert a given string to a string which would be valid for such use and leverages it in the winsync-migrate tool. https://fedorahosted.org/freeipa/ticket/5319 Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
Diffstat (limited to 'ipapython/ipautil.py')
-rw-r--r--ipapython/ipautil.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/ipapython/ipautil.py b/ipapython/ipautil.py
index 2402689cc..573e6040c 100644
--- a/ipapython/ipautil.py
+++ b/ipapython/ipautil.py
@@ -1330,6 +1330,29 @@ def restore_hostname(statestore):
except CalledProcessError as e:
print("Failed to set this machine hostname back to %s: %s" % (old_hostname, str(e)), file=sys.stderr)
+def posixify(string):
+ """
+ Convert a string to a more strict alpha-numeric representation.
+
+ - Alpha-numeric, underscore, dot and dash characters are accepted
+ - Space is converted to underscore
+ - Other characters are omitted
+ - Leading dash is stripped
+
+ Note: This mapping is not one-to-one and may map different input to the
+ same result. When using posixify, make sure the you do not map two different
+ entities to one unintentionally.
+ """
+
+ def valid_char(char):
+ return char.isalnum() or char in ('_', '.', '-')
+
+ # First replace space characters
+ replaced = string.replace(' ','_')
+ omitted = ''.join(filter(valid_char, replaced))
+
+ # Leading dash is not allowed
+ return omitted.lstrip('-')
@contextmanager
def private_ccache(path=None):