forked from KavajNaruj/homeassistant-enigma-player
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
748 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,200 @@ | ||
""" | ||
Support for Enigma2 set-top boxes. | ||
For more details about this platform, please refer to the documentation at | ||
https://home-assistant.io/components/enigma/ | ||
""" | ||
|
||
import logging | ||
import urllib.parse | ||
import urllib.request | ||
|
||
import voluptuous as vol | ||
|
||
from homeassistant.const import ( | ||
CONF_DEVICES, CONF_HOST, CONF_NAME, CONF_PASSWORD, CONF_PORT, CONF_TIMEOUT, | ||
CONF_USERNAME) | ||
from homeassistant.helpers import config_validation as cv, discovery | ||
from homeassistant.helpers.entity import Entity | ||
|
||
# REQUIREMENTS | ||
REQUIREMENTS = ['beautifulsoup4==4.6.3'] | ||
|
||
# LOGGING | ||
_LOGGER = logging.getLogger(__name__) | ||
|
||
# DOMAIN | ||
DOMAIN = 'enigma' | ||
|
||
# Supported domains | ||
SUPPORTED_DOMAINS = ['media_player'] | ||
|
||
# DEFAULTS | ||
DEFAULT_PORT = 80 | ||
DEFAULT_NAME = "Enigma2 Satelite" | ||
DEFAULT_TIMEOUT = 30 | ||
DEFAULT_USERNAME = 'root' | ||
DEFAULT_PASSWORD = '' | ||
DEFAULT_BOUQUET = '' | ||
DEFAULT_PICON = 'picon' | ||
|
||
# Local | ||
CONF_BOUQUET = 'bouquet' | ||
CONF_PICON = 'picon' | ||
CONF_OPENER = '' | ||
|
||
ENIGMA_CONFIG = vol.Schema({ | ||
vol.Required(CONF_HOST): cv.string, | ||
vol.Optional(CONF_PORT, default=DEFAULT_PORT): cv.port, | ||
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string, | ||
vol.Optional(CONF_USERNAME, default=DEFAULT_USERNAME): cv.string, | ||
vol.Optional(CONF_PASSWORD, default=DEFAULT_PASSWORD): cv.string, | ||
vol.Optional(CONF_TIMEOUT, default=DEFAULT_TIMEOUT): cv.socket_timeout, | ||
vol.Optional(CONF_BOUQUET, default=DEFAULT_BOUQUET): cv.string, | ||
vol.Optional(CONF_PICON, default=DEFAULT_PICON): cv.string, | ||
}) | ||
|
||
|
||
CONFIG_SCHEMA = vol.Schema({ | ||
DOMAIN: vol.Schema({ | ||
vol.Required(CONF_DEVICES): | ||
vol.All(cv.ensure_list, [ | ||
vol.Schema({ | ||
vol.Required(CONF_HOST): cv.string, | ||
vol.Optional(CONF_PORT, default=DEFAULT_PORT): cv.port, | ||
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string, | ||
vol.Optional(CONF_USERNAME, default=DEFAULT_USERNAME): | ||
cv.string, | ||
vol.Optional(CONF_PASSWORD, default=DEFAULT_PASSWORD): | ||
cv.string, | ||
vol.Optional(CONF_TIMEOUT, default=DEFAULT_TIMEOUT): | ||
cv.socket_timeout, | ||
vol.Optional(CONF_BOUQUET, default=DEFAULT_BOUQUET): | ||
cv.string, | ||
vol.Optional(CONF_PICON, default=DEFAULT_PICON): | ||
cv.string, | ||
}), | ||
]), | ||
}) | ||
}, extra=vol.ALLOW_EXTRA) | ||
|
||
|
||
async def async_setup(hass, config): | ||
"""Initialize the Enigma device.""" | ||
if DOMAIN not in hass.data: | ||
hass.data[DOMAIN] = [] | ||
|
||
_LOGGER.info("Initializing enigma devices") | ||
|
||
enigma_list = [] | ||
|
||
configured_devices = config[DOMAIN].get(CONF_DEVICES) | ||
for device in configured_devices: | ||
enigma = EnigmaDevice(device.get(CONF_HOST), | ||
device.get(CONF_PORT), | ||
device.get(CONF_NAME), | ||
device.get(CONF_USERNAME), | ||
device.get(CONF_PASSWORD), | ||
device.get(CONF_TIMEOUT), | ||
device.get(CONF_BOUQUET), | ||
device.get(CONF_PICON)) | ||
|
||
_LOGGER.debug("Enigma device %s configured", device.get(CONF_HOST)) | ||
enigma_list.append(enigma) | ||
|
||
hass.data[DOMAIN] = enigma_list | ||
|
||
if not enigma_list: | ||
_LOGGER.info("No enigma devices configured") | ||
return False | ||
|
||
_LOGGER.debug("Configured %s enigmas", len(enigma_list)) | ||
|
||
for domain in SUPPORTED_DOMAINS: | ||
hass.async_create_task( | ||
discovery.async_load_platform(hass, domain, DOMAIN, {}, config)) | ||
return True | ||
|
||
|
||
class EnigmaDevice(Entity): | ||
"""Representation of a Enigma device.""" | ||
|
||
def __init__(self, host, port, name, username, password, timeout, | ||
bouquet, picon): | ||
"""Initialize the Enigma device.""" | ||
self._host = host | ||
self._port = port | ||
self._name = name | ||
self._username = username | ||
self._password = password | ||
self._timeout = timeout | ||
self._bouquet = bouquet | ||
self._picon = picon | ||
self._pwstate = True | ||
self._volume = 0 | ||
self._muted = False | ||
self._selected_source = '' | ||
self._picon_url = None | ||
self._source_names = {} | ||
self._sources = {} | ||
# Opener for http connection | ||
self._opener = False | ||
|
||
# Check if is password enabled | ||
if self._password is not None: | ||
# Handle HTTP Auth | ||
mgr = urllib.request.HTTPPasswordMgrWithDefaultRealm() | ||
mgr.add_password(None, self._host+":"+str(self._port), | ||
self._username, self._password) | ||
handler = urllib.request.HTTPBasicAuthHandler(mgr) | ||
self._opener = urllib.request.build_opener(handler) | ||
self._opener.addheaders = [('User-agent', 'Mozilla/5.0')] | ||
else: | ||
handler = urllib.request.HTTPHandler() | ||
self._opener = urllib.request.build_opener(handler) | ||
self._opener.addheaders = [('User-agent', 'Mozilla/5.0')] | ||
|
||
@property | ||
def get_host(self): | ||
"""Return the host of the device.""" | ||
return self._host | ||
|
||
@property | ||
def get_port(self): | ||
"""Return the port of the device.""" | ||
return self._port | ||
|
||
@property | ||
def get_name(self): | ||
"""Return the name of the device.""" | ||
return self._name | ||
|
||
@property | ||
def get_username(self): | ||
"""Return the username of the device.""" | ||
return self._username | ||
|
||
@property | ||
def get_password(self): | ||
"""Return the password of the device.""" | ||
return self._password | ||
|
||
@property | ||
def get_timeout(self): | ||
"""Return the timeout of the device.""" | ||
return self._timeout | ||
|
||
@property | ||
def get_bouquet(self): | ||
"""Return the bouquet of the device.""" | ||
return self._bouquet | ||
|
||
@property | ||
def get_picon(self): | ||
"""Return the picon of the device.""" | ||
return self._picon | ||
|
||
@property | ||
def get_opener(self): | ||
"""Return the socket of the device.""" | ||
return self._opener |
Oops, something went wrong.