Browse Source

[Bugfix] 修复OpenID判断退出登录的中间件逻辑的bug (#2574)

pull/2575/head
BaiJiangJie 6 years ago committed by 老广
parent
commit
55eff5eab9
  1. 5
      apps/authentication/backends/openid/middleware.py

5
apps/authentication/backends/openid/middleware.py

@ -23,12 +23,15 @@ class OpenIDAuthenticationMiddleware(MiddlewareMixin):
def process_request(self, request):
# Don't need openid auth if AUTH_OPENID is False
if not settings.AUTH_OPENID:
logger.info("Not settings.AUTH_OPENID")
return
# Don't need check single logout if user not authenticated
if not request.user.is_authenticated:
logger.info("User is not authenticated")
return
elif request.session[BACKEND_SESSION_KEY].endswith(
elif not request.session[BACKEND_SESSION_KEY].endswith(
BACKEND_OPENID_AUTH_CODE):
logger.info("BACKEND_SESSION_KEY is not BACKEND_OPENID_AUTH_CODE")
return
# Check openid user single logout or not with access_token

Loading…
Cancel
Save