|
@@ -4,11 +4,19 @@ from django.core.exceptions import ValidationError
|
|
|
from django.core.validators import MinValueValidator
|
|
|
from netfields import InetAddressField, NetManager
|
|
|
from netaddr import IPAddress
|
|
|
+import ldapdb.models
|
|
|
+from ldapdb.models.fields import CharField, IntegerField, ListField
|
|
|
+
|
|
|
+from coin.models import CoinLdapSyncModel
|
|
|
|
|
|
# TODO: validate DNS names with this regex
|
|
|
REGEX = r'(?:[A-Z0-9](?:[A-Z0-9-]{0,61}[A-Z0-9])?\.)+(?:[A-Z]{2,6}|[A-Z0-9-]{2,})\.?$'
|
|
|
|
|
|
class NameServer(models.Model):
|
|
|
+ # TODO: signal to IPSubnet when we are modified, so that is saves the
|
|
|
+ # result into LDAP. Actually, better: build a custom M2M relation
|
|
|
+ # between NameServer and IPSubnet (see Capslock), and save in LDAP
|
|
|
+ # there.
|
|
|
dns_name = models.CharField(max_length=255,
|
|
|
help_text="Example: ns1.example.com")
|
|
|
description = models.CharField(max_length=255, blank=True,
|