make webi great again
authorAJ ONeal <coolaj86@gmail.com>
Mon, 4 May 2020 04:35:23 +0000 (22:35 -0600)
committerAJ ONeal <coolaj86@gmail.com>
Mon, 4 May 2020 04:35:23 +0000 (22:35 -0600)
webi/webi.bash

index 1231c7720e34b8e814b4c5e896af70375fc7525e..9ca3a8819f585073e6422c3f2d736a3394a67ba0 100644 (file)
@@ -7,12 +7,12 @@
 #   for the people like us that are too lazy even to run <kbd>curl&nbsp;https://webinstall.dev/PACKAGE_NAME&nbsp;|&nbsp;bash</kbd>
 # examples: |
 #   ```bash
-#   webi node
+#   webi node@latest
 #   ```
 #   <br/>
 #
 #   ```bash
-#   webi golang
+#   webi golang@v1.14
 #   ```
 #   <br/>
 #
 #   webi rustlang
 #   ```
 
-# TODO webi package@semver#channel
+{
+
+mkdir -p "$HOME/.local/bin"
+
+cat << EOF > "$HOME/.local/bin/webi"
+#!/bin/bash
 
-cat << EOF > ~/.local/bin/webi
 set -e
 set -u
 
-my_package=\${1:-}
+my_package="\${1:-}"
 if [ -z "\$my_package" ]; then
-       echo "Usage: webi <package>"
-       echo "Example: webi node"
+       echo "Usage: webi <package>@<version>"
+       echo "Example: webi node@latest"
        exit 1
 fi
 
-curl -fsSL "https://webinstall.dev/\$my_package" | bash
+##
+## Detect acceptable package formats
+##
+
+my_ext=""
+set +e
+if [ -n "\$(command -v git)" ]; then
+       my_ext="git,\${my_ext}"
+fi
+if [ -n "\$(command -v tar)" ]; then
+       my_ext="tar,\${my_ext}"
+fi
+if [ -n "\$(command -v unzip)" ]; then
+       my_ext="zip,\${my_ext}"
+fi
+if [ -n "\$(command -v pkgutil)" ]; then
+       my_ext="pkg,\${my_ext}"
+fi
+if [ -n "\$(command -v diskutil)" ]; then
+       # note: could also detect via hdiutil
+       my_ext="dmg,\${my_ext}"
+fi
+set -e
+
+##
+## Detect http client
+##
+set +e
+export WEBI_CURL="\$(command -v curl)"
+export WEBI_WGET="\$(command -v wget)"
+set -e
+
+export WEBI_BOOT="\$(mktemp -d -t "\$my_package-bootstrap.XXXXXXXX")"
+export WEBI_UA="\$(uname -a)"
+
+if [ -n "\$WEBI_CURL" ]; then
+       curl -fsSL "https://webinstall.dev/\$my_package?ext=\$my_ext" -H "User-Agent: curl \$WEBI_UA" \\
+               -o "\$WEBI_BOOT/\$my_package-bootstrap.sh"
+else
+       wget -q "https://webinstall.dev/\$my_package?ext=\$my_ext" --user-agent="wget \$WEBI_UA" \\
+               -O "\$WEBI_BOOT/\$my_package-bootstrap.sh"
+fi
+
+pushd "\$WEBI_BOOT" 2>&1 > /dev/null
+       bash "\$my_package-bootstrap.sh"
+popd 2>&1 > /dev/null
+
+rm -rf "\$WEBI_BOOT"
 EOF
+
 chmod a+x ~/.local/bin/webi
+
+}