base.py 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. # -*- coding: utf-8 -*-
  2. #
  3. # django-ldapdb
  4. # Copyright (c) 2009-2011, Bolloré telecom
  5. # All rights reserved.
  6. #
  7. # See AUTHORS file for a full list of contributors.
  8. #
  9. # Redistribution and use in source and binary forms, with or without modification,
  10. # are permitted provided that the following conditions are met:
  11. #
  12. # 1. Redistributions of source code must retain the above copyright notice,
  13. # this list of conditions and the following disclaimer.
  14. #
  15. # 2. Redistributions in binary form must reproduce the above copyright
  16. # notice, this list of conditions and the following disclaimer in the
  17. # documentation and/or other materials provided with the distribution.
  18. #
  19. # 3. Neither the name of Bolloré telecom nor the names of its contributors
  20. # may be used to endorse or promote products derived from this software
  21. # without specific prior written permission.
  22. #
  23. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  24. # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  25. # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  26. # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
  27. # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  28. # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  29. # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  30. # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  31. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  32. # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  33. #
  34. import ldap
  35. import logging
  36. import django.db.models
  37. from django.db import connections, router
  38. from django.db.models import signals
  39. import ldapdb
  40. class Model(django.db.models.base.Model):
  41. """
  42. Base class for all LDAP models.
  43. """
  44. dn = django.db.models.fields.CharField(max_length=200)
  45. # meta-data
  46. base_dn = None
  47. search_scope = ldap.SCOPE_SUBTREE
  48. object_classes = ['top']
  49. def __init__(self, *args, **kwargs):
  50. super(Model, self).__init__(*args, **kwargs)
  51. self.saved_pk = self.pk
  52. def build_rdn(self):
  53. """
  54. Build the Relative Distinguished Name for this entry.
  55. """
  56. bits = []
  57. for field in self._meta.fields:
  58. if field.db_column and field.primary_key:
  59. bits.append("%s=%s" % (field.db_column, getattr(self, field.name)))
  60. if not len(bits):
  61. raise Exception("Could not build Distinguished Name")
  62. return '+'.join(bits)
  63. def build_dn(self):
  64. """
  65. Build the Distinguished Name for this entry.
  66. """
  67. return "%s,%s" % (self.build_rdn(), self.base_dn)
  68. raise Exception("Could not build Distinguished Name")
  69. def delete(self, using=None):
  70. """
  71. Delete this entry.
  72. """
  73. using = using or router.db_for_write(self.__class__, instance=self)
  74. connection = connections[using]
  75. logging.debug("Deleting LDAP entry %s" % self.dn)
  76. connection.delete_s(self.dn)
  77. signals.post_delete.send(sender=self.__class__, instance=self)
  78. def save(self, using=None):
  79. signals.pre_save.send(sender=self.__class__, instance=self, created=(not self.dn))
  80. """
  81. Saves the current instance.
  82. """
  83. using = using or router.db_for_write(self.__class__, instance=self)
  84. connection = connections[using]
  85. if not self.dn:
  86. # create a new entry
  87. record_exists = False
  88. entry = [('objectClass', self.object_classes)]
  89. new_dn = self.build_dn()
  90. for field in self._meta.fields:
  91. if not field.db_column:
  92. continue
  93. value = getattr(self, field.name)
  94. if value:
  95. entry.append((field.db_column, field.get_db_prep_save(value, connection=connection)))
  96. logging.debug("Creating new LDAP entry %s" % new_dn)
  97. connection.add_s(new_dn, entry)
  98. # update object
  99. self.dn = new_dn
  100. else:
  101. # update an existing entry
  102. record_exists = True
  103. modlist = []
  104. orig = self.__class__.objects.get(pk=self.saved_pk)
  105. for field in self._meta.fields:
  106. if not field.db_column:
  107. continue
  108. old_value = getattr(orig, field.name, None)
  109. new_value = getattr(self, field.name, None)
  110. if old_value != new_value:
  111. if new_value:
  112. modlist.append((ldap.MOD_REPLACE, field.db_column, field.get_db_prep_save(new_value, connection=connection)))
  113. elif old_value:
  114. modlist.append((ldap.MOD_DELETE, field.db_column, None))
  115. if len(modlist):
  116. # handle renaming
  117. new_dn = self.build_dn()
  118. if new_dn != self.dn:
  119. logging.debug("Renaming LDAP entry %s to %s" % (self.dn, new_dn))
  120. connection.rename_s(self.dn, self.build_rdn())
  121. self.dn = new_dn
  122. logging.debug("Modifying existing LDAP entry %s" % self.dn)
  123. connection.modify_s(self.dn, modlist)
  124. else:
  125. logging.debug("No changes to be saved to LDAP entry %s" % self.dn)
  126. # done
  127. self.saved_pk = self.pk
  128. signals.post_save.send(sender=self.__class__, instance=self, created=(not record_exists))
  129. @classmethod
  130. def scoped(base_class, base_dn):
  131. """
  132. Returns a copy of the current class with a different base_dn.
  133. """
  134. class Meta:
  135. proxy = True
  136. import re
  137. suffix = re.sub('[=,]', '_', base_dn)
  138. name = "%s_%s" % (base_class.__name__, str(suffix))
  139. new_class = type(name, (base_class,), {'base_dn': base_dn, '__module__': base_class.__module__, 'Meta': Meta})
  140. return new_class
  141. class Meta:
  142. abstract = True