2019-04-03 15:40:03 +00:00
|
|
|
"""Support for Frontier Silicon Devices (Medion, Hama, Auna,...)."""
|
2022-01-04 10:08:28 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2017-02-28 14:23:07 +00:00
|
|
|
import logging
|
|
|
|
|
2019-10-20 21:22:51 +00:00
|
|
|
from afsapi import AFSAPI
|
|
|
|
import requests
|
2017-02-28 14:23:07 +00:00
|
|
|
import voluptuous as vol
|
|
|
|
|
2020-04-25 16:00:57 +00:00
|
|
|
from homeassistant.components.media_player import PLATFORM_SCHEMA, MediaPlayerEntity
|
2019-02-08 22:18:18 +00:00
|
|
|
from homeassistant.components.media_player.const import (
|
2019-07-31 19:25:30 +00:00
|
|
|
MEDIA_TYPE_MUSIC,
|
|
|
|
SUPPORT_NEXT_TRACK,
|
|
|
|
SUPPORT_PAUSE,
|
|
|
|
SUPPORT_PLAY,
|
|
|
|
SUPPORT_PLAY_MEDIA,
|
|
|
|
SUPPORT_PREVIOUS_TRACK,
|
|
|
|
SUPPORT_SEEK,
|
|
|
|
SUPPORT_SELECT_SOURCE,
|
|
|
|
SUPPORT_STOP,
|
|
|
|
SUPPORT_TURN_OFF,
|
|
|
|
SUPPORT_TURN_ON,
|
|
|
|
SUPPORT_VOLUME_MUTE,
|
|
|
|
SUPPORT_VOLUME_SET,
|
|
|
|
SUPPORT_VOLUME_STEP,
|
|
|
|
)
|
2017-02-28 14:23:07 +00:00
|
|
|
from homeassistant.const import (
|
2019-07-31 19:25:30 +00:00
|
|
|
CONF_HOST,
|
2020-02-23 16:05:24 +00:00
|
|
|
CONF_NAME,
|
2019-07-31 19:25:30 +00:00
|
|
|
CONF_PASSWORD,
|
|
|
|
CONF_PORT,
|
2020-02-23 04:33:42 +00:00
|
|
|
STATE_IDLE,
|
2019-07-31 19:25:30 +00:00
|
|
|
STATE_OFF,
|
|
|
|
STATE_PAUSED,
|
|
|
|
STATE_PLAYING,
|
|
|
|
STATE_UNKNOWN,
|
|
|
|
)
|
2022-01-04 10:08:28 +00:00
|
|
|
from homeassistant.core import HomeAssistant
|
2017-02-28 14:23:07 +00:00
|
|
|
import homeassistant.helpers.config_validation as cv
|
2022-01-04 10:08:28 +00:00
|
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
|
2017-02-28 14:23:07 +00:00
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
SUPPORT_FRONTIER_SILICON = (
|
|
|
|
SUPPORT_PAUSE
|
|
|
|
| SUPPORT_VOLUME_SET
|
|
|
|
| SUPPORT_VOLUME_MUTE
|
|
|
|
| SUPPORT_VOLUME_STEP
|
|
|
|
| SUPPORT_PREVIOUS_TRACK
|
|
|
|
| SUPPORT_NEXT_TRACK
|
|
|
|
| SUPPORT_SEEK
|
|
|
|
| SUPPORT_PLAY_MEDIA
|
|
|
|
| SUPPORT_PLAY
|
|
|
|
| SUPPORT_STOP
|
|
|
|
| SUPPORT_TURN_ON
|
|
|
|
| SUPPORT_TURN_OFF
|
|
|
|
| SUPPORT_SELECT_SOURCE
|
|
|
|
)
|
2017-02-28 14:23:07 +00:00
|
|
|
|
|
|
|
DEFAULT_PORT = 80
|
2019-07-31 19:25:30 +00:00
|
|
|
DEFAULT_PASSWORD = "1234"
|
2017-02-28 14:23:07 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(
|
|
|
|
{
|
|
|
|
vol.Required(CONF_HOST): cv.string,
|
|
|
|
vol.Optional(CONF_PORT, default=DEFAULT_PORT): cv.port,
|
|
|
|
vol.Optional(CONF_PASSWORD, default=DEFAULT_PASSWORD): cv.string,
|
2020-02-23 16:05:24 +00:00
|
|
|
vol.Optional(CONF_NAME): cv.string,
|
2019-07-31 19:25:30 +00:00
|
|
|
}
|
|
|
|
)
|
2017-02-28 14:23:07 +00:00
|
|
|
|
|
|
|
|
2022-01-04 10:08:28 +00:00
|
|
|
async def async_setup_platform(
|
|
|
|
hass: HomeAssistant,
|
|
|
|
config: ConfigType,
|
|
|
|
async_add_entities: AddEntitiesCallback,
|
|
|
|
discovery_info: DiscoveryInfoType | None = None,
|
|
|
|
) -> None:
|
2017-03-26 13:50:40 +00:00
|
|
|
"""Set up the Frontier Silicon platform."""
|
2017-02-28 14:23:07 +00:00
|
|
|
if discovery_info is not None:
|
2018-08-24 14:37:30 +00:00
|
|
|
async_add_entities(
|
2020-02-23 16:05:24 +00:00
|
|
|
[AFSAPIDevice(discovery_info["ssdp_description"], DEFAULT_PASSWORD, None)],
|
|
|
|
True,
|
2019-07-31 19:25:30 +00:00
|
|
|
)
|
2022-01-04 10:08:28 +00:00
|
|
|
return
|
2017-02-28 14:23:07 +00:00
|
|
|
|
|
|
|
host = config.get(CONF_HOST)
|
|
|
|
port = config.get(CONF_PORT)
|
|
|
|
password = config.get(CONF_PASSWORD)
|
2020-02-23 16:05:24 +00:00
|
|
|
name = config.get(CONF_NAME)
|
2017-02-28 14:23:07 +00:00
|
|
|
|
|
|
|
try:
|
2018-08-24 14:37:30 +00:00
|
|
|
async_add_entities(
|
2020-02-25 01:54:20 +00:00
|
|
|
[AFSAPIDevice(f"http://{host}:{port}/device", password, name)], True
|
2019-07-31 19:25:30 +00:00
|
|
|
)
|
2017-03-26 13:50:40 +00:00
|
|
|
_LOGGER.debug("FSAPI device %s:%s -> %s", host, port, password)
|
2017-02-28 14:23:07 +00:00
|
|
|
except requests.exceptions.RequestException:
|
2019-07-31 19:25:30 +00:00
|
|
|
_LOGGER.error(
|
|
|
|
"Could not add the FSAPI device at %s:%s -> %s", host, port, password
|
|
|
|
)
|
2017-02-28 14:23:07 +00:00
|
|
|
|
|
|
|
|
2020-04-25 16:00:57 +00:00
|
|
|
class AFSAPIDevice(MediaPlayerEntity):
|
2017-02-28 14:23:07 +00:00
|
|
|
"""Representation of a Frontier Silicon device on the network."""
|
|
|
|
|
2020-02-23 16:05:24 +00:00
|
|
|
def __init__(self, device_url, password, name):
|
2017-02-28 14:23:07 +00:00
|
|
|
"""Initialize the Frontier Silicon API device."""
|
|
|
|
self._device_url = device_url
|
|
|
|
self._password = password
|
2018-09-09 12:26:06 +00:00
|
|
|
self._state = None
|
2017-02-28 14:23:07 +00:00
|
|
|
|
2020-02-23 16:05:24 +00:00
|
|
|
self._name = name
|
2017-02-28 14:23:07 +00:00
|
|
|
self._title = None
|
|
|
|
self._artist = None
|
|
|
|
self._album_name = None
|
|
|
|
self._mute = None
|
|
|
|
self._source = None
|
|
|
|
self._source_list = None
|
|
|
|
self._media_image_url = None
|
2020-02-23 16:37:31 +00:00
|
|
|
self._max_volume = None
|
|
|
|
self._volume_level = None
|
2017-02-28 14:23:07 +00:00
|
|
|
|
|
|
|
# Properties
|
|
|
|
@property
|
|
|
|
def fs_device(self):
|
|
|
|
"""
|
|
|
|
Create a fresh fsapi session.
|
|
|
|
|
|
|
|
A new session is created for each request in case someone else
|
|
|
|
connected to the device in between the updates and invalidated the
|
|
|
|
existing session (i.e UNDOK).
|
|
|
|
"""
|
2018-02-20 16:14:34 +00:00
|
|
|
return AFSAPI(self._device_url, self._password)
|
2017-02-28 14:23:07 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
"""Return the device name."""
|
|
|
|
return self._name
|
|
|
|
|
|
|
|
@property
|
|
|
|
def media_title(self):
|
|
|
|
"""Title of current playing media."""
|
|
|
|
return self._title
|
|
|
|
|
|
|
|
@property
|
|
|
|
def media_artist(self):
|
|
|
|
"""Artist of current playing media, music track only."""
|
|
|
|
return self._artist
|
|
|
|
|
|
|
|
@property
|
|
|
|
def media_album_name(self):
|
|
|
|
"""Album name of current playing media, music track only."""
|
|
|
|
return self._album_name
|
|
|
|
|
|
|
|
@property
|
|
|
|
def media_content_type(self):
|
|
|
|
"""Content type of current playing media."""
|
|
|
|
return MEDIA_TYPE_MUSIC
|
|
|
|
|
|
|
|
@property
|
|
|
|
def supported_features(self):
|
|
|
|
"""Flag of media commands that are supported."""
|
|
|
|
return SUPPORT_FRONTIER_SILICON
|
|
|
|
|
|
|
|
@property
|
|
|
|
def state(self):
|
|
|
|
"""Return the state of the player."""
|
|
|
|
return self._state
|
|
|
|
|
|
|
|
# source
|
|
|
|
@property
|
|
|
|
def source_list(self):
|
|
|
|
"""List of available input sources."""
|
|
|
|
return self._source_list
|
|
|
|
|
|
|
|
@property
|
|
|
|
def source(self):
|
|
|
|
"""Name of the current input source."""
|
|
|
|
return self._source
|
|
|
|
|
|
|
|
@property
|
|
|
|
def media_image_url(self):
|
|
|
|
"""Image url of current playing media."""
|
|
|
|
return self._media_image_url
|
|
|
|
|
2020-02-23 16:37:31 +00:00
|
|
|
@property
|
|
|
|
def volume_level(self):
|
|
|
|
"""Volume level of the media player (0..1)."""
|
|
|
|
return self._volume_level
|
|
|
|
|
2018-10-01 06:58:21 +00:00
|
|
|
async def async_update(self):
|
2017-02-28 14:23:07 +00:00
|
|
|
"""Get the latest date and update device state."""
|
|
|
|
fs_device = self.fs_device
|
|
|
|
|
|
|
|
if not self._name:
|
2018-10-01 06:58:21 +00:00
|
|
|
self._name = await fs_device.get_friendly_name()
|
2017-02-28 14:23:07 +00:00
|
|
|
|
|
|
|
if not self._source_list:
|
2018-10-01 06:58:21 +00:00
|
|
|
self._source_list = await fs_device.get_mode_list()
|
2017-02-28 14:23:07 +00:00
|
|
|
|
2020-02-23 16:37:31 +00:00
|
|
|
# The API seems to include 'zero' in the number of steps (e.g. if the range is
|
|
|
|
# 0-40 then get_volume_steps returns 41) subtract one to get the max volume.
|
|
|
|
# If call to get_volume fails set to 0 and try again next time.
|
|
|
|
if not self._max_volume:
|
|
|
|
self._max_volume = int(await fs_device.get_volume_steps() or 1) - 1
|
|
|
|
|
2020-02-23 04:33:42 +00:00
|
|
|
if await fs_device.get_power():
|
|
|
|
status = await fs_device.get_play_status()
|
|
|
|
self._state = {
|
|
|
|
"playing": STATE_PLAYING,
|
|
|
|
"paused": STATE_PAUSED,
|
|
|
|
"stopped": STATE_IDLE,
|
|
|
|
"unknown": STATE_UNKNOWN,
|
|
|
|
None: STATE_IDLE,
|
|
|
|
}.get(status, STATE_UNKNOWN)
|
|
|
|
else:
|
|
|
|
self._state = STATE_OFF
|
2017-02-28 14:23:07 +00:00
|
|
|
|
2018-02-20 16:14:34 +00:00
|
|
|
if self._state != STATE_OFF:
|
2018-10-01 06:58:21 +00:00
|
|
|
info_name = await fs_device.get_play_name()
|
|
|
|
info_text = await fs_device.get_play_text()
|
2017-02-28 14:23:07 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
self._title = " - ".join(filter(None, [info_name, info_text]))
|
2018-10-01 06:58:21 +00:00
|
|
|
self._artist = await fs_device.get_play_artist()
|
|
|
|
self._album_name = await fs_device.get_play_album()
|
2017-02-28 14:23:07 +00:00
|
|
|
|
2018-10-01 06:58:21 +00:00
|
|
|
self._source = await fs_device.get_mode()
|
|
|
|
self._mute = await fs_device.get_mute()
|
|
|
|
self._media_image_url = await fs_device.get_play_graphic()
|
2020-02-23 16:37:31 +00:00
|
|
|
|
|
|
|
volume = await self.fs_device.get_volume()
|
|
|
|
|
|
|
|
# Prevent division by zero if max_volume not known yet
|
|
|
|
self._volume_level = float(volume or 0) / (self._max_volume or 1)
|
2018-02-20 16:14:34 +00:00
|
|
|
else:
|
|
|
|
self._title = None
|
|
|
|
self._artist = None
|
|
|
|
self._album_name = None
|
2017-02-28 14:23:07 +00:00
|
|
|
|
2018-02-20 16:14:34 +00:00
|
|
|
self._source = None
|
|
|
|
self._mute = None
|
|
|
|
self._media_image_url = None
|
2017-02-28 14:23:07 +00:00
|
|
|
|
2020-02-23 16:37:31 +00:00
|
|
|
self._volume_level = None
|
|
|
|
|
2018-02-20 16:14:34 +00:00
|
|
|
# Management actions
|
2017-02-28 14:23:07 +00:00
|
|
|
# power control
|
2018-10-01 06:58:21 +00:00
|
|
|
async def async_turn_on(self):
|
2017-02-28 14:23:07 +00:00
|
|
|
"""Turn on the device."""
|
2018-10-01 06:58:21 +00:00
|
|
|
await self.fs_device.set_power(True)
|
2017-02-28 14:23:07 +00:00
|
|
|
|
2018-10-01 06:58:21 +00:00
|
|
|
async def async_turn_off(self):
|
2017-02-28 14:23:07 +00:00
|
|
|
"""Turn off the device."""
|
2018-10-01 06:58:21 +00:00
|
|
|
await self.fs_device.set_power(False)
|
2017-02-28 14:23:07 +00:00
|
|
|
|
2018-10-01 06:58:21 +00:00
|
|
|
async def async_media_play(self):
|
2017-02-28 14:23:07 +00:00
|
|
|
"""Send play command."""
|
2018-10-01 06:58:21 +00:00
|
|
|
await self.fs_device.play()
|
2017-02-28 14:23:07 +00:00
|
|
|
|
2018-10-01 06:58:21 +00:00
|
|
|
async def async_media_pause(self):
|
2017-02-28 14:23:07 +00:00
|
|
|
"""Send pause command."""
|
2018-10-01 06:58:21 +00:00
|
|
|
await self.fs_device.pause()
|
2017-02-28 14:23:07 +00:00
|
|
|
|
2018-10-01 06:58:21 +00:00
|
|
|
async def async_media_play_pause(self):
|
2017-02-28 14:23:07 +00:00
|
|
|
"""Send play/pause command."""
|
2019-07-31 19:25:30 +00:00
|
|
|
if "playing" in self._state:
|
2018-10-01 06:58:21 +00:00
|
|
|
await self.fs_device.pause()
|
2017-02-28 14:23:07 +00:00
|
|
|
else:
|
2018-10-01 06:58:21 +00:00
|
|
|
await self.fs_device.play()
|
2017-02-28 14:23:07 +00:00
|
|
|
|
2018-10-01 06:58:21 +00:00
|
|
|
async def async_media_stop(self):
|
2017-02-28 14:23:07 +00:00
|
|
|
"""Send play/pause command."""
|
2018-10-01 06:58:21 +00:00
|
|
|
await self.fs_device.pause()
|
2017-02-28 14:23:07 +00:00
|
|
|
|
2018-10-01 06:58:21 +00:00
|
|
|
async def async_media_previous_track(self):
|
2017-02-28 14:23:07 +00:00
|
|
|
"""Send previous track command (results in rewind)."""
|
2018-10-01 06:58:21 +00:00
|
|
|
await self.fs_device.rewind()
|
2017-02-28 14:23:07 +00:00
|
|
|
|
2018-10-01 06:58:21 +00:00
|
|
|
async def async_media_next_track(self):
|
2017-02-28 14:23:07 +00:00
|
|
|
"""Send next track command (results in fast-forward)."""
|
2018-10-01 06:58:21 +00:00
|
|
|
await self.fs_device.forward()
|
2017-02-28 14:23:07 +00:00
|
|
|
|
|
|
|
# mute
|
|
|
|
@property
|
|
|
|
def is_volume_muted(self):
|
|
|
|
"""Boolean if volume is currently muted."""
|
|
|
|
return self._mute
|
|
|
|
|
2018-10-01 06:58:21 +00:00
|
|
|
async def async_mute_volume(self, mute):
|
2017-02-28 14:23:07 +00:00
|
|
|
"""Send mute command."""
|
2018-10-01 06:58:21 +00:00
|
|
|
await self.fs_device.set_mute(mute)
|
2017-02-28 14:23:07 +00:00
|
|
|
|
|
|
|
# volume
|
2018-10-01 06:58:21 +00:00
|
|
|
async def async_volume_up(self):
|
2017-02-28 14:23:07 +00:00
|
|
|
"""Send volume up command."""
|
2018-10-01 06:58:21 +00:00
|
|
|
volume = await self.fs_device.get_volume()
|
2020-02-23 16:37:31 +00:00
|
|
|
volume = int(volume or 0) + 1
|
|
|
|
await self.fs_device.set_volume(min(volume, self._max_volume))
|
2017-02-28 14:23:07 +00:00
|
|
|
|
2018-10-01 06:58:21 +00:00
|
|
|
async def async_volume_down(self):
|
2017-02-28 14:23:07 +00:00
|
|
|
"""Send volume down command."""
|
2018-10-01 06:58:21 +00:00
|
|
|
volume = await self.fs_device.get_volume()
|
2020-02-23 16:37:31 +00:00
|
|
|
volume = int(volume or 0) - 1
|
|
|
|
await self.fs_device.set_volume(max(volume, 0))
|
2017-02-28 14:23:07 +00:00
|
|
|
|
2018-10-01 06:58:21 +00:00
|
|
|
async def async_set_volume_level(self, volume):
|
2017-02-28 14:23:07 +00:00
|
|
|
"""Set volume command."""
|
2020-02-23 16:37:31 +00:00
|
|
|
if self._max_volume: # Can't do anything sensible if not set
|
|
|
|
volume = int(volume * self._max_volume)
|
|
|
|
await self.fs_device.set_volume(volume)
|
2017-02-28 14:23:07 +00:00
|
|
|
|
2018-10-01 06:58:21 +00:00
|
|
|
async def async_select_source(self, source):
|
2017-02-28 14:23:07 +00:00
|
|
|
"""Select input source."""
|
2018-10-01 06:58:21 +00:00
|
|
|
await self.fs_device.set_mode(source)
|