Browse Source

add map option

feature/alerts-refactor
Daniel Gibbs 4 years ago
parent
commit
8eb0b37d85
No known key found for this signature in database GPG Key ID: 2EBB36015C6D78E2
  1. 18
      lgsm/functions/alert.sh

18
lgsm/functions/alert.sh

@ -126,14 +126,6 @@ info_distro.sh
info_game.sh
query_gamedig.sh
# Images
if [ -n "${appid}" ]; then
alertimage="https://steamcdn-a.akamaihd.net/steam/apps/${gameappid}/header.jpg"
else
alertimage="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/data/gameheaders/${shortname}-header.jpg"
fi
alerticon="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/data/gameicons/${shortname}-icon.png"
# Allow Alert to display gamedig info if available.
if [ "${querystatus}" != "0" ]; then
if [ -n "${maxplayers}" ]; then
@ -176,6 +168,16 @@ else
alertversion="Unknown"
fi
# Images
mapimagestatus="$(curl -o /dev/null -s -w "%{http_code}\n" https://raw.githubusercontent.com/${githubuser}/game-server-map-images/main/${shortname}/${alertmap}.jpg)"
if [ -n "${gdmap}" ]&&[ "${mapimagestatus}" == "200" ]; then
alertimage="https://raw.githubusercontent.com/${githubuser}/game-server-map-images/main/${shortname}/${gdmap}.jpg"
elif [ -n "${appid}" ]; then
alertimage="https://cdn.cloudflare.steamstatic.com/steam/apps/${gameappid}/header.jpg"
else
alertimage="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/data/gameheaders/${shortname}-header.jpg"
fi
alerticon="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/data/gameicons/${shortname}-icon.png"
if [ "${alert}" == "permissions" ]; then
fn_alert_permissions

Loading…
Cancel
Save