init
This commit is contained in:
66
custom_components/blueprint/__init__.py
Normal file
66
custom_components/blueprint/__init__.py
Normal file
@ -0,0 +1,66 @@
|
||||
"""
|
||||
Component to integrate with https://blueprint.com/api
|
||||
|
||||
For more details about this component, please refer to
|
||||
https://github.com/custom-components/blueprint
|
||||
"""
|
||||
import os
|
||||
import logging
|
||||
import requests
|
||||
from homeassistant.helpers import discovery
|
||||
|
||||
from .const import * # pylint: disable=wildcard-import
|
||||
|
||||
VERSION = '0.0.1'
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
# pylint: disable=unused-argument
|
||||
|
||||
async def async_setup(hass, config):
|
||||
"""Set up this component."""
|
||||
|
||||
# Print startup message
|
||||
startup = STARTUP.format(name=DOMAIN, version=VERSION, issueurl=ISSUE_URL)
|
||||
_LOGGER.info(startup)
|
||||
|
||||
# Check that all required files are present
|
||||
file_check = await check_files(hass)
|
||||
if not file_check:
|
||||
return False
|
||||
|
||||
# Create DATA dict
|
||||
hass.data[DOMAIN_DATA] = {}
|
||||
|
||||
# Load platforms
|
||||
for platform in PLATFORMS:
|
||||
hass.async_create_task(
|
||||
discovery.async_load_platform(hass, platform, DOMAIN, {}, config))
|
||||
return True
|
||||
|
||||
|
||||
async def update_data(hass):
|
||||
"""Update data."""
|
||||
try:
|
||||
request = requests.get(URL)
|
||||
jsondata = request.json()
|
||||
hass.data[DOMAIN_DATA] = jsondata
|
||||
except Exception as error: # pylint: disable=broad-except
|
||||
_LOGGER.error("Could not update data - %s", error)
|
||||
|
||||
|
||||
async def check_files(hass):
|
||||
"""Retrun bool that idicate that all files are present."""
|
||||
base = "{}/custom_components/{}/".format(hass.config.path(), DOMAIN)
|
||||
missing = []
|
||||
for file in REQUIRED_FILES:
|
||||
fullpath = "{}{}".format(base, file)
|
||||
if not os.path.exists(fullpath):
|
||||
missing.append(file)
|
||||
|
||||
if missing:
|
||||
_LOGGER.critical("The following files are missing: %s", str(missing))
|
||||
returnvalue = False
|
||||
else:
|
||||
returnvalue = True
|
||||
|
||||
return returnvalue
|
Reference in New Issue
Block a user