-
-
Notifications
You must be signed in to change notification settings - Fork 610
/
validate.swift
executable file
·495 lines (419 loc) · 16.2 KB
/
validate.swift
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
#!/usr/bin/env swift
// Copyright 2018-2021 Dave Verwer, Sven A. Schmidt, and other contributors.
//
// 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.
import Foundation
#if canImport(FoundationNetworking)
import FoundationNetworking
#endif
// MARK: - Constants
enum Constants {
static let githubPackageListURL = URL(string: "https://raw.githubusercontent.com/SwiftPackageIndex/PackageList/main/packages.json")!
static let githubToken = ProcessInfo.processInfo.environment["GITHUB_TOKEN"]
}
// MARK: - Type declarations
enum AppError: Error {
case invalidURL(URL)
case fetchTimeout(URL)
case manifestNotFound(URL)
case networkingError(Error)
case noData(URL)
case notFound(URL)
case outputIdentical
case packageDumpError(String)
case packageDumpTimeout
case packageListChanged
case packageMoved
case rateLimitExceeded(URL, reportedLimit: Int)
case syntaxError(String)
var localizedDescription: String {
switch self {
case .invalidURL(let url):
return "invalid url: \(url)"
case .fetchTimeout(let url):
return "timeout while fetching url: \(url)"
case .manifestNotFound(let url):
return "no package manifest found at url: \(url)"
case .networkingError(let error):
return "networking error: \(error.localizedDescription)"
case .noData(let url):
return "no data returned from url: \(url)"
case .notFound(let url):
return "url not found (404): \(url)"
case .outputIdentical:
return "resulting package.json is unchanged. This typically means the package is already in the index."
case .packageDumpError(let msg):
return "package dump failed: \(msg)"
case .packageDumpTimeout:
return "timeout while running `swift package dump-package`"
case .packageListChanged:
return "package list was modified"
case .packageMoved:
return "package moved"
case let .rateLimitExceeded(url, limit):
return "rate limit of \(limit) exceeded while requesting url: \(url)"
case .syntaxError(let msg):
return msg
}
}
}
enum RunMode {
case processURL(URL)
case processPackageList
}
struct Package: Decodable {
let name: String
}
// MARK: - Generic helpers
extension Pipe {
convenience init(readabilityHandler: ((FileHandle) -> Void)?) {
self.init()
self.fileHandleForReading.readabilityHandler = readabilityHandler
}
}
// MARK: - Redirect handling
class RedirectFollower: NSObject, URLSessionDataDelegate {
var lastURL: URL?
init(initialURL: URL) {
self.lastURL = initialURL
}
func urlSession(_ session: URLSession, task: URLSessionTask, willPerformHTTPRedirection response: HTTPURLResponse, newRequest request: URLRequest, completionHandler: @escaping (URLRequest?) -> Void) {
lastURL = request.url ?? lastURL
// FIXME: port 404 and 429 handling from PackageList/Validator
completionHandler(request)
}
}
extension URL {
func followingRedirects(timeout: TimeInterval = 30) -> URL? {
let semaphore = DispatchSemaphore(value: 0)
let follower = RedirectFollower(initialURL: self)
let session = URLSession(configuration: .default, delegate: follower, delegateQueue: nil)
let task = session.dataTask(with: self) { (_, response, error) in
semaphore.signal()
}
task.resume()
_ = semaphore.wait(timeout: .now() + timeout)
return follower.lastURL
}
}
// MARK: - Networking
func fetch(_ url: URL, timeout: Int = 10) throws -> Data {
var request = URLRequest(url: url)
if let token = Constants.githubToken {
request.addValue("Bearer \(token)", forHTTPHeaderField: "Authorization")
}
let semaphore = DispatchSemaphore(value: 0)
var payload: Data?
var taskError: AppError?
let session = URLSession(configuration: .default)
let task = session.dataTask(with: request) { (data, response, error) in
let httpResponse = response as? HTTPURLResponse
if let limit = httpResponse?.value(forHTTPHeaderField: "X-RateLimit-Limit").flatMap(Int.init),
let remaining = httpResponse?.value(forHTTPHeaderField: "X-RateLimit-Remaining").flatMap(Int.init),
remaining == 0 {
taskError = .rateLimitExceeded(url, reportedLimit: limit)
} else if httpResponse?.statusCode == 404 {
taskError = .notFound(url)
} else if let error = error {
taskError = .networkingError(error)
}
payload = data
semaphore.signal()
}
task.resume()
switch semaphore.wait(timeout: .now() + .seconds(timeout)) {
case .timedOut:
throw AppError.fetchTimeout(url)
case .success where taskError != nil:
throw taskError!
case .success:
guard let payload = payload else { throw AppError.noData(url) }
return payload
}
}
// MARK: - Script specific extensions
extension String {
func addingGitExtension() -> String {
hasSuffix(".git") ? self : self + ".git"
}
func removingGitExtension() -> String {
let suffix = ".git"
if lowercased().hasSuffix(suffix) {
return String(dropLast(suffix.count))
}
return self
}
func rtrim(_ characterSet: CharacterSet = .whitespacesAndNewlines) -> String {
String(
reversed()
.drop(while: { char in
CharacterSet(charactersIn: String(char)).isSubset(of: characterSet)
})
.reversed()
)
}
func normalized() -> String {
lowercased()
.rtrim(.init(charactersIn: "/"))
.addingGitExtension()
}
}
extension URL {
func appendingGitExtension() -> URL {
absoluteString.hasSuffix(".git") ? self : appendingPathExtension("git")
}
func removingGitExtension() -> URL {
URL(string: absoluteString.removingGitExtension())!
}
func normalized() -> String {
absoluteString
.lowercased()
.rtrim(.init(charactersIn: "/"))
.addingGitExtension()
}
}
extension Set where Element == URL {
func normalized() -> Set<String> {
Set<String>(map { $0.normalized() })
}
}
extension Array where Element == URL {
func normalized() -> Set<String> {
Set<String>(map { $0.normalized() })
}
}
extension Array where Element == String {
func normalized() -> Set<String> {
Set<String>(map { $0.normalized() })
}
}
// MARK: - Script logic
func parseArgs(_ args: [String]) throws -> RunMode {
guard args.count > 1 else { return .processPackageList }
let urlString = args[1]
guard
urlString.starts(with: "https://"),
let url = URL(string: urlString)
else { throw AppError.syntaxError("not a valid url: \(urlString)") }
return .processURL(url)
}
func getDefaultBranch(owner: String, repository: String) throws -> String {
let url = URL(string: "https://api.github.com/repos/\(owner)/\(repository)")!
let json = try fetch(url)
struct Repository: Decodable {
let default_branch: String
}
return try JSONDecoder().decode(Repository.self, from: json).default_branch
}
struct RepoFile: Codable {
var type: String
var path: String
}
func parseOwnerRepo(from url: URL) -> (owner: String, repository: String) {
let repository = (url.pathExtension.lowercased() == "git")
? url.deletingPathExtension().lastPathComponent
: url.lastPathComponent
let owner = url.deletingLastPathComponent().lastPathComponent
return (owner, repository)
}
func listFilesInRepo(owner: String, repository: String, branch: String) throws -> [RepoFile] {
let apiURL = URL(string: "https://api.github.com/repos/\(owner)/\(repository)/git/trees/\(branch)")!
let json = try fetch(apiURL)
struct Response: Codable {
var tree: [RepoFile]
}
do {
return try JSONDecoder().decode(Response.self, from: json).tree
} catch {
print("failed to parse listFilesInRepo response:")
print(String(decoding: json, as: UTF8.self))
throw error
}
}
func getManifestURLs(_ url: URL) throws -> [URL] {
let (owner, repository) = parseOwnerRepo(from: url)
let branch = try getDefaultBranch(owner: owner, repository: repository)
let manifestFiles = try listFilesInRepo(owner: owner, repository: repository, branch: branch)
.filter { $0.type == "blob" }
.filter { $0.path.hasPrefix("Package") }
.filter { $0.path.hasSuffix(".swift") }
.map(\.path)
.sorted()
guard !manifestFiles.isEmpty else { throw AppError.manifestNotFound(url) }
return manifestFiles.map {
URL(string: "https://raw.githubusercontent.com/\(owner)/\(repository)/\(branch)/\($0)")!
}
}
func createTempDir() throws -> URL {
let fm = FileManager.default
let tempDir = fm.temporaryDirectory.appendingPathComponent(UUID().uuidString)
try fm.createDirectory(at: tempDir, withIntermediateDirectories: false, attributes: nil)
return tempDir
}
func createDumpPackageProcess(at path: URL, standardOutput: Pipe, standardError: Pipe) -> Process {
let process = Process()
process.executableURL = URL(fileURLWithPath: "/usr/bin/swift")
process.arguments = ["package", "dump-package"]
process.currentDirectoryURL = path
process.standardOutput = standardOutput
process.standardError = standardError
return process
}
func runDumpPackage(at path: URL, timeout: TimeInterval = 20) throws -> Data {
let queue = DispatchQueue(label: "process-pipe-read-queue")
var stdout = Data()
var stderr = Data()
let stdoutPipe = Pipe { handler in
queue.async { stdout.append(handler.availableData) }
}
let stderrPipe = Pipe { handler in
queue.async { stderr.append(handler.availableData) }
}
let process = createDumpPackageProcess(at: path, standardOutput: stdoutPipe, standardError: stderrPipe)
DispatchQueue.main.asyncAfter(deadline: .now() + timeout) {
if process.isRunning { process.terminate() }
}
try process.run()
process.waitUntilExit()
switch process.terminationStatus {
case 0:
return stdout
case 15:
throw AppError.packageDumpTimeout
default:
let error = String(data: stderr, encoding: .utf8) ?? "(nil)"
throw AppError.packageDumpError(error)
}
}
@discardableResult
func dumpPackage(url: URL) throws -> Package {
let tempDir = try createTempDir()
for manifestURL in try getManifestURLs(url) {
let manifest = try fetch(manifestURL)
let fileURL = tempDir.appendingPathComponent(manifestURL.lastPathComponent)
try manifest.write(to: fileURL)
}
let json = try runDumpPackage(at: tempDir)
return try JSONDecoder().decode(Package.self, from: json)
}
func verifyURL(_ url: URL) throws -> URL {
print("verifying", url)
guard let resolvedURL = url.followingRedirects() else { throw AppError.invalidURL(url) }
try dumpPackage(url: resolvedURL)
return resolvedURL
}
func fetchGithubPackageList() throws -> [URL] {
let json = try fetch(Constants.githubPackageListURL)
return try JSONDecoder().decode([URL].self, from: json)
}
func processPackageList() throws {
print("Processing package list ...")
let onlinePackageList = try fetchGithubPackageList()
.map { url -> URL in
let updated = url.appendingGitExtension()
if updated != url {
print("→ \(url.lastPathComponent) -> \(updated.lastPathComponent)")
}
return updated
}
let packageListFileURL = URL(fileURLWithPath: FileManager.default.currentDirectoryPath, isDirectory: true).appendingPathComponent("packages.json")
let packageListData = try Data(contentsOf: packageListFileURL)
let localPackageList = try JSONDecoder().decode([URL].self, from: packageListData)
let normalizedOnlineList = onlinePackageList.normalized()
let normalizedLocalList = localPackageList.normalized()
if localPackageList.count != normalizedLocalList.count {
print("The packages.json file contained duplicate rows")
}
let additions = try localPackageList // use localPackageList to preserve original casing
.filter { !normalizedOnlineList.contains($0.normalized()) }
.map { try verifyURL($0).appendingGitExtension() }
.filter {
// filter again, in case a redirect happens to be in the list already
!normalizedOnlineList.contains($0.normalized())
}
.map(\.absoluteString)
let removals = onlinePackageList
.filter { !normalizedLocalList.contains($0.normalized()) }
.map(\.absoluteString)
additions.forEach { print("+ \($0)") }
removals.forEach { print("- \($0)") }
let normalizedRemovals = removals.map { $0.normalized() }
let newList = (
onlinePackageList
.map(\.absoluteString)
.filter { !normalizedRemovals.contains($0.normalized()) }
+ additions
)
.sorted { $0.lowercased() < $1.lowercased() }
let newListData: Data = try {
let encoder = JSONEncoder()
encoder.outputFormatting = [.prettyPrinted, .withoutEscapingSlashes]
return try encoder.encode(newList)
}()
do {
let original = String(decoding: packageListData, as: UTF8.self).trimmingCharacters(in: .whitespacesAndNewlines)
let new = String(decoding: newListData, as: UTF8.self).trimmingCharacters(in: .whitespacesAndNewlines)
if original != new {
if newList == onlinePackageList.map(\.absoluteString) {
throw AppError.outputIdentical
} else {
print("⚠️ Changes have been made to 'packages.json'. Your original version has been")
print("⚠️ copied to 'package.backup.json'. Please commit the updated file.")
let backupURL = packageListFileURL.deletingLastPathComponent()
.appendingPathComponent("packages.backup.json")
try packageListData.write(to: backupURL)
try newListData.write(to: packageListFileURL)
throw AppError.packageListChanged
}
}
}
}
func main(args: [String]) throws {
if Constants.githubToken == nil {
print("Warning: Using anonymous authentication -- may run into rate limiting issues\n")
}
switch try parseArgs(args) {
case .processURL(let url):
let resolvedURL = try verifyURL(url)
if resolvedURL.absoluteString != url.absoluteString {
print("ℹ️ package moved: \(url) -> \(resolvedURL)")
throw AppError.packageMoved
}
case .processPackageList:
try processPackageList()
}
print("✅ validation succeeded")
exit(EXIT_SUCCESS)
}
// MARK: - main
do {
try main(args: CommandLine.arguments)
} catch {
if let appError = error as? AppError {
print("ERROR: \(appError.localizedDescription)")
if ProcessInfo.processInfo.environment["CI"] == "true" {
print("::set-output name=validateError::\(appError.localizedDescription)")
if case .packageListChanged = appError {
// For CI it's acceptable for the package list to change as we'll simply take the output of this script
exit(EXIT_SUCCESS)
}
}
} else {
if ProcessInfo.processInfo.environment["CI"] == "true" {
print("::set-output name=validateError::\(error)")
}
print("ERROR: \(error)")
}
exit(EXIT_FAILURE)
}
RunLoop.main.run()