2016-02-09 23:29:28 +00:00
|
|
|
"""
|
2016-03-08 09:34:33 +00:00
|
|
|
Support for interacting with Snapcast clients.
|
2016-02-09 23:29:28 +00:00
|
|
|
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
|
|
https://home-assistant.io/components/media_player.snapcast/
|
|
|
|
"""
|
2017-05-30 09:34:39 +00:00
|
|
|
import asyncio
|
2016-02-09 23:29:28 +00:00
|
|
|
import logging
|
|
|
|
import socket
|
2016-09-05 20:53:23 +00:00
|
|
|
|
2016-09-02 04:36:14 +00:00
|
|
|
import voluptuous as vol
|
2016-02-09 23:29:28 +00:00
|
|
|
|
|
|
|
from homeassistant.components.media_player import (
|
2018-01-21 06:35:38 +00:00
|
|
|
DOMAIN, PLATFORM_SCHEMA, SUPPORT_SELECT_SOURCE, SUPPORT_VOLUME_MUTE,
|
|
|
|
SUPPORT_VOLUME_SET, MediaPlayerDevice)
|
2016-04-26 09:46:08 +00:00
|
|
|
from homeassistant.const import (
|
2018-01-21 06:35:38 +00:00
|
|
|
ATTR_ENTITY_ID, CONF_HOST, CONF_PORT, STATE_IDLE, STATE_OFF, STATE_ON,
|
|
|
|
STATE_PLAYING, STATE_UNKNOWN)
|
2016-09-05 20:53:23 +00:00
|
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
|
2017-11-17 01:32:26 +00:00
|
|
|
REQUIREMENTS = ['snapcast==2.0.8']
|
2016-09-05 20:53:23 +00:00
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
2018-01-15 22:53:56 +00:00
|
|
|
DATA_KEY = 'snapcast'
|
2016-04-26 09:46:08 +00:00
|
|
|
|
2017-05-30 09:34:39 +00:00
|
|
|
SERVICE_SNAPSHOT = 'snapcast_snapshot'
|
|
|
|
SERVICE_RESTORE = 'snapcast_restore'
|
2016-02-09 23:29:28 +00:00
|
|
|
|
2017-05-30 09:34:39 +00:00
|
|
|
SUPPORT_SNAPCAST_CLIENT = SUPPORT_VOLUME_MUTE | SUPPORT_VOLUME_SET
|
|
|
|
SUPPORT_SNAPCAST_GROUP = SUPPORT_VOLUME_MUTE | SUPPORT_VOLUME_SET |\
|
|
|
|
SUPPORT_SELECT_SOURCE
|
|
|
|
|
|
|
|
GROUP_PREFIX = 'snapcast_group_'
|
|
|
|
GROUP_SUFFIX = 'Snapcast Group'
|
|
|
|
CLIENT_PREFIX = 'snapcast_client_'
|
|
|
|
CLIENT_SUFFIX = 'Snapcast Client'
|
|
|
|
|
|
|
|
SERVICE_SCHEMA = vol.Schema({
|
|
|
|
ATTR_ENTITY_ID: cv.entity_ids,
|
|
|
|
})
|
2016-02-09 23:29:28 +00:00
|
|
|
|
2016-09-02 04:36:14 +00:00
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|
|
|
vol.Required(CONF_HOST): cv.string,
|
2018-01-21 06:35:38 +00:00
|
|
|
vol.Optional(CONF_PORT): cv.port,
|
2016-09-02 04:36:14 +00:00
|
|
|
})
|
|
|
|
|
2016-02-09 23:29:28 +00:00
|
|
|
|
2017-05-30 09:34:39 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def async_setup_platform(hass, config, async_add_devices, discovery_info=None):
|
2018-01-21 06:35:38 +00:00
|
|
|
"""Set up the Snapcast platform."""
|
2016-02-09 23:29:28 +00:00
|
|
|
import snapcast.control
|
2017-05-30 09:34:39 +00:00
|
|
|
from snapcast.control.server import CONTROL_PORT
|
2016-09-02 04:36:14 +00:00
|
|
|
host = config.get(CONF_HOST)
|
2017-05-30 09:34:39 +00:00
|
|
|
port = config.get(CONF_PORT, CONTROL_PORT)
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def _handle_service(service):
|
|
|
|
"""Handle services."""
|
|
|
|
entity_ids = service.data.get(ATTR_ENTITY_ID)
|
2018-01-15 22:53:56 +00:00
|
|
|
devices = [device for device in hass.data[DATA_KEY]
|
2017-05-30 09:34:39 +00:00
|
|
|
if device.entity_id in entity_ids]
|
|
|
|
for device in devices:
|
|
|
|
if service.service == SERVICE_SNAPSHOT:
|
|
|
|
device.snapshot()
|
|
|
|
elif service.service == SERVICE_RESTORE:
|
|
|
|
yield from device.async_restore()
|
|
|
|
|
|
|
|
hass.services.async_register(
|
2018-01-21 06:35:38 +00:00
|
|
|
DOMAIN, SERVICE_SNAPSHOT, _handle_service, schema=SERVICE_SCHEMA)
|
2017-05-30 09:34:39 +00:00
|
|
|
hass.services.async_register(
|
2018-01-21 06:35:38 +00:00
|
|
|
DOMAIN, SERVICE_RESTORE, _handle_service, schema=SERVICE_SCHEMA)
|
2016-09-05 20:53:23 +00:00
|
|
|
|
2016-02-09 23:29:28 +00:00
|
|
|
try:
|
2017-05-30 09:34:39 +00:00
|
|
|
server = yield from snapcast.control.create_server(
|
2017-11-17 01:32:26 +00:00
|
|
|
hass.loop, host, port, reconnect=True)
|
2016-02-09 23:29:28 +00:00
|
|
|
except socket.gaierror:
|
2018-01-21 06:35:38 +00:00
|
|
|
_LOGGER.error("Could not connect to Snapcast server at %s:%d",
|
2017-05-30 09:34:39 +00:00
|
|
|
host, port)
|
2018-01-21 06:35:38 +00:00
|
|
|
return
|
|
|
|
|
2018-06-12 13:46:53 +00:00
|
|
|
# Note: Host part is needed, when using multiple snapservers
|
|
|
|
hpid = '{}:{}'.format(host, port)
|
|
|
|
|
|
|
|
groups = [SnapcastGroupDevice(group, hpid) for group in server.groups]
|
|
|
|
clients = [SnapcastClientDevice(client, hpid) for client in server.clients]
|
2017-05-30 09:34:39 +00:00
|
|
|
devices = groups + clients
|
2018-01-15 22:53:56 +00:00
|
|
|
hass.data[DATA_KEY] = devices
|
2017-05-30 09:34:39 +00:00
|
|
|
async_add_devices(devices)
|
2016-09-05 20:53:23 +00:00
|
|
|
|
2016-02-09 23:29:28 +00:00
|
|
|
|
2017-05-30 09:34:39 +00:00
|
|
|
class SnapcastGroupDevice(MediaPlayerDevice):
|
|
|
|
"""Representation of a Snapcast group device."""
|
2016-02-09 23:29:28 +00:00
|
|
|
|
2018-06-12 13:46:53 +00:00
|
|
|
def __init__(self, group, uid_part):
|
2017-05-30 09:34:39 +00:00
|
|
|
"""Initialize the Snapcast group device."""
|
|
|
|
group.set_callback(self.schedule_update_ha_state)
|
|
|
|
self._group = group
|
2018-06-12 13:46:53 +00:00
|
|
|
self._uid = '{}{}_{}'.format(GROUP_PREFIX, uid_part,
|
|
|
|
self._group.identifier)
|
2017-05-30 09:34:39 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def state(self):
|
|
|
|
"""Return the state of the player."""
|
|
|
|
return {
|
|
|
|
'idle': STATE_IDLE,
|
|
|
|
'playing': STATE_PLAYING,
|
|
|
|
'unknown': STATE_UNKNOWN,
|
|
|
|
}.get(self._group.stream_status, STATE_UNKNOWN)
|
|
|
|
|
2018-06-10 06:31:42 +00:00
|
|
|
@property
|
|
|
|
def unique_id(self):
|
|
|
|
"""Return the ID of snapcast group."""
|
2018-06-12 13:46:53 +00:00
|
|
|
return self._uid
|
2018-06-10 06:31:42 +00:00
|
|
|
|
2017-05-30 09:34:39 +00:00
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
"""Return the name of the device."""
|
|
|
|
return '{}{}'.format(GROUP_PREFIX, self._group.identifier)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def source(self):
|
|
|
|
"""Return the current input source."""
|
|
|
|
return self._group.stream
|
|
|
|
|
|
|
|
@property
|
|
|
|
def volume_level(self):
|
|
|
|
"""Return the volume level."""
|
|
|
|
return self._group.volume / 100
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_volume_muted(self):
|
|
|
|
"""Volume muted."""
|
|
|
|
return self._group.muted
|
|
|
|
|
|
|
|
@property
|
|
|
|
def supported_features(self):
|
|
|
|
"""Flag media player features that are supported."""
|
|
|
|
return SUPPORT_SNAPCAST_GROUP
|
|
|
|
|
|
|
|
@property
|
|
|
|
def source_list(self):
|
|
|
|
"""List of available input sources."""
|
|
|
|
return list(self._group.streams_by_name().keys())
|
|
|
|
|
|
|
|
@property
|
|
|
|
def device_state_attributes(self):
|
|
|
|
"""Return the state attributes."""
|
|
|
|
name = '{} {}'.format(self._group.friendly_name, GROUP_SUFFIX)
|
|
|
|
return {
|
|
|
|
'friendly_name': name
|
|
|
|
}
|
|
|
|
|
|
|
|
@property
|
|
|
|
def should_poll(self):
|
|
|
|
"""Do not poll for state."""
|
|
|
|
return False
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def async_select_source(self, source):
|
|
|
|
"""Set input source."""
|
|
|
|
streams = self._group.streams_by_name()
|
|
|
|
if source in streams:
|
|
|
|
yield from self._group.set_stream(streams[source].identifier)
|
2017-09-12 08:01:03 +00:00
|
|
|
self.async_schedule_update_ha_state()
|
2017-05-30 09:34:39 +00:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def async_mute_volume(self, mute):
|
|
|
|
"""Send the mute command."""
|
|
|
|
yield from self._group.set_muted(mute)
|
2017-09-12 08:01:03 +00:00
|
|
|
self.async_schedule_update_ha_state()
|
2017-05-30 09:34:39 +00:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def async_set_volume_level(self, volume):
|
|
|
|
"""Set the volume level."""
|
|
|
|
yield from self._group.set_volume(round(volume * 100))
|
2017-09-12 08:01:03 +00:00
|
|
|
self.async_schedule_update_ha_state()
|
2017-05-30 09:34:39 +00:00
|
|
|
|
|
|
|
def snapshot(self):
|
|
|
|
"""Snapshot the group state."""
|
|
|
|
self._group.snapshot()
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def async_restore(self):
|
|
|
|
"""Restore the group state."""
|
|
|
|
yield from self._group.restore()
|
|
|
|
|
|
|
|
|
|
|
|
class SnapcastClientDevice(MediaPlayerDevice):
|
2016-03-08 09:34:33 +00:00
|
|
|
"""Representation of a Snapcast client device."""
|
2016-02-09 23:29:28 +00:00
|
|
|
|
2018-06-12 13:46:53 +00:00
|
|
|
def __init__(self, client, uid_part):
|
2017-05-30 09:34:39 +00:00
|
|
|
"""Initialize the Snapcast client device."""
|
|
|
|
client.set_callback(self.schedule_update_ha_state)
|
2016-02-09 23:29:28 +00:00
|
|
|
self._client = client
|
2018-06-12 13:46:53 +00:00
|
|
|
self._uid = '{}{}_{}'.format(CLIENT_PREFIX, uid_part,
|
|
|
|
self._client.identifier)
|
2016-02-09 23:29:28 +00:00
|
|
|
|
2018-06-10 06:31:42 +00:00
|
|
|
@property
|
|
|
|
def unique_id(self):
|
2018-06-12 13:46:53 +00:00
|
|
|
"""
|
|
|
|
Return the ID of this snapcast client.
|
|
|
|
|
|
|
|
Note: Host part is needed, when using multiple snapservers
|
|
|
|
"""
|
|
|
|
return self._uid
|
2018-06-10 06:31:42 +00:00
|
|
|
|
2016-02-09 23:29:28 +00:00
|
|
|
@property
|
|
|
|
def name(self):
|
2016-03-08 09:34:33 +00:00
|
|
|
"""Return the name of the device."""
|
2017-05-30 09:34:39 +00:00
|
|
|
return '{}{}'.format(CLIENT_PREFIX, self._client.identifier)
|
2016-02-09 23:29:28 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def volume_level(self):
|
2016-03-08 09:34:33 +00:00
|
|
|
"""Return the volume level."""
|
2016-02-09 23:29:28 +00:00
|
|
|
return self._client.volume / 100
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_volume_muted(self):
|
2016-03-08 09:34:33 +00:00
|
|
|
"""Volume muted."""
|
2016-02-09 23:29:28 +00:00
|
|
|
return self._client.muted
|
|
|
|
|
|
|
|
@property
|
2017-02-08 04:42:45 +00:00
|
|
|
def supported_features(self):
|
|
|
|
"""Flag media player features that are supported."""
|
2017-05-30 09:34:39 +00:00
|
|
|
return SUPPORT_SNAPCAST_CLIENT
|
2016-02-09 23:29:28 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def state(self):
|
2016-03-08 09:34:33 +00:00
|
|
|
"""Return the state of the player."""
|
2017-05-30 09:34:39 +00:00
|
|
|
if self._client.connected:
|
|
|
|
return STATE_ON
|
|
|
|
return STATE_OFF
|
2016-04-26 09:46:08 +00:00
|
|
|
|
|
|
|
@property
|
2017-05-30 09:34:39 +00:00
|
|
|
def device_state_attributes(self):
|
|
|
|
"""Return the state attributes."""
|
|
|
|
name = '{} {}'.format(self._client.friendly_name, CLIENT_SUFFIX)
|
|
|
|
return {
|
|
|
|
'friendly_name': name
|
|
|
|
}
|
2016-04-26 09:46:08 +00:00
|
|
|
|
|
|
|
@property
|
2017-05-30 09:34:39 +00:00
|
|
|
def should_poll(self):
|
|
|
|
"""Do not poll for state."""
|
|
|
|
return False
|
2016-02-09 23:29:28 +00:00
|
|
|
|
2017-05-30 09:34:39 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def async_mute_volume(self, mute):
|
2016-03-08 09:34:33 +00:00
|
|
|
"""Send the mute command."""
|
2017-05-30 09:34:39 +00:00
|
|
|
yield from self._client.set_muted(mute)
|
2017-09-12 08:01:03 +00:00
|
|
|
self.async_schedule_update_ha_state()
|
2016-02-09 23:29:28 +00:00
|
|
|
|
2017-05-30 09:34:39 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def async_set_volume_level(self, volume):
|
2016-03-08 09:34:33 +00:00
|
|
|
"""Set the volume level."""
|
2017-05-30 09:34:39 +00:00
|
|
|
yield from self._client.set_volume(round(volume * 100))
|
2017-09-12 08:01:03 +00:00
|
|
|
self.async_schedule_update_ha_state()
|
2016-04-26 09:46:08 +00:00
|
|
|
|
2017-05-30 09:34:39 +00:00
|
|
|
def snapshot(self):
|
|
|
|
"""Snapshot the client state."""
|
|
|
|
self._client.snapshot()
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def async_restore(self):
|
|
|
|
"""Restore the client state."""
|
|
|
|
yield from self._client.restore()
|