hank
2017-06-22 a8ba2ef2cfbce91f4e510deab3e1bc645b40147f
commit | author | age
6e1425 1 // AFHTTPSessionManager.h
H 2 // Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/)
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining a copy
5 // of this software and associated documentation files (the "Software"), to deal
6 // in the Software without restriction, including without limitation the rights
7 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 // copies of the Software, and to permit persons to whom the Software is
9 // furnished to do so, subject to the following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included in
12 // all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 // THE SOFTWARE.
21
22 #import <Foundation/Foundation.h>
23 #if !TARGET_OS_WATCH
24 #import <SystemConfiguration/SystemConfiguration.h>
25 #endif
26 #import <Availability.h>
27
28 #if __IPHONE_OS_VERSION_MIN_REQUIRED
29 #import <MobileCoreServices/MobileCoreServices.h>
30 #else
31 #import <CoreServices/CoreServices.h>
32 #endif
33
34 #import "AFURLSessionManager.h"
35
36 #ifndef NS_DESIGNATED_INITIALIZER
37 #if __has_attribute(objc_designated_initializer)
38 #define NS_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
39 #else
40 #define NS_DESIGNATED_INITIALIZER
41 #endif
42 #endif
43
44 /**
45  `AFHTTPSessionManager` is a subclass of `AFURLSessionManager` with convenience methods for making HTTP requests. When a `baseURL` is provided, requests made with the `GET` / `POST` / et al. convenience methods can be made with relative paths.
46
47  ## Subclassing Notes
48
49  Developers targeting iOS 7 or Mac OS X 10.9 or later that deal extensively with a web service are encouraged to subclass `AFHTTPSessionManager`, providing a class method that returns a shared singleton object on which authentication and other configuration can be shared across the application.
50
51  For developers targeting iOS 6 or Mac OS X 10.8 or earlier, `AFHTTPRequestOperationManager` may be used to similar effect.
52
53  ## Methods to Override
54
55  To change the behavior of all data task operation construction, which is also used in the `GET` / `POST` / et al. convenience methods, override `dataTaskWithRequest:completionHandler:`.
56
57  ## Serialization
58
59  Requests created by an HTTP client will contain default headers and encode parameters according to the `requestSerializer` property, which is an object conforming to `<AFURLRequestSerialization>`.
60
61  Responses received from the server are automatically validated and serialized by the `responseSerializers` property, which is an object conforming to `<AFURLResponseSerialization>`
62
63  ## URL Construction Using Relative Paths
64
65  For HTTP convenience methods, the request serializer constructs URLs from the path relative to the `-baseURL`, using `NSURL +URLWithString:relativeToURL:`, when provided. If `baseURL` is `nil`, `path` needs to resolve to a valid `NSURL` object using `NSURL +URLWithString:`.
66
67  Below are a few examples of how `baseURL` and relative paths interact:
68
69     NSURL *baseURL = [NSURL URLWithString:@"http://example.com/v1/"];
70     [NSURL URLWithString:@"foo" relativeToURL:baseURL];                  // http://example.com/v1/foo
71     [NSURL URLWithString:@"foo?bar=baz" relativeToURL:baseURL];          // http://example.com/v1/foo?bar=baz
72     [NSURL URLWithString:@"/foo" relativeToURL:baseURL];                 // http://example.com/foo
73     [NSURL URLWithString:@"foo/" relativeToURL:baseURL];                 // http://example.com/v1/foo
74     [NSURL URLWithString:@"/foo/" relativeToURL:baseURL];                // http://example.com/foo/
75     [NSURL URLWithString:@"http://example2.com/" relativeToURL:baseURL]; // http://example2.com/
76
77  Also important to note is that a trailing slash will be added to any `baseURL` without one. This would otherwise cause unexpected behavior when constructing URLs using paths without a leading slash.
78
79  @warning Managers for background sessions must be owned for the duration of their use. This can be accomplished by creating an application-wide or shared singleton instance.
80  */
81
82 #if (defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 70000) || (defined(__MAC_OS_X_VERSION_MAX_ALLOWED) && __MAC_OS_X_VERSION_MAX_ALLOWED >= 1090) || TARGET_OS_WATCH
83
84 NS_ASSUME_NONNULL_BEGIN
85
86 @interface AFHTTPSessionManager : AFURLSessionManager <NSSecureCoding, NSCopying>
87
88 /**
89  The URL used to construct requests from relative paths in methods like `requestWithMethod:URLString:parameters:`, and the `GET` / `POST` / et al. convenience methods.
90  */
91 @property (readonly, nonatomic, strong, nullable) NSURL *baseURL;
92
93 /**
94  Requests created with `requestWithMethod:URLString:parameters:` & `multipartFormRequestWithMethod:URLString:parameters:constructingBodyWithBlock:` are constructed with a set of default headers using a parameter serialization specified by this property. By default, this is set to an instance of `AFHTTPRequestSerializer`, which serializes query string parameters for `GET`, `HEAD`, and `DELETE` requests, or otherwise URL-form-encodes HTTP message bodies.
95
96  @warning `requestSerializer` must not be `nil`.
97  */
98 @property (nonatomic, strong) AFHTTPRequestSerializer <AFURLRequestSerialization> * requestSerializer;
99
100 /**
101  Responses sent from the server in data tasks created with `dataTaskWithRequest:success:failure:` and run using the `GET` / `POST` / et al. convenience methods are automatically validated and serialized by the response serializer. By default, this property is set to an instance of `AFJSONResponseSerializer`.
102
103  @warning `responseSerializer` must not be `nil`.
104  */
105 @property (nonatomic, strong) AFHTTPResponseSerializer <AFURLResponseSerialization> * responseSerializer;
106
107 ///---------------------
108 /// @name Initialization
109 ///---------------------
110
111 /**
112  Creates and returns an `AFHTTPSessionManager` object.
113  */
114 + (instancetype)manager;
115
116 /**
117  Initializes an `AFHTTPSessionManager` object with the specified base URL.
118
119  @param url The base URL for the HTTP client.
120
121  @return The newly-initialized HTTP client
122  */
123 - (instancetype)initWithBaseURL:(nullable NSURL *)url;
124
125 /**
126  Initializes an `AFHTTPSessionManager` object with the specified base URL.
127
128  This is the designated initializer.
129
130  @param url The base URL for the HTTP client.
131  @param configuration The configuration used to create the managed session.
132
133  @return The newly-initialized HTTP client
134  */
135 - (instancetype)initWithBaseURL:(nullable NSURL *)url
136            sessionConfiguration:(nullable NSURLSessionConfiguration *)configuration NS_DESIGNATED_INITIALIZER;
137
138 ///---------------------------
139 /// @name Making HTTP Requests
140 ///---------------------------
141
142 /**
143  Creates and runs an `NSURLSessionDataTask` with a `GET` request.
144
145  @param URLString The URL string used to create the request URL.
146  @param parameters The parameters to be encoded according to the client request serializer.
147  @param success A block object to be executed when the task finishes successfully. This block has no return value and takes two arguments: the data task, and the response object created by the client response serializer.
148  @param failure A block object to be executed when the task finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the data task and the error describing the network or parsing error that occurred.
149
150  @see -dataTaskWithRequest:completionHandler:
151  */
152 - (nullable NSURLSessionDataTask *)GET:(NSString *)URLString
153                    parameters:(nullable id)parameters
154                       success:(nullable void (^)(NSURLSessionDataTask *task, id responseObject))success
155                       failure:(nullable void (^)(NSURLSessionDataTask *task, NSError *error))failure;
156
157 /**
158  Creates and runs an `NSURLSessionDataTask` with a `HEAD` request.
159
160  @param URLString The URL string used to create the request URL.
161  @param parameters The parameters to be encoded according to the client request serializer.
162  @param success A block object to be executed when the task finishes successfully. This block has no return value and takes a single arguments: the data task.
163  @param failure A block object to be executed when the task finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the data task and the error describing the network or parsing error that occurred.
164
165  @see -dataTaskWithRequest:completionHandler:
166  */
167 - (nullable NSURLSessionDataTask *)HEAD:(NSString *)URLString
168                     parameters:(nullable id)parameters
169                        success:(nullable void (^)(NSURLSessionDataTask *task))success
170                        failure:(nullable void (^)(NSURLSessionDataTask *task, NSError *error))failure;
171
172 /**
173  Creates and runs an `NSURLSessionDataTask` with a `POST` request.
174
175  @param URLString The URL string used to create the request URL.
176  @param parameters The parameters to be encoded according to the client request serializer.
177  @param success A block object to be executed when the task finishes successfully. This block has no return value and takes two arguments: the data task, and the response object created by the client response serializer.
178  @param failure A block object to be executed when the task finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the data task and the error describing the network or parsing error that occurred.
179
180  @see -dataTaskWithRequest:completionHandler:
181  */
182 - (nullable NSURLSessionDataTask *)POST:(NSString *)URLString
183                     parameters:(nullable id)parameters
184                        success:(nullable void (^)(NSURLSessionDataTask *task, id responseObject))success
185                        failure:(nullable void (^)(NSURLSessionDataTask *task, NSError *error))failure;
186
187 /**
188  Creates and runs an `NSURLSessionDataTask` with a multipart `POST` request.
189
190  @param URLString The URL string used to create the request URL.
191  @param parameters The parameters to be encoded according to the client request serializer.
192  @param block A block that takes a single argument and appends data to the HTTP body. The block argument is an object adopting the `AFMultipartFormData` protocol.
193  @param success A block object to be executed when the task finishes successfully. This block has no return value and takes two arguments: the data task, and the response object created by the client response serializer.
194  @param failure A block object to be executed when the task finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the data task and the error describing the network or parsing error that occurred.
195
196  @see -dataTaskWithRequest:completionHandler:
197  */
198 - (nullable NSURLSessionDataTask *)POST:(NSString *)URLString
199                     parameters:(nullable id)parameters
200      constructingBodyWithBlock:(nullable void (^)(id <AFMultipartFormData> formData))block
201                        success:(nullable void (^)(NSURLSessionDataTask *task, id responseObject))success
202                        failure:(nullable void (^)(NSURLSessionDataTask *task, NSError *error))failure;
203
204 /**
205  Creates and runs an `NSURLSessionDataTask` with a `PUT` request.
206
207  @param URLString The URL string used to create the request URL.
208  @param parameters The parameters to be encoded according to the client request serializer.
209  @param success A block object to be executed when the task finishes successfully. This block has no return value and takes two arguments: the data task, and the response object created by the client response serializer.
210  @param failure A block object to be executed when the task finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the data task and the error describing the network or parsing error that occurred.
211
212  @see -dataTaskWithRequest:completionHandler:
213  */
214 - (nullable NSURLSessionDataTask *)PUT:(NSString *)URLString
215                    parameters:(nullable id)parameters
216                       success:(nullable void (^)(NSURLSessionDataTask *task, id responseObject))success
217                       failure:(nullable void (^)(NSURLSessionDataTask *task, NSError *error))failure;
218
219 /**
220  Creates and runs an `NSURLSessionDataTask` with a `PATCH` request.
221
222  @param URLString The URL string used to create the request URL.
223  @param parameters The parameters to be encoded according to the client request serializer.
224  @param success A block object to be executed when the task finishes successfully. This block has no return value and takes two arguments: the data task, and the response object created by the client response serializer.
225  @param failure A block object to be executed when the task finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the data task and the error describing the network or parsing error that occurred.
226
227  @see -dataTaskWithRequest:completionHandler:
228  */
229 - (nullable NSURLSessionDataTask *)PATCH:(NSString *)URLString
230                      parameters:(nullable id)parameters
231                         success:(nullable void (^)(NSURLSessionDataTask *task, id responseObject))success
232                         failure:(nullable void (^)(NSURLSessionDataTask *task, NSError *error))failure;
233
234 /**
235  Creates and runs an `NSURLSessionDataTask` with a `DELETE` request.
236
237  @param URLString The URL string used to create the request URL.
238  @param parameters The parameters to be encoded according to the client request serializer.
239  @param success A block object to be executed when the task finishes successfully. This block has no return value and takes two arguments: the data task, and the response object created by the client response serializer.
240  @param failure A block object to be executed when the task finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the data task and the error describing the network or parsing error that occurred.
241
242  @see -dataTaskWithRequest:completionHandler:
243  */
244 - (nullable NSURLSessionDataTask *)DELETE:(NSString *)URLString
245                       parameters:(nullable id)parameters
246                          success:(nullable void (^)(NSURLSessionDataTask *task, id responseObject))success
247                          failure:(nullable void (^)(NSURLSessionDataTask *task, NSError *error))failure;
248
249 @end
250
251 NS_ASSUME_NONNULL_END
252
253 #endif