Mercurial > libervia-web
view libervia/pages/forums/list/page_meta.py @ 1406:cffa3ae4d0aa
pages (blog/view): move URL friendly code to backend tools:
- the code to render an URL friendly is now in `sat.tools.common.regex`
- user friendly extra text is now only displayed when no `-` is found in ID. This is a
temporary transition behaviour because new blog items IDs are now user friendly by
default, and thus extra text is not wanted anymore.
For older IDs it is still needed though, and the presence of `-` is used to guess when
an ID is user friendly or not.
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 16 Apr 2021 18:44:49 +0200 |
parents | f511f8fbbf8a |
children | eaf36fffcbdb |
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.log import getLogger from sat.core.i18n import _ from sat.tools.common import uri as xmpp_uri log = getLogger(__name__) import json """forum handling pages""" name = "forums" access = C.PAGES_ACCESS_PUBLIC template = "forum/overview.html" def parse_url(self, request): self.getPathArgs( request, ["service", "node", "forum_key"], service="@jid", node="@", forum_key="", ) def getLinks(self, forums): for forum in forums: try: uri = forum["uri"] except KeyError: pass else: uri = xmpp_uri.parseXMPPUri(uri) service = uri["path"] node = uri["node"] forum["http_url"] = self.getPageByName("forum_topics").getURL(service, node) if "sub-forums" in forum: getLinks(self, forum["sub-forums"]) @defer.inlineCallbacks def prepare_render(self, request): data = self.getRData(request) template_data = request.template_data service, node, key = data["service"], data["node"], data["forum_key"] profile = self.getProfile(request) or C.SERVICE_PROFILE try: forums_raw = yield self.host.bridgeCall( "forumsGet", service.full() if service else "", node, key, profile ) except Exception as e: log.warning(_("Can't retrieve forums: {msg}").format(msg=e)) forums = [] else: forums = json.loads(forums_raw) getLinks(self, forums) template_data["forums"] = forums