demo-HTML-over-WebSockets-i.../apps/back/consumers.py

44 lines
1.4 KiB
Python
Raw Normal View History

2021-03-07 18:15:29 +01:00
import json
2021-03-10 23:36:26 +01:00
from channels.generic.websocket import WebsocketConsumer
from django.template.loader import render_to_string
2021-03-13 10:39:24 +01:00
from apps.back.models import Post, Comment
2021-03-07 18:15:29 +01:00
2021-03-10 23:36:26 +01:00
class BlogConsumer(WebsocketConsumer):
2021-03-07 18:15:29 +01:00
def connect(self):
''' Cliente se conecta '''
2021-03-08 21:25:34 +01:00
self.accept()
2021-03-07 18:15:29 +01:00
def disconnect(self, close_code):
''' Cliente se desconecta '''
2021-03-12 21:21:01 +01:00
pass
2021-03-07 18:15:29 +01:00
def receive(self, text_data):
''' Cliente envía información y nosotros la recibimos '''
text_data_json = json.loads(text_data)
2021-03-12 00:09:19 +01:00
selector = text_data_json["selector"]
template = text_data_json["template"]
data = text_data_json["data"]
2021-03-07 18:15:29 +01:00
2021-03-12 00:09:19 +01:00
# Database
if template == "partials/blog/all_articles.html":
2021-03-12 21:16:23 +01:00
pag = data['pag'] if 'pag' in data else 1
amount = 3
start = pag - 1
end = start + amount
data["posts"] = Post.objects.all()[start:end]
data['pag'] = pag
2021-03-07 18:15:29 +01:00
2021-03-12 00:09:19 +01:00
if template == "partials/blog/single.html":
2021-03-12 21:21:01 +01:00
data["post"] = Post.objects.get(pk=data['id'])
2021-03-13 10:39:24 +01:00
data["comments"] = Comment.objects.filter(post__id=data['id']).all()
2021-03-07 18:15:29 +01:00
# Send message to WebSocket
2021-03-08 21:25:34 +01:00
self.send(
2021-03-07 18:15:29 +01:00
text_data=json.dumps(
{
2021-03-12 00:09:19 +01:00
"selector": selector,
"html": render_to_string(template, data)
2021-03-07 18:15:29 +01:00
}
)
2021-03-12 00:09:19 +01:00
)