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.
79 lines
2.6 KiB
79 lines
2.6 KiB
"""Class for themes in HACS.""" |
|
from .repository import HacsRepository, register_repository_class |
|
|
|
|
|
@register_repository_class |
|
class HacsTheme(HacsRepository): |
|
"""Themes in HACS.""" |
|
|
|
category = "theme" |
|
|
|
def __init__(self, full_name): |
|
"""Initialize.""" |
|
super().__init__() |
|
self.information.full_name = full_name |
|
self.information.category = self.category |
|
self.content.path.remote = "themes" |
|
self.content.path.local = f"{self.system.config_path}/themes" |
|
self.content.single = True |
|
|
|
async def validate_repository(self): |
|
"""Validate.""" |
|
# Run common validation steps. |
|
await self.common_validate() |
|
|
|
# Custom step 1: Validate content. |
|
self.content.objects = await self.repository_object.get_contents( |
|
self.content.path.remote, self.ref |
|
) |
|
if not isinstance(self.content.objects, list): |
|
self.validate.errors.append("Repostitory structure not compliant") |
|
|
|
self.content.files = [] |
|
for filename in self.content.objects: |
|
self.content.files.append(filename.name) |
|
|
|
# Handle potential errors |
|
if self.validate.errors: |
|
for error in self.validate.errors: |
|
if not self.system.status.startup: |
|
self.logger.error(error) |
|
return self.validate.success |
|
|
|
async def registration(self): |
|
"""Registration.""" |
|
if not await self.validate_repository(): |
|
return False |
|
|
|
# Run common registration steps. |
|
await self.common_registration() |
|
|
|
# Set name |
|
self.information.name = self.content.objects[0].name.replace(".yaml", "") |
|
|
|
async def update_repository(self): # lgtm[py/similar-function] |
|
"""Update.""" |
|
if self.github.ratelimits.remaining == 0: |
|
return |
|
# Run common update steps. |
|
await self.common_update() |
|
|
|
# Get theme objects. |
|
if self.repository_manifest: |
|
if self.repository_manifest.content_in_root: |
|
self.content.path.remote = "" |
|
self.content.objects = await self.repository_object.get_contents( |
|
self.content.path.remote, self.ref |
|
) |
|
|
|
self.content.files = [] |
|
for filename in self.content.objects: |
|
self.content.files.append(filename.name) |
|
|
|
# Update name |
|
self.information.file_name = self.content.objects[0].name |
|
self.information.name = self.content.objects[0].name.replace(".yaml", "") |
|
|
|
self.content.files = [] |
|
for filename in self.content.objects: |
|
self.content.files.append(filename.name)
|
|
|