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 <