Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/pi-hole/pi-hole.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Warner <me@adamwarner.co.uk>2020-04-18 14:51:04 +0300
committerAdam Warner <me@adamwarner.co.uk>2020-04-18 14:51:04 +0300
commit6dc85c3527ee532888cf52d028f5da1fbc8a920e (patch)
treeaeadc79bdbe5361f262cd6612cf6d81242d298ee /advanced/Scripts
parent851947bbf2fa89defc972b8991e612cd95f24566 (diff)
Don't display branch name if it is on master.
Prefer cached remote version over github API Signed-off-by: Adam Warner <me@adamwarner.co.uk>
Diffstat (limited to 'advanced/Scripts')
-rwxr-xr-xadvanced/Scripts/version.sh43
1 files changed, 30 insertions, 13 deletions
diff --git a/advanced/Scripts/version.sh b/advanced/Scripts/version.sh
index 16bad62a..da017187 100755
--- a/advanced/Scripts/version.sh
+++ b/advanced/Scripts/version.sh
@@ -84,6 +84,21 @@ getRemoteVersion(){
# Get the version from the remote origin
local daemon="${1}"
local version
+ local cachedVersions
+ local arrCache
+ cachedVersions="/etc/pihole/GitHubVersions"
+
+ #If the above file exists, then we can read from that. Prevents overuse of Github API
+ if [[ -f "$cachedVersions" ]]; then
+ IFS=' ' read -r -a arrCache <<< $(cat $cachedVersions)
+ case $daemon in
+ "pi-hole" ) echo ${arrCache[0]};;
+ "AdminLTE" ) echo ${arrCache[1]};;
+ "FTL" ) echo ${arrCache[2]};;
+ esac
+
+ return 0
+ fi
version=$(curl --silent --fail "https://api.github.com/repos/pi-hole/${daemon}/releases/latest" | \
awk -F: '$1 ~/tag_name/ { print $2 }' | \
@@ -98,20 +113,23 @@ getRemoteVersion(){
}
getLocalBranch(){
- # Local FTL btranch is stored in /etc/pihole/ftlbranch
- if [[ "$1" == "FTL" ]]; then
- cat /etc/pihole/ftlbranch
- return 0
- fi
-
# Get the checked out branch of the local directory
local directory="${1}"
local branch
- cd "${directory}" 2> /dev/null || { echo "${DEFAULT}"; return 1; }
- branch=$(git rev-parse --abbrev-ref HEAD || echo "$DEFAULT")
+ # Local FTL btranch is stored in /etc/pihole/ftlbranch
+ if [[ "$1" == "FTL" ]]; then
+ branch=$(cat /etc/pihole/ftlbranch)
+ else
+ cd "${directory}" 2> /dev/null || { echo "${DEFAULT}"; return 1; }
+ branch=$(git rev-parse --abbrev-ref HEAD || echo "$DEFAULT")
+ fi
if [[ ! "${branch}" =~ ^v ]]; then
- echo "${branch}"
+ if [[ "${branch}" == "master" ]]; then
+ echo ""
+ else
+ echo "${branch} "
+ fi
elif [[ "${branch}" == "${DEFAULT}" ]]; then
echo "ERROR"
return 1
@@ -132,17 +150,16 @@ versionOutput() {
[[ "$3" == "-c" ]] || [[ "$3" == "--current" ]] || [[ -z "$3" ]] && curHash=$(getLocalHash "$GITDIR") && branch=$(getLocalBranch $GITDIR)
[[ "$3" == "-l" ]] || [[ "$3" == "--latest" ]] || [[ -z "$3" ]] && latHash=$(getRemoteHash "$1" "$(cd "$GITDIR" 2> /dev/null && git rev-parse --abbrev-ref HEAD)")
fi
-
if [[ -n "$current" ]] && [[ -n "$latest" ]]; then
- output="${1^} version is $current (Latest: $latest) Branch: $branch"
+ output="${1^} version is $branch$current (Latest: $latest)"
elif [[ -n "$current" ]] && [[ -z "$latest" ]]; then
- output="Current ${1^} version is $current. Branch: $branch"
+ output="Current ${1^} version is $branch$current."
elif [[ -z "$current" ]] && [[ -n "$latest" ]]; then
output="Latest ${1^} version is $latest"
elif [[ "$curHash" == "N/A" ]] || [[ "$latHash" == "N/A" ]]; then
output="${1^} hash is not applicable"
elif [[ -n "$curHash" ]] && [[ -n "$latHash" ]]; then
- output="${1^} hash is $curHash (Latest: $latHash) Branch: $branch"
+ output="${1^} hash is $curHash (Latest: $latHash)"
elif [[ -n "$curHash" ]] && [[ -z "$latHash" ]]; then
output="Current ${1^} hash is $curHash"
elif [[ -z "$curHash" ]] && [[ -n "$latHash" ]]; then