add wrapper for rename_s
[matthijs/upstream/django-ldapdb.git] / ldapdb / __init__.py
1 # -*- coding: utf-8 -*-
2
3 # django-ldapdb
4 # Copyright (C) 2009 BollorĂ© telecom
5 # See AUTHORS file for a full list of contributors.
6
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20
21 import ldap
22
23 from django.conf import settings
24
25 def convert(field, value, func):
26     if not value or field == 'jpegPhoto':
27         return value
28     elif isinstance(value, int):
29         return str(value)
30     elif isinstance(value, list):
31         return [ func(x) for x in value ]
32     else:
33         return func(value)
34         
35 class LdapConnection():
36     def __init__(self, server, bind_dn, bind_password):
37         self.connection = ldap.initialize(server)
38         self.connection.simple_bind_s(bind_dn, bind_password)
39
40     def add_s(self, dn, modlist):
41         mods = []
42         for field, value in modlist:
43             converted = convert(field, value, lambda x: x.encode('utf-8'))
44             if isinstance(converted, list):
45                 mods.append((field, converted))
46             else:
47                 mods.append((field, [converted]))
48         return self.connection.add_s(dn, mods)
49
50     def delete_s(self, dn):
51         return self.connection.delete_s(dn)
52
53     def modify_s(self, dn, modlist):
54         mods = []
55         for op, field, value in modlist:
56             mods.append((op, field, convert(field, value, lambda x: x.encode('utf-8'))))
57         return self.connection.modify_s(dn, mods)
58
59     def rename_s(self, dn, newrdn):
60         return self.connection.rename_s(dn, newrdn)
61
62     def search_s(self, base, scope, filterstr, attrlist):
63         results = self.connection.search_s(base, scope, filterstr, attrlist)
64         for dn, attrs in results:
65             for field in attrs:
66                 if field == "member" or field == "memberUid":
67                     attrs[field] = convert(field, attrs[field], lambda x: x.decode('utf-8'))
68                 else:
69                     attrs[field] = convert(field, attrs[field][0], lambda x: x.decode('utf-8'))
70         return results
71
72 # FIXME: is this the right place to initialize the LDAP connection?
73 connection = LdapConnection(settings.LDAPDB_SERVER_URI,
74     settings.LDAPDB_BIND_DN,
75     settings.LDAPDB_BIND_PASSWORD)
76