Mercurial > libervia-web
view libervia/pages/chat/page_meta.py @ 1504:409d10211b20
server, browser: dynamic pages refactoring:
dynamic pages has been reworked, to change the initial basic implementation.
Pages are now dynamic by default, and a websocket is established by the first connected
page of a session. The socket is used to transmit bridge signals, and then the signal is
broadcasted to other tabs using broadcast channel.
If the connecting tab is closed, an other one is chosen.
Some tests are made to retry connecting in case of problem, and sometimes reload the pages
(e.g. if profile is connected).
Signals (or other data) are cached during reconnection phase, to avoid lost of data.
All previous partial rendering mechanism have been removed, chat page is temporarily not
working anymore, but will be eventually redone (one of the goal of this work is to have
proper chat).
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 01 Mar 2023 18:02:44 +0100 |
parents | 01936fc55cd9 |
children | ce879da7fcf7 |
line wrap: on
line source
#!/usr/bin/env python3 from sat.core.i18n import _ from twisted.internet import defer from sat.core.log import getLogger from sat.tools.common import data_objects from sat.tools.common import data_format from twisted.words.protocols.jabber import jid from libervia.server.constants import Const as C from libervia.server import session_iface log = getLogger(__name__) name = "chat" access = C.PAGES_ACCESS_PROFILE template = "chat/chat.html" dynamic = True def parse_url(self, request): rdata = self.getRData(request) try: target_jid_s = self.nextPath(request) except IndexError: # not chat jid, we redirect to jid selection page self.pageRedirect("chat_select", request) try: target_jid = jid.JID(target_jid_s) if not target_jid.user: raise ValueError(_("invalid jid for chat (no local part)")) except Exception as e: log.warning( _("bad chat jid entered: {jid} ({msg})").format(jid=target_jid, msg=e) ) self.pageError(request, C.HTTP_BAD_REQUEST) else: rdata["target"] = target_jid @defer.inlineCallbacks def prepare_render(self, request): # Â FIXME: bug on room filtering (currently display messages from all rooms) session = self.host.getSessionData(request, session_iface.ISATSession) template_data = request.template_data rdata = self.getRData(request) target_jid = rdata["target"] profile = session.profile profile_jid = session.jid disco = yield self.host.bridgeCall("discoInfos", target_jid.host, "", True, profile) if "conference" in [i[0] for i in disco[1]]: chat_type = C.CHAT_GROUP join_ret = yield self.host.bridgeCall( "mucJoin", target_jid.userhost(), "", "", profile ) (already_joined, room_jid_s, occupants, user_nick, room_subject, room_statuses, __) = join_ret template_data["subject"] = room_subject template_data["room_statuses"] = room_statuses own_jid = jid.JID(room_jid_s) own_jid.resource = user_nick else: chat_type = C.CHAT_ONE2ONE own_jid = profile_jid rdata["chat_type"] = chat_type template_data["own_jid"] = own_jid self.registerSignal(request, "messageNew") history = yield self.host.bridgeCall( "historyGet", profile_jid.userhost(), target_jid.userhost(), 20, True, {}, profile, ) authors = {m[2] for m in history} identities = session.identities for author in authors: id_raw = yield self.host.bridgeCall( "identityGet", author, [], True, profile) identities[author] = data_format.deserialise(id_raw) template_data["messages"] = data_objects.Messages(history) rdata['identities'] = identities template_data["target_jid"] = target_jid template_data["chat_type"] = chat_type def on_data(self, request, data): session = self.host.getSessionData(request, session_iface.ISATSession) rdata = self.getRData(request) target = rdata["target"] data_type = data.get("type", "") if data_type == "msg": message = data["body"] mess_type = ( C.MESS_TYPE_GROUPCHAT if rdata["chat_type"] == C.CHAT_GROUP else C.MESS_TYPE_CHAT ) log.debug("message received: {}".format(message)) self.host.bridgeCall( "messageSend", target.full(), {"": message}, {}, mess_type, "", session.profile, ) else: log.warning("unknown message type: {type}".format(type=data_type))