mirror of https://github.com/home-assistant/core
48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
"""Support for the Swedish weather institute weather service."""
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import (
|
|
CONF_LATITUDE,
|
|
CONF_LOCATION,
|
|
CONF_LONGITUDE,
|
|
CONF_NAME,
|
|
Platform,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
PLATFORMS = [Platform.WEATHER]
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Set up SMHI forecast as config entry."""
|
|
|
|
# Setting unique id where missing
|
|
if entry.unique_id is None:
|
|
unique_id = f"{entry.data[CONF_LOCATION][CONF_LATITUDE]}-{entry.data[CONF_LOCATION][CONF_LONGITUDE]}"
|
|
hass.config_entries.async_update_entry(entry, unique_id=unique_id)
|
|
|
|
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Unload a config entry."""
|
|
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|
|
|
|
|
|
async def async_migrate_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Migrate old entry."""
|
|
if entry.version == 1:
|
|
new_data = {
|
|
CONF_NAME: entry.data[CONF_NAME],
|
|
CONF_LOCATION: {
|
|
CONF_LATITUDE: entry.data[CONF_LATITUDE],
|
|
CONF_LONGITUDE: entry.data[CONF_LONGITUDE],
|
|
},
|
|
}
|
|
|
|
if not hass.config_entries.async_update_entry(entry, data=new_data, version=2):
|
|
return False
|
|
|
|
return True
|