-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGMNetworkManager.m
executable file
·154 lines (130 loc) · 5.36 KB
/
GMNetworkManager.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
//
// GMNetwork Kit
//
// Created by Gersham Meharg on 11-02-13.
// Copyright 2011 Gersham Meharg. All rights reserved.
//
#import "GMNetworkManager.h"
#import "GMNetworkOperation.h"
#include <CommonCrypto/CommonDigest.h>
#import "NSString+URLEncode.h"
@implementation GMNetworkManager
static GMNetworkManager *shared = nil;
@synthesize apiEndpoint = _apiEndpoint;
@synthesize lastAlertTime = _lastAlertTime;
@synthesize alertShown = _alertShown;
@synthesize networkQueue = _networkQueue;
@synthesize defaultHeaders = _defaultHeaders;
NSString *const HTTPPost = @"POST";
NSString *const HTTPPut = @"PUT";
NSString *const HTTPGet = @"GET";
NSString *const HTTPDelete = @"DELETE";
- (void)operationForPath:(NSString *)path
httpMethod:(NSString *)httpMethod
parameters:(NSDictionary *)parameters
completion:(void (^)(GMOperationResult *result))completion {
if (parameters == nil)
parameters = [NSMutableDictionary dictionaryWithCapacity:4];
// Build URL
NSString *location;
if ([parameters count] > 0 && (![httpMethod isEqualToString:HTTPPost] && ![httpMethod isEqualToString:HTTPPut])) {
NSMutableString *args = [NSMutableString stringWithString:@"?"];
for (NSString *key in parameters) {
if ([parameters objectForKey:key] == [NSNull null]) {
NSLog(@"Null value for %@ skipping", key);
continue;
}
NSString *value = [[parameters objectForKey:key] urlEncodedString];
[args appendString:[NSString stringWithFormat:@"%@=%@&", key, value]];
}
location = [NSString stringWithFormat:@"%@%@%@", _apiEndpoint, path, [args substringWithRange:NSMakeRange(0, args.length-1)]];
} else {
location = [NSString stringWithFormat:@"%@%@", _apiEndpoint, path];
}
NSURL *url = [[NSURL alloc] initWithString:location];
[self operationForURL:url
httpMethod:httpMethod
parameters:parameters
completion:completion];
}
- (void)operationForURL:(NSURL *)url
httpMethod:(NSString *)httpMethod
parameters:(NSDictionary *)parameters
completion:(void (^)(GMOperationResult *result))completion {
// Do Operation
if (url != nil) {
GMNetworkOperation *op = [GMNetworkOperation new];
op.delegate = self;
op.url = url;
op.parameters = parameters;
op.httpMethod = httpMethod;
op.completion = completion;
[self.networkQueue addOperation:op];
} else {
NSLog(@"Not performing network operation for undefined url");
}
}
- (void)networkOperationResult:(GMOperationResult *)result {
if (result.error) {
NSLog(@"NetOpp Error");
OperationCallbackBlock block = (OperationCallbackBlock)result.completion;
block(result);
} else {
OperationCallbackBlock block = (OperationCallbackBlock)result.completion;
block(result);
}
}
- (void)showErrorAlertForResult:(GMOperationResult *)result {
if (result.httpCode == 401) {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Authentication Failed"
message:@"There was a problem authenticating you. Please login again."
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
alert.tag = 6;
[alert show];
return;
}
if (self.lastAlertTime == nil || -[_lastAlertTime timeIntervalSinceNow] > 4) {
self.lastAlertTime = [NSDate date];
self.alertShown = YES;
NSLog(@"NetworkOperationResult Error %@ - %@", result.errorTitle, result.errorDescription);
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:result.errorTitle
message:result.errorDescription
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
alert.tag = 2;
[alert show];
}
}
- (void)showNetworkDownAlert {
if (self.lastAlertTime == nil || -[_lastAlertTime timeIntervalSinceNow] > 4) {
self.lastAlertTime = [NSDate date];
self.alertShown = YES;
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"503 Service Down"
message:@"The webservice is currently down for maintainence, please try again later. Sorry for the inconvienience"
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
alert.tag = 5;
[alert show];
}
}
#pragma mark Singleton
+ (id)shared {
@synchronized(self) {
if(shared == nil)
shared = [[super allocWithZone:NULL] init];
}
return shared;
}
- (id)init {
if ((self = [super init])) {
self.networkQueue = [NSOperationQueue new];
[self.networkQueue setMaxConcurrentOperationCount:5];
self.defaultHeaders = [NSMutableDictionary dictionary];
}
return self;
}
@end