nutsh
12/27/2013 - 6:39 AM

download-artifact-from-nexus "If-Modified-Since" checking for SNAPSHOT artifacts

download-artifact-from-nexus "If-Modified-Since" checking for SNAPSHOT artifacts

#!/bin/bash

# Define Nexus Configuration
NEXUS_BASE=
REST_PATH=/service/local
ART_REDIR=/artifact/maven/redirect

usage()
{
cat <<EOF

usage: $0 options

This script will fetch an artifact from a Nexus server using the Nexus REST redirect service.

OPTIONS:
   -h    Show this message
   -v    Verbose
   -a    GAV coordinate groupId:artifactId:version
   -c    Artifact Classifier
   -e    Artifact Packaging
   -o    Output file
   -r	   Repository
   -u    Username
   -p	   Password
   -n    Nexus Base URL
   -z    if nexus has newer version of artifact, remove Output File and exit 

EOF
}

# Read in Complete Set of Coordinates from the Command Line
GROUP_ID=
ARTIFACT_ID=
VERSION=
CLASSIFIER=""
PACKAGING=jar
REPO=
USERNAME=
PASSWORD=
VERBOSE=0

OUTPUT=

while getopts "hvza:c:e:o:r:u:p:n:" OPTION
do
     case $OPTION in
         h)
             usage
             exit 1
             ;;
         a)
	     	 OIFS=$IFS
             IFS=":"
		     GAV_COORD=( $OPTARG )
		     GROUP_ID=${GAV_COORD[0]}
             ARTIFACT_ID=${GAV_COORD[1]}
             VERSION=${GAV_COORD[2]}	     
	    	 IFS=$OIFS
             ;;
         c)
             CLASSIFIER=$OPTARG
             ;;
         e)
             PACKAGING=$OPTARG
             ;;
         v)
             VERBOSE=1
             ;;
         z)
             SNAPSHOT_CHECK=1
             ;;
		 o)
			OUTPUT=$OPTARG
			;;
		 r)
		    REPO=$OPTARG
		    ;;
		 u)
		    USERNAME=$OPTARG
		    ;;
		 p)
		    PASSWORD=$OPTARG
		    ;;
		 n)
			NEXUS_BASE=$OPTARG
			;;
         ?)
             echo "Illegal argument $OPTION=$OPTARG" >&2
             usage
             exit
             ;;
     esac
done

if [[ -z $GROUP_ID ]] || [[ -z $ARTIFACT_ID ]] || [[ -z $VERSION ]]
then
     echo "BAD ARGUMENTS: Either groupId, artifactId, or version was not supplied" >&2
     usage
     exit 1
fi

# Define default values for optional components

# If we don't have set a repository and the version requested is a SNAPSHOT use snapshots, otherwise use releases
if [[ "$REPOSITORY" == "" ]]
then
	if [[ "$VERSION" =~ ".*SNAPSHOT" ]]
	then
		: ${REPO:="snapshots"}
	else
		: ${REPO:="releases"}
	fi
fi
# Construct the base URL
REDIRECT_URL=${NEXUS_BASE}${REST_PATH}${ART_REDIR}

# Generate the list of parameters
PARAM_KEYS=( g a v r p c )
PARAM_VALUES=( $GROUP_ID $ARTIFACT_ID $VERSION $REPO $PACKAGING $CLASSIFIER )
PARAMS=""
for index in ${!PARAM_KEYS[*]} 
do
  if [[ ${PARAM_VALUES[$index]} != "" ]]
  then
    PARAMS="${PARAMS}${PARAM_KEYS[$index]}=${PARAM_VALUES[$index]}&"
  fi
done

REDIRECT_URL="${REDIRECT_URL}?${PARAMS}"

# Authentication
AUTHENTICATION=
if [[ "$USERNAME" != "" ]]  && [[ "$PASSWORD" != "" ]]
then
	AUTHENTICATION="-u $USERNAME:$PASSWORD"
fi

 
if [[ "$SNAPSHOT_CHECK" != "" ]]
then
  # remove $OUTPUT if nexus has newer version
  if [[ -f $OUTPUT ]] && [[ "$(curl -s -L ${REDIRECT_URL} ${AUTHENTICATION} -I --location-trusted -z $OUTPUT -o /dev/null -w '%{http_code}' )" == "200" ]]
  then 
    echo "Nexus has newer version of $GROUP_ID:$ARTIFACT_ID:$VERSION" 
    rm $OUTPUT
  fi 
  exit 0
fi

# Output
OUT=
if [[ "$OUTPUT" != "" ]] 
then
	OUT="-o $OUTPUT"
fi

echo "Fetching Artifact from $REDIRECT_URL..." >&2
curl -sS -L ${REDIRECT_URL} ${OUT} ${AUTHENTICATION} -v -R --location-trusted --fail