mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-26 17:26:10 -06:00
Move ASNField from dcim to ipam
This commit is contained in:
parent
45b86db600
commit
1e1aac5c48
@ -1,4 +1,4 @@
|
|||||||
import dcim.fields
|
import ipam.fields
|
||||||
from utilities.json import CustomFieldJSONEncoder
|
from utilities.json import CustomFieldJSONEncoder
|
||||||
from django.db import migrations, models
|
from django.db import migrations, models
|
||||||
import django.db.models.deletion
|
import django.db.models.deletion
|
||||||
@ -77,7 +77,7 @@ class Migration(migrations.Migration):
|
|||||||
('id', models.BigAutoField(primary_key=True, serialize=False)),
|
('id', models.BigAutoField(primary_key=True, serialize=False)),
|
||||||
('name', models.CharField(max_length=100, unique=True)),
|
('name', models.CharField(max_length=100, unique=True)),
|
||||||
('slug', models.SlugField(max_length=100, unique=True)),
|
('slug', models.SlugField(max_length=100, unique=True)),
|
||||||
('asn', dcim.fields.ASNField(blank=True, null=True)),
|
('asn', ipam.fields.ASNField(blank=True, null=True)),
|
||||||
('account', models.CharField(blank=True, max_length=30)),
|
('account', models.CharField(blank=True, max_length=30)),
|
||||||
('portal_url', models.URLField(blank=True)),
|
('portal_url', models.URLField(blank=True)),
|
||||||
('noc_contact', models.TextField(blank=True)),
|
('noc_contact', models.TextField(blank=True)),
|
||||||
|
@ -1,10 +1,8 @@
|
|||||||
from django.contrib.postgres.fields import ArrayField
|
from django.contrib.postgres.fields import ArrayField
|
||||||
from django.core.exceptions import ValidationError
|
from django.core.exceptions import ValidationError
|
||||||
from django.core.validators import MinValueValidator, MaxValueValidator
|
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from netaddr import AddrFormatError, EUI, eui64_unix_expanded, mac_unix_expanded
|
from netaddr import AddrFormatError, EUI, eui64_unix_expanded, mac_unix_expanded
|
||||||
|
|
||||||
from ipam.constants import BGP_ASN_MAX, BGP_ASN_MIN
|
|
||||||
from .lookups import PathContains
|
from .lookups import PathContains
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
@ -27,22 +25,6 @@ class eui64_unix_expanded_uppercase(eui64_unix_expanded):
|
|||||||
# Fields
|
# Fields
|
||||||
#
|
#
|
||||||
|
|
||||||
class ASNField(models.BigIntegerField):
|
|
||||||
description = "32-bit ASN field"
|
|
||||||
default_validators = [
|
|
||||||
MinValueValidator(BGP_ASN_MIN),
|
|
||||||
MaxValueValidator(BGP_ASN_MAX),
|
|
||||||
]
|
|
||||||
|
|
||||||
def formfield(self, **kwargs):
|
|
||||||
defaults = {
|
|
||||||
'min_value': BGP_ASN_MIN,
|
|
||||||
'max_value': BGP_ASN_MAX,
|
|
||||||
}
|
|
||||||
defaults.update(**kwargs)
|
|
||||||
return super().formfield(**defaults)
|
|
||||||
|
|
||||||
|
|
||||||
class MACAddressField(models.Field):
|
class MACAddressField(models.Field):
|
||||||
description = "PostgreSQL MAC Address field"
|
description = "PostgreSQL MAC Address field"
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import dcim.fields
|
import dcim.fields
|
||||||
|
import ipam.fields
|
||||||
import django.contrib.postgres.fields
|
import django.contrib.postgres.fields
|
||||||
from utilities.json import CustomFieldJSONEncoder
|
from utilities.json import CustomFieldJSONEncoder
|
||||||
import django.core.validators
|
import django.core.validators
|
||||||
@ -609,7 +610,7 @@ class Migration(migrations.Migration):
|
|||||||
('slug', models.SlugField(max_length=100, unique=True)),
|
('slug', models.SlugField(max_length=100, unique=True)),
|
||||||
('status', models.CharField(default='active', max_length=50)),
|
('status', models.CharField(default='active', max_length=50)),
|
||||||
('facility', models.CharField(blank=True, max_length=50)),
|
('facility', models.CharField(blank=True, max_length=50)),
|
||||||
('asn', dcim.fields.ASNField(blank=True, null=True)),
|
('asn', ipam.fields.ASNField(blank=True, null=True)),
|
||||||
('time_zone', timezone_field.fields.TimeZoneField(blank=True)),
|
('time_zone', timezone_field.fields.TimeZoneField(blank=True)),
|
||||||
('description', models.CharField(blank=True, max_length=200)),
|
('description', models.CharField(blank=True, max_length=200)),
|
||||||
('physical_address', models.CharField(blank=True, max_length=200)),
|
('physical_address', models.CharField(blank=True, max_length=200)),
|
||||||
|
@ -2,10 +2,6 @@ from django.db.models import Q
|
|||||||
|
|
||||||
from .choices import FHRPGroupProtocolChoices, IPAddressRoleChoices
|
from .choices import FHRPGroupProtocolChoices, IPAddressRoleChoices
|
||||||
|
|
||||||
# BGP ASN bounds
|
|
||||||
BGP_ASN_MIN = 1
|
|
||||||
BGP_ASN_MAX = 2**32 - 1
|
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# VRFs
|
# VRFs
|
||||||
|
@ -1,10 +1,21 @@
|
|||||||
from django.core.exceptions import ValidationError
|
from django.core.exceptions import ValidationError
|
||||||
|
from django.core.validators import MinValueValidator, MaxValueValidator
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from netaddr import AddrFormatError, IPNetwork
|
from netaddr import AddrFormatError, IPNetwork
|
||||||
|
|
||||||
from . import lookups, validators
|
from . import lookups, validators
|
||||||
from .formfields import IPNetworkFormField
|
from .formfields import IPNetworkFormField
|
||||||
|
|
||||||
|
__all__ = (
|
||||||
|
'ASNField',
|
||||||
|
'IPAddressField',
|
||||||
|
'IPNetworkField',
|
||||||
|
)
|
||||||
|
|
||||||
|
# BGP ASN bounds
|
||||||
|
BGP_ASN_MIN = 1
|
||||||
|
BGP_ASN_MAX = 2**32 - 1
|
||||||
|
|
||||||
|
|
||||||
class BaseIPField(models.Field):
|
class BaseIPField(models.Field):
|
||||||
|
|
||||||
@ -93,3 +104,19 @@ IPAddressField.register_lookup(lookups.NetIn)
|
|||||||
IPAddressField.register_lookup(lookups.NetHostContained)
|
IPAddressField.register_lookup(lookups.NetHostContained)
|
||||||
IPAddressField.register_lookup(lookups.NetFamily)
|
IPAddressField.register_lookup(lookups.NetFamily)
|
||||||
IPAddressField.register_lookup(lookups.NetMaskLength)
|
IPAddressField.register_lookup(lookups.NetMaskLength)
|
||||||
|
|
||||||
|
|
||||||
|
class ASNField(models.BigIntegerField):
|
||||||
|
description = "32-bit ASN field"
|
||||||
|
default_validators = [
|
||||||
|
MinValueValidator(BGP_ASN_MIN),
|
||||||
|
MaxValueValidator(BGP_ASN_MAX),
|
||||||
|
]
|
||||||
|
|
||||||
|
def formfield(self, **kwargs):
|
||||||
|
defaults = {
|
||||||
|
'min_value': BGP_ASN_MIN,
|
||||||
|
'max_value': BGP_ASN_MAX,
|
||||||
|
}
|
||||||
|
defaults.update(**kwargs)
|
||||||
|
return super().formfield(**defaults)
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
# Generated by Django 3.2.8 on 2021-11-02 16:16
|
import ipam.fields
|
||||||
|
|
||||||
import dcim.fields
|
|
||||||
from utilities.json import CustomFieldJSONEncoder
|
from utilities.json import CustomFieldJSONEncoder
|
||||||
from django.db import migrations, models
|
from django.db import migrations, models
|
||||||
import django.db.models.deletion
|
import django.db.models.deletion
|
||||||
@ -23,7 +21,7 @@ class Migration(migrations.Migration):
|
|||||||
('last_updated', models.DateTimeField(auto_now=True, null=True)),
|
('last_updated', models.DateTimeField(auto_now=True, null=True)),
|
||||||
('custom_field_data', models.JSONField(blank=True, default=dict, encoder=CustomFieldJSONEncoder)),
|
('custom_field_data', models.JSONField(blank=True, default=dict, encoder=CustomFieldJSONEncoder)),
|
||||||
('id', models.BigAutoField(primary_key=True, serialize=False)),
|
('id', models.BigAutoField(primary_key=True, serialize=False)),
|
||||||
('asn', dcim.fields.ASNField(unique=True)),
|
('asn', ipam.fields.ASNField(unique=True)),
|
||||||
('description', models.CharField(blank=True, max_length=200)),
|
('description', models.CharField(blank=True, max_length=200)),
|
||||||
('rir', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='asns', to='ipam.rir')),
|
('rir', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='asns', to='ipam.rir')),
|
||||||
('tags', taggit.managers.TaggableManager(through='extras.TaggedItem', to='extras.Tag')),
|
('tags', taggit.managers.TaggableManager(through='extras.TaggedItem', to='extras.Tag')),
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
|
from django.contrib.postgres.fields import ArrayField
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
from django.utils.translation import gettext as _
|
from django.utils.translation import gettext as _
|
||||||
|
|
||||||
from dcim.fields import ASNField
|
from ipam.fields import ASNField
|
||||||
from netbox.models import PrimaryModel
|
from netbox.models import PrimaryModel
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
|
Loading…
Reference in New Issue
Block a user