77 lines
2.6 KiB
Python
77 lines
2.6 KiB
Python
"""Class for themes in HACS."""
|
|
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
|
|
from custom_components.hacs.helpers.functions.information import find_file_name
|
|
from custom_components.hacs.helpers.functions.logger import getLogger
|
|
|
|
|
|
class HacsTheme(HacsRepository):
|
|
"""Themes 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.THEME
|
|
self.content.path.remote = "themes"
|
|
self.content.path.local = self.localpath
|
|
self.content.single = False
|
|
|
|
@property
|
|
def localpath(self):
|
|
"""Return localpath."""
|
|
return f"{self.hacs.core.config_path}/themes/{self.data.file_name.replace('.yaml', '')}"
|
|
|
|
async def async_post_installation(self):
|
|
"""Run post installation steps."""
|
|
try:
|
|
await self.hacs.hass.services.async_call("frontend", "reload_themes", {})
|
|
except (Exception, BaseException): # pylint: disable=broad-except
|
|
pass
|
|
|
|
async def validate_repository(self):
|
|
"""Validate."""
|
|
# Run common validation steps.
|
|
await self.common_validate()
|
|
|
|
# Custom step 1: Validate content.
|
|
compliant = False
|
|
for treefile in self.treefiles:
|
|
if treefile.startswith("themes/") and treefile.endswith(".yaml"):
|
|
compliant = True
|
|
break
|
|
if not compliant:
|
|
raise HacsException(
|
|
f"Repostitory structure for {self.ref.replace('tags/','')} is not compliant"
|
|
)
|
|
|
|
if self.data.content_in_root:
|
|
self.content.path.remote = ""
|
|
|
|
# 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 async_post_registration(self):
|
|
"""Registration."""
|
|
# Set name
|
|
find_file_name(self)
|
|
self.content.path.local = self.localpath
|
|
|
|
async def update_repository(self, ignore_issues=False):
|
|
"""Update."""
|
|
await self.common_update(ignore_issues)
|
|
|
|
# Get theme objects.
|
|
if self.data.content_in_root:
|
|
self.content.path.remote = ""
|
|
|
|
# Update name
|
|
find_file_name(self)
|
|
self.content.path.local = self.localpath
|