-
Notifications
You must be signed in to change notification settings - Fork 124
/
check.go
180 lines (149 loc) · 4.96 KB
/
check.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
// Copyright 2019 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"context"
"errors"
"fmt"
"os"
"strings"
"github.com/google/go-licenses/v2/licenses"
"github.com/spf13/cobra"
"golang.org/x/text/cases"
"golang.org/x/text/language"
)
var (
checkHelp = "Checks whether licenses for a package are not allowed."
checkCmd = &cobra.Command{
Use: "check <package> [package...]",
Short: checkHelp,
Long: checkHelp + packageHelp,
Args: cobra.MinimumNArgs(1),
RunE: checkMain,
}
allowedLicenses []string
disallowedTypes []string
)
func init() {
checkCmd.Flags().StringSliceVar(&allowedLicenses, "allowed_licenses", []string{}, "list of allowed license names, can't be used in combination with disallowed_types")
checkCmd.Flags().StringSliceVar(&disallowedTypes, "disallowed_types", []string{}, "list of disallowed license types, can't be used in combination with allowed_licenses (default: forbidden, unknown)")
rootCmd.AddCommand(checkCmd)
}
func checkMain(_ *cobra.Command, args []string) error {
var disallowedLicenseTypes []licenses.Type
allowedLicenseNames := getAllowedLicenseNames()
disallowedLicenseTypes = getDisallowedLicenseTypes()
hasLicenseNames := len(allowedLicenseNames) > 0
hasLicenseType := len(disallowedLicenseTypes) > 0
if hasLicenseNames && hasLicenseType {
return errors.New("allowed_licenses && disallowed_types can't be used at the same time")
}
if !hasLicenseNames && !hasLicenseType {
// fallback to original behaviour to avoid breaking changes
disallowedLicenseTypes = []licenses.Type{licenses.Forbidden, licenses.Unknown}
hasLicenseType = true
}
classifier, err := licenses.NewClassifier()
if err != nil {
return err
}
libs, err := licenses.Libraries(context.Background(), classifier, includeTests, ignore, args...)
if err != nil {
return err
}
// indicate that a forbidden license was found
found := false
for _, lib := range libs {
if lib.LicenseFile == "" {
fmt.Fprintf(os.Stderr, "Did not find license for library '%v'.\n", lib)
found = true
continue
}
for _, license := range lib.Licenses {
if hasLicenseNames && !isAllowedLicenseName(license.Name, allowedLicenseNames) {
fmt.Fprintf(os.Stderr, "Not allowed license '%s' found for library '%v'.\n", license.Name, lib)
found = true
} else if hasLicenseType && isDisallowedLicenseType(license.Type, disallowedLicenseTypes) {
fmt.Fprintf(
os.Stderr,
"License '%s' of not allowed license type '%s' found for library '%v'.\n",
license.Name,
cases.Title(language.English).String(license.Type.String()),
lib)
found = true
}
}
}
if found {
os.Exit(1)
}
return nil
}
func getDisallowedLicenseTypes() []licenses.Type {
if len(disallowedTypes) == 0 {
return []licenses.Type{}
}
excludedLicenseTypes := make([]licenses.Type, 0)
for _, v := range disallowedTypes {
switch strings.TrimSpace(strings.ToLower(v)) {
case "forbidden":
excludedLicenseTypes = append(excludedLicenseTypes, licenses.Forbidden)
case "notice":
excludedLicenseTypes = append(excludedLicenseTypes, licenses.Notice)
case "permissive":
excludedLicenseTypes = append(excludedLicenseTypes, licenses.Permissive)
case "reciprocal":
excludedLicenseTypes = append(excludedLicenseTypes, licenses.Reciprocal)
case "restricted":
excludedLicenseTypes = append(excludedLicenseTypes, licenses.Restricted)
case "unencumbered":
excludedLicenseTypes = append(excludedLicenseTypes, licenses.Unencumbered)
case "unknown":
excludedLicenseTypes = append(excludedLicenseTypes, licenses.Unknown)
default:
fmt.Fprintf(
os.Stderr,
"Unknown license type '%s' provided.\n"+
"Allowed types: forbidden, notice, permissive, reciprocal, restricted, unencumbered, unknown\n",
v)
}
}
return excludedLicenseTypes
}
func isDisallowedLicenseType(licenseType licenses.Type, excludedLicenseTypes []licenses.Type) bool {
for _, excluded := range excludedLicenseTypes {
if excluded == licenseType {
return true
}
}
return false
}
func getAllowedLicenseNames() []string {
if len(allowedLicenses) == 0 {
return []string{}
}
var allowed []string
for _, licenseName := range allowedLicenses {
allowed = append(allowed, strings.TrimSpace(licenseName))
}
return allowed
}
func isAllowedLicenseName(licenseName string, allowedLicenseNames []string) bool {
for _, allowed := range allowedLicenseNames {
if allowed == licenseName {
return true
}
}
return false
}