2016-08-02 19:07:09 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Pi-hole: A black hole for Internet advertisements
|
|
|
|
# (c) 2015, 2016 by Jacob Salmela
|
|
|
|
# Network-wide ad blocking via your Raspberry Pi
|
|
|
|
# http://pi-hole.net
|
2016-10-18 13:19:44 +00:00
|
|
|
# shows version numbers
|
2016-08-02 19:07:09 +00:00
|
|
|
#
|
|
|
|
# Pi-hole is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
2016-10-18 11:07:11 +00:00
|
|
|
# Flags:
|
|
|
|
latest=false
|
|
|
|
current=false
|
2016-10-18 11:05:48 +00:00
|
|
|
|
2016-10-20 02:47:45 +00:00
|
|
|
normalOutput() {
|
2016-11-01 10:16:08 +00:00
|
|
|
piholeVersion=$(cd /etc/.pihole/ && git describe --tags --abbrev=0)
|
|
|
|
webVersion=$(cd /var/www/html/admin/ && git describe --tags --abbrev=0)
|
2016-10-18 11:05:48 +00:00
|
|
|
|
2016-11-01 10:16:08 +00:00
|
|
|
piholeVersionLatest=$(curl -s https://api.github.com/repos/pi-hole/pi-hole/releases/latest | grep -Po '"tag_name":.*?[^\\]",' | perl -pe 's/"tag_name": "//; s/^"//; s/",$//')
|
|
|
|
webVersionLatest=$(curl -s https://api.github.com/repos/pi-hole/AdminLTE/releases/latest | grep -Po '"tag_name":.*?[^\\]",' | perl -pe 's/"tag_name": "//; s/^"//; s/",$//')
|
2016-10-18 11:05:48 +00:00
|
|
|
|
2016-11-01 10:16:08 +00:00
|
|
|
echo "::: Pi-hole version is ${piholeVersion} (Latest version is ${piholeVersionLatest})"
|
|
|
|
echo "::: Web-Admin version is ${webVersion} (Latest version is ${webVersionLatest})"
|
2016-10-18 11:07:11 +00:00
|
|
|
}
|
|
|
|
|
2016-10-20 02:47:45 +00:00
|
|
|
webOutput() {
|
2016-11-01 10:16:08 +00:00
|
|
|
for var in "$@"; do
|
|
|
|
case "${var}" in
|
|
|
|
"-l" | "--latest" ) latest=true;;
|
|
|
|
"-c" | "--current" ) current=true;;
|
|
|
|
* ) echo "::: Invalid Option!"; exit 1;
|
|
|
|
esac
|
|
|
|
done
|
2016-08-02 19:07:09 +00:00
|
|
|
|
2016-11-01 10:16:08 +00:00
|
|
|
if [[ "${latest}" == true && "${current}" == false ]]; then
|
|
|
|
webVersionLatest=$(curl -s https://api.github.com/repos/pi-hole/AdminLTE/releases/latest | grep -Po '"tag_name":.*?[^\\]",' | perl -pe 's/"tag_name": "//; s/^"//; s/",$//')
|
|
|
|
echo ${webVersionLatest}
|
|
|
|
elif [[ "${latest}" == false && "${current}" == true ]]; then
|
|
|
|
webVersion=$(cd /var/www/html/admin/ && git describe --tags --abbrev=0)
|
|
|
|
echo ${webVersion}
|
|
|
|
else
|
|
|
|
webVersion=$(cd /var/www/html/admin/ && git describe --tags --abbrev=0)
|
|
|
|
webVersionLatest=$(curl -s https://api.github.com/repos/pi-hole/AdminLTE/releases/latest | grep -Po '"tag_name":.*?[^\\]",' | perl -pe 's/"tag_name": "//; s/^"//; s/",$//')
|
|
|
|
echo "::: Web-Admin version is $webVersion (Latest version is $webVersionLatest)"
|
|
|
|
fi
|
2016-10-18 11:07:11 +00:00
|
|
|
}
|
|
|
|
|
2016-10-20 02:47:45 +00:00
|
|
|
coreOutput() {
|
2016-11-01 10:16:08 +00:00
|
|
|
for var in "$@"; do
|
|
|
|
case "${var}" in
|
|
|
|
"-l" | "--latest" ) latest=true;;
|
|
|
|
"-c" | "--current" ) current=true;;
|
|
|
|
* ) echo "::: Invalid Option!"; exit 1;
|
|
|
|
esac
|
|
|
|
done
|
2016-08-02 19:07:09 +00:00
|
|
|
|
2016-11-01 10:16:08 +00:00
|
|
|
if [[ "${latest}" == true && "${current}" == false ]]; then
|
|
|
|
piholeVersionLatest=$(curl -s https://api.github.com/repos/pi-hole/pi-hole/releases/latest | grep -Po '"tag_name":.*?[^\\]",' | perl -pe 's/"tag_name": "//; s/^"//; s/",$//')
|
|
|
|
echo ${piholeVersionLatest}
|
|
|
|
elif [[ "${latest}" == false && "${current}" == true ]]; then
|
|
|
|
piholeVersion=$(cd /etc/.pihole/ && git describe --tags --abbrev=0)
|
|
|
|
echo ${piholeVersion}
|
|
|
|
else
|
|
|
|
piholeVersion=$(cd /etc/.pihole/ && git describe --tags --abbrev=0)
|
|
|
|
piholeVersionLatest=$(curl -s https://api.github.com/repos/pi-hole/pi-hole/releases/latest | grep -Po '"tag_name":.*?[^\\]",' | perl -pe 's/"tag_name": "//; s/^"//; s/",$//')
|
|
|
|
echo "::: Pi-hole version is $piholeVersion (Latest version is $piholeVersionLatest)"
|
|
|
|
fi
|
2016-10-18 11:07:11 +00:00
|
|
|
}
|
2016-10-18 11:05:48 +00:00
|
|
|
|
2016-10-20 02:47:45 +00:00
|
|
|
helpFunc() {
|
2016-11-01 10:16:08 +00:00
|
|
|
cat << EOM
|
2016-10-20 03:46:37 +00:00
|
|
|
:::
|
|
|
|
::: Show Pi-hole/Web Admin versions
|
|
|
|
:::
|
|
|
|
::: Usage: pihole -v [ -a | -p ] [ -l | -c ]
|
|
|
|
:::
|
|
|
|
::: Options:
|
|
|
|
::: -a, --admin Show both current and latest versions of web admin
|
|
|
|
::: -p, --pihole Show both current and latest versions of Pi-hole core files
|
|
|
|
::: -l, --latest (Only after -a | -p) Return only latest version
|
|
|
|
::: -c, --current (Only after -a | -p) Return only current version
|
|
|
|
::: -h, --help Show this help dialog
|
|
|
|
:::
|
|
|
|
EOM
|
2016-11-01 10:16:08 +00:00
|
|
|
exit 1
|
2016-10-18 11:05:48 +00:00
|
|
|
}
|
|
|
|
|
2016-10-18 11:07:11 +00:00
|
|
|
if [[ $# = 0 ]]; then
|
2016-11-01 10:16:08 +00:00
|
|
|
normalOutput
|
2016-10-18 11:07:11 +00:00
|
|
|
fi
|
|
|
|
|
2016-10-22 17:01:15 +00:00
|
|
|
for var in "$@"; do
|
2016-11-01 10:16:08 +00:00
|
|
|
case "${var}" in
|
|
|
|
"-a" | "--admin" ) shift; webOutput "$@";;
|
|
|
|
"-p" | "--pihole" ) shift; coreOutput "$@" ;;
|
|
|
|
"-h" | "--help" ) helpFunc;;
|
|
|
|
esac
|
2016-10-20 02:47:45 +00:00
|
|
|
done
|