core/homeassistant/components/media_player/reproduce_state.py

152 lines
4.4 KiB
Python
Raw Normal View History

"""Module that groups code required to handle state restore for component."""
2021-03-18 12:07:04 +00:00
from __future__ import annotations
import asyncio
from collections.abc import Iterable
from typing import Any
from homeassistant.const import (
ATTR_SUPPORTED_FEATURES,
2019-07-31 19:25:30 +00:00
SERVICE_MEDIA_PAUSE,
SERVICE_MEDIA_PLAY,
SERVICE_MEDIA_STOP,
SERVICE_TURN_OFF,
SERVICE_TURN_ON,
SERVICE_VOLUME_MUTE,
SERVICE_VOLUME_SET,
STATE_BUFFERING,
2019-07-31 19:25:30 +00:00
STATE_IDLE,
STATE_OFF,
STATE_ON,
STATE_PAUSED,
STATE_PLAYING,
)
from homeassistant.core import Context, HomeAssistant, State
from .const import (
ATTR_INPUT_SOURCE,
ATTR_MEDIA_CONTENT_ID,
ATTR_MEDIA_CONTENT_TYPE,
ATTR_MEDIA_VOLUME_LEVEL,
ATTR_MEDIA_VOLUME_MUTED,
ATTR_SOUND_MODE,
DOMAIN,
SERVICE_PLAY_MEDIA,
SERVICE_SELECT_SOUND_MODE,
SERVICE_SELECT_SOURCE,
MediaPlayerEntityFeature,
)
2019-07-31 19:25:30 +00:00
async def _async_reproduce_states(
hass: HomeAssistant,
state: State,
*,
2021-03-18 12:07:04 +00:00
context: Context | None = None,
reproduce_options: dict[str, Any] | None = None,
2019-07-31 19:25:30 +00:00
) -> None:
"""Reproduce component states."""
cur_state = hass.states.get(state.entity_id)
features = cur_state.attributes[ATTR_SUPPORTED_FEATURES] if cur_state else 0
2019-07-31 19:25:30 +00:00
2022-09-18 01:08:17 +00:00
async def call_service(service: str, keys: Iterable[str]) -> None:
"""Call service with set of attributes given."""
data = {"entity_id": state.entity_id}
for key in keys:
if key in state.attributes:
data[key] = state.attributes[key]
await hass.services.async_call(
2019-07-31 19:25:30 +00:00
DOMAIN, service, data, blocking=True, context=context
)
if state.state == STATE_OFF:
if features & MediaPlayerEntityFeature.TURN_OFF:
await call_service(SERVICE_TURN_OFF, [])
# entities that are off have no other attributes to restore
return
if (
state.state
in (
STATE_BUFFERING,
STATE_IDLE,
STATE_ON,
STATE_PAUSED,
STATE_PLAYING,
)
and features & MediaPlayerEntityFeature.TURN_ON
2021-07-29 23:20:03 +00:00
):
await call_service(SERVICE_TURN_ON, [])
cur_state = hass.states.get(state.entity_id)
features = cur_state.attributes[ATTR_SUPPORTED_FEATURES] if cur_state else 0
# First set source & sound mode to match the saved supported features
if (
ATTR_INPUT_SOURCE in state.attributes
and features & MediaPlayerEntityFeature.SELECT_SOURCE
):
await call_service(SERVICE_SELECT_SOURCE, [ATTR_INPUT_SOURCE])
if (
ATTR_SOUND_MODE in state.attributes
and features & MediaPlayerEntityFeature.SELECT_SOUND_MODE
):
await call_service(SERVICE_SELECT_SOUND_MODE, [ATTR_SOUND_MODE])
if (
ATTR_MEDIA_VOLUME_LEVEL in state.attributes
and features & MediaPlayerEntityFeature.VOLUME_SET
):
await call_service(SERVICE_VOLUME_SET, [ATTR_MEDIA_VOLUME_LEVEL])
if (
ATTR_MEDIA_VOLUME_MUTED in state.attributes
and features & MediaPlayerEntityFeature.VOLUME_MUTE
):
await call_service(SERVICE_VOLUME_MUTE, [ATTR_MEDIA_VOLUME_MUTED])
already_playing = False
2019-07-31 19:25:30 +00:00
if (ATTR_MEDIA_CONTENT_TYPE in state.attributes) and (
ATTR_MEDIA_CONTENT_ID in state.attributes
):
if features & MediaPlayerEntityFeature.PLAY_MEDIA:
await call_service(
SERVICE_PLAY_MEDIA,
[ATTR_MEDIA_CONTENT_TYPE, ATTR_MEDIA_CONTENT_ID],
)
already_playing = True
if (
not already_playing
and state.state in (STATE_BUFFERING, STATE_PLAYING)
and features & MediaPlayerEntityFeature.PLAY
):
await call_service(SERVICE_MEDIA_PLAY, [])
elif state.state == STATE_IDLE:
if features & MediaPlayerEntityFeature.STOP:
await call_service(SERVICE_MEDIA_STOP, [])
elif state.state == STATE_PAUSED:
if features & MediaPlayerEntityFeature.PAUSE:
await call_service(SERVICE_MEDIA_PAUSE, [])
2019-07-31 19:25:30 +00:00
async def async_reproduce_states(
hass: HomeAssistant,
states: Iterable[State],
*,
2021-03-18 12:07:04 +00:00
context: Context | None = None,
reproduce_options: dict[str, Any] | None = None,
2019-07-31 19:25:30 +00:00
) -> None:
"""Reproduce component states."""
2019-07-31 19:25:30 +00:00
await asyncio.gather(
*(
_async_reproduce_states(
hass, state, context=context, reproduce_options=reproduce_options
)
for state in states
)
2019-07-31 19:25:30 +00:00
)