mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
27 lines
566 B
Python
27 lines
566 B
Python
from netaddr import EUI, AddrFormatError
|
|
|
|
from django import forms
|
|
from django.core.exceptions import ValidationError
|
|
|
|
|
|
#
|
|
# Form fields
|
|
#
|
|
|
|
class MACAddressFormField(forms.Field):
|
|
default_error_messages = {
|
|
'invalid': "Enter a valid MAC address.",
|
|
}
|
|
|
|
def to_python(self, value):
|
|
if not value:
|
|
return None
|
|
|
|
if isinstance(value, EUI):
|
|
return value
|
|
|
|
try:
|
|
return EUI(value, version=48)
|
|
except AddrFormatError:
|
|
raise ValidationError("Please specify a valid MAC address.")
|