forked from JohnSundell/SwiftPlate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.swift
executable file
·421 lines (338 loc) · 14.5 KB
/
main.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
#!/usr/bin/swift
/**
* SwiftPlate
*
* Copyright (c) 2016 John Sundell. Licensed under the MIT license, as follows:
*
* 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.
*/
import Foundation
// MARK: - Extensions
extension Process {
@discardableResult func launchBash(withCommand command: String) -> String? {
launchPath = "/bin/bash"
arguments = ["-c", command]
let pipe = Pipe()
standardOutput = pipe
// Silent errors by assigning a dummy pipe to the error output
standardError = Pipe()
launch()
waitUntilExit()
let outputData = pipe.fileHandleForReading.readDataToEndOfFile()
return String(data: outputData, encoding: .utf8)?.nonEmpty
}
func gitConfigValue(forKey key: String) -> String? {
return launchBash(withCommand: "git config --global --get \(key)")?.trimmingCharacters(in: .whitespacesAndNewlines)
}
}
extension String {
var nonEmpty: String? {
guard characters.count > 0 else {
return nil
}
return self
}
func withoutSuffix(_ suffix: String) -> String {
guard hasSuffix(suffix) else {
return self
}
let startIndex = index(endIndex, offsetBy: -suffix.characters.count)
return replacingCharacters(in: startIndex..<endIndex, with: "")
}
}
extension FileManager {
func isFolder(atPath path: String) -> Bool {
var objCBool: ObjCBool = false
guard fileExists(atPath: path, isDirectory: &objCBool) else {
return false
}
return objCBool.boolValue
}
}
extension Array {
func element(after index: Int) -> Element? {
guard index >= 0 && index < count else {
return nil
}
return self[index + 1]
}
}
// MARK: - Types
struct Arguments {
var destination: String?
var projectName: String?
var authorName: String?
var authorEmail: String?
var githubURL: String?
var organizationName: String?
var repositoryURL: URL?
var forceEnabled: Bool = false
init(commandLineArguments arguments: [String]) {
for (index, argument) in arguments.enumerated() {
switch argument.lowercased() {
case "--destination", "-d":
destination = arguments.element(after: index)
case "--project", "-p":
projectName = arguments.element(after: index)
case "--name", "-n":
authorName = arguments.element(after: index)
case "--email", "-e":
authorEmail = arguments.element(after: index)
case "--url", "-u":
githubURL = arguments.element(after: index)
case "--organization", "-o":
organizationName = arguments.element(after: index)
case "--repo", "-r":
if let urlString = arguments.element(after: index) {
repositoryURL = URL(string: urlString)
}
case "--force", "-f":
forceEnabled = true
default:
break
}
}
}
}
class StringReplacer {
private let projectName: String
private let authorName: String
private let authorEmail: String
private let gitHubURL: String
private let year: String
private let today: String
private let organizationName: String
init(projectName: String, authorName: String, authorEmail: String?, gitHubURL: String?, organizationName: String?) {
self.projectName = projectName
self.authorName = authorName
self.authorEmail = authorEmail ?? ""
self.gitHubURL = gitHubURL ?? ""
self.organizationName = organizationName ?? projectName
let yearFormatter = DateFormatter()
yearFormatter.dateFormat = "YYYY"
self.year = yearFormatter.string(from: Date())
let dateFormatter = DateFormatter()
dateFormatter.dateStyle = .short
self.today = dateFormatter.string(from: Date())
}
private var dateString: String {
return DateFormatter.localizedString(
from: Date(),
dateStyle: DateFormatter.Style.medium,
timeStyle: DateFormatter.Style.none
)
}
func process(string: String) -> String {
return string.replacingOccurrences(of: "{PROJECT}", with: projectName)
.replacingOccurrences(of: "{AUTHOR}", with: authorName)
.replacingOccurrences(of: "{EMAIL}", with: authorEmail)
.replacingOccurrences(of: "{URL}", with: gitHubURL)
.replacingOccurrences(of: "{YEAR}", with: year)
.replacingOccurrences(of: "{TODAY}", with: today)
.replacingOccurrences(of: "{DATE}", with: dateString)
.replacingOccurrences(of: "{ORGANIZATION}", with: organizationName)
}
func process(filesInFolderWithPath folderPath: String) throws {
let fileManager = FileManager.default
let currentFileName = URL.init(fileURLWithPath: #file).lastPathComponent
for itemName in try fileManager.contentsOfDirectory(atPath: folderPath) {
if itemName.hasPrefix(".") || itemName == currentFileName {
continue
}
let itemPath = folderPath + "/" + itemName
let newItemPath = folderPath + "/" + process(string: itemName)
if fileManager.isFolder(atPath: itemPath) {
try process(filesInFolderWithPath: itemPath)
try fileManager.moveItem(atPath: itemPath, toPath: newItemPath)
continue
}
let fileContents = try String(contentsOfFile: itemPath)
try process(string: fileContents).write(toFile: newItemPath, atomically: false, encoding: .utf8)
if newItemPath != itemPath {
try fileManager.removeItem(atPath: itemPath)
}
}
}
}
// MARK: - Functions
func printError(_ message: String) {
print("👮 \(message)")
}
func askForRequiredInfo(question: String, errorMessage errorMessageClosure: @autoclosure () -> String) -> String {
print(question)
guard let info = readLine()?.nonEmpty else {
printError("\(errorMessageClosure()). Try again.")
return askForRequiredInfo(question: question, errorMessage: errorMessageClosure)
}
return info
}
func askForOptionalInfo(question: String, questionSuffix: String = "You may leave this empty.") -> String? {
print("\(question) \(questionSuffix)")
return readLine()?.nonEmpty
}
func askForBooleanInfo(question: String) -> Bool {
let errorMessage = "Please enter Y/y (yes) or N/n (no)"
let answerString = askForRequiredInfo(question: "\(question) (Y/N)", errorMessage: errorMessage)
switch answerString.lowercased() {
case "y":
return true
case "n":
return false
default:
printError("\(errorMessage). Try again.")
return askForBooleanInfo(question: question)
}
}
func askForDestination() -> String {
let destination = askForOptionalInfo(
question: "📦 Where would you like to generate a project?",
questionSuffix: "(Leave empty to use current directory)"
)
let fileManager = FileManager.default
if let destination = destination {
guard fileManager.fileExists(atPath: destination) else {
printError("That path doesn't exist. Try again.")
return askForDestination()
}
return destination
}
return fileManager.currentDirectoryPath
}
func askForProjectName(destination: String) -> String {
let projectFolderName = destination.withoutSuffix("/").components(separatedBy: "/").last!
let projectName = askForOptionalInfo(
question: "📛 What's the name of your project?",
questionSuffix: "(Leave empty to use the name of the project folder: \(projectFolderName))"
)
return projectName ?? projectFolderName
}
func askForAuthorName() -> String {
let gitName = Process().gitConfigValue(forKey: "user.name")
let question = "👶 What's your name?"
if let gitName = gitName {
let authorName = askForOptionalInfo(question: question, questionSuffix: "(Leave empty to use your git config name: \(gitName))")
return authorName ?? gitName
}
return askForRequiredInfo(question: question, errorMessage: "Your name cannot be empty")
}
func askForAuthorEmail() -> String? {
let gitEmail = Process().gitConfigValue(forKey: "user.email")
let question = "📫 What's your email address (for Podspec)?"
if let gitEmail = gitEmail {
let authorEmail = askForOptionalInfo(question: question, questionSuffix: "(Leave empty to use your git config email: \(gitEmail))")
return authorEmail ?? gitEmail
}
return askForOptionalInfo(question: question)
}
func askForGitHubURL(destination: String) -> String? {
let gitURL = Process().launchBash(withCommand: "cd \(destination) && git remote get-url origin")?
.trimmingCharacters(in: .whitespacesAndNewlines)
.withoutSuffix(".git")
let question = "🌍 Any GitHub URL that you'll be hosting this project at (for Podspec)?"
if let gitURL = gitURL {
let gitHubURL = askForOptionalInfo(question: question, questionSuffix: "(Leave empty to use the remote URL of your repo: \(gitURL))")
return gitHubURL ?? gitURL
}
return askForOptionalInfo(question: question)
}
func performCommand(description: String, command: () throws -> Void) rethrows {
print("👉 \(description)...")
try command()
print("✅ Done")
}
// MARK: - Program
print("Welcome to the SwiftPlate project generator 🐣")
let arguments = Arguments(commandLineArguments: CommandLine.arguments)
let destination = arguments.destination ?? askForDestination()
let projectName = arguments.projectName ?? askForProjectName(destination: destination)
let authorName = arguments.authorName ?? askForAuthorName()
let authorEmail = arguments.authorEmail ?? askForAuthorEmail()
let gitHubURL = arguments.githubURL ?? askForGitHubURL(destination: destination)
let organizationName = arguments.organizationName ?? askForOptionalInfo(question: "🏢 What's your organization name?")
print("---------------------------------------------------------------------")
print("SwiftPlate will now generate a project with the following parameters:")
print("📦 Destination: \(destination)")
print("📛 Name: \(projectName)")
print("👶 Author: \(authorName)")
if let authorEmail = authorEmail {
print("📫 Author email: \(authorEmail)")
}
if let gitHubURL = gitHubURL {
print("🌍 GitHub URL: \(gitHubURL)")
}
if let organizationName = organizationName {
print("🏢 Organization Name: \(organizationName)")
}
print("---------------------------------------------------------------------")
if !arguments.forceEnabled {
if !askForBooleanInfo(question: "Proceed? ✅") {
exit(0)
}
}
print("🚀 Starting to generate project \(projectName)...")
do {
let fileManager = FileManager.default
let temporaryDirectoryPath = destination + "/swiftplate_temp"
let gitClonePath = "\(temporaryDirectoryPath)/SwiftPlate"
let templatePath = "\(gitClonePath)/Template"
performCommand(description: "Removing any previous temporary folder") {
try? fileManager.removeItem(atPath: temporaryDirectoryPath)
}
try performCommand(description: "Making temporary folder (\(temporaryDirectoryPath))") {
try fileManager.createDirectory(atPath: temporaryDirectoryPath, withIntermediateDirectories: false, attributes: nil)
}
performCommand(description: "Making a local clone of the SwiftPlate repo") {
let repositoryURL = arguments.repositoryURL ?? URL(string: "https://github.com/JohnSundell/SwiftPlate.git")!
Process().launchBash(withCommand: "git clone \(repositoryURL.absoluteString) '\(gitClonePath)' -q")
}
try performCommand(description: "Copying template folder") {
let ignorableItems: Set<String> = ["readme.md", "license"]
let ignoredItems = try fileManager.contentsOfDirectory(atPath: destination).map {
$0.lowercased()
}.filter {
ignorableItems.contains($0)
}
for itemName in try fileManager.contentsOfDirectory(atPath: templatePath) {
let originPath = templatePath + "/" + itemName
let destinationPath = destination + "/" + itemName
let lowercasedItemName = itemName.lowercased()
guard ignoredItems.contains(lowercasedItemName) == false else {
continue
}
try fileManager.copyItem(atPath: originPath, toPath: destinationPath)
}
}
try performCommand(description: "Removing temporary folder") {
try fileManager.removeItem(atPath: temporaryDirectoryPath)
}
try performCommand(description: "Filling in template") {
let replacer = StringReplacer(
projectName: projectName,
authorName: authorName,
authorEmail: authorEmail,
gitHubURL: gitHubURL,
organizationName: organizationName
)
try replacer.process(filesInFolderWithPath: destination)
}
print("All done! 🎉 Good luck with your project! 🚀")
} catch {
print("An error was encountered 🙁")
print("Error: \(error)")
}