# -*- coding: utf-8 -*- ########################################################################## # OpenLP - Open Source Lyrics Projection # # ---------------------------------------------------------------------- # # Copyright (c) 2008-2022 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 WARNING: This class is DEPRECATED, if you need the state of the program, use the registry to access variables. Used only for the deprecated V1 HTTP API. """ def __init__(self): """ Constructor for the poll builder class. """ super(Poller, self).__init__() def poll(self): return {'results': { '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') }}