diff options
Diffstat (limited to 'aai-resources/src/main/scripts/updateTool.sh')
-rw-r--r-- | aai-resources/src/main/scripts/updateTool.sh | 211 |
1 files changed, 192 insertions, 19 deletions
diff --git a/aai-resources/src/main/scripts/updateTool.sh b/aai-resources/src/main/scripts/updateTool.sh index 9e93488..f4e2941 100644 --- a/aai-resources/src/main/scripts/updateTool.sh +++ b/aai-resources/src/main/scripts/updateTool.sh @@ -22,37 +22,210 @@ # # -# The script invokes GetResource java class to get all nodes +# For Usage 1, the script is called with a resource, filepath and an optional argument to +# ignore HTTP failure codes which would otherwise indicate a failure. +# It invokes a PATCH on the resource with the file using curl +# Uses aaiconfig.properties for authorization type and url. The HTTP response +# code is checked. Responses between 200 and 299 are considered success. +# When the ignore failure code parameter is passed, responses outside of +# the 200 to 299 range but matching a sub-string of the parameter are +# considered success. For example, a parameter value of 412 will consider +# responses in the range of 200 to 299 and 412 successes. # +# method checking parameter list for two strings, and determine if +# the second string is a sub-string of the first +contains() { + string="$2" + substring="$3" + if test "${string#*$substring}" != "$string" + then + return 0 # $substring is in $string + else + return 1 # $substring is not in $string + fi +} -echo -echo `date` " Starting $0" +display_usage() { +cat <<EOF +Usage: $0 [options] + +1. This script needs a resource argument (resource-path), and either a JSON filepath, or directly the property you need to update +2. Usage 1 (use a Json file): updateTool.sh <node type> <resource> <filepath> <optional arg to ignore HTTP failure codes> +3. Usage 1 example: ./updateTool.sh customer business/customers/customer/customer-id-1 /tmp/updateTest.json + +4. Usage 2 (update a property directly): updateTool.sh <node type> <resource> '<key name>:<key value>,<property>:<property val>' <optional arg to ignore HTTP failure codes> +5. Usage 2 example: ./updateTool.sh complex cloud-infrastructure/complexes/complex/complex-id 'physical-location-id:complex-id, city:New York' +6. You could try without the <key name>:<key value> (only the property and its new value), but on some servers this did not work: +7. ./updateTool.sh complex cloud-infrastructure/complexes/complex/complex-id 'city:New York' + +8. Usage 3 (update an attribute on an object that is embedded a level or two levels. Use the full path) +9. ./updateTool.sh <node type> <embedded resource with full paths> <key name: key value> +10. ./updateTool.sh p-interface network/pnfs/pnf/pnf-name-1/p-interfaces/p-interface/int-1 'interface-type:int-typei' +EOF +} + +if [ $# -eq 0 ]; then +display_usage +exit 1 +fi + +# remove leading slash when present +RESOURCE=`echo $2 | sed "s,^/,,"` + +if [ -z $RESOURCE ]; then + echo "resource parameter is missing" + echo "usage: $0 resource file [expected-failure-codes]" + exit 1 +fi + +JSONFILE=$3 +if [ -z $JSONFILE ]; then + echo "json file or input parameter is missing" + echo "usage: $0 resource <file or command-line input>[expected-failure-codes]" + exit 1 +fi +echo `date` " Starting $0 for resource $RESOURCE" +ALLOWHTTPRESPONSES=$4 + +XFROMAPPID="AAI-TOOLS" +XTRANSID=`uuidgen` userid=$( id | cut -f2 -d"(" | cut -f1 -d")" ) if [ "${userid}" != "aaiadmin" ]; then echo "You must be aaiadmin to run $0. The id used $userid." exit 1 -fi +fi . /etc/profile.d/aai.sh PROJECT_HOME=/opt/app/aai-resources +prop_file=$PROJECT_HOME/bundleconfig/etc/appprops/aaiconfig.properties +log_dir=$PROJECT_HOME/logs/misc +today=$(date +\%Y-\%m-\%d) + +MISSING_PROP=false +RESTURL=`grep ^aai.server.url= $prop_file |cut -d'=' -f2 |tr -d "\015"` +if [ -z $RESTURL ]; then + echo "Property [aai.server.url] not found in file $prop_file" + MISSING_PROP=true +fi +USEBASICAUTH=false +BASICENABLE=`grep ^aai.tools.enableBasicAuth $prop_file |cut -d'=' -f2 |tr -d "\015"` +if [ -z $BASICENABLE ]; then + USEBASICAUTH=false +else + USEBASICAUTH=true + CURLUSER=`grep ^aai.tools.username $prop_file |cut -d'=' -f2 |tr -d "\015"` + if [ -z $CURLUSER ]; then + echo "Property [aai.tools.username] not found in file $prop_file" + MISSING_PROP=true + fi + CURLPASSWORD=`grep ^aai.tools.password $prop_file |cut -d'=' -f2 |tr -d "\015"` + if [ -z $CURLPASSWORD ]; then + echo "Property [aai.tools.password] not found in file $prop_file" + MISSING_PROP=true + fi +fi + +#determine if the 3rd arg is +#/tmp/updateTest.json +#or +#'physical-location-id:complex-id, city:New York' +thirdarg=$3 +isjson = true +if [[ "$thirdarg" == *json || "$thirdarg" == *JSON ]]; then + echo "Usage 1(JSON) because the 2nd arg ends with json"; +else + echo "Usage 2(Comand Arg) because the 2nd arg does not end with json"; + #For Usage 2, format input into JSON string format + JSONSTRING="{" + INPUT=$3 + + #replace any spaces with %20 + INPUT=${INPUT// /%20} + + for i in ${INPUT//,/ }; + do + #change any %20 back to space ) + i=${i//%20/ } + #echo "after change to space=$i" + + #trim modstring to remove any beginning spaces (" city" becomes "city") + i="${i##*( )}" + + #add JSON quotes + MODSTRING=" \"$i\"," + + MODSTRING=${MODSTRING//[:]/'": "'} + #echo "MODSTRING=$MODSTRING" + + JSONSTRING+=$MODSTRING + done + JSONSTRING="${JSONSTRING%?}" + JSONSTRING+=" }" + echo "JSON string is $JSONSTRING" +fi -for JAR in `ls $PROJECT_HOME/extJars/*.jar` -do - CLASSPATH=$CLASSPATH:$JAR -done +generate_data() +{ +cat <<EOF +$JSONSTRING +EOF +} -for JAR in `ls $PROJECT_HOME/lib/*.jar` -do - CLASSPATH=$CLASSPATH:$JAR -done +if [ $MISSING_PROP = false ]; then + if [ $USEBASICAUTH = false ]; then + AUTHSTRING="--cert $PROJECT_HOME/bundleconfig/etc/auth/aaiClientPublicCert.pem --key $PROJECT_HOME/bundleconfig/etc/auth/aaiClientPrivateKey.pem" + else + AUTHSTRING="-u $CURLUSER:$CURLPASSWORD" + fi + + if [[ "$thirdarg" == *json || "$thirdarg" == *JSON ]]; then + ##Usage 1 (JSON file) + result=`curl --request PATCH -sL -w "%{http_code}" -o /dev/null -k $AUTHSTRING -H "X-FromAppId: $XFROMAPPID" -H "X-TransactionId: $XTRANSID" -H "Content-Type: application/merge-patch+json" -H "Accept: application/json" -T $JSONFILE $RESTURL$RESOURCE`; + else + #Usage 2 (command-line argument) + result=`curl --request PATCH -sL -w "%{http_code}" -o /dev/null -k $AUTHSTRING -H "X-FromAppId: $XFROMAPPID" -H "X-TransactionId: $XTRANSID" -H "Content-Type: application/merge-patch+json" -H "Accept: application/json" --data "$(generate_data)" $RESTURL$RESOURCE` + + fi + echo "result is $result." + RC=0; + if [ $? -eq 0 ]; then + case $result in + +([0-9])?) + #if [[ "$result" -eq 412 || "$result" -ge 200 && $result -lt 300 ]] + if [[ "$result" -ge 200 && $result -lt 300 ]] + then + echo "PATCH result is OK, $result" + else + if [ -z $ALLOWHTTPRESPONSES ]; then + echo "PATCH request failed, response code was $result" + RC=$result + else + contains $ALLOWHTTPRESPONSES $result + if [ $? -ne 0 ] + then + echo "PATCH request failed, unexpected response code was $result" + RC=$result + else + echo "PATCH result is expected, $result" + fi + fi + fi + ;; + *) + echo "PATCH request failed, response was $result" + RC=-1 + ;; -$JAVA_HOME/bin/java -classpath $CLASSPATH -Dhttps.protocols=TLSv1.1,TLSv1.2 -DAJSC_HOME=$PROJECT_HOME -Daai.home=$PROJECT_HOME org.onap.aai.util.UpdateResource "$@" -ret_code=$? -if [ $ret_code != 0 ]; then - echo `date` " Done $0" - exit $ret_code + esac + else + echo "FAILED to send request to $RESTURL" + RC=-1 + fi +else + echo "usage: $0 resource file [expected-failure-codes]" + RC=-1 fi -echo `date` " Done $0" -exit 0 +echo `date` " Done $0, returning $RC" +exit $RC
\ No newline at end of file |