8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-02 07:52:23 +00:00
re2o/topologie/forms.py

320 lines
9.8 KiB
Python
Raw Normal View History

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
# 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.
"""
Un forms le plus simple possible pour les objets topologie de re2o.
Permet de créer et supprimer : un Port de switch, relié à un switch.
Permet de créer des stacks et d'y ajouter des switchs (StackForm)
Permet de créer, supprimer et editer un switch (EditSwitchForm,
NewSwitchForm)
"""
2017-01-15 23:01:18 +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
from machines.models import Interface
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,
ModuleSwitch,
ModuleOnSwitch,
2018-03-23 23:50:11 +00:00
)
2018-04-14 00:20:44 +00:00
class PortForm(FormRevMixin, ModelForm):
"""Formulaire pour la création d'un port d'un switch
Relié directement au modèle port"""
class Meta:
model = Port
fields = "__all__"
def __init__(self, *args, **kwargs):
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
super(PortForm, self).__init__(*args, prefix=prefix, **kwargs)
class EditPortForm(FormRevMixin, ModelForm):
"""Form pour l'édition d'un port de switche : changement des reglages
radius ou vlan, ou attribution d'une chambre, autre port ou machine
Un port est relié à une chambre, un autre port (uplink) ou une machine
(serveur ou borne), mutuellement exclusif
Optimisation sur les queryset pour machines et port_related pour
optimiser le temps de chargement avec select_related (vraiment
lent sans)"""
class Meta(PortForm.Meta):
fields = [
"room",
"related",
"machine_interface",
"custom_profile",
"state",
"details",
]
2016-07-06 21:29:31 +00:00
def __init__(self, *args, **kwargs):
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
super(EditPortForm, self).__init__(*args, prefix=prefix, **kwargs)
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
)
2016-11-24 02:11:04 +00:00
class AddPortForm(FormRevMixin, ModelForm):
"""Permet d'ajouter un port de switch. Voir EditPortForm pour plus
d'informations"""
2016-07-06 21:29:31 +00:00
class Meta(PortForm.Meta):
2018-04-14 00:20:44 +00:00
fields = [
"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
def __init__(self, *args, **kwargs):
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
super(AddPortForm, self).__init__(*args, prefix=prefix, **kwargs)
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
)
class StackForm(FormRevMixin, ModelForm):
"""Permet d'edition d'une stack : stack_id, et switches membres
de la stack"""
class Meta:
model = Stack
fields = "__all__"
def __init__(self, *args, **kwargs):
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
super(StackForm, self).__init__(*args, prefix=prefix, **kwargs)
2018-03-26 01:09:42 +00:00
class AddAccessPointForm(NewMachineForm):
2018-03-23 23:50:11 +00:00
"""Formulaire pour la création d'une borne
Relié directement au modèle borne"""
2018-03-23 23:50:11 +00:00
class Meta:
2018-03-25 22:08:24 +00:00
model = AccessPoint
fields = ["location", "name"]
2018-03-23 23:50:11 +00:00
2018-03-26 01:09:42 +00:00
class EditAccessPointForm(EditMachineForm):
"""Edition d'une borne. Edition complète"""
2018-03-23 23:50:11 +00:00
class Meta:
2018-03-25 22:08:24 +00:00
model = AccessPoint
fields = "__all__"
2018-03-23 23:50:11 +00:00
2018-03-26 03:12:01 +00:00
class EditSwitchForm(EditMachineForm):
"""Permet d'éditer un switch : nom et nombre de ports"""
2016-07-06 21:29:31 +00:00
class Meta:
model = Switch
fields = "__all__"
2016-07-06 21:29:31 +00:00
2018-03-26 03:12:01 +00:00
class NewSwitchForm(NewMachineForm):
"""Permet de créer un switch : emplacement, paramètres machine,
membre d'un stack (option), nombre de ports (number)"""
2016-10-26 12:05:40 +00:00
class Meta(EditSwitchForm.Meta):
fields = ["name", "switchbay", "number", "stack", "stack_member_id"]
2016-07-06 21:29:31 +00:00
class EditRoomForm(FormRevMixin, ModelForm):
"""Permet d'éediter le nom et commentaire d'une prise murale"""
2016-07-19 00:30:52 +00:00
class Meta:
model = Room
fields = "__all__"
def __init__(self, *args, **kwargs):
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
super(EditRoomForm, self).__init__(*args, prefix=prefix, **kwargs)
class CreatePortsForm(forms.Form):
"""Permet de créer une liste de ports pour un switch."""
2018-08-05 16:48:56 +00:00
begin = forms.IntegerField(label=_("Start:"), min_value=0)
end = forms.IntegerField(label=_("End:"), min_value=0)
class EditModelSwitchForm(FormRevMixin, ModelForm):
2017-10-26 03:07:11 +00:00
"""Permet d'éediter un modèle de switch : nom et constructeur"""
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
fields = "__all__"
2017-10-26 03:07:11 +00:00
def __init__(self, *args, **kwargs):
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
super(EditModelSwitchForm, self).__init__(*args, prefix=prefix, **kwargs)
instance = kwargs.get("instance", None)
if instance:
self.initial["members"] = Switch.objects.filter(model=instance)
def save(self, commit=True):
instance = super().save(commit)
instance.switch_set = self.cleaned_data["members"]
return instance
2017-10-26 03:07:11 +00:00
class EditConstructorSwitchForm(FormRevMixin, ModelForm):
2017-10-26 03:07:11 +00:00
"""Permet d'éediter le nom d'un constructeur"""
2017-10-26 03:07:11 +00:00
class Meta:
model = ConstructorSwitch
fields = "__all__"
2017-10-26 03:07:11 +00:00
def __init__(self, *args, **kwargs):
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):
"""Permet d'éditer une baie de brassage"""
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
fields = "__all__"
2018-04-07 18:45:29 +00:00
def __init__(self, *args, **kwargs):
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
2018-04-07 18:45:29 +00:00
super(EditSwitchBayForm, self).__init__(*args, prefix=prefix, **kwargs)
instance = kwargs.get("instance", None)
if instance:
self.initial["members"] = Switch.objects.filter(switchbay=instance)
def save(self, commit=True):
instance = super().save(commit)
instance.switch_set = self.cleaned_data["members"]
return instance
2018-04-07 18:45:29 +00:00
class EditBuildingForm(FormRevMixin, ModelForm):
"""Permet d'éditer le batiment"""
2018-04-07 18:45:29 +00:00
class Meta:
model = Building
fields = "__all__"
2018-04-07 18:45:29 +00:00
def __init__(self, *args, **kwargs):
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):
2019-02-20 22:25:15 +00:00
"""Enable dormitory edition"""
2019-02-18 20:11:51 +00:00
class Meta:
model = Dormitory
fields = "__all__"
2019-02-18 20:11:51 +00:00
def __init__(self, *args, **kwargs):
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):
"""Form to edit a port profile"""
2018-05-26 22:36:25 +00:00
class Meta:
model = PortProfile
fields = "__all__"
2018-05-26 22:36:25 +00:00
def __init__(self, *args, **kwargs):
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
super(EditPortProfileForm, self).__init__(*args, prefix=prefix, **kwargs)
2018-05-26 22:36:25 +00:00
class EditModuleForm(FormRevMixin, ModelForm):
"""Add and edit module instance"""
class Meta:
model = ModuleSwitch
fields = "__all__"
def __init__(self, *args, **kwargs):
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
super(EditModuleForm, self).__init__(*args, prefix=prefix, **kwargs)
class EditSwitchModuleForm(FormRevMixin, ModelForm):
"""Add/edit a switch to a module"""
class Meta:
model = ModuleOnSwitch
fields = "__all__"
def __init__(self, *args, **kwargs):
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
super(EditSwitchModuleForm, self).__init__(*args, prefix=prefix, **kwargs)