mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-22 06:03:43 +00:00
Simplify pihole -v
Signed-off-by: Christian König <ckoenig@posteo.de>
This commit is contained in:
parent
a6c0d279b6
commit
fe4d934a40
2 changed files with 31 additions and 112 deletions
|
@ -8,6 +8,10 @@
|
||||||
# This file is copyright under the latest version of the EUPL.
|
# This file is copyright under the latest version of the EUPL.
|
||||||
# Please see LICENSE file for your rights under this license.
|
# Please see LICENSE file for your rights under this license.
|
||||||
|
|
||||||
|
# Ignore warning about `local` being undefinded in POSIX
|
||||||
|
# shellcheck disable=SC3043
|
||||||
|
# https://github.com/koalaman/shellcheck/wiki/SC3043#exceptions
|
||||||
|
|
||||||
# Source the versions file poupulated by updatechecker.sh
|
# Source the versions file poupulated by updatechecker.sh
|
||||||
cachedVersions="/etc/pihole/versions"
|
cachedVersions="/etc/pihole/versions"
|
||||||
|
|
||||||
|
@ -21,118 +25,34 @@ else
|
||||||
. "$cachedVersions"
|
. "$cachedVersions"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
getLocalVersion() {
|
main() {
|
||||||
case ${1} in
|
local details
|
||||||
"Pi-hole" ) echo "${CORE_VERSION:=N/A}";;
|
details=$1
|
||||||
"web" ) echo "${WEB_VERSION:=N/A}";;
|
|
||||||
"FTL" ) echo "${FTL_VERSION:=N/A}";;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
getLocalHash() {
|
if [ "${details}" = true ]; then
|
||||||
case ${1} in
|
echo "Core"
|
||||||
"Pi-hole" ) echo "${CORE_HASH:=N/A}";;
|
echo " Version is ${CORE_VERSION:=N/A} (Latest: ${GITHUB_CORE_VERSION:=N/A})"
|
||||||
"web" ) echo "${WEB_HASH:=N/A}";;
|
echo " Branch is ${CORE_BRANCH:=N/A}"
|
||||||
"FTL" ) echo "${FTL_HASH:=N/A}";;
|
echo " Hash is ${CORE_HASH:=N/A} (Latest: ${GITHUB_CORE_HASH:=N/A})"
|
||||||
esac
|
echo "Web"
|
||||||
}
|
echo " Version is ${WEB_VERSION:=N/A} (Latest: ${GITHUB_WEB_VERSION:=N/A})"
|
||||||
|
echo " Branch is ${WEB_BRANCH:=N/A}"
|
||||||
getRemoteHash(){
|
echo " Hash is ${WEB_HASH:=N/A} (Latest: ${GITHUB_WEB_HASH:=N/A})"
|
||||||
case ${1} in
|
echo "FTL"
|
||||||
"Pi-hole" ) echo "${GITHUB_CORE_HASH:=N/A}";;
|
echo " Version is ${FTL_VERSION:=N/A} (Latest: ${GITHUB_FTL_VERSION:=N/A})"
|
||||||
"web" ) echo "${GITHUB_WEB_HASH:=N/A}";;
|
echo " Branch is ${FTL_BRANCH:=N/A}"
|
||||||
"FTL" ) echo "${GITHUB_FTL_HASH:=N/A}";;
|
echo " Hash is ${FTL_HASH:=N/A} (Latest: ${GITHUB_FTL_HASH:=N/A})"
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
getRemoteVersion(){
|
|
||||||
case ${1} in
|
|
||||||
"Pi-hole" ) echo "${GITHUB_CORE_VERSION:=N/A}";;
|
|
||||||
"web" ) echo "${GITHUB_WEB_VERSION:=N/A}";;
|
|
||||||
"FTL" ) echo "${GITHUB_FTL_VERSION:=N/A}";;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
getLocalBranch(){
|
|
||||||
case ${1} in
|
|
||||||
"Pi-hole" ) echo "${CORE_BRANCH:=N/A}";;
|
|
||||||
"web" ) echo "${WEB_BRANCH:=N/A}";;
|
|
||||||
"FTL" ) echo "${FTL_BRANCH:=N/A}";;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
versionOutput() {
|
|
||||||
|
|
||||||
[ "$2" = "-c" ] || [ "$2" = "--current" ] || [ -z "$2" ] && current=$(getLocalVersion "${1}") && branch=$(getLocalBranch "${1}")
|
|
||||||
[ "$2" = "-l" ] || [ "$2" = "--latest" ] || [ -z "$2" ] && latest=$(getRemoteVersion "${1}")
|
|
||||||
if [ "$2" = "--hash" ]; then
|
|
||||||
[ "$3" = "-c" ] || [ "$3" = "--current" ] || [ -z "$3" ] && curHash=$(getLocalHash "${1}") && branch=$(getLocalBranch "${1}")
|
|
||||||
[ "$3" = "-l" ] || [ "$3" = "--latest" ] || [ -z "$3" ] && latHash=$(getRemoteHash "${1}") && branch=$(getLocalBranch "${1}")
|
|
||||||
fi
|
|
||||||
|
|
||||||
# We do not want to show the branch name when we are on master,
|
|
||||||
# blank out the variable in this case
|
|
||||||
if [ "$branch" = "master" ]; then
|
|
||||||
branch=""
|
|
||||||
else
|
else
|
||||||
branch="$branch "
|
echo "Core version is ${CORE_VERSION:=N/A} (Latest: ${GITHUB_CORE_VERSION:=N/A})"
|
||||||
|
echo "Web version is ${WEB_VERSION:=N/A} (Latest: ${GITHUB_WEB_VERSION:=N/A})"
|
||||||
|
echo "FTL version is ${FTL_VERSION:=N/A} (Latest: ${GITHUB_FTL_VERSION:=N/A})"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "$current" ] && [ -n "$latest" ]; then
|
|
||||||
output="${1} version is $branch$current (Latest: $latest)"
|
|
||||||
elif [ -n "$current" ] && [ -z "$latest" ]; then
|
|
||||||
output="Current ${1} version is $branch$current"
|
|
||||||
elif [ -z "$current" ] && [ -n "$latest" ]; then
|
|
||||||
output="Latest ${1} version is $latest"
|
|
||||||
elif [ -n "$curHash" ] && [ -n "$latHash" ]; then
|
|
||||||
output="Local ${1} hash is $curHash (Remote: $latHash)"
|
|
||||||
elif [ -n "$curHash" ] && [ -z "$latHash" ]; then
|
|
||||||
output="Current local ${1} hash is $curHash"
|
|
||||||
elif [ -z "$curHash" ] && [ -n "$latHash" ]; then
|
|
||||||
output="Latest remote ${1} hash is $latHash"
|
|
||||||
elif [ -z "$curHash" ] && [ -z "$latHash" ]; then
|
|
||||||
output="Hashes for ${1} not available"
|
|
||||||
else
|
|
||||||
errorOutput
|
|
||||||
return 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
[ -n "$output" ] && echo " $output"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
errorOutput() {
|
# Process options (if present)
|
||||||
echo " Invalid Option! Try 'pihole -v --help' for more information."
|
case "$1" in
|
||||||
exit 1
|
"-vv" ) details=true;;
|
||||||
}
|
* ) details=false;;
|
||||||
|
|
||||||
defaultOutput() {
|
|
||||||
versionOutput "Pi-hole" "$@"
|
|
||||||
versionOutput "web" "$@"
|
|
||||||
versionOutput "FTL" "$@"
|
|
||||||
}
|
|
||||||
|
|
||||||
helpFunc() {
|
|
||||||
echo "Usage: pihole -v [repo | option] [option]
|
|
||||||
Example: 'pihole -v -p -l'
|
|
||||||
Show Pi-hole, Web Console & FTL versions
|
|
||||||
|
|
||||||
Repositories:
|
|
||||||
-p, --pihole Only retrieve info regarding Pi-hole repository
|
|
||||||
-w, --web Only retrieve info regarding web repository
|
|
||||||
-f, --ftl Only retrieve info regarding FTL repository
|
|
||||||
|
|
||||||
Options:
|
|
||||||
-c, --current Return the current version
|
|
||||||
-l, --latest Return the latest version
|
|
||||||
--hash Return the GitHub hash from your local repositories
|
|
||||||
-h, --help Show this help dialog"
|
|
||||||
exit 0
|
|
||||||
}
|
|
||||||
|
|
||||||
case "${1}" in
|
|
||||||
"-p" | "--pihole" ) shift; versionOutput "Pi-hole" "$@";;
|
|
||||||
"-w" | "--web" ) shift; versionOutput "web" "$@";;
|
|
||||||
"-f" | "--ftl" ) shift; versionOutput "FTL" "$@";;
|
|
||||||
"-h" | "--help" ) helpFunc;;
|
|
||||||
* ) defaultOutput "$@";;
|
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
main "${details}"
|
||||||
|
|
5
pihole
5
pihole
|
@ -140,7 +140,6 @@ uninstallFunc() {
|
||||||
}
|
}
|
||||||
|
|
||||||
versionFunc() {
|
versionFunc() {
|
||||||
shift
|
|
||||||
exec "${PI_HOLE_SCRIPT_DIR}"/version.sh "$@"
|
exec "${PI_HOLE_SCRIPT_DIR}"/version.sh "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -508,7 +507,7 @@ Options:
|
||||||
-up, updatePihole Update Pi-hole subsystems
|
-up, updatePihole Update Pi-hole subsystems
|
||||||
Add '--check-only' to exit script before update is performed.
|
Add '--check-only' to exit script before update is performed.
|
||||||
-v, version Show installed versions of Pi-hole, Web Interface & FTL
|
-v, version Show installed versions of Pi-hole, Web Interface & FTL
|
||||||
Add '-h' for more info on version usage
|
Use -vv for detailed information.
|
||||||
uninstall Uninstall Pi-hole from your system
|
uninstall Uninstall Pi-hole from your system
|
||||||
status Display the running status of Pi-hole subsystems
|
status Display the running status of Pi-hole subsystems
|
||||||
enable Enable Pi-hole subsystems
|
enable Enable Pi-hole subsystems
|
||||||
|
@ -531,7 +530,7 @@ fi
|
||||||
need_root=1
|
need_root=1
|
||||||
case "${1}" in
|
case "${1}" in
|
||||||
"-h" | "help" | "--help" ) helpFunc;;
|
"-h" | "help" | "--help" ) helpFunc;;
|
||||||
"-v" | "version" ) versionFunc "$@";;
|
"-v" | "-vv" | "version" ) versionFunc "$@";;
|
||||||
"-c" | "chronometer" ) chronometerFunc "$@";;
|
"-c" | "chronometer" ) chronometerFunc "$@";;
|
||||||
"-q" | "query" ) queryFunc "$@";;
|
"-q" | "query" ) queryFunc "$@";;
|
||||||
"status" ) statusFunc "$2";;
|
"status" ) statusFunc "$2";;
|
||||||
|
|
Loading…
Reference in a new issue