ft_transcendence/chat/consumers.py

45 lines
878 B
Python
Raw Normal View History

2023-11-27 09:10:06 -05:00
import json
from channels.generic.websocket import WebsocketConsumer
from asgiref.sync import async_to_sync
class ChatConsumer(WebsocketConsumer):
def connect(self):
self.room_group_name = 'test'
async_to_sync(self.channel_layer.group_add)(
self.room_group_name,
self.channel_name
)
self.accept()
def receive(self, text_data):
text_data_json = json.loads(text_data)
message = text_data_json['message']
2023-12-12 04:05:13 -05:00
user = self.scope["user"]
if user.is_anonymous:
return;
2023-11-27 09:10:06 -05:00
async_to_sync(self.channel_layer.group_send)(
self.room_group_name,
{
'type':'chat_message',
2023-12-12 04:05:13 -05:00
'username':user.username,
2023-11-27 09:10:06 -05:00
'message':message
}
)
def chat_message(self, event):
2023-12-12 04:05:13 -05:00
user = self.scope["user"]
if user.is_anonymous:
return;
2023-11-27 09:10:06 -05:00
self.send(text_data=json.dumps({
'type':'chat',
2023-12-11 10:14:27 -05:00
'username':event['username'],
'message':event['message']
2023-11-27 09:10:06 -05:00
}))