当前位置: 代码迷 >> python >> 如何为Django管理员完全禁用身份验证
  详细解决方案

如何为Django管理员完全禁用身份验证

热度:84   发布时间:2023-06-13 14:51:42.0

我有一个Django服务器(使用PostGis),我想禁用所有与身份验证有关的内容:

  • 输入管理员时,无需身份验证
  • 在管理员中隐藏用户/组

在网上搜索后,我尝试了与的组合

在我尝试通过管理员添加对象之前,它确实获得了我希望的结果。 然后我得到一个IntegrityError

insert or update on table "django_admin_log" violates foreign key constraint "django_admin_log_user_id_c564eba6_fk_auth_user_id"
DETAIL:  Key (user_id)=(1) is not present in table "auth_user".

我尝试使用类似的解决方案是解决并没有帮助。

只要获得最终目标,我都不介意采用全新的解决方案。

谢谢,

由于Django项目在dockers中运行,并且可以在用户已经存在或我最终不这样做时进行部署:

# Create superuser for admin use in case it doesn't exist
try:
    User.objects.get_by_natural_key('admin')
except User.DoesNotExist:
    User.objects.create_superuser('admin', 'admin@comapny.com', '123456')

希望这对某人有帮助。 充分利用:

from django.contrib import admin
from django.contrib.auth.models import User, Group


# We add this so no authentication is needed when entering the admin site
class AccessUser(object):
    has_module_perms = has_perm = __getattr__ = lambda s,*a,**kw: True

admin.site.has_permission = lambda r: setattr(r, 'user', AccessUser()) or True

# We add this to remove the user/group admin in the admin site as there is no user authentication
admin.site.unregister(User)
admin.site.unregister(Group)

# Create superuser for admin use in case it doesn't exist
try:
    User.objects.get_by_natural_key('admin')
except User.DoesNotExist:
    User.objects.create_superuser('admin', 'admin@optibus.co', '123456')