MultipartFormData.swift 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582
  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 Data(boundaryText.utf8)
  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 let fileManager: FileManager
  87. private var bodyParts: [BodyPart]
  88. private var bodyPartError: AFError?
  89. private let streamBufferSize: Int
  90. // MARK: - Lifecycle
  91. /// Creates a multipart form data object.
  92. ///
  93. /// - returns: The multipart form data object.
  94. public init(fileManager: FileManager = .default, boundary: String? = nil) {
  95. self.fileManager = fileManager
  96. self.boundary = boundary ?? BoundaryGenerator.randomBoundary()
  97. self.bodyParts = []
  98. ///
  99. /// The optimal read/write buffer size in bytes for input and output streams is 1024 (1KB). For more
  100. /// information, please refer to the following article:
  101. /// - https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/Streams/Articles/ReadingInputStreams.html
  102. ///
  103. self.streamBufferSize = 1024
  104. }
  105. // MARK: - Body Parts
  106. /// Creates a body part from the data and appends it to the multipart form data object.
  107. ///
  108. /// The body part data will be encoded using the following format:
  109. ///
  110. /// - `Content-Disposition: form-data; name=#{name}` (HTTP Header)
  111. /// - Encoded data
  112. /// - Multipart form boundary
  113. ///
  114. /// - parameter data: The data to encode into the multipart form data.
  115. /// - parameter name: The name to associate with the data in the `Content-Disposition` HTTP header.
  116. public func append(_ data: Data, withName name: String) {
  117. let headers = contentHeaders(withName: name)
  118. let stream = InputStream(data: data)
  119. let length = UInt64(data.count)
  120. append(stream, withLength: length, headers: headers)
  121. }
  122. /// Creates a body part from the data and appends it to the multipart form data object.
  123. ///
  124. /// The body part data will be encoded using the following format:
  125. ///
  126. /// - `Content-Disposition: form-data; name=#{name}` (HTTP Header)
  127. /// - `Content-Type: #{generated mimeType}` (HTTP Header)
  128. /// - Encoded data
  129. /// - Multipart form boundary
  130. ///
  131. /// - parameter data: The data to encode into the multipart form data.
  132. /// - parameter name: The name to associate with the data in the `Content-Disposition` HTTP header.
  133. /// - parameter mimeType: The MIME type to associate with the data content type in the `Content-Type` HTTP header.
  134. public func append(_ data: Data, withName name: String, mimeType: String) {
  135. let headers = contentHeaders(withName: name, mimeType: mimeType)
  136. let stream = InputStream(data: data)
  137. let length = UInt64(data.count)
  138. append(stream, withLength: length, headers: headers)
  139. }
  140. /// Creates a body part from the data and appends it to the multipart form data object.
  141. ///
  142. /// The body part data will be encoded using the following format:
  143. ///
  144. /// - `Content-Disposition: form-data; name=#{name}; filename=#{filename}` (HTTP Header)
  145. /// - `Content-Type: #{mimeType}` (HTTP Header)
  146. /// - Encoded file data
  147. /// - Multipart form boundary
  148. ///
  149. /// - parameter data: The data to encode into the multipart form data.
  150. /// - parameter name: The name to associate with the data in the `Content-Disposition` HTTP header.
  151. /// - parameter fileName: The filename to associate with the data in the `Content-Disposition` HTTP header.
  152. /// - parameter mimeType: The MIME type to associate with the data in the `Content-Type` HTTP header.
  153. public func append(_ data: Data, withName name: String, fileName: String, mimeType: String) {
  154. let headers = contentHeaders(withName: name, fileName: fileName, mimeType: mimeType)
  155. let stream = InputStream(data: data)
  156. let length = UInt64(data.count)
  157. append(stream, withLength: length, headers: headers)
  158. }
  159. /// Creates a body part from the file and appends it to the multipart form data object.
  160. ///
  161. /// The body part data will be encoded using the following format:
  162. ///
  163. /// - `Content-Disposition: form-data; name=#{name}; filename=#{generated filename}` (HTTP Header)
  164. /// - `Content-Type: #{generated mimeType}` (HTTP Header)
  165. /// - Encoded file data
  166. /// - Multipart form boundary
  167. ///
  168. /// The filename in the `Content-Disposition` HTTP header is generated from the last path component of the
  169. /// `fileURL`. The `Content-Type` HTTP header MIME type is generated by mapping the `fileURL` extension to the
  170. /// system associated MIME type.
  171. ///
  172. /// - parameter fileURL: The URL of the file whose content will be encoded into the multipart form data.
  173. /// - parameter name: The name to associate with the file content in the `Content-Disposition` HTTP header.
  174. public func append(_ fileURL: URL, withName name: String) {
  175. let fileName = fileURL.lastPathComponent
  176. let pathExtension = fileURL.pathExtension
  177. if !fileName.isEmpty && !pathExtension.isEmpty {
  178. let mime = mimeType(forPathExtension: pathExtension)
  179. append(fileURL, withName: name, fileName: fileName, mimeType: mime)
  180. } else {
  181. setBodyPartError(withReason: .bodyPartFilenameInvalid(in: fileURL))
  182. }
  183. }
  184. /// Creates a body part from the file and appends it to the multipart form data object.
  185. ///
  186. /// The body part data will be encoded using the following format:
  187. ///
  188. /// - Content-Disposition: form-data; name=#{name}; filename=#{filename} (HTTP Header)
  189. /// - Content-Type: #{mimeType} (HTTP Header)
  190. /// - Encoded file data
  191. /// - Multipart form boundary
  192. ///
  193. /// - parameter fileURL: The URL of the file whose content will be encoded into the multipart form data.
  194. /// - parameter name: The name to associate with the file content in the `Content-Disposition` HTTP header.
  195. /// - parameter fileName: The filename to associate with the file content in the `Content-Disposition` HTTP header.
  196. /// - parameter mimeType: The MIME type to associate with the file content in the `Content-Type` HTTP header.
  197. public func append(_ fileURL: URL, withName name: String, fileName: String, mimeType: String) {
  198. let headers = contentHeaders(withName: name, fileName: fileName, mimeType: mimeType)
  199. //============================================================
  200. // Check 1 - is file URL?
  201. //============================================================
  202. guard fileURL.isFileURL else {
  203. setBodyPartError(withReason: .bodyPartURLInvalid(url: fileURL))
  204. return
  205. }
  206. //============================================================
  207. // Check 2 - is file URL reachable?
  208. //============================================================
  209. do {
  210. let isReachable = try fileURL.checkPromisedItemIsReachable()
  211. guard isReachable else {
  212. setBodyPartError(withReason: .bodyPartFileNotReachable(at: fileURL))
  213. return
  214. }
  215. } catch {
  216. setBodyPartError(withReason: .bodyPartFileNotReachableWithError(atURL: fileURL, error: error))
  217. return
  218. }
  219. //============================================================
  220. // Check 3 - is file URL a directory?
  221. //============================================================
  222. var isDirectory: ObjCBool = false
  223. let path = fileURL.path
  224. guard fileManager.fileExists(atPath: path, isDirectory: &isDirectory) && !isDirectory.boolValue else {
  225. setBodyPartError(withReason: .bodyPartFileIsDirectory(at: fileURL))
  226. return
  227. }
  228. //============================================================
  229. // Check 4 - can the file size be extracted?
  230. //============================================================
  231. let bodyContentLength: UInt64
  232. do {
  233. guard let fileSize = try fileManager.attributesOfItem(atPath: path)[.size] as? NSNumber else {
  234. setBodyPartError(withReason: .bodyPartFileSizeNotAvailable(at: fileURL))
  235. return
  236. }
  237. bodyContentLength = fileSize.uint64Value
  238. }
  239. catch {
  240. setBodyPartError(withReason: .bodyPartFileSizeQueryFailedWithError(forURL: fileURL, error: error))
  241. return
  242. }
  243. //============================================================
  244. // Check 5 - can a stream be created from file URL?
  245. //============================================================
  246. guard let stream = InputStream(url: fileURL) else {
  247. setBodyPartError(withReason: .bodyPartInputStreamCreationFailed(for: fileURL))
  248. return
  249. }
  250. append(stream, withLength: bodyContentLength, headers: headers)
  251. }
  252. /// Creates a body part from the stream and appends it to the multipart form data object.
  253. ///
  254. /// The body part data will be encoded using the following format:
  255. ///
  256. /// - `Content-Disposition: form-data; name=#{name}; filename=#{filename}` (HTTP Header)
  257. /// - `Content-Type: #{mimeType}` (HTTP Header)
  258. /// - Encoded stream data
  259. /// - Multipart form boundary
  260. ///
  261. /// - parameter stream: The input stream to encode in the multipart form data.
  262. /// - parameter length: The content length of the stream.
  263. /// - parameter name: The name to associate with the stream content in the `Content-Disposition` HTTP header.
  264. /// - parameter fileName: The filename to associate with the stream content in the `Content-Disposition` HTTP header.
  265. /// - parameter mimeType: The MIME type to associate with the stream content in the `Content-Type` HTTP header.
  266. public func append(
  267. _ stream: InputStream,
  268. withLength length: UInt64,
  269. name: String,
  270. fileName: String,
  271. mimeType: String)
  272. {
  273. let headers = contentHeaders(withName: name, fileName: fileName, mimeType: mimeType)
  274. append(stream, withLength: length, headers: headers)
  275. }
  276. /// Creates a body part with the headers, stream and length and appends it to the multipart form data object.
  277. ///
  278. /// The body part data will be encoded using the following format:
  279. ///
  280. /// - HTTP headers
  281. /// - Encoded stream data
  282. /// - Multipart form boundary
  283. ///
  284. /// - parameter stream: The input stream to encode in the multipart form data.
  285. /// - parameter length: The content length of the stream.
  286. /// - parameter headers: The HTTP headers for the body part.
  287. public func append(_ stream: InputStream, withLength length: UInt64, headers: HTTPHeaders) {
  288. let bodyPart = BodyPart(headers: headers, bodyStream: stream, bodyContentLength: length)
  289. bodyParts.append(bodyPart)
  290. }
  291. // MARK: - Data Encoding
  292. /// Encodes all the appended body parts into a single `Data` value.
  293. ///
  294. /// It is important to note that this method will load all the appended body parts into memory all at the same
  295. /// time. This method should only be used when the encoded data will have a small memory footprint. For large data
  296. /// cases, please use the `writeEncodedData(to:))` method.
  297. ///
  298. /// - throws: An `AFError` if encoding encounters an error.
  299. ///
  300. /// - returns: The encoded `Data` if encoding is successful.
  301. public func encode() throws -> Data {
  302. if let bodyPartError = bodyPartError {
  303. throw bodyPartError
  304. }
  305. var encoded = Data()
  306. bodyParts.first?.hasInitialBoundary = true
  307. bodyParts.last?.hasFinalBoundary = true
  308. for bodyPart in bodyParts {
  309. let encodedData = try encode(bodyPart)
  310. encoded.append(encodedData)
  311. }
  312. return encoded
  313. }
  314. /// Writes the appended body parts into the given file URL.
  315. ///
  316. /// This process is facilitated by reading and writing with input and output streams, respectively. Thus,
  317. /// this approach is very memory efficient and should be used for large body part data.
  318. ///
  319. /// - parameter fileURL: The file URL to write the multipart form data into.
  320. ///
  321. /// - throws: An `AFError` if encoding encounters an error.
  322. public func writeEncodedData(to fileURL: URL) throws {
  323. if let bodyPartError = bodyPartError {
  324. throw bodyPartError
  325. }
  326. if fileManager.fileExists(atPath: fileURL.path) {
  327. throw AFError.multipartEncodingFailed(reason: .outputStreamFileAlreadyExists(at: fileURL))
  328. } else if !fileURL.isFileURL {
  329. throw AFError.multipartEncodingFailed(reason: .outputStreamURLInvalid(url: fileURL))
  330. }
  331. guard let outputStream = OutputStream(url: fileURL, append: false) else {
  332. throw AFError.multipartEncodingFailed(reason: .outputStreamCreationFailed(for: fileURL))
  333. }
  334. outputStream.open()
  335. defer { outputStream.close() }
  336. self.bodyParts.first?.hasInitialBoundary = true
  337. self.bodyParts.last?.hasFinalBoundary = true
  338. for bodyPart in self.bodyParts {
  339. try write(bodyPart, to: outputStream)
  340. }
  341. }
  342. // MARK: - Private - Body Part Encoding
  343. private func encode(_ bodyPart: BodyPart) throws -> Data {
  344. var encoded = Data()
  345. let initialData = bodyPart.hasInitialBoundary ? initialBoundaryData() : encapsulatedBoundaryData()
  346. encoded.append(initialData)
  347. let headerData = encodeHeaders(for: bodyPart)
  348. encoded.append(headerData)
  349. let bodyStreamData = try encodeBodyStream(for: bodyPart)
  350. encoded.append(bodyStreamData)
  351. if bodyPart.hasFinalBoundary {
  352. encoded.append(finalBoundaryData())
  353. }
  354. return encoded
  355. }
  356. private func encodeHeaders(for bodyPart: BodyPart) -> Data {
  357. var headerText = ""
  358. for (key, value) in bodyPart.headers {
  359. headerText += "\(key): \(value)\(EncodingCharacters.crlf)"
  360. }
  361. headerText += EncodingCharacters.crlf
  362. return Data(headerText.utf8)
  363. }
  364. private func encodeBodyStream(for bodyPart: BodyPart) throws -> Data {
  365. let inputStream = bodyPart.bodyStream
  366. inputStream.open()
  367. defer { inputStream.close() }
  368. var encoded = Data()
  369. while inputStream.hasBytesAvailable {
  370. var buffer = [UInt8](repeating: 0, count: streamBufferSize)
  371. let bytesRead = inputStream.read(&buffer, maxLength: streamBufferSize)
  372. if let error = inputStream.streamError {
  373. throw AFError.multipartEncodingFailed(reason: .inputStreamReadFailed(error: error))
  374. }
  375. if bytesRead > 0 {
  376. encoded.append(buffer, count: bytesRead)
  377. } else {
  378. break
  379. }
  380. }
  381. return encoded
  382. }
  383. // MARK: - Private - Writing Body Part to Output Stream
  384. private func write(_ bodyPart: BodyPart, to outputStream: OutputStream) throws {
  385. try writeInitialBoundaryData(for: bodyPart, to: outputStream)
  386. try writeHeaderData(for: bodyPart, to: outputStream)
  387. try writeBodyStream(for: bodyPart, to: outputStream)
  388. try writeFinalBoundaryData(for: bodyPart, to: outputStream)
  389. }
  390. private func writeInitialBoundaryData(for bodyPart: BodyPart, to outputStream: OutputStream) throws {
  391. let initialData = bodyPart.hasInitialBoundary ? initialBoundaryData() : encapsulatedBoundaryData()
  392. return try write(initialData, to: outputStream)
  393. }
  394. private func writeHeaderData(for bodyPart: BodyPart, to outputStream: OutputStream) throws {
  395. let headerData = encodeHeaders(for: bodyPart)
  396. return try write(headerData, to: outputStream)
  397. }
  398. private func writeBodyStream(for bodyPart: BodyPart, to outputStream: OutputStream) throws {
  399. let inputStream = bodyPart.bodyStream
  400. inputStream.open()
  401. defer { inputStream.close() }
  402. while inputStream.hasBytesAvailable {
  403. var buffer = [UInt8](repeating: 0, count: streamBufferSize)
  404. let bytesRead = inputStream.read(&buffer, maxLength: streamBufferSize)
  405. if let streamError = inputStream.streamError {
  406. throw AFError.multipartEncodingFailed(reason: .inputStreamReadFailed(error: streamError))
  407. }
  408. if bytesRead > 0 {
  409. if buffer.count != bytesRead {
  410. buffer = Array(buffer[0..<bytesRead])
  411. }
  412. try write(&buffer, to: outputStream)
  413. } else {
  414. break
  415. }
  416. }
  417. }
  418. private func writeFinalBoundaryData(for bodyPart: BodyPart, to outputStream: OutputStream) throws {
  419. if bodyPart.hasFinalBoundary {
  420. return try write(finalBoundaryData(), to: outputStream)
  421. }
  422. }
  423. // MARK: - Private - Writing Buffered Data to Output Stream
  424. private func write(_ data: Data, to outputStream: OutputStream) throws {
  425. var buffer = [UInt8](repeating: 0, count: data.count)
  426. data.copyBytes(to: &buffer, count: data.count)
  427. return try write(&buffer, to: outputStream)
  428. }
  429. private func write(_ buffer: inout [UInt8], to outputStream: OutputStream) throws {
  430. var bytesToWrite = buffer.count
  431. while bytesToWrite > 0, outputStream.hasSpaceAvailable {
  432. let bytesWritten = outputStream.write(buffer, maxLength: bytesToWrite)
  433. if let error = outputStream.streamError {
  434. throw AFError.multipartEncodingFailed(reason: .outputStreamWriteFailed(error: error))
  435. }
  436. bytesToWrite -= bytesWritten
  437. if bytesToWrite > 0 {
  438. buffer = Array(buffer[bytesWritten..<buffer.count])
  439. }
  440. }
  441. }
  442. // MARK: - Private - Mime Type
  443. private func mimeType(forPathExtension pathExtension: String) -> String {
  444. if
  445. let id = UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, pathExtension as CFString, nil)?.takeRetainedValue(),
  446. let contentType = UTTypeCopyPreferredTagWithClass(id, kUTTagClassMIMEType)?.takeRetainedValue()
  447. {
  448. return contentType as String
  449. }
  450. return "application/octet-stream"
  451. }
  452. // MARK: - Private - Content Headers
  453. private func contentHeaders(withName name: String, fileName: String? = nil, mimeType: String? = nil) -> [String: String] {
  454. var disposition = "form-data; name=\"\(name)\""
  455. if let fileName = fileName { disposition += "; filename=\"\(fileName)\"" }
  456. var headers = ["Content-Disposition": disposition]
  457. if let mimeType = mimeType { headers["Content-Type"] = mimeType }
  458. return headers
  459. }
  460. // MARK: - Private - Boundary Encoding
  461. private func initialBoundaryData() -> Data {
  462. return BoundaryGenerator.boundaryData(forBoundaryType: .initial, boundary: boundary)
  463. }
  464. private func encapsulatedBoundaryData() -> Data {
  465. return BoundaryGenerator.boundaryData(forBoundaryType: .encapsulated, boundary: boundary)
  466. }
  467. private func finalBoundaryData() -> Data {
  468. return BoundaryGenerator.boundaryData(forBoundaryType: .final, boundary: boundary)
  469. }
  470. // MARK: - Private - Errors
  471. private func setBodyPartError(withReason reason: AFError.MultipartEncodingFailureReason) {
  472. guard bodyPartError == nil else { return }
  473. bodyPartError = AFError.multipartEncodingFailed(reason: reason)
  474. }
  475. }