lpw
2023-06-14 0bf4fbe23108215661378c9ac0561a1ae309c0aa
commit | author | age
6e1425 1 //
H 2 //  SimpleHttp.h
3 //  simpleHttp
4 //
5 //  Created by Michael on 9/18/12.
6 //  Copyright (c) 2012 happyMedium
7 //
8 //Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
9 //
10 //The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
11 //
12 //THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
13 //
14
15 #import <Foundation/Foundation.h>
16
17 @interface WAHttpHelper : NSObject
18 {
19     
20
21 }
22 @property(strong, nonatomic) NSMutableURLRequest *request;
23 @property(strong, nonatomic) NSError * error;
24 @property(strong, nonatomic) NSURLResponse * response;
25
26 /* attributes used for more complex request building */
27 @property(strong, nonatomic) NSString * url;
28 @property(strong, nonatomic) NSString * method;
29
30 @property(strong, nonatomic) NSMutableDictionary * formParams;
31 @property(strong, nonatomic) NSMutableDictionary * fileParams;
32
33
34 #pragma mark - class methods
35
36 +(NSData *) sendGetRequestToURL:(NSString *)aUrl withParameters:(NSDictionary *)params;
37 +(void)sendAsyncGetRequestToURL:(NSString *)aUrl withParameters:(NSDictionary *)params andCompletionHandler:(void (^)(NSURLResponse*, NSData*, NSError*)) handler;
38 +(NSData *) sendPostRequestToURL:(NSString *)aUrl withParameters:(NSDictionary *)params;
39 +(void) sendAsyncPostRequestToURL:(NSString *)aUrl withParameters:(NSDictionary *)params andCompletionHandler:(void (^)(NSURLResponse*, NSData*, NSError*)) handler;
40 +(NSData *) sendPostRequestToURL:(NSString *)aUrl withParameters:(NSDictionary *)params andFiles:(NSDictionary *)files;
41 +(void) sendAsyncPostRequestToURL:(NSString *)aUrl withParameters:(NSDictionary *)params andFiles:(NSDictionary *)files andCompletionHandler:(void (^)(NSURLResponse*, NSData*, NSError*)) handler;
42
43 #pragma mark - simple instance methods
44
45 -(NSData *) sendGetRequestToURL:(NSString *)aUrl withParameters:(NSDictionary *)params;
46 -(void) sendAsyncGetRequestToURL:(NSString *)aUrl withParameters:(NSDictionary *)params andCompletionHandler:(void (^)(NSURLResponse*, NSData*, NSError*)) handler;
47 -(NSData *) sendPostRequestToURL:(NSString *)aUrl withParameters:(NSDictionary *)params;
48 -(void) sendAsyncPostRequestToURL:(NSString *)aUrl withParameters:(NSDictionary *)params andCompletionHandler:(void (^)(NSURLResponse*, NSData*, NSError*)) handler;
49 -(NSData *) sendPostRequestToURL:(NSString *)aUrl withParameters:(NSDictionary *)params andFiles:(NSDictionary *)files;
50 -(void) sendAsyncPostRequestToURL:(NSString *)aUrl withParameters:(NSDictionary *)params andFiles:(NSDictionary *)files andCompletionHandler:(void (^)(NSURLResponse*, NSData*, NSError*)) handler;
51
52 #pragma mark - manually building request
53
54 -(BOOL) addValue:(id)value forQueryParam:(NSString *const)param;
55 -(BOOL) addFileName:(NSString *)fileName forQueryParam:(NSString *)param;
56 -(NSData *) send;
57 -(void) sendAsync:(void (^)(NSURLResponse*, NSData*, NSError*)) handler;
58
59
60 #pragma  mark - sending requests
61
62 -(NSData *) sendRequest:(NSURLRequest *) aRequest;
63 -(void) sendAsyncRequest:(NSURLRequest *) aRequest withCompletionHandler:(void (^)(NSURLResponse*, NSData*, NSError*)) handler;
64
65 #pragma mark - helpers
66
67 -(NSMutableURLRequest *) buildPostRequestToURL:(NSString *)aUrl withParameters:(NSDictionary *)params andFiles:(NSDictionary *) files;
68 -(NSMutableURLRequest *) buildPostRequestToURL:(NSString *)aUrl withParameters:(NSDictionary *)params;
69 -(NSMutableURLRequest *) buildGetRequestToURL:(NSString *)aUrl withParameters:(NSDictionary *)params;
70 -(NSString *) getParamStringFromParams:(NSDictionary *)params;
3eecf8 71
L 72 //针对打开网页支付时,直接使用get请求
73 -(NSMutableURLRequest *) buildWebRequestToURL:(NSString *)aUrl withParameters:(NSDictionary *)params;
74
75
6e1425 76 @end