view libervia/pages/forums/topics/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 0f37b65fe7c2
children b2d067339de3
line wrap: on
line source

#!/usr/bin/env python2.7
# -*- coding: utf-8 -*-

from libervia.server.constants import Const as C
from twisted.internet import defer
from sat.core.i18n import _
from sat.core.log import getLogger
from sat.tools.common import uri as xmpp_uri

log = getLogger(__name__)

name = u"forum_topics"
access = C.PAGES_ACCESS_PUBLIC
template = u"forum/view_topics.html"


def parse_url(self, request):
    self.getPathArgs(request, ["service", "node"], 2, service=u"jid")


@defer.inlineCallbacks
def prepare_render(self, request):
    profile = self.getProfile(request) or C.SERVICE_PROFILE
    data = self.getRData(request)
    service, node = data[u"service"], data[u"node"]
    request.template_data.update({u"service": service, u"node": node})
    template_data = request.template_data
    topics, metadata = yield self.host.bridgeCall(
        u"forumTopicsGet", service.full(), node, {}, profile
    )
    template_data[u"identities"] = identities = {}
    for topic in topics:
        parsed_uri = xmpp_uri.parseXMPPUri(topic[u"uri"])
        author = topic[u"author"]
        topic[u"http_uri"] = self.getPageByName(u"forum_view").getURL(
            parsed_uri[u"path"], parsed_uri[u"node"]
        )
        if author not in identities:
            identities[topic[u"author"]] = yield self.host.bridgeCall(
                u"identityGet", author, profile
            )
    template_data[u"topics"] = topics


@defer.inlineCallbacks
def on_data_post(self, request):
    profile = self.getProfile(request)
    if profile is None:
        self.pageError(request, C.HTTP_FORBIDDEN)
    type_ = self.getPostedData(request, u"type")
    if type_ == u"new_topic":
        service, node, title, body = self.getPostedData(
            request, (u"service", u"node", u"title", u"body")
        )

        if not title or not body:
            self.pageError(request, C.HTTP_BAD_REQUEST)
        topic_data = {u"title": title, u"content": body}
        try:
            yield self.host.bridgeCall(
                u"forumTopicCreate", service, node, topic_data, profile
            )
        except Exception as e:
            if u"forbidden" in unicode(e):
                self.pageError(request, 401)
            else:
                raise e
    else:
        log.warning(_(u"Unhandled data type: {}").format(type_))