2020-12-08 19:58:32 -08:00
|
|
|
"""Class for appdaemon apps in HACS."""
|
|
|
|
from aiogithubapi import AIOGitHubAPIException
|
|
|
|
|
|
|
|
from custom_components.hacs.helpers.classes.exceptions import HacsException
|
|
|
|
from custom_components.hacs.helpers.classes.repository import HacsRepository
|
|
|
|
from custom_components.hacs.enums import HacsCategory
|
|
|
|
|
|
|
|
|
|
|
|
class HacsAppdaemon(HacsRepository):
|
|
|
|
"""Appdaemon apps in HACS."""
|
|
|
|
|
|
|
|
def __init__(self, full_name):
|
|
|
|
"""Initialize."""
|
|
|
|
super().__init__()
|
|
|
|
self.data.full_name = full_name
|
|
|
|
self.data.full_name_lower = full_name.lower()
|
|
|
|
self.data.category = HacsCategory.APPDAEMON
|
|
|
|
self.content.path.local = self.localpath
|
|
|
|
self.content.path.remote = "apps"
|
|
|
|
|
|
|
|
@property
|
|
|
|
def localpath(self):
|
|
|
|
"""Return localpath."""
|
|
|
|
return f"{self.hacs.core.config_path}/appdaemon/apps/{self.data.name}"
|
|
|
|
|
|
|
|
async def validate_repository(self):
|
|
|
|
"""Validate."""
|
|
|
|
await self.common_validate()
|
|
|
|
|
|
|
|
# Custom step 1: Validate content.
|
|
|
|
try:
|
|
|
|
addir = await self.repository_object.get_contents("apps", self.ref)
|
|
|
|
except AIOGitHubAPIException:
|
|
|
|
raise HacsException(
|
|
|
|
f"Repostitory structure for {self.ref.replace('tags/','')} is not compliant"
|
|
|
|
) from None
|
|
|
|
|
|
|
|
if not isinstance(addir, list):
|
|
|
|
self.validate.errors.append("Repostitory structure not compliant")
|
|
|
|
|
|
|
|
self.content.path.remote = addir[0].path
|
|
|
|
self.content.objects = await self.repository_object.get_contents(
|
|
|
|
self.content.path.remote, self.ref
|
|
|
|
)
|
|
|
|
|
|
|
|
# Handle potential errors
|
|
|
|
if self.validate.errors:
|
|
|
|
for error in self.validate.errors:
|
|
|
|
if not self.hacs.status.startup:
|
|
|
|
self.logger.error("%s %s", self, error)
|
|
|
|
return self.validate.success
|
|
|
|
|
|
|
|
async def update_repository(self, ignore_issues=False):
|
|
|
|
"""Update."""
|
|
|
|
await self.common_update(ignore_issues)
|
|
|
|
|
|
|
|
# Get appdaemon objects.
|
|
|
|
if self.repository_manifest:
|
|
|
|
if self.data.content_in_root:
|
|
|
|
self.content.path.remote = ""
|
|
|
|
|
|
|
|
if self.content.path.remote == "apps":
|
|
|
|
addir = await self.repository_object.get_contents(
|
|
|
|
self.content.path.remote, self.ref
|
|
|
|
)
|
|
|
|
self.content.path.remote = addir[0].path
|
|
|
|
self.content.objects = await self.repository_object.get_contents(
|
|
|
|
self.content.path.remote, self.ref
|
|
|
|
)
|
|
|
|
|
|
|
|
# Set local path
|
|
|
|
self.content.path.local = self.localpath
|