2018-11-13 23:48:58 +00:00
#!/bin/sh
# This install script is intended to download and install the latest available
# release of the wasmer.
# Installer script inspired from:
# 1) https://raw.githubusercontent.com/golang/dep/master/install.sh
# 2) https://sh.rustup.rs
# 3) https://yarnpkg.com/install.sh
# 4) https://raw.githubusercontent.com/brainsik/virtualenv-burrito/master/virtualenv-burrito.sh
#
# It attempts to identify the current platform and an error will be thrown if
# the platform is not supported.
#
# Environment variables:
# - INSTALL_DIRECTORY (optional): defaults to $HOME/.wasmer
# - WASMER_RELEASE_TAG (optional): defaults to fetching the latest release
# - WASMER_OS (optional): use a specific value for OS (mostly for testing)
# - WASMER_ARCH (optional): use a specific value for ARCH (mostly for testing)
#
# You can install using this script:
2018-11-22 06:15:13 +00:00
# $ curl https://raw.githubusercontent.com/wasmerio/wasmer/master/install.sh | sh
2018-11-13 23:48:58 +00:00
set -e
reset = "\033[0m"
red = "\033[31m"
green = "\033[32m"
yellow = "\033[33m"
cyan = "\033[36m"
white = "\033[37m"
2018-11-15 04:00:14 +00:00
bold = "\e[1m"
dim = "\e[2m"
2018-11-13 23:48:58 +00:00
2018-11-22 06:15:13 +00:00
RELEASES_URL = "https://github.com/wasmerio/wasmer/releases"
2018-11-13 23:48:58 +00:00
wasmer_download_json( ) {
url = " $2 "
# echo "Fetching $url.."
if test -x " $( command -v curl) " ; then
response = $( curl -s -L -w 'HTTPSTATUS:%{http_code}' -H 'Accept: application/json' " $url " )
body = $( echo " $response " | sed -e 's/HTTPSTATUS\:.*//g' )
code = $( echo " $response " | tr -d '\n' | sed -e 's/.*HTTPSTATUS://' )
elif test -x " $( command -v wget) " ; then
temp = $( mktemp)
body = $( wget -q --header= 'Accept: application/json' -O - --server-response " $url " 2> " $temp " )
code = $( awk '/^ HTTP/{print $2}' < " $temp " | tail -1)
rm " $temp "
else
printf " $red > Neither curl nor wget was available to perform http requests. $reset \n "
exit 1
fi
if [ " $code " != 200 ] ; then
printf " $red >File download failed with code $code . $reset \n "
exit 1
fi
eval " $1 =' $body ' "
}
wasmer_download_file( ) {
url = " $1 "
destination = " $2 "
# echo "Fetching $url.."
if test -x " $( command -v curl) " ; then
2018-11-14 00:03:47 +00:00
code = $( curl --progress-bar -w '%{http_code}' -L " $url " -o " $destination " )
2018-11-13 23:48:58 +00:00
elif test -x " $( command -v wget) " ; then
2018-11-14 00:03:47 +00:00
code = $( wget --show-progress --progress= bar:force:noscroll -q -O " $destination " --server-response " $url " 2>& 1 | awk '/^ HTTP/{print $2}' | tail -1)
2018-11-13 23:48:58 +00:00
else
printf " $red > Neither curl nor wget was available to perform http requests. $reset \n "
exit 1
fi
if [ " $code " = = 404 ] ; then
printf " $red > Your architecture is not yet supported ( $OS - $ARCH ). $reset \n "
2018-11-22 06:15:13 +00:00
echo "> Please open an issue on the project if you would like to use wasmer in your project: https://github.com/wasmerio/wasmer"
2018-11-13 23:48:58 +00:00
exit 1
elif [ " $code " != 200 ] ; then
printf " $red >File download failed with code $code . $reset \n "
exit 1
fi
}
wasmer_detect_profile( ) {
if [ -n " ${ PROFILE } " ] && [ -f " ${ PROFILE } " ] ; then
echo " ${ PROFILE } "
return
fi
local DETECTED_PROFILE
DETECTED_PROFILE = ''
local SHELLTYPE
SHELLTYPE = " $( basename " / $SHELL " ) "
if [ " $SHELLTYPE " = "bash" ] ; then
if [ -f " $HOME /.bashrc " ] ; then
DETECTED_PROFILE = " $HOME /.bashrc "
elif [ -f " $HOME /.bash_profile " ] ; then
DETECTED_PROFILE = " $HOME /.bash_profile "
fi
elif [ " $SHELLTYPE " = "zsh" ] ; then
DETECTED_PROFILE = " $HOME /.zshrc "
elif [ " $SHELLTYPE " = "fish" ] ; then
DETECTED_PROFILE = " $HOME /.config/fish/config.fish "
fi
if [ -z " $DETECTED_PROFILE " ] ; then
if [ -f " $HOME /.profile " ] ; then
DETECTED_PROFILE = " $HOME /.profile "
elif [ -f " $HOME /.bashrc " ] ; then
DETECTED_PROFILE = " $HOME /.bashrc "
elif [ -f " $HOME /.bash_profile " ] ; then
DETECTED_PROFILE = " $HOME /.bash_profile "
elif [ -f " $HOME /.zshrc " ] ; then
DETECTED_PROFILE = " $HOME /.zshrc "
elif [ -f " $HOME /.config/fish/config.fish " ] ; then
DETECTED_PROFILE = " $HOME /.config/fish/config.fish "
fi
fi
if [ ! -z " $DETECTED_PROFILE " ] ; then
echo " $DETECTED_PROFILE "
fi
}
wasmer_link( ) {
2018-11-28 07:19:51 +00:00
printf " $cyan > Adding to bash profile... $reset \n "
2018-11-13 23:48:58 +00:00
WASMER_PROFILE = " $( wasmer_detect_profile) "
2018-11-28 07:19:51 +00:00
LOAD_STR = "\n# Wasmer\nexport WASMER_DIR=\"\$HOME/.wasmer\"\n[ -s \"\$WASMER_DIR/wasmer.sh\" ] && source \"\$WASMER_DIR/wasmer.sh\" # This loads wasmer\n"
SOURCE_STR = "# Wasmer config\nexport WASMER_DIR=\"\$HOME/.wasmer\"\nexport PATH=\"\$HOME/.wasmer/bin:\$PATH\"\n"
# We create the wasmer.sh file
echo " $SOURCE_STR " > " $HOME /.wasmer/wasmer.sh "
2018-11-13 23:48:58 +00:00
if [ -z " ${ WASMER_PROFILE - } " ] ; then
2018-11-15 04:00:14 +00:00
printf " ${ red } Profile not found. Tried:\n* ${ WASMER_PROFILE } (as defined in \$PROFILE)\n* ~/.bashrc\n* ~/.bash_profile\n* ~/.zshrc\n* ~/.profile.\n "
echo "\nHow to solve this issue?\n* Create one of them and run this script again"
echo " * Create it (touch ${ WASMER_PROFILE } ) and run this script again "
echo " OR"
printf " * Append the following lines to the correct file yourself: $reset \n "
2018-11-13 23:48:58 +00:00
command printf " ${ SOURCE_STR } "
else
2018-11-28 07:19:51 +00:00
if ! grep -q 'wasmer.sh' " $WASMER_PROFILE " ; then
# if [[ $WASMER_PROFILE == *"fish"* ]]; then
# command fish -c 'set -U fish_user_paths $fish_user_paths ~/.wasmer/bin'
# else
command printf " $LOAD_STR " >> " $WASMER_PROFILE "
# fi
2018-11-13 23:48:58 +00:00
fi
2018-11-28 07:19:51 +00:00
printf " \033[1A $cyan > Adding to bash profile... ✓ $reset \n "
2018-11-15 04:00:14 +00:00
printf " ${ dim } Note: We've added the following to your $WASMER_PROFILE \n "
echo "If this isn't the profile of your current shell then please add the following to your correct profile:"
2018-11-28 07:19:51 +00:00
printf " $LOAD_STR $reset \n "
2018-11-13 23:48:58 +00:00
version = ` $HOME /.wasmer/bin/wasmer --version` || (
2018-11-15 04:00:14 +00:00
printf " $red > wasmer was installed, but doesn't seem to be working :( $reset \n "
2018-11-13 23:48:58 +00:00
exit 1;
)
2018-11-28 07:19:51 +00:00
printf " $green > Successfully installed $version !\n\n ${ reset } If you want to have the command available now please execute:\nsource $HOME /.wasmer/wasmer.sh $reset \n "
printf "\nOtherwise, wasmer will be available the next time you open the terminal.\n"
2018-11-13 23:48:58 +00:00
fi
}
# findWasmerBinDirectory() {
# EFFECTIVE_WASMERPATH=$(wasmer env WASMERPATH)
# if [ -z "$EFFECTIVE_WASMERPATH" ]; then
# echo "Installation could not determine your \$WASMERPATH."
# exit 1
# fi
# if [ -z "$WASMERBIN" ]; then
# WASMERBIN=$(echo "${EFFECTIVE_WASMERPATH%%:*}/bin" | sed s#//*#/#g)
# fi
# if [ ! -d "$WASMERBIN" ]; then
# echo "Installation requires your WASMERBIN directory $WASMERBIN to exist. Please create it."
# exit 1
# fi
# eval "$1='$WASMERBIN'"
# }
initArch( ) {
ARCH = $( uname -m)
if [ -n " $WASMER_ARCH " ] ; then
printf " $cyan > Using WASMER_ARCH ( $WASMER_ARCH ). $reset \n "
ARCH = " $WASMER_ARCH "
fi
case $ARCH in
amd64) ARCH = "amd64" ; ;
x86_64) ARCH = "amd64" ; ;
# i386) ARCH="386";;
*) printf " $red > The system architecture ( ${ ARCH } ) is not supported by this installation script. $reset \n " ; exit 1; ;
esac
# echo "ARCH = $ARCH"
}
initOS( ) {
OS = $( uname | tr '[:upper:]' '[:lower:]' )
if [ -n " $WASMER_OS " ] ; then
printf " $cyan > Using WASMER_OS ( $WASMER_OS ). $reset \n "
OS = " $WASMER_OS "
fi
case " $OS " in
darwin) OS = 'darwin' ; ;
linux) OS = 'linux' ; ;
freebsd) OS = 'freebsd' ; ;
# mingw*) OS='windows';;
# msys*) OS='windows';;
*) printf " $red > The OS ( ${ OS } ) is not supported by this installation script. $reset \n " ; exit 1; ;
esac
# echo "OS = $OS"
}
# unset profile
# test -z "$exclude_profile" && modify_profile
# if [ -n "$profile" ]; then
# if [ -e $HOME/${profile}.pre-wasmer ]; then
# backup=" The original\nwas saved to ~/$profile.pre-wasmer."
# fi
# fi
# source $WASMERPATH/startup.sh
wasmer_install( ) {
2018-11-14 00:03:47 +00:00
magenta1 = " ${ reset } \033[34;1m "
magenta2 = " ${ reset } \033[34m "
magenta3 = " ${ reset } \033[34;2m "
2018-11-13 23:48:58 +00:00
2018-11-26 05:31:32 +00:00
if which wasmer >/dev/null; then
printf " ${ reset } Updating wasmer $reset \n "
else
printf " ${ reset } Installing Wasmer! $reset \n "
printf "
${ magenta1 } ${ magenta2 } ${ magenta3 } ###${reset}
${ magenta1 } ${ magenta2 } ${ magenta3 } #####${reset}
${ magenta1 } ${ magenta2 } ### ${magenta3}######${reset}
${ magenta1 } ${ magenta2 } ###### ${magenta3}#############${reset}
${ magenta1 } # ${magenta2}####### ${magenta3}##############${reset}
${ magenta1 } ##### ${magenta2}#############${magenta3}#########${reset}
${ magenta1 } ######${magenta2}###############${magenta3}#######${reset}
${ magenta1 } ############${magenta2}#########${magenta3}#######${reset}
${ magenta1 } ##############${magenta2}#######${magenta3}#######${reset}
${ magenta1 } ##############${magenta2}#######${magenta3}#######${reset}
${ magenta1 } ##############${magenta2}#######${magenta3}#######${reset}
${ magenta1 } ##############${magenta2}#######${magenta3} ###${reset}
${ magenta1 } ##############${magenta2}#######
${ magenta1 } ###########${magenta2} ###
${ magenta1 } ########${magenta2}
${ magenta1 } ####${reset}
2018-11-13 23:48:58 +00:00
"
2018-11-26 05:31:32 +00:00
fi
2018-11-13 23:48:58 +00:00
# if [ -d "$HOME/.wasmer" ]; then
# if which wasmer; then
# local latest_url
# local specified_version
# local version_type
# if [ "$1" = '--nightly' ]; then
# latest_url=https://nightly.wasmerpkg.com/latest-tar-version
# specified_version=`curl -sS $latest_url`
# version_type='latest'
# elif [ "$1" = '--version' ]; then
# specified_version=$2
# version_type='specified'
# elif [ "$1" = '--rc' ]; then
# latest_url=https://wasmerpkg.com/latest-rc-version
# specified_version=`curl -sS $latest_url`
# version_type='rc'
# else
# latest_url=https://wasmerpkg.com/latest-version
# specified_version=`curl -sS $latest_url`
# version_type='latest'
# fi
# wasmer_version=`wasmer -V`
# wasmer_alt_version=`wasmer --version`
# if [ "$specified_version" = "$wasmer_version" -o "$specified_version" = "$wasmer_alt_version" ]; then
# printf "$green> Wasmer is already at the $specified_version version.$reset\n"
# exit 0
# else
# printf "$yellow> $wasmer_alt_version is already installed, Specified version: $specified_version.$reset\n"
# rm -rf "$HOME/.wasmer"
# fi
# else
# printf "$red> $HOME/.wasmer already exists, possibly from a past Wasmer install.$reset\n"
# printf "$red> Remove it (rm -rf $HOME/.wasmer) and run this script again.$reset\n"
# exit 0
# fi
# fi
wasmer_download # $1 $2
wasmer_link
wasmer_reset
}
wasmer_reset( ) {
2018-11-26 05:31:32 +00:00
unset -f wasmer_install wasmer_compareversions wasmer_reset wasmer_download_json wasmer_link wasmer_detect_profile wasmer_download_file wasmer_download wasmer_verify_or_quit
2018-11-13 23:48:58 +00:00
}
2018-11-26 05:31:32 +00:00
# Example taken from
# https://stackoverflow.com/questions/4023830/how-to-compare-two-strings-in-dot-separated-version-format-in-bash
wasmer_compareversions ( ) {
if [ [ $1 = = $2 ] ]
then
2018-11-28 07:19:51 +00:00
echo "="
2018-11-26 05:31:32 +00:00
return 0
fi
local IFS = .
local i ver1 = ( $1 ) ver2 = ( $2 )
# fill empty fields in ver1 with zeros
for ( ( i = ${# ver1 [@] } ; i<${# ver2 [@] } ; i++) )
do
ver1[ i] = 0
done
for ( ( i = 0; i<${# ver1 [@] } ; i++) )
do
if [ [ -z ${ ver2 [i] } ] ]
then
# fill empty fields in ver2 with zeros
ver2[ i] = 0
fi
if ( ( 10#${ ver1 [i] } > 10#${ ver2 [i] } ) )
then
2018-11-28 07:19:51 +00:00
echo ">"
return 0
2018-11-26 05:31:32 +00:00
fi
if ( ( 10#${ ver1 [i] } < 10#${ ver2 [i] } ) )
then
2018-11-28 07:19:51 +00:00
echo "<"
return 0
2018-11-26 05:31:32 +00:00
fi
done
2018-11-28 07:19:51 +00:00
echo "="
2018-11-26 05:31:32 +00:00
return 0
}
2018-11-13 23:48:58 +00:00
wasmer_download( ) {
# identify platform based on uname output
initArch
initOS
# determine install directory if required
if [ -z " $INSTALL_DIRECTORY " ] ; then
# findWasmerBinDirectory INSTALL_DIRECTORY
INSTALL_DIRECTORY = " $HOME /.wasmer "
fi
WASMER = INSTALL_DIRECTORY
# assemble expected release artifact name
BINARY = " wasmer- ${ OS } - ${ ARCH } "
# add .exe if on windows
if [ " $OS " = "windows" ] ; then
BINARY = " $BINARY .exe "
fi
# if WASMER_RELEASE_TAG was not provided, assume latest
if [ -z " $WASMER_RELEASE_TAG " ] ; then
2018-11-14 22:58:28 +00:00
printf " $cyan > Getting wasmer releases... $reset \n "
2018-11-13 23:48:58 +00:00
wasmer_download_json LATEST_RELEASE " $RELEASES_URL /latest "
WASMER_RELEASE_TAG = $( echo " ${ LATEST_RELEASE } " | tr -s '\n' ' ' | sed 's/.*"tag_name":"//' | sed 's/".*//' )
2018-11-14 22:58:28 +00:00
printf " \033[1A $cyan > Getting wasmer releases... ✓ $reset \n "
2018-11-13 23:48:58 +00:00
fi
2018-11-26 05:31:32 +00:00
if which wasmer >/dev/null; then
WASMER_VERSION = $( wasmer --version | sed 's/[a-z[:blank:]]//g' )
2018-11-28 07:19:51 +00:00
WASMER_COMPARE = $( wasmer_compareversions $WASMER_VERSION $WASMER_RELEASE_TAG )
# printf "version: $WASMER_COMPARE\n"
case $WASMER_COMPARE in
2018-11-26 05:31:32 +00:00
# WASMER_VERSION = WASMER_RELEASE_TAG
2018-11-28 07:19:51 +00:00
"=" )
printf " You are already on the latest release of wasmer: ${ WASMER_RELEASE_TAG } \n " ;
2018-11-26 05:31:32 +00:00
exit 0
; ;
# WASMER_VERSION > WASMER_RELEASE_TAG
2018-11-28 07:19:51 +00:00
">" )
printf " You are on a more recent version ( $WASMER_VERSION ) than the published one ( ${ WASMER_RELEASE_TAG } )\n " ;
2018-11-26 05:31:32 +00:00
exit 0
; ;
# WASMER_VERSION < WASMER_RELEASE_TAG (we continue)
2018-11-28 07:19:51 +00:00
"<" )
2018-11-26 05:31:32 +00:00
; ;
esac
fi
2018-11-13 23:48:58 +00:00
# fetch the real release data to make sure it exists before we attempt a download
wasmer_download_json RELEASE_DATA " $RELEASES_URL /tag/ $WASMER_RELEASE_TAG "
BINARY_URL = " $RELEASES_URL /download/ $WASMER_RELEASE_TAG / $BINARY "
DOWNLOAD_FILE = $( mktemp -t wasmer.XXXXXXXXXX)
2018-11-14 22:58:28 +00:00
printf " $cyan > Downloading $WASMER_RELEASE_TAG release... $reset \n "
2018-11-13 23:48:58 +00:00
wasmer_download_file " $BINARY_URL " " $DOWNLOAD_FILE "
2018-11-14 22:58:28 +00:00
# echo -en "\b\b"
printf " \033[2A $cyan > Downloading $WASMER_RELEASE_TAG release... ✓ $reset \033[K\n "
printf "\033[K\n\033[1A"
# printf "\033[1A$cyan> Downloaded$reset\033[K\n"
2018-11-13 23:48:58 +00:00
# echo "Setting executable permissions."
chmod +x " $DOWNLOAD_FILE "
INSTALL_NAME = "wasmer"
# windows not supported yet
# if [ "$OS" = "windows" ]; then
# INSTALL_NAME="$INSTALL_NAME.exe"
# fi
# echo "Moving executable to $INSTALL_DIRECTORY/$INSTALL_NAME"
mkdir -p $INSTALL_DIRECTORY /bin
mv " $DOWNLOAD_FILE " " $INSTALL_DIRECTORY /bin/ $INSTALL_NAME "
}
wasmer_verify_or_quit( ) {
read -p " $1 [y/N] " -n 1 -r
echo
if [ [ ! $REPLY = ~ ^[ Yy] $ ] ]
then
printf " $red > Aborting $reset \n "
exit 1
fi
}
# cd ~
wasmer_install # $1 $2