2020-05-30 00:08:05 +00:00
""" The Sonarr component. """
import asyncio
from datetime import timedelta
2020-09-29 01:15:59 +00:00
import logging
2020-05-30 00:08:05 +00:00
from typing import Any , Dict
2020-09-29 01:15:59 +00:00
from sonarr import Sonarr , SonarrAccessRestricted , SonarrError
2020-05-30 00:08:05 +00:00
2020-09-29 01:15:59 +00:00
from homeassistant . components import persistent_notification
from homeassistant . config_entries import SOURCE_REAUTH , ConfigEntry
2020-05-30 00:08:05 +00:00
from homeassistant . const import (
ATTR_NAME ,
CONF_API_KEY ,
CONF_HOST ,
CONF_PORT ,
2020-09-29 01:15:59 +00:00
CONF_SOURCE ,
2020-05-30 00:08:05 +00:00
CONF_SSL ,
CONF_VERIFY_SSL ,
)
from homeassistant . exceptions import ConfigEntryNotReady
from homeassistant . helpers . aiohttp_client import async_get_clientsession
from homeassistant . helpers . dispatcher import async_dispatcher_send
from homeassistant . helpers . entity import Entity
from homeassistant . helpers . typing import HomeAssistantType
from . const import (
ATTR_IDENTIFIERS ,
ATTR_MANUFACTURER ,
ATTR_SOFTWARE_VERSION ,
CONF_BASE_PATH ,
CONF_UPCOMING_DAYS ,
CONF_WANTED_MAX_ITEMS ,
DATA_SONARR ,
DATA_UNDO_UPDATE_LISTENER ,
DEFAULT_UPCOMING_DAYS ,
DEFAULT_WANTED_MAX_ITEMS ,
DOMAIN ,
)
PLATFORMS = [ " sensor " ]
SCAN_INTERVAL = timedelta ( seconds = 30 )
2020-09-29 01:15:59 +00:00
_LOGGER = logging . getLogger ( __name__ )
2020-05-30 00:08:05 +00:00
async def async_setup ( hass : HomeAssistantType , config : Dict ) - > bool :
""" Set up the Sonarr component. """
hass . data . setdefault ( DOMAIN , { } )
return True
async def async_setup_entry ( hass : HomeAssistantType , entry : ConfigEntry ) - > bool :
""" Set up Sonarr from a config entry. """
if not entry . options :
options = {
CONF_UPCOMING_DAYS : entry . data . get (
CONF_UPCOMING_DAYS , DEFAULT_UPCOMING_DAYS
) ,
CONF_WANTED_MAX_ITEMS : entry . data . get (
CONF_WANTED_MAX_ITEMS , DEFAULT_WANTED_MAX_ITEMS
) ,
}
hass . config_entries . async_update_entry ( entry , options = options )
sonarr = Sonarr (
host = entry . data [ CONF_HOST ] ,
port = entry . data [ CONF_PORT ] ,
api_key = entry . data [ CONF_API_KEY ] ,
base_path = entry . data [ CONF_BASE_PATH ] ,
session = async_get_clientsession ( hass ) ,
tls = entry . data [ CONF_SSL ] ,
verify_ssl = entry . data [ CONF_VERIFY_SSL ] ,
)
try :
await sonarr . update ( )
2020-09-29 01:15:59 +00:00
except SonarrAccessRestricted :
_async_start_reauth ( hass , entry )
return False
2020-08-28 11:50:32 +00:00
except SonarrError as err :
raise ConfigEntryNotReady from err
2020-05-30 00:08:05 +00:00
undo_listener = entry . add_update_listener ( _async_update_listener )
hass . data [ DOMAIN ] [ entry . entry_id ] = {
DATA_SONARR : sonarr ,
DATA_UNDO_UPDATE_LISTENER : undo_listener ,
}
for component in PLATFORMS :
hass . async_create_task (
hass . config_entries . async_forward_entry_setup ( entry , component )
)
return True
async def async_unload_entry ( hass : HomeAssistantType , entry : ConfigEntry ) - > bool :
""" Unload a config entry. """
unload_ok = all (
await asyncio . gather (
* [
hass . config_entries . async_forward_entry_unload ( entry , component )
for component in PLATFORMS
]
)
)
hass . data [ DOMAIN ] [ entry . entry_id ] [ DATA_UNDO_UPDATE_LISTENER ] ( )
if unload_ok :
hass . data [ DOMAIN ] . pop ( entry . entry_id )
return unload_ok
2020-09-29 01:15:59 +00:00
def _async_start_reauth ( hass : HomeAssistantType , entry : ConfigEntry ) :
hass . async_create_task (
hass . config_entries . flow . async_init (
DOMAIN ,
context = { CONF_SOURCE : SOURCE_REAUTH } ,
data = { " config_entry_id " : entry . entry_id , * * entry . data } ,
)
)
_LOGGER . error ( " API Key is no longer valid. Please reauthenticate " )
persistent_notification . async_create (
hass ,
f " Sonarr integration for the Sonarr API hosted at { entry . entry_data [ CONF_HOST ] } needs to be re-authenticated. Please go to the integrations page to re-configure it. " ,
" Sonarr re-authentication " ,
" sonarr_reauth " ,
)
2020-05-30 00:08:05 +00:00
async def _async_update_listener ( hass : HomeAssistantType , entry : ConfigEntry ) - > None :
""" Handle options update. """
async_dispatcher_send (
hass , f " sonarr. { entry . entry_id } .entry_options_update " , entry . options
)
class SonarrEntity ( Entity ) :
""" Defines a base Sonarr entity. """
def __init__ (
self ,
* ,
sonarr : Sonarr ,
entry_id : str ,
device_id : str ,
name : str ,
icon : str ,
enabled_default : bool = True ,
) - > None :
""" Initialize the Sonar entity. """
self . _entry_id = entry_id
self . _device_id = device_id
self . _enabled_default = enabled_default
self . _icon = icon
self . _name = name
self . sonarr = sonarr
@property
def name ( self ) - > str :
""" Return the name of the entity. """
return self . _name
@property
def icon ( self ) - > str :
""" Return the mdi icon of the entity. """
return self . _icon
@property
def entity_registry_enabled_default ( self ) - > bool :
""" Return if the entity should be enabled when first added to the entity registry. """
return self . _enabled_default
@property
def device_info ( self ) - > Dict [ str , Any ] :
""" Return device information about the application. """
if self . _device_id is None :
return None
return {
ATTR_IDENTIFIERS : { ( DOMAIN , self . _device_id ) } ,
ATTR_NAME : " Activity Sensor " ,
ATTR_MANUFACTURER : " Sonarr " ,
ATTR_SOFTWARE_VERSION : self . sonarr . app . info . version ,
" entry_type " : " service " ,
}