From 8c6c7d5b00da007da37f8b44b4aa90d2f2468400 Mon Sep 17 00:00:00 2001 From: Nicolas Roman Date: Thu, 28 Mar 2019 15:46:40 +0100 Subject: [PATCH] added hook_api --- evomaintenance.cf | 2 ++ evomaintenance.sh | 85 +++++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 85 insertions(+), 2 deletions(-) diff --git a/evomaintenance.cf b/evomaintenance.cf index f388238..f61d49a 100644 --- a/evomaintenance.cf +++ b/evomaintenance.cf @@ -13,3 +13,5 @@ FULLFROM="John Doe " URGENCYFROM=mama.doe@example.com URGENCYTEL="06.00.00.00.00" REALM=example.com +API_ENDPOINT=https://example.com/api/ +API_KEY=secretkey diff --git a/evomaintenance.sh b/evomaintenance.sh index 723c964..d99c536 100755 --- a/evomaintenance.sh +++ b/evomaintenance.sh @@ -38,6 +38,8 @@ Options --no-mail disable the mail hook --db enable the database hook (default) --no-db disable the database hook + --api enable the API hook (default) + --no-api disable the API hook --commit enable the commit hook (default) --no-commit disable the commit hook --evocheck enable evocheck execution (default) @@ -149,8 +151,8 @@ get_evocheck() { print_log() { printf "*********** %s ***************\n" "$(get_now)" print_session_data - printf "Hooks : commit=%s db=%s mail=%s\n"\ - "${HOOK_COMMIT}" "${HOOK_DB}" "${HOOK_MAIL}" + printf "Hooks : commit=%s db=%s api=%s mail=%s\n"\ + "${HOOK_COMMIT}" "${HOOK_DB}" "${HOOK_API}" "${HOOK_MAIL}" if [ "${HOOK_MAIL}" = "1" ]; then printf "Mailto : %s\n" "${EVOMAINTMAIL}" fi @@ -220,6 +222,28 @@ hook_db() { fi } +hook_api() { + if [ "${VERBOSE}" = "1" ]; then + printf "\n********** API call **************\n" + printf "curl -s -X POST %s -F action=insertEvoMaintenance -F hostname=%s -F userid=%s -F ipaddress=%s -F begin_date=%s -F end_date='now()' -F details=%s" \ + "${API_ENDPOINT}" "${HOSTNAME}" "${USER}" "${IP}" "${BEGIN_DATE}" "${MESSAGE}" + printf "\n***********************************\n" + fi + + if [ "${DRY_RUN}" != "1" ] && [ -x "${CURL_BIN}" ]; then + curl -s -X POST \ + "${API_ENDPOINT}" -k \ + -F api_key="${API_KEY}" \ + -F action=insertEvoMaintenance \ + -F hostname="${HOSTNAME}" \ + -F userid="${USER}" \ + -F ipaddress="${IP}" \ + -F begin_date="${BEGIN_DATE}" \ + -F end_date='now()' \ + -F details="${MESSAGE}" > /dev/null + fi +} + format_mail() { cat <&1 fi +CURL_BIN=$(command -v curl) +readonly CURL_BIN +if [ -z "${CURL_BIN}" ]; then + echo "No \`curl' command has been found, can't call the API." 2>&1 +fi + +if [ -z "${API_ENDPOINT}" ]; then + echo "No API endpoint specified, can't call the API." 2>&1 +fi + EVOCHECK_BIN="/usr/share/scripts/evocheck.sh" GIT_REPOSITORIES="/etc /etc/bind" @@ -489,6 +533,9 @@ if [ "${INTERACTIVE}" = "1" ] && [ "${AUTO}" = "0" ]; then if [ "${HOOK_DB}" = "1" ]; then printf "* save metadata to the database\n" fi + if [ "${HOOK_API}" = "1" ]; then + printf "* send metadata to the API\n" + fi echo "" answer="" @@ -506,6 +553,7 @@ if [ "${INTERACTIVE}" = "1" ] && [ "${AUTO}" = "0" ]; then HOOK_COMMIT=0 HOOK_MAIL=0 HOOK_DB=0 + HOOK_API=0 AUTO=1 break ;; @@ -622,6 +670,36 @@ if [ "${INTERACTIVE}" = "1" ] && [ "${AUTO}" = "0" ]; then ;; esac done + + # API hook + if [ "${HOOK_API}" = "1" ]; then + y="Y"; n="n" + else + y="y"; n="N" + fi + answer="" + while :; do + printf "> Do you want to send the metadata to the API? [%s] " "${y},${n}" + read -r answer + case $answer in + [Yy] ) + hook_api; + break + ;; + [Nn] ) + break + ;; + "" ) + if [ "${HOOK_API}" = "1" ]; then + hook_api + fi + break + ;; + * ) + echo "answer with a valid choice" + ;; + esac + done fi # Log hook @@ -637,6 +715,9 @@ if [ "${INTERACTIVE}" = "0" ] || [ "${AUTO}" = "1" ]; then if [ "${HOOK_DB}" = "1" ]; then hook_db fi + if [ "${HOOK_API}" = "1" ]; then + hook_api + fi fi exit 0