Mercurial > libervia-web
view libervia/pages/forums/view/page_meta.py @ 1363:c3dac1e11341
server: options can now be specified with environment variables:
environment variable are named `LIBERVIA_` + the option name in uppercase.
For instance, `LIBERVIA_PASSPHRASE` can be used to set the passphrase of service profile.
Variable are set in this order of priority (lowest to highest priority):
- `sat.conf` settings
- environment variables
- arguments specified at command line
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 15 Nov 2020 16:59:55 +0100 |
parents | f511f8fbbf8a |
children | 4cf2b73e63aa |
line wrap: on
line source
#!/usr/bin/env python3 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 data_format log = getLogger(__name__) name = "forum_view" access = C.PAGES_ACCESS_PUBLIC template = "forum/view.html" def parse_url(self, request): self.getPathArgs(request, ["service", "node"], 2, service="jid") @defer.inlineCallbacks def prepare_render(self, request): data = self.getRData(request) data["show_comments"] = False blog_page = self.getPageByName("blog_view") request.args[b"before"] = [b""] request.args[b"reverse"] = [b"1"] yield blog_page.prepare_render(self, request) request.template_data["login_url"] = self.getPageRedirectURL(request) @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, "type") if type_ == "comment": service, node, body = self.getPostedData(request, ("service", "node", "body")) if not body: self.pageError(request, C.HTTP_BAD_REQUEST) mb_data = {"content": body} try: yield self.host.bridgeCall( "mbSend", service, node, data_format.serialise(mb_data), profile) except Exception as e: if "forbidden" in str(e): self.pageError(request, 401) else: raise e else: log.warning(_("Unhandled data type: {}").format(type_))