Disable identify schema validation for now

This commit is contained in:
Robbie Trencheny 2017-04-30 15:23:49 -07:00
parent 0298522fd5
commit 87ef26be22
No known key found for this signature in database
GPG Key ID: 57406F414538A33B

View File

@ -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()