cleanup
[matthijs/upstream/django-ldapdb.git] / ldapdb / models / base.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 # -*- coding: utf-8 -*-
22
23 import ldap
24 import logging
25
26 import django.db.models
27
28 import ldapdb
29 from ldapdb.models.query import QuerySet
30
31 class ModelBase(django.db.models.base.ModelBase):
32     """
33     Metaclass for all LDAP models.
34     """
35     def __new__(cls, name, bases, attrs):
36         attr_meta = attrs.pop('Ldap', None)
37
38         super_new = super(ModelBase, cls).__new__
39         new_class = super_new(cls, name, bases, attrs)
40
41         # patch manager to use our own QuerySet class
42         def get_query_set():
43             return QuerySet(new_class)
44         new_class.objects.get_query_set = get_query_set
45         new_class._default_manager.get_query_set = get_query_set
46
47         if attr_meta:
48             new_class._meta.dn = attr_meta.dn
49             new_class._meta.object_classes = attr_meta.object_classes
50
51         return new_class
52
53 class Model(django.db.models.base.Model):
54     """
55     Base class for all LDAP models.
56     """
57     __metaclass__ = ModelBase
58
59     def __init__(self, dn=None, *args, **kwargs):
60         self.dn = dn
61         super(Model, self).__init__(*args, **kwargs)
62
63     def build_dn(self):
64         """
65         Build the Distinguished Name for this entry.
66         """
67         for field in self._meta.local_fields:
68             if field.primary_key:
69                 return "%s=%s,%s" % (field.db_column, getattr(self, field.name), self._meta.dn)
70         raise Exception("Could not build Distinguished Name")
71
72     def delete(self):
73         """
74         Delete this entry.
75         """
76         logging.debug("Deleting LDAP entry %s" % self.dn)
77         ldapdb.connection.delete_s(self.dn)
78         
79     def save(self):
80         # create a new entry
81         if not self.dn:
82             entry = [('objectClass', self._meta.object_classes)]
83             new_dn = self.build_dn()
84
85             for field in self._meta.local_fields:
86                 if not field.db_column:
87                     continue
88                 value = getattr(self, field.name)
89                 if value:
90                     entry.append((field.db_column, value))
91
92             logging.debug("Creating new LDAP entry %s" % new_dn)
93             ldapdb.connection.add_s(new_dn, entry)
94             
95             # update object
96             self.dn = new_dn
97             return
98
99         # update an existing entry
100         modlist = []
101         orig = self.__class__.objects.get(pk=self.pk)
102         for field in self._meta.local_fields:
103             if not field.db_column:
104                 continue
105             old_value = getattr(orig, field.name, None)
106             new_value = getattr(self, field.name, None)
107             if old_value != new_value:
108                 if new_value:
109                     modlist.append((ldap.MOD_REPLACE, field.db_column, new_value))
110                 elif old_value:
111                     modlist.append((ldap.MOD_DELETE, field.db_column, None))
112
113         if len(modlist):
114             logging.debug("Modifying existing LDAP entry %s" % self.dn)
115             ldapdb.connection.modify_s(self.dn, modlist)
116         else:
117             logging.debug("No changes to be saved to LDAP entry %s" % self.dn)
118