2020-09-26 19:11:04 +01:00
|
|
|
"""Channels base classes"""
|
|
|
|
from channels.generic.websocket import JsonWebsocketConsumer
|
|
|
|
from structlog import get_logger
|
|
|
|
|
2020-10-18 13:34:22 +01:00
|
|
|
from passbook.api.auth import token_from_header
|
|
|
|
from passbook.core.models import User
|
2020-09-26 19:11:04 +01:00
|
|
|
|
|
|
|
LOGGER = get_logger()
|
|
|
|
|
|
|
|
|
|
|
|
class AuthJsonConsumer(JsonWebsocketConsumer):
|
|
|
|
"""Authorize a client with a token"""
|
|
|
|
|
|
|
|
user: User
|
|
|
|
|
|
|
|
def connect(self):
|
|
|
|
headers = dict(self.scope["headers"])
|
|
|
|
if b"authorization" not in headers:
|
|
|
|
LOGGER.warning("WS Request without authorization header")
|
|
|
|
self.close()
|
2020-10-14 09:44:17 +01:00
|
|
|
return False
|
2020-09-26 19:11:04 +01:00
|
|
|
|
2020-10-18 13:34:22 +01:00
|
|
|
raw_header = headers[b"authorization"]
|
|
|
|
|
|
|
|
token = token_from_header(raw_header)
|
|
|
|
if not token:
|
|
|
|
LOGGER.warning("Failed to authenticate")
|
2020-09-26 19:11:04 +01:00
|
|
|
self.close()
|
|
|
|
return False
|
2020-10-18 13:34:22 +01:00
|
|
|
|
|
|
|
self.user = token.user
|
2020-09-26 19:11:04 +01:00
|
|
|
return True
|