# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ########################################################################## # OpenLP - Open Source Lyrics Projection # # ---------------------------------------------------------------------- # # Copyright (c) 2008-2019 OpenLP Developers # # ---------------------------------------------------------------------- # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # # the Free Software Foundation, either version 3 of the License, or # # (at your option) any later version. # # # # This program is distributed in the hope that it will be useful, # # but WITHOUT ANY WARRANTY; without even the implied warranty of # # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # # GNU General Public License for more details. # # # # You should have received a copy of the GNU General Public License # # along with this program. If not, see . # ########################################################################## import json from openlp.core.common.httputils import get_web_page from openlp.core.common.mixins import RegistryProperties from openlp.core.common.settings import Settings class Poller(RegistryProperties): """ Accessed by the web layer to get status type information from the application """ def __init__(self): """ Constructor for the poll builder class. """ super(Poller, self).__init__() self.live_cache = None self.stage_cache = None self.chords_cache = None def raw_poll(self): return { 'service': self.service_manager.service_id, 'slide': self.live_controller.selected_row or 0, 'item': self.live_controller.service_item.unique_identifier if self.live_controller.service_item else '', 'twelve': Settings().value('api/twelve hour'), 'blank': self.live_controller.blank_screen.isChecked(), 'theme': self.live_controller.theme_screen.isChecked(), 'display': self.live_controller.desktop_screen.isChecked(), 'version': 3, 'isSecure': Settings().value('api/authentication enabled'), 'isAuthorised': False, 'chordNotation': Settings().value('songs/chord notation'), 'isStageActive': self.is_stage_active(), 'isLiveActive': self.is_live_active(), 'isChordsActive': self.is_chords_active() } def poll(self): """ Poll OpenLP to determine the current slide number and item name. """ return {'results': self.raw_poll()} def main_poll(self): """ Poll OpenLP to determine the current slide count. """ result = { 'slide_count': self.live_controller.slide_count } return json.dumps({'results': result}).encode() def reset_cache(self): """ Reset the caches as the web has changed :return: """ self.stage_cache = None self.live_cache = None self.chords.cache = None def is_stage_active(self): """ Is stage active - call it and see but only once :return: if stage is active or not """ if self.stage_cache is None: try: page = get_web_page("http://localhost:4316/stage") except Exception: page = None if page: self.stage_cache = True else: self.stage_cache = False return self.stage_cache def is_live_active(self): """ Is main active - call it and see but only once :return: if live is active or not """ if self.live_cache is None: try: page = get_web_page("http://localhost:4316/main") except Exception: page = None if page: self.live_cache = True else: self.live_cache = False return self.live_cache def is_chords_active(self): """ Is chords active - call it and see but only once :return: if live is active or not """ if self.chords_cache is None: try: page = get_web_page("http://localhost:4316/chords") except Exception: page = None if page: self.chords_cache = True else: self.chords_cache = False return self.chords_cache