mirror of
https://github.com/esphome/esphome.git
synced 2024-11-09 16:57:47 +01:00
[dashboard] Accept basic auth header
This commit is contained in:
parent
896af84acc
commit
59fe0323b1
1 changed files with 6 additions and 0 deletions
|
@ -107,6 +107,12 @@ def is_authenticated(handler: BaseHandler) -> bool:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
if settings.using_auth:
|
if settings.using_auth:
|
||||||
|
if auth_header := handler.request.headers.get("Authorization"):
|
||||||
|
assert isinstance(auth_header, str)
|
||||||
|
if auth_header.startswith("Basic "):
|
||||||
|
auth_decoded = base64.b64decode(auth_header[6:]).decode()
|
||||||
|
username, password = auth_decoded.split(":", 1)
|
||||||
|
return settings.check_password(username, password)
|
||||||
return handler.get_secure_cookie(AUTH_COOKIE_NAME) == COOKIE_AUTHENTICATED_YES
|
return handler.get_secure_cookie(AUTH_COOKIE_NAME) == COOKIE_AUTHENTICATED_YES
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
Loading…
Reference in a new issue