mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-10-07 10:49:28 +00:00

* Allow config boot * Read boot settings * Use internal boot time for detect reboot * Check if Home-Assistant need to watch * Make datetime string and parse_datetime * Add api calls * fix lint p1 * Use new datetime parser for sessions and make a real default boot time * fix lint p2 * only start docker if they is running * convert to int (timestamp) * add boot flag
114 lines
3.0 KiB
Python
114 lines
3.0 KiB
Python
"""Init file for HassIO docker object."""
|
|
import logging
|
|
|
|
import docker
|
|
|
|
from .interface import DockerInterface
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
HASS_DOCKER_NAME = 'homeassistant'
|
|
|
|
|
|
class DockerHomeAssistant(DockerInterface):
|
|
"""Docker hassio wrapper for HomeAssistant."""
|
|
|
|
def __init__(self, config, loop, api, data):
|
|
"""Initialize docker homeassistant wrapper."""
|
|
super().__init__(config, loop, api, image=data.image)
|
|
self.data = data
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return name of docker container."""
|
|
return HASS_DOCKER_NAME
|
|
|
|
@property
|
|
def devices(self):
|
|
"""Create list of special device to map into docker."""
|
|
if not self.data.devices:
|
|
return
|
|
|
|
devices = []
|
|
for device in self.data.devices:
|
|
devices.append("/dev/{0}:/dev/{0}:rwm".format(device))
|
|
|
|
return devices
|
|
|
|
def _run(self):
|
|
"""Run docker image.
|
|
|
|
Need run inside executor.
|
|
"""
|
|
if self._is_running():
|
|
return
|
|
|
|
# cleanup
|
|
self._stop()
|
|
|
|
ret = self.docker.run(
|
|
self.image,
|
|
name=self.name,
|
|
hostname=self.name,
|
|
detach=True,
|
|
privileged=True,
|
|
devices=self.devices,
|
|
network_mode='host',
|
|
environment={
|
|
'HASSIO': self.docker.network.supervisor,
|
|
'TZ': self.config.timezone,
|
|
},
|
|
volumes={
|
|
str(self.config.path_extern_config):
|
|
{'bind': '/config', 'mode': 'rw'},
|
|
str(self.config.path_extern_ssl):
|
|
{'bind': '/ssl', 'mode': 'ro'},
|
|
str(self.config.path_extern_share):
|
|
{'bind': '/share', 'mode': 'rw'},
|
|
}
|
|
)
|
|
|
|
if ret:
|
|
_LOGGER.info("Start homeassistant %s with version %s",
|
|
self.image, self.version)
|
|
|
|
return ret
|
|
|
|
def _execute_command(self, command):
|
|
"""Create a temporary container and run command.
|
|
|
|
Need run inside executor.
|
|
"""
|
|
return self.docker.run_command(
|
|
self.image,
|
|
command,
|
|
detach=True,
|
|
stdout=True,
|
|
stderr=True,
|
|
environment={
|
|
'TZ': self.config.timezone,
|
|
},
|
|
volumes={
|
|
str(self.config.path_extern_config):
|
|
{'bind': '/config', 'mode': 'ro'},
|
|
str(self.config.path_extern_ssl):
|
|
{'bind': '/ssl', 'mode': 'ro'},
|
|
}
|
|
)
|
|
|
|
def is_initialize(self):
|
|
"""Return True if docker container exists."""
|
|
return self.loop.run_in_executor(None, self._is_initialize)
|
|
|
|
def _is_initialize(self):
|
|
"""Return True if docker container exists.
|
|
|
|
Need run inside executor.
|
|
"""
|
|
try:
|
|
self.docker.containers.get(self.name)
|
|
except docker.errors.DockerException:
|
|
return False
|
|
|
|
return True
|