gpt4 book ai didi

django - Django 中基于 token 的身份验证

转载 作者:行者123 更新时间:2023-11-28 19:36:13 27 4
gpt4 key购买 nike

我正在尝试找出在我的 Django 应用程序中实现基于 token 的身份验证的最佳方式。一个外部的非 django 应用程序正在设置一个带有 token 的 cookie,我有一个 web 服务可以根据该 token 检索用户信息。如果用户设置了 cookie,则他们不需要在我的网站上进行身份验证,并且应该根据网络服务传回的信息自动登录。在我看来,有几个不同的选项可以执行实际检查,但我不确定哪个是最好的:

  1. 写一个像这个snippet 中的自定义装饰器并使用它代替需要登录
  2. 通过 ajax 调用在 base_site 中调用自定义身份验证方法。在每个页面上,都会进行检查,如果 cookie 存在且有效,则用户将自动登录。
  3. 将一些 javascript 添加到 LOGIN_REDIRECT_URL 页面,该页面将检查/验证 ajax 调用中的 cookie,如果 cookie 已通过身份验证,则自动重定向回引荐来源网址。

有没有我遗漏的选项?理想情况下,有一种方法可以将其构建到 login_required 中,而无需编写自定义装饰器。

最佳答案

在搜索代码之前,请务必阅读文档。 http://docs.djangoproject.com/en/1.2/topics/auth/#other-authentication-sources另请阅读提供的 Django 源代码。

您想创建三样东西。

  1. 用于捕获 token 的中间件。这是大部分工作发生的地方。它会检查 token ,对其进行身份验证(通过身份管理器确认),然后让用户登录。

  2. 用于查找用户的身份验证后端。这是一个 stub 。它所做的只是根据需要创建用户。您的身份管理器有详细信息。您只是在 Django 的本地数据库中缓存用户的当前版本。

这是中间件(已编辑)。

from django.contrib.auth import authenticate, login

class CookieMiddleware( object ):
"""Authentication Middleware for OpenAM using a cookie with a token.
Backend will get user.
"""
def process_request(self, request):
if not hasattr(request, 'user'):
raise ImproperlyConfigured()
if "thecookiename" not in request.COOKIES:
return
token= request.COOKIES["thecookiename"]
# REST request to OpenAM server for user attributes.
token, attribute, role = identity_manager.get_attributes( token )
user = authenticate(remote_user=attribute['uid'][0])
request.user = user
login(request, user)

identity_manager.get_attributes 是我们编写的一个单独的类,用于验证 token 并从 IM 源获取用户的详细信息。当然,出于测试目的必须对此进行模拟。

这是一个后端(已编辑)

class Backend( RemoteUserBackend ):
def authenticate(**credentials):
"""We could authenticate the token by checking with OpenAM
Server. We don't do that here, instead we trust the middleware to do it.
"""
try:
user= User.objects.get(username=credentials['remote_user'])
except User.DoesNotExist:
user= User.objects.create(username=credentials['remote_user'] )
# Here is a good place to map roles to Django Group instances or other features.
return user

这不会实质性地改变用于身份验证或授权的装饰器。

为了确保这一点,我们实际上刷新了我们的用户和组信息身份管理器。

请注意,中间件会针对每个请求运行。有时,可以将 token 传递给支持的 authenticate 方法。如果 token 存在于本地用户数据库中,则请求可以在不联系身份管理器的情况下继续。

但是,我们在身份管理器中有复杂的规则和超时,因此我们必须检查每个 token 以确保其有效。一旦中间件确定 token 有效,我们就可以允许后端执行任何其他处理。

这不是我们的实时代码(它有点太复杂,无法作为一个好的示例。)

关于django - Django 中基于 token 的身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5023762/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com