generated from asdf-vm/asdf-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: asdf-plugin-manager first version (#1)
Manage asdf plugins securely and declaratively. Fixes: - asdf-vm/asdf#166 - asdf-vm/asdf#240 - asdf-vm/asdf#829 - asdf-vm/asdf#1577
- Loading branch information
Showing
13 changed files
with
243 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Lint | ||
name: Semantic PR | ||
|
||
on: | ||
pull_request_target: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -eo pipefail | ||
|
||
VERSION=1.0.0 | ||
PLUGIN_VERSIONS_FILENAME="${ASDF_PLUGIN_MANAGER_PLUGIN_VERSIONS_FILENAME:-.plugin-versions}" | ||
|
||
print_version() { | ||
echo "${VERSION}" | ||
} | ||
|
||
print_plugin_versions_filename() { | ||
echo "${PLUGIN_VERSIONS_FILENAME}" | ||
} | ||
|
||
print_help() { | ||
cat <<EOF | ||
Manage asdf plugins securely and declaratively via .plugin-versions file. | ||
Using asdf-plugin-manager, you can set plugins Git URL and ref for security and integrity. | ||
VARS: | ||
ASDF_PLUGIN_MANAGER_PLUGIN_VERSIONS_FILENAME: Set default name for the file with the list of managed plugins. | ||
Default: "$(print_plugin_versions_filename)". | ||
USAGE: | ||
asdf-plugin-manager help : Print this help message | ||
asdf-plugin-manager version : Print asdf-plugin-manager current version | ||
asdf-plugin-manager list : List managed plugins according to .plugin-versions file | ||
asdf-plugin-manager add <plugin-name> : Add named plugin according to .plugin-versions file | ||
asdf-plugin-manager add-all : Add all plugins according to .plugin-versions file | ||
asdf-plugin-manager remove <plugin-name> : Remove named plugin according to .plugin-versions file | ||
asdf-plugin-manager remove-all : Remove all plugins according to .plugin-versions file | ||
EOF | ||
} | ||
|
||
list_plugins() { | ||
plugin_name=$1 | ||
if [[ -n ${plugin_name} ]]; then | ||
grep "^${plugin_name} " "$(print_plugin_versions_filename)" | ||
else | ||
grep -v "^#" "$(print_plugin_versions_filename)" | ||
fi | ||
} | ||
|
||
remove_plugins() { | ||
local managed_plugins="$1" | ||
echo "${managed_plugins}" | while read managed_plugin; do | ||
read -r plugin_name _plugin_url _plugin_ref < <(echo ${managed_plugin}) | ||
echo "[INFO] Removing: ${plugin_name}" | ||
asdf plugin remove "${plugin_name}" || true | ||
done | ||
} | ||
|
||
add_plugins() { | ||
local managed_plugins="$1" | ||
echo "${managed_plugins}" | while read managed_plugin; do | ||
read -r plugin_name plugin_url plugin_ref < <(echo ${managed_plugin}) | ||
echo "[INFO] Adding: ${plugin_name} ${plugin_url} ${plugin_ref}" | ||
remove_plugins "$(list_plugins ${plugin_name})" | ||
asdf plugin add "${plugin_name}" "${plugin_url}" | ||
# TODO: Remove the plugin update once asdf supports adding plugin with git-ref. | ||
# https://github.com/asdf-vm/asdf/pull/1204 | ||
asdf plugin update "${plugin_name}" "${plugin_ref}" | ||
echo "[INFO] Done." | ||
done | ||
} | ||
|
||
if [[ -z $1 ]]; then | ||
print_help | ||
exit 1 | ||
fi | ||
|
||
while test -n "$1"; do | ||
case "$1" in | ||
help | -h) | ||
print_help | ||
exit 1 | ||
;; | ||
version | -v) | ||
print_version | ||
exit 0 | ||
;; | ||
list) | ||
list_plugins | ||
;; | ||
add) | ||
add_plugins "$(list_plugins $2)" | ||
;; | ||
add-all) | ||
add_plugins "$(list_plugins)" | ||
;; | ||
remove) | ||
remove_plugins "$(list_plugins $2)" | ||
;; | ||
remove-all) | ||
remove_plugins "$(list_plugins)" | ||
;; | ||
*) | ||
echo "Unknown argument: $1" | ||
print_help | ||
exit 1 | ||
;; | ||
esac | ||
shift | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.