models.py 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. FINGERPRINT_TYPES = (
  12. ('ED25519', 'ED25519'),
  13. ('RSA', 'RSA'),
  14. ('ECDSA', 'ECDSA')
  15. )
  16. PROTOCOLE_TYPES = (
  17. ('VNC', 'VNC'),
  18. )
  19. class VPSConfiguration(Configuration):
  20. url_namespace = "vps"
  21. activated = models.BooleanField(default=False, verbose_name='activé')
  22. ipv4_endpoint = InetAddressField(validators=[validation.validate_v4],
  23. verbose_name="IPv4", blank=True, null=True,
  24. help_text="Adresse IPv4 utilisée par "
  25. "défaut sur le VPS")
  26. ipv6_endpoint = InetAddressField(validators=[validation.validate_v6],
  27. verbose_name="IPv6", blank=True, null=True,
  28. help_text="Adresse IPv6 utilisée par "
  29. "défaut sur le VPS")
  30. objects = NetManager()
  31. def get_absolute_url(self):
  32. return reverse('vps:details', args=[str(self.pk)])
  33. # This method is part of the general configuration interface.
  34. def subnet_event(self):
  35. self.check_endpoints(delete=True)
  36. # We potentially changed the endpoints, so we need to save. Also,
  37. # saving will update the subnets in the LDAP backend.
  38. self.full_clean()
  39. self.save()
  40. def get_subnets(self, version):
  41. subnets = self.ip_subnet.all()
  42. return [subnet for subnet in subnets if subnet.inet.version == version]
  43. def generate_endpoints(self, v4=True, v6=True):
  44. """Generate IP endpoints in one of the attributed IP subnets. If there is
  45. no available subnet for a given address family, then no endpoint
  46. is generated for this address family. If there already is an
  47. endpoint, do nothing.
  48. Returns True if an endpoint was generated.
  49. TODO: this should be factored for other technologies (DSL, etc)
  50. """
  51. subnets = self.ip_subnet.all()
  52. updated = False
  53. if v4 and self.ipv4_endpoint is None:
  54. subnets_v4 = [s for s in subnets if s.inet.version == 4]
  55. if len(subnets_v4) > 0:
  56. self.ipv4_endpoint = subnets_v4[0].inet.ip
  57. updated = True
  58. if v6 and self.ipv6_endpoint is None:
  59. subnets_v6 = [s for s in subnets if s.inet.version == 6]
  60. if len(subnets_v6) > 0:
  61. # With v6, we choose the second host of the subnet (cafe::1)
  62. gen = subnets_v6[0].inet.iter_hosts()
  63. gen.next()
  64. self.ipv6_endpoint = gen.next()
  65. updated = True
  66. return updated
  67. def check_endpoints(self, delete=False):
  68. """Check that the IP endpoints are included in one of the attributed IP
  69. subnets.
  70. If [delete] is True, then simply delete the faulty endpoints
  71. instead of raising an exception.
  72. """
  73. error = "L'IP {} n'est pas dans un réseau attribué."
  74. subnets = self.ip_subnet.all()
  75. is_faulty = lambda endpoint : endpoint and not any([endpoint in subnet.inet for subnet in subnets])
  76. if is_faulty(self.ipv4_endpoint):
  77. if delete:
  78. self.ipv4_endpoint = None
  79. else:
  80. raise ValidationError(error.format(self.ipv4_endpoint))
  81. if is_faulty(self.ipv6_endpoint):
  82. if delete:
  83. self.ipv6_endpoint = None
  84. else:
  85. raise ValidationError(error.format(self.ipv6_endpoint))
  86. def clean(self):
  87. # If saving for the first time and IP endpoints are not specified,
  88. # generate them automatically.
  89. if self.pk is None:
  90. self.generate_endpoints()
  91. self.check_endpoints()
  92. def __unicode__(self):
  93. return 'VPS ' #+ self.login
  94. class Meta:
  95. verbose_name = 'VPS'
  96. class FingerPrint(PolymorphicModel):
  97. vps = models.ForeignKey(VPSConfiguration, verbose_name="vps")
  98. algo = models.CharField(max_length=256, verbose_name="algo",
  99. choices=FINGERPRINT_TYPES)
  100. fingerprint = models.CharField(max_length=256, verbose_name="empreinte")
  101. length = models.IntegerField(verbose_name="longueur de la clé", null=True)
  102. class Meta:
  103. verbose_name = 'Empreinte'
  104. class Console(models.Model):
  105. vps = models.OneToOneField(VPSConfiguration, verbose_name="vps")
  106. protocol = models.CharField(max_length=256, verbose_name="protocole",
  107. choices=PROTOCOLE_TYPES)
  108. domain = models.CharField(max_length=256, verbose_name="nom de domaine",
  109. blank=True, null=True)
  110. port = models.IntegerField(verbose_name="port", null=True)
  111. password_link = models.URLField(verbose_name="Mot de passe", blank=True,
  112. null=True, help_text="Lien à usage unique (détruit après ouverture)")
  113. class Meta:
  114. verbose_name = 'Console'