X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=tools%2Flicense_scan.sh;h=a79463608d09fdbf43a65ef716445700d1ab7e2d;hb=02467edd88623ef5345402566319867f5fbef84a;hp=47106e0e001cd98a2bbb55cf63d2bac09d031394;hpb=c121ff81ff1018d0f59af6d04503f3e8087e7c74;p=osm%2Fdevops.git diff --git a/tools/license_scan.sh b/tools/license_scan.sh index 47106e0e..a7946360 100755 --- a/tools/license_scan.sh +++ b/tools/license_scan.sh @@ -1,3 +1,4 @@ +#!/bin/sh # # Copyright 2016 Telefónica Investigación y Desarrollo, S.A.U. # @@ -13,49 +14,51 @@ # See the License for the specific language governing permissions and # limitations under the License. # -#!/bin/sh - -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 -#Curl can be used instead of wget: -#curl -s -X POST -d @$file https://osm.etsi.org/fossology/?mod=agent_nomos_once apache=0 nolicense=0 other=0 - +exception_list="':(exclude)*.pdf' ':(exclude)*.png' ':(exclude)*.jpeg' ':(exclude)*.jpg' ':(exclude)*.gif' ':(exclude)*.json' ':(exclude)*.ico' ':(exclude)*.svg' ':(exclude)*.tiff'" git fetch -RE="FATAL: your file did not get passed through" +for file in $(echo ${exception_list} | xargs git diff --name-only origin/$GERRIT_BRANCH -- . ); do + + file_type=$(file -b --mime-type $file | sed 's|/.*||') + echo $file is $file_type + case "$file_type" in + text) + binary=false + ;; + *) + binary=true + ;; + esac -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") - 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]*$//") + if $binary ; then + license=Binary + else + license="No Apache license found" + if [ -f $file ]; then + if [ -s $file ]; then + if [ $(grep -c "http://www.apache.org/licenses/LICENSE-2.0" $file) -ge 1 ] ; then + license="Apache-2.0" + fi fi else - license="No_license_found" + license="DELETED" fi - else - license="DELETED" fi echo "$file $license" case "$license" in "Apache-2.0") apache=$((apache + 1)) ;; - "No_license_found") + No*) nolicense=$((nolicense + 1)) ;; "DELETED") ;; - "FATAL:*") + "Binary") ;; *) echo "BAD LICENSE ON FILE $file" @@ -64,13 +67,10 @@ for file in $(git diff --name-only origin/$GERRIT_BRANCH); do esac done -if [ $other -gt 0 ]; then - echo "FATAL: Non-apache licenses detected" - exit 2 -fi if [ $nolicense -gt 0 ]; then - echo "WARNING: Unlicensed files found" + echo "FATAL: Files without apache license found" + exit 2 fi exit 0