close connection when not authenticated anymore.

This commit is contained in:
jonaswinkler 2021-02-03 21:53:39 +01:00
parent e300ee0c92
commit c51fa60172

View File

@ -7,8 +7,11 @@ from channels.generic.websocket import WebsocketConsumer
class StatusConsumer(WebsocketConsumer):
def _authenticated(self):
return 'user' in self.scope and self.scope['user'].is_authenticated
def connect(self):
if not self.scope['user'].is_authenticated:
if not self._authenticated():
raise DenyConnection()
else:
async_to_sync(self.channel_layer.group_add)(
@ -20,4 +23,7 @@ class StatusConsumer(WebsocketConsumer):
'status_updates', self.channel_name)
def status_update(self, event):
self.send(json.dumps(event['data']))
if not self._authenticated():
self.close()
else:
self.send(json.dumps(event['data']))