mirror of https://github.com/home-assistant/core
81 lines
2.6 KiB
Python
81 lines
2.6 KiB
Python
"""Support for Jellyfin remote commands."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Iterable
|
|
import time
|
|
from typing import Any
|
|
|
|
from homeassistant.components.remote import (
|
|
ATTR_DELAY_SECS,
|
|
ATTR_NUM_REPEATS,
|
|
DEFAULT_DELAY_SECS,
|
|
DEFAULT_NUM_REPEATS,
|
|
RemoteEntity,
|
|
)
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from . import JellyfinConfigEntry
|
|
from .const import LOGGER
|
|
from .coordinator import JellyfinDataUpdateCoordinator
|
|
from .entity import JellyfinClientEntity
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: JellyfinConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up Jellyfin remote from a config entry."""
|
|
coordinator = entry.runtime_data
|
|
|
|
@callback
|
|
def handle_coordinator_update() -> None:
|
|
"""Add remote per session."""
|
|
entities: list[RemoteEntity] = []
|
|
for session_id, session_data in coordinator.data.items():
|
|
if (
|
|
session_id not in coordinator.remote_session_ids
|
|
and session_data["SupportsRemoteControl"]
|
|
):
|
|
entity = JellyfinRemote(coordinator, session_id)
|
|
LOGGER.debug("Creating remote for session: %s", session_id)
|
|
coordinator.remote_session_ids.add(session_id)
|
|
entities.append(entity)
|
|
async_add_entities(entities)
|
|
|
|
handle_coordinator_update()
|
|
|
|
entry.async_on_unload(coordinator.async_add_listener(handle_coordinator_update))
|
|
|
|
|
|
class JellyfinRemote(JellyfinClientEntity, RemoteEntity):
|
|
"""Defines a Jellyfin remote entity."""
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: JellyfinDataUpdateCoordinator,
|
|
session_id: str,
|
|
) -> None:
|
|
"""Initialize the Jellyfin Remote entity."""
|
|
super().__init__(coordinator, session_id)
|
|
self._attr_unique_id = f"{coordinator.server_id}-{session_id}"
|
|
|
|
@property
|
|
def is_on(self) -> bool:
|
|
"""Return if the client is on."""
|
|
return self.session_data["IsActive"] if self.session_data else False
|
|
|
|
def send_command(self, command: Iterable[str], **kwargs: Any) -> None:
|
|
"""Send a command to the client."""
|
|
num_repeats = kwargs.get(ATTR_NUM_REPEATS, DEFAULT_NUM_REPEATS)
|
|
delay = kwargs.get(ATTR_DELAY_SECS, DEFAULT_DELAY_SECS)
|
|
|
|
for _ in range(num_repeats):
|
|
for single_command in command:
|
|
self.coordinator.api_client.jellyfin.command(
|
|
self.session_id, single_command
|
|
)
|
|
time.sleep(delay)
|