the-bastion/bin/admin/install-ttyrec.sh
2020-11-17 21:04:22 +01:00

218 lines
5.9 KiB
Bash
Executable file

#! /usr/bin/env bash
# vim: set filetype=sh ts=4 sw=4 sts=4 et:
set -e
RELEASE_API_URL='https://api.github.com/repos/ovh/ovh-ttyrec/releases'
basedir=$(readlink -f "$(dirname "$0")"/../..)
# shellcheck source=lib/shell/functions.inc
. "$basedir"/lib/shell/functions.inc
usage() {
cat <<EOF
Options:
-s Download and install precompiled ttyrec static binaries in /usr/local/bin
-d Download the prebuilt Debian package, and install it (for Debian, Ubuntu and derivatives)
-r Download the prebuild RPM package, and install it (for RHEL, CentOS and derivatives)
-a Automatically detect the OS to install the proper package type, fallback to static binaries if no package applies
-h Show this help
EOF
}
set_download_url() {
pattern="$1"
action_doing "Looking for download tool..."
if command -v wget >/dev/null; then
action_done wget
_apicall() {
wget -q -O - --header="Accept: application/vnd.github.v3+json" "$1" || true
}
_download() {
wget -q "$1"
}
elif command -v curl >/dev/null; then
action_done curl
_apicall() {
curl -sL -H 'Accept: application/vnd.github.v3+json' "$1" || true
}
_download() {
curl -sL -O "$1"
}
elif command -v fetch >/dev/null; then
action_done fetch
_apicall() {
fetch -o - "$1" || true
}
_download() {
fetch "$1"
}
else
action_error "Couldn't find wget, curl nor fetch"
exit 1
fi
action_doing "Getting latest release for arch $arch..."
payload=$(mktemp)
# shellcheck disable=SC2064
trap "rm -f $payload" EXIT
_apicall $RELEASE_API_URL > "$payload"
if command -v jq >/dev/null; then
# If we have jq, we can do it properly
url=$(jq -r '.[0].assets|.[]|.browser_download_url' < "$payload" | grep -F "$pattern" | head -n1)
elif perl -MJSON -e 1 2>/dev/null; then
# If we don't, there's a good chance we have Perl with the JSON module, use it
url=$(perl -MJSON -e 'undef $/; $d=decode_json(<>); foreach(@{ $d->[0]{assets} || [] }) { $_=$_->{browser_download_url}; /\Q'"$pattern"'\E/ && print && exit }' "$payload" | head -n1)
else
# Otherwise, go the ugly way, don't bother the user in installing jq just for this need
url=$(grep -Eo 'https://[a-z0-9./_-]+' "$payload" | grep -F "$pattern" | head -n1)
fi
if [ -n "$url" ]; then
action_detail "$url"
else
action_error "Couldn't find a proper URL for your architecture ($arch), looked for pattern '$pattern'. You may have to compile ovh-ttyrec yourself!"
exit 1
fi
}
prepare_temp_folder() {
tmpfolder=$(mktemp -d)
# shellcheck disable=SC2064
trap "test -d '$tmpfolder' && rm -rf -- '$tmpfolder'" EXIT
cd "$tmpfolder"
}
action_static() {
if command -v dpkg >/dev/null; then
set_arch_from_deb
elif command -v rpm >/dev/null; then
set_arch_from_rpm
else
arch=$(uname -m)
fi
os=$(uname -s | tr '[:upper:]' '[:lower:]')
set_download_url "_$arch-$os-static-binary.tar.gz"
prepare_temp_folder
_download "$url"
# we have just one archive file in the current temp directory
# shellcheck disable=SC2035
tar xzf *.tar.gz
# at this point we have just one directory, named ovh-ttyrec-w.x.y.z, just use the shell completion to get in it!
cd ovh-ttyrec-*/
action_done
action_doing "Installing files"
for file in ttytime ttyrec ttyplay; do
action_detail "/usr/local/bin/$file"
install -m 0755 "$file" /usr/local/bin/
done
cd docs
for file in *.1; do
action_detail "/usr/local/man/man1/$file"
install -m 0644 "$file" /usr/local/man/man1/
done
action_done
cd /
}
set_arch_from_deb() {
arch=$(dpkg --print-architecture)
}
action_debian() {
if ! command -v dpkg >/dev/null; then
echo "Couldn't find dpkg, aborting" >&2
exit 1
fi
set_arch_from_deb
set_download_url "_$arch.deb"
prepare_temp_folder
_download "$url"
action_done
action_doing "Installing package"
if dpkg -i -- *.deb; then
action_done
else
action_error
fi
cd /
}
set_arch_from_rpm() {
arch=$(rpm -E '%{_arch}')
# in some cases, %{_arch} is not defined, so the macro isn't expanded.
# In that case, find it ourselves
if [ "$arch" = "%{_arch}" ]; then
arch=$(rpm --showrc | grep "^install arch" | awk '{print $4}')
fi
}
action_rpm() {
if ! command -v rpm >/dev/null; then
echo "Couldn't find rpm, aborting" >&2
exit 1
fi
set_arch_from_rpm
set_download_url ".$arch.rpm"
prepare_temp_folder
_download "$url"
action_done
action_doing "Installing package"
if rpm -Uvh -- *.rpm; then
action_done
else
action_error
fi
cd /
}
action_auto() {
action_doing "Detecting OS..."
action_detail "Found $OS_FAMILY"
if [ "$OS_FAMILY" = Linux ]; then
action_detail "Found distro $LINUX_DISTRO version $DISTRO_VERSION (major $DISTRO_VERSION_MAJOR), distro like $DISTRO_LIKE"
fi
action_done
case "$DISTRO_LIKE" in
*debian*) action_debian;;
*rhel*) action_rpm;;
*suse*) action_rpm;;
*)
if [ "$OS_FAMILY" = Linux ]; then
action_static
else
echo "This script doesn't support this OS yet ($DISTRO_LIKE)" >&2
exit 1
fi;;
esac
}
if [ "$OS_FAMILY" != "Linux" ] && [ "$OS_FAMILY" != "FreeBSD" ]; then
echo "Sorry, your OS ($OS_FAMILY) is not supported." >&2
exit 1
fi
while getopts :sdrah arg; do
case "$arg" in
s) action_static; exit 0;;
d) action_debian; exit 0;;
r) action_rpm; exit 0;;
a) action_auto; exit 0;;
h) usage; exit 0;;
?) echo "Invalid option: -$OPTARG"; usage; exit 1;;
esac
done
usage