-
Notifications
You must be signed in to change notification settings - Fork 78
/
PlatformSpecific.swift
413 lines (388 loc) · 22.4 KB
/
PlatformSpecific.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
//
// PlatformSpecific.swift
// PMHTTP
//
// Created by Lily Ballard on 10/31/16.
// Copyright © 2016 Postmates. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
import Foundation
#if os(iOS) || os(watchOS) || os(tvOS)
import UIKit
#if os(watchOS)
import WatchKit
#endif
import ImageIO
import MobileCoreServices
// MARK: UIImage Support
public extension HTTPManagerUploadFormRequest {
/// Specifies a named multipart body for this request consisting of PNG data.
///
/// The provided image is converted into PNG data asynchronously.
///
/// Calling this method sets the request's overall Content-Type to
/// `multipart/form-data`.
///
/// - Note: In the unlikely event that PNG data cannot be generated for the image,
/// the multipart body will be omitted.
///
/// - Bug: `name` and `filename` are assumed to be ASCII and not need any escaping.
///
/// - Parameters:
/// - image: The image for the multipart.
/// - name: The name of the multipart body. This is the name the server expects.
/// - filename: The filename of the attachment. Optional.
func addMultipartPNG(for image: UIImage, withName name: String, filename: String? = nil) {
self.addMultipartBody(using: { upload in
guard let data = UIImagePNGRepresentation(image) else { return }
upload.addMultipart(data: data, withName: name, mimeType: "image/png", filename: filename)
})
}
/// Specifies a named multipart body for this request consisting of JPEG data.
///
/// The provided image is converted into JPEG data asynchronously.
///
/// Calling this method sets the request's overall Content-Type to
/// `multipart/form-data`.
///
/// - Note: In the unlikely event that JPEG data cannot be generated for the image,
/// the multipart body will be omitted.
///
/// - Bug: `name` and `filename` are assumed to be ASCII and not need any escaping.
///
/// - Parameters:
/// - image: The image for the multipart.
/// - compressionQuality: The quality of the resulting JPEG image, expressed as a value
/// from `0.0` to `1.0`.
/// - name: The name of the multipart body. This is the name the server expects.
/// - filename: The filename of the attachment. Optional.
func addMultipartJPEG(for image: UIImage, withCompressionQuality quality: CGFloat, name: String, filename: String? = nil) {
self.addMultipartBody(using: { upload in
guard let data = UIImageJPEGRepresentation(image, quality) else { return }
upload.addMultipart(data: data, withName: name, mimeType: "image/jpeg", filename: filename)
})
}
}
@objc(PMHTTPImageError)
public enum HTTPManagerImageError: Int, LocalizedError {
/// The image returned by the server could not be decoded.
case cannotDecode
public var failureReason: String? {
switch self {
case .cannotDecode: return "The image could not be decoded."
}
}
}
public extension HTTPManagerDataRequest {
/// Returns a new request that parses the data as an image.
///
/// If the image container has multiple images, only the first one is returned.
///
/// - Note: If the server responds with 204 No Content, the parse is skipped and
/// `HTTPManagerError.unexpectedNoContent` is returned as the parse result.
/// - Parameter scale: The scale to use for the resulting image. Defaults to `1`.
/// - Returns: An `HTTPManagerParseRequest`.
func parseAsImage(scale: CGFloat = 1) -> HTTPManagerParseRequest<UIImage> {
let req = parse(using: { (response, data) -> UIImage in
if let response = response as? HTTPURLResponse, response.statusCode == 204 {
throw HTTPManagerError.unexpectedNoContent(response: response)
}
guard let image = UIImage(data: data, scale: scale, mimeType: (response as? HTTPURLResponse)?.mimeType)
else { throw HTTPManagerImageError.cannotDecode }
return image
})
req.expectedContentTypes = supportedImageMIMETypes
return req
}
/// Returns a new request that parses the data as an image and passes it through the
/// specified handler.
///
/// If the image container has multiple images, only the first one is returned.
///
/// - Note: If the server responds with 204 No Content, the parse is skipped and
/// `HTTPManagerError.unexpectedNoContent` is returned as the parse result.
/// - Parameter scale: The scale to use for the resulting image. Defaults to `1`.
/// - Parameter handler: The handler to call as part of the request processing. This handler
/// is not guaranteed to be called on any particular thread. The handler returns the new
/// value for the request.
/// - Returns: An `HTTPManagerParseRequest`.
/// - Note: If you need to parse on a particular thread, such as on the main thread, you
/// should use `performRequest(withCompletionQueue:completion:)` instead.
/// - Warning: If the request is canceled, the results of the handler may be discarded. Any
/// side-effects performed by your handler must be safe in the event of a cancelation.
/// - Warning: The parse request inherits the `isIdempotent` value of `self`. If the parse
/// handler has side effects and can throw, you should either ensure that it's safe to run
/// the parse handler again or set `isIdempotent` to `false`.
func parseAsImage<T>(scale: CGFloat = 1, using handler: @escaping (_ response: URLResponse, _ image: UIImage) throws -> T) -> HTTPManagerParseRequest<T> {
let req = parse(using: { (response, data) -> T in
if let response = response as? HTTPURLResponse, response.statusCode == 204 {
throw HTTPManagerError.unexpectedNoContent(response: response)
}
guard let image = UIImage(data: data, scale: scale, mimeType: (response as? HTTPURLResponse)?.mimeType)
else { throw HTTPManagerImageError.cannotDecode }
return try handler(response, image)
})
req.expectedContentTypes = supportedImageMIMETypes
return req
}
/// Returns a new request that parses the data as an image.
///
/// If the image container has multiple images, only the first one is returned.
///
/// - Note: If the server responds with 204 No Content, the parse is skipped and
/// `HTTPManagerError.unexpectedNoContent` is returned as the parse result.
/// - Returns: An `HTTPManagerParseRequest`.
@objc(parseAsImage)
func __objc_parseAsImage() -> HTTPManagerObjectParseRequest {
return HTTPManagerObjectParseRequest(request: parseAsImage(using: { $1 }))
}
/// Returns a new request that parses the data as an image.
///
/// If the image container has multiple images, only the first one is returned.
///
/// - Note: If the server responds with 204 No Content, the parse is skipped and
/// `HTTPManagerError.unexpectedNoContent` is returned as the parse result.
/// - Parameter scale: The scale to use for the resulting image.
/// - Returns: An `HTTPManagerParseRequest`.
@objc(parseAsImageWithScale:)
func __objc_parseAsImage(scale: CGFloat) -> HTTPManagerObjectParseRequest {
return HTTPManagerObjectParseRequest(request: parseAsImage(scale: scale, using: { $1 }))
}
/// Returns a new request that parses the data as an image and passes it through the
/// specified handler.
///
/// If the image container has multiple images, only the first one is returned.
///
/// - Note: If the server responds with 204 No Content, the parse is skipped and
/// `HTTPManagerError.unexpectedNoContent` is returned as the parse result.
/// - Parameter handler: The handler to call as part of the request processing. This handler
/// is not guaranteed to be called on any particular thread. The handler returns the new
/// value for the request.
/// - Returns: An `HTTPManagerParseRequest`.
/// - Note: If you need to parse on a particular thread, such as on the main thread, you
/// should use `performRequest(withCompletionQueue:completion:)` instead.
/// - Warning: If the request is canceled, the results of the handler may be discarded. Any
/// side-effects performed by your handler must be safe in the event of a cancelation.
/// - Warning: The parse request inherits the `isIdempotent` value of `self`. If the parse
/// handler has side effects and can throw, you should either ensure that it's safe to run
/// the parse handler again or set `isIdempotent` to `false`.
@objc(parseAsImageWithHandler:)
func __objc_parseAsImage(handler: @escaping @convention(block) (_ response: URLResponse, _ image: UIImage, _ error: AutoreleasingUnsafeMutablePointer<NSError?>) -> Any?) -> HTTPManagerObjectParseRequest {
return __objc_parseAsImage(scale: 1, handler: handler)
}
/// Returns a new request that parses the data as an image and passes it through the
/// specified handler.
///
/// If the image container has multiple images, only the first one is returned.
///
/// - Note: If the server responds with 204 No Content, the parse is skipped and
/// `HTTPManagerError.unexpectedNoContent` is returned as the parse result.
/// - Parameter scale: The scale to use for the resulting image.
/// - Parameter handler: The handler to call as part of the request processing. This handler
/// is not guaranteed to be called on any particular thread. The handler returns the new
/// value for the request.
/// - Returns: An `HTTPManagerParseRequest`.
/// - Note: If you need to parse on a particular thread, such as on the main thread, you
/// should use `performRequest(withCompletionQueue:completion:)` instead.
/// - Warning: If the request is canceled, the results of the handler may be discarded. Any
/// side-effects performed by your handler must be safe in the event of a cancelation.
/// - Warning: The parse request inherits the `isIdempotent` value of `self`. If the parse
/// handler has side effects and can throw, you should either ensure that it's safe to run
/// the parse handler again or set `isIdempotent` to `false`.
@objc(parseAsImageWithScale:handler:)
func __objc_parseAsImage(scale: CGFloat, handler: @escaping @convention(block) (_ response: URLResponse, _ image: UIImage, _ error: AutoreleasingUnsafeMutablePointer<NSError?>) -> Any?) -> HTTPManagerObjectParseRequest {
return HTTPManagerObjectParseRequest(request: parseAsImage(scale: scale, using: { (response, image) in
var error: NSError?
if let value = handler(response, image, &error) {
return value
} else if let error = error {
throw error
} else {
return nil
}
}))
}
}
public extension HTTPManagerActionRequest {
/// Returns a new request that parses the data as an image.
///
/// If the image container has multiple images, only the first one is returned.
///
/// - Note: The parse result is `nil` if and only if the server responded with 204 No
/// Content.
/// - Parameter scale: The scale to use for the resulting image. Defaults to `1`.
/// - Returns: An `HTTPManagerParseRequest`.
func parseAsImage(scale: CGFloat = 1) -> HTTPManagerParseRequest<UIImage?> {
let req = parse(using: { (response, data) -> UIImage? in
if let response = response as? HTTPURLResponse, response.statusCode == 204 {
// No Content
return nil
}
guard let image = UIImage(data: data, scale: scale, mimeType: (response as? HTTPURLResponse)?.mimeType)
else { throw HTTPManagerImageError.cannotDecode }
return image
})
req.expectedContentTypes = supportedImageMIMETypes
return req
}
/// Returns a new request that parses the data as an image and passes it through the
/// specified handler.
///
/// If the image container has multiple images, only the first one is returned.
///
/// - Note: The parse result is `nil` if and only if the server responded with 204 No
/// Content and the `response` argument is guaranteed to be an instance of
/// `HTTPURLResponse`.
/// - Parameter scale: The scale to use for the resulting image. Defaults to `1`.
/// - Parameter handler: The handler to call as part of the request processing. This handler
/// is not guaranteed to be called on any particular thread. The handler returns the new
/// value for the request.
/// - Returns: An `HTTPManagerParseRequest`.
/// - Note: If you need to parse on a particular thread, such as on the main thread, you
/// should use `performRequest(withCompletionQueue:completion:)` instead.
/// - Warning: If the request is canceled, the results of the handler may be discarded. Any
/// side-effects performed by your handler must be safe in the event of a cancelation.
/// - Warning: The parse request inherits the `isIdempotent` value of `self`. If the parse
/// handler has side effects and can throw, you should either ensure that it's safe to run
/// the parse handler again or set `isIdempotent` to `false`.
func parseAsImage<T>(scale: CGFloat = 1, using handler: @escaping (_ response: URLResponse, _ image: UIImage?) throws -> T) -> HTTPManagerParseRequest<T> {
let req = parse(using: { (response, data) -> T in
if let response = response as? HTTPURLResponse, response.statusCode == 204 {
// No Content
return try handler(response, nil)
}
guard let image = UIImage(data: data, scale: scale, mimeType: (response as? HTTPURLResponse)?.mimeType)
else { throw HTTPManagerImageError.cannotDecode }
return try handler(response, image)
})
req.expectedContentTypes = supportedImageMIMETypes
return req
}
/// Returns a new request that parses the data as an image.
///
/// If the image container has multiple images, only the first one is returned.
///
/// - Note: If the parse result is `nil`, this means the server responded with 204 No
/// Content and the `response` argument is guaranteed to be an instance of
/// `NSHTTPURLResponse`.
/// - Returns: An `HTTPManagerParseRequest`.
@objc(parseAsImage)
func __objc_parseAsImage() -> HTTPManagerObjectParseRequest {
return HTTPManagerObjectParseRequest(request: parseAsImage(using: { $1 }))
}
/// Returns a new request that parses the data as an image.
///
/// If the image container has multiple images, only the first one is returned.
///
/// - Note: If the parse result is `nil`, this means the server responded with 204 No
/// Content and the `response` argument is guaranteed to be an instance of
/// `NSHTTPURLResponse`.
/// - Parameter scale: The scale to use for the resulting image.
/// - Returns: An `HTTPManagerParseRequest`.
@objc(parseAsImageWithScale:)
func __objc_parseAsImage(scale: CGFloat) -> HTTPManagerObjectParseRequest {
return HTTPManagerObjectParseRequest(request: parseAsImage(scale: scale, using: { $1 }))
}
/// Returns a new request that parses the data as an image and passes it through the
/// specified handler.
///
/// If the image container has multiple images, only the first one is returned.
///
/// - Note: If the `value` argument to the handler is `nil`, this means the server responded
/// with 204 No Content and the `response` argument is guaranteed to be an instance of
/// `NSHTTPURLResponse`.
/// - Parameter handler: The handler to call as part of the request processing. This handler
/// is not guaranteed to be called on any particular thread. The handler returns the new
/// value for the request.
/// - Returns: An `HTTPManagerParseRequest`.
/// - Note: If you need to parse on a particular thread, such as on the main thread, you
/// should use `performRequest(withCompletionQueue:completion:)` instead.
/// - Warning: If the request is canceled, the results of the handler may be discarded. Any
/// side-effects performed by your handler must be safe in the event of a cancelation.
/// - Warning: The parse request inherits the `isIdempotent` value of `self`. If the parse
/// handler has side effects and can throw, you should either ensure that it's safe to run
/// the parse handler again or set `isIdempotent` to `false`.
@objc(parseAsImageWithHandler:)
func __objc_parseAsImage(handler: @escaping @convention(block) (_ response: URLResponse, _ image: UIImage?, _ error: AutoreleasingUnsafeMutablePointer<NSError?>) -> Any?) -> HTTPManagerObjectParseRequest {
return __objc_parseAsImage(scale: 1, handler: handler)
}
/// Returns a new request that parses the data as an image and passes it through the
/// specified handler.
///
/// If the image container has multiple images, only the first one is returned.
///
/// - Note: If the `value` argument to the handler is `nil`, this means the server responded
/// with 204 No Content and the `response` argument is guaranteed to be an instance of
/// `NSHTTPURLResponse`.
/// - Parameter scale: The scale to use for the resulting image.
/// - Parameter handler: The handler to call as part of the request processing. This handler
/// is not guaranteed to be called on any particular thread. The handler returns the new
/// value for the request.
/// - Returns: An `HTTPManagerParseRequest`.
/// - Note: If you need to parse on a particular thread, such as on the main thread, you
/// should use `performRequest(withCompletionQueue:completion:)` instead.
/// - Warning: If the request is canceled, the results of the handler may be discarded. Any
/// side-effects performed by your handler must be safe in the event of a cancelation.
/// - Warning: The parse request inherits the `isIdempotent` value of `self`. If the parse
/// handler has side effects and can throw, you should either ensure that it's safe to run
/// the parse handler again or set `isIdempotent` to `false`.
@objc(parseAsImageWithScale:handler:)
func __objc_parseAsImage(scale: CGFloat, handler: @escaping @convention(block) (_ response: URLResponse, _ image: UIImage?, _ error: AutoreleasingUnsafeMutablePointer<NSError?>) -> Any?) -> HTTPManagerObjectParseRequest {
return HTTPManagerObjectParseRequest(request: parseAsImage(scale: scale, using: { (response, image) in
var error: NSError?
if let value = handler(response, image, &error) {
return value
} else if let error = error {
throw error
} else {
return nil
}
}))
}
}
private let supportedImageMIMETypes: [String] = {
let utis = CGImageSourceCopyTypeIdentifiers() as! [CFString]
return utis.flatMap({ (UTTypeCopyAllTagsWithClass($0, kUTTagClassMIMEType)?.takeRetainedValue() as? [String]) ?? [] })
}()
private extension UIImage {
convenience init?(data: Data, scale: CGFloat, mimeType: String?) {
// Use CGImageSource so we can provide the MIME type hint.
// NB: CGImageSource will cache the decoded image data by default on 64-bit platforms.
let options: NSDictionary?
if let mimeType = mimeType {
options = [kCGImageSourceTypeIdentifierHint: mimeType as CFString]
} else {
options = nil
}
guard let imageSource = CGImageSourceCreateWithData(data as CFData, options),
CGImageSourceGetCount(imageSource) >= 1,
let cgImage = CGImageSourceCreateImageAtIndex(imageSource, 0, nil)
else { return nil }
let imageProps = CGImageSourceCopyPropertiesAtIndex(imageSource, 0, nil) as NSDictionary?
let exifOrientation = (imageProps?[kCGImagePropertyOrientation] as? NSNumber)?.intValue
let orientation = exifOrientation.map(UIImageOrientation.init(exifOrientation:)) ?? .up
self.init(cgImage: cgImage, scale: scale, orientation: orientation)
}
}
private extension UIImageOrientation {
init(exifOrientation orientation: Int) {
switch orientation {
case 1: self = .up
case 2: self = .upMirrored
case 3: self = .down
case 4: self = .downMirrored
case 5: self = .leftMirrored
case 6: self = .right
case 7: self = .rightMirrored
case 8: self = .left
default: self = .up
}
}
}
#elseif os(macOS)
#endif