-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathdeps_resolve.go
179 lines (160 loc) · 4.96 KB
/
deps_resolve.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
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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 commands
import (
"fmt"
"os"
"path/filepath"
"regexp"
"strings"
"text/template"
"github.com/apache/skywalking-eyes/assets"
"github.com/spf13/cobra"
"github.com/apache/skywalking-eyes/internal/logger"
"github.com/apache/skywalking-eyes/pkg/deps"
)
var (
outDir string
licensePath string
summaryTplPath string
summaryTpl *template.Template
)
func init() {
DepsResolveCommand.PersistentFlags().StringVarP(&outDir, "output", "o", "",
"the directory to output the resolved dependencies' licenses, if not set the dependencies' licenses won't be saved")
DepsResolveCommand.PersistentFlags().StringVarP(&summaryTplPath, "summary", "s", "",
"the template file to write the summary of dependencies' licenses, a new file named \"LICENSE\" will be "+
"created in the same directory as the template file, to save the final summary.")
DepsResolveCommand.PersistentFlags().StringVarP(&licensePath, "license", "l", "",
"the path to the LICENSE file to be generated. The default summary format will be used if summary template file is not specified")
}
var fileNamePattern = regexp.MustCompile(`[^a-zA-Z0-9\\.\-]`)
var DepsResolveCommand = &cobra.Command{
Use: "resolve",
Aliases: []string{"r"},
Long: "resolves all dependencies of a module and their transitive dependencies",
PreRunE: func(_ *cobra.Command, _ []string) error {
if outDir != "" {
absPath, err := filepath.Abs(outDir)
if err != nil {
return err
}
outDir = absPath
if err := os.MkdirAll(outDir, 0o700); err != nil && !os.IsExist(err) {
return err
}
}
if summaryTplPath != "" {
absPath, err := filepath.Abs(summaryTplPath)
if err != nil {
return err
}
summaryTplPath = absPath
tpl, err := deps.ParseTemplate(os.DirFS(filepath.Dir(absPath)), filepath.Base(absPath))
if err != nil {
return err
}
summaryTpl = tpl
}
if licensePath != "" {
absPath, err := filepath.Abs(licensePath)
if err != nil {
return err
}
licensePath = absPath
if err := os.MkdirAll(filepath.Dir(outDir), 0o700); err != nil && !os.IsExist(err) {
return err
}
if summaryTpl == nil {
tpl, err := deps.ParseTemplate(assets.FS(), "default-license.tpl")
if err != nil {
return err
}
summaryTpl = tpl
}
}
return nil
},
RunE: func(_ *cobra.Command, _ []string) error {
report := deps.Report{}
configDeps := Config.Dependencies()
if err := deps.Resolve(configDeps, &report); err != nil {
return err
}
if summaryTpl != nil {
if err := writeSummary(&report, licensePath); err != nil {
return err
}
}
if outDir != "" {
for _, result := range report.Resolved {
writeLicense(result)
}
}
fmt.Println(report.String())
if skipped := len(report.Skipped); skipped > 0 {
pkgs := make([]string, skipped)
for i, s := range report.Skipped {
pkgs[i] = s.Dependency
}
return fmt.Errorf(
"failed to identify the licenses of following packages (%d):\n%s",
len(pkgs), strings.Join(pkgs, "\n"),
)
}
return nil
},
}
func writeLicense(result *deps.Result) {
filename := string(fileNamePattern.ReplaceAll([]byte(result.Dependency), []byte("-")))
filename = filepath.Join(outDir, "license-"+filename+".txt")
if _, err := os.Stat(filename); err == nil {
logger.Log.Debugf("File already exists, skipping: %s", filename)
return
}
file, err := os.Create(filename)
if err != nil {
logger.Log.Errorf("failed to create license file %v: %v", filename, err)
return
}
defer func(file *os.File) { _ = file.Close() }(file)
_, err = file.WriteString(result.LicenseContent)
if err != nil {
logger.Log.Errorf("failed to write license file, %v: %v", filename, err)
return
}
}
func writeSummary(rep *deps.Report, path string) error {
if path == "" {
path = filepath.Join(filepath.Dir(summaryTplPath), "LICENSE")
}
file, err := os.Create(path)
if err != nil {
return err
}
defer file.Close()
headers := Config.Headers()
if len(headers) > 1 {
return fmt.Errorf("unable to write summary as multiple licenses were provided in configuration")
}
summary, err := deps.GenerateSummary(summaryTpl, headers[0], rep)
if err != nil {
return err
}
_, err = file.WriteString(summary)
return err
}