28
28
import sys
29
29
import os .path
30
30
31
+ MISSING_LICENSE_TEXT = "Missing license"
32
+ MISSING_PERMISIVE_LICENSE_TEXT = "Non-permissive license found"
33
+ MISSING_SPDX_TEXT = "Missing SDPX identifier"
34
+
35
+ FILE_OFFENDER = {
36
+ 'file' : None ,
37
+ 'reason' : None
38
+ }
39
+
31
40
def license_check (directory_name , file ):
32
41
33
42
offenders = []
@@ -41,23 +50,32 @@ def license_check(directory_name, file):
41
50
if file ['type' ] == 'directory' :
42
51
continue
43
52
if not file ['licenses' ]:
53
+ dict_file = FILE_OFFENDER
54
+ dict_file ['file' ] = file
55
+ dict_file ['reason' ] = MISSING_LICENSE_TEXT
44
56
offenders .append (file )
45
57
46
58
found_spdx = False
47
59
for i in range (len (file ['licenses' ])):
48
60
if file ['licenses' ][i ]['category' ] != 'Permissive' :
49
- offenders .append (file )
61
+ dict_file = FILE_OFFENDER
62
+ dict_file ['file' ] = file
63
+ dict_file ['reason' ] = MISSING_PERMISIVE_LICENSE_TEXT
64
+ offenders .append (dict_file )
50
65
# find SPDX, it shall be one of licenses found
51
66
if file ['licenses' ][i ]['matched_rule' ]['identifier' ].find ("spdx" ) != - 1 :
52
67
found_spdx = True
53
68
54
69
if not found_spdx :
55
- offenders .append (file )
70
+ dict_file = FILE_OFFENDER
71
+ dict_file ['file' ] = file
72
+ dict_file ['reason' ] = MISSING_SPDX_TEXT
73
+ offenders .append (dict_file )
56
74
57
75
if offenders :
58
76
print ("Found files with missing license details, please review and fix" )
59
77
for offender in offenders :
60
- print ("File: " , offender ['path' ][len (directory_name ):], ":" , "licenses found : " , offender ['licenses ' ])
78
+ print ("File: " , offender ['file' ][ ' path' ][len (directory_name ):], ":" , "reason : " , offender ['reason ' ])
61
79
sys .exit (- 1 )
62
80
else :
63
81
sys .exit (0 )
0 commit comments