# -*- coding: utf-8 -*- ########################################################################## # OpenLP - Open Source Lyrics Projection # # ---------------------------------------------------------------------- # # Copyright (c) 2008-2021 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 . # ########################################################################## from openlp.core.common.mixins import RegistryProperties 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.previous = {} def raw_poll(self): return { 'counter': self.live_controller.slide_count if self.live_controller.slide_count else 0, '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': self.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': self.settings.value('api/authentication enabled'), 'chordNotation': self.settings.value('songs/chord notation') } def poll(self): """ Poll OpenLP to determine current state if it has changed. """ current = self.raw_poll() if self.previous != current: self.previous = current return {'results': current} else: return None def poll_first_time(self): """ Poll OpenLP to determine the current state. """ return {'results': self.raw_poll()}