2014-05-08 16:59:35 +00:00
|
|
|
from django import forms
|
2014-09-26 15:05:20 +00:00
|
|
|
from django.contrib.auth.forms import ReadOnlyPasswordHashField
|
2015-06-04 14:15:17 +00:00
|
|
|
from django.core.exceptions import ValidationError
|
2014-05-08 16:59:35 +00:00
|
|
|
from django.utils.html import format_html
|
|
|
|
from django.utils.safestring import mark_safe
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
|
|
from orchestra.core.validators import validate_password
|
|
|
|
|
2014-10-14 13:50:19 +00:00
|
|
|
from .models import DatabaseUser, Database
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
class DatabaseUserCreationForm(forms.ModelForm):
|
|
|
|
password1 = forms.CharField(label=_("Password"), required=False,
|
|
|
|
widget=forms.PasswordInput, validators=[validate_password])
|
|
|
|
password2 = forms.CharField(label=_("Password confirmation"), required=False,
|
|
|
|
widget=forms.PasswordInput,
|
|
|
|
help_text=_("Enter the same password as above, for verification."))
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = DatabaseUser
|
|
|
|
fields = ('username', 'account', 'type')
|
|
|
|
|
|
|
|
def clean_password2(self):
|
|
|
|
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.")
|
2015-06-04 14:15:17 +00:00
|
|
|
raise ValidationError(msg)
|
2014-05-08 16:59:35 +00:00
|
|
|
return password2
|
|
|
|
|
|
|
|
|
|
|
|
class DatabaseCreationForm(DatabaseUserCreationForm):
|
|
|
|
username = forms.RegexField(label=_("Username"), max_length=30,
|
|
|
|
required=False, regex=r'^[\w.@+-]+$',
|
|
|
|
help_text=_("Required. 30 characters or fewer. Letters, digits and "
|
|
|
|
"@/./+/-/_ only."),
|
|
|
|
error_messages={
|
|
|
|
'invalid': _("This value may contain only letters, numbers and "
|
|
|
|
"@/./+/-/_ characters.")})
|
|
|
|
user = forms.ModelChoiceField(required=False, queryset=DatabaseUser.objects)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = Database
|
|
|
|
fields = ('username', 'account', 'type')
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(DatabaseCreationForm, self).__init__(*args, **kwargs)
|
2015-06-04 14:15:17 +00:00
|
|
|
account_id = self.initial.get('account', self.initial_account)
|
2014-05-08 16:59:35 +00:00
|
|
|
if account_id:
|
2015-06-17 10:34:14 +00:00
|
|
|
qs = self.fields['user'].queryset.filter(account=account_id).order_by('username')
|
2014-05-08 16:59:35 +00:00
|
|
|
choices = [ (u.pk, "%s (%s)" % (u, u.get_type_display())) for u in qs ]
|
|
|
|
self.fields['user'].queryset = qs
|
|
|
|
self.fields['user'].choices = [(None, '--------'),] + choices
|
|
|
|
|
2015-06-04 14:15:17 +00:00
|
|
|
def clean_username(self):
|
|
|
|
username = self.cleaned_data.get('username')
|
|
|
|
if DatabaseUser.objects.filter(username=username).exists():
|
|
|
|
raise ValidationError("Provided username already exists.")
|
|
|
|
|
2014-05-08 16:59:35 +00:00
|
|
|
def clean_password2(self):
|
|
|
|
username = self.cleaned_data.get('username')
|
|
|
|
password1 = self.cleaned_data.get('password1')
|
|
|
|
password2 = self.cleaned_data.get('password2')
|
|
|
|
if username and not (password1 and password2):
|
2015-06-04 14:15:17 +00:00
|
|
|
raise ValidationError(_("Missing password"))
|
2014-05-08 16:59:35 +00:00
|
|
|
if password1 and password2 and password1 != password2:
|
|
|
|
msg = _("The two password fields didn't match.")
|
2015-06-04 14:15:17 +00:00
|
|
|
raise ValidationError(msg)
|
2014-05-08 16:59:35 +00:00
|
|
|
return password2
|
|
|
|
|
|
|
|
def clean_user(self):
|
|
|
|
user = self.cleaned_data.get('user')
|
|
|
|
if user and user.type != self.cleaned_data.get('type'):
|
|
|
|
msg = _("Database type and user type doesn't match")
|
2015-06-04 14:15:17 +00:00
|
|
|
raise ValidationError(msg)
|
2014-05-08 16:59:35 +00:00
|
|
|
return user
|
|
|
|
|
|
|
|
def clean(self):
|
|
|
|
cleaned_data = super(DatabaseCreationForm, self).clean()
|
|
|
|
if 'user' in cleaned_data and 'username' in cleaned_data:
|
|
|
|
msg = _("Use existing user or create a new one?")
|
|
|
|
if cleaned_data['user'] and self.cleaned_data['username']:
|
2015-06-04 14:15:17 +00:00
|
|
|
raise ValidationError(msg)
|
2014-05-08 16:59:35 +00:00
|
|
|
elif not (cleaned_data['username'] or cleaned_data['user']):
|
2015-06-04 14:15:17 +00:00
|
|
|
raise ValidationError(msg)
|
2014-05-08 16:59:35 +00:00
|
|
|
return cleaned_data
|
|
|
|
|
|
|
|
|
|
|
|
class ReadOnlySQLPasswordHashField(ReadOnlyPasswordHashField):
|
|
|
|
class ReadOnlyPasswordHashWidget(forms.Widget):
|
|
|
|
def render(self, name, value, attrs):
|
|
|
|
original = ReadOnlyPasswordHashField.widget().render(name, value, attrs)
|
|
|
|
if 'Invalid' not in original:
|
|
|
|
return original
|
|
|
|
encoded = value
|
|
|
|
if not encoded:
|
|
|
|
summary = mark_safe("<strong>%s</strong>" % _("No password set."))
|
|
|
|
else:
|
|
|
|
size = len(value)
|
2015-04-03 13:03:08 +00:00
|
|
|
summary = value[:int(size/2)] + '*'*int(size-size/2)
|
2014-05-08 16:59:35 +00:00
|
|
|
summary = "<strong>hash</strong>: %s" % summary
|
|
|
|
if value.startswith('*'):
|
|
|
|
summary = "<strong>algorithm</strong>: sha1_bin_hex %s" % summary
|
|
|
|
return format_html("<div>%s</div>" % summary)
|
|
|
|
widget = ReadOnlyPasswordHashWidget
|
|
|
|
|
|
|
|
|
|
|
|
class DatabaseUserChangeForm(forms.ModelForm):
|
|
|
|
password = ReadOnlySQLPasswordHashField(label=_("Password"),
|
|
|
|
help_text=_("Raw passwords are not stored, so there is no way to see "
|
|
|
|
"this user's password, but you can change the password "
|
|
|
|
"using <a href=\"password/\">this form</a>."))
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = DatabaseUser
|
2014-07-08 15:19:15 +00:00
|
|
|
fields = ('username', 'password', 'type', 'account')
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
def clean_password(self):
|
|
|
|
return self.initial["password"]
|