2014-05-19 22:28:25 +02:00
|
|
|
from django.utils.html import format_html
|
2014-05-18 20:02:39 +02:00
|
|
|
from django.contrib import admin
|
2014-05-19 22:28:25 +02:00
|
|
|
from django import forms
|
|
|
|
from django.forms.util import flatatt
|
|
|
|
from django.utils.translation import ugettext as _
|
2014-05-18 20:02:39 +02:00
|
|
|
|
2014-05-19 22:28:25 +02:00
|
|
|
from .models import (
|
2014-05-24 14:58:54 +02:00
|
|
|
MailAddress,
|
|
|
|
MailAddressForward,
|
|
|
|
MailAddressMailbox,
|
2014-05-19 22:28:25 +02:00
|
|
|
Mailbox,
|
|
|
|
)
|
|
|
|
|
|
|
|
PASSWORD_MISMATCH_ERROR = _("Passwords don't match")
|
|
|
|
|
|
|
|
|
|
|
|
class ReadOnlyPasswordHashWidget(forms.Widget):
|
|
|
|
def render(self, name, value, attrs):
|
|
|
|
final_attrs = self.build_attrs(attrs)
|
|
|
|
summary = format_html("<strong>{0}</strong>: {1} ",
|
|
|
|
_('Hash'), value)
|
|
|
|
return format_html("<div{0}>{1}</div>", flatatt(final_attrs), summary)
|
|
|
|
|
|
|
|
|
|
|
|
class ReadOnlyPasswordHashField(forms.Field):
|
|
|
|
widget = ReadOnlyPasswordHashWidget
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
kwargs.setdefault("required", False)
|
|
|
|
super(ReadOnlyPasswordHashField, self).__init__(*args, **kwargs)
|
|
|
|
|
|
|
|
def bound_data(self, data, initial):
|
|
|
|
return initial
|
|
|
|
|
|
|
|
def _has_changed(self, initial, data):
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
class MailboxCreationForm(forms.ModelForm):
|
|
|
|
"""
|
|
|
|
A form for creating mailboxes.
|
|
|
|
|
|
|
|
"""
|
|
|
|
password1 = forms.CharField(label=_('Password'),
|
|
|
|
widget=forms.PasswordInput)
|
|
|
|
password2 = forms.CharField(label=_('Password (again)'),
|
|
|
|
widget=forms.PasswordInput)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = Mailbox
|
2014-05-24 22:56:33 +02:00
|
|
|
fields = ('osuser',)
|
2014-05-19 22:28:25 +02:00
|
|
|
|
|
|
|
def clean_password2(self):
|
|
|
|
"""
|
|
|
|
Check that the two password entries match.
|
|
|
|
|
|
|
|
"""
|
|
|
|
password1 = self.cleaned_data.get('password1')
|
|
|
|
password2 = self.cleaned_data.get('password2')
|
|
|
|
if password1 and password2 and password1 != password2:
|
|
|
|
raise forms.ValidationError(PASSWORD_MISMATCH_ERROR)
|
|
|
|
return password2
|
|
|
|
|
|
|
|
def save(self, commit=True):
|
|
|
|
"""
|
|
|
|
Save the provided password in hashed format.
|
|
|
|
|
|
|
|
"""
|
|
|
|
mailbox = super(MailboxCreationForm, self).save(commit=False)
|
2014-12-27 00:24:05 +01:00
|
|
|
mailbox.username = Mailbox.objects.get_next_mailbox_name(
|
|
|
|
mailbox.osuser)
|
2014-05-19 22:28:25 +02:00
|
|
|
mailbox.set_password(self.cleaned_data['password1'])
|
|
|
|
if commit:
|
|
|
|
mailbox.save()
|
|
|
|
return mailbox
|
|
|
|
|
|
|
|
|
|
|
|
class MailboxChangeForm(forms.ModelForm):
|
|
|
|
"""
|
|
|
|
A form for updating mailboxes.
|
|
|
|
|
|
|
|
"""
|
|
|
|
password = ReadOnlyPasswordHashField()
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = Mailbox
|
2014-05-24 22:56:33 +02:00
|
|
|
fields = ('username', 'password', 'osuser', 'active')
|
2014-05-19 22:28:25 +02:00
|
|
|
|
|
|
|
def clean_password(self):
|
|
|
|
return self.initial['password']
|
|
|
|
|
|
|
|
|
2014-05-24 14:58:54 +02:00
|
|
|
class ActivationChangeMixin(object):
|
|
|
|
def activate(self, request, queryset):
|
|
|
|
queryset.update(active=True)
|
|
|
|
|
|
|
|
def deactivate(self, request, queryset):
|
|
|
|
queryset.update(active=False)
|
|
|
|
|
|
|
|
activate.short_description = _('Activate')
|
|
|
|
deactivate.short_description = _('Deactivate')
|
|
|
|
|
|
|
|
|
|
|
|
class MailboxAdmin(ActivationChangeMixin, admin.ModelAdmin):
|
2014-05-19 22:28:25 +02:00
|
|
|
"""
|
|
|
|
Custom admin page for mailboxes.
|
|
|
|
|
|
|
|
"""
|
|
|
|
form = MailboxChangeForm
|
|
|
|
add_form = MailboxCreationForm
|
|
|
|
|
2014-05-24 14:58:54 +02:00
|
|
|
actions = ['activate', 'deactivate']
|
|
|
|
|
2014-05-24 22:56:33 +02:00
|
|
|
list_display = ('username', 'osuser', 'active')
|
2015-01-17 12:25:54 +01:00
|
|
|
list_filter = ('active', 'osuser')
|
2014-05-19 22:28:25 +02:00
|
|
|
fieldsets = (
|
|
|
|
(None, {
|
2014-12-27 00:04:02 +01:00
|
|
|
'fields': ('osuser', 'username', 'password', 'active')}),
|
2014-05-19 22:28:25 +02:00
|
|
|
)
|
|
|
|
add_fieldsets = (
|
|
|
|
(None, {
|
|
|
|
'classes': ('wide',),
|
2014-12-27 00:24:05 +01:00
|
|
|
'fields': ('osuser', 'password1', 'password2')}),
|
2014-05-19 22:28:25 +02:00
|
|
|
)
|
2014-05-23 23:27:06 +02:00
|
|
|
search_fields = ('username',)
|
|
|
|
ordering = ('username',)
|
2014-05-19 22:28:25 +02:00
|
|
|
filter_horizontal = ()
|
|
|
|
|
|
|
|
def get_fieldsets(self, request, obj=None):
|
|
|
|
if not obj:
|
|
|
|
return self.add_fieldsets
|
|
|
|
return super(MailboxAdmin, self).get_fieldsets(request, obj)
|
|
|
|
|
|
|
|
def get_form(self, request, obj=None, **kwargs):
|
|
|
|
"""
|
|
|
|
Use special form during mailbox creation.
|
|
|
|
|
|
|
|
"""
|
|
|
|
defaults = {}
|
|
|
|
if obj is None:
|
|
|
|
defaults.update({
|
|
|
|
'form': self.add_form,
|
2014-12-17 21:22:37 +01:00
|
|
|
'fields': admin.options.flatten_fieldsets(self.add_fieldsets),
|
2014-05-19 22:28:25 +02:00
|
|
|
})
|
|
|
|
defaults.update(kwargs)
|
|
|
|
return super(MailboxAdmin, self).get_form(request, obj, **defaults)
|
|
|
|
|
|
|
|
|
2014-05-24 14:58:54 +02:00
|
|
|
class MailAddressMailboxInline(admin.TabularInline):
|
|
|
|
model = MailAddressMailbox
|
|
|
|
|
|
|
|
|
|
|
|
class MailAddressForwardInline(admin.TabularInline):
|
|
|
|
model = MailAddressForward
|
|
|
|
|
|
|
|
|
|
|
|
class MailAddressAdmin(ActivationChangeMixin, admin.ModelAdmin):
|
|
|
|
actions = ['activate', 'deactivate']
|
|
|
|
|
2015-01-17 12:25:54 +01:00
|
|
|
list_display = ('__str__', 'mailaddressmailbox', 'active')
|
|
|
|
list_filter = ('active', 'domain')
|
2014-05-24 14:58:54 +02:00
|
|
|
|
|
|
|
inlines = [MailAddressMailboxInline, MailAddressForwardInline]
|
|
|
|
|
|
|
|
|
2014-05-19 22:28:25 +02:00
|
|
|
admin.site.register(Mailbox, MailboxAdmin)
|
2014-05-24 14:58:54 +02:00
|
|
|
admin.site.register(MailAddress, MailAddressAdmin)
|