Last active
August 21, 2022 19:36
-
-
Save skrosoft/d59ee152a2738d9c4bf64903ddafef8e to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env bash | |
# Script to download asset file from tag release using GitHub API v3. | |
# See: http://stackoverflow.com/a/35688093/55075 | |
CWD="$(cd -P -- "$(dirname -- "$0")" && pwd -P)" | |
# Ask for Github API Token | |
stty -echo | |
printf "Enter your Github API Token: " | |
read GITHUB_API_TOKEN | |
stty echo | |
printf "\n" | |
# Check dependencies. | |
set -e | |
type curl grep sed tr >&2 | |
xargs=$(which gxargs || which xargs) | |
# Validate settings. | |
[ -f ~/.secrets ] && source ~/.secrets | |
[ "$GITHUB_API_TOKEN" ] || { echo "Error: Please define GITHUB_API_TOKEN variable." >&2; exit 1; } | |
[ $# -ne 4 ] && { echo "Usage: $0 [owner] [repo] [tag] [name]"; exit 1; } | |
[ "$TRACE" ] && set -x | |
read owner repo tag name <<<$@ | |
# Define variables. | |
GH_API="https://api.github.com" | |
GH_REPO="$GH_API/repos/$owner/$repo" | |
GH_TAGS="$GH_REPO/releases/tags/$tag" | |
AUTH="Authorization: token $GITHUB_API_TOKEN" | |
WGET_ARGS="--content-disposition --auth-no-challenge --no-cookie" | |
CURL_ARGS="-LJO#" | |
# Validate token. | |
curl -o /dev/null -sH "$AUTH" $GH_REPO || { echo "Error: Invalid repo, token or network issue!"; exit 1; } | |
# Read asset tags. | |
response=$(curl -sH "$AUTH" $GH_TAGS) | |
# Get ID of the asset based on given name. | |
eval $(echo "$response" | grep -C3 "name.:.\+$name" | grep -w id | tr : = | tr -cd '[[:alnum:]]=') | |
#id=$(echo "$response" | jq --arg name "$name" '.assets[] | select(.name == $name).id') # If jq is installed, this can be used instead. | |
[ "$id" ] || { echo "Error: Failed to get asset id, response: $response" | awk 'length($0)<100' >&2; exit 1; } | |
GH_ASSET="$GH_REPO/releases/assets/$id" | |
# Download asset file. | |
echo "Downloading asset..." >&2 | |
curl $CURL_ARGS -H "Authorization: token $GITHUB_API_TOKEN" -H 'Accept: application/octet-stream' "$GH_ASSET" | |
echo "$0 done." >&2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment