From 7c19b961e2c9186fcf7f8dbd4f8b50740d342260 Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Wed, 16 Nov 2022 15:46:33 +1300 Subject: [PATCH] Always save user wifi credentials if non in config (#4036) --- esphome/components/captive_portal/__init__.py | 24 +------------------ esphome/components/wifi/wifi_component.cpp | 7 ++---- 2 files changed, 3 insertions(+), 28 deletions(-) diff --git a/esphome/components/captive_portal/__init__.py b/esphome/components/captive_portal/__init__.py index f7b103d299..ff5266e84f 100644 --- a/esphome/components/captive_portal/__init__.py +++ b/esphome/components/captive_portal/__init__.py @@ -1,9 +1,8 @@ import esphome.codegen as cg import esphome.config_validation as cv -import esphome.final_validate as fv from esphome.components import web_server_base from esphome.components.web_server_base import CONF_WEB_SERVER_BASE_ID -from esphome.const import CONF_ID, CONF_NETWORKS, CONF_PASSWORD, CONF_SSID, CONF_WIFI +from esphome.const import CONF_ID from esphome.core import coroutine_with_priority, CORE AUTO_LOAD = ["web_server_base"] @@ -13,7 +12,6 @@ CODEOWNERS = ["@OttoWinter"] captive_portal_ns = cg.esphome_ns.namespace("captive_portal") CaptivePortal = captive_portal_ns.class_("CaptivePortal", cg.Component) -CONF_KEEP_USER_CREDENTIALS = "keep_user_credentials" CONFIG_SCHEMA = cv.All( cv.Schema( { @@ -21,7 +19,6 @@ CONFIG_SCHEMA = cv.All( cv.GenerateID(CONF_WEB_SERVER_BASE_ID): cv.use_id( web_server_base.WebServerBase ), - cv.Optional(CONF_KEEP_USER_CREDENTIALS, default=False): cv.boolean, } ).extend(cv.COMPONENT_SCHEMA), cv.only_with_arduino, @@ -29,22 +26,6 @@ CONFIG_SCHEMA = cv.All( ) -def validate_wifi(config): - wifi_conf = fv.full_config.get()[CONF_WIFI] - if config.get(CONF_KEEP_USER_CREDENTIALS, False) and ( - CONF_SSID in wifi_conf - or CONF_PASSWORD in wifi_conf - or CONF_NETWORKS in wifi_conf - ): - raise cv.Invalid( - f"WiFi credentials cannot be used together with {CONF_KEEP_USER_CREDENTIALS}" - ) - return config - - -FINAL_VALIDATE_SCHEMA = validate_wifi - - @coroutine_with_priority(64.0) async def to_code(config): paren = await cg.get_variable(config[CONF_WEB_SERVER_BASE_ID]) @@ -58,6 +39,3 @@ async def to_code(config): cg.add_library("WiFi", None) if CORE.is_esp8266: cg.add_library("DNSServer", None) - - if config.get(CONF_KEEP_USER_CREDENTIALS, False): - cg.add_define("USE_CAPTIVE_PORTAL_KEEP_USER_CREDENTIALS") diff --git a/esphome/components/wifi/wifi_component.cpp b/esphome/components/wifi/wifi_component.cpp index ac7314d603..d4636c81cd 100644 --- a/esphome/components/wifi/wifi_component.cpp +++ b/esphome/components/wifi/wifi_component.cpp @@ -39,11 +39,8 @@ void WiFiComponent::setup() { this->last_connected_ = millis(); this->wifi_pre_setup_(); -#ifndef USE_CAPTIVE_PORTAL_KEEP_USER_CREDENTIALS - uint32_t hash = fnv1_hash(App.get_compilation_time()); -#else - uint32_t hash = 88491487UL; -#endif + uint32_t hash = this->has_sta() ? fnv1_hash(App.get_compilation_time()) : 88491487UL; + this->pref_ = global_preferences->make_preference(hash, true); SavedWifiSettings save{};