models.py 4.2 KB

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