Some improvement over the last path
[mirror/userdir-ldap.git] / UDLdap.py
index 447368d..3dc2b74 100644 (file)
--- a/UDLdap.py
+++ b/UDLdap.py
@@ -1,5 +1,6 @@
 import ldap
 import time
+import userdir_ldap
 
 class Account:
     array_values = ['keyFingerPrint']
@@ -62,6 +63,11 @@ class Account:
     def numkeys(self):
         return len(self['keyFingerPrint'])
 
+    def latitude_dec(self, anonymized=False):
+        return userdir_ldap.DecDegree(self['latitude'], anonymized)
+    def longitude_dec(self, anonymized=False):
+        return userdir_ldap.DecDegree(self['longitude'], anonymized)
+
     def verbose_status(self):
         status = []
         status.append('mail: %s'  %(['disabled', 'active'][ self.has_mail() ]))