2014-12-27 22:44:27 +01:00
|
|
|
"""
|
|
|
|
This module contains the Django admin classes of the :py:mod:`osusers` app.
|
|
|
|
|
|
|
|
"""
|
2014-05-25 23:35:14 +02:00
|
|
|
from django import forms
|
|
|
|
from django.utils.translation import ugettext as _
|
2014-05-24 21:28:33 +02:00
|
|
|
from django.contrib import admin
|
|
|
|
|
2015-01-25 12:02:31 +01:00
|
|
|
from gvawebcore.forms import (
|
2015-01-24 16:15:42 +01:00
|
|
|
PASSWORD_MISMATCH_ERROR
|
|
|
|
)
|
2014-05-24 21:53:49 +02:00
|
|
|
from .models import (
|
|
|
|
AdditionalGroup,
|
|
|
|
Group,
|
|
|
|
Shadow,
|
|
|
|
User,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class AdditionalGroupInline(admin.TabularInline):
|
2014-12-27 22:44:27 +01:00
|
|
|
"""
|
|
|
|
Inline for :py:class:`osusers.models.AdditionalGroup` instances.
|
|
|
|
|
|
|
|
"""
|
2014-05-24 21:53:49 +02:00
|
|
|
model = AdditionalGroup
|
|
|
|
|
|
|
|
|
|
|
|
class ShadowInline(admin.TabularInline):
|
2014-12-27 22:44:27 +01:00
|
|
|
"""
|
|
|
|
Inline for :py:class:`osusers.models.ShadowInline` instances.
|
|
|
|
|
|
|
|
"""
|
2014-05-24 21:53:49 +02:00
|
|
|
model = Shadow
|
2014-05-24 23:15:14 +02:00
|
|
|
readonly_fields = ['passwd']
|
|
|
|
can_delete = False
|
2014-05-24 21:53:49 +02:00
|
|
|
|
|
|
|
|
2014-05-25 23:35:14 +02:00
|
|
|
class UserCreationForm(forms.ModelForm):
|
|
|
|
"""
|
2014-12-27 22:44:27 +01:00
|
|
|
A form for creating :py:class:`operating system users
|
|
|
|
<osusers.models.User>`.
|
2014-05-25 23:35:14 +02:00
|
|
|
|
|
|
|
"""
|
2014-12-27 18:26:52 +01:00
|
|
|
password1 = forms.CharField(
|
|
|
|
label=_('Password'), widget=forms.PasswordInput,
|
|
|
|
required=False,
|
|
|
|
)
|
|
|
|
password2 = forms.CharField(
|
|
|
|
label=_('Password (again)'), widget=forms.PasswordInput,
|
|
|
|
required=False,
|
|
|
|
)
|
2014-05-25 23:35:14 +02:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = User
|
2014-12-27 19:26:16 +01:00
|
|
|
fields = ['customer']
|
2014-05-25 23:35:14 +02:00
|
|
|
|
|
|
|
def clean_password2(self):
|
|
|
|
"""
|
|
|
|
Check that the two password entries match.
|
|
|
|
|
2014-12-27 22:44:27 +01:00
|
|
|
:return: the validated password
|
|
|
|
:rtype: str or None
|
|
|
|
|
2014-05-25 23:35:14 +02:00
|
|
|
"""
|
|
|
|
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.
|
|
|
|
|
2014-12-27 22:44:27 +01:00
|
|
|
:param boolean commit: whether to save the created user
|
|
|
|
:return: user instance
|
|
|
|
:rtype: :py:class:`osusers.models.User`
|
|
|
|
|
2014-05-25 23:35:14 +02:00
|
|
|
"""
|
|
|
|
user = User.objects.create_user(
|
2014-12-27 19:26:16 +01:00
|
|
|
customer=self.cleaned_data['customer'],
|
2014-05-25 23:35:14 +02:00
|
|
|
password=self.cleaned_data['password1'], commit=commit)
|
|
|
|
return user
|
|
|
|
|
|
|
|
def save_m2m(self):
|
2014-06-01 22:18:16 +02:00
|
|
|
"""
|
|
|
|
No additional groups are created when this form is saved, so this
|
|
|
|
method just does nothing.
|
2014-12-27 22:44:27 +01:00
|
|
|
|
2014-06-01 22:18:16 +02:00
|
|
|
"""
|
2014-05-25 23:35:14 +02:00
|
|
|
|
|
|
|
|
2014-05-24 21:53:49 +02:00
|
|
|
class UserAdmin(admin.ModelAdmin):
|
2014-12-27 22:44:27 +01:00
|
|
|
"""
|
|
|
|
Admin class for working with :py:class:`operating system users
|
|
|
|
<osusers.models.User>`.
|
|
|
|
|
|
|
|
"""
|
2014-12-22 20:07:11 +01:00
|
|
|
actions = ['perform_delete_selected']
|
2014-05-25 23:35:14 +02:00
|
|
|
add_form = UserCreationForm
|
2014-12-22 20:07:11 +01:00
|
|
|
inlines = [AdditionalGroupInline, ShadowInline]
|
2014-05-25 23:35:14 +02:00
|
|
|
|
|
|
|
add_fieldsets = (
|
|
|
|
(None, {
|
|
|
|
'classes': ('wide',),
|
2014-12-27 19:26:16 +01:00
|
|
|
'fields': ('customer', 'password1', 'password2')}),
|
2014-05-25 23:35:14 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
def get_form(self, request, obj=None, **kwargs):
|
|
|
|
"""
|
|
|
|
Use special form during user creation.
|
|
|
|
|
2014-12-27 22:44:27 +01:00
|
|
|
:param request: the current HTTP request
|
|
|
|
:param obj: either a :py:class:`User <osusers.models.User>` instance or
|
|
|
|
None for a new user
|
|
|
|
:param kwargs: keyword arguments to be passed to
|
|
|
|
:py:meth:`django.contrib.admin.ModelAdmin.get_form`
|
|
|
|
:return: form instance
|
|
|
|
|
2014-05-25 23:35:14 +02:00
|
|
|
"""
|
|
|
|
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-25 23:35:14 +02:00
|
|
|
})
|
|
|
|
defaults.update(kwargs)
|
|
|
|
return super(UserAdmin, self).get_form(request, obj, **defaults)
|
|
|
|
|
2014-12-22 20:07:11 +01:00
|
|
|
def get_readonly_fields(self, request, obj=None):
|
2014-12-27 22:44:27 +01:00
|
|
|
"""
|
|
|
|
Make sure that uid is not editable for existing users.
|
|
|
|
|
|
|
|
:param request: the current HTTP request
|
|
|
|
:param obj: either a :py:class:`User <osusers.models.User>` instance or
|
|
|
|
None for a new user
|
|
|
|
:return: a list of fields
|
|
|
|
:rtype: list
|
|
|
|
|
|
|
|
"""
|
2014-12-22 20:07:11 +01:00
|
|
|
if obj:
|
|
|
|
return ['uid']
|
|
|
|
return []
|
|
|
|
|
|
|
|
def perform_delete_selected(self, request, queryset):
|
2014-12-27 22:44:27 +01:00
|
|
|
"""
|
|
|
|
Action to delete a list of selected users.
|
|
|
|
|
|
|
|
This action calls the delete method of each selected user in contrast
|
|
|
|
to the default `delete_selected`.
|
|
|
|
|
|
|
|
:param request: the current HTTP request
|
|
|
|
:param queryset: Django ORM queryset representing the selected users
|
|
|
|
|
|
|
|
"""
|
2014-12-22 20:07:11 +01:00
|
|
|
for user in queryset.all():
|
|
|
|
user.delete()
|
|
|
|
perform_delete_selected.short_description = _('Delete selected users')
|
|
|
|
|
|
|
|
def get_actions(self, request):
|
2014-12-27 22:44:27 +01:00
|
|
|
"""
|
|
|
|
Get the available actions for users.
|
|
|
|
|
|
|
|
This overrides the default behavior to remove the default
|
|
|
|
`delete_selected` action.
|
|
|
|
|
|
|
|
:param request: the current HTTP request
|
|
|
|
:return: list of actions
|
|
|
|
:rtype: list
|
|
|
|
|
|
|
|
"""
|
2014-12-22 20:07:11 +01:00
|
|
|
actions = super(UserAdmin, self).get_actions(request)
|
|
|
|
if 'delete_selected' in actions:
|
|
|
|
del actions['delete_selected']
|
|
|
|
return actions
|
2014-05-24 21:53:49 +02:00
|
|
|
|
|
|
|
|
2014-05-30 21:46:10 +02:00
|
|
|
class GroupAdmin(admin.ModelAdmin):
|
2014-12-27 22:44:27 +01:00
|
|
|
"""
|
|
|
|
Admin class for workint with :py:class:`operating system groups
|
|
|
|
<osusers.models.Group>`.
|
2014-05-30 21:46:10 +02:00
|
|
|
|
2014-12-27 22:44:27 +01:00
|
|
|
"""
|
|
|
|
actions = ['perform_delete_selected']
|
2014-05-30 21:46:10 +02:00
|
|
|
|
2014-12-22 20:07:11 +01:00
|
|
|
def perform_delete_selected(self, request, queryset):
|
2014-12-27 22:44:27 +01:00
|
|
|
"""
|
|
|
|
Action to delete a list of selected groups.
|
|
|
|
|
|
|
|
This action calls the delete method of each selected group in contrast
|
|
|
|
to the default `delete_selected`.
|
|
|
|
|
|
|
|
:param request: the current HTTP request
|
|
|
|
:param queryset: Django ORM queryset representing the selected groups
|
|
|
|
|
|
|
|
"""
|
2014-12-22 20:07:11 +01:00
|
|
|
for group in queryset.all():
|
|
|
|
group.delete()
|
|
|
|
perform_delete_selected.short_description = _('Delete selected groups')
|
|
|
|
|
|
|
|
def get_actions(self, request):
|
2014-12-27 22:44:27 +01:00
|
|
|
"""
|
|
|
|
Get the available actions for groups.
|
|
|
|
|
|
|
|
This overrides the default behavior to remove the default
|
|
|
|
`delete_selected` action.
|
|
|
|
|
|
|
|
:param request: the current HTTP request
|
|
|
|
:return: list of actions
|
|
|
|
:rtype: list
|
|
|
|
|
|
|
|
"""
|
2014-12-22 20:07:11 +01:00
|
|
|
actions = super(GroupAdmin, self).get_actions(request)
|
|
|
|
if 'delete_selected' in actions:
|
|
|
|
del actions['delete_selected']
|
|
|
|
return actions
|
2014-05-30 21:46:10 +02:00
|
|
|
|
|
|
|
|
|
|
|
admin.site.register(Group, GroupAdmin)
|
2014-05-24 21:53:49 +02:00
|
|
|
admin.site.register(User, UserAdmin)
|