summaryrefslogtreecommitdiffstats
path: root/ipa_server
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2008-10-07 02:10:15 -0400
committerRob Crittenden <rcritten@redhat.com>2008-10-07 02:10:15 -0400
commit69bc5ad77adecaf7d8fde4a6578c3d2f3ef355df (patch)
tree619b12f26fd96d687810a5463c160ddaab3573b3 /ipa_server
parentcb795fa14bc2798fd8f1c6e2b87d19432e3f84a1 (diff)
downloadfreeipa-69bc5ad77adecaf7d8fde4a6578c3d2f3ef355df.tar.gz
freeipa-69bc5ad77adecaf7d8fde4a6578c3d2f3ef355df.tar.xz
freeipa-69bc5ad77adecaf7d8fde4a6578c3d2f3ef355df.zip
Add some more supporting functions
Do a little bit more error handling and checking
Diffstat (limited to 'ipa_server')
-rw-r--r--ipa_server/servercore.py46
1 files changed, 42 insertions, 4 deletions
diff --git a/ipa_server/servercore.py b/ipa_server/servercore.py
index 34008abe3..551c84e9a 100644
--- a/ipa_server/servercore.py
+++ b/ipa_server/servercore.py
@@ -17,9 +17,6 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
-import sys
-sys.path.insert(0, ".")
-sys.path.insert(0, "..")
import ldap
from ipa_server.context import context
import ipautil
@@ -109,6 +106,43 @@ def get_entry_by_dn (dn, sattrs=None):
# logging.info("IPA: get_entry_by_dn '%s'" % dn)
return get_base_entry(dn, searchfilter, sattrs)
+# User support
+
+def is_user_unique(uid):
+ """Return True if the uid is unique in the tree, False otherwise."""
+ # FIXME
+# uid = self.__safe_filter(uid)
+ searchfilter = "(&(uid=%s)(objectclass=posixAccount))" % uid
+
+ try:
+ entry = get_sub_entry("cn=accounts," + basedn, searchfilter, ['dn','uid'])
+ return False
+# except ipaerror.exception_for(ipaerror.LDAP_NOT_FOUND):
+ except Exception:
+ return True
+
+def uid_too_long(uid):
+ """Verify that the new uid is within the limits we set. This is a
+ very narrow test.
+
+ Returns True if it is longer than allowed
+ False otherwise
+ """
+ if not isinstance(uid,basestring) or len(uid) == 0:
+ # It is bad, but not too long
+ return False
+# logging.debug("IPA: __uid_too_long(%s)" % uid)
+ try:
+ config = get_ipa_config()
+ maxlen = int(config.get('ipamaxusernamelength', 0))
+ if maxlen > 0 and len(uid) > maxlen:
+ return True
+ except Exception, e:
+# logging.debug("There was a problem " + str(e))
+ pass
+
+ return False
+
def update_entry (oldentry, newentry):
"""Update an LDAP entry
@@ -130,10 +164,14 @@ def update_entry (oldentry, newentry):
res = context.conn.getConn().updateEntry(moddn, oldentry, newentry)
return res
+def add_entry(entry):
+ """Add a new entry"""
+ return context.conn.getConn().addEntry(entry)
+
def uniq_list(x):
"""Return a unique list, preserving order and ignoring case"""
myset = {}
- return [set.setdefault(e.lower(),e) for e in x if e.lower() not in myset]
+ return [myset.setdefault(e.lower(),e) for e in x if e.lower() not in myset]
def get_schema():
"""Retrieves the current LDAP schema from the LDAP server."""