mirror of
https://github.com/evraz-hack/backend.git
synced 2025-02-23 12:50:33 +03:00
58 lines
1.7 KiB
Python
58 lines
1.7 KiB
Python
|
import json
|
||
|
|
||
|
from channels.generic.websocket import AsyncWebsocketConsumer
|
||
|
|
||
|
|
||
|
class NotificationsConsumer(AsyncWebsocketConsumer):
|
||
|
def __init__(self, *args, **kwargs):
|
||
|
super().__init__(*args, **kwargs)
|
||
|
self.room_group_name = None
|
||
|
|
||
|
async def connect(self):
|
||
|
self.room_group_name = "notifications"
|
||
|
|
||
|
await self.accept()
|
||
|
await self.channel_layer.group_add(self.room_group_name, self.channel_name)
|
||
|
|
||
|
async def disconnect(self, close_code):
|
||
|
await self.channel_layer.group_discard(self.room_group_name, self.channel_name)
|
||
|
|
||
|
# Receive message from WebSocket
|
||
|
async def receive(self, text_data):
|
||
|
pass
|
||
|
|
||
|
async def info(self, event):
|
||
|
message = event["data"]
|
||
|
|
||
|
await self.send(text_data=json.dumps(message))
|
||
|
|
||
|
|
||
|
class NotificationsApproximateConsumer(AsyncWebsocketConsumer):
|
||
|
def __init__(self, *args, **kwargs):
|
||
|
super().__init__(*args, **kwargs)
|
||
|
self.room_group_name = None
|
||
|
self.room_name = None
|
||
|
|
||
|
async def connect(self):
|
||
|
self.room_group_name = "notifications"
|
||
|
approximation = self.scope["url_route"]["kwargs"]["approximation"]
|
||
|
if approximation not in [10, 30, 60]:
|
||
|
await self.close()
|
||
|
self.room_name = approximation
|
||
|
self.room_group_name = f"approximation_{approximation}"
|
||
|
|
||
|
await self.accept()
|
||
|
await self.channel_layer.group_add(self.room_group_name, self.channel_name)
|
||
|
|
||
|
async def disconnect(self, close_code):
|
||
|
await self.channel_layer.group_discard(self.room_group_name, self.channel_name)
|
||
|
|
||
|
# Receive message from WebSocket
|
||
|
async def receive(self, text_data):
|
||
|
pass
|
||
|
|
||
|
async def info(self, event):
|
||
|
message = event["data"]
|
||
|
|
||
|
await self.send(text_data=json.dumps(message))
|