mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 07:49:52 +03:00
615 lines
23 KiB
C++
615 lines
23 KiB
C++
/*
|
|
* EMS-ESP - https://github.com/emsesp/EMS-ESP
|
|
* Copyright 2020-2024 Paul Derbyshire
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "emsesp.h"
|
|
#include "WebSchedulerService.h"
|
|
#include <HTTPClient.h>
|
|
|
|
namespace emsesp {
|
|
|
|
WebSchedulerService::WebSchedulerService(AsyncWebServer * server, FS * fs, SecurityManager * securityManager)
|
|
: _httpEndpoint(WebScheduler::read, WebScheduler::update, this, server, EMSESP_SCHEDULER_SERVICE_PATH, securityManager, AuthenticationPredicates::IS_AUTHENTICATED)
|
|
, _fsPersistence(WebScheduler::read, WebScheduler::update, this, fs, EMSESP_SCHEDULER_FILE) {
|
|
}
|
|
|
|
// load the settings when the service starts
|
|
void WebSchedulerService::begin() {
|
|
_fsPersistence.readFromFS();
|
|
|
|
// save a local pointer to the scheduler item list
|
|
EMSESP::webSchedulerService.read([&](WebScheduler & webScheduler) { scheduleItems_ = &webScheduler.scheduleItems; });
|
|
|
|
EMSESP::logger().info("Starting Scheduler service");
|
|
char topic[Mqtt::MQTT_TOPIC_MAX_SIZE];
|
|
snprintf(topic, sizeof(topic), "%s/#", F_(scheduler));
|
|
Mqtt::subscribe(EMSdevice::DeviceType::SCHEDULER, topic, nullptr); // use empty function callback
|
|
#ifndef EMSESP_STANDALONE
|
|
xTaskCreate((TaskFunction_t)scheduler_task, "scheduler_task", 4096, NULL, 3, NULL);
|
|
#endif
|
|
}
|
|
|
|
// this creates the scheduler file, saving it to the FS
|
|
// and also calls when the Scheduler web page is refreshed
|
|
void WebScheduler::read(WebScheduler & webScheduler, JsonObject root) {
|
|
JsonArray schedule = root["schedule"].to<JsonArray>();
|
|
uint8_t counter = 0;
|
|
for (const ScheduleItem & scheduleItem : webScheduler.scheduleItems) {
|
|
JsonObject si = schedule.add<JsonObject>();
|
|
si["id"] = counter++; // id is only used to render the table and must be unique
|
|
si["active"] = scheduleItem.active;
|
|
si["flags"] = scheduleItem.flags;
|
|
si["time"] = scheduleItem.time;
|
|
si["cmd"] = scheduleItem.cmd;
|
|
si["value"] = scheduleItem.value;
|
|
si["name"] = scheduleItem.name;
|
|
}
|
|
}
|
|
|
|
// call on initialization and also when the Schedule web page is saved
|
|
// this loads the data into the internal class
|
|
StateUpdateResult WebScheduler::update(JsonObject root, WebScheduler & webScheduler) {
|
|
// reset the list
|
|
Command::erase_device_commands(EMSdevice::DeviceType::SCHEDULER);
|
|
webScheduler.scheduleItems.clear();
|
|
EMSESP::webSchedulerService.ha_reset();
|
|
|
|
// build up the list of schedule items
|
|
if (root["schedule"].is<JsonArray>()) {
|
|
for (const JsonObject schedule : root["schedule"].as<JsonArray>()) {
|
|
// create each schedule item, overwriting any previous settings
|
|
// ignore the id (as this is only used in the web for table rendering)
|
|
auto si = ScheduleItem();
|
|
si.active = schedule["active"];
|
|
si.flags = schedule["flags"];
|
|
si.time = schedule["time"].as<std::string>();
|
|
si.cmd = schedule["cmd"].as<std::string>();
|
|
si.value = schedule["value"].as<std::string>();
|
|
si.name = schedule["name"].as<std::string>();
|
|
|
|
// calculated elapsed minutes
|
|
si.elapsed_min = Helpers::string2minutes(si.time);
|
|
si.retry_cnt = 0xFF; // no startup retries
|
|
|
|
webScheduler.scheduleItems.push_back(si); // add to list
|
|
if (!webScheduler.scheduleItems.back().name.empty()) {
|
|
Command::add(
|
|
EMSdevice::DeviceType::SCHEDULER,
|
|
webScheduler.scheduleItems.back().name.c_str(),
|
|
[webScheduler](const char * value, const int8_t id) {
|
|
return EMSESP::webSchedulerService.command_setvalue(value, id, webScheduler.scheduleItems.back().name.c_str());
|
|
},
|
|
FL_(schedule_cmd),
|
|
CommandFlag::ADMIN_ONLY);
|
|
}
|
|
}
|
|
}
|
|
|
|
EMSESP::webSchedulerService.publish(true);
|
|
|
|
return StateUpdateResult::CHANGED;
|
|
}
|
|
|
|
// set active by api command
|
|
bool WebSchedulerService::command_setvalue(const char * value, const int8_t id, const char * name) {
|
|
bool v;
|
|
if (!Helpers::value2bool(value, v)) {
|
|
return false;
|
|
}
|
|
|
|
for (ScheduleItem & scheduleItem : *scheduleItems_) {
|
|
if (Helpers::toLower(scheduleItem.name) == Helpers::toLower(name)) {
|
|
if (scheduleItem.active == v) {
|
|
return true;
|
|
}
|
|
|
|
scheduleItem.active = v;
|
|
publish_single(name, v);
|
|
|
|
if (EMSESP::mqtt_.get_publish_onchange(0)) {
|
|
publish();
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
// process json output for info/commands and value_info
|
|
bool WebSchedulerService::get_value_info(JsonObject output, const char * cmd) {
|
|
// check of it a 'commands' command
|
|
if (Helpers::toLower(cmd) == F_(commands)) {
|
|
output[F_(info)] = Helpers::translated_word(FL_(info_cmd));
|
|
output[F_(commands)] = Helpers::translated_word(FL_(commands_cmd));
|
|
|
|
for (const ScheduleItem & scheduleItem : *scheduleItems_) {
|
|
if (!scheduleItem.name.empty()) {
|
|
output[scheduleItem.name] = "activate schedule";
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
if (scheduleItems_->size() == 0) {
|
|
return true;
|
|
}
|
|
|
|
if (strlen(cmd) == 0 || Helpers::toLower(cmd) == F_(values) || Helpers::toLower(cmd) == F_(info)) {
|
|
// list all names
|
|
for (const ScheduleItem & scheduleItem : *scheduleItems_) {
|
|
if (!scheduleItem.name.empty()) {
|
|
if (EMSESP::system_.bool_format() == BOOL_FORMAT_TRUEFALSE) {
|
|
output[scheduleItem.name] = scheduleItem.active;
|
|
} else if (EMSESP::system_.bool_format() == BOOL_FORMAT_10) {
|
|
output[scheduleItem.name] = scheduleItem.active ? 1 : 0;
|
|
} else {
|
|
char result[12];
|
|
output[scheduleItem.name] = Helpers::render_boolean(result, scheduleItem.active);
|
|
}
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
char command_s[COMMAND_MAX_LENGTH];
|
|
strlcpy(command_s, Helpers::toLower(cmd).c_str(), sizeof(command_s));
|
|
char * attribute_s = nullptr;
|
|
|
|
// check specific attribute to fetch instead of the complete record
|
|
char * breakp = strchr(command_s, '/');
|
|
if (breakp) {
|
|
*breakp = '\0';
|
|
attribute_s = breakp + 1;
|
|
}
|
|
|
|
for (const ScheduleItem & scheduleItem : *scheduleItems_) {
|
|
if (Helpers::toLower(scheduleItem.name) == command_s) {
|
|
output["name"] = scheduleItem.name;
|
|
output["type"] = "boolean";
|
|
if (EMSESP::system_.bool_format() == BOOL_FORMAT_TRUEFALSE) {
|
|
output["value"] = scheduleItem.active;
|
|
} else if (EMSESP::system_.bool_format() == BOOL_FORMAT_10) {
|
|
output["value"] = scheduleItem.active ? 1 : 0;
|
|
} else {
|
|
char result[12];
|
|
output["value"] = Helpers::render_boolean(result, scheduleItem.active);
|
|
}
|
|
output["command"] = scheduleItem.cmd;
|
|
output["cmd_data"] = scheduleItem.value;
|
|
output["readable"] = true;
|
|
output["writeable"] = true;
|
|
output["visible"] = true;
|
|
}
|
|
}
|
|
|
|
if (attribute_s && output.containsKey(attribute_s)) {
|
|
std::string data = output[attribute_s].as<std::string>();
|
|
output.clear();
|
|
output["api_data"] = data; // always as a string
|
|
return true;
|
|
}
|
|
|
|
if (output.size()) {
|
|
return true;
|
|
}
|
|
|
|
return EMSESP::return_not_found(output, cmd, F_(scheduler)); // not found
|
|
}
|
|
|
|
// publish single value
|
|
void WebSchedulerService::publish_single(const char * name, const bool state) {
|
|
if (!Mqtt::enabled() || !Mqtt::publish_single() || name == nullptr || name[0] == '\0') {
|
|
return;
|
|
}
|
|
|
|
char topic[Mqtt::MQTT_TOPIC_MAX_SIZE];
|
|
if (Mqtt::publish_single2cmd()) {
|
|
snprintf(topic, sizeof(topic), "%s/%s", F_(scheduler), name);
|
|
} else {
|
|
snprintf(topic, sizeof(topic), "%s%s/%s", F_(scheduler), "_data", name);
|
|
}
|
|
|
|
char payload[12];
|
|
Mqtt::queue_publish(topic, Helpers::render_boolean(payload, state));
|
|
}
|
|
|
|
// publish to Mqtt
|
|
void WebSchedulerService::publish(const bool force) {
|
|
if (force) {
|
|
ha_registered_ = false;
|
|
}
|
|
|
|
if (!Mqtt::enabled()) {
|
|
return;
|
|
}
|
|
|
|
if (scheduleItems_->size() == 0) {
|
|
return;
|
|
}
|
|
|
|
if (Mqtt::publish_single() && force) {
|
|
for (const ScheduleItem & scheduleItem : *scheduleItems_) {
|
|
publish_single(scheduleItem.name.c_str(), scheduleItem.active);
|
|
}
|
|
}
|
|
|
|
JsonDocument doc;
|
|
bool ha_created = ha_registered_;
|
|
for (const ScheduleItem & scheduleItem : *scheduleItems_) {
|
|
if (!scheduleItem.name.empty() && !doc.containsKey(scheduleItem.name)) {
|
|
if (EMSESP::system_.bool_format() == BOOL_FORMAT_TRUEFALSE) {
|
|
doc[scheduleItem.name] = scheduleItem.active;
|
|
} else if (EMSESP::system_.bool_format() == BOOL_FORMAT_10) {
|
|
doc[scheduleItem.name] = scheduleItem.active ? 1 : 0;
|
|
} else {
|
|
char result[12];
|
|
doc[scheduleItem.name] = Helpers::render_boolean(result, scheduleItem.active);
|
|
}
|
|
|
|
// create HA config
|
|
if (Mqtt::ha_enabled() && !ha_registered_) {
|
|
JsonDocument config;
|
|
char stat_t[50];
|
|
snprintf(stat_t, sizeof(stat_t), "%s/%s_data", Mqtt::base().c_str(), F_(scheduler));
|
|
config["stat_t"] = stat_t;
|
|
|
|
char val_obj[50];
|
|
char val_cond[65];
|
|
snprintf(val_obj, sizeof(val_obj), "value_json['%s']", scheduleItem.name.c_str());
|
|
snprintf(val_cond, sizeof(val_cond), "%s is defined", val_obj);
|
|
config["val_tpl"] = (std::string) "{{" + val_obj + " if " + val_cond + "}}";
|
|
|
|
char uniq_s[70];
|
|
snprintf(uniq_s, sizeof(uniq_s), "%s_%s", F_(scheduler), scheduleItem.name.c_str());
|
|
|
|
config["obj_id"] = uniq_s;
|
|
config["uniq_id"] = uniq_s; // same as object_id
|
|
config["name"] = scheduleItem.name.c_str();
|
|
|
|
char topic[Mqtt::MQTT_TOPIC_MAX_SIZE];
|
|
char command_topic[Mqtt::MQTT_TOPIC_MAX_SIZE];
|
|
|
|
snprintf(topic, sizeof(topic), "switch/%s/%s_%s/config", Mqtt::basename().c_str(), F_(scheduler), scheduleItem.name.c_str());
|
|
snprintf(command_topic, sizeof(command_topic), "%s/%s/%s", Mqtt::base().c_str(), F_(scheduler), scheduleItem.name.c_str());
|
|
config["cmd_t"] = command_topic;
|
|
|
|
if (EMSESP::system_.bool_format() == BOOL_FORMAT_TRUEFALSE) {
|
|
config["pl_on"] = true;
|
|
config["pl_off"] = false;
|
|
} else if (EMSESP::system_.bool_format() == BOOL_FORMAT_10) {
|
|
config["pl_on"] = 1;
|
|
config["pl_off"] = 0;
|
|
} else {
|
|
char result[12];
|
|
config["pl_on"] = Helpers::render_boolean(result, true);
|
|
config["pl_off"] = Helpers::render_boolean(result, false);
|
|
}
|
|
|
|
Mqtt::add_ha_sections_to_doc(F_(scheduler), stat_t, config, !ha_created, val_cond);
|
|
|
|
ha_created |= Mqtt::queue_ha(topic, config.as<JsonObject>());
|
|
}
|
|
}
|
|
}
|
|
|
|
ha_registered_ = ha_created;
|
|
|
|
if (!doc.isNull()) {
|
|
char topic[Mqtt::MQTT_TOPIC_MAX_SIZE];
|
|
snprintf(topic, sizeof(topic), "%s_data", F_(scheduler));
|
|
Mqtt::queue_publish(topic, doc.as<JsonObject>());
|
|
}
|
|
}
|
|
|
|
bool WebSchedulerService::has_commands() {
|
|
if (scheduleItems_->size() == 0) {
|
|
return false;
|
|
}
|
|
|
|
for (const ScheduleItem & scheduleItem : *scheduleItems_) {
|
|
if (!scheduleItem.name.empty()) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
// execute scheduled command
|
|
bool WebSchedulerService::command(const char * name, const std::string & command, const std::string & data) {
|
|
std::string cmd = Helpers::toLower(command);
|
|
|
|
// check http commands. e.g.
|
|
// tasmota(get): http://<tasmotsIP>/cm?cmnd=power%20ON
|
|
// shelly(get): http://<shellyIP>/relais/0?turn=on
|
|
// parse json
|
|
JsonDocument doc;
|
|
if (DeserializationError::Ok == deserializeJson(doc, cmd)) {
|
|
HTTPClient http;
|
|
int httpResult = 0;
|
|
String url = doc["url"];
|
|
if (http.begin(url)) {
|
|
// It's an HTTP call
|
|
|
|
// add any given headers
|
|
for (JsonPair p : doc["header"].as<JsonObject>()) {
|
|
http.addHeader(p.key().c_str(), p.value().as<String>().c_str());
|
|
}
|
|
String value = doc["value"] | data.c_str(); // extract value if its in the command, or take the data
|
|
String method = doc["method"] | "GET"; // default GET
|
|
|
|
// if there is data, force a POST
|
|
if (value.length() || method == "post") { // we have all lowercase
|
|
if (value.startsWith("{")) {
|
|
http.addHeader("Content-Type", "application/json"); // auto-set to JSON
|
|
}
|
|
httpResult = http.POST(value);
|
|
} else {
|
|
httpResult = http.GET(); // normal GET
|
|
}
|
|
|
|
http.end();
|
|
|
|
// check HTTP return code
|
|
if (httpResult != 200) {
|
|
char error[100];
|
|
snprintf(error, sizeof(error), "Schedule %s: URL command failed with http code %d", name, httpResult);
|
|
emsesp::EMSESP::logger().warning(error);
|
|
return false;
|
|
}
|
|
#if defined(EMSESP_DEBUG)
|
|
char msg[100];
|
|
snprintf(msg, sizeof(msg), "Schedule %s: URL command successful with http code %d", name, httpResult);
|
|
emsesp::EMSESP::logger().debug(msg);
|
|
#endif
|
|
return true;
|
|
}
|
|
// we can add other json tests here
|
|
}
|
|
|
|
doc.clear();
|
|
JsonObject input = doc.to<JsonObject>();
|
|
if (!data.empty()) { // empty data queries a value
|
|
input["data"] = data;
|
|
}
|
|
|
|
JsonDocument doc_output; // only for commands without output
|
|
JsonObject output = doc_output.to<JsonObject>();
|
|
|
|
// prefix "api/" to command string
|
|
char command_str[COMMAND_MAX_LENGTH];
|
|
snprintf(command_str, sizeof(command_str), "/api/%s", cmd.c_str());
|
|
|
|
uint8_t return_code = Command::process(command_str, true, input, output); // admin set
|
|
|
|
if (return_code == CommandRet::OK) {
|
|
#if defined(EMSESP_DEBUG)
|
|
EMSESP::logger().debug("Schedule command '%s' with data '%s' was successful", cmd.c_str(), data.c_str());
|
|
#endif
|
|
if (data.empty() && output.size()) {
|
|
Mqtt::queue_publish("response", output);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
char error[100];
|
|
if (output.size()) {
|
|
// check for empty name
|
|
snprintf(error, sizeof(error), "Schedule %s: %s", name ? name : "", (const char *)output["message"]); // use error message if we have it
|
|
} else {
|
|
snprintf(error, sizeof(error), "Schedule %s: command %s failed with error %s", name, cmd.c_str(), Command::return_code_string(return_code));
|
|
}
|
|
|
|
emsesp::EMSESP::logger().warning(error);
|
|
return false;
|
|
}
|
|
|
|
#include "shuntingYard.hpp"
|
|
|
|
bool WebSchedulerService::onChange(const char * cmd) {
|
|
for (ScheduleItem & scheduleItem : *scheduleItems_) {
|
|
if (scheduleItem.active && scheduleItem.flags == SCHEDULEFLAG_SCHEDULE_ONCHANGE
|
|
&& Helpers::toLower(scheduleItem.time).find(Helpers::toLower(cmd)) != std::string::npos) {
|
|
cmd_changed_.push_back(&scheduleItem);
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void WebSchedulerService::condition() {
|
|
for (ScheduleItem & scheduleItem : *scheduleItems_) {
|
|
if (scheduleItem.active && scheduleItem.flags == SCHEDULEFLAG_SCHEDULE_CONDITION) {
|
|
auto match = compute(scheduleItem.time);
|
|
#ifdef EMESESP_DEBUG
|
|
// emsesp::EMSESP::logger().debug("condition match: %s", match.c_str());
|
|
#endif
|
|
if (match.length() == 1 && match[0] == '1' && scheduleItem.retry_cnt == 0xFF) {
|
|
scheduleItem.retry_cnt = command(scheduleItem.name.c_str(), scheduleItem.cmd, compute(scheduleItem.value)) ? 1 : 0xFF;
|
|
} else if (match.length() == 1 && match[0] == '0' && scheduleItem.retry_cnt == 1) {
|
|
scheduleItem.retry_cnt = 0xFF;
|
|
} else if (match.length() != 1) { // the match is not boolean
|
|
emsesp::EMSESP::logger().debug("condition result: %s", match.c_str());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// process any scheduled jobs
|
|
void WebSchedulerService::loop() {
|
|
// initialize static value on startup
|
|
static int8_t last_tm_min = -2; // invalid value also used for startup commands
|
|
static uint32_t last_uptime_min = 0;
|
|
static uint32_t last_uptime_sec = 0;
|
|
|
|
// get list of scheduler events and exit if it's empty
|
|
if (scheduleItems_->size() == 0) {
|
|
return;
|
|
}
|
|
|
|
// check if we have onChange events
|
|
while (!cmd_changed_.empty()) {
|
|
ScheduleItem si = *cmd_changed_.front();
|
|
command(si.name.c_str(), si.cmd, compute(si.value));
|
|
cmd_changed_.pop_front();
|
|
}
|
|
|
|
// check conditions every 10 seconds
|
|
uint32_t uptime_sec = uuid::get_uptime_sec() / 10;
|
|
if (last_uptime_sec != uptime_sec) {
|
|
condition();
|
|
last_uptime_sec = uptime_sec;
|
|
}
|
|
|
|
// check startup commands
|
|
if (last_tm_min == -2) {
|
|
for (ScheduleItem & scheduleItem : *scheduleItems_) {
|
|
if (scheduleItem.active && scheduleItem.flags == SCHEDULEFLAG_SCHEDULE_TIMER && scheduleItem.elapsed_min == 0) {
|
|
scheduleItem.retry_cnt = command(scheduleItem.name.c_str(), scheduleItem.cmd, compute(scheduleItem.value)) ? 0xFF : 0;
|
|
}
|
|
}
|
|
last_tm_min = -1; // startup done, now use for RTC
|
|
}
|
|
|
|
// check timer every minute, sync to EMS-ESP clock
|
|
uint32_t uptime_min = uuid::get_uptime_sec() / 60;
|
|
if (last_uptime_min != uptime_min) {
|
|
for (ScheduleItem & scheduleItem : *scheduleItems_) {
|
|
// retry startup commands not yet executed
|
|
if (scheduleItem.active && scheduleItem.flags == SCHEDULEFLAG_SCHEDULE_TIMER && scheduleItem.elapsed_min == 0
|
|
&& scheduleItem.retry_cnt < MAX_STARTUP_RETRIES) {
|
|
scheduleItem.retry_cnt = command(scheduleItem.name.c_str(), scheduleItem.cmd, scheduleItem.value) ? 0xFF : scheduleItem.retry_cnt + 1;
|
|
}
|
|
// scheduled timer commands
|
|
if (scheduleItem.active && scheduleItem.flags == SCHEDULEFLAG_SCHEDULE_TIMER && scheduleItem.elapsed_min > 0
|
|
&& (uptime_min % scheduleItem.elapsed_min == 0)) {
|
|
command(scheduleItem.name.c_str(), scheduleItem.cmd, compute(scheduleItem.value));
|
|
}
|
|
}
|
|
last_uptime_min = uptime_min;
|
|
}
|
|
|
|
// check calender, sync to RTC, only execute if year is valid
|
|
time_t now = time(nullptr);
|
|
tm * tm = localtime(&now);
|
|
if (tm->tm_min != last_tm_min && tm->tm_year > 120) {
|
|
// find the real dow and minute from RTC
|
|
uint8_t real_dow = 1 << tm->tm_wday; // 1 is Sunday
|
|
uint16_t real_min = tm->tm_hour * 60 + tm->tm_min;
|
|
|
|
for (const ScheduleItem & scheduleItem : *scheduleItems_) {
|
|
uint8_t dow = scheduleItem.flags & SCHEDULEFLAG_SCHEDULE_TIMER ? 0 : scheduleItem.flags;
|
|
if (scheduleItem.active && (real_dow & dow) && real_min == scheduleItem.elapsed_min) {
|
|
command(scheduleItem.name.c_str(), scheduleItem.cmd, compute(scheduleItem.value));
|
|
}
|
|
}
|
|
last_tm_min = tm->tm_min;
|
|
}
|
|
}
|
|
|
|
void WebSchedulerService::scheduler_task(void * pvParameters) {
|
|
while (1) {
|
|
delay(100); // no need to hurry
|
|
if (!EMSESP::system_.upload_status()) {
|
|
EMSESP::webSchedulerService.loop();
|
|
}
|
|
}
|
|
#ifndef EMSESP_STANDALONE
|
|
vTaskDelete(NULL);
|
|
#endif
|
|
}
|
|
|
|
// hard coded tests
|
|
#if defined(EMSESP_TEST)
|
|
void WebSchedulerService::test() {
|
|
static bool already_added = false;
|
|
if (!already_added) {
|
|
update([&](WebScheduler & webScheduler) {
|
|
// webScheduler.scheduleItems.clear();
|
|
// test 1
|
|
auto si = ScheduleItem();
|
|
si.active = true;
|
|
si.flags = 1;
|
|
si.time = "12:00";
|
|
si.cmd = "system/fetch";
|
|
si.value = "10";
|
|
si.name = "test_scheduler";
|
|
si.elapsed_min = 0;
|
|
si.retry_cnt = 0xFF; // no startup retries
|
|
|
|
webScheduler.scheduleItems.push_back(si);
|
|
already_added = true;
|
|
|
|
return StateUpdateResult::CHANGED; // persist the changes
|
|
});
|
|
}
|
|
|
|
// test shunting yard
|
|
std::string test_cmd = "system/message";
|
|
std::string test_value;
|
|
|
|
// should output 'locale is en'
|
|
test_value = "\"locale is \"system/settings/locale";
|
|
command("test", test_cmd.c_str(), compute(test_value).c_str());
|
|
|
|
// test with negative value
|
|
// should output 'rssi is -23'
|
|
test_value = "\"rssi is \"0+system/network/rssi";
|
|
command("test1", test_cmd.c_str(), compute(test_value).c_str());
|
|
|
|
// should output 'rssi is -23 dbm'
|
|
test_value = "\"rssi is \"(system/network/rssi)\" dBm\"";
|
|
command("test2", test_cmd.c_str(), compute(test_value).c_str());
|
|
|
|
test_value = "(custom/seltemp/value)";
|
|
command("test3", test_cmd.c_str(), compute(test_value).c_str());
|
|
|
|
test_value = "\"seltemp=\"(custom/seltemp/value)";
|
|
command("test4", test_cmd.c_str(), compute(test_value).c_str());
|
|
|
|
test_value = "(custom/seltemp)";
|
|
command("test5", test_cmd.c_str(), compute(test_value).c_str());
|
|
|
|
// this will fail unless test("boiler") is loaded
|
|
test_value = "(boiler/outdoortemp)";
|
|
command("test6", test_cmd.c_str(), compute(test_value).c_str());
|
|
|
|
test_value = "boiler/flowtempoffset";
|
|
command("test7", test_cmd.c_str(), compute(test_value).c_str());
|
|
|
|
test_value = "(boiler/flowtempoffset/value)";
|
|
command("test8", test_cmd.c_str(), compute(test_value).c_str());
|
|
|
|
test_value = "(boiler/storagetemp1/value)";
|
|
command("test9", test_cmd.c_str(), compute(test_value).c_str());
|
|
|
|
// (14 - 40) * 2.8 + 5 = -67.8
|
|
test_value = "(custom/seltemp - boiler/flowtempoffset) * 2.8 + 5";
|
|
command("test10", test_cmd.c_str(), compute(test_value).c_str());
|
|
|
|
test_cmd = "{\"method\":\"POST\",\"url\":\"http://192.168.1.42:8123/api/services/script/test_notify2\", \"header\":{\"authorization\":\"Bearer "
|
|
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJhMmNlYWI5NDgzMmI0ODE2YWQ2NzU4MjkzZDE2YWMxZSIsImlhdCI6MTcyMTM5MTI0NCwiZXhwIjoyMDM2NzUxMjQ0fQ."
|
|
"S5sago1tEI6lNhrDCO0dM_WsVQHkD_laAjcks8tWAqo\"}}";
|
|
command("test11", test_cmd.c_str(), "");
|
|
}
|
|
#endif
|
|
|
|
} // namespace emsesp
|