gpt4 book ai didi

python - 改变 django-allauth render_authentication_error 行为

转载 作者:太空狗 更新时间:2023-10-30 01:38:01 33 4
gpt4 key购买 nike

我是 python/Django 世界的新手,刚刚开始一个我非常兴奋的大项目。我需要让我的用户通过 Facebook 登录,并且我的应用程序具有非常特定的用户流。我已经设置了 django-allauth,一切都按我的需要工作。我已经覆盖了 LOGIN_REDIRECT_URL,以便我的用户在登录时进入我想要的页面。

但是。当用户打开 Facebook 登录对话框然后在未登录的情况下将其关闭时,authentication_error.html 模板由 allauth.socialaccount.helpers.render_authentication_error 呈现,这不是我想要的行为。我希望用户简单地被重定向到登录页面。

是的,我知道我可以通过将模板放在我的 TEMPLATE_DIRS 中来简单地覆盖模板,但是这样 url 就不会一样了。

我得出的结论是我需要一个中间件来拦截对 http 请求的响应。

from django.shortcuts import redirect

class Middleware():
"""
A middleware to override allauth user flow
"""
def __init__(self):
self.url_to_check = "/accounts/facebook/login/token/"

def process_response(self, request, response):
"""
In case of failed faceboook login
"""
if request.path == self.url_to_check and\
not request.user.is_authenticated():
return redirect('/')

return response

但我不确定我的解决方案的效率,也不确定它的 pythonesquitude(我只是想出了这个词)。在不使用中间件或信号的情况下,我还能做些什么来更改默认的 django-allauth 行为?

谢谢!

最佳答案

Yes, I know I could simply override the template by putting it in my TEMPLATE_DIRS, but then the url wouldn't be the same.

覆盖模板不会更改 URL。在您覆盖的模板中,您可以执行 client-side redirect到您喜欢的任何 URL。

关于python - 改变 django-allauth render_authentication_error 行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28402165/

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