Merge pull request #25 from ccarpita/new/bpkg-show

Add command (show) to display package details from remote
pull/26/head
Joseph Werle 10 years ago
commit 851889d74d

@ -4,7 +4,7 @@ BIN ?= bpkg
PREFIX ?= /usr/local
# All 'bpkg' supported commands
CMDS = json install package term suggest init utils update list
CMDS = json install package term suggest init utils update list show
install: uninstall
@echo " info: Installing $(PREFIX)/bin/$(BIN)..."

@ -0,0 +1 @@
lib/show/show.sh

@ -0,0 +1,188 @@
#!/bin/bash
VERSION="0.0.1"
if ! type -f bpkg-utils &>/dev/null; then
echo "error: bpkg-utils not found, aborting"
exit 1
else
source `which bpkg-utils`
fi
bpkg_initrc
usage () {
mesg=$1
if [ "$mesg" != "" ]; then
echo "$mesg"
echo
fi
echo "bpkg-show [-Vh] [sources|readme] <user/package_name>"
echo
echo "Show bash package details. You must first run \`bpkg update' to sync the repo locally."
echo
echo "Options:"
echo " --help|-h Print this help dialogue"
echo " --version|-V Print version and exit"
echo " readme Print package README.md file, if available, suppressing other output"
echo " sources Print all sources listed in package.json scripts, in order. This"
echo " option suppresses other output and prints executable bash."
}
show_package () {
local pkg=$1
local desc=$2
local show_readme=$3
local show_sources=$4
local host=$BPKG_REMOTE_HOST
local remote=$BPKG_REMOTE
local git_remote=$BPKG_GIT_REMOTE
local auth=""
local json=""
local readme=""
local uri=""
if [ "$BPKG_OAUTH_TOKEN" != "" ]; then
auth="-u $BPKG_OAUTH_TOKEN:x-oauth-basic"
fi
if [ "$auth" == "" ]; then
uri=$BPKG_REMOTE/$pkg/master
else
uri=$BPKG_REMOTE/$pkg/raw/master
fi
json=$(eval "curl $auth -sL '$uri/package.json?`date +%s`'")
readme=$(eval "curl $auth -sL '$uri/README.md?`date +%s`'")
local readme_len=$(echo "$readme" | wc -l | tr -d ' ')
local version=$(echo "$json" | bpkg-json -b | grep '"version"' | sed 's/.*version"\]\s*//' | tr -d '\t' | tr -d '"')
local author=$(echo "$json" | bpkg-json -b | grep '"author"' | sed 's/.*author"\]\s*//' | tr -d '\t' | tr -d '"')
local pkg_desc=$(echo "$json" | bpkg-json -b | grep '"description"' | sed 's/.*description"\]\s*//' | tr -d '\t' | tr -d '"')
local sources=$(echo "$json" | bpkg-json -b | grep '"scripts"' | cut -f 2 | tr -d '"' )
local description=$(echo "$json" | bpkg-json -b | grep '"description"')
local install_sh=$(echo "$json" | bpkg-json -b | grep '"install"' | sed 's/.*install"\]\s*//' | tr -d '\t' | tr -d '"')
if [ "$pkg_desc" != "" ]; then
desc="$pkg_desc"
fi
if [ "$show_sources" == '0' ] && [ "$show_readme" == "0" ]; then
echo "Name: $pkg"
if [ "$author" != "" ]; then
echo "Author: $author"
fi
echo "Description: $desc"
echo "Current Version: $version"
echo "Remote: $git_remote"
if [ "$install_sh" != "" ]; then
echo "Install: $install_sh"
fi
if [ "$readme" == "" ]; then
echo "README.md: Not Available"
else
echo "README.md: ${readme_len} lines"
fi
elif [ "$show_readme" != '0' ]; then
echo "$readme"
else
# Show Sources
OLDIFS="$IFS"
IFS=$'\n'
for src in $(echo "$sources"); do
local http_code=$(eval "curl $auth -sL '$uri/$src?`date +%s`' -w '%{http_code}' -o /dev/null")
if (( http_code < 400 )); then
local content=$(eval "curl $auth -sL '$uri/$src?`date +%s`'")
echo "#[$src]"
echo "$content"
echo "#[/$src]"
else
bpkg_warn "source not found: $src"
fi
done
IFS="$OLDIFS"
fi
}
bpkg_show () {
local readme=0
local sources=0
local pkg=""
for opt in "${@}"; do
case "$opt" in
-V|--version)
echo "${VERSION}"
return 0
;;
-h|--help)
usage
return 0
;;
readme)
readme=1
if [ "$sources" == "1" ]; then
usage "Error: readme and sources are mutually exclusive options"
return 1
fi
;;
source|sources)
sources=1
if [ "$readme" == "1" ]; then
usage "Error: readme and sources are mutually exclusive options"
return 1
fi
;;
*)
if [ "${opt:0:1}" == "-" ]; then
bpkg_error "unknown option: $opt"
return 1
fi
if [ "$pkg" == "" ]; then
pkg=$opt
fi
esac
done
if [ "$pkg" == "" ]; then
usage
return 1
fi
local i=0
for remote in "${BPKG_REMOTES[@]}"; do
local git_remote="${BPKG_GIT_REMOTES[$i]}"
bpkg_select_remote "$remote" "$git_remote"
if [ ! -f "$BPKG_REMOTE_INDEX_FILE" ]; then
bpkg_warn "no index file found for remote: ${remote}"
bpkg_warn "You should run \`bpkg update' before running this command."
i=$((i+1))
continue
fi
OLDIFS="$IFS"
IFS=$'\n'
for line in $(cat $BPKG_REMOTE_INDEX_FILE); do
local name=$(echo "$line" | cut -d\| -f1 | tr -d ' ')
local desc=$(echo "$line" | cut -d\| -f2)
if [ "$name" == "$pkg" ]; then
IFS="$OLDIFS"
show_package "$pkg" "$desc" "$readme" "$sources"
IFS=$'\n'
return 0
fi
done
IFS="$OLDIFS"
i=$((i+1))
done
bpkg_error "package not found: $pkg"
return 1
}
if [[ ${BASH_SOURCE[0]} != $0 ]]; then
export -f bpkg_show
elif bpkg_validate; then
bpkg_show "${@}"
fi

@ -4,6 +4,8 @@
## Init local config and set environmental defaults
bpkg_initrc() {
local global_config=${BPKG_GLOBAL_CONFIG:-"/etc/bpkgrc"}
[ -f "$global_config" ] && source "$global_config"
local config=${BPKG_CONFIG:-"$HOME/.bpkgrc"}
[ -f "$config" ] && source "$config"
## set defaults
@ -12,7 +14,7 @@ bpkg_initrc() {
BPKG_GIT_REMOTES[0]=${BPKG_GIT_REMOTE-https://github.com}
fi
BPKG_USER="${BPKG_USER:-"bpkg"}"
BPKG_INDEX=${BPKG_INDEX-"$HOME/.bpkg/index"}
BPKG_INDEX=${BPKG_INDEX:-"$HOME/.bpkg/index"}
}
## check parameter consistency
@ -80,9 +82,12 @@ bpkg_info () {
}
## takes a remote and git-remote and sets the globals:
## BPKG_REMOTE: remote URI
## BPKG_GIT_REMOTE: git remote with oauth info embedded,
## BPKG_REMOTE: raw remote URI
## BPKG_GIT_REMOTE: git remote for cloning
## BPKG_AUTH_GIT_REMOTE: git remote with oauth info embedded,
## BPKG_OAUTH_TOKEN: token for x-oauth-basic
## BPKG_CURL_AUTH_PARAM: auth arguments for raw curl requests
## BPKG_REMOTE_INDEX: location of local index for remote
bpkg_select_remote () {
local remote=$1
local git_remote=$2
@ -91,6 +96,8 @@ bpkg_select_remote () {
BPKG_REMOTE_INDEX_FILE="$BPKG_REMOTE_INDEX/index.txt"
BPKG_OAUTH_TOKEN=""
BPKG_CURL_AUTH_PARAM=""
BPKG_GIT_REMOTE=$git_remote
BPKG_AUTH_GIT_REMOTE=$git_remote
if [ "${remote:0:10}" == "raw-oauth|" ]; then
OLDIFS="${IFS}"
IFS="|"
@ -100,12 +107,11 @@ bpkg_select_remote () {
BPKG_CURL_AUTH_PARAM="-u $BPKG_OAUTH_TOKEN:x-oauth-basic"
BPKG_REMOTE=${remote_parts[2]}
if [[ "$git_remote" == https://* ]] && [[ "$git_remote" != *x-oauth-basic* ]] && [[ "$git_remote" != *${BPKG_OAUTH_TOKEN}* ]]; then
git_remote=${git_remote/https:\/\//https:\/\/$BPKG_OAUTH_TOKEN:x-oauth-basic@}
BPKG_AUTH_GIT_REMOTE=${git_remote/https:\/\//https:\/\/$BPKG_OAUTH_TOKEN:x-oauth-basic@}
fi
else
else
BPKG_REMOTE=$remote
fi
BPKG_GIT_REMOTE=$git_remote
}
## given a user and name, sets BPKG_RAW_PATH using the available

Loading…
Cancel
Save