Skip to content

Commit

Permalink
Merge pull request #2 from pvizeli/Release-0_5
Browse files Browse the repository at this point in the history
Release 0.5
  • Loading branch information
pvizeli authored Apr 7, 2017
2 parents ce01e53 + 8c191e8 commit fe4e1a1
Show file tree
Hide file tree
Showing 8 changed files with 68 additions and 27 deletions.
3 changes: 2 additions & 1 deletion hassio/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
loop.run_until_complete(hassio.setup())

_LOGGER.info("Start Hassio task")
loop.create_task(hassio.start())
loop.call_soon_threadsafe(asyncio.ensure_future, hassio.start(), loop)

try:
loop.add_signal_handler(
Expand All @@ -32,4 +32,5 @@
_LOGGER.warning("Could not bind to SIGTERM")

loop.run_forever()
loop.close()
_LOGGER.info("Close Hassio")
1 change: 1 addition & 0 deletions hassio/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ def register_supervisor(self, host_controll):
"""Register supervisor function."""
api_supervisor = APISupervisor(self.config, self.loop, host_controll)

self.webapp.router.add_get('/supervisor/ping', api_supervisor.ping)
self.webapp.router.add_get('/supervisor/info', api_supervisor.info)
self.webapp.router.add_get('/supervisor/update', api_supervisor.update)
self.webapp.router.add_get(
Expand Down
10 changes: 8 additions & 2 deletions hassio/api/homeassistant.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,17 @@
import asyncio
import logging

from .util import api_process, json_loads
import voluptuous as vol

from .util import api_process, api_validate
from ..const import ATTR_VERSION, ATTR_CURRENT

_LOGGER = logging.getLogger(__name__)

SCHEMA_VERSION = vol.Schema({
vol.Optional(ATTR_VERSION): vol.Coerce(str),
})


class APIHomeAssistant(object):
"""Handle rest api for homeassistant functions."""
Expand All @@ -30,7 +36,7 @@ async def info(self, request):
@api_process
async def update(self, request):
"""Update host OS."""
body = await request.json(loads=json_loads)
body = await api_validate(SCHEMA_VERSION, request)
version = body.get(ATTR_VERSION, self.config.current_homeassistant)

if self.dock_hass.in_progress:
Expand Down
38 changes: 23 additions & 15 deletions hassio/api/host.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
"""Init file for HassIO host rest api."""
import logging

from .util import api_process_hostcontroll, json_loads
import voluptuous as vol

from .util import api_process_hostcontroll, api_process, api_validate
from ..const import ATTR_VERSION

_LOGGER = logging.getLogger(__name__)

UNKNOWN = 'unknown'

SCHEMA_VERSION = vol.Schema({
vol.Optional(ATTR_VERSION): vol.Coerce(str),
})


class APIHost(object):
"""Handle rest api for host functions."""
Expand All @@ -16,10 +24,20 @@ def __init__(self, config, loop, host_controll):
self.loop = loop
self.host_controll = host_controll

@api_process_hostcontroll
def info(self, request):
@api_process
async def info(self, request):
"""Return host information."""
return self.host_controll.info()
if not self.host_controll.active:
info = {
'os': UNKNOWN,
'version': UNKNOWN,
'current': UNKNOWN,
'level': 0,
'hostname': UNKNOWN,
}
return info

return await self.host_controll.info()

@api_process_hostcontroll
def reboot(self, request):
Expand All @@ -31,20 +49,10 @@ def shutdown(self, request):
"""Poweroff host."""
return self.host_controll.shutdown()

@api_process_hostcontroll
def network_info(self, request):
"""Edit network settings."""
pass

@api_process_hostcontroll
def network_update(self, request):
"""Edit network settings."""
pass

@api_process_hostcontroll
async def update(self, request):
"""Update host OS."""
body = await request.json(loads=json_loads)
body = await api_validate(SCHEMA_VERSION, request)
version = body.get(ATTR_VERSION)

if version == self.host_controll.version:
Expand Down
22 changes: 19 additions & 3 deletions hassio/api/supervisor.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
"""Init file for HassIO supervisor rest api."""
import logging

from .util import api_process, api_process_hostcontroll, json_loads
import voluptuous as vol

from .util import api_process, api_process_hostcontroll, api_validate
from ..const import ATTR_VERSION, ATTR_CURRENT, ATTR_BETA, HASSIO_VERSION

_LOGGER = logging.getLogger(__name__)

SCHEMA_OPTIONS = vol.Schema({
# pylint: disable=no-value-for-parameter
vol.Optional(ATTR_BETA): vol.Boolean(),
})

SCHEMA_VERSION = vol.Schema({
vol.Optional(ATTR_VERSION): vol.Coerce(str),
})


class APISupervisor(object):
"""Handle rest api for supervisor functions."""
Expand All @@ -16,6 +27,11 @@ def __init__(self, config, loop, host_controll):
self.loop = loop
self.host_controll = host_controll

@api_process
async def ping(self, request):
"""Return ok for signal that the api is ready."""
return True

@api_process
async def info(self, request):
"""Return host information."""
Expand All @@ -30,7 +46,7 @@ async def info(self, request):
@api_process
async def options(self, request):
"""Set supervisor options."""
body = await request.json(loads=json_loads)
body = await api_validate(SCHEMA_OPTIONS, request)

if ATTR_BETA in body:
self.config.upstream_beta = body[ATTR_BETA]
Expand All @@ -40,7 +56,7 @@ async def options(self, request):
@api_process_hostcontroll
async def update(self, request):
"""Update host OS."""
body = await request.json(loads=json_loads)
body = await api_validate(SCHEMA_VERSION, request)
version = body.get(ATTR_VERSION, self.config.current_hassio)

if version == HASSIO_VERSION:
Expand Down
18 changes: 13 additions & 5 deletions hassio/api/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

from aiohttp import web
from aiohttp.web_exceptions import HTTPServiceUnavailable
import voluptuous as vol
from voluptuous.humanize import humanize_error

from ..const import (
JSON_RESULT, JSON_DATA, JSON_MESSAGE, RESULT_OK, RESULT_ERROR)
Expand Down Expand Up @@ -52,7 +54,7 @@ async def wrap_hostcontroll(api, *args, **kwargs):
if isinstance(answer, dict):
return api_return_ok(data=answer)
elif answer is None:
return api_not_supported()
return api_return_error("Function is not supported")
elif answer:
return api_return_ok()
return api_return_error()
Expand All @@ -72,10 +74,16 @@ def api_return_ok(data=None):
"""Return a API ok answer."""
return web.json_response({
JSON_RESULT: RESULT_OK,
JSON_DATA: data,
JSON_DATA: data or {},
})


def api_not_supported():
"""Return a api error with not supported."""
return api_return_error("Function is not supported")
async def api_validate(schema, request):
"""Validate request data with schema."""
data = await request.json(loads=json_loads)
try:
schema(data)
except vol.Invalid as ex:
raise RuntimeError(humanize_error(data, ex)) from None

return data
2 changes: 1 addition & 1 deletion hassio/const.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Const file for HassIO."""
HASSIO_VERSION = '0.4'
HASSIO_VERSION = '0.5'

URL_HASSIO_VERSION = \
'https://raw.githubusercontent.com/pvizeli/hassio/master/version.json'
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,6 @@
'aiohttp',
'docker',
'colorlog',
'voluptuous',
]
)

0 comments on commit fe4e1a1

Please sign in to comment.