feat: update ota config to new format
This commit is contained in:
parent
2eff076d5b
commit
709e0529aa
|
@ -37,7 +37,8 @@ api:
|
|||
key: $api_enckey
|
||||
|
||||
ota:
|
||||
password: $ota_password
|
||||
- platform: esphome
|
||||
password: $ota_password
|
||||
|
||||
wifi:
|
||||
ssid: $wifi_ssid
|
||||
|
@ -65,6 +66,7 @@ http_request:
|
|||
useragent: esphome
|
||||
timeout: 2s
|
||||
id: http_request_data
|
||||
verify_ssl: false
|
||||
|
||||
globals:
|
||||
- id: my_token
|
||||
|
@ -97,13 +99,13 @@ rc522_spi:
|
|||
json:
|
||||
role_id: $vault_role_id
|
||||
secret_id: $vault_secret_id
|
||||
verify_ssl: false
|
||||
on_response:
|
||||
# fetch token from response, store into my_token
|
||||
then:
|
||||
- lambda: |-
|
||||
json::parse_json(id(http_request_data).get_string(), [](JsonObject root) {
|
||||
json::parse_json(body, [](JsonObject root) -> bool {
|
||||
id(my_token) = (const char*) root["auth"]["client_token"];
|
||||
return true;
|
||||
});
|
||||
# use the token to get json of scanned tag from vault
|
||||
- http_request.get:
|
||||
|
@ -111,16 +113,16 @@ rc522_spi:
|
|||
return ((std::string) "https://vault.ctdo.de/v1/maschinenlock/" + id(my_tag));
|
||||
headers:
|
||||
X-Vault-Token: !lambda return id(my_token).c_str();
|
||||
verify_ssl: false
|
||||
on_response:
|
||||
then:
|
||||
- if:
|
||||
condition:
|
||||
lambda: 'return status_code == 200;'
|
||||
lambda: 'return response->status_code == 200;'
|
||||
then: # when found, check if machine is allowed, turn on output or blink LED red
|
||||
- lambda: |-
|
||||
json::parse_json(id(http_request_data).get_string(), [](JsonObject root) {
|
||||
id(may_switch_output) = root["data"]["mlock-$name_of_board"];
|
||||
json::parse_json(body, [](JsonObject root) -> bool {
|
||||
id(may_switch_output) = root["data"]["mlock-$name_of_board"];
|
||||
return true;
|
||||
});
|
||||
- if:
|
||||
condition:
|
||||
|
|
Loading…
Reference in New Issue