Mercurial > libervia-web
annotate libervia/web/pages/blog/edit/page_meta.py @ 1616:6bfeb9f0fb84
browser (calls): conferences implementation:
- Handle A/V conferences calls creation/joining by entering a conference room JID in the
search box.
- Group call box has been improved and is used both for group calls (small number of
participants) and A/V conferences (larger number of participants).
- Fullscreen button for group call is working.
- Avatar/user nickname are shown in group call on peer user, as an overlay on video
stream.
- Use `user` metadata when present to display the right user avatar/name when receiving a
stream from SFU (i.e. A/V conference).
- Peer user have a new 3 dots menu with a `pin` item to (un)pin it (i.e. display it on
full container with on top).
- Updated webrtc to handle unidirectional streams correctly and to adapt to A/V conference
specification.
rel 448
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 07 Aug 2024 00:01:57 +0200 |
parents | eb00d593801d |
children |
rev | line source |
---|---|
1416 | 1 #!/usr/bin/env python3 |
2 | |
1518
eb00d593801d
refactoring: rename `libervia` to `libervia.web` + update imports following backend changes
Goffi <goffi@goffi.org>
parents:
1509
diff
changeset
|
3 from libervia.web.server.constants import Const as C |
eb00d593801d
refactoring: rename `libervia` to `libervia.web` + update imports following backend changes
Goffi <goffi@goffi.org>
parents:
1509
diff
changeset
|
4 from libervia.backend.core.log import getLogger |
eb00d593801d
refactoring: rename `libervia` to `libervia.web` + update imports following backend changes
Goffi <goffi@goffi.org>
parents:
1509
diff
changeset
|
5 from libervia.backend.tools.common import data_format |
1416 | 6 |
7 log = getLogger(__name__) | |
8 | |
9 name = "blog_edit" | |
10 access = C.PAGES_ACCESS_PROFILE | |
11 template = "blog/publish.html" | |
12 | |
13 | |
14 async def on_data_post(self, request): | |
1509
106bae41f5c8
massive refactoring from camelCase -> snake_case. See backend commit log for more details
Goffi <goffi@goffi.org>
parents:
1495
diff
changeset
|
15 profile = self.get_profile(request) |
1416 | 16 if profile is None: |
1509
106bae41f5c8
massive refactoring from camelCase -> snake_case. See backend commit log for more details
Goffi <goffi@goffi.org>
parents:
1495
diff
changeset
|
17 self.page_error(request, C.HTTP_FORBIDDEN) |
106bae41f5c8
massive refactoring from camelCase -> snake_case. See backend commit log for more details
Goffi <goffi@goffi.org>
parents:
1495
diff
changeset
|
18 request_data = self.get_r_data(request) |
106bae41f5c8
massive refactoring from camelCase -> snake_case. See backend commit log for more details
Goffi <goffi@goffi.org>
parents:
1495
diff
changeset
|
19 title, tags, body = self.get_posted_data(request, ('title', 'tags', 'body')) |
1495
081b4f8a63d8
pages (blog/edit): allow comments when editing a post
Goffi <goffi@goffi.org>
parents:
1420
diff
changeset
|
20 mb_data = {"content_rich": body, "allow_comments": True} |
1416 | 21 title = title.strip() |
22 if title: | |
23 mb_data["title_rich"] = title | |
24 tags = [t.strip() for t in tags.split(',') if t.strip()] | |
25 if tags: | |
26 mb_data["tags"] = tags | |
27 | |
1509
106bae41f5c8
massive refactoring from camelCase -> snake_case. See backend commit log for more details
Goffi <goffi@goffi.org>
parents:
1495
diff
changeset
|
28 await self.host.bridge_call( |
106bae41f5c8
massive refactoring from camelCase -> snake_case. See backend commit log for more details
Goffi <goffi@goffi.org>
parents:
1495
diff
changeset
|
29 'mb_send', |
1416 | 30 "", |
31 "", | |
32 data_format.serialise(mb_data), | |
33 profile | |
34 ) | |
1420
925a7c498cda
pages (blog/edit): move preview code to new `BlogEditor` class in `editor` module
Goffi <goffi@goffi.org>
parents:
1416
diff
changeset
|
35 |
1509
106bae41f5c8
massive refactoring from camelCase -> snake_case. See backend commit log for more details
Goffi <goffi@goffi.org>
parents:
1495
diff
changeset
|
36 request_data["post_redirect_page"] = self.get_page_by_name("blog") |