You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
Bash
30 lines
1.0 KiB
Bash
#!/bin/bash
|
|
|
|
#$1 is app name
|
|
#$2 is trigger
|
|
|
|
DIRECTORY="$(dirname "$(readlink -f "$(dirname "$0")")")"
|
|
|
|
function error {
|
|
echo -e "\e[91m$1\e[39m"
|
|
exit 1
|
|
}
|
|
|
|
app="$1"
|
|
trigger="$2"
|
|
|
|
if [ "$(cat "${DIRECTORY}/data/settings/Enable analytics")" == 'Yes' ];then
|
|
#this is used to let Botspot see the daily installs for each app.
|
|
#Botspot created an individual bitly link for each app. When you install an app, the cooresponding bit.ly link is "clicked" by a headless chromium-browser instance.
|
|
#Chromium accesses the bit.ly link, then exits.
|
|
#Allowing analytics does not identify you, or any personal information about you. Botspot can only see the total number of "clicks", as well as the top 3 countries of origin.
|
|
|
|
bitlylink="https://bit.ly/pi-apps-$trigger-$(echo "$app" | tr -d ' ' | sed 's/[^a-zA-Z0-9]//g')"
|
|
if command -v chromium-browser ;then
|
|
chromium-browser --headless "$bitlylink" &>/dev/null &
|
|
elif command -v chromium ;then
|
|
chromium --headless "$bitlylink" &>/dev/null &
|
|
fi
|
|
#echo "clicked $bitlylink" 1>&2
|
|
fi
|