-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathApolloSchemaDownloader.swift
More file actions
461 lines (404 loc) · 14.5 KB
/
ApolloSchemaDownloader.swift
File metadata and controls
461 lines (404 loc) · 14.5 KB
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
import Foundation
import GraphQLCompiler
// Only available on macOS
#if os(macOS)
/// A wrapper to facilitate downloading a GraphQL schema.
public struct ApolloSchemaDownloader {
public enum SchemaDownloadError: Swift.Error, LocalizedError {
case downloadedRegistryJSONFileNotFound(underlying: any Error)
case downloadedIntrospectionJSONFileNotFound(underlying: any Error)
case couldNotParseRegistryJSON(underlying: any Error)
case unexpectedRegistryJSONType
case couldNotExtractSDLFromRegistryJSON
case couldNotCreateSDLDataToWrite(schema: String)
case couldNotConvertIntrospectionJSONToSDL(underlying: any Error)
case couldNotCreateURLComponentsFromEndpointURL(url: URL)
case couldNotGetURLFromURLComponents(components: URLComponents)
public var errorDescription: String? {
switch self {
case .downloadedRegistryJSONFileNotFound(let underlying):
return "Could not load the JSON file downloaded from the registry. Underlying error: \(underlying)"
case .downloadedIntrospectionJSONFileNotFound(let underlying):
return "Could not load the JSON file downloaded from your server via introspection. Underlying error: \(underlying)"
case .couldNotParseRegistryJSON(let underlying):
return "Could not parse JSON returned by the registry. Underlying error: \(underlying)"
case .unexpectedRegistryJSONType:
return "Root type in the registry JSON was not a dictionary."
case .couldNotExtractSDLFromRegistryJSON:
return "Could not extract the SDL schema from JSON sent by the registry."
case .couldNotCreateSDLDataToWrite(let schema):
return "Could not convert SDL schema into data to write to the filesystem. Schema: \(schema)"
case .couldNotConvertIntrospectionJSONToSDL(let underlying):
return "Could not convert downloaded introspection JSON into SDL format. Underlying error: \(underlying)"
case .couldNotCreateURLComponentsFromEndpointURL(let url):
return "Could not create URLComponents from \(url) for Introspection."
case .couldNotGetURLFromURLComponents(let components):
return "Could not get URL from \(components)."
}
}
}
/// Downloads your schema using the specified configuration object.
///
/// - Parameters:
/// - configuration: The `ApolloSchemaDownloadConfiguration` used to download the schema.
/// - rootURL: The root `URL` to resolve relative `URL`s in the configuration's paths against.
/// If `nil`, the current working directory of the executing process will be used.
/// - session: The network session to use for the download. If `nil` the `URLSession.Shared` will be used by default.
/// - Returns: Output from a successful fetch or throws an error.
/// - Throws: Any error which occurs during the fetch.
public static func fetch(
configuration: ApolloSchemaDownloadConfiguration,
withRootURL rootURL: URL? = nil,
session: (any NetworkSession)? = nil
) async throws {
try ApolloFileManager.default.createContainingDirectoryIfNeeded(
forPath: configuration.outputPath
)
switch configuration.downloadMethod {
case .introspection(let endpointURL, let httpMethod, _, let includeDeprecatedInputValues):
try await self.downloadFrom(
introspection: endpointURL,
httpMethod: httpMethod,
includeDeprecatedInputValues: includeDeprecatedInputValues,
configuration: configuration,
withRootURL: rootURL,
session: session
)
case .apolloRegistry(let settings):
try await self.downloadFrom(
registry: settings,
configuration: configuration,
withRootURL: rootURL,
session: session
)
}
}
private static func request(
url: URL,
httpMethod: ApolloSchemaDownloadConfiguration.DownloadMethod.HTTPMethod,
headers: [ApolloSchemaDownloadConfiguration.HTTPHeader],
bodyData: Data? = nil
) -> URLRequest {
var request = URLRequest(url: url)
request.addValue("application/json", forHTTPHeaderField: "Content-Type")
for header in headers {
request.addValue(header.value, forHTTPHeaderField: header.key)
}
request.httpMethod = String(describing: httpMethod)
request.httpBody = bodyData
return request
}
static func write(
_ string: String,
path: String,
rootURL: URL?,
fileManager: ApolloFileManager = .default
) async throws {
let outputURL: URL
if let rootURL = rootURL {
outputURL = URL(fileURLWithPath: path, relativeTo: rootURL)
} else {
outputURL = URL(fileURLWithPath: path).standardizedFileURL
}
guard let data = string.data(using: .utf8) else {
throw SchemaDownloadError.couldNotCreateSDLDataToWrite(schema: string)
}
try await fileManager.createFile(atPath: outputURL.path, data: data, overwrite: true)
}
// MARK: - Schema Registry
static let RegistryEndpoint = URL(string: "https://graphql.api.apollographql.com/api/graphql")!
static let RegistryDownloadQuery = """
query DownloadSchema($graphID: ID!, $variant: String!) {
service(id: $graphID) {
variant(name: $variant) {
activeSchemaPublish {
schema {
document
}
}
}
}
}
"""
static func downloadFrom(
registry: ApolloSchemaDownloadConfiguration.DownloadMethod.ApolloRegistrySettings,
configuration: ApolloSchemaDownloadConfiguration,
withRootURL rootURL: URL?,
session: (any NetworkSession)? = nil
) async throws {
CodegenLogger.log("Downloading schema from registry", logLevel: .debug)
let urlRequest = try registryRequest(with: registry, headers: configuration.headers)
let jsonOutputURL = URL(fileURLWithPath: configuration.outputPath, relativeTo: rootURL)
.parentFolderURL()
.appendingPathComponent("registry_response.json")
try URLDownloader(session: session).downloadSynchronously(
urlRequest,
to: jsonOutputURL,
timeout: configuration.downloadTimeout
)
try await self.convertFromRegistryJSONToSDLFile(
jsonFileURL: jsonOutputURL,
configuration: configuration,
withRootURL: rootURL
)
CodegenLogger.log("Successfully downloaded schema from registry", logLevel: .debug)
}
static func registryRequest(
with settings: ApolloSchemaDownloadConfiguration.DownloadMethod.ApolloRegistrySettings,
headers: [ApolloSchemaDownloadConfiguration.HTTPHeader]
) throws -> URLRequest {
var variables = [String: String]()
variables["graphID"] = settings.graphID
if let variant = settings.variant {
variables["variant"] = variant
}
let requestBody = UntypedGraphQLRequestBodyCreator.requestBody(
for: self.RegistryDownloadQuery,
variables: variables,
operationName: "DownloadSchema"
)
let bodyData = try JSONSerialization.data(withJSONObject: requestBody, options: [.sortedKeys])
var allHeaders = headers
allHeaders.append(ApolloSchemaDownloadConfiguration.HTTPHeader(
key: "x-api-key",
value: settings.apiKey
))
let urlRequest = request(
url: self.RegistryEndpoint,
httpMethod: .POST,
headers: allHeaders,
bodyData: bodyData
)
return urlRequest
}
static func convertFromRegistryJSONToSDLFile(
jsonFileURL: URL,
configuration: ApolloSchemaDownloadConfiguration,
withRootURL rootURL: URL?
) async throws {
let jsonData: Data
do {
jsonData = try Data(contentsOf: jsonFileURL)
} catch {
throw SchemaDownloadError.downloadedRegistryJSONFileNotFound(underlying: error)
}
let json: Any
do {
json = try JSONSerialization.jsonObject(with: jsonData)
} catch {
throw SchemaDownloadError.couldNotParseRegistryJSON(underlying: error)
}
guard let dict = json as? [String: Any] else {
throw SchemaDownloadError.unexpectedRegistryJSONType
}
guard
let data = dict["data"] as? [String: Any],
let service = data["service"] as? [String: Any],
let variant = service["variant"] as? [String: Any],
let asp = variant["activeSchemaPublish"] as? [String: Any],
let schemaDict = asp["schema"] as? [String: Any],
let sdlSchema = schemaDict["document"] as? String
else {
throw SchemaDownloadError.couldNotExtractSDLFromRegistryJSON
}
try await write(sdlSchema, path: configuration.outputPath, rootURL: rootURL)
}
// MARK: - Schema Introspection
static func introspectionQuery(includeDeprecatedInputValues: Bool) -> String {
let inputDeprecationArgs = includeDeprecatedInputValues ? "(includeDeprecated: true)" : ""
let inputValueDeprecationFields = includeDeprecatedInputValues ?
"""
isDeprecated
deprecationReason
""" : ""
return """
query IntrospectionQuery {
__schema {
queryType { name }
mutationType { name }
subscriptionType { name }
types {
...FullType
}
directives {
name
description
locations
args {
...InputValue
}
}
}
}
fragment FullType on __Type {
kind
name
description
isOneOf
fields(includeDeprecated: true) {
name
description
args\(inputDeprecationArgs) {
...InputValue
}
type {
...TypeRef
}
isDeprecated
deprecationReason
}
inputFields\(inputDeprecationArgs) {
...InputValue
}
interfaces {
...TypeRef
}
enumValues(includeDeprecated: true) {
name
description
isDeprecated
deprecationReason
}
possibleTypes {
...TypeRef
}
}
fragment InputValue on __InputValue {
name
description
type { ...TypeRef }
defaultValue
\(inputValueDeprecationFields)
}
fragment TypeRef on __Type {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
}
}
}
}
}
}
}
}
"""
}
static func downloadFrom(
introspection endpoint: URL,
httpMethod: ApolloSchemaDownloadConfiguration.DownloadMethod.HTTPMethod,
includeDeprecatedInputValues: Bool,
configuration: ApolloSchemaDownloadConfiguration,
withRootURL: URL?,
session: (any NetworkSession)? = nil
) async throws {
CodegenLogger.log("Downloading schema via introspection from \(endpoint)", logLevel: .debug)
let urlRequest = try introspectionRequest(
from: endpoint,
httpMethod: httpMethod,
headers: configuration.headers,
includeDeprecatedInputValues: includeDeprecatedInputValues
)
let jsonOutputURL: URL = {
switch configuration.outputFormat {
case .SDL: return URL(fileURLWithPath: configuration.outputPath, relativeTo: withRootURL)
.parentFolderURL()
.appendingPathComponent("introspection_response.json")
case .JSON: return URL(fileURLWithPath: configuration.outputPath, relativeTo: withRootURL)
}
}()
try URLDownloader(session: session).downloadSynchronously(
urlRequest,
to: jsonOutputURL,
timeout: configuration.downloadTimeout
)
if configuration.outputFormat == .SDL {
try await convertFromIntrospectionJSONToSDLFile(
jsonFileURL: jsonOutputURL,
configuration: configuration,
withRootURL: withRootURL
)
}
CodegenLogger.log("Successfully downloaded schema via introspection", logLevel: .debug)
}
static func introspectionRequest(
from endpointURL: URL,
httpMethod: ApolloSchemaDownloadConfiguration.DownloadMethod.HTTPMethod,
headers: [ApolloSchemaDownloadConfiguration.HTTPHeader],
includeDeprecatedInputValues: Bool
) throws -> URLRequest {
let urlRequest: URLRequest
switch httpMethod {
case .POST:
let requestBody = UntypedGraphQLRequestBodyCreator.requestBody(
for: introspectionQuery(includeDeprecatedInputValues: includeDeprecatedInputValues),
variables: nil,
operationName: "IntrospectionQuery"
)
let bodyData = try JSONSerialization.data(
withJSONObject: requestBody,
options: [.sortedKeys]
)
urlRequest = request(
url: endpointURL,
httpMethod: httpMethod,
headers: headers,
bodyData: bodyData
)
case let .GET(queryParameterName):
guard var components = URLComponents(url: endpointURL, resolvingAgainstBaseURL: true) else {
throw SchemaDownloadError.couldNotCreateURLComponentsFromEndpointURL(url: endpointURL)
}
components.queryItems = [URLQueryItem(name: queryParameterName, value: introspectionQuery(includeDeprecatedInputValues: includeDeprecatedInputValues))]
guard let url = components.url else {
throw SchemaDownloadError.couldNotGetURLFromURLComponents(components: components)
}
urlRequest = request(url: url, httpMethod: httpMethod, headers: headers)
}
return urlRequest
}
static func convertFromIntrospectionJSONToSDLFile(
jsonFileURL: URL,
configuration: ApolloSchemaDownloadConfiguration,
withRootURL rootURL: URL?
) async throws {
defer {
try? FileManager.default.removeItem(at: jsonFileURL)
}
let frontend = try await GraphQLJSFrontend()
let schema: GraphQLSchema
do {
schema = try await frontend.loadSchema(from: [try frontend.makeSource(from: jsonFileURL)])
} catch {
throw SchemaDownloadError.downloadedIntrospectionJSONFileNotFound(underlying: error)
}
let sdlSchema: String
do {
sdlSchema = try await frontend.printSchemaAsSDL(schema: schema)
} catch {
throw SchemaDownloadError.couldNotConvertIntrospectionJSONToSDL(underlying: error)
}
try await write(sdlSchema, path: configuration.outputPath, rootURL: rootURL)
}
}
#endif