mirror of
https://github.com/openziti/zrok.git
synced 2024-11-22 16:13:47 +01:00
161 lines
3.6 KiB
Bash
Executable File
161 lines
3.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
# set -o xtrace
|
|
|
|
_usage(){
|
|
if (( $# )); then
|
|
echo -e "\nERROR: unexpected arg '$1'" >&2
|
|
fi
|
|
echo -e "\n Usage:\n"\
|
|
" fetch.bash\n"\
|
|
"\n Options:\n"\
|
|
" --quiet\t\tsuppress INFO messages\n"\
|
|
" --verbose\t\tshow DEBUG messages\n"
|
|
}
|
|
|
|
requireBashVersion() {
|
|
if (( "${BASH_VERSION%%.*}" < 4 )); then
|
|
echo "This script requires Bash major version 4 or greater."
|
|
echo "Detected version: $BASH_VERSION"
|
|
exit 1;
|
|
fi
|
|
}
|
|
|
|
logger() {
|
|
local caller="${FUNCNAME[1]}"
|
|
|
|
if (( $# < 1 )); then
|
|
echo "ERROR: $caller() takes 1 or more args" >&2
|
|
return 1
|
|
fi
|
|
|
|
local message="$*"
|
|
|
|
if [[ "$message" =~ ^r\'(.+)\'$ ]]; then
|
|
raw_message="${BASH_REMATCH[1]}"
|
|
message="$raw_message"
|
|
fi
|
|
|
|
caller_level="${caller##log}"
|
|
if (( DEBUG )); then
|
|
line="${caller_level^^} ${FUNCNAME[2]}:${BASH_LINENO[1]}: $message"
|
|
else
|
|
line="${caller_level^^} $message"
|
|
fi
|
|
|
|
if [[ -n "${raw_message-}" ]]; then
|
|
echo -E "$line"
|
|
else
|
|
echo -e "$line"
|
|
fi
|
|
}
|
|
|
|
logInfo() {
|
|
logger "$*"
|
|
}
|
|
|
|
logWarn() {
|
|
logger "$*" >&2
|
|
}
|
|
|
|
logError() {
|
|
logger "$*" >&2
|
|
}
|
|
|
|
logDebug() {
|
|
logger "$*" >&3
|
|
}
|
|
|
|
fetchFile() {
|
|
|
|
local url="${1}"
|
|
local path="${2}"
|
|
|
|
if [[ -s "$path" ]]; then
|
|
echo "ERROR: file already exists: $path" >&2
|
|
return 1
|
|
fi
|
|
|
|
if { command -v curl > /dev/null; } 2>&1; then
|
|
curl -fLsS --output "${path}" "${url}"
|
|
elif { command -v wget > /dev/null; } 2>&1; then
|
|
wget --output-document "${path}" "${url}"
|
|
else
|
|
echo "ERROR: need one of curl or wget to fetch the artifact." >&2
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
|
|
requireCommand() {
|
|
if ! command -v "$1" &>/dev/null; then
|
|
logError "this script requires command '$1'. Please install on the search PATH and try again."
|
|
$1
|
|
fi
|
|
}
|
|
|
|
setWorkingDir() {
|
|
workdir="${1}"
|
|
|
|
cd "${workdir}"
|
|
|
|
# Count non-hidden files
|
|
non_hidden_files=$(find . -maxdepth 1 -not -name '.*' | wc -l)
|
|
# Count hidden files
|
|
if ls -ld .[^.]* 2> /dev/null; then
|
|
hidden_files=0
|
|
for file in .[^.]*; do
|
|
if [[ -f "$file" ]]; then
|
|
hidden_files=$((hidden_files + 1))
|
|
fi
|
|
done
|
|
else
|
|
hidden_files=0
|
|
fi
|
|
# Calculate total number of files
|
|
total_files=$((non_hidden_files + hidden_files))
|
|
if (( total_files > 0 )); then
|
|
echo "WARN: working directory is not empty: ${workdir}" >&2
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
main() {
|
|
: "${DEBUG:=0}"
|
|
while (( $# )); do
|
|
case "$1" in
|
|
-q|--quiet) exec > /dev/null
|
|
shift
|
|
;;
|
|
-v|--verbose)
|
|
DEBUG=1
|
|
exec 3>&1
|
|
shift
|
|
;;
|
|
-h|*help) _usage
|
|
exit 0
|
|
;;
|
|
*) _usage "$1"
|
|
exit
|
|
;;
|
|
esac
|
|
done
|
|
declare -a BINS=(unzip find)
|
|
for BIN in "${BINS[@]}"; do
|
|
requireCommand "$BIN"
|
|
done
|
|
setWorkingDir "${1:-$PWD}" || {
|
|
echo "WARN: installing anyway in a few seconds...press Ctrl-C to abort" >&2
|
|
sleep 9
|
|
}
|
|
fetchFile "${ZROK_REPO_ZIP:-"https://github.com/openziti/zrok/archive/refs/heads/main.zip"}" "zrok.zip"
|
|
unzip -j -d . zrok.zip '*/docker/compose/zrok-instance/*'
|
|
rm zrok.zip .gitignore fetch.bash
|
|
}
|
|
|
|
requireBashVersion
|
|
main "${@}"
|