-
Notifications
You must be signed in to change notification settings - Fork 78
/
metadata.go
215 lines (191 loc) · 6.68 KB
/
metadata.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
package main
import (
"context"
"fmt"
"net/http"
"regexp"
"strings"
"golang.org/x/net/html"
)
// To update, use:
// curl -s https://api.github.com/licenses | jq '.[].key'
// then compare with https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/#license-specification
var githubLicenseToDebianLicense = map[string]string{
//"agpl-3.0" (not in debian?)
"apache-2.0": "Apache-2.0",
"artistic-2.0": "Artistic-2.0",
"bsd-2-clause": "BSD-2-clause",
"bsd-3-clause": "BSD-3-clause",
"cc0-1.0": "CC0-1.0",
//"epl-1.0" (eclipse public license)
"gpl-2.0": "GPL-2.0", // TODO: is this GPL-2.0+?
"gpl-3.0": "GPL-3.0",
"isc": "ISC",
"lgpl-2.1": "LGPL-2.1",
"lgpl-3.0": "LGPL-3.0",
"mit": "Expat",
"mpl-2.0": "MPL-2.0", // include in base-files >= 9.9
//"unlicense" (not in debian)
}
var debianLicenseText = map[string]string{
"Apache-2.0": ` 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
.
https://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.
Comment:
On Debian systems, the complete text of the Apache version 2.0 license
can be found in "/usr/share/common-licenses/Apache-2.0".`,
"Expat": ` Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
.
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.`,
"MPL-2.0": ` This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
Comment:
On Debian systems, the complete text of the MPL-2.0 license can be found
in "/usr/share/common-licenses/MPL-2.0".`,
}
var githubRegexp = regexp.MustCompile(`github\.com/([^/]+/[^/]+)`)
func findGitHubOwnerRepo(gopkg string) (string, error) {
if strings.HasPrefix(gopkg, "github.com/") {
return strings.TrimPrefix(gopkg, "github.com/"), nil
}
resp, err := http.Get("https://" + gopkg + "?go-get=1")
if err != nil {
return "", fmt.Errorf("HTTP get: %w", err)
}
defer resp.Body.Close()
z := html.NewTokenizer(resp.Body)
for {
tt := z.Next()
if tt == html.ErrorToken {
return "", fmt.Errorf("%q is not on GitHub", gopkg)
}
token := z.Token()
if token.Data != "meta" {
continue
}
var meta struct {
name, content string
}
for _, attr := range token.Attr {
if attr.Key == "name" {
meta.name = attr.Val
}
if attr.Key == "content" {
meta.content = attr.Val
}
}
match := func(name string, length int) string {
if f := strings.Fields(meta.content); meta.name == name && len(f) == length {
if f[0] != gopkg {
return ""
}
if repoMatch := githubRegexp.FindStringSubmatch(f[2]); repoMatch != nil {
return repoMatch[1]
}
}
return ""
}
if repo := match("go-import", 3); repo != "" {
return repo, nil
}
if repo := match("go-source", 4); repo != "" {
return repo, nil
}
}
}
func findGitHubRepo(gopkg string) (owner string, repo string, _ error) {
ownerrepo, err := findGitHubOwnerRepo(gopkg)
if err != nil {
return "", "", fmt.Errorf("find GitHub owner repo: %w", err)
}
parts := strings.Split(ownerrepo, "/")
if got, want := len(parts), 2; got != want {
return "", "", fmt.Errorf("invalid GitHub repo: %q does not follow owner/repo", repo)
}
return parts[0], parts[1], nil
}
func getLicenseForGopkg(gopkg string) (string, string, error) {
owner, repo, err := findGitHubRepo(gopkg)
if err != nil {
return "", "", fmt.Errorf("find GitHub repo: %w", err)
}
rl, _, err := gitHub.Repositories.License(context.TODO(), owner, repo)
if err != nil {
return "", "", fmt.Errorf("get license for Go package: %w", err)
}
if deblicense, ok := githubLicenseToDebianLicense[rl.GetLicense().GetKey()]; ok {
fulltext := debianLicenseText[deblicense]
if fulltext == "" {
fulltext = " TODO"
}
return deblicense, fulltext, nil
}
return "TODO", " TODO", nil
}
func getAuthorAndCopyrightForGopkg(gopkg string) (string, string, error) {
owner, repo, err := findGitHubRepo(gopkg)
if err != nil {
return "", "", fmt.Errorf("find GitHub repo: %w", err)
}
rr, _, err := gitHub.Repositories.Get(context.TODO(), owner, repo)
if err != nil {
return "", "", fmt.Errorf("get repo: %w", err)
}
if strings.TrimSpace(rr.GetOwner().GetURL()) == "" {
return "", "", fmt.Errorf("repository owner URL not present in API response")
}
ur, _, err := gitHub.Users.Get(context.TODO(), rr.GetOwner().GetLogin())
if err != nil {
return "", "", fmt.Errorf("get user: %w", err)
}
copyright := rr.CreatedAt.Format("2006") + " " + ur.GetName()
if strings.HasPrefix(repo, "google/") {
// As per https://opensource.google.com/docs/creating/, Google retains
// the copyright for repositories underneath github.com/google/.
copyright = rr.CreatedAt.Format("2006") + " Google Inc."
}
return ur.GetName(), copyright, nil
}
// getDescriptionForGopkg gets the package description from GitHub,
// intended for the synopsis or the short description in debian/control.
func getDescriptionForGopkg(gopkg string) (string, error) {
owner, repo, err := findGitHubRepo(gopkg)
if err != nil {
return "", fmt.Errorf("find GitHub repo: %w", err)
}
rr, _, err := gitHub.Repositories.Get(context.TODO(), owner, repo)
if err != nil {
return "", err
}
return strings.TrimSpace(rr.GetDescription()), nil
}
func getHomepageForGopkg(gopkg string) string {
owner, repo, err := findGitHubRepo(gopkg)
if err != nil {
return "TODO"
}
return "https://github.com/" + owner + "/" + repo
}