173 lines
5.7 KiB
Python
173 lines
5.7 KiB
Python
"""
|
|
Support for Snips on-device ASR and NLU.
|
|
|
|
For more details about this component, please refer to the documentation at
|
|
https://home-assistant.io/components/snips/
|
|
"""
|
|
import asyncio
|
|
import json
|
|
import logging
|
|
from datetime import timedelta
|
|
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.helpers import intent, config_validation as cv
|
|
import homeassistant.components.mqtt as mqtt
|
|
|
|
DOMAIN = 'snips'
|
|
DEPENDENCIES = ['mqtt']
|
|
|
|
CONF_INTENTS = 'intents'
|
|
CONF_ACTION = 'action'
|
|
|
|
SERVICE_SAY = 'say'
|
|
SERVICE_SAY_ACTION = 'say_action'
|
|
|
|
INTENT_TOPIC = 'hermes/intent/#'
|
|
|
|
ATTR_TEXT = 'text'
|
|
ATTR_SITE_ID = 'site_id'
|
|
ATTR_CUSTOM_DATA = 'custom_data'
|
|
ATTR_CAN_BE_ENQUEUED = 'can_be_enqueued'
|
|
ATTR_INTENT_FILTER = 'intent_filter'
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
CONFIG_SCHEMA = vol.Schema({
|
|
DOMAIN: {}
|
|
}, extra=vol.ALLOW_EXTRA)
|
|
|
|
INTENT_SCHEMA = vol.Schema({
|
|
vol.Required('input'): str,
|
|
vol.Required('intent'): {
|
|
vol.Required('intentName'): str
|
|
},
|
|
vol.Optional('slots'): [{
|
|
vol.Required('slotName'): str,
|
|
vol.Required('value'): {
|
|
vol.Required('kind'): str,
|
|
vol.Optional('value'): cv.match_all,
|
|
vol.Optional('rawValue'): cv.match_all
|
|
}
|
|
}]
|
|
}, extra=vol.ALLOW_EXTRA)
|
|
|
|
SERVICE_SCHEMA_SAY = vol.Schema({
|
|
vol.Required(ATTR_TEXT): str,
|
|
vol.Optional(ATTR_SITE_ID, default='default'): str,
|
|
vol.Optional(ATTR_CUSTOM_DATA, default=''): str
|
|
})
|
|
|
|
SERVICE_SCHEMA_SAY_ACTION = vol.Schema({
|
|
vol.Required(ATTR_TEXT): str,
|
|
vol.Optional(ATTR_SITE_ID, default='default'): str,
|
|
vol.Optional(ATTR_CUSTOM_DATA, default=''): str,
|
|
vol.Optional(ATTR_CAN_BE_ENQUEUED, default=True): cv.boolean,
|
|
vol.Optional(ATTR_INTENT_FILTER): vol.All(cv.ensure_list),
|
|
})
|
|
|
|
|
|
@asyncio.coroutine
|
|
def async_setup(hass, config):
|
|
"""Activate Snips component."""
|
|
@asyncio.coroutine
|
|
def message_received(topic, payload, qos):
|
|
"""Handle new messages on MQTT."""
|
|
_LOGGER.debug("New intent: %s", payload)
|
|
|
|
try:
|
|
request = json.loads(payload)
|
|
except TypeError:
|
|
_LOGGER.error('Received invalid JSON: %s', payload)
|
|
return
|
|
|
|
try:
|
|
request = INTENT_SCHEMA(request)
|
|
except vol.Invalid as err:
|
|
_LOGGER.error('Intent has invalid schema: %s. %s', err, request)
|
|
return
|
|
|
|
if request['intent']['intentName'].startswith('user_'):
|
|
intent_type = request['intent']['intentName'].split('__')[-1]
|
|
else:
|
|
intent_type = request['intent']['intentName'].split(':')[-1]
|
|
snips_response = None
|
|
slots = {}
|
|
for slot in request.get('slots', []):
|
|
slots[slot['slotName']] = {'value': resolve_slot_values(slot)}
|
|
|
|
try:
|
|
intent_response = yield from intent.async_handle(
|
|
hass, DOMAIN, intent_type, slots, request['input'])
|
|
if 'plain' in intent_response.speech:
|
|
snips_response = intent_response.speech['plain']['speech']
|
|
except intent.UnknownIntent as err:
|
|
_LOGGER.warning("Received unknown intent %s",
|
|
request['intent']['intentName'])
|
|
except intent.IntentError:
|
|
_LOGGER.exception("Error while handling intent: %s.", intent_type)
|
|
|
|
if snips_response:
|
|
notification = {'sessionId': request.get('sessionId', 'default'),
|
|
'text': snips_response}
|
|
|
|
_LOGGER.debug("send_response %s", json.dumps(notification))
|
|
mqtt.async_publish(hass, 'hermes/dialogueManager/endSession',
|
|
json.dumps(notification))
|
|
|
|
yield from hass.components.mqtt.async_subscribe(
|
|
INTENT_TOPIC, message_received)
|
|
|
|
@asyncio.coroutine
|
|
def snips_say(call):
|
|
"""Send a Snips notification message."""
|
|
notification = {'siteId': call.data.get(ATTR_SITE_ID, 'default'),
|
|
'customData': call.data.get(ATTR_CUSTOM_DATA, ''),
|
|
'init': {'type': 'notification',
|
|
'text': call.data.get(ATTR_TEXT)}}
|
|
mqtt.async_publish(hass, 'hermes/dialogueManager/startSession',
|
|
json.dumps(notification))
|
|
return
|
|
|
|
@asyncio.coroutine
|
|
def snips_say_action(call):
|
|
"""Send a Snips action message."""
|
|
notification = {'siteId': call.data.get(ATTR_SITE_ID, 'default'),
|
|
'customData': call.data.get(ATTR_CUSTOM_DATA, ''),
|
|
'init': {'type': 'action',
|
|
'text': call.data.get(ATTR_TEXT),
|
|
'canBeEnqueued': call.data.get(
|
|
ATTR_CAN_BE_ENQUEUED, True),
|
|
'intentFilter':
|
|
call.data.get(ATTR_INTENT_FILTER, [])}}
|
|
mqtt.async_publish(hass, 'hermes/dialogueManager/startSession',
|
|
json.dumps(notification))
|
|
return
|
|
|
|
hass.services.async_register(
|
|
DOMAIN, SERVICE_SAY, snips_say,
|
|
schema=SERVICE_SCHEMA_SAY)
|
|
hass.services.async_register(
|
|
DOMAIN, SERVICE_SAY_ACTION, snips_say_action,
|
|
schema=SERVICE_SCHEMA_SAY_ACTION)
|
|
|
|
return True
|
|
|
|
|
|
def resolve_slot_values(slot):
|
|
"""Convert snips builtin types to usable values."""
|
|
if 'value' in slot['value']:
|
|
value = slot['value']['value']
|
|
else:
|
|
value = slot['rawValue']
|
|
|
|
if slot.get('entity') == "snips/duration":
|
|
delta = timedelta(weeks=slot['value']['weeks'],
|
|
days=slot['value']['days'],
|
|
hours=slot['value']['hours'],
|
|
minutes=slot['value']['minutes'],
|
|
seconds=slot['value']['seconds'])
|
|
value = delta.seconds
|
|
|
|
return value
|