mirror of https://git.48k.eu/ogserver
#915 add POST software command to REST API in ogAdmServer
This patch implements the command "software" that fetches the software configuration from the clients. Request: POST /software {"clients" : [ "192.168.2.1", "192.168.2.2" ]} Reply: 200 OK This allows to refresh the software inventory from clients.master
parent
6b30dbc65c
commit
b4a9fddf30
|
@ -3895,6 +3895,27 @@ static int og_cmd_hardware(json_t *element, struct og_msg_params *params)
|
|||
CLIENTE_OCUPADO);
|
||||
}
|
||||
|
||||
static int og_cmd_software(json_t *element, struct og_msg_params *params)
|
||||
{
|
||||
const char *key;
|
||||
json_t *value;
|
||||
int err = 0;
|
||||
|
||||
if (json_typeof(element) != JSON_OBJECT)
|
||||
return -1;
|
||||
|
||||
json_object_foreach(element, key, value) {
|
||||
if (!strcmp(key, "clients"))
|
||||
err = og_json_parse_clients(value, params);
|
||||
|
||||
if (err < 0)
|
||||
break;
|
||||
}
|
||||
|
||||
return og_cmd_legacy_send(params, "InventarioSoftware",
|
||||
CLIENTE_OCUPADO);
|
||||
}
|
||||
|
||||
static int og_client_not_found(struct og_client *cli)
|
||||
{
|
||||
char buf[] = "HTTP/1.1 404 Not Found\r\nContent-Length: 0\r\n\r\n";
|
||||
|
@ -4064,6 +4085,15 @@ static int og_client_state_process_payload_rest(struct og_client *cli)
|
|||
return og_client_not_found(cli);
|
||||
}
|
||||
err = og_cmd_hardware(root, ¶ms);
|
||||
} else if (!strncmp(cmd, "software", strlen("software"))) {
|
||||
if (method != OG_METHOD_POST)
|
||||
return -1;
|
||||
|
||||
if (!root) {
|
||||
syslog(LOG_ERR, "command software with no payload\n");
|
||||
return og_client_not_found(cli);
|
||||
}
|
||||
err = og_cmd_software(root, ¶ms);
|
||||
} else {
|
||||
syslog(LOG_ERR, "unknown command %s\n", cmd);
|
||||
err = og_client_not_found(cli);
|
||||
|
|
|
@ -11,3 +11,4 @@ curl -X POST -H "Authorization: $API_KEY" http://127.0.0.1:8888/reboot -d @reboo
|
|||
curl -X POST -H "Authorization: $API_KEY" http://127.0.0.1:8888/stop -d @stop.json
|
||||
curl -X POST -H "Authorization: $API_KEY" http://127.0.0.1:8888/refresh -d @refresh.json
|
||||
curl -X POST -H "Authorization: $API_KEY" http://127.0.0.1:8888/hardware -d @post_clients.json
|
||||
curl -X POST -H "Authorization: $API_KEY" http://127.0.0.1:8888/software -d @post_clients.json
|
||||
|
|
Loading…
Reference in New Issue