""" Support for Denon Network Receivers. For more details about this platform, please refer to the documentation at https://home-assistant.io/components/media_player.denon/ """ import logging import telnetlib import voluptuous as vol from homeassistant.components.media_player import ( PLATFORM_SCHEMA, SUPPORT_NEXT_TRACK, SUPPORT_SELECT_SOURCE, SUPPORT_PAUSE, SUPPORT_PREVIOUS_TRACK, SUPPORT_TURN_OFF, SUPPORT_TURN_ON, SUPPORT_VOLUME_MUTE, SUPPORT_VOLUME_SET, MediaPlayerDevice) from homeassistant.const import ( CONF_HOST, CONF_NAME, STATE_OFF, STATE_ON, STATE_UNKNOWN) import homeassistant.helpers.config_validation as cv _LOGGER = logging.getLogger(__name__) DEFAULT_NAME = 'Music station' SUPPORT_DENON = SUPPORT_PAUSE | SUPPORT_VOLUME_SET | \ SUPPORT_VOLUME_MUTE | SUPPORT_PREVIOUS_TRACK | \ SUPPORT_SELECT_SOURCE | SUPPORT_NEXT_TRACK | \ SUPPORT_TURN_ON | SUPPORT_TURN_OFF PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({ vol.Required(CONF_HOST): cv.string, vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string, }) def setup_platform(hass, config, add_devices, discovery_info=None): """Setup the Denon platform.""" denon = DenonDevice(config.get(CONF_NAME), config.get(CONF_HOST)) if denon.update(): add_devices([denon]) return True else: return False class DenonDevice(MediaPlayerDevice): """Representation of a Denon device.""" def __init__(self, name, host): """Initialize the Denon device.""" self._name = name self._host = host self._pwstate = 'PWSTANDBY' self._volume = 0 self._source_list = {'TV': 'SITV', 'Tuner': 'SITUNER', 'Internet Radio': 'SIIRP', 'Favorites': 'SIFVP'} self._muted = False self._mediasource = '' @classmethod def telnet_request(cls, telnet, command): """Execute `command` and return the response.""" telnet.write(command.encode('ASCII') + b'\r') lines = [] while True: line = telnet.read_until(b'\r', timeout=0.2) if not line: break lines.append(line.decode('ASCII').strip()) return lines[0] def telnet_command(self, command): """Establish a telnet connection and sends `command`.""" telnet = telnetlib.Telnet(self._host) telnet.write(command.encode('ASCII') + b'\r') telnet.read_very_eager() # skip response telnet.close() def update(self): """Get the latest details from the device.""" try: telnet = telnetlib.Telnet(self._host) except OSError: return False self._pwstate = self.telnet_request(telnet, 'PW?') volume_str = self.telnet_request(telnet, 'MV?')[len('MV'):] self._volume = int(volume_str) / 60 self._muted = (self.telnet_request(telnet, 'MU?') == 'MUON') self._mediasource = self.telnet_request(telnet, 'SI?')[len('SI'):] telnet.close() return True @property def name(self): """Return the name of the device.""" return self._name @property def state(self): """Return the state of the device.""" if self._pwstate == 'PWSTANDBY': return STATE_OFF if self._pwstate == 'PWON': return STATE_ON return STATE_UNKNOWN @property def volume_level(self): """Volume level of the media player (0..1).""" return self._volume @property def is_volume_muted(self): """Boolean if volume is currently muted.""" return self._muted @property def source_list(self): """List of available input sources.""" return list(self._source_list.keys()) @property def media_title(self): """Current media source.""" return self._mediasource @property def supported_media_commands(self): """Flag of media commands that are supported.""" return SUPPORT_DENON def turn_off(self): """Turn off media player.""" self.telnet_command('PWSTANDBY') def volume_up(self): """Volume up media player.""" self.telnet_command('MVUP') def volume_down(self): """Volume down media player.""" self.telnet_command('MVDOWN') def set_volume_level(self, volume): """Set volume level, range 0..1.""" # 60dB max self.telnet_command('MV' + str(round(volume * 60)).zfill(2)) def mute_volume(self, mute): """Mute (true) or unmute (false) media player.""" self.telnet_command('MU' + ('ON' if mute else 'OFF')) def media_play(self): """Play media media player.""" self.telnet_command('NS9A') def media_pause(self): """Pause media player.""" self.telnet_command('NS9B') def media_next_track(self): """Send the next track command.""" self.telnet_command('NS9D') def media_previous_track(self): """Send the previous track command.""" self.telnet_command('NS9E') def turn_on(self): """Turn the media player on.""" self.telnet_command('PWON') def select_source(self, source): """Select input source.""" self.telnet_command(self._source_list.get(source))