2023-11-21 11:48:39 +00:00
|
|
|
|
from django import forms
|
|
|
|
|
from django.contrib.auth.forms import AuthenticationForm
|
|
|
|
|
from django.core.exceptions import ValidationError
|
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
2023-11-29 11:16:17 +00:00
|
|
|
|
from orchestra.contrib.domains.models import Domain, Record
|
2023-11-23 11:50:55 +00:00
|
|
|
|
from orchestra.contrib.mailboxes.models import Address, Mailbox
|
2023-11-29 14:03:12 +00:00
|
|
|
|
from orchestra.contrib.musician.validators import ValidateZoneMixin
|
2023-11-23 11:50:55 +00:00
|
|
|
|
|
2023-11-21 11:48:39 +00:00
|
|
|
|
from . import api
|
|
|
|
|
|
2023-11-21 12:56:09 +00:00
|
|
|
|
|
2023-11-21 11:48:39 +00:00
|
|
|
|
class LoginForm(AuthenticationForm):
|
|
|
|
|
|
|
|
|
|
def clean(self):
|
|
|
|
|
username = self.cleaned_data.get('username')
|
|
|
|
|
password = self.cleaned_data.get('password')
|
|
|
|
|
|
|
|
|
|
if username is not None and password:
|
2023-11-21 12:56:09 +00:00
|
|
|
|
orchestra = api.Orchestra(self.request, username=username, password=password)
|
2023-11-21 11:48:39 +00:00
|
|
|
|
|
2023-11-21 12:56:09 +00:00
|
|
|
|
if orchestra.user is None:
|
2023-11-21 11:48:39 +00:00
|
|
|
|
raise self.get_invalid_login_error()
|
|
|
|
|
else:
|
|
|
|
|
self.username = username
|
2023-11-21 12:56:09 +00:00
|
|
|
|
self.user = orchestra.user
|
2023-11-21 11:48:39 +00:00
|
|
|
|
|
|
|
|
|
return self.cleaned_data
|
|
|
|
|
|
|
|
|
|
|
2023-11-23 11:50:55 +00:00
|
|
|
|
class MailForm(forms.ModelForm):
|
|
|
|
|
class Meta:
|
|
|
|
|
model = Address
|
|
|
|
|
fields = ("name", "domain", "mailboxes", "forward")
|
2023-11-21 11:48:39 +00:00
|
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2023-11-23 11:50:55 +00:00
|
|
|
|
self.user = kwargs.pop('user')
|
2023-11-21 11:48:39 +00:00
|
|
|
|
super().__init__(*args, **kwargs)
|
2023-11-23 11:50:55 +00:00
|
|
|
|
self.fields['domain'].queryset = Domain.objects.filter(account=self.user)
|
|
|
|
|
self.fields['mailboxes'].queryset = Mailbox.objects.filter(account=self.user)
|
2023-11-21 11:48:39 +00:00
|
|
|
|
|
|
|
|
|
def clean(self):
|
|
|
|
|
cleaned_data = super().clean()
|
|
|
|
|
if not cleaned_data.get('mailboxes') and not cleaned_data.get('forward'):
|
|
|
|
|
raise ValidationError("A mailbox or forward address should be provided.")
|
|
|
|
|
return cleaned_data
|
|
|
|
|
|
2023-11-23 11:50:55 +00:00
|
|
|
|
def save(self, commit=True):
|
|
|
|
|
instance = super().save(commit=False)
|
|
|
|
|
instance.account = self.user
|
|
|
|
|
if commit:
|
|
|
|
|
super().save(commit=True)
|
|
|
|
|
return instance
|
2023-11-21 11:48:39 +00:00
|
|
|
|
|
|
|
|
|
|
2023-11-23 11:50:55 +00:00
|
|
|
|
class MailboxChangePasswordForm(forms.ModelForm):
|
2023-11-21 11:48:39 +00:00
|
|
|
|
error_messages = {
|
|
|
|
|
'password_mismatch': _('The two password fields didn’t match.'),
|
|
|
|
|
}
|
|
|
|
|
password = forms.CharField(
|
|
|
|
|
label=_("Password"),
|
|
|
|
|
strip=False,
|
|
|
|
|
widget=forms.PasswordInput(attrs={'autocomplete': 'new-password'}),
|
|
|
|
|
)
|
|
|
|
|
password2 = forms.CharField(
|
|
|
|
|
label=_("Password confirmation"),
|
|
|
|
|
widget=forms.PasswordInput(attrs={'autocomplete': 'new-password'}),
|
|
|
|
|
strip=False,
|
|
|
|
|
help_text=_("Enter the same password as before, for verification."),
|
|
|
|
|
)
|
|
|
|
|
|
2023-11-23 11:50:55 +00:00
|
|
|
|
class Meta:
|
|
|
|
|
fields = ("password",)
|
|
|
|
|
model = Mailbox
|
|
|
|
|
|
2023-11-21 11:48:39 +00:00
|
|
|
|
def clean_password2(self):
|
|
|
|
|
password = self.cleaned_data.get("password")
|
|
|
|
|
password2 = self.cleaned_data.get("password2")
|
|
|
|
|
if password and password2 and password != password2:
|
|
|
|
|
raise ValidationError(
|
|
|
|
|
self.error_messages['password_mismatch'],
|
|
|
|
|
code='password_mismatch',
|
|
|
|
|
)
|
|
|
|
|
return password2
|
|
|
|
|
|
|
|
|
|
|
2023-11-23 11:50:55 +00:00
|
|
|
|
class MailboxCreateForm(forms.ModelForm):
|
2023-11-21 11:48:39 +00:00
|
|
|
|
error_messages = {
|
|
|
|
|
'password_mismatch': _('The two password fields didn’t match.'),
|
|
|
|
|
}
|
|
|
|
|
name = forms.CharField()
|
|
|
|
|
password = forms.CharField(
|
|
|
|
|
label=_("Password"),
|
|
|
|
|
strip=False,
|
|
|
|
|
widget=forms.PasswordInput(attrs={'autocomplete': 'new-password'}),
|
|
|
|
|
)
|
|
|
|
|
password2 = forms.CharField(
|
|
|
|
|
label=_("Password confirmation"),
|
|
|
|
|
widget=forms.PasswordInput(attrs={'autocomplete': 'new-password'}),
|
|
|
|
|
strip=False,
|
|
|
|
|
help_text=_("Enter the same password as before, for verification."),
|
|
|
|
|
)
|
2023-11-23 11:50:55 +00:00
|
|
|
|
addresses = forms.ModelMultipleChoiceField(queryset=Address.objects.none(), required=False)
|
|
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
fields = ("name", "password", "password2", "addresses")
|
|
|
|
|
model = Mailbox
|
2023-11-21 11:48:39 +00:00
|
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2023-11-23 11:50:55 +00:00
|
|
|
|
user = kwargs.pop('user')
|
2023-11-21 11:48:39 +00:00
|
|
|
|
super().__init__(*args, **kwargs)
|
2023-11-23 11:50:55 +00:00
|
|
|
|
self.fields['addresses'].queryset = Address.objects.filter(account=user)
|
|
|
|
|
self.user = user
|
2023-11-21 11:48:39 +00:00
|
|
|
|
|
|
|
|
|
def clean_password2(self):
|
|
|
|
|
password = self.cleaned_data.get("password")
|
|
|
|
|
password2 = self.cleaned_data.get("password2")
|
|
|
|
|
if password and password2 and password != password2:
|
|
|
|
|
raise ValidationError(
|
|
|
|
|
self.error_messages['password_mismatch'],
|
|
|
|
|
code='password_mismatch',
|
|
|
|
|
)
|
|
|
|
|
return password2
|
|
|
|
|
|
2023-11-23 11:50:55 +00:00
|
|
|
|
def save(self, commit=True):
|
|
|
|
|
instance = super().save(commit=False)
|
|
|
|
|
instance.account = self.user
|
|
|
|
|
if commit:
|
|
|
|
|
super().save(commit=True)
|
|
|
|
|
return instance
|
2023-11-21 11:48:39 +00:00
|
|
|
|
|
|
|
|
|
|
2023-11-23 11:50:55 +00:00
|
|
|
|
class MailboxUpdateForm(forms.ModelForm):
|
2023-11-21 11:48:39 +00:00
|
|
|
|
addresses = forms.MultipleChoiceField(required=False)
|
2023-11-29 11:16:17 +00:00
|
|
|
|
|
2023-11-23 11:50:55 +00:00
|
|
|
|
class Meta:
|
|
|
|
|
fields = ('addresses',)
|
|
|
|
|
model = Mailbox
|
2023-11-29 11:16:17 +00:00
|
|
|
|
|
|
|
|
|
|
2023-11-29 14:03:12 +00:00
|
|
|
|
class RecordCreateForm(ValidateZoneMixin, forms.ModelForm):
|
2023-11-29 11:16:17 +00:00
|
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
model = Record
|
|
|
|
|
fields = ("ttl", "type", "value")
|
|
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
|
self.domain = kwargs.pop('domain')
|
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
def save(self, commit=True):
|
|
|
|
|
instance = super().save(commit=False)
|
|
|
|
|
instance.domain = self.domain
|
|
|
|
|
if commit:
|
|
|
|
|
super().save(commit=True)
|
|
|
|
|
return instance
|
2023-11-29 11:42:54 +00:00
|
|
|
|
|
|
|
|
|
|
2023-11-29 14:03:12 +00:00
|
|
|
|
class RecordUpdateForm(ValidateZoneMixin, forms.ModelForm):
|
2023-11-29 11:42:54 +00:00
|
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
model = Record
|
|
|
|
|
fields = ("ttl", "type", "value")
|
2023-11-29 14:03:12 +00:00
|
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
self.domain = self.instance.domain
|