2019-09-20 17:01:12 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
2021-04-19 12:54:35 +00:00
|
|
|
if ${X_MODE:-false}; then
|
|
|
|
set -x
|
|
|
|
fi
|
2020-03-19 12:19:50 +00:00
|
|
|
|
|
|
|
# =====================
|
|
|
|
# paths
|
|
|
|
# =====================
|
|
|
|
|
2021-06-15 13:02:34 +00:00
|
|
|
export CARGO_DEFAULT_BIN="${HOME}/.cargo/bin"
|
|
|
|
export BIN_DIR="${BIN_DIR:-"$CARGO_DEFAULT_BIN"}"
|
2020-03-09 21:41:06 +00:00
|
|
|
|
2020-03-19 12:19:50 +00:00
|
|
|
|
|
|
|
# =====================
|
|
|
|
# logging
|
|
|
|
# =====================
|
|
|
|
|
2020-03-04 21:01:23 +00:00
|
|
|
echoerr() {
|
|
|
|
echo "$@" 1>&2
|
|
|
|
}
|
|
|
|
|
2020-03-19 12:19:50 +00:00
|
|
|
tap() {
|
|
|
|
local -r x="$(cat)"
|
|
|
|
echoerr "$x"
|
|
|
|
echo "$x"
|
|
|
|
}
|
|
|
|
|
|
|
|
log::ansi() {
|
|
|
|
local bg=false
|
|
|
|
case "$@" in
|
|
|
|
*reset*) echo "\e[0m"; return 0 ;;
|
|
|
|
*black*) color=30 ;;
|
|
|
|
*red*) color=31 ;;
|
|
|
|
*green*) color=32 ;;
|
|
|
|
*yellow*) color=33 ;;
|
|
|
|
*blue*) color=34 ;;
|
|
|
|
*purple*) color=35 ;;
|
|
|
|
*cyan*) color=36 ;;
|
|
|
|
*white*) color=37 ;;
|
|
|
|
esac
|
|
|
|
case "$@" in
|
|
|
|
*regular*) mod=0 ;;
|
|
|
|
*bold*) mod=1 ;;
|
|
|
|
*underline*) mod=4 ;;
|
|
|
|
esac
|
|
|
|
case "$@" in
|
|
|
|
*background*) bg=true ;;
|
|
|
|
*bg*) bg=true ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if $bg; then
|
|
|
|
echo "\e[${color}m"
|
|
|
|
else
|
|
|
|
echo "\e[${mod:-0};${color}m"
|
|
|
|
fi
|
2020-03-04 21:01:23 +00:00
|
|
|
}
|
|
|
|
|
2020-03-19 12:19:50 +00:00
|
|
|
_log() {
|
|
|
|
local template="$1"
|
|
|
|
shift
|
2021-04-19 12:54:35 +00:00
|
|
|
echoerr "$(printf "$template" "$@")"
|
2020-03-19 12:19:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_header() {
|
|
|
|
local TOTAL_CHARS=60
|
|
|
|
local total=$TOTAL_CHARS-2
|
|
|
|
local size=${#1}
|
|
|
|
local left=$((($total - $size) / 2))
|
|
|
|
local right=$(($total - $size - $left))
|
|
|
|
printf "%${left}s" '' | tr ' ' =
|
|
|
|
printf " $1 "
|
|
|
|
printf "%${right}s" '' | tr ' ' =
|
|
|
|
}
|
|
|
|
|
|
|
|
log::header() { _log "\n$(log::ansi bold)$(log::ansi purple)$(_header "$1")$(log::ansi reset)\n"; }
|
|
|
|
log::success() { _log "$(log::ansi green)✔ %s$(log::ansi reset)\n" "$@"; }
|
|
|
|
log::error() { _log "$(log::ansi red)✖ %s$(log::ansi reset)\n" "$@"; }
|
|
|
|
log::warning() { _log "$(log::ansi yellow)➜ %s$(log::ansi reset)\n" "$@"; }
|
|
|
|
log::note() { _log "$(log::ansi blue)%s$(log::ansi reset)\n" "$@"; }
|
|
|
|
|
|
|
|
# TODO: remove
|
|
|
|
header() {
|
|
|
|
echoerr "$*"
|
|
|
|
echoerr
|
|
|
|
}
|
|
|
|
|
|
|
|
die() {
|
|
|
|
log::error "$@"
|
|
|
|
exit 42
|
|
|
|
}
|
|
|
|
|
|
|
|
no_binary_warning() {
|
2021-04-19 12:54:35 +00:00
|
|
|
log::note "There's no precompiled binary for your platform: $(uname -a)"
|
2020-03-19 12:19:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
installation_finish_instructions() {
|
|
|
|
local -r shell="$(get_shell)"
|
2021-04-19 12:54:35 +00:00
|
|
|
log::note -e "Finished. To call navi, restart your shell or reload the config file:\n source ~/.${shell}rc"
|
2020-03-19 12:19:50 +00:00
|
|
|
local code
|
2020-03-26 00:06:42 +00:00
|
|
|
if [[ "$shell" == "zsh" ]]; then
|
2020-03-19 12:19:50 +00:00
|
|
|
code="navi widget ${shell} | source"
|
|
|
|
else
|
|
|
|
code='source <(navi widget '"$shell"')'
|
|
|
|
fi
|
2021-04-19 12:54:35 +00:00
|
|
|
log::note -e "\nTo add the Ctrl-G keybinding, add the following to ~/.${shell}rc:\n ${code}"
|
2020-03-19 12:19:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# =====================
|
|
|
|
# security
|
|
|
|
# =====================
|
|
|
|
|
2020-03-04 21:01:23 +00:00
|
|
|
sha256() {
|
|
|
|
if command_exists sha256sum; then
|
|
|
|
sha256sum
|
|
|
|
elif command_exists shasum; then
|
|
|
|
shasum -a 256
|
|
|
|
elif command_exists openssl; then
|
|
|
|
openssl dgst -sha256
|
|
|
|
else
|
2021-04-19 12:54:35 +00:00
|
|
|
log::note "Unable to calculate sha256!"
|
2020-03-04 21:01:23 +00:00
|
|
|
exit 43
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-03-19 12:19:50 +00:00
|
|
|
|
|
|
|
# =====================
|
|
|
|
# github
|
|
|
|
# =====================
|
2020-03-04 21:01:23 +00:00
|
|
|
|
|
|
|
latest_version_released() {
|
|
|
|
curl -s 'https://api.github.com/repos/denisidoro/navi/releases/latest' \
|
2023-04-24 17:55:13 +00:00
|
|
|
| grep -Eo '"html_url": "https://github.com/denisidoro/navi/releases/tag/v([0-9\.]+)' \
|
|
|
|
| sed 's|"html_url": "https://github.com/denisidoro/navi/releases/tag/v||'
|
2020-03-04 21:01:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
asset_url() {
|
2020-03-11 14:30:25 +00:00
|
|
|
local -r version="$1"
|
|
|
|
local -r variant="${2:-}"
|
|
|
|
|
|
|
|
if [[ -n "$variant" ]]; then
|
2020-03-16 11:21:28 +00:00
|
|
|
echo "https://github.com/denisidoro/navi/releases/download/v${version}/navi-v${version}-${variant}.tar.gz"
|
2020-03-11 14:30:25 +00:00
|
|
|
else
|
|
|
|
echo "https://github.com/denisidoro/navi/archive/v${version}.tar.gz"
|
|
|
|
fi
|
2020-03-04 21:01:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
download_asset() {
|
2021-04-19 12:54:35 +00:00
|
|
|
local -r tmp_dir="$(mktemp -d -t navi-install-XXXX)"
|
2020-03-04 21:01:23 +00:00
|
|
|
local -r url="$(asset_url "$@")"
|
2021-04-19 12:54:35 +00:00
|
|
|
log::note "Downloading ${url}..."
|
|
|
|
cd "$tmp_dir"
|
2020-03-04 21:01:23 +00:00
|
|
|
curl -L "$url" -o navi.tar.gz
|
|
|
|
tar xvzf navi.tar.gz
|
2021-04-19 12:54:35 +00:00
|
|
|
mkdir -p "${BIN_DIR}" &>/dev/null || true
|
|
|
|
mv "./navi" "${BIN_DIR}/navi"
|
2020-03-04 21:01:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sha_for_asset_on_github() {
|
2020-03-11 14:30:25 +00:00
|
|
|
local -r url="$(asset_url "$@")"
|
|
|
|
curl -sL "$url" | sha256 | awk '{print $1}'
|
2020-03-04 21:01:23 +00:00
|
|
|
}
|
|
|
|
|
2021-04-19 12:54:35 +00:00
|
|
|
error_installing() {
|
|
|
|
log::error "Unable to install navi. Please check https://github.com/denisidoro/navi for alternative installation instructions"
|
|
|
|
exit 33
|
|
|
|
}
|
|
|
|
|
2020-03-19 12:19:50 +00:00
|
|
|
|
|
|
|
# =====================
|
|
|
|
# code
|
|
|
|
# =====================
|
|
|
|
|
|
|
|
version_from_toml() {
|
|
|
|
cat "${NAVI_HOME}/Cargo.toml" \
|
|
|
|
| grep version \
|
|
|
|
| head -n1 \
|
|
|
|
| awk '{print $NF}' \
|
|
|
|
| tr -d '"' \
|
|
|
|
| tr -d "'"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# =====================
|
|
|
|
# platform
|
|
|
|
# =====================
|
|
|
|
|
|
|
|
command_exists() {
|
|
|
|
type "$1" &>/dev/null
|
|
|
|
}
|
|
|
|
|
2020-03-04 21:01:23 +00:00
|
|
|
get_target() {
|
|
|
|
local -r unamea="$(uname -a)"
|
|
|
|
local -r archi="$(uname -sm)"
|
|
|
|
|
|
|
|
local target
|
2021-04-19 12:54:35 +00:00
|
|
|
case "$unamea $archi" in
|
|
|
|
*arwin*) target="x86_64-apple-darwin" ;;
|
|
|
|
*inux*x86*) target="x86_64-unknown-linux-musl" ;;
|
|
|
|
*ndroid*aarch*|*ndroid*arm*) target="aarch64-linux-android" ;;
|
|
|
|
*inux*aarch*|*inux*arm*) target="armv7-unknown-linux-musleabihf" ;;
|
2020-03-04 21:01:23 +00:00
|
|
|
*) target="" ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
echo "$target"
|
|
|
|
}
|
|
|
|
|
|
|
|
get_shell() {
|
|
|
|
echo $SHELL | xargs basename
|
|
|
|
}
|
|
|
|
|
2020-03-19 12:19:50 +00:00
|
|
|
|
|
|
|
# =====================
|
|
|
|
# main
|
|
|
|
# =====================
|
2020-03-16 11:13:55 +00:00
|
|
|
|
2021-04-19 13:51:24 +00:00
|
|
|
export_path_cmd() {
|
|
|
|
echo
|
2021-06-15 13:02:34 +00:00
|
|
|
echo ' export PATH="${PATH}:'"$1"'"'
|
2021-04-19 13:51:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
append_to_file() {
|
|
|
|
local -r path="$1"
|
|
|
|
local -r text="$2"
|
|
|
|
if [ -f "$path" ]; then
|
|
|
|
echo "$text" >> "$path"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2021-06-15 13:02:34 +00:00
|
|
|
get_navi_bin_path() {
|
|
|
|
local file="${BIN_DIR}/navi"
|
|
|
|
if [ -f "$file" ]; then
|
|
|
|
echo "$file"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
file="${CARGO_DEFAULT_BIN}/navi"
|
|
|
|
if [ -f "$file" ]; then
|
|
|
|
echo "$file"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-03-04 21:01:23 +00:00
|
|
|
install_navi() {
|
|
|
|
local -r target="$(get_target)"
|
2020-03-09 21:41:06 +00:00
|
|
|
|
2021-04-19 12:54:35 +00:00
|
|
|
if command_exists navi; then
|
|
|
|
log::success "navi is already installed"
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
elif command_exists brew; then
|
|
|
|
brew install navi
|
2024-01-26 11:50:48 +00:00
|
|
|
|
2021-04-19 12:54:35 +00:00
|
|
|
elif [[ -n "$target" ]]; then
|
|
|
|
local -r version="$(latest_version_released)"
|
|
|
|
download_asset "$version" "$target" || error_installing
|
2020-03-09 21:41:06 +00:00
|
|
|
|
2024-01-26 11:50:48 +00:00
|
|
|
elif command_exists cargo; then
|
|
|
|
cargo install navi
|
|
|
|
|
2020-03-04 21:01:23 +00:00
|
|
|
else
|
2021-04-19 12:54:35 +00:00
|
|
|
error_installing
|
|
|
|
|
2020-03-04 21:01:23 +00:00
|
|
|
fi
|
|
|
|
|
2021-06-15 13:02:34 +00:00
|
|
|
hash -r 2>/dev/null || true
|
|
|
|
|
|
|
|
local navi_bin_path="$(which navi || get_navi_bin_path)"
|
|
|
|
ln -s "$navi_bin_path" "${BIN_DIR}/navi" &>/dev/null || true
|
|
|
|
if [ -f "${BIN_DIR}/navi" ]; then
|
|
|
|
navi_bin_path="${BIN_DIR}/navi"
|
|
|
|
fi
|
|
|
|
|
|
|
|
local -r navi_bin_dir="$(dirname "$navi_bin_path")"
|
|
|
|
|
2021-04-19 12:54:35 +00:00
|
|
|
echoerr
|
|
|
|
log::success "Finished"
|
2021-06-15 13:02:34 +00:00
|
|
|
log::success "navi is now available at ${navi_bin_path}"
|
2021-04-19 12:54:35 +00:00
|
|
|
echoerr
|
|
|
|
|
2022-10-09 04:16:00 +00:00
|
|
|
if echo "$PATH" | grep -q "$navi_bin_dir"; then
|
2021-04-19 12:54:35 +00:00
|
|
|
:
|
|
|
|
else
|
2022-10-09 04:16:00 +00:00
|
|
|
local -r cmd="$(export_path_cmd "$navi_bin_dir")"
|
2021-04-19 13:51:24 +00:00
|
|
|
append_to_file "${HOME}/.bashrc" "$cmd"
|
|
|
|
append_to_file "${ZDOTDIR:-"$HOME"}/.zshrc" "$cmd"
|
|
|
|
append_to_file "${HOME}/.fishrc" "$cmd"
|
2021-04-19 12:54:35 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
log::note "To call navi, restart your shell or reload your .bashrc-like config file"
|
|
|
|
echo
|
|
|
|
log::note "Check https://github.com/denisidoro/navi for more info"
|
|
|
|
|
2022-10-09 04:16:00 +00:00
|
|
|
export PATH="${PATH}:${navi_bin_dir}"
|
2021-04-19 12:54:35 +00:00
|
|
|
|
2020-03-04 21:01:23 +00:00
|
|
|
return 0
|
|
|
|
}
|
2019-09-24 19:13:57 +00:00
|
|
|
|
2020-03-04 21:01:23 +00:00
|
|
|
(return 0 2>/dev/null) || install_navi "$@"
|