You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

580 lines
23 KiB

6 years ago
  1. //
  2. // MultipartFormData.swift
  3. //
  4. // Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/)
  5. //
  6. // Permission is hereby granted, free of charge, to any person obtaining a copy
  7. // of this software and associated documentation files (the "Software"), to deal
  8. // in the Software without restriction, including without limitation the rights
  9. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. // copies of the Software, and to permit persons to whom the Software is
  11. // furnished to do so, subject to the following conditions:
  12. //
  13. // The above copyright notice and this permission notice shall be included in
  14. // all copies or substantial portions of the Software.
  15. //
  16. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. // THE SOFTWARE.
  23. //
  24. import Foundation
  25. #if os(iOS) || os(watchOS) || os(tvOS)
  26. import MobileCoreServices
  27. #elseif os(macOS)
  28. import CoreServices
  29. #endif
  30. /// Constructs `multipart/form-data` for uploads within an HTTP or HTTPS body. There are currently two ways to encode
  31. /// multipart form data. The first way is to encode the data directly in memory. This is very efficient, but can lead
  32. /// to memory issues if the dataset is too large. The second way is designed for larger datasets and will write all the
  33. /// data to a single file on disk with all the proper boundary segmentation. The second approach MUST be used for
  34. /// larger datasets such as video content, otherwise your app may run out of memory when trying to encode the dataset.
  35. ///
  36. /// For more information on `multipart/form-data` in general, please refer to the RFC-2388 and RFC-2045 specs as well
  37. /// and the w3 form documentation.
  38. ///
  39. /// - https://www.ietf.org/rfc/rfc2388.txt
  40. /// - https://www.ietf.org/rfc/rfc2045.txt
  41. /// - https://www.w3.org/TR/html401/interact/forms.html#h-17.13
  42. open class MultipartFormData {
  43. // MARK: - Helper Types
  44. struct EncodingCharacters {
  45. static let crlf = "\r\n"
  46. }
  47. struct BoundaryGenerator {
  48. enum BoundaryType {
  49. case initial, encapsulated, final
  50. }
  51. static func randomBoundary() -> String {
  52. return String(format: "alamofire.boundary.%08x%08x", arc4random(), arc4random())
  53. }
  54. static func boundaryData(forBoundaryType boundaryType: BoundaryType, boundary: String) -> Data {
  55. let boundaryText: String
  56. switch boundaryType {
  57. case .initial:
  58. boundaryText = "--\(boundary)\(EncodingCharacters.crlf)"
  59. case .encapsulated:
  60. boundaryText = "\(EncodingCharacters.crlf)--\(boundary)\(EncodingCharacters.crlf)"
  61. case .final:
  62. boundaryText = "\(EncodingCharacters.crlf)--\(boundary)--\(EncodingCharacters.crlf)"
  63. }
  64. return boundaryText.data(using: String.Encoding.utf8, allowLossyConversion: false)!
  65. }
  66. }
  67. class BodyPart {
  68. let headers: HTTPHeaders
  69. let bodyStream: InputStream
  70. let bodyContentLength: UInt64
  71. var hasInitialBoundary = false
  72. var hasFinalBoundary = false
  73. init(headers: HTTPHeaders, bodyStream: InputStream, bodyContentLength: UInt64) {
  74. self.headers = headers
  75. self.bodyStream = bodyStream
  76. self.bodyContentLength = bodyContentLength
  77. }
  78. }
  79. // MARK: - Properties
  80. /// The `Content-Type` header value containing the boundary used to generate the `multipart/form-data`.
  81. open lazy var contentType: String = "multipart/form-data; boundary=\(self.boundary)"
  82. /// The content length of all body parts used to generate the `multipart/form-data` not including the boundaries.
  83. public var contentLength: UInt64 { return bodyParts.reduce(0) { $0 + $1.bodyContentLength } }
  84. /// The boundary used to separate the body parts in the encoded form data.
  85. public let boundary: String
  86. private var bodyParts: [BodyPart]
  87. private var bodyPartError: AFError?
  88. private let streamBufferSize: Int
  89. // MARK: - Lifecycle
  90. /// Creates a multipart form data object.
  91. ///
  92. /// - returns: The multipart form data object.
  93. public init() {
  94. self.boundary = BoundaryGenerator.randomBoundary()
  95. self.bodyParts = []
  96. ///
  97. /// The optimal read/write buffer size in bytes for input and output streams is 1024 (1KB). For more
  98. /// information, please refer to the following article:
  99. /// - https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/Streams/Articles/ReadingInputStreams.html
  100. ///
  101. self.streamBufferSize = 1024
  102. }
  103. // MARK: - Body Parts
  104. /// Creates a body part from the data and appends it to the multipart form data object.
  105. ///
  106. /// The body part data will be encoded using the following format:
  107. ///
  108. /// - `Content-Disposition: form-data; name=#{name}` (HTTP Header)
  109. /// - Encoded data
  110. /// - Multipart form boundary
  111. ///
  112. /// - parameter data: The data to encode into the multipart form data.
  113. /// - parameter name: The name to associate with the data in the `Content-Disposition` HTTP header.
  114. public func append(_ data: Data, withName name: String) {
  115. let headers = contentHeaders(withName: name)
  116. let stream = InputStream(data: data)
  117. let length = UInt64(data.count)
  118. append(stream, withLength: length, headers: headers)
  119. }
  120. /// Creates a body part from the data and appends it to the multipart form data object.
  121. ///
  122. /// The body part data will be encoded using the following format:
  123. ///
  124. /// - `Content-Disposition: form-data; name=#{name}` (HTTP Header)
  125. /// - `Content-Type: #{generated mimeType}` (HTTP Header)
  126. /// - Encoded data
  127. /// - Multipart form boundary
  128. ///
  129. /// - parameter data: The data to encode into the multipart form data.
  130. /// - parameter name: The name to associate with the data in the `Content-Disposition` HTTP header.
  131. /// - parameter mimeType: The MIME type to associate with the data content type in the `Content-Type` HTTP header.
  132. public func append(_ data: Data, withName name: String, mimeType: String) {
  133. let headers = contentHeaders(withName: name, mimeType: mimeType)
  134. let stream = InputStream(data: data)
  135. let length = UInt64(data.count)
  136. append(stream, withLength: length, headers: headers)
  137. }
  138. /// Creates a body part from the data and appends it to the multipart form data object.
  139. ///
  140. /// The body part data will be encoded using the following format:
  141. ///
  142. /// - `Content-Disposition: form-data; name=#{name}; filename=#{filename}` (HTTP Header)
  143. /// - `Content-Type: #{mimeType}` (HTTP Header)
  144. /// - Encoded file data
  145. /// - Multipart form boundary
  146. ///
  147. /// - parameter data: The data to encode into the multipart form data.
  148. /// - parameter name: The name to associate with the data in the `Content-Disposition` HTTP header.
  149. /// - parameter fileName: The filename to associate with the data in the `Content-Disposition` HTTP header.
  150. /// - parameter mimeType: The MIME type to associate with the data in the `Content-Type` HTTP header.
  151. public func append(_ data: Data, withName name: String, fileName: String, mimeType: String) {
  152. let headers = contentHeaders(withName: name, fileName: fileName, mimeType: mimeType)
  153. let stream = InputStream(data: data)
  154. let length = UInt64(data.count)
  155. append(stream, withLength: length, headers: headers)
  156. }
  157. /// Creates a body part from the file and appends it to the multipart form data object.
  158. ///
  159. /// The body part data will be encoded using the following format:
  160. ///
  161. /// - `Content-Disposition: form-data; name=#{name}; filename=#{generated filename}` (HTTP Header)
  162. /// - `Content-Type: #{generated mimeType}` (HTTP Header)
  163. /// - Encoded file data
  164. /// - Multipart form boundary
  165. ///
  166. /// The filename in the `Content-Disposition` HTTP header is generated from the last path component of the
  167. /// `fileURL`. The `Content-Type` HTTP header MIME type is generated by mapping the `fileURL` extension to the
  168. /// system associated MIME type.
  169. ///
  170. /// - parameter fileURL: The URL of the file whose content will be encoded into the multipart form data.
  171. /// - parameter name: The name to associate with the file content in the `Content-Disposition` HTTP header.
  172. public func append(_ fileURL: URL, withName name: String) {
  173. let fileName = fileURL.lastPathComponent
  174. let pathExtension = fileURL.pathExtension
  175. if !fileName.isEmpty && !pathExtension.isEmpty {
  176. let mime = mimeType(forPathExtension: pathExtension)
  177. append(fileURL, withName: name, fileName: fileName, mimeType: mime)
  178. } else {
  179. setBodyPartError(withReason: .bodyPartFilenameInvalid(in: fileURL))
  180. }
  181. }
  182. /// Creates a body part from the file and appends it to the multipart form data object.
  183. ///
  184. /// The body part data will be encoded using the following format:
  185. ///
  186. /// - Content-Disposition: form-data; name=#{name}; filename=#{filename} (HTTP Header)
  187. /// - Content-Type: #{mimeType} (HTTP Header)
  188. /// - Encoded file data
  189. /// - Multipart form boundary
  190. ///
  191. /// - parameter fileURL: The URL of the file whose content will be encoded into the multipart form data.
  192. /// - parameter name: The name to associate with the file content in the `Content-Disposition` HTTP header.
  193. /// - parameter fileName: The filename to associate with the file content in the `Content-Disposition` HTTP header.
  194. /// - parameter mimeType: The MIME type to associate with the file content in the `Content-Type` HTTP header.
  195. public func append(_ fileURL: URL, withName name: String, fileName: String, mimeType: String) {
  196. let headers = contentHeaders(withName: name, fileName: fileName, mimeType: mimeType)
  197. //============================================================
  198. // Check 1 - is file URL?
  199. //============================================================
  200. guard fileURL.isFileURL else {
  201. setBodyPartError(withReason: .bodyPartURLInvalid(url: fileURL))
  202. return
  203. }
  204. //============================================================
  205. // Check 2 - is file URL reachable?
  206. //============================================================
  207. do {
  208. let isReachable = try fileURL.checkPromisedItemIsReachable()
  209. guard isReachable else {
  210. setBodyPartError(withReason: .bodyPartFileNotReachable(at: fileURL))
  211. return
  212. }
  213. } catch {
  214. setBodyPartError(withReason: .bodyPartFileNotReachableWithError(atURL: fileURL, error: error))
  215. return
  216. }
  217. //============================================================
  218. // Check 3 - is file URL a directory?
  219. //============================================================
  220. var isDirectory: ObjCBool = false
  221. let path = fileURL.path
  222. guard FileManager.default.fileExists(atPath: path, isDirectory: &isDirectory) && !isDirectory.boolValue else {
  223. setBodyPartError(withReason: .bodyPartFileIsDirectory(at: fileURL))
  224. return
  225. }
  226. //============================================================
  227. // Check 4 - can the file size be extracted?
  228. //============================================================
  229. let bodyContentLength: UInt64
  230. do {
  231. guard let fileSize = try FileManager.default.attributesOfItem(atPath: path)[.size] as? NSNumber else {
  232. setBodyPartError(withReason: .bodyPartFileSizeNotAvailable(at: fileURL))
  233. return
  234. }
  235. bodyContentLength = fileSize.uint64Value
  236. }
  237. catch {
  238. setBodyPartError(withReason: .bodyPartFileSizeQueryFailedWithError(forURL: fileURL, error: error))
  239. return
  240. }
  241. //============================================================
  242. // Check 5 - can a stream be created from file URL?
  243. //============================================================
  244. guard let stream = InputStream(url: fileURL) else {
  245. setBodyPartError(withReason: .bodyPartInputStreamCreationFailed(for: fileURL))
  246. return
  247. }
  248. append(stream, withLength: bodyContentLength, headers: headers)
  249. }
  250. /// Creates a body part from the stream and appends it to the multipart form data object.
  251. ///
  252. /// The body part data will be encoded using the following format:
  253. ///
  254. /// - `Content-Disposition: form-data; name=#{name}; filename=#{filename}` (HTTP Header)
  255. /// - `Content-Type: #{mimeType}` (HTTP Header)
  256. /// - Encoded stream data
  257. /// - Multipart form boundary
  258. ///
  259. /// - parameter stream: The input stream to encode in the multipart form data.
  260. /// - parameter length: The content length of the stream.
  261. /// - parameter name: The name to associate with the stream content in the `Content-Disposition` HTTP header.
  262. /// - parameter fileName: The filename to associate with the stream content in the `Content-Disposition` HTTP header.
  263. /// - parameter mimeType: The MIME type to associate with the stream content in the `Content-Type` HTTP header.
  264. public func append(
  265. _ stream: InputStream,
  266. withLength length: UInt64,
  267. name: String,
  268. fileName: String,
  269. mimeType: String)
  270. {
  271. let headers = contentHeaders(withName: name, fileName: fileName, mimeType: mimeType)
  272. append(stream, withLength: length, headers: headers)
  273. }
  274. /// Creates a body part with the headers, stream and length and appends it to the multipart form data object.
  275. ///
  276. /// The body part data will be encoded using the following format:
  277. ///
  278. /// - HTTP headers
  279. /// - Encoded stream data
  280. /// - Multipart form boundary
  281. ///
  282. /// - parameter stream: The input stream to encode in the multipart form data.
  283. /// - parameter length: The content length of the stream.
  284. /// - parameter headers: The HTTP headers for the body part.
  285. public func append(_ stream: InputStream, withLength length: UInt64, headers: HTTPHeaders) {
  286. let bodyPart = BodyPart(headers: headers, bodyStream: stream, bodyContentLength: length)
  287. bodyParts.append(bodyPart)
  288. }
  289. // MARK: - Data Encoding
  290. /// Encodes all the appended body parts into a single `Data` value.
  291. ///
  292. /// It is important to note that this method will load all the appended body parts into memory all at the same
  293. /// time. This method should only be used when the encoded data will have a small memory footprint. For large data
  294. /// cases, please use the `writeEncodedDataToDisk(fileURL:completionHandler:)` method.
  295. ///
  296. /// - throws: An `AFError` if encoding encounters an error.
  297. ///
  298. /// - returns: The encoded `Data` if encoding is successful.
  299. public func encode() throws -> Data {
  300. if let bodyPartError = bodyPartError {
  301. throw bodyPartError
  302. }
  303. var encoded = Data()
  304. bodyParts.first?.hasInitialBoundary = true
  305. bodyParts.last?.hasFinalBoundary = true
  306. for bodyPart in bodyParts {
  307. let encodedData = try encode(bodyPart)
  308. encoded.append(encodedData)
  309. }
  310. return encoded
  311. }
  312. /// Writes the appended body parts into the given file URL.
  313. ///
  314. /// This process is facilitated by reading and writing with input and output streams, respectively. Thus,
  315. /// this approach is very memory efficient and should be used for large body part data.
  316. ///
  317. /// - parameter fileURL: The file URL to write the multipart form data into.
  318. ///
  319. /// - throws: An `AFError` if encoding encounters an error.
  320. public func writeEncodedData(to fileURL: URL) throws {
  321. if let bodyPartError = bodyPartError {
  322. throw bodyPartError
  323. }
  324. if FileManager.default.fileExists(atPath: fileURL.path) {
  325. throw AFError.multipartEncodingFailed(reason: .outputStreamFileAlreadyExists(at: fileURL))
  326. } else if !fileURL.isFileURL {
  327. throw AFError.multipartEncodingFailed(reason: .outputStreamURLInvalid(url: fileURL))
  328. }
  329. guard let outputStream = OutputStream(url: fileURL, append: false) else {
  330. throw AFError.multipartEncodingFailed(reason: .outputStreamCreationFailed(for: fileURL))
  331. }
  332. outputStream.open()
  333. defer { outputStream.close() }
  334. self.bodyParts.first?.hasInitialBoundary = true
  335. self.bodyParts.last?.hasFinalBoundary = true
  336. for bodyPart in self.bodyParts {
  337. try write(bodyPart, to: outputStream)
  338. }
  339. }
  340. // MARK: - Private - Body Part Encoding
  341. private func encode(_ bodyPart: BodyPart) throws -> Data {
  342. var encoded = Data()
  343. let initialData = bodyPart.hasInitialBoundary ? initialBoundaryData() : encapsulatedBoundaryData()
  344. encoded.append(initialData)
  345. let headerData = encodeHeaders(for: bodyPart)
  346. encoded.append(headerData)
  347. let bodyStreamData = try encodeBodyStream(for: bodyPart)
  348. encoded.append(bodyStreamData)
  349. if bodyPart.hasFinalBoundary {
  350. encoded.append(finalBoundaryData())
  351. }
  352. return encoded
  353. }
  354. private func encodeHeaders(for bodyPart: BodyPart) -> Data {
  355. var headerText = ""
  356. for (key, value) in bodyPart.headers {
  357. headerText += "\(key): \(value)\(EncodingCharacters.crlf)"
  358. }
  359. headerText += EncodingCharacters.crlf
  360. return headerText.data(using: String.Encoding.utf8, allowLossyConversion: false)!
  361. }
  362. private func encodeBodyStream(for bodyPart: BodyPart) throws -> Data {
  363. let inputStream = bodyPart.bodyStream
  364. inputStream.open()
  365. defer { inputStream.close() }
  366. var encoded = Data()
  367. while inputStream.hasBytesAvailable {
  368. var buffer = [UInt8](repeating: 0, count: streamBufferSize)
  369. let bytesRead = inputStream.read(&buffer, maxLength: streamBufferSize)
  370. if let error = inputStream.streamError {
  371. throw AFError.multipartEncodingFailed(reason: .inputStreamReadFailed(error: error))
  372. }
  373. if bytesRead > 0 {
  374. encoded.append(buffer, count: bytesRead)
  375. } else {
  376. break
  377. }
  378. }
  379. return encoded
  380. }
  381. // MARK: - Private - Writing Body Part to Output Stream
  382. private func write(_ bodyPart: BodyPart, to outputStream: OutputStream) throws {
  383. try writeInitialBoundaryData(for: bodyPart, to: outputStream)
  384. try writeHeaderData(for: bodyPart, to: outputStream)
  385. try writeBodyStream(for: bodyPart, to: outputStream)
  386. try writeFinalBoundaryData(for: bodyPart, to: outputStream)
  387. }
  388. private func writeInitialBoundaryData(for bodyPart: BodyPart, to outputStream: OutputStream) throws {
  389. let initialData = bodyPart.hasInitialBoundary ? initialBoundaryData() : encapsulatedBoundaryData()
  390. return try write(initialData, to: outputStream)
  391. }
  392. private func writeHeaderData(for bodyPart: BodyPart, to outputStream: OutputStream) throws {
  393. let headerData = encodeHeaders(for: bodyPart)
  394. return try write(headerData, to: outputStream)
  395. }
  396. private func writeBodyStream(for bodyPart: BodyPart, to outputStream: OutputStream) throws {
  397. let inputStream = bodyPart.bodyStream
  398. inputStream.open()
  399. defer { inputStream.close() }
  400. while inputStream.hasBytesAvailable {
  401. var buffer = [UInt8](repeating: 0, count: streamBufferSize)
  402. let bytesRead = inputStream.read(&buffer, maxLength: streamBufferSize)
  403. if let streamError = inputStream.streamError {
  404. throw AFError.multipartEncodingFailed(reason: .inputStreamReadFailed(error: streamError))
  405. }
  406. if bytesRead > 0 {
  407. if buffer.count != bytesRead {
  408. buffer = Array(buffer[0..<bytesRead])
  409. }
  410. try write(&buffer, to: outputStream)
  411. } else {
  412. break
  413. }
  414. }
  415. }
  416. private func writeFinalBoundaryData(for bodyPart: BodyPart, to outputStream: OutputStream) throws {
  417. if bodyPart.hasFinalBoundary {
  418. return try write(finalBoundaryData(), to: outputStream)
  419. }
  420. }
  421. // MARK: - Private - Writing Buffered Data to Output Stream
  422. private func write(_ data: Data, to outputStream: OutputStream) throws {
  423. var buffer = [UInt8](repeating: 0, count: data.count)
  424. data.copyBytes(to: &buffer, count: data.count)
  425. return try write(&buffer, to: outputStream)
  426. }
  427. private func write(_ buffer: inout [UInt8], to outputStream: OutputStream) throws {
  428. var bytesToWrite = buffer.count
  429. while bytesToWrite > 0, outputStream.hasSpaceAvailable {
  430. let bytesWritten = outputStream.write(buffer, maxLength: bytesToWrite)
  431. if let error = outputStream.streamError {
  432. throw AFError.multipartEncodingFailed(reason: .outputStreamWriteFailed(error: error))
  433. }
  434. bytesToWrite -= bytesWritten
  435. if bytesToWrite > 0 {
  436. buffer = Array(buffer[bytesWritten..<buffer.count])
  437. }
  438. }
  439. }
  440. // MARK: - Private - Mime Type
  441. private func mimeType(forPathExtension pathExtension: String) -> String {
  442. if
  443. let id = UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, pathExtension as CFString, nil)?.takeRetainedValue(),
  444. let contentType = UTTypeCopyPreferredTagWithClass(id, kUTTagClassMIMEType)?.takeRetainedValue()
  445. {
  446. return contentType as String
  447. }
  448. return "application/octet-stream"
  449. }
  450. // MARK: - Private - Content Headers
  451. private func contentHeaders(withName name: String, fileName: String? = nil, mimeType: String? = nil) -> [String: String] {
  452. var disposition = "form-data; name=\"\(name)\""
  453. if let fileName = fileName { disposition += "; filename=\"\(fileName)\"" }
  454. var headers = ["Content-Disposition": disposition]
  455. if let mimeType = mimeType { headers["Content-Type"] = mimeType }
  456. return headers
  457. }
  458. // MARK: - Private - Boundary Encoding
  459. private func initialBoundaryData() -> Data {
  460. return BoundaryGenerator.boundaryData(forBoundaryType: .initial, boundary: boundary)
  461. }
  462. private func encapsulatedBoundaryData() -> Data {
  463. return BoundaryGenerator.boundaryData(forBoundaryType: .encapsulated, boundary: boundary)
  464. }
  465. private func finalBoundaryData() -> Data {
  466. return BoundaryGenerator.boundaryData(forBoundaryType: .final, boundary: boundary)
  467. }
  468. // MARK: - Private - Errors
  469. private func setBodyPartError(withReason reason: AFError.MultipartEncodingFailureReason) {
  470. guard bodyPartError == nil else { return }
  471. bodyPartError = AFError.multipartEncodingFailed(reason: reason)
  472. }
  473. }