view libervia/pages/blog/page_meta.py @ 1203:251eba911d4d

server (websockets): fixed websocket handling on HTTPS connections: Original request used to retrieve a page was stored on dynamic pages, but after the end of it, the channel was deleted, resulting in a isSecure() always returning False, and troubles in chain leading to the the use of the wrong session object. This patch fixes this by reworking the way original request is used, and creating a new wrapping class allowing to keep an API similar to iweb.IRequest, with data coming from both the original request and the websocket request. fix 327
author Goffi <goffi@goffi.org>
date Sun, 14 Jul 2019 14:45:51 +0200
parents 29eb15062416
children b2d067339de3
line wrap: on
line source

#!/usr/bin/env python2.7
# -*- coding: utf-8 -*-
from sat.core.i18n import _
from libervia.server.constants import Const as C
from twisted.words.protocols.jabber import jid
from twisted.internet import defer
from libervia.server import session_iface
from sat.core.log import getLogger

log = getLogger(__name__)

name = u"blog"
access = C.PAGES_ACCESS_PUBLIC
template = u"blog/discover.html"


@defer.inlineCallbacks
def prepare_render(self, request):
    profile = self.getProfile(request)
    template_data = request.template_data
    if profile is not None:
        __, entities_own, entities_roster = yield self.host.bridgeCall(
            "discoFindByFeatures",
            [],
            [(u"pubsub", u"pep")],
            True,
            False,
            True,
            True,
            True,
            profile,
        )
        entities = template_data[u"disco_entities"] = (
            entities_own.keys() + entities_roster.keys()
        )
        entities_url = template_data[u"entities_url"] = {}
        identities = template_data[u"identities"] = self.host.getSessionData(
            request, session_iface.ISATSession
        ).identities
        d_list = []
        for entity_jid_s in entities:
            entities_url[entity_jid_s] = self.getPageByName("blog_view").getURL(
                entity_jid_s
            )
            if entity_jid_s not in identities:
                d_list.append(self.host.bridgeCall(u"identityGet",
                                                   entity_jid_s,
                                                   profile))
        identities_data = yield defer.DeferredList(d_list)
        for idx, (success, identity) in enumerate(identities_data):
            entity_jid_s = entities[idx]
            if not success:
                log.warning(_(u"Can't retrieve identity of {entity}")
                    .format(entity=entity_jid_s))
            else:
                identities[entity_jid_s] = identity


def on_data_post(self, request):
    jid_str = self.getPostedData(request, u"jid")
    try:
        jid_ = jid.JID(jid_str)
    except RuntimeError:
        self.pageError(request, C.HTTP_BAD_REQUEST)
    url = self.getPageByName(u"blog_view").getURL(jid_.full())
    self.HTTPRedirect(request, url)