mirror of
https://github.com/esphome/esphome.git
synced 2024-11-01 08:37:10 +01:00
7a551081ee
* initial web_server_idf implementation * initial web_server_idf implementation * fix lint errors * fix lint errors * add captive_portal support * fix lint errors * fix lint errors * add url decode * Increase the max supported size of headers section in HTTP request * add ota support * add mulipart form data support (ota required) * make linter happy * make linter happy * make linter happy * fix review marks * add DefaultHeaders support * add DefaultHeaders support * unify file names * using std::isnan * parse multipart requests only when ota enabled * parse multipart requests only when ota enabled * parse multipart requests only when ota enabled * parse multipart requests only when ota enabled * parse multipart requests only when ota enabled * drop multipart request support * drop multipart request support * drop multipart request support * OTA is disabled by default * fail when OTA enabled on IDF framework * changing file permissions to remove execute bit * return back PGM_P and strncpy_P macro * temp web_server fix to be compat with 2022.12 * fix config handling w/o web_server * fix compilation with "local" * fully remove all idf ota * merge with esphome 2023.6 * add core/hal to web_server_base * Update esphome/components/web_server_base/__init__.py Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com> * Update __init__.py * Update __init__.py --------- Co-authored-by: Keith Burzinski <kbx81x@gmail.com> Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
110 lines
3.1 KiB
Python
Executable File
110 lines
3.1 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
from pathlib import Path
|
|
import sys
|
|
import argparse
|
|
from collections import defaultdict
|
|
|
|
from esphome.helpers import write_file_if_changed
|
|
from esphome.config import get_component, get_platform
|
|
from esphome.core import CORE
|
|
from esphome.const import KEY_CORE, KEY_TARGET_FRAMEWORK
|
|
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument(
|
|
"--check", help="Check if the CODEOWNERS file is up to date.", action="store_true"
|
|
)
|
|
args = parser.parse_args()
|
|
|
|
# The root directory of the repo
|
|
root = Path(__file__).parent.parent
|
|
components_dir = root / "esphome" / "components"
|
|
|
|
BASE = """
|
|
# This file is generated by script/build_codeowners.py
|
|
# People marked here will be automatically requested for a review
|
|
# when the code that they own is touched.
|
|
#
|
|
# Every time an issue is created with a label corresponding to an integration,
|
|
# the integration's code owner is automatically notified.
|
|
|
|
# Core Code
|
|
setup.py @esphome/core
|
|
esphome/*.py @esphome/core
|
|
esphome/core/* @esphome/core
|
|
|
|
# Integrations
|
|
""".strip()
|
|
|
|
parts = [BASE]
|
|
|
|
# Fake some directory so that get_component works
|
|
CORE.config_path = str(root)
|
|
CORE.data[KEY_CORE] = {KEY_TARGET_FRAMEWORK: None}
|
|
|
|
codeowners = defaultdict(list)
|
|
|
|
for path in components_dir.iterdir():
|
|
if not path.is_dir():
|
|
continue
|
|
if not (path / "__init__.py").is_file():
|
|
continue
|
|
|
|
name = path.name
|
|
comp = get_component(name)
|
|
if comp is None:
|
|
print(
|
|
f"Cannot find component {name}. Make sure current path is pip installed ESPHome"
|
|
)
|
|
sys.exit(1)
|
|
|
|
codeowners[f"esphome/components/{name}/*"].extend(comp.codeowners)
|
|
|
|
for platform_path in path.iterdir():
|
|
platform_name = platform_path.stem
|
|
platform = get_platform(platform_name, name)
|
|
if platform is None:
|
|
continue
|
|
|
|
if platform_path.is_dir():
|
|
# Sub foldered platforms get their own line
|
|
if not (platform_path / "__init__.py").is_file():
|
|
continue
|
|
codeowners[f"esphome/components/{name}/{platform_name}/*"].extend(
|
|
platform.codeowners
|
|
)
|
|
continue
|
|
|
|
# Non-subfoldered platforms add to codeowners at component level
|
|
if not platform_path.is_file() or platform_path.name == "__init__.py":
|
|
continue
|
|
codeowners[f"esphome/components/{name}/*"].extend(platform.codeowners)
|
|
|
|
|
|
for path, owners in sorted(codeowners.items()):
|
|
owners = sorted(set(owners))
|
|
if not owners:
|
|
continue
|
|
for owner in owners:
|
|
if not owner.startswith("@"):
|
|
print(
|
|
f"Codeowner {owner} for integration {path} must start with an '@' symbol!"
|
|
)
|
|
sys.exit(1)
|
|
parts.append(f"{path} {' '.join(owners)}")
|
|
|
|
|
|
# End newline
|
|
parts.append("")
|
|
content = "\n".join(parts)
|
|
codeowners_file = root / "CODEOWNERS"
|
|
|
|
if args.check:
|
|
if codeowners_file.read_text() != content:
|
|
print("CODEOWNERS file is not up to date.")
|
|
print("Please run `script/build_codeowners.py`")
|
|
sys.exit(1)
|
|
print("CODEOWNERS file is up to date")
|
|
else:
|
|
write_file_if_changed(codeowners_file, content)
|
|
print("Wrote CODEOWNERS")
|