8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-18 08:38:09 +00:00
re2o/users/admin.py

355 lines
9 KiB
Python
Raw Normal View History

# -*- mode: python; coding: utf-8 -*-
2020-11-23 16:06:37 +00:00
# Re2o est un logiciel d'administration développé initiallement au Rézo Metz. Il
2017-01-15 23:01:18 +00:00
# se veut agnostique au réseau considéré, de manière à être installable en
# quelques clics.
#
# Copyright © 2017 Gabriel Détraz
# Copyright © 2017 Lara Kermarec
2017-01-15 23:01:18 +00:00
# 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
"""
2020-05-29 22:33:29 +00:00
Admin views basic definition, include basic definition of admin view.
Except for Admin edition and creation of users and services users;
with AdherentAdmin, ClubAdmin and ServiceUserAdmin.
2017-10-14 20:46:21 +00:00
"""
2017-01-15 23:01:18 +00:00
from __future__ import unicode_literals
2016-06-30 01:39:07 +00:00
from django.contrib import admin
from django.contrib.auth.models import Group
from django.contrib.auth.admin import UserAdmin as BaseUserAdmin
from reversion.admin import VersionAdmin
2016-06-30 01:39:07 +00:00
from .models import (
User,
2018-08-01 11:06:25 +00:00
EMailAddress,
ServiceUser,
School,
ListRight,
ListShell,
Adherent,
Club,
Ban,
Whitelist,
Request,
LdapUser,
LdapServiceUser,
LdapServiceUserGroup,
LdapUserGroup,
)
from .forms import (
2020-05-28 20:08:16 +00:00
UserAdminForm,
2020-05-28 20:24:07 +00:00
ServiceUserAdminForm,
)
class LdapUserAdmin(admin.ModelAdmin):
"""LdapUser Admin view. Can't change password, manage
by User General model.
Parameters:
Django ModelAdmin: Apply on django ModelAdmin
"""
list_display = ("name", "uidNumber", "login_shell")
exclude = ("user_password", "sambat_nt_password")
search_fields = ("name",)
2017-10-14 20:46:21 +00:00
2016-07-31 03:03:07 +00:00
class LdapServiceUserAdmin(admin.ModelAdmin):
"""LdapServiceUser Admin view. Can't change password, manage
by User General model.
Parameters:
Django ModelAdmin: Apply on django ModelAdmin
"""
list_display = ("name",)
exclude = ("user_password",)
search_fields = ("name",)
2016-07-31 03:03:07 +00:00
2017-10-14 20:46:21 +00:00
class LdapUserGroupAdmin(admin.ModelAdmin):
"""LdapUserGroup Admin view.
Parameters:
Django ModelAdmin: Apply on django ModelAdmin
"""
list_display = ("name", "members", "gid")
search_fields = ("name",)
2017-10-14 20:46:21 +00:00
2017-06-18 12:59:53 +00:00
class LdapServiceUserGroupAdmin(admin.ModelAdmin):
"""LdapServiceUserGroup Admin view.
Parameters:
Django ModelAdmin: Apply on django ModelAdmin
"""
list_display = ("name",)
search_fields = ("name",)
2017-06-18 12:59:53 +00:00
2017-10-14 20:46:21 +00:00
class SchoolAdmin(VersionAdmin):
"""School Admin view and management.
Parameters:
Django ModelAdmin: Apply on django ModelAdmin
"""
2017-10-14 20:46:21 +00:00
pass
class ListRightAdmin(VersionAdmin):
"""ListRight and groups Admin view and management.
Even if it is possible, gid should NOT be changed
as it is the ldap primary key.
Parameters:
Django ModelAdmin: Apply on django ModelAdmin
"""
list_display = ("unix_name",)
2017-10-14 20:46:21 +00:00
class ListShellAdmin(VersionAdmin):
"""Users Shell Admin view and management.
Parameters:
Django ModelAdmin: Apply on django ModelAdmin
"""
2017-10-14 20:46:21 +00:00
pass
class RequestAdmin(admin.ModelAdmin):
"""User Request Admin view and management, for
change password and email validation.
Parameters:
Django ModelAdmin: Apply on django ModelAdmin
"""
list_display = ("user", "type", "created_at", "expires_at")
2017-10-14 20:46:21 +00:00
class BanAdmin(VersionAdmin):
"""Ban Admin view and management, for
User Ban
Parameters:
Django ModelAdmin: Apply on django ModelAdmin
"""
2017-10-14 20:46:21 +00:00
pass
2016-07-02 19:57:31 +00:00
2018-08-01 11:06:25 +00:00
class EMailAddressAdmin(VersionAdmin):
"""EmailAddress Admin view and management, for
auxiliary and local email addresses
Parameters:
Django ModelAdmin: Apply on django ModelAdmin
"""
2018-06-30 20:56:34 +00:00
pass
class WhitelistAdmin(VersionAdmin):
"""Whitelist Admin view and management, for
free access whitelisted users
Parameters:
Django ModelAdmin: Apply on django ModelAdmin
"""
2017-10-14 20:46:21 +00:00
pass
2016-07-04 18:04:11 +00:00
2020-05-28 20:08:16 +00:00
class AdherentAdmin(VersionAdmin, BaseUserAdmin):
"""Adherent Admin view and management, for
Adherent fields : password, pseudo, etc, admin can
edit all fields on user instance.
Inherit from django BaseUserAdmin
Parameters:
Django ModelAdmin: Apply on django ModelAdmin
"""
# The forms to add and change user instances
2020-05-28 20:08:16 +00:00
add_form = UserAdminForm
form = UserAdminForm
2017-10-14 20:46:21 +00:00
list_display = (
"pseudo",
2020-05-28 20:08:16 +00:00
"name",
"surname",
"email",
"local_email_redirect",
"local_email_enabled",
"school",
"shell",
2017-10-14 20:46:21 +00:00
)
2018-04-14 23:16:49 +00:00
list_filter = ()
fieldsets = (
2020-05-28 20:08:16 +00:00
(None, {"fields": ("pseudo",)}),
2017-10-14 20:46:21 +00:00
(
"Personal info",
2020-10-22 13:39:30 +00:00
{"fields": ("surname", "name", "email", "school", "shell", "uid_number", "password1", "password2")},
2017-10-14 20:46:21 +00:00
),
)
# add_fieldsets is not a standard ModelAdmin attribute. UserAdmin
# overrides get_fieldsets to use this attribute when creating a user.
2020-05-28 20:08:16 +00:00
add_fieldsets = (
(
None,
{
"classes": ("wide",),
"fields": (
"pseudo",
"surname",
"name",
"email",
"school",
"password1",
"password2",
"is_superuser",
),
},
),
)
search_fields = ("pseudo", "surname", "name")
ordering = ("pseudo",)
filter_horizontal = ()
class ClubAdmin(VersionAdmin, BaseUserAdmin):
"""Club Admin view and management, for
Club fields : password, pseudo, etc, admin can
edit all fields on user instance.
Inherit from django BaseUserAdmin
Parameters:
Django ModelAdmin: Apply on django ModelAdmin
"""
2020-05-28 20:08:16 +00:00
# The forms to add and change user instances
add_form = UserAdminForm
form = UserAdminForm
list_display = (
"pseudo",
"surname",
"email",
"local_email_redirect",
"local_email_enabled",
"school",
"shell",
)
list_filter = ()
fieldsets = (
(None, {"fields": ("pseudo",)}),
(
"Personal info",
2020-10-22 13:39:30 +00:00
{"fields": ("surname", "email", "school", "shell", "uid_number", "password1", "password2")},
2020-05-28 20:08:16 +00:00
),
)
add_fieldsets = (
2017-10-14 20:46:21 +00:00
(
None,
{
"classes": ("wide",),
"fields": (
"pseudo",
"surname",
"email",
"school",
"password1",
"password2",
2020-05-28 20:08:16 +00:00
"is_superuser",
),
},
),
)
search_fields = ("pseudo", "surname")
ordering = ("pseudo",)
filter_horizontal = ()
2017-10-14 20:46:21 +00:00
2016-07-31 03:03:07 +00:00
class ServiceUserAdmin(VersionAdmin, BaseUserAdmin):
"""ServiceUser Admin view and management, for
User fields : password, pseudo, etc, admin can
edit all fields on user instance.
Inherit from django BaseUserAdmin
Parameters:
Django ModelAdmin: Apply on django ModelAdmin
"""
2016-07-31 03:03:07 +00:00
# The forms to add and change user instances
2020-05-28 20:24:07 +00:00
form = ServiceUserAdminForm
add_form = ServiceUserAdminForm
2016-07-31 03:03:07 +00:00
# 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.
list_display = ("pseudo", "access_group")
2016-07-31 03:03:07 +00:00
list_filter = ()
2020-05-28 20:24:07 +00:00
fieldsets = ((None, {"fields": ("pseudo", "access_group", "comment", "password1", "password2")}),)
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 = (
(None, {"classes": ("wide",), "fields": ("pseudo", "password1", "password2")}),
2016-07-31 03:03:07 +00:00
)
search_fields = ("pseudo",)
ordering = ("pseudo",)
2016-07-31 03:03:07 +00:00
filter_horizontal = ()
2017-10-14 20:46:21 +00:00
2020-05-28 20:08:16 +00:00
admin.site.register(Adherent, AdherentAdmin)
admin.site.register(Club, ClubAdmin)
2016-07-31 03:03:07 +00:00
admin.site.register(ServiceUser, ServiceUserAdmin)
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)
admin.site.register(School, SchoolAdmin)
admin.site.register(ListRight, ListRightAdmin)
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)
admin.site.register(Request, RequestAdmin)
# ... and, since we're not using Django's built-in permissions,
# unregister the Group model from admin.
admin.site.unregister(Group)