mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
Replace name and friendly name in full adopted configs (#4456)
This commit is contained in:
parent
4429e5ae56
commit
690a7d46ce
3 changed files with 68 additions and 66 deletions
|
@ -2,8 +2,10 @@ import base64
|
||||||
import secrets
|
import secrets
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
|
import re
|
||||||
|
|
||||||
import requests
|
import requests
|
||||||
|
from ruamel.yaml import YAML
|
||||||
|
|
||||||
import esphome.codegen as cg
|
import esphome.codegen as cg
|
||||||
import esphome.config_validation as cv
|
import esphome.config_validation as cv
|
||||||
|
@ -11,7 +13,6 @@ import esphome.final_validate as fv
|
||||||
from esphome import git
|
from esphome import git
|
||||||
from esphome.components.packages import validate_source_shorthand
|
from esphome.components.packages import validate_source_shorthand
|
||||||
from esphome.const import CONF_REF, CONF_WIFI, CONF_ESPHOME, CONF_PROJECT
|
from esphome.const import CONF_REF, CONF_WIFI, CONF_ESPHOME, CONF_PROJECT
|
||||||
from esphome.wizard import wizard_file
|
|
||||||
from esphome.yaml_util import dump
|
from esphome.yaml_util import dump
|
||||||
|
|
||||||
dashboard_import_ns = cg.esphome_ns.namespace("dashboard_import")
|
dashboard_import_ns = cg.esphome_ns.namespace("dashboard_import")
|
||||||
|
@ -94,44 +95,6 @@ def import_config(
|
||||||
if p.exists():
|
if p.exists():
|
||||||
raise FileExistsError
|
raise FileExistsError
|
||||||
|
|
||||||
if project_name == "esphome.web":
|
|
||||||
if "esp32c3" in import_url:
|
|
||||||
board = "esp32-c3-devkitm-1"
|
|
||||||
platform = "ESP32"
|
|
||||||
elif "esp32s2" in import_url:
|
|
||||||
board = "esp32-s2-saola-1"
|
|
||||||
platform = "ESP32"
|
|
||||||
elif "esp32s3" in import_url:
|
|
||||||
board = "esp32-s3-devkitc-1"
|
|
||||||
platform = "ESP32"
|
|
||||||
elif "esp32" in import_url:
|
|
||||||
board = "esp32dev"
|
|
||||||
platform = "ESP32"
|
|
||||||
elif "esp8266" in import_url:
|
|
||||||
board = "esp01_1m"
|
|
||||||
platform = "ESP8266"
|
|
||||||
elif "pico-w" in import_url:
|
|
||||||
board = "pico-w"
|
|
||||||
platform = "RP2040"
|
|
||||||
|
|
||||||
kwargs = {
|
|
||||||
"name": name,
|
|
||||||
"friendly_name": friendly_name,
|
|
||||||
"platform": platform,
|
|
||||||
"board": board,
|
|
||||||
"ssid": "!secret wifi_ssid",
|
|
||||||
"psk": "!secret wifi_password",
|
|
||||||
}
|
|
||||||
if encryption:
|
|
||||||
noise_psk = secrets.token_bytes(32)
|
|
||||||
key = base64.b64encode(noise_psk).decode()
|
|
||||||
kwargs["api_encryption_key"] = key
|
|
||||||
|
|
||||||
p.write_text(
|
|
||||||
wizard_file(**kwargs),
|
|
||||||
encoding="utf8",
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
git_file = git.GitFile.from_shorthand(import_url)
|
git_file = git.GitFile.from_shorthand(import_url)
|
||||||
|
|
||||||
if git_file.query and "full_config" in git_file.query:
|
if git_file.query and "full_config" in git_file.query:
|
||||||
|
@ -142,7 +105,44 @@ def import_config(
|
||||||
except requests.exceptions.RequestException as e:
|
except requests.exceptions.RequestException as e:
|
||||||
raise ValueError(f"Error while fetching {url}: {e}") from e
|
raise ValueError(f"Error while fetching {url}: {e}") from e
|
||||||
|
|
||||||
p.write_text(req.text, encoding="utf8")
|
contents = req.text
|
||||||
|
yaml = YAML()
|
||||||
|
loaded_yaml = yaml.load(contents)
|
||||||
|
if (
|
||||||
|
"name_add_mac_suffix" in loaded_yaml["esphome"]
|
||||||
|
and loaded_yaml["esphome"]["name_add_mac_suffix"]
|
||||||
|
):
|
||||||
|
loaded_yaml["esphome"]["name_add_mac_suffix"] = False
|
||||||
|
name_val = loaded_yaml["esphome"]["name"]
|
||||||
|
sub_pattern = re.compile(r"\$\{?([a-zA-Z-_]+)\}?")
|
||||||
|
if match := sub_pattern.match(name_val):
|
||||||
|
name_sub = match.group(1)
|
||||||
|
if name_sub in loaded_yaml["substitutions"]:
|
||||||
|
loaded_yaml["substitutions"][name_sub] = name
|
||||||
|
else:
|
||||||
|
raise ValueError(
|
||||||
|
f"Name substitution {name_sub} not found in substitutions"
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
loaded_yaml["esphome"]["name"] = name
|
||||||
|
if friendly_name is not None:
|
||||||
|
friendly_name_val = loaded_yaml["esphome"]["friendly_name"]
|
||||||
|
if match := sub_pattern.match(friendly_name_val):
|
||||||
|
friendly_name_sub = match.group(1)
|
||||||
|
if friendly_name_sub in loaded_yaml["substitutions"]:
|
||||||
|
loaded_yaml["substitutions"][friendly_name_sub] = friendly_name
|
||||||
|
else:
|
||||||
|
raise ValueError(
|
||||||
|
f"Friendly name substitution {friendly_name_sub} not found in substitutions"
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
loaded_yaml["esphome"]["friendly_name"] = friendly_name
|
||||||
|
|
||||||
|
with p.open("w", encoding="utf8") as f:
|
||||||
|
yaml.dump(loaded_yaml, f)
|
||||||
|
else:
|
||||||
|
with p.open("w", encoding="utf8") as f:
|
||||||
|
f.write(contents)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
substitutions = {"name": name}
|
substitutions = {"name": name}
|
||||||
|
|
|
@ -516,7 +516,8 @@ class ImportRequestHandler(BaseHandler):
|
||||||
self.set_status(500)
|
self.set_status(500)
|
||||||
self.write("File already exists")
|
self.write("File already exists")
|
||||||
return
|
return
|
||||||
except ValueError:
|
except ValueError as e:
|
||||||
|
_LOGGER.error(e)
|
||||||
self.set_status(422)
|
self.set_status(422)
|
||||||
self.write("Invalid package url")
|
self.write("Invalid package url")
|
||||||
return
|
return
|
||||||
|
|
|
@ -16,6 +16,7 @@ esphome-dashboard==20231107.0
|
||||||
aioesphomeapi==23.1.1
|
aioesphomeapi==23.1.1
|
||||||
zeroconf==0.131.0
|
zeroconf==0.131.0
|
||||||
python-magic==0.4.27
|
python-magic==0.4.27
|
||||||
|
ruamel.yaml==0.18.6 # dashboard_import
|
||||||
|
|
||||||
# esp-idf requires this, but doesn't bundle it by default
|
# esp-idf requires this, but doesn't bundle it by default
|
||||||
# https://github.com/espressif/esp-idf/blob/220590d599e134d7a5e7f1e683cc4550349ffbf8/requirements.txt#L24
|
# https://github.com/espressif/esp-idf/blob/220590d599e134d7a5e7f1e683cc4550349ffbf8/requirements.txt#L24
|
||||||
|
|
Loading…
Reference in a new issue