view libervia/pages/merge-requests/disco/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 e3e303a30a74
children 106bae41f5c8
line wrap: on
line source

#!/usr/bin/env python3


from libervia.server.constants import Const as C
from twisted.words.protocols.jabber import jid
from sat.core.log import getLogger

log = getLogger(__name__)


name = "merge-requests_disco"
access = C.PAGES_ACCESS_PUBLIC
template = "merge-request/discover.html"


def prepare_render(self, request):
    mr_handlers_config = self.host.options["mr_handlers_json"]
    if mr_handlers_config:
        handlers = request.template_data["mr_handlers"] = []
        try:
            for handler_data in mr_handlers_config:
                service = handler_data["service"]
                node = handler_data["node"]
                name = handler_data["name"]
                url = self.getPageByName("merge-requests").getURL(service, node)
                handlers.append({"name": name, "url": url})
        except KeyError as e:
            log.warning("Missing field in mr_handlers_json: {msg}".format(msg=e))
        except Exception as e:
            log.warning("Can't decode mr handlers: {msg}".format(msg=e))


def on_data_post(self, request):
    jid_str = self.getPostedData(request, "jid")
    try:
        jid_ = jid.JID(jid_str)
    except RuntimeError:
        self.pageError(request, C.HTTP_BAD_REQUEST)
    # for now we just use default node
    url = self.getPageByName("merge-requests").getURL(jid_.full(), "@")
    self.HTTPRedirect(request, url)