-
Notifications
You must be signed in to change notification settings - Fork 703
/
package_scanner.nim
238 lines (201 loc) · 7.59 KB
/
package_scanner.nim
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
# Package scanner for the nimble package list.
#
# Check the packages for:
# * Duplicate and invalid names
# * Missing alias targets
# * Empty tags
# * Invalid method
# * Missing description or license
# * Unavailable URLs
# * Insecure URLs
#
# Usage: nim r package_scanner.nim <packages.json> [--old=packages_old.json] [--check-urls]
#
# Copyright 2015 Federico Ceratto <federico.ceratto@gmail.com>
# Copyright 2023 Gabriel Huber <mail@gabrielhuber.at>
# Released under GPLv3 License, see LICENSE-GPLv3.txt
import std/parseopt
import std/os
import std/json
import std/tables
import std/strutils
import std/httpclient
import std/streams
import std/net
const usage = """
Usage: package_scanner <packages.json> [--old=packages_old.json] [--check-urls]
Scans the nimble package list for mistakes and dead packages.
Options:
--old= Old package file, will only scan changed packages
--check-urls Try to request the package url
--help Print this help text"""
const allowedNameChars = {'a'..'z', 'A'..'Z', '0'..'9', '_', '-', '.'}
proc checkUrlReachable(client: HttpClient, url: string): string =
var headers: HttpHeaders = nil
if url.startsWith("https://github.com"):
if existsEnv("GITHUB_TOKEN"):
headers = newHttpHeaders({"Authorization": "Bearer " & getEnv("GITHUB_TOKEN")})
try:
let resp = client.request(url, headers=headers)
discard resp.bodyStream.readAll()
if not resp.code.is2xx:
result = "Server returned status " & $resp.code
except TimeoutError:
result = "Timeout after " & $client.timeout & "ms"
client.close()
except HttpRequestError:
result = "HTTP error: " & getCurrentExceptionMsg()
client.close()
except AssertionDefect:
result = "httpclient error: " & getCurrentExceptionMsg()
client.close()
except CatchableError as e:
result = "Unexpected exception " & $e.name & ": " & e.msg
client.close()
template logPackageError(errorMsg: string) =
echo "E: ", errorMsg
success = false
template checkUrl(urlType: string, url: string) =
if url == "":
logPackageError(displayName & " has an empty " & urlType & " URL")
elif not url.startsWith("https://"):
logPackageError(displayName & " has a non-https " & urlType & " URL: " & url)
elif checkUrls:
let urlError = client.checkUrlReachable(url)
if urlError != "":
logPackageError(displayName & " has an unreachable " & urlType & " URL: " & url)
logPackageError(urlError)
proc getStrIfExists(n: JsonNode, name: string, default: string = ""): string =
result = default
if n.hasKey(name) and n[name].kind == JString:
result = n[name].str
proc getElemsIfExists(n: JsonNode, name: string, default: seq[JsonNode] = @[]): seq[JsonNode] =
result = default
if n.hasKey(name) and n[name].kind == JArray:
result = n[name].elems
proc checkPackages(newPackagesPath: string, oldPackagesPath: string, checkUrls: bool = false): int =
var oldPackagesTable = initTable[string, JsonNode]()
if oldPackagesPath != "":
let oldPackagesJson = parseJson(readFile(oldPackagesPath))
for oldPkg in oldPackagesJson:
let oldNameNorm = oldPkg.getStrIfExists("name").normalize()
if oldNameNorm != "":
oldPackagesTable[oldNameNorm] = oldPkg
let newPackagesJson = parseJson(readFile(newPackagesPath))
# Do a first pass through the list to count duplicate names
var packageNameCounter = initCountTable[string]()
for pkg in newPackagesJson:
let pkgNameNorm = pkg.getStrIfExists("name").normalize()
if pkgNameNorm != "":
packageNameCounter.inc(pkgNameNorm)
var client: HttpClient = nil
if checkUrls:
client = newHttpClient(timeout=3000)
client.headers = newHttpHeaders({"User-Agent": "Nim packge_scanner/2.0"})
var modifiedPackagesCount = 0
var failedPackagesCount = 0
for pkg in newPackagesJson:
var success = true # Set to false by logPackageError
let pkgName = pkg.getStrIfExists("name")
let pkgNameNorm = pkgName.normalize()
var displayName = pkgName
if displayName == "":
displayName = "<unnamed package>"
# Start with detecting duplicates
if packageNameCounter[pkgNameNorm] > 1:
let url = pkg.getStrIfExists("url", "<no url>")
logPackageError("Duplicate package " & displayName & " from url " & url)
# isNew should be used in future versions to do a conditional inspection
# of the package contents which requires downloading the full release tarball
let isNew = not oldPackagesTable.hasKey(pkgNameNorm)
var isModified: bool
if isNew:
isModified = true
else:
isModified = oldPackagesTable[pkgNameNorm] != pkg
if isModified:
inc modifiedPackagesCount
if pkgName == "":
logPackageError("Missing package name")
let isAlias = pkg.hasKey("alias")
if isAlias:
if packageNameCounter[pkg["alias"].getStr().normalize()] == 0:
logPackageError(displayName & " is an alias pointing to a missing package")
else:
var tags = pkg.getElemsIfExists("tags")
var isDeleted = false
if tags.len == 0:
logPackageError(displayName & " has no tags")
else:
var emptyTags = false
for tag in tags:
if tag.getStr == "":
emptyTags = true
if tag.getStr.toLowerAscii() == "deleted":
isDeleted = true
if emptyTags:
logPackageError(displayName & " has empty tags")
if not isDeleted:
if not pkgName.allCharsInSet(allowedNameChars):
logPackageError(displayName & " is not a valid package name")
if not pkg.hasKey("method"):
logPackageError(displayName & " has no method")
elif pkg["method"].kind != JString or pkg["method"].str notin ["git", "hg"]:
logPackageError(displayName & " has an invalid method")
if pkg.getStrIfExists("description") == "":
logPackageError(displayName & " has no description")
if pkg.getStrIfExists("license") == "":
logPackageError(displayName & " has no license")
var downloadUrl = pkg.getStrIfExists("url")
if not pkg.hasKey("url"):
logPackageError(displayName & " has no download URL")
else:
downloadUrl = downloadUrl
checkUrl("download", downloadUrl)
if pkg.hasKey("web"):
let webUrl = pkg["web"].getStr()
if webUrl != downloadUrl:
checkUrl("web", webUrl)
if pkg.hasKey("doc"):
let docUrl = pkg["doc"].getStr()
if docUrl != downloadUrl:
checkUrl("doc", docUrl)
if not success:
inc failedPackagesCount
if client != nil:
client.close()
echo ""
if oldPackagesPath != "":
echo "Found ", modifiedPackagesCount, " modified package(s)"
echo "Problematic packages count: ", failedPackagesCount
if failedPackagesCount > 0:
result = 1
proc cliMain(): int =
var parser = initOptParser(os.commandLineParams())
var newPackagesPath = ""
var oldPackagesPath = ""
var checkUrls = false
while true:
parser.next()
case parser.kind:
of cmdEnd: break
of cmdShortOption, cmdLongOption:
if parser.key == "old":
oldPackagesPath = parser.val
elif parser.key == "check-urls":
checkUrls = true
elif parser.key == "help":
echo usage
return 0
of cmdArgument:
if newPackagesPath == "":
newPackagesPath = parser.key
else:
echo "Too many arguments!"
return 1
if newPackagesPath == "":
echo usage
return 1
result = checkPackages(newPackagesPath, oldPackagesPath, checkUrls)
when isMainModule:
quit(cliMain())