331 lines
11 KiB
Python
331 lines
11 KiB
Python
"""Support for Jewish calendar sensors."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import datetime as dt
|
|
import logging
|
|
from typing import Any
|
|
|
|
from hdate import HDateInfo, Zmanim
|
|
from hdate.holidays import HolidayDatabase
|
|
from hdate.parasha import Parasha
|
|
|
|
from homeassistant.components.sensor import (
|
|
SensorDeviceClass,
|
|
SensorEntity,
|
|
SensorEntityDescription,
|
|
)
|
|
from homeassistant.const import SUN_EVENT_SUNSET, EntityCategory
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
|
from homeassistant.helpers.sun import get_astral_event_date
|
|
from homeassistant.util import dt as dt_util
|
|
|
|
from .entity import JewishCalendarConfigEntry, JewishCalendarEntity
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
INFO_SENSORS: tuple[SensorEntityDescription, ...] = (
|
|
SensorEntityDescription(
|
|
key="date",
|
|
translation_key="hebrew_date",
|
|
icon="mdi:star-david",
|
|
),
|
|
SensorEntityDescription(
|
|
key="weekly_portion",
|
|
translation_key="weekly_portion",
|
|
icon="mdi:book-open-variant",
|
|
device_class=SensorDeviceClass.ENUM,
|
|
),
|
|
SensorEntityDescription(
|
|
key="holiday",
|
|
translation_key="holiday",
|
|
icon="mdi:calendar-star",
|
|
device_class=SensorDeviceClass.ENUM,
|
|
),
|
|
SensorEntityDescription(
|
|
key="omer_count",
|
|
translation_key="omer_count",
|
|
icon="mdi:counter",
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
SensorEntityDescription(
|
|
key="daf_yomi",
|
|
translation_key="daf_yomi",
|
|
icon="mdi:book-open-variant",
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
)
|
|
|
|
TIME_SENSORS: tuple[SensorEntityDescription, ...] = (
|
|
SensorEntityDescription(
|
|
key="alot_hashachar",
|
|
translation_key="alot_hashachar",
|
|
icon="mdi:weather-sunset-up",
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
SensorEntityDescription(
|
|
key="talit_and_tefillin",
|
|
translation_key="talit_and_tefillin",
|
|
icon="mdi:calendar-clock",
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
SensorEntityDescription(
|
|
key="netz_hachama",
|
|
translation_key="netz_hachama",
|
|
icon="mdi:calendar-clock",
|
|
),
|
|
SensorEntityDescription(
|
|
key="sof_zman_shema_gra",
|
|
translation_key="sof_zman_shema_gra",
|
|
icon="mdi:calendar-clock",
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
SensorEntityDescription(
|
|
key="sof_zman_shema_mga",
|
|
translation_key="sof_zman_shema_mga",
|
|
icon="mdi:calendar-clock",
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
SensorEntityDescription(
|
|
key="sof_zman_tfilla_gra",
|
|
translation_key="sof_zman_tfilla_gra",
|
|
icon="mdi:calendar-clock",
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
SensorEntityDescription(
|
|
key="sof_zman_tfilla_mga",
|
|
translation_key="sof_zman_tfilla_mga",
|
|
icon="mdi:calendar-clock",
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
SensorEntityDescription(
|
|
key="chatzot_hayom",
|
|
translation_key="chatzot_hayom",
|
|
icon="mdi:calendar-clock",
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
SensorEntityDescription(
|
|
key="mincha_gedola",
|
|
translation_key="mincha_gedola",
|
|
icon="mdi:calendar-clock",
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
SensorEntityDescription(
|
|
key="mincha_ketana",
|
|
translation_key="mincha_ketana",
|
|
icon="mdi:calendar-clock",
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
SensorEntityDescription(
|
|
key="plag_hamincha",
|
|
translation_key="plag_hamincha",
|
|
icon="mdi:weather-sunset-down",
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
SensorEntityDescription(
|
|
key="shkia",
|
|
translation_key="shkia",
|
|
icon="mdi:weather-sunset",
|
|
),
|
|
SensorEntityDescription(
|
|
key="tset_hakohavim_tsom",
|
|
translation_key="tset_hakohavim_tsom",
|
|
icon="mdi:weather-night",
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
SensorEntityDescription(
|
|
key="tset_hakohavim_shabbat",
|
|
translation_key="tset_hakohavim_shabbat",
|
|
icon="mdi:weather-night",
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
SensorEntityDescription(
|
|
key="upcoming_shabbat_candle_lighting",
|
|
translation_key="upcoming_shabbat_candle_lighting",
|
|
icon="mdi:candle",
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
SensorEntityDescription(
|
|
key="upcoming_shabbat_havdalah",
|
|
translation_key="upcoming_shabbat_havdalah",
|
|
icon="mdi:weather-night",
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
SensorEntityDescription(
|
|
key="upcoming_candle_lighting",
|
|
translation_key="upcoming_candle_lighting",
|
|
icon="mdi:candle",
|
|
),
|
|
SensorEntityDescription(
|
|
key="upcoming_havdalah",
|
|
translation_key="upcoming_havdalah",
|
|
icon="mdi:weather-night",
|
|
),
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: JewishCalendarConfigEntry,
|
|
async_add_entities: AddConfigEntryEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the Jewish calendar sensors ."""
|
|
sensors = [
|
|
JewishCalendarSensor(config_entry, description) for description in INFO_SENSORS
|
|
]
|
|
sensors.extend(
|
|
JewishCalendarTimeSensor(config_entry, description)
|
|
for description in TIME_SENSORS
|
|
)
|
|
|
|
async_add_entities(sensors)
|
|
|
|
|
|
class JewishCalendarSensor(JewishCalendarEntity, SensorEntity):
|
|
"""Representation of an Jewish calendar sensor."""
|
|
|
|
_attr_entity_category = EntityCategory.DIAGNOSTIC
|
|
|
|
def __init__(
|
|
self,
|
|
config_entry: JewishCalendarConfigEntry,
|
|
description: SensorEntityDescription,
|
|
) -> None:
|
|
"""Initialize the Jewish calendar sensor."""
|
|
super().__init__(config_entry, description)
|
|
self._attrs: dict[str, str] = {}
|
|
|
|
async def async_added_to_hass(self) -> None:
|
|
"""Call when entity is added to hass."""
|
|
await super().async_added_to_hass()
|
|
await self.async_update()
|
|
|
|
async def async_update(self) -> None:
|
|
"""Update the state of the sensor."""
|
|
now = dt_util.now()
|
|
_LOGGER.debug("Now: %s Location: %r", now, self._location)
|
|
|
|
today = now.date()
|
|
event_date = get_astral_event_date(self.hass, SUN_EVENT_SUNSET, today)
|
|
|
|
if event_date is None:
|
|
_LOGGER.error("Can't get sunset event date for %s", today)
|
|
return
|
|
|
|
sunset = dt_util.as_local(event_date)
|
|
|
|
_LOGGER.debug("Now: %s Sunset: %s", now, sunset)
|
|
|
|
daytime_date = HDateInfo(today, diaspora=self._diaspora)
|
|
|
|
# The Jewish day starts after darkness (called "tzais") and finishes at
|
|
# sunset ("shkia"). The time in between is a gray area
|
|
# (aka "Bein Hashmashot" # codespell:ignore
|
|
# - literally: "in between the sun and the moon").
|
|
|
|
# For some sensors, it is more interesting to consider the date to be
|
|
# tomorrow based on sunset ("shkia"), for others based on "tzais".
|
|
# Hence the following variables.
|
|
after_tzais_date = after_shkia_date = daytime_date
|
|
today_times = self.make_zmanim(today)
|
|
|
|
if now > sunset:
|
|
after_shkia_date = daytime_date.next_day
|
|
|
|
if today_times.havdalah and now > today_times.havdalah:
|
|
after_tzais_date = daytime_date.next_day
|
|
|
|
self._attr_native_value = self.get_state(
|
|
daytime_date, after_shkia_date, after_tzais_date
|
|
)
|
|
_LOGGER.debug(
|
|
"New value for %s: %s", self.entity_description.key, self._attr_native_value
|
|
)
|
|
|
|
def make_zmanim(self, date: dt.date) -> Zmanim:
|
|
"""Create a Zmanim object."""
|
|
return Zmanim(
|
|
date=date,
|
|
location=self._location,
|
|
candle_lighting_offset=self._candle_lighting_offset,
|
|
havdalah_offset=self._havdalah_offset,
|
|
)
|
|
|
|
@property
|
|
def extra_state_attributes(self) -> dict[str, str]:
|
|
"""Return the state attributes."""
|
|
return self._attrs
|
|
|
|
def get_state(
|
|
self,
|
|
daytime_date: HDateInfo,
|
|
after_shkia_date: HDateInfo,
|
|
after_tzais_date: HDateInfo,
|
|
) -> Any | None:
|
|
"""For a given type of sensor, return the state."""
|
|
# Terminology note: by convention in py-libhdate library, "upcoming"
|
|
# refers to "current" or "upcoming" dates.
|
|
if self.entity_description.key == "date":
|
|
hdate = after_shkia_date.hdate
|
|
self._attrs = {
|
|
"hebrew_year": str(hdate.year),
|
|
"hebrew_month_name": str(hdate.month),
|
|
"hebrew_day": str(hdate.day),
|
|
}
|
|
return after_shkia_date.hdate
|
|
if self.entity_description.key == "weekly_portion":
|
|
self._attr_options = list(Parasha)
|
|
# Compute the weekly portion based on the upcoming shabbat.
|
|
return after_tzais_date.upcoming_shabbat.parasha
|
|
if self.entity_description.key == "holiday":
|
|
_holidays = after_shkia_date.holidays
|
|
_id = ", ".join(holiday.name for holiday in _holidays)
|
|
_type = ", ".join(
|
|
dict.fromkeys(_holiday.type.name for _holiday in _holidays)
|
|
)
|
|
self._attrs = {"id": _id, "type": _type}
|
|
self._attr_options = HolidayDatabase(self._diaspora).get_all_names()
|
|
return ", ".join(str(holiday) for holiday in _holidays) if _holidays else ""
|
|
if self.entity_description.key == "omer_count":
|
|
return after_shkia_date.omer.total_days if after_shkia_date.omer else 0
|
|
if self.entity_description.key == "daf_yomi":
|
|
return daytime_date.daf_yomi
|
|
|
|
return None
|
|
|
|
|
|
class JewishCalendarTimeSensor(JewishCalendarSensor):
|
|
"""Implement attributes for sensors returning times."""
|
|
|
|
_attr_device_class = SensorDeviceClass.TIMESTAMP
|
|
|
|
def get_state(
|
|
self,
|
|
daytime_date: HDateInfo,
|
|
after_shkia_date: HDateInfo,
|
|
after_tzais_date: HDateInfo,
|
|
) -> Any | None:
|
|
"""For a given type of sensor, return the state."""
|
|
if self.entity_description.key == "upcoming_shabbat_candle_lighting":
|
|
times = self.make_zmanim(
|
|
after_tzais_date.upcoming_shabbat.previous_day.gdate
|
|
)
|
|
return times.candle_lighting
|
|
if self.entity_description.key == "upcoming_candle_lighting":
|
|
times = self.make_zmanim(
|
|
after_tzais_date.upcoming_shabbat_or_yom_tov.first_day.previous_day.gdate
|
|
)
|
|
return times.candle_lighting
|
|
if self.entity_description.key == "upcoming_shabbat_havdalah":
|
|
times = self.make_zmanim(after_tzais_date.upcoming_shabbat.gdate)
|
|
return times.havdalah
|
|
if self.entity_description.key == "upcoming_havdalah":
|
|
times = self.make_zmanim(
|
|
after_tzais_date.upcoming_shabbat_or_yom_tov.last_day.gdate
|
|
)
|
|
return times.havdalah
|
|
|
|
times = self.make_zmanim(dt_util.now().date())
|
|
return times.zmanim[self.entity_description.key].local
|