annotate libervia/pages/events/page_meta.py @ 1507:ae5158f3c420

pages (events): quick fix following changes in backend events
author Goffi <goffi@goffi.org>
date Fri, 07 Apr 2023 15:20:36 +0200
parents e3e303a30a74
children 106bae41f5c8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1178
diff changeset
1 #!/usr/bin/env python3
1239
f511f8fbbf8a fixed shebangs
Goffi <goffi@goffi.org>
parents: 1216
diff changeset
2
1111
4d1c4bd4931a pages (events): added root, admin, new, rsvp and view pages
Goffi <goffi@goffi.org>
parents:
diff changeset
3
4d1c4bd4931a pages (events): added root, admin, new, rsvp and view pages
Goffi <goffi@goffi.org>
parents:
diff changeset
4 from sat.core.i18n import _
4d1c4bd4931a pages (events): added root, admin, new, rsvp and view pages
Goffi <goffi@goffi.org>
parents:
diff changeset
5 from sat.core.log import getLogger
1507
ae5158f3c420 pages (events): quick fix following changes in backend events
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
6 from sat.tools.common import data_format
ae5158f3c420 pages (events): quick fix following changes in backend events
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
7 from twisted.internet import defer
ae5158f3c420 pages (events): quick fix following changes in backend events
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
8
ae5158f3c420 pages (events): quick fix following changes in backend events
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
9 from libervia.server.constants import Const as C
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1111
diff changeset
10
1145
29eb15062416 pages: set __name__ for imported pages
Goffi <goffi@goffi.org>
parents: 1124
diff changeset
11 log = getLogger(__name__)
1378
e3e303a30a74 pages (tickets): renamed "tickets" to "lists":
Goffi <goffi@goffi.org>
parents: 1239
diff changeset
12
1111
4d1c4bd4931a pages (events): added root, admin, new, rsvp and view pages
Goffi <goffi@goffi.org>
parents:
diff changeset
13
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1178
diff changeset
14 name = "events"
1111
4d1c4bd4931a pages (events): added root, admin, new, rsvp and view pages
Goffi <goffi@goffi.org>
parents:
diff changeset
15 access = C.PAGES_ACCESS_PUBLIC
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1178
diff changeset
16 template = "event/overview.html"
1111
4d1c4bd4931a pages (events): added root, admin, new, rsvp and view pages
Goffi <goffi@goffi.org>
parents:
diff changeset
17
4d1c4bd4931a pages (events): added root, admin, new, rsvp and view pages
Goffi <goffi@goffi.org>
parents:
diff changeset
18
1507
ae5158f3c420 pages (events): quick fix following changes in backend events
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
19 async def prepare_render(self, request):
1111
4d1c4bd4931a pages (events): added root, admin, new, rsvp and view pages
Goffi <goffi@goffi.org>
parents:
diff changeset
20 profile = self.getProfile(request)
4d1c4bd4931a pages (events): added root, admin, new, rsvp and view pages
Goffi <goffi@goffi.org>
parents:
diff changeset
21 template_data = request.template_data
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1178
diff changeset
22 template_data["url_event_new"] = self.getSubPageURL(request, "event_new")
1111
4d1c4bd4931a pages (events): added root, admin, new, rsvp and view pages
Goffi <goffi@goffi.org>
parents:
diff changeset
23 if profile is not None:
4d1c4bd4931a pages (events): added root, admin, new, rsvp and view pages
Goffi <goffi@goffi.org>
parents:
diff changeset
24 try:
1507
ae5158f3c420 pages (events): quick fix following changes in backend events
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
25 events = data_format.deserialise(
ae5158f3c420 pages (events): quick fix following changes in backend events
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
26 await self.host.bridgeCall("eventsGet", "", "", [], "", profile),
ae5158f3c420 pages (events): quick fix following changes in backend events
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
27 type_check=list
ae5158f3c420 pages (events): quick fix following changes in backend events
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
28 )
1178
92ca86e417e3 pages (events): moved get interests code in prepare_render + use image as thumb_url if it does not already exist
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
29 except Exception as e:
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1178
diff changeset
30 log.warning(_("Can't get events list for {profile}: {reason}").format(
1178
92ca86e417e3 pages (events): moved get interests code in prepare_render + use image as thumb_url if it does not already exist
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
31 profile=profile, reason=e))
1111
4d1c4bd4931a pages (events): added root, admin, new, rsvp and view pages
Goffi <goffi@goffi.org>
parents:
diff changeset
32 else:
4d1c4bd4931a pages (events): added root, admin, new, rsvp and view pages
Goffi <goffi@goffi.org>
parents:
diff changeset
33 own_events = []
4d1c4bd4931a pages (events): added root, admin, new, rsvp and view pages
Goffi <goffi@goffi.org>
parents:
diff changeset
34 other_events = []
4d1c4bd4931a pages (events): added root, admin, new, rsvp and view pages
Goffi <goffi@goffi.org>
parents:
diff changeset
35 for event in events:
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1111
diff changeset
36 if C.bool(event.get("creator", C.BOOL_FALSE)):
1111
4d1c4bd4931a pages (events): added root, admin, new, rsvp and view pages
Goffi <goffi@goffi.org>
parents:
diff changeset
37 own_events.append(event)
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1111
diff changeset
38 event["url"] = self.getSubPageURL(
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1111
diff changeset
39 request,
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1178
diff changeset
40 "event_admin",
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1111
diff changeset
41 )
1111
4d1c4bd4931a pages (events): added root, admin, new, rsvp and view pages
Goffi <goffi@goffi.org>
parents:
diff changeset
42 else:
4d1c4bd4931a pages (events): added root, admin, new, rsvp and view pages
Goffi <goffi@goffi.org>
parents:
diff changeset
43 other_events.append(event)
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1111
diff changeset
44 event["url"] = self.getSubPageURL(
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1111
diff changeset
45 request,
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1178
diff changeset
46 "event_rsvp",
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1111
diff changeset
47 )
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1178
diff changeset
48 if "thumb_url" not in event and "image" in event:
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1178
diff changeset
49 event["thumb_url"] = event["image"]
1111
4d1c4bd4931a pages (events): added root, admin, new, rsvp and view pages
Goffi <goffi@goffi.org>
parents:
diff changeset
50
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1178
diff changeset
51 template_data["events"] = own_events + other_events