Compare commits

...

2 Commits

Author SHA1 Message Date
Tiago Garcia 42295e5550
CMake workflow update
Signed-off-by: Tiago Garcia <tiago.rgarcia@ua.pt>
2024-07-18 19:13:15 +01:00
Tiago Garcia d514ea5aab
Add route "/" for ping
Signed-off-by: Tiago Garcia <tiago.rgarcia@ua.pt>
2024-07-18 19:12:37 +01:00
5 changed files with 24 additions and 13 deletions

22
.gitignore vendored
View File

@ -1,15 +1,15 @@
# CMake build directories
/build*/
/CMakeFiles/
/CMakeCache.txt
/cmake_install.cmake
/*.cmake
/*.cbp
/*.layout
/*.stackdump
/CPackConfig.cmake
/Makefile
/CTestTestfile.cmake
CMakeFiles/
CMakeCache.txt
cmake_install.cmake
*.cmake
*.cbp
*.layout
*.stackdump
CPackConfig.cmake
Makefile
CTestTestfile.cmake
install_manifest.txt
# Compiled binaries
/bin/

View File

@ -49,7 +49,7 @@ set_target_properties(${EXECUTABLE_NAME} PROPERTIES LINK_FLAGS
set(SERVICE_EXECUTABLE "/services/gh-wh-handler/${EXECUTABLE_NAME}")
set(SERVICE_CONFIG "/services/gh-wh-handler/config.json")
configure_file(
"${CMAKE_CURRENT_SOURCE_DIR}/gh-wh-handler.service.in"
"${CMAKE_CURRENT_BINARY_DIR}/gh-wh-handler.service.in"
"${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/gh-wh-handler.service"
@ONLY)
install(CODE "file(MAKE_DIRECTORY /services/gh-wh-handler)")
@ -65,7 +65,7 @@ install(CODE "execute_process(COMMAND systemctl start gh-wh-handler)")
if(NOT TARGET uninstall)
configure_file(
"${CMAKE_CURRENT_SOURCE_DIR}/uninstall.cmake.in"
"${CMAKE_CURRENT_BINARY_DIR}/uninstall.cmake.in"
"${CMAKE_CURRENT_BINARY_DIR}/uninstall.cmake" IMMEDIATE @ONLY)
add_custom_target(uninstall COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/uninstall.cmake)
endif()

View File

@ -8,6 +8,17 @@ Routes::Routes(nlohmann::json config) {
const nlohmann::json config_run_scripts = config["run-scripts"];
const nlohmann::json config_tokens = config["tokens"];
CROW_ROUTE(this->app, "/")
.methods("POST"_method)
.name("Ping")
([]() {
nlohmann::json response = {
{"status", 200},
{"message", "Pong"}
};
return crow::response(200, response.dump());
});
CROW_ROUTE(this->app, "/update-files")
.methods("POST"_method)
.name("Update Files")