Browse Source

修复websocket不能使用Authorization Header的问题

pull/14308/head
Huaqing Chen 1 month ago committed by 老广
parent
commit
1b8cdbc4dd
  1. 16
      apps/jumpserver/routing.py

16
apps/jumpserver/routing.py

@ -33,17 +33,17 @@ def get_signature_user(scope):
return
if scope['type'] == 'websocket':
scope['method'] = 'GET'
try:
# 因为 ws 使用的是 scope,所以需要转换成 request 对象,用于认证校验
request = ASGIRequest(scope, None)
backends = [SignatureAuthentication(),
AccessTokenAuthentication()]
for backend in backends:
# 因为 ws 使用的是 scope,所以需要转换成 request 对象,用于认证校验
request = ASGIRequest(scope, None)
backends = [SignatureAuthentication(),
AccessTokenAuthentication()]
for backend in backends:
try:
user, _ = backend.authenticate(request)
if user:
return user
except Exception as e:
print(e)
except Exception as e:
print(e)
return None

Loading…
Cancel
Save