tpm/scripts/install_plugins.sh

76 lines
1.9 KiB
Bash
Raw Normal View History

2014-05-18 18:35:55 -04:00
#!/usr/bin/env bash
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2015-08-03 09:12:45 -04:00
HELPERS_DIR="$CURRENT_DIR/helpers"
2014-05-18 18:35:55 -04:00
2015-08-03 11:40:50 -04:00
source "$HELPERS_DIR/plugin_functions.sh"
source "$HELPERS_DIR/utility.sh"
2014-05-18 18:35:55 -04:00
2015-08-03 09:12:45 -04:00
if [ "$1" == "--tmux-echo" ]; then # tmux-specific echo functions
source "$HELPERS_DIR/tmux_echo_functions.sh"
else # shell output functions
source "$HELPERS_DIR/shell_echo_functions.sh"
fi
2014-05-18 18:35:55 -04:00
clone() {
2021-08-14 05:00:04 -04:00
local plugin="$1"
local branch="$2"
if [ -n "$branch" ]; then
cd "$(tpm_path)" &&
GIT_TERMINAL_PROMPT=0 git clone -b "$branch" --single-branch --recursive "$plugin" >/dev/null 2>&1
else
cd "$(tpm_path)" &&
GIT_TERMINAL_PROMPT=0 git clone --single-branch --recursive "$plugin" >/dev/null 2>&1
fi
2014-05-18 18:35:55 -04:00
}
# tries cloning:
# 1. plugin name directly - works if it's a valid git url
2022-01-01 03:49:21 -05:00
# 2. expands the plugin name to point to a GitHub repo and tries cloning again
2014-05-18 18:35:55 -04:00
clone_plugin() {
local plugin="$1"
2019-05-19 16:59:06 -04:00
local branch="$2"
clone "$plugin" "$branch" ||
clone "https://git::@github.com/$plugin" "$branch"
2014-05-18 18:35:55 -04:00
}
# clone plugin and produce output
2014-08-05 12:15:07 -04:00
install_plugin() {
2021-08-14 05:00:04 -04:00
local plugin="$1"
local branch="$2"
2015-08-03 11:40:50 -04:00
local plugin_name="$(plugin_name_helper "$plugin")"
2014-08-05 14:50:47 -04:00
if plugin_already_installed "$plugin"; then
echo_ok "Already installed \"$plugin_name\""
2014-05-24 17:15:13 -04:00
else
echo_ok "Installing \"$plugin_name\""
2019-05-19 16:59:06 -04:00
clone_plugin "$plugin" "$branch" &&
echo_ok " \"$plugin_name\" download success" ||
echo_err " \"$plugin_name\" download fail"
2014-05-24 17:15:13 -04:00
fi
2014-05-18 18:35:55 -04:00
}
2014-08-05 12:15:07 -04:00
install_plugins() {
2015-08-03 11:40:50 -04:00
local plugins="$(tpm_plugins_list_helper)"
2014-05-24 17:15:13 -04:00
for plugin in $plugins; do
2019-05-19 16:59:06 -04:00
IFS='#' read -ra plugin <<< "$plugin"
install_plugin "${plugin[0]}" "${plugin[1]}"
2014-05-24 17:15:13 -04:00
done
2014-05-18 18:35:55 -04:00
}
verify_tpm_path_permissions() {
local path="$(tpm_path)"
# check the write permission flag for all users to ensure
# that we have proper access
[ -w "$path" ] ||
echo_err "$path is not writable!"
}
2014-05-18 18:35:55 -04:00
main() {
2014-05-24 17:15:13 -04:00
ensure_tpm_path_exists
verify_tpm_path_permissions
2014-08-05 12:15:07 -04:00
install_plugins
exit_value_helper
2014-05-18 18:35:55 -04:00
}
main