1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-22 04:43:00 +00:00
kiwi-scp/dist/kiwi

207 lines
5.1 KiB
Text
Raw Normal View History

#!/bin/sh
2020-08-04 00:56:29 +00:00
#############
# CONSTANTS #
2020-08-20 22:04:26 +00:00
#############
2020-08-04 00:56:29 +00:00
2020-08-04 14:38:51 +00:00
# base config filename
KIWI_CONF_NAME="kiwi.yml"
# version tag filename
2021-09-30 14:49:12 +00:00
KIWI_VERSION_TAG="kiwi_scp/data/etc/version_tag"
2020-08-26 11:56:51 +00:00
# dependencies to run kiwi-scp
2021-09-30 14:49:12 +00:00
KIWI_DEPENDENCIES="python3 less docker docker-compose"
2020-08-20 22:04:26 +00:00
# base install dir
2020-08-26 12:57:36 +00:00
KIWI_BASEDIR="${HOME}/.cache/kiwi-scp"
# per-user env setup script
2020-08-26 12:33:00 +00:00
KIWI_PROFILE="${HOME}/.kiwi_profile"
2020-08-04 00:56:29 +00:00
# repository uri
2020-08-26 11:56:51 +00:00
KIWI_REPO="https://github.com/ldericher/kiwi-scp"
# use latest version by default
KIWI_VERSION="master"
# URI of "kiwi" launcher script
2022-02-22 12:55:26 +00:00
KIWI_URI="https://raw.githubusercontent.com/ldericher/kiwi-scp/master/dist/kiwi"
INSTALLER_URI="https://raw.githubusercontent.com/ldericher/kiwi-scp/master/dist/install.sh"
# canary file: limit curl requests
CANARY_FILENAME="/tmp/kiwi-scp-$(id -u).canary"
2020-08-26 12:33:00 +00:00
CANARY_MAX_AGE=600
###################
# DYNAMIC STRINGS #
###################
2020-08-26 11:56:51 +00:00
# uri of correct kiwi-scp archive
kiwi_archive_uri() {
2021-09-30 14:49:12 +00:00
echo "${KIWI_REPO}/archive/refs/heads/${KIWI_VERSION}.tar.gz"
}
# directory of correct installation
2020-08-26 12:33:00 +00:00
kiwi_install_dir() {
echo "${KIWI_BASEDIR}/${KIWI_VERSION}"
}
# main script in installed version
kiwi_executable() {
2021-09-30 14:49:12 +00:00
echo "$(kiwi_install_dir)/bin/kiwi"
}
#############
# FUNCTIONS #
#############
# prompt yes/no question (default yes)
yes_no() {
# prompt and read from terminal
printf "%s [Y|n] " "${1}"
read -r answer </dev/tty || answer=""
# check first character
answer="$(printf '%.1s' "${answer}")"
if [ "${answer}" = "N" ] || [ "${answer}" = "n" ]; then
# negative
return 1
else
# positive
return 0
fi
}
##################
# PER-USER SETUP #
##################
# add in environment setup
2020-08-26 12:33:00 +00:00
if [ -f "${KIWI_PROFILE}" ]; then
# shellcheck source=$HOME/.kiwi_profile
. "${KIWI_PROFILE}"
fi
##########
# CHECKS #
##########
2020-08-26 12:33:00 +00:00
for dep in ${KIWI_DEPENDENCIES}; do
if ! command -v "${dep}" >/dev/null 2>/dev/null; then
echo "Dependency '${dep}' not found, please install!" >/dev/stderr
exit 1
fi
done
2020-08-04 00:56:29 +00:00
########
# MAIN #
########
# check if we should check for new kiwi version
if [ -f "${CANARY_FILENAME}" ]; then
# check canary age
current_time="$(date '+%s')"
2020-08-26 12:33:00 +00:00
canary_mod_time="$(date -r "${CANARY_FILENAME}" '+%s')"
canary_age="$((current_time - canary_mod_time))"
2020-08-26 12:33:00 +00:00
if [ ${canary_age} -gt ${CANARY_MAX_AGE} ]; then
# canary file too old!
run_kiwi_check="yes"
fi
else
# no canary file!
run_kiwi_check="yes"
fi
# run check for new kiwi version
if [ "${run_kiwi_check}" = "yes" ]; then
# hash this script and the master version
2020-08-26 12:57:36 +00:00
hash_local="$(md5sum <"$(readlink -f "${0}")")"
hash_remote="$(curl --proto '=https' --tlsv1.2 -sSfL "${KIWI_URI}" | md5sum)"
# warn if different
if [ "${hash_local}" != "${hash_remote}" ]; then
if yes_no "Your kiwi launcher is outdated. Update now?" >/dev/stderr; then
# should reinstall, so download installer
installer="$(curl --proto '=https' --tlsv1.2 -sSfL "${INSTALLER_URI}")"
if yes_no "Use sudo to run as root?"; then
# enable system-wide install
echo "${installer}" | sudo sh
else
# per-user install
echo "${installer}" | sh
fi
echo ""
echo "####################"
echo "kiwi self-update finished, please re-run your last command."
exit 0
else
echo "" >/dev/stderr
echo "####################" >/dev/stderr
echo "Please manually update your kiwi launcher by re-running the installation process:" >/dev/stderr
2020-08-26 11:56:51 +00:00
echo "https://github.com/ldericher/kiwi-scp/#installation" >/dev/stderr
echo "####################" >/dev/stderr
echo "" >/dev/stderr
fi
fi
# refresh canary file
printf '' > "${CANARY_FILENAME}"
echo "Installed: '${hash_local}'" >> "${CANARY_FILENAME}"
echo "Available: '${hash_remote}'" >> "${CANARY_FILENAME}"
chmod 0777 "${CANARY_FILENAME}"
fi
# check if pwd is a kiwi instance
path="$(pwd)"
while [ "${path}" != "" ]; do
if [ -e "${path}/${KIWI_CONF_NAME}" ]; then
# cd into kiwi instance
cd "${path}" || yes_no "Could not enter kiwi instance at '${path}'. Continue anyway?" || exit 1
# determine needed kiwi-scp version
re_version_line='version\s*:\s*'
eval "$(grep -E "${re_version_line}" "./${KIWI_CONF_NAME}" | sed -r "s/${re_version_line}/KIWI_VERSION=/")"
break;
fi
path="${path%/*}"
done
2020-08-04 00:56:29 +00:00
2020-08-26 11:56:51 +00:00
# install if kiwi-scp not found
if [ ! -x "$(kiwi_executable)" ]; then
2020-08-26 11:56:51 +00:00
printf "Installing kiwi-scp v%s into %s ... " "${KIWI_VERSION}" "${KIWI_BASEDIR}"
2020-08-04 00:56:29 +00:00
2021-09-30 14:49:12 +00:00
# read version tag
KIWI_VERSION="$( \
curl \
--proto '=https' \
--tlsv1.2 \
-sSfL \
"https://raw.githubusercontent.com/ldericher/kiwi-scp/${KIWI_VERSION}/${KIWI_VERSION_TAG}" \
)"
2020-08-04 00:56:29 +00:00
2020-08-24 17:40:55 +00:00
if [ -x "$(kiwi_executable)" ]; then
2021-09-30 14:49:12 +00:00
# after version tag update: no need to install
echo "v${KIWI_VERSION} already installed!"
2020-08-24 17:40:55 +00:00
else
# install archive
2021-09-30 14:49:12 +00:00
python3 -m virtualenv "$(kiwi_install_dir)" >/dev/null 2>/dev/null
. "$(kiwi_install_dir)/bin/activate"
python3 -m pip install "git+${KIWI_REPO}@${KIWI_VERSION}" >/dev/null 2>/dev/null
2020-08-24 17:40:55 +00:00
echo "OK"
fi
2020-08-04 00:56:29 +00:00
fi
# setup main environment
export KIWI_CONF_NAME
2021-09-30 14:49:12 +00:00
. "$(kiwi_install_dir)/bin/activate"
2020-08-26 13:09:17 +00:00
2020-08-04 00:56:29 +00:00
# run main script
2021-09-30 14:49:12 +00:00
exec "$(kiwi_executable)" "${@}"