diff --git a/update-instances.sh b/update-instances.sh new file mode 100755 index 000000000..bfb36d04e --- /dev/null +++ b/update-instances.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +# fetch instances from public api +INSTANCES=$(curl -s 'https://piped-instances.kavin.rocks') + +# generate instances list for settings +echo -e "\nContent for res/values/array.xml\n" + +echo '' +echo $INSTANCES | jq '.[].name' | while read name; do + echo " $name" | tr -d '"' +done + +echo -e '\n\n' +echo $INSTANCES | jq '.[].api_url' | while read url; do + echo " $url" | tr -d '"' +done +echo -e '' + +# generate android url schemes +echo -e "\n\nContent for AndroidManifest.xml to be replaced\n" + +gen_frontends() { + echo $INSTANCES | jq '.[].api_url' | while read url; do + _url=$(echo "$url" | tr -d '"') + _frontend_url=$(curl -Ls -o /dev/null -w %{url_effective} "$_url") + _host=$(echo ${_frontend_url/https:\/\//} | tr -d '/') + echo " " + done +} +echo "$(gen_frontends)" | sort | uniq