Improve code quality season (#66449)

pull/66535/head
G Johansson 2022-02-14 22:34:33 +01:00 committed by GitHub
parent 152dbfd2fe
commit 759b01bb40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 31 additions and 42 deletions

View File

@ -1,13 +1,16 @@
"""Support for tracking which astronomical or meteorological season it is."""
from __future__ import annotations
from datetime import datetime
from datetime import date, datetime
import logging
import ephem
import voluptuous as vol
from homeassistant.components.sensor import PLATFORM_SCHEMA, SensorEntity
from homeassistant.components.sensor import (
PLATFORM_SCHEMA as PARENT_PLATFORM_SCHEMA,
SensorEntity,
)
from homeassistant.const import CONF_NAME, CONF_TYPE
from homeassistant.core import HomeAssistant
import homeassistant.helpers.config_validation as cv
@ -49,7 +52,7 @@ SEASON_ICONS = {
}
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(
PLATFORM_SCHEMA = PARENT_PLATFORM_SCHEMA.extend(
{
vol.Optional(CONF_TYPE, default=TYPE_ASTRONOMICAL): vol.In(VALID_TYPES),
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
@ -64,8 +67,8 @@ def setup_platform(
discovery_info: DiscoveryInfoType | None = None,
) -> None:
"""Display the current season."""
_type = config.get(CONF_TYPE)
name = config.get(CONF_NAME)
_type: str = config[CONF_TYPE]
name: str = config[CONF_NAME]
if hass.config.latitude < 0:
hemisphere = SOUTHERN
@ -75,33 +78,35 @@ def setup_platform(
hemisphere = EQUATOR
_LOGGER.debug(_type)
add_entities([Season(hass, hemisphere, _type, name)], True)
add_entities([Season(hemisphere, _type, name)], True)
def get_season(date, hemisphere, season_tracking_type):
def get_season(
current_date: date, hemisphere: str, season_tracking_type: str
) -> str | None:
"""Calculate the current season."""
if hemisphere == "equator":
return None
if season_tracking_type == TYPE_ASTRONOMICAL:
spring_start = ephem.next_equinox(str(date.year)).datetime()
summer_start = ephem.next_solstice(str(date.year)).datetime()
spring_start = ephem.next_equinox(str(current_date.year)).datetime()
summer_start = ephem.next_solstice(str(current_date.year)).datetime()
autumn_start = ephem.next_equinox(spring_start).datetime()
winter_start = ephem.next_solstice(summer_start).datetime()
else:
spring_start = datetime(2017, 3, 1).replace(year=date.year)
spring_start = datetime(2017, 3, 1).replace(year=current_date.year)
summer_start = spring_start.replace(month=6)
autumn_start = spring_start.replace(month=9)
winter_start = spring_start.replace(month=12)
if spring_start <= date < summer_start:
if spring_start <= current_date < summer_start:
season = STATE_SPRING
elif summer_start <= date < autumn_start:
elif summer_start <= current_date < autumn_start:
season = STATE_SUMMER
elif autumn_start <= date < winter_start:
elif autumn_start <= current_date < winter_start:
season = STATE_AUTUMN
elif winter_start <= date or spring_start > date:
elif winter_start <= current_date or spring_start > current_date:
season = STATE_WINTER
# If user is located in the southern hemisphere swap the season
@ -113,36 +118,20 @@ def get_season(date, hemisphere, season_tracking_type):
class Season(SensorEntity):
"""Representation of the current season."""
def __init__(self, hass, hemisphere, season_tracking_type, name):
_attr_device_class = "season__season"
def __init__(self, hemisphere: str, season_tracking_type: str, name: str) -> None:
"""Initialize the season."""
self.hass = hass
self._name = name
self._attr_name = name
self.hemisphere = hemisphere
self.datetime = None
self.type = season_tracking_type
self.season = None
@property
def name(self):
"""Return the name."""
return self._name
@property
def native_value(self):
"""Return the current season."""
return self.season
@property
def device_class(self):
"""Return the device class."""
return "season__season"
@property
def icon(self):
"""Icon to use in the frontend, if any."""
return SEASON_ICONS.get(self.season, "mdi:cloud")
def update(self):
def update(self) -> None:
"""Update season."""
self.datetime = utcnow().replace(tzinfo=None)
self.season = get_season(self.datetime, self.hemisphere, self.type)
self._attr_native_value = get_season(
utcnow().replace(tzinfo=None), self.hemisphere, self.type
)
self._attr_icon = "mdi:cloud"
if self._attr_native_value:
self._attr_icon = SEASON_ICONS[self._attr_native_value]