From e7ffdef7e9de9372c5099272d2d37860eb5e3148 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 17 Oct 2021 22:33:58 +0100 Subject: [PATCH] add country --- lgsm/functions/alert_discord.sh | 13 ++++++++++--- lgsm/functions/core_github.sh | 4 ++-- lgsm/functions/info_distro.sh | 4 +++- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/alert_discord.sh b/lgsm/functions/alert_discord.sh index bf99d5f2c..708d5e0ae 100755 --- a/lgsm/functions/alert_discord.sh +++ b/lgsm/functions/alert_discord.sh @@ -25,8 +25,9 @@ json=$(cat </dev/null| grep Speed | awk '{print $2 # External IP address if [ -z "${extip}" ]; then - extip="$(curl --connect-timeout 10 -s https://api.ipify.org 2>/dev/null)" + ipapijson=$(curl --connect-timeout 10 -s http://ip-api.com/json) + extip="$(echo "${ipapijson}" | jq -r .query)" + country="$(echo "${ipapijson}" | jq -r .country)" exitcode=$? # Should ifconfig.co return an error will use last known IP. if [ ${exitcode} -eq 0 ]; then