From 669117482eda7b759b70396c9bf3b4758b0a5de7 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 21 Aug 2017 21:42:00 +0100 Subject: [PATCH] Testing out IFTTT --- lgsm/functions/alert.sh | 11 ++++++++++- lgsm/functions/alert_ifttt.sh | 21 +++++++++++++++++++++ lgsm/functions/core_functions.sh | 5 +++++ 3 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 lgsm/functions/alert_ifttt.sh diff --git a/lgsm/functions/alert.sh b/lgsm/functions/alert.sh index 56134c8c6..0c9ebb32f 100644 --- a/lgsm/functions/alert.sh +++ b/lgsm/functions/alert.sh @@ -117,4 +117,13 @@ elif [ -z "${pushovertoken}" ]&&[ "${function_selfname}" == "command_test_alert. fn_script_error_warn "Pushover token not set" fi - +if [ "${iftttalert}" == "on" ]&&[ -n "${iftttalert}" ]; then + alert_ifttt.sh +elif [ "${iftttalert}" != "on" ]&&[ "${function_selfname}" == "command_test_alert.sh" ]; then + fn_print_warn_nl "IFTTT alerts not enabled" + fn_script_log_warn "IFTTT alerts not enabled" +elif [ -z "${ifttttoken}" ]&&[ "${function_selfname}" == "command_test_alert.sh" ]; then + fn_print_error_nl "IFTTT token not set" + echo " * https://github.com/GameServerManagers/LinuxGSM/wiki/IFTTT" + fn_script_error_warn "IFTTT token not set" +fi \ No newline at end of file diff --git a/lgsm/functions/alert_ifttt.sh b/lgsm/functions/alert_ifttt.sh new file mode 100644 index 000000000..4de5e7a3f --- /dev/null +++ b/lgsm/functions/alert_ifttt.sh @@ -0,0 +1,21 @@ +#!/bin/bash +# LinuxGSM alert_ifttt.sh function +# Author: Daniel Gibbs +# Website: https://gameservermanagers.com +# Description: Sends IFTTT alert. + +local commandname="ALERT" +local commandaction="Alert" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +json=$(cat <