Mercurial > libervia-web
annotate libervia/pages/forums/list/page_meta.py @ 1466:cff720e26089
pages (blog/view): activate pagination when a single item is shown:
`previous_page_url` and `next_page_url` are set when `item_id` is used. For now, they are
both activated even if there is no item before or after, as it would request to make extra
request to check it. This may be improved in 0.9 by using internal cache.
fix 399
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 30 Sep 2021 17:04:22 +0200 |
parents | eaf36fffcbdb |
children | 106bae41f5c8 |
rev | line source |
---|---|
1216 | 1 #!/usr/bin/env python3 |
1239 | 2 |
1058 | 3 from libervia.server.constants import Const as C |
4 from sat.core.log import getLogger | |
1080
2c2b8c08e6c9
pages (forums): log a warning and use an empty list when forums are not available
Goffi <goffi@goffi.org>
parents:
1058
diff
changeset
|
5 from sat.core.i18n import _ |
1058 | 6 from sat.tools.common import uri as xmpp_uri |
1113
cdd389ef97bc
server: code style reformatting using black
Goffi <goffi@goffi.org>
parents:
1080
diff
changeset
|
7 |
1145
29eb15062416
pages: set __name__ for imported pages
Goffi <goffi@goffi.org>
parents:
1124
diff
changeset
|
8 log = getLogger(__name__) |
1058 | 9 import json |
1113
cdd389ef97bc
server: code style reformatting using black
Goffi <goffi@goffi.org>
parents:
1080
diff
changeset
|
10 |
1058 | 11 """forum handling pages""" |
12 | |
1216 | 13 name = "forums" |
1058 | 14 access = C.PAGES_ACCESS_PUBLIC |
1216 | 15 template = "forum/overview.html" |
1058 | 16 |
1113
cdd389ef97bc
server: code style reformatting using black
Goffi <goffi@goffi.org>
parents:
1080
diff
changeset
|
17 |
1058 | 18 def parse_url(self, request): |
1113
cdd389ef97bc
server: code style reformatting using black
Goffi <goffi@goffi.org>
parents:
1080
diff
changeset
|
19 self.getPathArgs( |
cdd389ef97bc
server: code style reformatting using black
Goffi <goffi@goffi.org>
parents:
1080
diff
changeset
|
20 request, |
cdd389ef97bc
server: code style reformatting using black
Goffi <goffi@goffi.org>
parents:
1080
diff
changeset
|
21 ["service", "node", "forum_key"], |
1216 | 22 service="@jid", |
23 node="@", | |
24 forum_key="", | |
1113
cdd389ef97bc
server: code style reformatting using black
Goffi <goffi@goffi.org>
parents:
1080
diff
changeset
|
25 ) |
cdd389ef97bc
server: code style reformatting using black
Goffi <goffi@goffi.org>
parents:
1080
diff
changeset
|
26 |
1058 | 27 |
1427
eaf36fffcbdb
pages (forums): better breadcrumbs
Goffi <goffi@goffi.org>
parents:
1239
diff
changeset
|
28 def add_breadcrumb(self, request, breadcrumbs): |
eaf36fffcbdb
pages (forums): better breadcrumbs
Goffi <goffi@goffi.org>
parents:
1239
diff
changeset
|
29 # we don't want breadcrumbs here as long as there is no forum discovery |
eaf36fffcbdb
pages (forums): better breadcrumbs
Goffi <goffi@goffi.org>
parents:
1239
diff
changeset
|
30 # because it will be the landing page for forums activity until then |
eaf36fffcbdb
pages (forums): better breadcrumbs
Goffi <goffi@goffi.org>
parents:
1239
diff
changeset
|
31 pass |
eaf36fffcbdb
pages (forums): better breadcrumbs
Goffi <goffi@goffi.org>
parents:
1239
diff
changeset
|
32 |
eaf36fffcbdb
pages (forums): better breadcrumbs
Goffi <goffi@goffi.org>
parents:
1239
diff
changeset
|
33 |
1058 | 34 def getLinks(self, forums): |
35 for forum in forums: | |
36 try: | |
1113
cdd389ef97bc
server: code style reformatting using black
Goffi <goffi@goffi.org>
parents:
1080
diff
changeset
|
37 uri = forum["uri"] |
1058 | 38 except KeyError: |
39 pass | |
40 else: | |
41 uri = xmpp_uri.parseXMPPUri(uri) | |
1216 | 42 service = uri["path"] |
43 node = uri["node"] | |
44 forum["http_url"] = self.getPageByName("forum_topics").getURL(service, node) | |
45 if "sub-forums" in forum: | |
46 getLinks(self, forum["sub-forums"]) | |
1113
cdd389ef97bc
server: code style reformatting using black
Goffi <goffi@goffi.org>
parents:
1080
diff
changeset
|
47 |
1058 | 48 |
1427
eaf36fffcbdb
pages (forums): better breadcrumbs
Goffi <goffi@goffi.org>
parents:
1239
diff
changeset
|
49 async def prepare_render(self, request): |
1058 | 50 data = self.getRData(request) |
51 template_data = request.template_data | |
1216 | 52 service, node, key = data["service"], data["node"], data["forum_key"] |
1058 | 53 profile = self.getProfile(request) or C.SERVICE_PROFILE |
54 | |
1080
2c2b8c08e6c9
pages (forums): log a warning and use an empty list when forums are not available
Goffi <goffi@goffi.org>
parents:
1058
diff
changeset
|
55 try: |
1427
eaf36fffcbdb
pages (forums): better breadcrumbs
Goffi <goffi@goffi.org>
parents:
1239
diff
changeset
|
56 forums_raw = await self.host.bridgeCall( |
1216 | 57 "forumsGet", service.full() if service else "", node, key, profile |
1113
cdd389ef97bc
server: code style reformatting using black
Goffi <goffi@goffi.org>
parents:
1080
diff
changeset
|
58 ) |
1080
2c2b8c08e6c9
pages (forums): log a warning and use an empty list when forums are not available
Goffi <goffi@goffi.org>
parents:
1058
diff
changeset
|
59 except Exception as e: |
1216 | 60 log.warning(_("Can't retrieve forums: {msg}").format(msg=e)) |
1080
2c2b8c08e6c9
pages (forums): log a warning and use an empty list when forums are not available
Goffi <goffi@goffi.org>
parents:
1058
diff
changeset
|
61 forums = [] |
2c2b8c08e6c9
pages (forums): log a warning and use an empty list when forums are not available
Goffi <goffi@goffi.org>
parents:
1058
diff
changeset
|
62 else: |
2c2b8c08e6c9
pages (forums): log a warning and use an empty list when forums are not available
Goffi <goffi@goffi.org>
parents:
1058
diff
changeset
|
63 forums = json.loads(forums_raw) |
1058 | 64 getLinks(self, forums) |
65 | |
1216 | 66 template_data["forums"] = forums |