2017-03-08 12:16:40 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Pi-hole: A black hole for Internet advertisements
|
|
|
|
# (c) 2017 Pi-hole, LLC (https://pi-hole.net)
|
|
|
|
# Network-wide ad blocking via your own hardware.
|
|
|
|
#
|
|
|
|
# Checkout other branches than master
|
|
|
|
#
|
|
|
|
# This file is copyright under the latest version of the EUPL.
|
|
|
|
# Please see LICENSE file for your rights under this license.
|
|
|
|
|
2017-03-08 21:27:48 +00:00
|
|
|
readonly PI_HOLE_FILES_DIR="/etc/.pihole"
|
2017-03-11 15:36:54 +00:00
|
|
|
PH_TEST="true" source "${PI_HOLE_FILES_DIR}/automated install/basic-install.sh"
|
2017-03-08 21:27:48 +00:00
|
|
|
|
2017-03-08 21:41:11 +00:00
|
|
|
# webInterfaceGitUrl set in basic-install.sh
|
|
|
|
# webInterfaceDir set in basic-install.sh
|
|
|
|
# piholeGitURL set in basic-install.sh
|
2017-03-08 21:27:48 +00:00
|
|
|
# is_repo() sourced from basic-install.sh
|
2017-03-11 15:46:52 +00:00
|
|
|
# setupVars set in basic-install.sh
|
|
|
|
|
|
|
|
source "${setupVars}"
|
2017-03-08 12:16:40 +00:00
|
|
|
|
2017-03-11 15:24:13 +00:00
|
|
|
update=false
|
|
|
|
|
2017-03-08 12:16:40 +00:00
|
|
|
fully_fetch_repo() {
|
|
|
|
# Add upstream branches to shallow clone
|
|
|
|
local directory="${1}"
|
|
|
|
|
|
|
|
cd "${directory}" || return 1
|
2017-03-08 21:57:35 +00:00
|
|
|
if is_repo "${directory}"; then
|
2017-03-08 23:28:02 +00:00
|
|
|
git remote set-branches origin '*' || return 1
|
|
|
|
git fetch --quiet || return 1
|
2017-03-08 21:57:35 +00:00
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
2017-03-08 21:30:08 +00:00
|
|
|
return 0
|
2017-03-08 12:16:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
get_available_branches(){
|
|
|
|
# Return available branches
|
|
|
|
local directory="${1}"
|
|
|
|
|
|
|
|
cd "${directory}" || return 1
|
|
|
|
# Get reachable remote branches
|
|
|
|
git remote show origin | grep 'tracked' | sed 's/tracked//;s/ //g'
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-03-11 15:11:23 +00:00
|
|
|
|
|
|
|
fetch_checkout_pull_branch() {
|
|
|
|
# Check out specified branch
|
|
|
|
local directory="${1}"
|
|
|
|
local branch="${2}"
|
|
|
|
|
2017-03-11 15:40:10 +00:00
|
|
|
# Set the reference for the requested branch, fetch, check it put and pull it
|
|
|
|
git remote set-branches origin "${branch}" || return 1
|
|
|
|
git fetch --quiet || return 1
|
|
|
|
checkout_pull_branch "${directory}" "${branch}" || return 1
|
2017-03-11 15:11:23 +00:00
|
|
|
}
|
|
|
|
|
2017-03-08 12:16:40 +00:00
|
|
|
checkout_pull_branch() {
|
|
|
|
# Check out specified branch
|
|
|
|
local directory="${1}"
|
|
|
|
local branch="${2}"
|
|
|
|
|
|
|
|
cd "${directory}" || return 1
|
2017-03-11 15:55:37 +00:00
|
|
|
|
|
|
|
local oldbranch="$(git symbolic-ref HEAD)"
|
|
|
|
|
|
|
|
git checkout "${branch}" || return 1
|
|
|
|
|
|
|
|
if [ "$(git diff "${oldbranch}" | grep -c "^")" -gt "0" ]; then
|
2017-03-11 15:24:13 +00:00
|
|
|
update=true
|
|
|
|
fi
|
|
|
|
|
2017-03-10 18:57:46 +00:00
|
|
|
git pull || return 1
|
|
|
|
return 0
|
2017-03-08 12:16:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
warning1() {
|
|
|
|
echo "::: Note that changing the branch is a severe change of your Pi-hole system."
|
|
|
|
echo "::: This is not supported unless one of the developers explicitly asks you to do this!"
|
|
|
|
read -r -p "::: Have you read and understood this? [y/N] " response
|
|
|
|
case ${response} in
|
|
|
|
[yY][eE][sS]|[yY])
|
|
|
|
echo "::: Continuing."
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "::: Aborting."
|
|
|
|
return 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
checkout()
|
|
|
|
{
|
|
|
|
local corebranches
|
|
|
|
local webbranches
|
|
|
|
|
|
|
|
# Avoid globbing
|
|
|
|
set -f
|
|
|
|
|
|
|
|
#This is unlikely
|
2017-03-11 15:30:58 +00:00
|
|
|
if ! is_repo "${PI_HOLE_FILES_DIR}" ; then
|
|
|
|
echo "::: Critical Error: Core Pi-Hole repo is missing from system!"
|
|
|
|
echo "::: Please re-run install script from https://github.com/pi-hole/pi-hole"
|
|
|
|
exit 1;
|
|
|
|
fi
|
2017-03-11 15:49:47 +00:00
|
|
|
if [[ ${INSTALL_WEB} == true ]]; then
|
2017-03-11 15:38:28 +00:00
|
|
|
if ! is_repo "${webInterfaceDir}" ; then
|
2017-03-11 15:30:58 +00:00
|
|
|
echo "::: Critical Error: Web Admin repo is missing from system!"
|
|
|
|
echo "::: Please re-run install script from https://github.com/pi-hole/pi-hole"
|
|
|
|
exit 1;
|
|
|
|
fi
|
2017-03-08 12:16:40 +00:00
|
|
|
fi
|
|
|
|
|
2017-03-10 19:04:37 +00:00
|
|
|
if [[ -z "${1}" ]]; then
|
2017-03-10 19:07:58 +00:00
|
|
|
echo "::: No option detected. Please use 'pihole checkout <master|dev>'."
|
2017-03-10 19:04:37 +00:00
|
|
|
echo "::: Or enter the repository and branch you would like to check out:"
|
|
|
|
echo "::: 'pihole checkout <web|core> <branchname>'"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2017-03-08 12:16:40 +00:00
|
|
|
if ! warning1 ; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2017-03-08 21:57:35 +00:00
|
|
|
if [[ "${1}" == "dev" ]] ; then
|
2017-03-08 12:18:34 +00:00
|
|
|
# Shortcut to check out development branches
|
2017-03-08 12:16:40 +00:00
|
|
|
echo "::: Shortcut \"dev\" detected - checking out development / devel branches ..."
|
|
|
|
echo "::: Pi-hole core"
|
2017-03-11 15:11:23 +00:00
|
|
|
fetch_checkout_pull_branch "${PI_HOLE_FILES_DIR}" "development" || { echo "Unable to pull Core developement branch"; exit 1; }
|
2017-03-11 15:49:47 +00:00
|
|
|
if [[ ${INSTALL_WEB} == true ]]; then
|
2017-03-11 15:30:58 +00:00
|
|
|
echo "::: Web interface"
|
|
|
|
fetch_checkout_pull_branch "${webInterfaceDir}" "devel" || { echo "Unable to pull Web development branch"; exit 1; }
|
|
|
|
fi
|
2017-03-08 12:16:40 +00:00
|
|
|
echo "::: done!"
|
2017-03-08 21:57:35 +00:00
|
|
|
elif [[ "${1}" == "master" ]] ; then
|
2017-03-08 12:18:34 +00:00
|
|
|
# Shortcut to check out master branches
|
|
|
|
echo "::: Shortcut \"master\" detected - checking out master branches ..."
|
|
|
|
echo "::: Pi-hole core"
|
2017-03-11 15:11:23 +00:00
|
|
|
fetch_checkout_pull_branch "${PI_HOLE_FILES_DIR}" "master" || { echo "Unable to pull Core master branch"; exit 1; }
|
2017-03-11 15:49:47 +00:00
|
|
|
if [[ ${INSTALL_WEB} == true ]]; then
|
2017-03-11 15:30:58 +00:00
|
|
|
echo "::: Web interface"
|
|
|
|
fetch_checkout_pull_branch "${webInterfaceDir}" "master" || { echo "Unable to pull web master branch"; exit 1; }
|
|
|
|
fi
|
2017-03-08 12:18:34 +00:00
|
|
|
echo "::: done!"
|
2017-03-08 21:57:35 +00:00
|
|
|
elif [[ "${1}" == "core" ]] ; then
|
2017-03-10 19:25:35 +00:00
|
|
|
echo -n "::: Fetching remote branches for Pi-hole core from ${piholeGitUrl} ... "
|
|
|
|
if ! fully_fetch_repo "${PI_HOLE_FILES_DIR}" ; then
|
|
|
|
echo "::: Fetching all branches for Pi-hole core repo failed!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
corebranches=($(get_available_branches "${PI_HOLE_FILES_DIR}"))
|
|
|
|
echo " done!"
|
|
|
|
echo "::: ${#corebranches[@]} branches available"
|
|
|
|
echo ":::"
|
2017-03-08 12:16:40 +00:00
|
|
|
# Have to user chosing the branch he wants
|
2017-03-08 22:29:51 +00:00
|
|
|
if ! (for e in "${corebranches[@]}"; do [[ "$e" == "${2}" ]] && exit 0; done); then
|
|
|
|
echo "::: Requested branch \"${2}\" is not available!"
|
2017-03-08 12:16:40 +00:00
|
|
|
echo "::: Available branches for core are:"
|
|
|
|
for e in "${corebranches[@]}"; do echo "::: $e"; done
|
|
|
|
exit 1
|
|
|
|
fi
|
2017-03-08 22:29:51 +00:00
|
|
|
checkout_pull_branch "${PI_HOLE_FILES_DIR}" "${2}"
|
2017-03-11 15:49:47 +00:00
|
|
|
elif [[ "${1}" == "web" && ${INSTALL_WEB} == true ]] ; then
|
2017-03-10 19:25:35 +00:00
|
|
|
echo -n "::: Fetching remote branches for the web interface from ${webInterfaceGitUrl} ... "
|
|
|
|
if ! fully_fetch_repo "${webInterfaceDir}" ; then
|
|
|
|
echo "::: Fetching all branches for Pi-hole web interface repo failed!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
webbranches=($(get_available_branches "${webInterfaceDir}"))
|
|
|
|
echo " done!"
|
|
|
|
echo "::: ${#webbranches[@]} branches available"
|
|
|
|
echo ":::"
|
2017-03-08 12:16:40 +00:00
|
|
|
# Have to user chosing the branch he wants
|
2017-03-08 22:29:51 +00:00
|
|
|
if ! (for e in "${webbranches[@]}"; do [[ "$e" == "${2}" ]] && exit 0; done); then
|
|
|
|
echo "::: Requested branch \"${2}\" is not available!"
|
2017-03-08 12:16:40 +00:00
|
|
|
echo "::: Available branches for web are:"
|
|
|
|
for e in "${webbranches[@]}"; do echo "::: $e"; done
|
|
|
|
exit 1
|
|
|
|
fi
|
2017-03-08 23:30:36 +00:00
|
|
|
checkout_pull_branch "${webInterfaceDir}" "${2}"
|
2017-03-08 12:16:40 +00:00
|
|
|
else
|
2017-03-08 22:29:51 +00:00
|
|
|
echo "::: Requested option \"${1}\" is not available!"
|
2017-03-08 12:16:40 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Force updating everything
|
2017-03-11 15:24:13 +00:00
|
|
|
if [[ ! "${1}" == "web" && ${update} ]]; then
|
2017-03-10 19:25:35 +00:00
|
|
|
echo "::: Running installer to upgrade your installation"
|
2017-03-11 15:36:54 +00:00
|
|
|
if "${PI_HOLE_FILES_DIR}/automated install/basic-install.sh" --unattended; then
|
2017-03-10 19:25:35 +00:00
|
|
|
exit 0
|
|
|
|
else
|
|
|
|
echo "Unable to complete update, contact Pi-hole"
|
|
|
|
exit 1
|
|
|
|
fi
|
2017-03-08 22:17:20 +00:00
|
|
|
fi
|
2017-03-08 12:16:40 +00:00
|
|
|
}
|
2017-03-08 21:57:35 +00:00
|
|
|
|