|
@@ -2,6 +2,7 @@
|
|
from django.db import models
|
|
from django.db import models
|
|
from django.core.exceptions import ValidationError
|
|
from django.core.exceptions import ValidationError
|
|
from django.conf import settings
|
|
from django.conf import settings
|
|
|
|
+from django.core.urlresolvers import reverse
|
|
from netfields import InetAddressField, NetManager
|
|
from netfields import InetAddressField, NetManager
|
|
import ldapdb.models
|
|
import ldapdb.models
|
|
from ldapdb.models.fields import CharField, ListField
|
|
from ldapdb.models.fields import CharField, ListField
|
|
@@ -23,16 +24,25 @@ class VPNConfiguration(CoinLdapSyncMixin, Configuration):
|
|
# validators=[ValidateBackendType(backend_name)])
|
|
# validators=[ValidateBackendType(backend_name)])
|
|
activated = models.BooleanField(default=False)
|
|
activated = models.BooleanField(default=False)
|
|
login = models.CharField(max_length=50, unique=True, blank=True,
|
|
login = models.CharField(max_length=50, unique=True, blank=True,
|
|
|
|
+ verbose_name="identifiant",
|
|
help_text="leave empty for automatic generation")
|
|
help_text="leave empty for automatic generation")
|
|
password = models.CharField(max_length=256, blank=True, null=True)
|
|
password = models.CharField(max_length=256, blank=True, null=True)
|
|
ipv4_endpoint = InetAddressField(validators=[validation.validate_v4],
|
|
ipv4_endpoint = InetAddressField(validators=[validation.validate_v4],
|
|
- blank=True, null=True)
|
|
|
|
|
|
+ verbose_name="IPv4", blank=True, null=True,
|
|
|
|
+ help_text="Addresse IPv4 utilisée par "
|
|
|
|
+ "défaut sur le VPN")
|
|
ipv6_endpoint = InetAddressField(validators=[validation.validate_v6],
|
|
ipv6_endpoint = InetAddressField(validators=[validation.validate_v6],
|
|
- blank=True, null=True)
|
|
|
|
- comment = models.CharField(blank=True, max_length=512)
|
|
|
|
|
|
+ verbose_name="IPv6", blank=True, null=True,
|
|
|
|
+ help_text="Addresse IPv6 utilisée par "
|
|
|
|
+ "défaut sur le VPN")
|
|
|
|
+ comment = models.CharField(blank=True, max_length=512,
|
|
|
|
+ verbose_name="commentaire")
|
|
|
|
|
|
objects = NetManager()
|
|
objects = NetManager()
|
|
|
|
|
|
|
|
+ def get_absolute_url(self):
|
|
|
|
+ return reverse('vpn:openvpn_ldap', args=[str(self.pk)])
|
|
|
|
+
|
|
# These two methods are part of the general configuration interface.
|
|
# These two methods are part of the general configuration interface.
|
|
def save_subnet(self, subnet, creation):
|
|
def save_subnet(self, subnet, creation):
|
|
self.check_endpoints(delete=True)
|
|
self.check_endpoints(delete=True)
|