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

226 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
KIWI_VERSION_TAG="etc/version_tag"
2020-08-26 11:56:51 +00:00
# dependencies to run kiwi-scp
KIWI_DEPS="python3 pipenv less docker docker-compose"
2020-08-20 22:04:26 +00:00
# base install dir
2020-08-26 11:56:51 +00:00
KIWI_BASEDIR="${HOME}/.local/lib/kiwi-scp"
# per-user env setup script
KIWI_ENVFILE="${HOME}/.kiwienv"
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
2020-08-26 11:56:51 +00:00
KIWI_URI="https://raw.githubusercontent.com/ldericher/kiwi-scp/master/kiwi"
INSTALLER_URI="https://raw.githubusercontent.com/ldericher/kiwi-scp/master/install.sh"
# canary file: limit curl requests
2020-08-26 11:56:51 +00:00
CANARY_FILENAME="/var/lock/kiwi-scp.canary"
CANARY_MAXAGE=600
###################
# DYNAMIC STRINGS #
###################
2020-08-26 11:56:51 +00:00
# uri of correct kiwi-scp archive
kiwi_archive_uri() {
echo "${KIWI_REPO}/archive/${KIWI_VERSION}.tar.gz"
}
# directory of correct installation
kiwi_installdir() {
echo "${KIWI_BASEDIR}/${KIWI_VERSION}"
}
# src directory in installed version
kiwi_root() {
echo "$(kiwi_installdir)/src"
}
# main script in installed version
kiwi_executable() {
2020-08-26 11:56:51 +00:00
echo "$(kiwi_root)/kiwi-scp.py"
}
# cache current work directory
WORKDIR="$(pwd)"
#############
# 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
if [ -f "${KIWI_ENVFILE}" ]; then
2020-08-20 22:04:26 +00:00
# shellcheck source=$HOME/.kiwienv
. "${KIWI_ENVFILE}"
fi
##########
# CHECKS #
##########
for dep in ${KIWI_DEPS}; 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
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')"
canary_mtime="$(date -r "${CANARY_FILENAME}" '+%s')"
canary_age="$(( current_time - canary_mtime ))"
if [ ${canary_age} -gt ${CANARY_MAXAGE} ]; 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
hash_local="$(md5sum < "$(readlink "${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
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
touch "${CANARY_FILENAME}"
fi
2020-08-04 00:56:29 +00:00
# check if pwd is a kiwi folder
if [ -f "./${KIWI_CONF_NAME}" ]; then
2020-08-26 11:56:51 +00:00
# determine needed kiwi-scp version
2020-08-20 22:04:26 +00:00
re_version_line='version\s*:\s*'
2020-08-24 12:48:50 +00:00
eval "$(grep -E "${re_version_line}" "./${KIWI_CONF_NAME}" | sed -r "s/${re_version_line}/KIWI_VERSION=/")"
2020-08-04 00:56:29 +00:00
fi
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
# switch to temp dir
tmpdir=$(mktemp -d)
cd "${tmpdir}" || :
2020-08-04 00:56:29 +00:00
# download archive
curl --proto '=https' --tlsv1.2 -sSfL "$(kiwi_archive_uri)" | tar xz
2020-08-04 00:56:29 +00:00
# read archive version tag
2020-08-26 11:56:51 +00:00
cd "kiwi-scp-${KIWI_VERSION}" || :
KIWI_VERSION=$(cat "./src/${KIWI_VERSION_TAG}")
2020-08-04 00:56:29 +00:00
2020-08-24 17:40:55 +00:00
if [ -x "$(kiwi_executable)" ]; then
# after version update: no need to install
echo "v${KIWI_VERSION} already installed!"
2020-08-24 17:40:55 +00:00
else
# install archive
mkdir -p "$(kiwi_installdir)"
mv "src" "Pipfile" "Pipfile.lock" "$(kiwi_installdir)/"
echo "OK"
fi
2020-08-04 00:56:29 +00:00
# discard temp dir
cd "${WORKDIR}" || :
rm -rf "${tmpdir}"
2020-08-04 00:56:29 +00:00
fi
# go back to the original work directory
2020-08-20 22:04:26 +00:00
cd "${WORKDIR}" || :
# setup main environment
KIWI_ROOT="$(kiwi_root)"
PIPENV_VERBOSITY=-1
PIPENV_PIPFILE="$(kiwi_installdir)/Pipfile"
export KIWI_CONF_NAME
export KIWI_ROOT
export PIPENV_VERBOSITY
export PIPENV_PIPFILE
2020-08-04 14:38:51 +00:00
# check virtualenv
cd "$(kiwi_installdir)" || :
if ! pipenv --venv >/dev/null 2>/dev/null; then
# install virtualenv
printf "Preparing virtualenv ... "
pipenv sync >/dev/null 2>/dev/null
echo "OK"
fi
2020-08-04 00:56:29 +00:00
# run main script
2020-08-20 22:04:26 +00:00
exec pipenv run "$(kiwi_executable)" "${@}"