77 lines
3.3 KiB
Python
77 lines
3.3 KiB
Python
|
from django import forms
|
||
|
from django.core.validators import RegexValidator
|
||
|
from django.utils.translation import ugettext_lazy as _
|
||
|
|
||
|
from orchestra.core import validators
|
||
|
from orchestra.forms.widgets import SpanWidget
|
||
|
from orchestra.plugins.forms import PluginDataForm
|
||
|
from orchestra.utils.python import random_ascii
|
||
|
|
||
|
|
||
|
class SaaSBaseForm(PluginDataForm):
|
||
|
site_url = forms.CharField(label=_("Site URL"), widget=SpanWidget(), required=False)
|
||
|
|
||
|
class Meta:
|
||
|
exclude = ('database',)
|
||
|
readonly_fields = ('site_url',)
|
||
|
|
||
|
def __init__(self, *args, **kwargs):
|
||
|
super(SaaSBaseForm, self).__init__(*args, **kwargs)
|
||
|
self.is_change = bool(self.instance and self.instance.pk)
|
||
|
if self.is_change:
|
||
|
site_domain = self.instance.get_site_domain()
|
||
|
else:
|
||
|
site_domain = self.plugin.site_domain
|
||
|
if site_domain:
|
||
|
site_link = '<a href="http://%s">%s</a>' % (site_domain, site_domain)
|
||
|
else:
|
||
|
site_link = '<site_name>.%s' % self.plugin.site_base_domain
|
||
|
self.fields['site_url'].widget.display = site_link
|
||
|
self.fields['name'].label = _("Site name") if self.plugin.site_base_domain else _("Username")
|
||
|
|
||
|
|
||
|
class SaaSPasswordForm(SaaSBaseForm):
|
||
|
password = forms.CharField(label=_("Password"), required=False,
|
||
|
widget=SpanWidget(display='<strong>Unknown password</strong>'),
|
||
|
validators=[
|
||
|
validators.validate_password,
|
||
|
RegexValidator(r'^[^"\'\\]+$',
|
||
|
_('Enter a valid password. '
|
||
|
'This value may contain any ascii character except for '
|
||
|
' \'/"/\\/ characters.'), 'invalid'),
|
||
|
],
|
||
|
help_text=_("Passwords are not stored, so there is no way to see this "
|
||
|
"service's password, but you can change the password using "
|
||
|
"<a href=\"password/\">this form</a>."))
|
||
|
password1 = forms.CharField(label=_("Password"), validators=[validators.validate_password],
|
||
|
widget=forms.PasswordInput)
|
||
|
password2 = forms.CharField(label=_("Password confirmation"),
|
||
|
widget=forms.PasswordInput,
|
||
|
help_text=_("Enter the same password as above, for verification."))
|
||
|
|
||
|
def __init__(self, *args, **kwargs):
|
||
|
super(SaaSPasswordForm, self).__init__(*args, **kwargs)
|
||
|
if self.is_change:
|
||
|
self.fields['password1'].required = False
|
||
|
self.fields['password1'].widget = forms.HiddenInput()
|
||
|
self.fields['password2'].required = False
|
||
|
self.fields['password2'].widget = forms.HiddenInput()
|
||
|
else:
|
||
|
self.fields['password'].widget = forms.HiddenInput()
|
||
|
self.fields['password1'].help_text = _("Suggestion: %s") % random_ascii(10)
|
||
|
|
||
|
def clean_password2(self):
|
||
|
if not self.is_change:
|
||
|
password1 = self.cleaned_data.get("password1")
|
||
|
password2 = self.cleaned_data.get("password2")
|
||
|
if password1 and password2 and password1 != password2:
|
||
|
msg = _("The two password fields didn't match.")
|
||
|
raise forms.ValidationError(msg)
|
||
|
return password2
|
||
|
|
||
|
def save(self, commit=True):
|
||
|
obj = super(SoftwareServiceForm, self).save(commit=commit)
|
||
|
if not self.is_change:
|
||
|
obj.set_password(self.cleaned_data["password1"])
|
||
|
return obj
|