mirror of
https://github.com/esphome/esphome.git
synced 2024-11-14 02:58:11 +01:00
Improve OTA v2 error and log messages
This commit is contained in:
parent
3b3ff4fea9
commit
415e12309b
1 changed files with 48 additions and 6 deletions
|
@ -4,6 +4,8 @@ import random
|
||||||
import socket
|
import socket
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
from esphomeyaml.core import ESPHomeYAMLError
|
||||||
|
|
||||||
RESPONSE_OK = 0
|
RESPONSE_OK = 0
|
||||||
RESPONSE_REQUEST_AUTH = 1
|
RESPONSE_REQUEST_AUTH = 1
|
||||||
|
|
||||||
|
@ -49,7 +51,7 @@ def update_progress(progress):
|
||||||
sys.stderr.flush()
|
sys.stderr.flush()
|
||||||
|
|
||||||
|
|
||||||
class OTAError(Exception):
|
class OTAError(ESPHomeYAMLError):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
@ -202,12 +204,52 @@ def perform_ota(sock, password, file_handle, filename):
|
||||||
_LOGGER.info("OTA successful")
|
_LOGGER.info("OTA successful")
|
||||||
|
|
||||||
|
|
||||||
def run_ota(remote_host, remote_port, password, filename):
|
def is_ip_address(host):
|
||||||
_LOGGER.info("Connecting to %s:%s...", remote_host, remote_port)
|
parts = host.split('.')
|
||||||
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
if len(parts) != 4:
|
||||||
sock.settimeout(5.0)
|
return False
|
||||||
try:
|
try:
|
||||||
sock.connect((remote_host, remote_port))
|
for p in parts:
|
||||||
|
int(p)
|
||||||
|
return True
|
||||||
|
except ValueError:
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
def resolve_ip_address(host):
|
||||||
|
if is_ip_address(host):
|
||||||
|
return host
|
||||||
|
|
||||||
|
_LOGGER.info("Resolving IP Address of %s", host)
|
||||||
|
hosts = [host]
|
||||||
|
if host.endswith('.local'):
|
||||||
|
hosts.append(host[:-6])
|
||||||
|
|
||||||
|
errors = []
|
||||||
|
for x in hosts:
|
||||||
|
try:
|
||||||
|
ip = socket.gethostbyname(x)
|
||||||
|
break
|
||||||
|
except socket.error as err:
|
||||||
|
errors.append(err)
|
||||||
|
else:
|
||||||
|
_LOGGER.error("Error resolving IP address of %s. Is it connected to WiFi?",
|
||||||
|
host)
|
||||||
|
|
||||||
|
_LOGGER.error("(If this error persists, please set a static IP address: "
|
||||||
|
"https://esphomelib.com/esphomeyaml/components/wifi.html#manual-ips")
|
||||||
|
raise OTAError("Errors: {}".format(', '.join(str(x) for x in errors)))
|
||||||
|
|
||||||
|
_LOGGER.info(" -> %s", ip)
|
||||||
|
return ip
|
||||||
|
|
||||||
|
|
||||||
|
def run_ota(remote_host, remote_port, password, filename):
|
||||||
|
ip = resolve_ip_address(remote_host)
|
||||||
|
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||||
|
sock.settimeout(10.0)
|
||||||
|
try:
|
||||||
|
sock.connect((ip, remote_port))
|
||||||
except socket.error as err:
|
except socket.error as err:
|
||||||
sock.close()
|
sock.close()
|
||||||
_LOGGER.error("Connecting to %s:%s failed: %s", remote_host, remote_port, err)
|
_LOGGER.error("Connecting to %s:%s failed: %s", remote_host, remote_port, err)
|
||||||
|
|
Loading…
Reference in a new issue