2017-09-10 14:53:02 +00:00
|
|
|
# -*- mode: python; coding: utf-8 -*-
|
2017-01-15 23:01:18 +00:00
|
|
|
# Re2o est un logiciel d'administration développé initiallement au rezometz. Il
|
|
|
|
# se veut agnostique au réseau considéré, de manière à être installable en
|
|
|
|
# quelques clics.
|
|
|
|
#
|
|
|
|
# Copyright © 2017 Gabriel Détraz
|
|
|
|
# Copyright © 2017 Goulven Kermarec
|
|
|
|
# Copyright © 2017 Augustin Lemesle
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2017-10-14 20:46:21 +00:00
|
|
|
"""
|
|
|
|
Definition des vues pour les admin. Classique, sauf pour users,
|
|
|
|
où on fait appel à UserChange et ServiceUserChange, forms custom
|
|
|
|
"""
|
2017-01-15 23:01:18 +00:00
|
|
|
|
2017-09-10 23:29:24 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2016-06-30 01:39:07 +00:00
|
|
|
from django.contrib import admin
|
2016-07-08 01:12:28 +00:00
|
|
|
from django.contrib.auth.models import Group
|
|
|
|
from django.contrib.auth.admin import UserAdmin as BaseUserAdmin
|
2016-07-21 14:58:12 +00:00
|
|
|
from reversion.admin import VersionAdmin
|
2016-06-30 01:39:07 +00:00
|
|
|
|
2018-04-02 01:35:07 +00:00
|
|
|
from .models import (
|
|
|
|
User,
|
2018-08-01 11:06:25 +00:00
|
|
|
EMailAddress,
|
2018-04-02 01:35:07 +00:00
|
|
|
ServiceUser,
|
|
|
|
School,
|
|
|
|
ListRight,
|
|
|
|
ListShell,
|
|
|
|
Adherent,
|
|
|
|
Club,
|
|
|
|
Ban,
|
|
|
|
Whitelist,
|
|
|
|
Request,
|
|
|
|
LdapUser,
|
|
|
|
LdapServiceUser,
|
|
|
|
LdapServiceUserGroup,
|
|
|
|
LdapUserGroup
|
|
|
|
)
|
|
|
|
from .forms import (
|
|
|
|
UserChangeForm,
|
|
|
|
UserCreationForm,
|
|
|
|
ServiceUserChangeForm,
|
|
|
|
ServiceUserCreationForm
|
|
|
|
)
|
2016-07-08 01:12:28 +00:00
|
|
|
|
2016-06-30 23:03:28 +00:00
|
|
|
|
2016-07-26 00:54:32 +00:00
|
|
|
class LdapUserAdmin(admin.ModelAdmin):
|
2017-10-14 20:46:21 +00:00
|
|
|
"""Administration du ldapuser"""
|
|
|
|
list_display = ('name', 'uidNumber', 'login_shell')
|
|
|
|
exclude = ('user_password', 'sambat_nt_password')
|
2016-07-26 00:54:32 +00:00
|
|
|
search_fields = ('name',)
|
|
|
|
|
2017-10-14 20:46:21 +00:00
|
|
|
|
2016-07-31 03:03:07 +00:00
|
|
|
class LdapServiceUserAdmin(admin.ModelAdmin):
|
2017-10-14 20:46:21 +00:00
|
|
|
"""Administration du ldapserviceuser"""
|
2016-07-31 03:03:07 +00:00
|
|
|
list_display = ('name',)
|
|
|
|
exclude = ('user_password',)
|
|
|
|
search_fields = ('name',)
|
|
|
|
|
2017-10-14 20:46:21 +00:00
|
|
|
|
2016-07-26 00:54:32 +00:00
|
|
|
class LdapUserGroupAdmin(admin.ModelAdmin):
|
2017-10-14 20:46:21 +00:00
|
|
|
"""Administration du ldapusergroupe"""
|
|
|
|
list_display = ('name', 'members', 'gid')
|
2016-07-26 00:54:32 +00:00
|
|
|
search_fields = ('name',)
|
|
|
|
|
2017-10-14 20:46:21 +00:00
|
|
|
|
2017-06-18 12:59:53 +00:00
|
|
|
class LdapServiceUserGroupAdmin(admin.ModelAdmin):
|
2017-10-14 20:46:21 +00:00
|
|
|
"""Administration du ldap serviceusergroup"""
|
2017-06-18 12:59:53 +00:00
|
|
|
list_display = ('name',)
|
|
|
|
search_fields = ('name',)
|
|
|
|
|
2017-10-14 20:46:21 +00:00
|
|
|
|
2016-07-21 14:58:12 +00:00
|
|
|
class SchoolAdmin(VersionAdmin):
|
2017-10-14 20:46:21 +00:00
|
|
|
"""Administration, gestion des écoles"""
|
|
|
|
pass
|
|
|
|
|
2016-06-30 23:03:28 +00:00
|
|
|
|
2016-07-21 14:58:12 +00:00
|
|
|
class ListRightAdmin(VersionAdmin):
|
2017-10-14 20:46:21 +00:00
|
|
|
"""Gestion de la liste des droits existants
|
|
|
|
Ne permet pas l'edition du gid (primarykey pour ldap)"""
|
2017-12-31 12:24:18 +00:00
|
|
|
list_display = ('unix_name',)
|
2016-07-02 00:42:04 +00:00
|
|
|
|
2017-10-14 20:46:21 +00:00
|
|
|
|
2016-07-26 00:54:32 +00:00
|
|
|
class ListShellAdmin(VersionAdmin):
|
2017-10-14 20:46:21 +00:00
|
|
|
"""Gestion de la liste des shells coté admin"""
|
|
|
|
pass
|
|
|
|
|
2016-07-08 01:12:28 +00:00
|
|
|
|
2016-07-20 01:53:46 +00:00
|
|
|
class RequestAdmin(admin.ModelAdmin):
|
2017-10-14 20:46:21 +00:00
|
|
|
"""Gestion des request objet, ticket pour lien de reinit mot de passe"""
|
2016-07-20 01:53:46 +00:00
|
|
|
list_display = ('user', 'type', 'created_at', 'expires_at')
|
2016-07-08 01:12:28 +00:00
|
|
|
|
2017-10-14 20:46:21 +00:00
|
|
|
|
2016-07-21 14:58:12 +00:00
|
|
|
class BanAdmin(VersionAdmin):
|
2017-10-14 20:46:21 +00:00
|
|
|
"""Gestion des bannissements"""
|
|
|
|
pass
|
2016-07-02 19:57:31 +00:00
|
|
|
|
2016-07-08 01:12:28 +00:00
|
|
|
|
2018-08-01 11:06:25 +00:00
|
|
|
class EMailAddressAdmin(VersionAdmin):
|
2018-06-30 20:56:34 +00:00
|
|
|
"""Gestion des alias mail"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2016-07-21 14:58:12 +00:00
|
|
|
class WhitelistAdmin(VersionAdmin):
|
2017-10-14 20:46:21 +00:00
|
|
|
"""Gestion des whitelist"""
|
|
|
|
pass
|
2016-07-04 18:04:11 +00:00
|
|
|
|
2016-07-08 01:12:28 +00:00
|
|
|
|
2016-07-21 14:58:12 +00:00
|
|
|
class UserAdmin(VersionAdmin, BaseUserAdmin):
|
2017-10-14 20:46:21 +00:00
|
|
|
"""Gestion d'un user : modification des champs perso, mot de passe, etc"""
|
2016-07-08 01:12:28 +00:00
|
|
|
# The forms to add and change user instances
|
|
|
|
form = UserChangeForm
|
|
|
|
add_form = UserCreationForm
|
|
|
|
|
|
|
|
# The fields to be used in displaying the User model.
|
|
|
|
# These override the definitions on the base UserAdmin
|
|
|
|
# that reference specific fields on auth.User.
|
2017-10-14 20:46:21 +00:00
|
|
|
list_display = (
|
|
|
|
'pseudo',
|
|
|
|
'surname',
|
2018-07-30 15:00:41 +00:00
|
|
|
'email',
|
|
|
|
'local_email_redirect',
|
|
|
|
'local_email_enabled',
|
2017-10-14 20:46:21 +00:00
|
|
|
'school',
|
|
|
|
'is_admin',
|
|
|
|
'shell'
|
|
|
|
)
|
2018-04-13 17:30:48 +00:00
|
|
|
# Need to reset the settings from BaseUserAdmin
|
|
|
|
# They are using fields we don't use like 'is_staff'
|
2018-04-14 23:16:49 +00:00
|
|
|
list_filter = ()
|
2016-07-08 01:12:28 +00:00
|
|
|
fieldsets = (
|
|
|
|
(None, {'fields': ('pseudo', 'password')}),
|
2017-10-14 20:46:21 +00:00
|
|
|
(
|
|
|
|
'Personal info',
|
|
|
|
{
|
|
|
|
'fields':
|
2018-07-30 15:00:41 +00:00
|
|
|
('surname', 'email', 'school', 'shell', 'uid_number')
|
2017-10-14 20:46:21 +00:00
|
|
|
}
|
|
|
|
),
|
2016-07-08 01:12:28 +00:00
|
|
|
('Permissions', {'fields': ('is_admin', )}),
|
|
|
|
)
|
|
|
|
# add_fieldsets is not a standard ModelAdmin attribute. UserAdmin
|
|
|
|
# overrides get_fieldsets to use this attribute when creating a user.
|
|
|
|
add_fieldsets = (
|
2017-10-14 20:46:21 +00:00
|
|
|
(
|
|
|
|
None,
|
|
|
|
{
|
|
|
|
'classes': ('wide',),
|
|
|
|
'fields': (
|
|
|
|
'pseudo',
|
|
|
|
'surname',
|
2018-07-30 15:00:41 +00:00
|
|
|
'email',
|
2017-10-14 20:46:21 +00:00
|
|
|
'school',
|
|
|
|
'is_admin',
|
|
|
|
'password1',
|
|
|
|
'password2'
|
|
|
|
)
|
|
|
|
}
|
2016-07-08 01:12:28 +00:00
|
|
|
),
|
|
|
|
)
|
2018-04-13 17:30:48 +00:00
|
|
|
search_fields = ('pseudo', 'surname')
|
2016-07-08 01:12:28 +00:00
|
|
|
ordering = ('pseudo',)
|
|
|
|
filter_horizontal = ()
|
|
|
|
|
2017-10-14 20:46:21 +00:00
|
|
|
|
2016-07-31 03:03:07 +00:00
|
|
|
class ServiceUserAdmin(VersionAdmin, BaseUserAdmin):
|
2017-10-14 20:46:21 +00:00
|
|
|
"""Gestion d'un service user admin : champs personnels,
|
|
|
|
mot de passe; etc"""
|
2016-07-31 03:03:07 +00:00
|
|
|
# The forms to add and change user instances
|
|
|
|
form = ServiceUserChangeForm
|
|
|
|
add_form = ServiceUserCreationForm
|
|
|
|
|
|
|
|
# The fields to be used in displaying the User model.
|
|
|
|
# These override the definitions on the base UserAdmin
|
|
|
|
# that reference specific fields on auth.User.
|
2017-06-18 12:59:53 +00:00
|
|
|
list_display = ('pseudo', 'access_group')
|
2016-07-31 03:03:07 +00:00
|
|
|
list_filter = ()
|
|
|
|
fieldsets = (
|
2017-06-18 12:59:53 +00:00
|
|
|
(None, {'fields': ('pseudo', 'password', 'access_group')}),
|
2016-07-31 03:03:07 +00:00
|
|
|
)
|
|
|
|
# add_fieldsets is not a standard ModelAdmin attribute. UserAdmin
|
|
|
|
# overrides get_fieldsets to use this attribute when creating a user.
|
|
|
|
add_fieldsets = (
|
2017-10-14 20:46:21 +00:00
|
|
|
(
|
|
|
|
None,
|
|
|
|
{
|
|
|
|
'classes': ('wide',),
|
|
|
|
'fields': ('pseudo', 'password1', 'password2')
|
|
|
|
}
|
2016-07-31 03:03:07 +00:00
|
|
|
),
|
|
|
|
)
|
|
|
|
search_fields = ('pseudo',)
|
|
|
|
ordering = ('pseudo',)
|
|
|
|
filter_horizontal = ()
|
|
|
|
|
2017-10-14 20:46:21 +00:00
|
|
|
|
2016-06-30 23:03:28 +00:00
|
|
|
admin.site.register(User, UserAdmin)
|
2018-04-02 01:35:07 +00:00
|
|
|
admin.site.register(Adherent, UserAdmin)
|
|
|
|
admin.site.register(Club, UserAdmin)
|
2016-07-31 03:03:07 +00:00
|
|
|
admin.site.register(ServiceUser, ServiceUserAdmin)
|
2016-07-26 00:54:32 +00:00
|
|
|
admin.site.register(LdapUser, LdapUserAdmin)
|
|
|
|
admin.site.register(LdapUserGroup, LdapUserGroupAdmin)
|
2016-07-31 03:03:07 +00:00
|
|
|
admin.site.register(LdapServiceUser, LdapServiceUserAdmin)
|
2017-06-18 12:59:53 +00:00
|
|
|
admin.site.register(LdapServiceUserGroup, LdapServiceUserGroupAdmin)
|
2016-06-30 23:03:28 +00:00
|
|
|
admin.site.register(School, SchoolAdmin)
|
2016-07-02 00:42:04 +00:00
|
|
|
admin.site.register(ListRight, ListRightAdmin)
|
2016-07-26 00:54:32 +00:00
|
|
|
admin.site.register(ListShell, ListShellAdmin)
|
2016-07-02 19:57:31 +00:00
|
|
|
admin.site.register(Ban, BanAdmin)
|
2018-08-01 11:06:25 +00:00
|
|
|
admin.site.register(EMailAddress, EMailAddressAdmin)
|
2016-07-04 18:04:11 +00:00
|
|
|
admin.site.register(Whitelist, WhitelistAdmin)
|
2016-07-20 01:53:46 +00:00
|
|
|
admin.site.register(Request, RequestAdmin)
|
2016-07-08 01:12:28 +00:00
|
|
|
# Now register the new UserAdmin...
|
|
|
|
admin.site.unregister(User)
|
2016-07-31 03:03:07 +00:00
|
|
|
admin.site.unregister(ServiceUser)
|
2016-07-08 01:12:28 +00:00
|
|
|
admin.site.register(User, UserAdmin)
|
2016-07-31 03:03:07 +00:00
|
|
|
admin.site.register(ServiceUser, ServiceUserAdmin)
|
2016-07-08 01:12:28 +00:00
|
|
|
# ... and, since we're not using Django's built-in permissions,
|
|
|
|
# unregister the Group model from admin.
|
|
|
|
admin.site.unregister(Group)
|