2017-01-15 23:01:18 +00:00
|
|
|
# Re2o est un logiciel d'administration développé initiallement au rezometz. Il
|
|
|
|
# se veut agnostique au réseau considéré, de manière à être installable en
|
|
|
|
# quelques clics.
|
|
|
|
#
|
|
|
|
# Copyright © 2017 Gabriel Détraz
|
2019-09-29 14:02:28 +00:00
|
|
|
# Copyright © 2017 Lara Kermarec
|
2017-01-15 23:01:18 +00:00
|
|
|
# Copyright © 2017 Augustin Lemesle
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2017-10-13 21:42:37 +00:00
|
|
|
"""
|
2020-04-29 13:00:47 +00:00
|
|
|
Forms for the topologie app of re2o.
|
2017-10-13 21:42:37 +00:00
|
|
|
|
2020-04-29 13:00:47 +00:00
|
|
|
The forms are used to:
|
|
|
|
* create and delete switch ports, related to a switch.
|
|
|
|
* create stacks and add switches to them (StackForm).
|
|
|
|
* create, edit and delete a switch (NewSwitchForm, EditSwitchForm).
|
2017-10-13 21:42:37 +00:00
|
|
|
"""
|
2017-01-15 23:01:18 +00:00
|
|
|
|
2017-09-10 23:29:24 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2018-04-14 22:06:29 +00:00
|
|
|
from django import forms
|
|
|
|
from django.forms import ModelForm
|
|
|
|
from django.db.models import Prefetch
|
2018-05-26 22:36:25 +00:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
2018-04-14 22:06:29 +00:00
|
|
|
|
2017-05-27 01:51:21 +00:00
|
|
|
from machines.models import Interface
|
2019-11-04 16:55:03 +00:00
|
|
|
from machines.forms import EditMachineForm, NewMachineForm
|
2018-04-14 22:06:29 +00:00
|
|
|
from re2o.mixins import FormRevMixin
|
|
|
|
|
2018-04-14 00:20:44 +00:00
|
|
|
from .models import (
|
2018-03-23 23:50:11 +00:00
|
|
|
Port,
|
|
|
|
Switch,
|
|
|
|
Room,
|
|
|
|
Stack,
|
|
|
|
ModelSwitch,
|
|
|
|
ConstructorSwitch,
|
2018-04-07 18:45:29 +00:00
|
|
|
AccessPoint,
|
|
|
|
SwitchBay,
|
|
|
|
Building,
|
2019-02-18 20:11:51 +00:00
|
|
|
Dormitory,
|
2018-05-26 22:36:25 +00:00
|
|
|
PortProfile,
|
2018-12-30 17:20:06 +00:00
|
|
|
ModuleSwitch,
|
|
|
|
ModuleOnSwitch,
|
2018-03-23 23:50:11 +00:00
|
|
|
)
|
2017-10-13 21:42:37 +00:00
|
|
|
|
2018-04-14 00:20:44 +00:00
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class PortForm(FormRevMixin, ModelForm):
|
2020-04-29 13:00:47 +00:00
|
|
|
"""Form used to manage a switch's port."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2016-07-06 19:50:15 +00:00
|
|
|
class Meta:
|
|
|
|
model = Port
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = "__all__"
|
2016-07-06 19:50:15 +00:00
|
|
|
|
2017-10-08 20:22:04 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2017-10-08 20:22:04 +00:00
|
|
|
super(PortForm, self).__init__(*args, prefix=prefix, **kwargs)
|
|
|
|
|
2017-10-13 21:42:37 +00:00
|
|
|
|
2018-03-31 15:42:16 +00:00
|
|
|
class EditPortForm(FormRevMixin, ModelForm):
|
2020-04-29 13:00:47 +00:00
|
|
|
"""Form used to edit a switch's port: change in RADIUS or VLANs settings,
|
|
|
|
assignement to a room, port or machine.
|
2017-10-13 21:42:37 +00:00
|
|
|
|
2020-04-29 13:00:47 +00:00
|
|
|
A port is related to either a room, another port (uplink) or a machine (server or AP).
|
|
|
|
"""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2016-07-06 19:50:15 +00:00
|
|
|
class Meta(PortForm.Meta):
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = [
|
|
|
|
"room",
|
|
|
|
"related",
|
|
|
|
"machine_interface",
|
|
|
|
"custom_profile",
|
|
|
|
"state",
|
|
|
|
"details",
|
|
|
|
]
|
2016-07-06 21:29:31 +00:00
|
|
|
|
2017-05-27 01:51:21 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2017-10-08 20:22:04 +00:00
|
|
|
super(EditPortForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields[
|
|
|
|
"machine_interface"
|
|
|
|
].queryset = Interface.objects.all().select_related("domain__extension")
|
|
|
|
self.fields["related"].queryset = Port.objects.all().prefetch_related(
|
|
|
|
"switch__machine_ptr__interface_set__domain__extension"
|
|
|
|
)
|
|
|
|
self.fields["room"].queryset = Room.objects.all().select_related(
|
|
|
|
"building__dormitory"
|
2018-04-14 00:20:44 +00:00
|
|
|
)
|
2017-10-13 21:42:37 +00:00
|
|
|
|
2016-11-24 02:11:04 +00:00
|
|
|
|
2018-03-31 15:42:16 +00:00
|
|
|
class AddPortForm(FormRevMixin, ModelForm):
|
2020-04-29 13:00:47 +00:00
|
|
|
"""Form used to add a switch's port. See EditPortForm."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2016-07-06 21:29:31 +00:00
|
|
|
class Meta(PortForm.Meta):
|
2018-04-14 00:20:44 +00:00
|
|
|
fields = [
|
2019-11-04 16:55:03 +00:00
|
|
|
"port",
|
|
|
|
"room",
|
|
|
|
"machine_interface",
|
|
|
|
"related",
|
|
|
|
"custom_profile",
|
|
|
|
"state",
|
|
|
|
"details",
|
2018-04-14 00:20:44 +00:00
|
|
|
]
|
2016-07-06 21:29:31 +00:00
|
|
|
|
2017-10-08 20:22:04 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2017-10-08 20:22:04 +00:00
|
|
|
super(AddPortForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2019-11-04 16:55:03 +00:00
|
|
|
self.fields[
|
|
|
|
"machine_interface"
|
|
|
|
].queryset = Interface.objects.all().select_related("domain__extension")
|
|
|
|
self.fields["related"].queryset = Port.objects.all().prefetch_related(
|
|
|
|
Prefetch(
|
|
|
|
"switch__interface_set",
|
|
|
|
queryset=(
|
|
|
|
Interface.objects.select_related(
|
|
|
|
"ipv4__ip_type__extension"
|
|
|
|
).select_related("domain__extension")
|
|
|
|
),
|
|
|
|
)
|
2018-04-14 00:20:44 +00:00
|
|
|
)
|
2017-10-08 20:22:04 +00:00
|
|
|
|
2017-10-13 21:42:37 +00:00
|
|
|
|
2018-03-31 15:42:16 +00:00
|
|
|
class StackForm(FormRevMixin, ModelForm):
|
2020-04-29 13:00:47 +00:00
|
|
|
"""Form used to create and edit stacks."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-08-17 22:17:56 +00:00
|
|
|
class Meta:
|
|
|
|
model = Stack
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = "__all__"
|
2017-08-17 22:17:56 +00:00
|
|
|
|
2017-10-08 20:22:04 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2017-10-08 20:22:04 +00:00
|
|
|
super(StackForm, self).__init__(*args, prefix=prefix, **kwargs)
|
|
|
|
|
2017-10-13 21:42:37 +00:00
|
|
|
|
2018-03-26 01:09:42 +00:00
|
|
|
class AddAccessPointForm(NewMachineForm):
|
2020-04-29 13:00:47 +00:00
|
|
|
"""Form used to create access points."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2018-03-23 23:50:11 +00:00
|
|
|
class Meta:
|
2018-03-25 22:08:24 +00:00
|
|
|
model = AccessPoint
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = ["location", "name"]
|
2018-03-23 23:50:11 +00:00
|
|
|
|
|
|
|
|
2018-03-26 01:09:42 +00:00
|
|
|
class EditAccessPointForm(EditMachineForm):
|
2020-04-29 13:00:47 +00:00
|
|
|
"""Form used to edit access points."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2018-03-23 23:50:11 +00:00
|
|
|
class Meta:
|
2018-03-25 22:08:24 +00:00
|
|
|
model = AccessPoint
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = "__all__"
|
2018-03-23 23:50:11 +00:00
|
|
|
|
|
|
|
|
2018-03-26 03:12:01 +00:00
|
|
|
class EditSwitchForm(EditMachineForm):
|
2020-04-29 13:00:47 +00:00
|
|
|
"""Form used to edit switches."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2016-07-06 21:29:31 +00:00
|
|
|
class Meta:
|
|
|
|
model = Switch
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = "__all__"
|
2016-07-06 21:29:31 +00:00
|
|
|
|
2017-10-13 21:42:37 +00:00
|
|
|
|
2018-03-26 03:12:01 +00:00
|
|
|
class NewSwitchForm(NewMachineForm):
|
2020-04-29 13:00:47 +00:00
|
|
|
"""Form used to create a switch."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2016-10-26 12:05:40 +00:00
|
|
|
class Meta(EditSwitchForm.Meta):
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = ["name", "switchbay", "number", "stack", "stack_member_id"]
|
2016-07-06 21:29:31 +00:00
|
|
|
|
2017-10-13 21:42:37 +00:00
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class EditRoomForm(FormRevMixin, ModelForm):
|
2020-04-29 13:00:47 +00:00
|
|
|
"""Form used to edit a room."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2016-07-19 00:30:52 +00:00
|
|
|
class Meta:
|
|
|
|
model = Room
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = "__all__"
|
2017-08-18 23:16:51 +00:00
|
|
|
|
2017-10-08 20:22:04 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2017-10-08 20:22:04 +00:00
|
|
|
super(EditRoomForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2017-10-26 08:41:48 +00:00
|
|
|
|
|
|
|
|
2018-03-31 15:42:16 +00:00
|
|
|
class CreatePortsForm(forms.Form):
|
2020-04-29 13:00:47 +00:00
|
|
|
"""Form used to create switch ports lists."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2018-08-05 16:48:56 +00:00
|
|
|
begin = forms.IntegerField(label=_("Start:"), min_value=0)
|
|
|
|
end = forms.IntegerField(label=_("End:"), min_value=0)
|
2017-10-26 08:41:48 +00:00
|
|
|
|
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class EditModelSwitchForm(FormRevMixin, ModelForm):
|
2020-04-29 13:00:47 +00:00
|
|
|
"""Form used to edit switch models."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
|
|
|
members = forms.ModelMultipleChoiceField(Switch.objects.all(), required=False)
|
2018-04-14 00:20:44 +00:00
|
|
|
|
2017-10-26 03:07:11 +00:00
|
|
|
class Meta:
|
|
|
|
model = ModelSwitch
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = "__all__"
|
2017-10-26 03:07:11 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
|
|
|
super(EditModelSwitchForm, self).__init__(*args, prefix=prefix, **kwargs)
|
|
|
|
instance = kwargs.get("instance", None)
|
2018-04-08 02:01:32 +00:00
|
|
|
if instance:
|
2019-11-04 16:55:03 +00:00
|
|
|
self.initial["members"] = Switch.objects.filter(model=instance)
|
2018-04-08 02:01:32 +00:00
|
|
|
|
|
|
|
def save(self, commit=True):
|
|
|
|
instance = super().save(commit)
|
2019-11-04 16:55:03 +00:00
|
|
|
instance.switch_set = self.cleaned_data["members"]
|
2018-04-08 02:01:32 +00:00
|
|
|
return instance
|
2017-10-26 03:07:11 +00:00
|
|
|
|
|
|
|
|
2018-03-31 15:18:39 +00:00
|
|
|
class EditConstructorSwitchForm(FormRevMixin, ModelForm):
|
2020-04-29 13:00:47 +00:00
|
|
|
"""Form used to edit switch constructors."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2017-10-26 03:07:11 +00:00
|
|
|
class Meta:
|
|
|
|
model = ConstructorSwitch
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = "__all__"
|
2017-10-26 03:07:11 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
|
|
|
super(EditConstructorSwitchForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2018-04-07 18:45:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
class EditSwitchBayForm(FormRevMixin, ModelForm):
|
2020-04-29 13:00:47 +00:00
|
|
|
"""Form used to edit switch bays."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
|
|
|
members = forms.ModelMultipleChoiceField(Switch.objects.all(), required=False)
|
2018-04-14 00:20:44 +00:00
|
|
|
|
2018-04-07 18:45:29 +00:00
|
|
|
class Meta:
|
|
|
|
model = SwitchBay
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = "__all__"
|
2018-04-07 18:45:29 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2018-04-07 18:45:29 +00:00
|
|
|
super(EditSwitchBayForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2019-11-04 16:55:03 +00:00
|
|
|
instance = kwargs.get("instance", None)
|
2018-04-08 02:01:32 +00:00
|
|
|
if instance:
|
2019-11-04 16:55:03 +00:00
|
|
|
self.initial["members"] = Switch.objects.filter(switchbay=instance)
|
2018-04-08 02:01:32 +00:00
|
|
|
|
|
|
|
def save(self, commit=True):
|
|
|
|
instance = super().save(commit)
|
2019-11-04 16:55:03 +00:00
|
|
|
instance.switch_set = self.cleaned_data["members"]
|
2018-04-08 02:01:32 +00:00
|
|
|
return instance
|
2018-04-07 18:45:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
class EditBuildingForm(FormRevMixin, ModelForm):
|
2020-04-29 13:00:47 +00:00
|
|
|
"""Form used to edit buildings."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2018-04-07 18:45:29 +00:00
|
|
|
class Meta:
|
|
|
|
model = Building
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = "__all__"
|
2018-04-07 18:45:29 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2018-04-07 18:45:29 +00:00
|
|
|
super(EditBuildingForm, self).__init__(*args, prefix=prefix, **kwargs)
|
2018-05-26 22:36:25 +00:00
|
|
|
|
2019-02-18 20:11:51 +00:00
|
|
|
|
|
|
|
class EditDormitoryForm(FormRevMixin, ModelForm):
|
2020-04-29 13:00:47 +00:00
|
|
|
"""Form used to edit dormitories."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2019-02-18 20:11:51 +00:00
|
|
|
class Meta:
|
|
|
|
model = Dormitory
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = "__all__"
|
2019-02-18 20:11:51 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2019-02-18 20:11:51 +00:00
|
|
|
super(EditDormitoryForm, self).__init__(*args, prefix=prefix, **kwargs)
|
|
|
|
|
|
|
|
|
2018-05-26 22:36:25 +00:00
|
|
|
class EditPortProfileForm(FormRevMixin, ModelForm):
|
2020-04-29 13:00:47 +00:00
|
|
|
"""Form used to edit port profiles."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2018-05-26 22:36:25 +00:00
|
|
|
class Meta:
|
|
|
|
model = PortProfile
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = "__all__"
|
2018-05-26 22:36:25 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
|
|
|
super(EditPortProfileForm, self).__init__(*args, prefix=prefix, **kwargs)
|
|
|
|
|
2018-05-26 22:36:25 +00:00
|
|
|
|
2018-12-30 16:04:21 +00:00
|
|
|
class EditModuleForm(FormRevMixin, ModelForm):
|
2020-04-29 13:00:47 +00:00
|
|
|
"""Form used to add and edit switch modules."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2018-12-30 16:04:21 +00:00
|
|
|
class Meta:
|
|
|
|
model = ModuleSwitch
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = "__all__"
|
2018-12-30 16:04:21 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2018-12-30 16:04:21 +00:00
|
|
|
super(EditModuleForm, self).__init__(*args, prefix=prefix, **kwargs)
|
|
|
|
|
|
|
|
|
2018-12-30 17:20:06 +00:00
|
|
|
class EditSwitchModuleForm(FormRevMixin, ModelForm):
|
2020-04-29 13:00:47 +00:00
|
|
|
"""Form used to add and edit modules related to a switch."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2018-12-30 17:20:06 +00:00
|
|
|
class Meta:
|
|
|
|
model = ModuleOnSwitch
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = "__all__"
|
2018-12-30 17:20:06 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2019-11-04 16:55:03 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
2018-12-30 17:20:06 +00:00
|
|
|
super(EditSwitchModuleForm, self).__init__(*args, prefix=prefix, **kwargs)
|