core-legacy/endpoints/api_v1_controllers_STR.c

195 lines
5.6 KiB
C
Raw Normal View History

2020-05-31 22:45:08 +00:00
#include <arpa/inet.h>
#include <cJSON.h>
2020-05-20 23:33:18 +00:00
#include <macros.h>
2020-05-06 23:38:13 +00:00
#include <command.h>
#include <constants.h>
#include <endpoints/api_v1_controllers.h>
#include <logger.h>
#include <models/controller.h>
#include <models/tag.h>
void
2020-05-31 00:07:25 +00:00
api_v1_controllers_STR_GET(struct mg_connection *nc, struct http_message *hm, endpoint_args_t *args, endpoint_response_t *response)
{
(void)hm;
2020-05-31 00:07:25 +00:00
(void)nc;
uuid_t target_uid;
if(uuid_parse(args[0].value.v_str, target_uid))
{
2020-05-20 23:33:18 +00:00
LOG_DEBUG("failed to unparse uid\n");
static const char content[] = "given id was invalid";
2020-05-30 22:23:57 +00:00
endpoint_response_text(response, 400, content, STRLEN(content));
return;
}
controller_t* controller = controller_get_by_uid(target_uid);
if(!controller)
{
2020-05-20 23:33:18 +00:00
LOG_DEBUG("could not find a controller for uid '%s'\n", args[0].value.v_str);
static const char content[] = "no controller for id found";
2020-05-30 22:23:57 +00:00
endpoint_response_text(response, 404, content, STRLEN(content));
return;
}
2020-05-20 23:33:18 +00:00
cJSON *json = controller_to_json(controller);
2020-05-30 22:23:57 +00:00
endpoint_response_json(response, 200, json);
cJSON_Delete(json);
controller_free(controller);
}
void
2020-05-31 00:07:25 +00:00
api_v1_controllers_STR_PUT(struct mg_connection *nc, struct http_message *hm, endpoint_args_t *args, endpoint_response_t *response)
{
(void)hm;
2020-05-31 00:07:25 +00:00
(void)nc;
uuid_t target_uid;
if(uuid_parse(args[0].value.v_str, target_uid))
{
2020-05-20 23:33:18 +00:00
LOG_DEBUG("failed to unparse uid\n");
static const char content[] = "given id was invalid";
2020-05-30 22:23:57 +00:00
endpoint_response_text(response, 400, content, STRLEN(content));
return;
}
controller_t* controller = controller_get_by_uid(target_uid);
if(!controller)
{
2020-05-20 23:33:18 +00:00
LOG_DEBUG("could not find a controller for uid '%s'\n", args[0].value.v_str);
static const char content[] = "no controller for id found";
2020-05-30 22:23:57 +00:00
endpoint_response_text(response, 404, content, STRLEN(content));
return;
}
cJSON *json = cJSON_ParseWithLength(hm->body.p, hm->body.len);
if(json == NULL)
{
2020-05-20 23:33:18 +00:00
static const char content[] = "no valid json was supplied";
2020-05-30 22:23:57 +00:00
endpoint_response_text(response, 400, content, STRLEN(content));
2020-05-31 22:45:08 +00:00
controller_free(controller);
return;
}
cJSON *json_name = cJSON_GetObjectItemCaseSensitive(json, "name");
2020-05-31 22:45:08 +00:00
if(json_name)
{
2020-05-31 22:45:08 +00:00
if(cJSON_IsString(json_name) && json_name->valuestring)
{
strncpy(controller->name, json_name->valuestring, MAX_NAME_LENGTH);
controller->name[MAX_NAME_LENGTH] = '\0';
}
else
{
static const char content[] = "the given name is no valid string";
endpoint_response_text(response, 400, content, STRLEN(content));
cJSON_Delete(json);
controller_free(controller);
return;
}
}
cJSON *json_ip = cJSON_GetObjectItemCaseSensitive(json, "ip");
2020-05-31 22:45:08 +00:00
if(json_ip)
{
2020-05-31 22:45:08 +00:00
if(cJSON_IsString(json_ip) && json_ip->valuestring)
{
unsigned char buf[sizeof(struct in_addr)];
if(inet_pton(AF_INET, json_ip->valuestring, buf))
{
strncpy(controller->ip, json_ip->valuestring, IP_LENGTH);
controller->ip[IP_LENGTH] = '\0';
}
else
{
static const char content[] = "the given ip address is no valid IPv4 address";
endpoint_response_text(response, 400, content, STRLEN(content));
cJSON_Delete(json);
controller_free(controller);
return;
}
}
else
{
static const char content[] = "the given ip address is no valid string";
endpoint_response_text(response, 400, content, STRLEN(content));
cJSON_Delete(json);
controller_free(controller);
return;
}
}
if(controller_save(controller))
{
LOG_ERROR("failed to save controller\n");
2020-05-31 22:45:08 +00:00
controller_free(controller);
cJSON_Delete(json);
2020-05-20 23:33:18 +00:00
static const char content[] = "failed to save controller to database";
2020-05-31 22:45:08 +00:00
endpoint_response_text(response, 500, content, STRLEN(content));
return;
}
cJSON_Delete(json);
json = controller_to_json(controller);
2020-05-20 23:33:18 +00:00
command_set_controller_name(controller);
2020-05-06 23:38:13 +00:00
2020-05-31 22:45:08 +00:00
endpoint_response_json(response, 200, json);
cJSON_Delete(json);
controller_free(controller);
}
void
2020-05-31 00:07:25 +00:00
api_v1_controllers_STR_DELETE(struct mg_connection *nc, struct http_message *hm, endpoint_args_t *args, endpoint_response_t *response)
{
(void)hm;
2020-05-31 00:07:25 +00:00
(void)nc;
const char *target_uid_str = args[0].value.v_str;
uuid_t target_uid;
if(uuid_parse(target_uid_str, target_uid))
{
2020-05-20 23:33:18 +00:00
LOG_DEBUG("failed to unparse uid\n");
static const char content[] = "given id was invalid";
2020-05-31 22:45:08 +00:00
endpoint_response_text(response, 400, content, STRLEN(content));
return;
}
controller_t* controller = controller_get_by_uid(target_uid);
if(!controller)
{
2020-05-20 23:33:18 +00:00
LOG_DEBUG("could not find a controller for uid '%s'\n", args[0].value.v_str);
static const char content[] = "no controller for id found";
2020-05-31 22:45:08 +00:00
endpoint_response_text(response, 404, content, STRLEN(content));
return;
}
if(controller_remove(controller))
{
2020-05-20 23:33:18 +00:00
LOG_ERROR("failed to remove controller from database\n");
static const char content[] = "failed to remove controller from database";
2020-05-31 22:45:08 +00:00
endpoint_response_text(response, 500, content, STRLEN(content));
}
else
{
2020-05-31 22:45:08 +00:00
endpoint_response_text(response, 200, "", 0);
}
controller_free(controller);
return;
}