models.py 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import models
  4. from polymorphic import PolymorphicModel
  5. from django.core.exceptions import ValidationError
  6. from django.core.urlresolvers import reverse
  7. from netfields import InetAddressField, NetManager
  8. from coin.configuration.models import Configuration
  9. # from coin.offers.backends import ValidateBackendType
  10. from coin import validation
  11. class HousingConfiguration(Configuration):
  12. url_namespace = "housing"
  13. activated = models.BooleanField(default=False, verbose_name='activé')
  14. ipv4_endpoint = InetAddressField(validators=[validation.validate_v4],
  15. verbose_name="IPv4", blank=True, null=True,
  16. help_text="Adresse IPv4 utilisée par "
  17. "défaut sur le Housing")
  18. ipv6_endpoint = InetAddressField(validators=[validation.validate_v6],
  19. verbose_name="IPv6", blank=True, null=True,
  20. help_text="Adresse IPv6 utilisée par "
  21. "défaut sur le Housing")
  22. vlan = models.IntegerField(verbose_name="vlan id", null=True)
  23. objects = NetManager()
  24. def get_absolute_url(self):
  25. return reverse('housing:details', args=[str(self.pk)])
  26. # This method is part of the general configuration interface.
  27. def subnet_event(self):
  28. self.check_endpoints(delete=True)
  29. # We potentially changed the endpoints, so we need to save. Also,
  30. # saving will update the subnets in the LDAP backend.
  31. self.full_clean()
  32. self.save()
  33. def get_subnets(self, version):
  34. subnets = self.ip_subnet.all()
  35. return [subnet for subnet in subnets if subnet.inet.version == version]
  36. def generate_endpoints(self, v4=True, v6=True):
  37. """Generate IP endpoints in one of the attributed IP subnets. If there is
  38. no available subnet for a given address family, then no endpoint
  39. is generated for this address family. If there already is an
  40. endpoint, do nothing.
  41. Returns True if an endpoint was generated.
  42. TODO: this should be factored for other technologies (DSL, etc)
  43. """
  44. subnets = self.ip_subnet.all()
  45. updated = False
  46. if v4 and self.ipv4_endpoint is None:
  47. subnets_v4 = [s for s in subnets if s.inet.version == 4]
  48. if len(subnets_v4) > 0:
  49. self.ipv4_endpoint = subnets_v4[0].inet.ip
  50. updated = True
  51. if v6 and self.ipv6_endpoint is None:
  52. subnets_v6 = [s for s in subnets if s.inet.version == 6]
  53. if len(subnets_v6) > 0:
  54. # With v6, we choose the second host of the subnet (cafe::1)
  55. gen = subnets_v6[0].inet.iter_hosts()
  56. gen.next()
  57. self.ipv6_endpoint = gen.next()
  58. updated = True
  59. return updated
  60. def check_endpoints(self, delete=False):
  61. """Check that the IP endpoints are included in one of the attributed IP
  62. subnets.
  63. If [delete] is True, then simply delete the faulty endpoints
  64. instead of raising an exception.
  65. """
  66. error = "L'IP {} n'est pas dans un réseau attribué."
  67. subnets = self.ip_subnet.all()
  68. is_faulty = lambda endpoint : endpoint and not any([endpoint in subnet.inet for subnet in subnets])
  69. if is_faulty(self.ipv4_endpoint):
  70. if delete:
  71. self.ipv4_endpoint = None
  72. else:
  73. raise ValidationError(error.format(self.ipv4_endpoint))
  74. if is_faulty(self.ipv6_endpoint):
  75. if delete:
  76. self.ipv6_endpoint = None
  77. else:
  78. raise ValidationError(error.format(self.ipv6_endpoint))
  79. def clean(self):
  80. # If saving for the first time and IP endpoints are not specified,
  81. # generate them automatically.
  82. if self.pk is None:
  83. self.generate_endpoints()
  84. self.check_endpoints()
  85. def __unicode__(self):
  86. return 'Housing ' #+ self.login
  87. class Meta:
  88. verbose_name = 'Housing'