You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
144 lines
6.1 KiB
144 lines
6.1 KiB
5 years ago
|
"""Data handler for HACS."""
|
||
|
from integrationhelper import Logger
|
||
|
from . import Hacs
|
||
|
from ..const import VERSION
|
||
|
from ..repositories.repository import HacsRepository
|
||
|
from ..repositories.manifest import HacsManifest
|
||
|
from ..store import async_save_to_store, async_load_from_store
|
||
|
|
||
|
|
||
|
class HacsData(Hacs):
|
||
|
"""HacsData class."""
|
||
|
|
||
|
def __init__(self):
|
||
|
"""Initialize."""
|
||
|
self.logger = Logger("hacs.data")
|
||
|
|
||
|
async def async_write(self):
|
||
|
"""Write content to the store files."""
|
||
|
if self.system.status.background_task or self.system.disabled:
|
||
|
return
|
||
|
|
||
|
self.logger.debug("Saving data")
|
||
|
|
||
|
# Hacs
|
||
|
await async_save_to_store(
|
||
|
self.hass,
|
||
|
"hacs",
|
||
|
{
|
||
|
"view": self.configuration.frontend_mode,
|
||
|
"compact": self.configuration.frontend_compact,
|
||
|
"onboarding_done": self.configuration.onboarding_done,
|
||
|
},
|
||
|
)
|
||
|
|
||
|
# Repositories
|
||
|
content = {}
|
||
|
for repository in self.repositories:
|
||
|
if repository.repository_manifest is not None:
|
||
|
repository_manifest = repository.repository_manifest.manifest
|
||
|
else:
|
||
|
repository_manifest = None
|
||
|
content[repository.information.uid] = {
|
||
|
"authors": repository.information.authors,
|
||
|
"category": repository.information.category,
|
||
|
"description": repository.information.description,
|
||
|
"downloads": repository.releases.last_release_object_downloads,
|
||
|
"full_name": repository.information.full_name,
|
||
|
"hide": repository.status.hide,
|
||
|
"installed_commit": repository.versions.installed_commit,
|
||
|
"installed": repository.status.installed,
|
||
|
"last_commit": repository.versions.available_commit,
|
||
|
"last_release_tag": repository.versions.available,
|
||
|
"last_updated": repository.information.last_updated,
|
||
|
"name": repository.information.name,
|
||
|
"new": repository.status.new,
|
||
|
"repository_manifest": repository_manifest,
|
||
|
"selected_tag": repository.status.selected_tag,
|
||
|
"show_beta": repository.status.show_beta,
|
||
|
"stars": repository.information.stars,
|
||
|
"topics": repository.information.topics,
|
||
|
"version_installed": repository.versions.installed,
|
||
|
}
|
||
|
|
||
|
await async_save_to_store(self.hass, "repositories", content)
|
||
|
self.hass.bus.async_fire("hacs/repository", {})
|
||
|
self.hass.bus.fire("hacs/config", {})
|
||
|
|
||
|
async def restore(self):
|
||
|
"""Restore saved data."""
|
||
|
hacs = await async_load_from_store(self.hass, "hacs")
|
||
|
repositories = await async_load_from_store(self.hass, "repositories")
|
||
|
try:
|
||
|
if not hacs and not repositories:
|
||
|
# Assume new install
|
||
|
self.system.status.new = True
|
||
|
return True
|
||
|
self.logger.info("Restore started")
|
||
|
|
||
|
# Hacs
|
||
|
self.configuration.frontend_mode = hacs.get("view", "Grid")
|
||
|
self.configuration.frontend_compact = hacs.get("compact", False)
|
||
|
self.configuration.onboarding_done = hacs.get("onboarding_done", False)
|
||
|
|
||
|
# Repositories
|
||
|
for entry in repositories:
|
||
|
repo = repositories[entry]
|
||
|
if repo["full_name"] == "hacs/integration":
|
||
|
# Skip the old repo location
|
||
|
continue
|
||
|
if not self.is_known(repo["full_name"]):
|
||
|
await self.register_repository(
|
||
|
repo["full_name"], repo["category"], False
|
||
|
)
|
||
|
repository = self.get_by_name(repo["full_name"])
|
||
|
if repository is None:
|
||
|
self.logger.error(f"Did not find {repo['full_name']}")
|
||
|
continue
|
||
|
|
||
|
# Restore repository attributes
|
||
|
repository.information.uid = entry
|
||
|
await self.hass.async_add_executor_job(
|
||
|
restore_repository_data, repository, repo
|
||
|
)
|
||
|
|
||
|
self.logger.info("Restore done")
|
||
|
except Exception as exception: # pylint: disable=broad-except
|
||
|
self.logger.critical(f"[{exception}] Restore Failed!")
|
||
|
return False
|
||
|
return True
|
||
|
|
||
|
|
||
|
def restore_repository_data(
|
||
|
repository: type(HacsRepository), repository_data: dict
|
||
|
) -> None:
|
||
|
"""Restore Repository Data"""
|
||
|
repository.information.authors = repository_data.get("authors", [])
|
||
|
repository.information.description = repository_data.get("description")
|
||
|
repository.information.name = repository_data.get("name")
|
||
|
repository.releases.last_release_object_downloads = repository_data.get("downloads")
|
||
|
repository.information.last_updated = repository_data.get("last_updated")
|
||
|
repository.information.topics = repository_data.get("topics", [])
|
||
|
repository.information.stars = repository_data.get("stars", 0)
|
||
|
repository.releases.last_release = repository_data.get("last_release_tag")
|
||
|
repository.status.hide = repository_data.get("hide", False)
|
||
|
repository.status.installed = repository_data.get("installed", False)
|
||
|
repository.status.new = repository_data.get("new", True)
|
||
|
repository.status.selected_tag = repository_data.get("selected_tag")
|
||
|
repository.status.show_beta = repository_data.get("show_beta", False)
|
||
|
repository.versions.available = repository_data.get("last_release_tag")
|
||
|
repository.versions.available_commit = repository_data.get("last_commit")
|
||
|
repository.versions.installed = repository_data.get("version_installed")
|
||
|
repository.versions.installed_commit = repository_data.get("installed_commit")
|
||
|
|
||
|
repository.repository_manifest = HacsManifest.from_dict(
|
||
|
repository_data.get("repository_manifest", {})
|
||
|
)
|
||
|
|
||
|
if repository.status.installed:
|
||
|
repository.status.first_install = False
|
||
|
|
||
|
if repository_data["full_name"] == "hacs/integration":
|
||
|
repository.versions.installed = VERSION
|
||
|
repository.status.installed = True
|