core-legacy/controllers/api_v1_controllers_relays.cc

119 lines
3.6 KiB
C++
Raw Normal View History

#include <netdb.h>
#include <models/relay_dbo.h>
2019-07-20 22:29:05 +00:00
#include <helpers.h>
2019-07-22 20:06:13 +00:00
#include <models/controller_dbo.h>
2019-07-29 20:02:38 +00:00
#include <models/schedule_dbo.h>
#include <config.h>
2019-07-22 20:06:13 +00:00
#include "api_v1_controllers.h"
using namespace api::v1;
void
2019-07-22 20:06:13 +00:00
controllers::get_relays_all(const HttpRequestPtr &req, std::function<void(const HttpResponsePtr &)> &&callback,
const std::string& controller_id)
{
2019-07-22 20:06:13 +00:00
relay_dbo **all_controller_relays = relay_dbo::get_by_simple("controller_id", (void *) controller_id.c_str(), (intptr_t) sqlite3_bind_text);
Json::Value all_relays_json(Json::arrayValue);
2019-07-22 20:06:13 +00:00
for(int i = 0; all_controller_relays[i] != nullptr; i++)
{
2019-07-22 20:06:13 +00:00
all_relays_json.append(all_controller_relays[i]->to_json());
}
auto resp = HttpResponse::newHttpJsonResponse(all_relays_json);
callback(resp);
2019-07-22 20:06:13 +00:00
relay_dbo::free_list(all_controller_relays);
}
void
2019-07-22 20:06:13 +00:00
controllers::get_relays_one_by_id_and_num(const HttpRequestPtr &req,
std::function<void(const HttpResponsePtr &)> &&callback, const std::string& controller_id,
int relay_num)
{
2019-07-22 20:06:13 +00:00
relay_dbo *relay = relay_dbo::get_relay_for_controller(controller_id.c_str(), relay_num);
2019-07-21 22:00:07 +00:00
if(relay)
{
2019-07-21 22:00:07 +00:00
auto resp = HttpResponse::newHttpJsonResponse(relay->to_json());
callback(resp);
2019-07-21 22:00:07 +00:00
delete relay;
}
else
{
auto resp = HttpResponse::newHttpResponse();
resp->setStatusCode(k404NotFound);
callback(resp);
}
}
void
2019-07-22 20:06:13 +00:00
controllers::put_relays_one_by_id_and_num(const HttpRequestPtr &req,
std::function<void(const HttpResponsePtr &)> &&callback, const std::string& controller_id,
int relay_num)
{
2019-07-22 20:06:13 +00:00
if(!relay_dbo::valid_num_for_controller(controller_id.c_str(), relay_num))
2019-07-21 22:00:07 +00:00
{
auto resp = HttpResponse::newHttpResponse();
resp->setStatusCode(k400BadRequest);
callback(resp);
return;
}
2019-07-22 20:06:13 +00:00
relay_dbo *relay = relay_dbo::get_relay_for_controller(controller_id.c_str(), relay_num);
2019-07-21 22:00:07 +00:00
Json::Value body = *req->getJsonObject();
bool db_action_result;
if(relay)
{
2019-07-30 11:22:19 +00:00
strncpy(relay->name, body["name"].asCString(), 127);
strncpy(relay->active_schedule_id, body["active_schedule"].asCString(), 32);
2019-07-21 22:00:07 +00:00
db_action_result = relay->update();
}
else
{
relay = new relay_dbo();
relay->number = relay_num;
2019-07-30 11:22:19 +00:00
strncpy(relay->name, body["name"].asCString(), 127);
strncpy(relay->active_schedule_id, body["active_schedule"].asCString(), 32);
strncpy(relay->controller_id, controller_id.c_str(), 32);
2019-07-21 22:00:07 +00:00
2019-09-08 17:34:37 +00:00
relay->reload_active_schedule();
2019-07-21 22:00:07 +00:00
db_action_result = relay->insert();
}
if(!db_action_result)
{
auto resp = HttpResponse::newHttpResponse();
resp->setStatusCode(k500InternalServerError);
callback(resp);
}
else
{
2019-07-29 20:02:38 +00:00
auto schedules = schedule_dbo::get_by_simple("id", body["active_schedule"].asCString(), (intptr_t)&sqlite3_bind_text);
auto controllers = controller_dbo::get_by_simple("id", controller_id.c_str(), (intptr_t)&sqlite3_bind_text);
Json::Value payload;
payload["target"] = relay_num;
payload["schedule"] = schedules[0]->to_json();
Json::StreamWriterBuilder json_writer;
controllers[0]->command(config::command_code_set_schedule, Json::writeString(json_writer, payload).c_str());
2019-07-21 22:00:07 +00:00
auto resp = HttpResponse::newHttpJsonResponse(relay->to_json());
callback(resp);
2019-07-29 20:02:38 +00:00
schedule_dbo::free_list(schedules);
controller_dbo::free_list(controllers);
2019-07-21 22:00:07 +00:00
}
2019-07-21 22:00:07 +00:00
delete relay;
}