view libervia/pages/tickets/disco/page_meta.py @ 1344:472267dcd4d8

browser (alt_media_player): native player support + poster + flags + restricted area: - alt_media_player will now use native player when possible. This allows to use its controls and behaviour instead of native ones. - a poster can be specified when instanciated manually - video is not preloaded anymore - handle events propagation to plays nicely when used in slideshow - a "restricted area" mode can be used to let click propagation on video border, and thus catch only play/pause in the center. This is notably useful when used in the slideshow, as border can be used to show/hide slideshow controls - player can be reset, in which case the play button overlay is put back, and video is put at its beginning - once video is played at least once, a `in_use` class is added to the element, play button overlay is removed then. This fix a bug when the overlay was still appearing when using bottom play button. - VideoPlayer has been renamed to MediaPlayer
author Goffi <goffi@goffi.org>
date Mon, 24 Aug 2020 23:04:35 +0200
parents f511f8fbbf8a
children
line wrap: on
line source

#!/usr/bin/env python3


from libervia.server.constants import Const as C
from twisted.words.protocols.jabber import jid
from sat.core.log import getLogger

log = getLogger(__name__)
"""ticket handling pages"""

name = "tickets_disco"
access = C.PAGES_ACCESS_PUBLIC
template = "ticket/discover.html"


def prepare_render(self, request):
    tickets_trackers_config = self.host.options["tickets_trackers_json"]
    if tickets_trackers_config:
        trackers = request.template_data["tickets_trackers"] = []
        try:
            for tracker_data in tickets_trackers_config:
                service = tracker_data["service"]
                node = tracker_data["node"]
                name = tracker_data["name"]
                url = self.getPageByName("tickets").getURL(service, node)
                trackers.append({"name": name, "url": url})
        except KeyError as e:
            log.warning("Missing field in tickets_trackers_json: {msg}".format(msg=e))
        except Exception as e:
            log.warning("Can't decode tickets trackers: {msg}".format(msg=e))


def on_data_post(self, request):
    jid_str = self.getPostedData(request, "jid")
    try:
        jid_ = jid.JID(jid_str)
    except RuntimeError:
        self.pageError(request, C.HTTP_BAD_REQUEST)
    # for now we just use default node
    url = self.getPageByName("tickets").getURL(jid_.full(), "@")
    self.HTTPRedirect(request, url)