Add actions to response
Signed-off-by: Tiago Garcia <tiago.rgarcia@ua.pt>
This commit is contained in:
parent
fa79e47975
commit
10e5243cc4
|
@ -121,7 +121,11 @@ crow::response update_files(const nlohmann::json& config_update_files, const nlo
|
||||||
{"status", 200},
|
{"status", 200},
|
||||||
{"message", "OK"},
|
{"message", "OK"},
|
||||||
{"file_count", 0},
|
{"file_count", 0},
|
||||||
{"updated-files", nlohmann::json::array()}
|
{"updated-files", nlohmann::json::array()},
|
||||||
|
{"post-update", {
|
||||||
|
{"successful", nlohmann::json::array()},
|
||||||
|
{"failed", nlohmann::json::array()}
|
||||||
|
}}
|
||||||
};
|
};
|
||||||
for (auto &file : modified_files) {
|
for (auto &file : modified_files) {
|
||||||
std::string remote_path = file[0];
|
std::string remote_path = file[0];
|
||||||
|
@ -151,8 +155,10 @@ crow::response update_files(const nlohmann::json& config_update_files, const nlo
|
||||||
int return_code = std::system(action.c_str());
|
int return_code = std::system(action.c_str());
|
||||||
if (return_code == 0) {
|
if (return_code == 0) {
|
||||||
Logger::success("[/update-files] Post-update action " + action + " ran successfully");
|
Logger::success("[/update-files] Post-update action " + action + " ran successfully");
|
||||||
|
response["post-update"]["successful"].push_back(action);
|
||||||
} else {
|
} else {
|
||||||
Logger::error("[/update-files] Post-update action " + action + " failed with return code " + std::to_string(return_code));
|
Logger::error("[/update-files] Post-update action " + action + " failed with return code " + std::to_string(return_code));
|
||||||
|
response["post-update"]["failed"].push_back(action);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue