mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-23 04:20:21 +08:00
Added Appledoc markup to RKClient
This commit is contained in:
@@ -15,14 +15,17 @@
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/**
|
||||
* URL & URL Path Convenience methods
|
||||
* @name URL & URL Path Convenience methods
|
||||
*/
|
||||
|
||||
/**
|
||||
* Returns an NSURL with the specified resource path appended to the base URL
|
||||
* that the shared RKClient instance is configured with
|
||||
*
|
||||
* Shortcut for calling [[RKClient sharedClient] URLForResourcePath:@"/some/path"]
|
||||
* Shortcut for calling `[[RKClient sharedClient] URLForResourcePath:@"/some/path"]`
|
||||
*
|
||||
* @param resourcePath The resource path to append to the baseURL of the [RKClient sharedClient]
|
||||
* @return A fully constructed NSURL consisting of baseURL of the shared client singleton and the supplied
|
||||
*/
|
||||
NSURL* RKMakeURL(NSString* resourcePath);
|
||||
|
||||
@@ -52,6 +55,52 @@ NSString* RKMakePathWithObject(NSString* path, id object);
|
||||
* RKClient exposes the low level client interface for working
|
||||
* with HTTP servers and RESTful services. It wraps the request/response
|
||||
* cycle with a clean, simple interface.
|
||||
*
|
||||
* RKClient can be thought of as analogous to a web browser or other HTTP
|
||||
* user agent. The client's primary purpose is to configure and dispatch
|
||||
* requests to a remote service for processing in a global way. When working
|
||||
* with the Network layer, a user will generally construct and dispatch all
|
||||
* RKRequest objects via the interfaces exposed by RKClient.
|
||||
*
|
||||
* Base URL and Resource Paths
|
||||
* ---------------------------
|
||||
*
|
||||
* Core to an effective utilization of RKClient is an understanding of the
|
||||
* Base URL and Resource Path concepts. The Base URL forms the common beginning part
|
||||
* of a complete URL string that is used to access a remote web service. RKClient
|
||||
* instances are configured with a Base URL and all requests dispatched through the
|
||||
* client will be sent to a URL consisting of the base URL plus the resource path specified.
|
||||
* The resource path is simply the remaining part of the URL once all common text is removed.
|
||||
*
|
||||
* For example, given a remote web service at http://restkit.org and RESTful services at
|
||||
* http://restkit.org/services and http://restkit.org/objects, our base URL would be http://restkit.org
|
||||
* and we would have resource paths of /services and /objects.
|
||||
*
|
||||
* Base URL's simplify interaction with remote services by freeing us from having to interpolate
|
||||
* strings and construct NSURL objects to get work done. We are also able to quickly retarget an
|
||||
* entire application to a different server or API version by changing the base URL. This is commonly
|
||||
* done via conditional compilation to create builds against a staging and production server, for example.
|
||||
*
|
||||
* Memory Management
|
||||
* -----------------
|
||||
*
|
||||
* Note that memory management of requests sent via RKClient instances are automatically managed
|
||||
* for you. When sent, the request is retained by the [shared request queue]([RKRequestQueue sharedQueue])
|
||||
* and is released all request processing has completed. Generally speaking this means that you can dispatch
|
||||
* requests and work with the response in the delegate methods without regard for memory management.
|
||||
*
|
||||
* Request Serialization
|
||||
* ---------------------
|
||||
*
|
||||
* RKClient and RKRequest support the serialization of objects into payloads to be sent as the body of a request.
|
||||
* This functionality is commonly used to provide a dictionary of simple values to be encoded and sent as a form
|
||||
* encoding with POST and PUT operations. It is worth noting however that this functionality is provided via the
|
||||
* RKRequestSerializable protocol and is not specific to NSDictionary objects.
|
||||
*
|
||||
* @see RKRequest
|
||||
* @see RKResponse
|
||||
* @see RKRequestQueue
|
||||
* @see RKRequestSerializable
|
||||
*/
|
||||
@interface RKClient : NSObject {
|
||||
NSString* _baseURL;
|
||||
@@ -64,11 +113,42 @@ NSString* RKMakePathWithObject(NSString* path, id object);
|
||||
BOOL _serviceUnavailableAlertEnabled;
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
/// @name Configuring the Client
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/**
|
||||
* The base URL all resources are nested underneath
|
||||
*/
|
||||
@property(nonatomic, retain) NSString* baseURL;
|
||||
|
||||
/**
|
||||
* A dictionary of headers to be sent with each request
|
||||
*/
|
||||
@property(nonatomic, readonly) NSMutableDictionary* HTTPHeaders;
|
||||
|
||||
/**
|
||||
* Will check for network connectivity to the host specified in the baseURL
|
||||
*
|
||||
* @see baseURL
|
||||
* @see RKReachabilityObserver
|
||||
* @return YES if the remote host is accessible
|
||||
*/
|
||||
- (BOOL)isNetworkAvailable;
|
||||
|
||||
/**
|
||||
* Adds an HTTP header to each request dispatched through the client
|
||||
*
|
||||
* @param value The string value to set for the HTTP header
|
||||
* @param header The HTTP header to add
|
||||
* @see HTTPHeaders
|
||||
*/
|
||||
- (void)setValue:(NSString*)value forHTTPHeaderField:(NSString*)header;
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
/// @name HTTP Authentication
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/**
|
||||
* The username to use for authentication via HTTP AUTH
|
||||
*/
|
||||
@@ -79,109 +159,178 @@ NSString* RKMakePathWithObject(NSString* path, id object);
|
||||
*/
|
||||
@property(nonatomic, retain) NSString* password;
|
||||
|
||||
/**
|
||||
* A dictionary of headers to be sent with each request
|
||||
*/
|
||||
@property(nonatomic, readonly) NSMutableDictionary* HTTPHeaders;
|
||||
|
||||
/**
|
||||
* The RKReachabilityObserver used to monitor whether or not the client has a connection
|
||||
* path to the baseURL
|
||||
* path to the baseURL.
|
||||
*
|
||||
* The baseURLReachabilityObserver instance is configured for you automatically when the
|
||||
* RKClient instance is configured. By adding observers, one can detect changes in the
|
||||
* availability of network access to the remote web service.
|
||||
*
|
||||
* @see RKReachabilityObserver
|
||||
*/
|
||||
@property(nonatomic, readonly) RKReachabilityObserver* baseURLReachabilityObserver;
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
/// @name Service Availability Alerting
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/**
|
||||
* The title to use in the alert shown when a request encounters a
|
||||
* ServiceUnavailable (503) response.
|
||||
* If not provided, the default is: "Service Unavailable"
|
||||
*
|
||||
* *Default*: _"Service Unavailable"_
|
||||
*/
|
||||
@property(nonatomic, retain) NSString* serviceUnavailableAlertTitle;
|
||||
|
||||
/**
|
||||
* The message to use in the alert shown when a request encounters a
|
||||
* ServiceUnavailable (503) response.
|
||||
* If not provided, the default is: "The remote resource is unavailable. Please try again later."
|
||||
*
|
||||
* *Default*: _"The remote resource is unavailable. Please try again later."_
|
||||
*/
|
||||
@property(nonatomic, retain) NSString* serviceUnavailableAlertMessage;
|
||||
|
||||
/**
|
||||
* Flag that determines whether the Service Unavailable alert is shown in response
|
||||
* to a ServiceUnavailable (503) response.
|
||||
* Defaults to NO.
|
||||
*
|
||||
* *Default*: _NO_
|
||||
*/
|
||||
@property(nonatomic, assign) BOOL serviceUnavailableAlertEnabled;
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
/// @name Shared Client Instance
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/**
|
||||
* Return the configured singleton instance of the Rest client
|
||||
* Return the configured singleton instance of the client
|
||||
*/
|
||||
+ (RKClient*)sharedClient;
|
||||
|
||||
/**
|
||||
* Set the shared singleton issue of the Rest client
|
||||
* Set the shared singleton issue of the client, releasing the current singleton (if any)
|
||||
*
|
||||
* @param client The RKClient instance to set as the new singleton
|
||||
*/
|
||||
+ (void)setSharedClient:(RKClient*)client;
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
/// @name Initializing a Client
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/**
|
||||
* Return a Rest client scoped to a particular base URL. If the singleton client is nil, the return client is set as the singleton
|
||||
* Return a client scoped to a particular base URL. If the singleton client is nil, the return client is set as the singleton
|
||||
*
|
||||
* @param baseURL The baseURL to set for the client. All requests will be relative to this base URL
|
||||
* @see baseURL
|
||||
* @return A configured RKClient instance ready to send requests
|
||||
*/
|
||||
+ (RKClient*)clientWithBaseURL:(NSString*)baseURL;
|
||||
|
||||
/**
|
||||
* Return a Rest client scoped to a particular base URL with a set of HTTP AUTH credentials. If the singleton client is nil, the return client is set as the singleton
|
||||
* Return a Rest client scoped to a particular base URL with a set of HTTP AUTH credentials.
|
||||
* If the [singleton client]([RKClient sharedClient]) is nil, the client instantiated will become the singleton instance
|
||||
*
|
||||
* @param baseURL The baseURL to set for the client. All requests will be relative to this base URL
|
||||
* @param username The username to use for HTTP Authentication challenges
|
||||
* @param password The password to use for HTTP Authentication challenges
|
||||
* @return A configured RKClient instance ready to send requests
|
||||
*/
|
||||
+ (RKClient*)clientWithBaseURL:(NSString*)baseURL username:(NSString*)username password:(NSString*)password;
|
||||
|
||||
/**
|
||||
* Will check for network connectivity (to google.com)
|
||||
*/
|
||||
- (BOOL)isNetworkAvailable;
|
||||
|
||||
/**
|
||||
* Adds an HTTP header to each request dispatched through the Rest client
|
||||
*/
|
||||
- (void)setValue:(NSString*)value forHTTPHeaderField:(NSString*)header;
|
||||
|
||||
/**
|
||||
* Returns a resource path with a dictionary of query parameters URL encoded and appended
|
||||
*/
|
||||
// TODO: Move this to a function instead of an RKClient method
|
||||
- (NSString*)resourcePath:(NSString*)resourcePath withQueryParams:(NSDictionary*)queryParams;
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
/// @name Constructing Resource Paths and URLs
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/**
|
||||
* Returns a NSURL by adding a resource path to the base URL
|
||||
*
|
||||
* @param resourcePath The resource path to build a URL against
|
||||
* @return An NSURL constructed by concatenating the baseURL and the resourcePath
|
||||
*/
|
||||
- (NSURL*)URLForResourcePath:(NSString*)resourcePath;
|
||||
|
||||
/**
|
||||
* Returns an NSString by adding a resource path to the base URL
|
||||
*
|
||||
* @param resourcePath The resource path to build a URL against
|
||||
* @return A string URL constructed by concatenating the baseURL and the resourcePath
|
||||
*/
|
||||
- (NSString*)URLPathForResourcePath:(NSString*)resourcePath;
|
||||
|
||||
/**
|
||||
* Returns a resource path with a dictionary of query parameters URL encoded and appended
|
||||
*
|
||||
* This is a convience method for constructing a new resource path that includes a query. For example,
|
||||
* when given a resourcePath of /contacts and a dictionary of parameters containing foo=bar and color=red,
|
||||
* will return /contacts?foo=bar&color=red
|
||||
*
|
||||
* *NOTE* - Assumes that the resource path does not already contain any query parameters.
|
||||
*
|
||||
* @param resourcePath The resource path to append the query parameters onto
|
||||
* @param queryParams A dicitonary of query parameters to be URL encoded and appened to the resource path
|
||||
* @return A new resource path with the query parameters appended
|
||||
*/
|
||||
// TODO: Move this to a function instead of an RKClient method
|
||||
- (NSString*)resourcePath:(NSString*)resourcePath withQueryParams:(NSDictionary*)queryParams;
|
||||
|
||||
/**
|
||||
* Returns a NSURL by adding a resource path to the base URL and appending a URL encoded set of query parameters
|
||||
*
|
||||
* This is a convience method for constructing a new resource path that includes a query. For example,
|
||||
* when given a resourcePath of /contacts and a dictionary of parameters containing foo=bar and color=red,
|
||||
* will return /contacts?foo=bar&color=red
|
||||
*
|
||||
* *NOTE* - Assumes that the resource path does not already contain any query parameters.
|
||||
*
|
||||
* @param resourcePath The resource path to append the query parameters onto
|
||||
* @param queryParams A dicitonary of query parameters to be URL encoded and appened to the resource path
|
||||
* @return A URL constructed by concatenating the baseURL and the resourcePath with the query parameters appended
|
||||
*/
|
||||
- (NSURL*)URLForResourcePath:(NSString *)resourcePath queryParams:(NSDictionary*)queryParams;
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
/// @name Building Requests
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/**
|
||||
* Configures a request with the headers and authentication settings applied to this client
|
||||
*
|
||||
* @param request A request to apply the configuration to
|
||||
* @see HTTPHeaders
|
||||
* @see username
|
||||
* @see password
|
||||
*/
|
||||
- (void)setupRequest:(RKRequest*)request;
|
||||
|
||||
/**
|
||||
* Return a request object targetted at a resource path relative to the base URL. By default the method is set to GET
|
||||
* All headers set on the client will automatically be applied to the request as well.
|
||||
*
|
||||
* @param resourcePath The resource path to configure the request for
|
||||
* @param delegate A delegate to inform of events in the request lifecycle
|
||||
* @return A fully configured RKRequest instance ready for sending
|
||||
* @see RKRequestDelegate
|
||||
*/
|
||||
- (RKRequest*)requestWithResourcePath:(NSString*)resourcePath delegate:(id)delegate;
|
||||
- (RKRequest*)requestWithResourcePath:(NSString*)resourcePath delegate:(NSObject<RKRequestDelegate>*)delegate;
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Asynchronous Helper Methods
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/**
|
||||
* These methods are provided as a convenience to cover the common asynchronous request tasks. All other request
|
||||
* needs should instantiate a request via requestWithResourcePath:delegate:callback and work with the RKRequest
|
||||
* object directly.
|
||||
*
|
||||
* @name Sending Asynchronous Requests
|
||||
*/
|
||||
|
||||
/**
|
||||
* Fetch a resource via an HTTP GET
|
||||
* Perform an asynchronous GET request for a resource and inform a delegate of the results
|
||||
*
|
||||
* @param resourcePath The resourcePath to target the request at
|
||||
* @param delegate A delegate object to inform of the results
|
||||
* @return The RKRequest object built and sent to the remote system
|
||||
*/
|
||||
- (RKRequest*)get:(NSString*)resourcePath delegate:(NSObject<RKRequestDelegate>*)delegate;
|
||||
|
||||
@@ -190,21 +339,42 @@ NSString* RKMakePathWithObject(NSString* path, id object);
|
||||
*
|
||||
* Note that this request _only_ allows NSDictionary objects as the params. The dictionary will be coerced into a URL encoded
|
||||
* string and then appended to the resourcePath as the query string of the request.
|
||||
*
|
||||
* @param resourcePath The resourcePath to target the request at
|
||||
* @param queryParams A dictionary of query parameters to append to the resourcePath. Assumes that resourcePath does not contain a query string.
|
||||
* @param delegate A delegate object to inform of the results
|
||||
* @return The RKRequest object built and sent to the remote system
|
||||
*/
|
||||
- (RKRequest*)get:(NSString*)resourcePath queryParams:(NSDictionary*)queryParams delegate:(NSObject<RKRequestDelegate>*)delegate;
|
||||
|
||||
/**
|
||||
* Create a resource via an HTTP POST with a set of form parameters
|
||||
*
|
||||
* @param resourcePath The resourcePath to target the request at
|
||||
* @param params A RKRequestSerializable object to use as the body of the request
|
||||
* @param delegate A delegate object to inform of the results
|
||||
* @return The RKRequest object built and sent to the remote system
|
||||
* @see RKRequestSerializable
|
||||
*/
|
||||
- (RKRequest*)post:(NSString*)resourcePath params:(NSObject<RKRequestSerializable>*)params delegate:(NSObject<RKRequestDelegate>*)delegate;
|
||||
|
||||
/**
|
||||
* Update a resource via an HTTP PUT
|
||||
*
|
||||
* @param resourcePath The resourcePath to target the request at
|
||||
* @param params A RKRequestSerializable object to use as the body of the request
|
||||
* @param delegate A delegate object to inform of the results
|
||||
* @return The RKRequest object built and sent to the remote system
|
||||
* @see RKRequestSerializable
|
||||
*/
|
||||
- (RKRequest*)put:(NSString*)resourcePath params:(NSObject<RKRequestSerializable>*)params delegate:(NSObject<RKRequestDelegate>*)delegate;
|
||||
|
||||
/**
|
||||
* Destroy a resource via an HTTP DELETE
|
||||
*
|
||||
* @param resourcePath The resourcePath to target the request at
|
||||
* @param delegate A delegate object to inform of the results
|
||||
* @return The RKRequest object built and sent to the remote system
|
||||
*/
|
||||
- (RKRequest*)delete:(NSString*)resourcePath delegate:(NSObject<RKRequestDelegate>*)delegate;
|
||||
|
||||
|
||||
@@ -184,7 +184,7 @@ NSString* RKMakePathWithObject(NSString* path, id object) {
|
||||
}
|
||||
}
|
||||
|
||||
- (RKRequest*)requestWithResourcePath:(NSString*)resourcePath delegate:(id)delegate {
|
||||
- (RKRequest*)requestWithResourcePath:(NSString*)resourcePath delegate:(NSObject<RKRequestDelegate>*)delegate {
|
||||
RKRequest* request = [[RKRequest alloc] initWithURL:[self URLForResourcePath:resourcePath] delegate:delegate];
|
||||
[self setupRequest:request];
|
||||
[request autorelease];
|
||||
|
||||
Reference in New Issue
Block a user