mirror of https://github.com/home-assistant/core
65 lines
1.8 KiB
Python
65 lines
1.8 KiB
Python
"""The Bravia TV integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Final
|
|
|
|
from aiohttp import CookieJar
|
|
from pybravia import BraviaClient
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_HOST, CONF_MAC, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.aiohttp_client import async_create_clientsession
|
|
|
|
from .coordinator import BraviaTVCoordinator
|
|
|
|
BraviaTVConfigEntry = ConfigEntry[BraviaTVCoordinator]
|
|
|
|
PLATFORMS: Final[list[Platform]] = [
|
|
Platform.BUTTON,
|
|
Platform.MEDIA_PLAYER,
|
|
Platform.REMOTE,
|
|
]
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant, config_entry: BraviaTVConfigEntry
|
|
) -> bool:
|
|
"""Set up a config entry."""
|
|
host = config_entry.data[CONF_HOST]
|
|
mac = config_entry.data[CONF_MAC]
|
|
|
|
session = async_create_clientsession(
|
|
hass, cookie_jar=CookieJar(unsafe=True, quote_cookie=False)
|
|
)
|
|
client = BraviaClient(host, mac, session=session)
|
|
coordinator = BraviaTVCoordinator(
|
|
hass=hass,
|
|
client=client,
|
|
config=config_entry.data,
|
|
)
|
|
config_entry.async_on_unload(config_entry.add_update_listener(update_listener))
|
|
|
|
await coordinator.async_config_entry_first_refresh()
|
|
|
|
config_entry.runtime_data = coordinator
|
|
|
|
await hass.config_entries.async_forward_entry_setups(config_entry, PLATFORMS)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(
|
|
hass: HomeAssistant, config_entry: BraviaTVConfigEntry
|
|
) -> bool:
|
|
"""Unload a config entry."""
|
|
return await hass.config_entries.async_unload_platforms(config_entry, PLATFORMS)
|
|
|
|
|
|
async def update_listener(
|
|
hass: HomeAssistant, config_entry: BraviaTVConfigEntry
|
|
) -> None:
|
|
"""Handle options update."""
|
|
await hass.config_entries.async_reload(config_entry.entry_id)
|