RequestInterceptor.swift 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. //
  2. // RequestInterceptor.swift
  3. //
  4. // Copyright (c) 2019 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. /// Stores all state associated with a `URLRequest` being adapted.
  26. public struct RequestAdapterState {
  27. /// The `UUID` of the `Request` associated with the `URLRequest` to adapt.
  28. public let requestID: UUID
  29. /// The `Session` associated with the `URLRequest` to adapt.
  30. public let session: Session
  31. }
  32. // MARK: -
  33. /// A type that can inspect and optionally adapt a `URLRequest` in some manner if necessary.
  34. public protocol RequestAdapter {
  35. /// Inspects and adapts the specified `URLRequest` in some manner and calls the completion handler with the Result.
  36. ///
  37. /// - Parameters:
  38. /// - urlRequest: The `URLRequest` to adapt.
  39. /// - session: The `Session` that will execute the `URLRequest`.
  40. /// - completion: The completion handler that must be called when adaptation is complete.
  41. func adapt(_ urlRequest: URLRequest, for session: Session, completion: @escaping (Result<URLRequest, Error>) -> Void)
  42. /// Inspects and adapts the specified `URLRequest` in some manner and calls the completion handler with the Result.
  43. ///
  44. /// - Parameters:
  45. /// - urlRequest: The `URLRequest` to adapt.
  46. /// - state: The `RequestAdapterState` associated with the `URLRequest`.
  47. /// - completion: The completion handler that must be called when adaptation is complete.
  48. func adapt(_ urlRequest: URLRequest, using state: RequestAdapterState, completion: @escaping (Result<URLRequest, Error>) -> Void)
  49. }
  50. extension RequestAdapter {
  51. public func adapt(_ urlRequest: URLRequest, using state: RequestAdapterState, completion: @escaping (Result<URLRequest, Error>) -> Void) {
  52. adapt(urlRequest, for: state.session, completion: completion)
  53. }
  54. }
  55. // MARK: -
  56. /// Outcome of determination whether retry is necessary.
  57. public enum RetryResult {
  58. /// Retry should be attempted immediately.
  59. case retry
  60. /// Retry should be attempted after the associated `TimeInterval`.
  61. case retryWithDelay(TimeInterval)
  62. /// Do not retry.
  63. case doNotRetry
  64. /// Do not retry due to the associated `Error`.
  65. case doNotRetryWithError(Error)
  66. }
  67. extension RetryResult {
  68. var retryRequired: Bool {
  69. switch self {
  70. case .retry, .retryWithDelay: return true
  71. default: return false
  72. }
  73. }
  74. var delay: TimeInterval? {
  75. switch self {
  76. case let .retryWithDelay(delay): return delay
  77. default: return nil
  78. }
  79. }
  80. var error: Error? {
  81. guard case let .doNotRetryWithError(error) = self else { return nil }
  82. return error
  83. }
  84. }
  85. /// A type that determines whether a request should be retried after being executed by the specified session manager
  86. /// and encountering an error.
  87. public protocol RequestRetrier {
  88. /// Determines whether the `Request` should be retried by calling the `completion` closure.
  89. ///
  90. /// This operation is fully asynchronous. Any amount of time can be taken to determine whether the request needs
  91. /// to be retried. The one requirement is that the completion closure is called to ensure the request is properly
  92. /// cleaned up after.
  93. ///
  94. /// - Parameters:
  95. /// - request: `Request` that failed due to the provided `Error`.
  96. /// - session: `Session` that produced the `Request`.
  97. /// - error: `Error` encountered while executing the `Request`.
  98. /// - completion: Completion closure to be executed when a retry decision has been determined.
  99. func retry(_ request: Request, for session: Session, dueTo error: Error, completion: @escaping (RetryResult) -> Void)
  100. }
  101. // MARK: -
  102. /// Type that provides both `RequestAdapter` and `RequestRetrier` functionality.
  103. public protocol RequestInterceptor: RequestAdapter, RequestRetrier {}
  104. extension RequestInterceptor {
  105. public func adapt(_ urlRequest: URLRequest, for session: Session, completion: @escaping (Result<URLRequest, Error>) -> Void) {
  106. completion(.success(urlRequest))
  107. }
  108. public func retry(_ request: Request,
  109. for session: Session,
  110. dueTo error: Error,
  111. completion: @escaping (RetryResult) -> Void) {
  112. completion(.doNotRetry)
  113. }
  114. }
  115. /// `RequestAdapter` closure definition.
  116. public typealias AdaptHandler = (URLRequest, Session, _ completion: @escaping (Result<URLRequest, Error>) -> Void) -> Void
  117. /// `RequestRetrier` closure definition.
  118. public typealias RetryHandler = (Request, Session, Error, _ completion: @escaping (RetryResult) -> Void) -> Void
  119. // MARK: -
  120. /// Closure-based `RequestAdapter`.
  121. open class Adapter: RequestInterceptor {
  122. private let adaptHandler: AdaptHandler
  123. /// Creates an instance using the provided closure.
  124. ///
  125. /// - Parameter adaptHandler: `AdaptHandler` closure to be executed when handling request adaptation.
  126. public init(_ adaptHandler: @escaping AdaptHandler) {
  127. self.adaptHandler = adaptHandler
  128. }
  129. open func adapt(_ urlRequest: URLRequest, for session: Session, completion: @escaping (Result<URLRequest, Error>) -> Void) {
  130. adaptHandler(urlRequest, session, completion)
  131. }
  132. open func adapt(_ urlRequest: URLRequest, using state: RequestAdapterState, completion: @escaping (Result<URLRequest, Error>) -> Void) {
  133. adaptHandler(urlRequest, state.session, completion)
  134. }
  135. }
  136. #if swift(>=5.5)
  137. extension RequestAdapter where Self == Adapter {
  138. /// Creates an `Adapter` using the provided `AdaptHandler` closure.
  139. ///
  140. /// - Parameter closure: `AdaptHandler` to use to adapt the request.
  141. /// - Returns: The `Adapter`.
  142. public static func adapter(using closure: @escaping AdaptHandler) -> Adapter {
  143. Adapter(closure)
  144. }
  145. }
  146. #endif
  147. // MARK: -
  148. /// Closure-based `RequestRetrier`.
  149. open class Retrier: RequestInterceptor {
  150. private let retryHandler: RetryHandler
  151. /// Creates an instance using the provided closure.
  152. ///
  153. /// - Parameter retryHandler: `RetryHandler` closure to be executed when handling request retry.
  154. public init(_ retryHandler: @escaping RetryHandler) {
  155. self.retryHandler = retryHandler
  156. }
  157. open func retry(_ request: Request,
  158. for session: Session,
  159. dueTo error: Error,
  160. completion: @escaping (RetryResult) -> Void) {
  161. retryHandler(request, session, error, completion)
  162. }
  163. }
  164. #if swift(>=5.5)
  165. extension RequestRetrier where Self == Retrier {
  166. /// Creates a `Retrier` using the provided `RetryHandler` closure.
  167. ///
  168. /// - Parameter closure: `RetryHandler` to use to retry the request.
  169. /// - Returns: The `Retrier`.
  170. public static func retrier(using closure: @escaping RetryHandler) -> Retrier {
  171. Retrier(closure)
  172. }
  173. }
  174. #endif
  175. // MARK: -
  176. /// `RequestInterceptor` which can use multiple `RequestAdapter` and `RequestRetrier` values.
  177. open class Interceptor: RequestInterceptor {
  178. /// All `RequestAdapter`s associated with the instance. These adapters will be run until one fails.
  179. public let adapters: [RequestAdapter]
  180. /// All `RequestRetrier`s associated with the instance. These retriers will be run one at a time until one triggers retry.
  181. public let retriers: [RequestRetrier]
  182. /// Creates an instance from `AdaptHandler` and `RetryHandler` closures.
  183. ///
  184. /// - Parameters:
  185. /// - adaptHandler: `AdaptHandler` closure to be used.
  186. /// - retryHandler: `RetryHandler` closure to be used.
  187. public init(adaptHandler: @escaping AdaptHandler, retryHandler: @escaping RetryHandler) {
  188. adapters = [Adapter(adaptHandler)]
  189. retriers = [Retrier(retryHandler)]
  190. }
  191. /// Creates an instance from `RequestAdapter` and `RequestRetrier` values.
  192. ///
  193. /// - Parameters:
  194. /// - adapter: `RequestAdapter` value to be used.
  195. /// - retrier: `RequestRetrier` value to be used.
  196. public init(adapter: RequestAdapter, retrier: RequestRetrier) {
  197. adapters = [adapter]
  198. retriers = [retrier]
  199. }
  200. /// Creates an instance from the arrays of `RequestAdapter` and `RequestRetrier` values.
  201. ///
  202. /// - Parameters:
  203. /// - adapters: `RequestAdapter` values to be used.
  204. /// - retriers: `RequestRetrier` values to be used.
  205. /// - interceptors: `RequestInterceptor`s to be used.
  206. public init(adapters: [RequestAdapter] = [], retriers: [RequestRetrier] = [], interceptors: [RequestInterceptor] = []) {
  207. self.adapters = adapters + interceptors
  208. self.retriers = retriers + interceptors
  209. }
  210. open func adapt(_ urlRequest: URLRequest, for session: Session, completion: @escaping (Result<URLRequest, Error>) -> Void) {
  211. adapt(urlRequest, for: session, using: adapters, completion: completion)
  212. }
  213. private func adapt(_ urlRequest: URLRequest,
  214. for session: Session,
  215. using adapters: [RequestAdapter],
  216. completion: @escaping (Result<URLRequest, Error>) -> Void) {
  217. var pendingAdapters = adapters
  218. guard !pendingAdapters.isEmpty else { completion(.success(urlRequest)); return }
  219. let adapter = pendingAdapters.removeFirst()
  220. adapter.adapt(urlRequest, for: session) { result in
  221. switch result {
  222. case let .success(urlRequest):
  223. self.adapt(urlRequest, for: session, using: pendingAdapters, completion: completion)
  224. case .failure:
  225. completion(result)
  226. }
  227. }
  228. }
  229. open func adapt(_ urlRequest: URLRequest, using state: RequestAdapterState, completion: @escaping (Result<URLRequest, Error>) -> Void) {
  230. adapt(urlRequest, using: state, adapters: adapters, completion: completion)
  231. }
  232. private func adapt(_ urlRequest: URLRequest,
  233. using state: RequestAdapterState,
  234. adapters: [RequestAdapter],
  235. completion: @escaping (Result<URLRequest, Error>) -> Void) {
  236. var pendingAdapters = adapters
  237. guard !pendingAdapters.isEmpty else { completion(.success(urlRequest)); return }
  238. let adapter = pendingAdapters.removeFirst()
  239. adapter.adapt(urlRequest, using: state) { result in
  240. switch result {
  241. case let .success(urlRequest):
  242. self.adapt(urlRequest, using: state, adapters: pendingAdapters, completion: completion)
  243. case .failure:
  244. completion(result)
  245. }
  246. }
  247. }
  248. open func retry(_ request: Request,
  249. for session: Session,
  250. dueTo error: Error,
  251. completion: @escaping (RetryResult) -> Void) {
  252. retry(request, for: session, dueTo: error, using: retriers, completion: completion)
  253. }
  254. private func retry(_ request: Request,
  255. for session: Session,
  256. dueTo error: Error,
  257. using retriers: [RequestRetrier],
  258. completion: @escaping (RetryResult) -> Void) {
  259. var pendingRetriers = retriers
  260. guard !pendingRetriers.isEmpty else { completion(.doNotRetry); return }
  261. let retrier = pendingRetriers.removeFirst()
  262. retrier.retry(request, for: session, dueTo: error) { result in
  263. switch result {
  264. case .retry, .retryWithDelay, .doNotRetryWithError:
  265. completion(result)
  266. case .doNotRetry:
  267. // Only continue to the next retrier if retry was not triggered and no error was encountered
  268. self.retry(request, for: session, dueTo: error, using: pendingRetriers, completion: completion)
  269. }
  270. }
  271. }
  272. }
  273. #if swift(>=5.5)
  274. extension RequestInterceptor where Self == Interceptor {
  275. /// Creates an `Interceptor` using the provided `AdaptHandler` and `RetryHandler` closures.
  276. ///
  277. /// - Parameters:
  278. /// - adapter: `AdapterHandler`to use to adapt the request.
  279. /// - retrier: `RetryHandler` to use to retry the request.
  280. /// - Returns: The `Interceptor`.
  281. public static func interceptor(adapter: @escaping AdaptHandler, retrier: @escaping RetryHandler) -> Interceptor {
  282. Interceptor(adaptHandler: adapter, retryHandler: retrier)
  283. }
  284. /// Creates an `Interceptor` using the provided `RequestAdapter` and `RequestRetrier` instances.
  285. /// - Parameters:
  286. /// - adapter: `RequestAdapter` to use to adapt the request
  287. /// - retrier: `RequestRetrier` to use to retry the request.
  288. /// - Returns: The `Interceptor`.
  289. public static func interceptor(adapter: RequestAdapter, retrier: RequestRetrier) -> Interceptor {
  290. Interceptor(adapter: adapter, retrier: retrier)
  291. }
  292. /// Creates an `Interceptor` using the provided `RequestAdapter`s, `RequestRetrier`s, and `RequestInterceptor`s.
  293. /// - Parameters:
  294. /// - adapters: `RequestAdapter`s to use to adapt the request. These adapters will be run until one fails.
  295. /// - retriers: `RequestRetrier`s to use to retry the request. These retriers will be run one at a time until
  296. /// a retry is triggered.
  297. /// - interceptors: `RequestInterceptor`s to use to intercept the request.
  298. /// - Returns: The `Interceptor`.
  299. public static func interceptor(adapters: [RequestAdapter] = [],
  300. retriers: [RequestRetrier] = [],
  301. interceptors: [RequestInterceptor] = []) -> Interceptor {
  302. Interceptor(adapters: adapters, retriers: retriers, interceptors: interceptors)
  303. }
  304. }
  305. #endif