84 lines
2.6 KiB
Python
Raw Normal View History

"""Class for python_scripts in HACS."""
from integrationhelper import Logger
from .repository import HacsRepository
from ..hacsbase.exceptions import HacsException
from ..helpers.information import find_file_name
class HacsPythonScript(HacsRepository):
"""python_scripts in HACS."""
category = "python_script"
def __init__(self, full_name):
"""Initialize."""
super().__init__()
self.data.full_name = full_name
self.data.category = "python_script"
self.content.path.remote = "python_scripts"
2020-06-07 14:29:26 -04:00
self.content.path.local = self.localpath
self.content.single = True
self.logger = Logger(f"hacs.repository.{self.data.category}.{full_name}")
2020-06-07 14:29:26 -04:00
@property
def localpath(self):
"""Return localpath."""
return f"{self.hacs.system.config_path}/python_scripts"
async def validate_repository(self):
"""Validate."""
# Run common validation steps.
await self.common_validate()
# Custom step 1: Validate content.
if self.data.content_in_root:
self.content.path.remote = ""
compliant = False
for treefile in self.treefiles:
if treefile.startswith(f"{self.content.path.remote}") and treefile.endswith(
".py"
):
compliant = True
break
if not compliant:
raise HacsException(
f"Repository structure for {self.ref.replace('tags/','')} is not compliant"
)
# Handle potential errors
if self.validate.errors:
for error in self.validate.errors:
if not self.hacs.system.status.startup:
self.logger.error(error)
return self.validate.success
2020-06-07 14:29:26 -04:00
async def async_post_registration(self):
"""Registration."""
# Set name
find_file_name(self)
2020-05-21 18:48:00 -04:00
async def update_repository(self, ignore_issues=False):
"""Update."""
2020-05-21 18:48:00 -04:00
await self.common_update(ignore_issues)
# Get python_script objects.
if self.data.content_in_root:
self.content.path.remote = ""
compliant = False
for treefile in self.treefiles:
if treefile.startswith(f"{self.content.path.remote}") and treefile.endswith(
".py"
):
compliant = True
break
if not compliant:
raise HacsException(
f"Repository structure for {self.ref.replace('tags/','')} is not compliant"
)
# Update name
find_file_name(self)