From be2ed341e8f6a84b6bd27dba0d45da0dc0ab4fc3 Mon Sep 17 00:00:00 2001 From: madavi Date: Tue, 9 Jul 2019 15:00:05 +0530 Subject: [PATCH] Bug 722 use new fossology server fixed Change-Id: If2540a9be356e83aefe93f79ef75cf8fefa2ae5d Signed-off-by: madavi --- tools/license_scan.sh | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/tools/license_scan.sh b/tools/license_scan.sh index 47106e0e..f7a4ab7e 100755 --- a/tools/license_scan.sh +++ b/tools/license_scan.sh @@ -15,6 +15,10 @@ # #!/bin/sh +# Change log: +# 1. Bug 722 : Jayant Madavi : JM00553988@techmahindra.com : Enhancement to use new fossology server. Had to change the variable name at # couple of places, while scanning the variable name was adding curl as a license. +# 2. + echo GERRIT BRANCH is $GERRIT_BRANCH dpkg -l wget &>/dev/null ||sudo apt-get install -y wget dpkg -l curl &>/dev/null ||sudo apt-get install -y curl @@ -32,21 +36,21 @@ RE="FATAL: your file did not get passed through" for file in $(git diff --name-only origin/$GERRIT_BRANCH); do if [ -f $file ]; then if [ -s $file ]; then - license=$(wget -qO - --post-file $file https://osm.etsi.org/fossology/?mod=agent_nomos_once |sed "s/^[ \t]*//;s/[ \t]*$//") - result=$(echo $license | grep "$RE") + licnse=$(curl -s -X POST -H 'Accept: text' -H 'Cache-Control: no-cache' -H 'Connection: keep-alive' -H 'Content-Type: multipart/form-data' -H 'cache-control: no-cache' -F "file_input=@\"$file\"" -F 'showheader=1' https://fossology-osm.etsi.org/?mod=agent_nomos_once |grep "A one shot license analysis shows the following license(s) in file"|sed -n 's:.*\(.*\).*:\1:p' |xargs) + result=$(echo $licnse | grep "$RE") if [ -n "$result" ]; then # possibly we have exceeded the post rate sleep 10 - license=$(wget -qO - --post-file $file https://osm.etsi.org/fossology/?mod=agent_nomos_once |sed "s/^[ \t]*//;s/[ \t]*$//") + licnse=$(curl -s -X POST -H 'Accept: text' -H 'Cache-Control: no-cache' -H 'Connection: keep-alive' -H 'Content-Type: multipart/form-data' -H 'cache-control: no-cache' -F "file_input=@\"$file\"" -F 'showheader=1' https://fossology-osm.etsi.org/?mod=agent_nomos_once |grep "A one shot license analysis shows the following license(s) in file"|sed -n 's:.*\(.*\).*:\1:p' |xargs) fi else - license="No_license_found" + licnse="No_license_found" fi else - license="DELETED" + licnse="DELETED" fi - echo "$file $license" - case "$license" in + echo "$file $licnse" + case "$licnse" in "Apache-2.0") apache=$((apache + 1)) ;; -- 2.17.1