Merge pull request #7385 from robbiet480/dont-validate-ios-identify

Disable iOS device identify schema validation for now
pull/7389/head
Robbie Trencheny 2017-04-30 20:11:21 -07:00 committed by GitHub
commit 8ba7e61ed6
1 changed files with 8 additions and 7 deletions

View File

@ -11,7 +11,7 @@ import logging
import datetime
import voluptuous as vol
from voluptuous.humanize import humanize_error
# from voluptuous.humanize import humanize_error
from homeassistant.helpers import config_validation as cv
@ -288,15 +288,16 @@ class iOSIdentifyDeviceView(HomeAssistantView):
def post(self, request):
"""Handle the POST request for device identification."""
try:
req_data = yield from request.json()
data = yield from request.json()
except ValueError:
return self.json_message("Invalid JSON", HTTP_BAD_REQUEST)
try:
data = IDENTIFY_SCHEMA(req_data)
except vol.Invalid as ex:
return self.json_message(humanize_error(request.json, ex),
HTTP_BAD_REQUEST)
# Commented for now while iOS app is getting frequent updates
# try:
# data = IDENTIFY_SCHEMA(req_data)
# except vol.Invalid as ex:
# return self.json_message(humanize_error(request.json, ex),
# HTTP_BAD_REQUEST)
data[ATTR_LAST_SEEN_AT] = datetime.datetime.now()