forked from pkyeck/socket.IO-objc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SocketIO.m
executable file
·847 lines (698 loc) · 27 KB
/
SocketIO.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
//
// SocketIO.m
// v0.5.1
//
// based on
// socketio-cocoa https://github.com/fpotter/socketio-cocoa
// by Fred Potter <[email protected]>
//
// using
// https://github.com/square/SocketRocket
//
// reusing some parts of
// /socket.io/socket.io.js
//
// Created by Philipp Kyeck http://beta-interactive.de
//
// With help from
// https://github.com/pkyeck/socket.IO-objc/blob/master/CONTRIBUTORS.md
//
#import "SocketIO.h"
#import "SocketIOPacket.h"
#import "SocketIOJSONSerialization.h"
#ifdef DEBUG
#define DEBUG_LOGS 1
#define DEBUG_CERTIFICATE 1
#else
#define DEBUG_LOGS 0
#define DEBUG_CERTIFICATE 0
#endif
#if DEBUG_LOGS
#define DEBUGLOG(...) NSLog(__VA_ARGS__)
#else
#define DEBUGLOG(...)
#endif
static NSString* kResourceName = @"socket.io";
static NSString* kHandshakeURL = @"%@://%@%@/%@/1/?t=%.0f%@";
static NSString* kForceDisconnectURL = @"%@://%@%@/%@/1/xhr-polling/%@?disconnect";
float const defaultConnectionTimeout = 10.0f;
NSString* const SocketIOError = @"SocketIOError";
NSString* const SocketIOException = @"SocketIOException";
# pragma mark -
# pragma mark SocketIO's private interface
@interface SocketIO (Private)
- (NSArray*) arrayOfCaptureComponentsMatchedByRegex:(NSString*)regex;
- (void) setTimeout;
- (void) onTimeout;
- (void) onConnect:(SocketIOPacket *)packet;
- (void) onDisconnect:(NSError *)error;
- (void) sendDisconnect;
- (void) sendHearbeat;
- (void) send:(SocketIOPacket *)packet;
- (NSString *) addAcknowledge:(SocketIOCallback)function;
- (void) removeAcknowledgeForKey:(NSString *)key;
- (NSMutableArray*) getMatchesFrom:(NSString*)data with:(NSString*)regex;
@end
# pragma mark -
# pragma mark SocketIO implementation
@implementation SocketIO
@synthesize isConnected = _isConnected,
isConnecting = _isConnecting,
useSecure = _useSecure,
cookies = _cookies,
delegate = _delegate,
heartbeatTimeout = _heartbeatTimeout,
returnAllDataFromAck = _returnAllDataFromAck;
- (id) initWithDelegate:(id<SocketIODelegate>)delegate
{
self = [super init];
if (self) {
_delegate = delegate;
_queue = [[NSMutableArray alloc] init];
_ackCount = 0;
_acks = [[NSMutableDictionary alloc] init];
_returnAllDataFromAck = NO;
}
return self;
}
- (void) connectToHost:(NSString *)host onPort:(NSInteger)port
{
[self connectToHost:host onPort:port withParams:nil withNamespace:@"" withConnectionTimeout:defaultConnectionTimeout];
}
- (void) connectToHost:(NSString *)host onPort:(NSInteger)port withParams:(NSDictionary *)params
{
[self connectToHost:host onPort:port withParams:params withNamespace:@"" withConnectionTimeout:defaultConnectionTimeout];
}
- (void) connectToHost:(NSString *)host
onPort:(NSInteger)port
withParams:(NSDictionary *)params
withNamespace:(NSString *)endpoint
{
[self connectToHost:host onPort:port withParams:params withNamespace:endpoint withConnectionTimeout:defaultConnectionTimeout];
}
- (void) connectToHost:(NSString *)host
onPort:(NSInteger)port
withParams:(NSDictionary *)params
withNamespace:(NSString *)endpoint
withConnectionTimeout:(NSTimeInterval)connectionTimeout
{
if (!_isConnected && !_isConnecting) {
_isConnecting = YES;
_host = host;
_port = port;
_params = params;
_endpoint = [endpoint copy];
// create a query parameters string
NSMutableString *query = [[NSMutableString alloc] initWithString:@""];
[params enumerateKeysAndObjectsUsingBlock: ^(id key, id value, BOOL *stop) {
[query appendFormat:@"&%@=%@", key, value];
}];
// do handshake via HTTP request
NSString *protocol = _useSecure ? @"https" : @"http";
NSString *port = _port ? [NSString stringWithFormat:@":%d", _port] : @"";
NSTimeInterval time = [[NSDate date] timeIntervalSince1970] * 1000;
NSString *handshakeUrl = [NSString stringWithFormat:kHandshakeURL, protocol, _host, port, kResourceName, time, query];
DEBUGLOG(@"Connecting to socket with URL: %@", handshakeUrl);
query = nil;
// make a request
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:handshakeUrl]
cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData
timeoutInterval:connectionTimeout];
if (_cookies != nil) {
DEBUGLOG(@"Adding cookie(s): %@", [_cookies description]);
NSDictionary *headers = [NSHTTPCookie requestHeaderFieldsWithCookies:_cookies];
[request setAllHTTPHeaderFields:headers];
}
[request setHTTPShouldHandleCookies:YES];
_handshake = [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:NO];
[_handshake scheduleInRunLoop:[NSRunLoop mainRunLoop] forMode:NSDefaultRunLoopMode];
[_handshake start];
if (_handshake) {
_httpRequestData = [NSMutableData data];
}
else {
// connection failed
[self connection:_handshake didFailWithError:nil];
}
}
}
- (void) disconnect
{
if (_isConnected) {
[self sendDisconnect];
}
else if (_isConnecting) {
[_handshake cancel];
[self onDisconnect: nil];
}
}
- (void) disconnectForced
{
NSString *protocol = [self useSecure] ? @"https" : @"http";
NSString *port = _port ? [NSString stringWithFormat:@":%d", _port] : @"";
NSString *urlString = [NSString stringWithFormat:kForceDisconnectURL, protocol, _host, port, kResourceName, _sid];
NSURL *url = [NSURL URLWithString:urlString];
DEBUGLOG(@"Force disconnect at: %@", urlString);
NSURLRequest *request = [NSURLRequest requestWithURL:url];
NSError *error = nil;
NSHTTPURLResponse *response = nil;
[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
if (error || [response statusCode] != 200) {
DEBUGLOG(@"Error during disconnect: %@", error);
}
[self onDisconnect:error];
}
- (void) sendMessage:(NSString *)data
{
[self sendMessage:data withAcknowledge:nil];
}
- (void) sendMessage:(NSString *)data withAcknowledge:(SocketIOCallback)function
{
SocketIOPacket *packet = [[SocketIOPacket alloc] initWithType:@"message"];
packet.data = data;
packet.pId = [self addAcknowledge:function];
[self send:packet];
}
- (void) sendJSON:(NSDictionary *)data
{
[self sendJSON:data withAcknowledge:nil];
}
- (void) sendJSON:(NSDictionary *)data withAcknowledge:(SocketIOCallback)function
{
SocketIOPacket *packet = [[SocketIOPacket alloc] initWithType:@"json"];
packet.data = [SocketIOJSONSerialization JSONStringFromObject:data error:nil];
packet.pId = [self addAcknowledge:function];
[self send:packet];
}
- (void) sendEvent:(NSString *)eventName withData:(id)data
{
[self sendEvent:eventName withData:data andAcknowledge:nil];
}
- (void) sendEvent:(NSString *)eventName withData:(id)data andAcknowledge:(SocketIOCallback)function
{
NSMutableDictionary *dict = [NSMutableDictionary dictionaryWithObject:eventName forKey:@"name"];
// do not require arguments
if (data != nil) {
[dict setObject:[NSArray arrayWithObject:data] forKey:@"args"];
}
SocketIOPacket *packet = [[SocketIOPacket alloc] initWithType:@"event"];
packet.data = [SocketIOJSONSerialization JSONStringFromObject:dict error:nil];
packet.pId = [self addAcknowledge:function];
if (function) {
packet.ack = @"data";
}
[self send:packet];
}
- (void) sendAcknowledgement:(NSString *)pId withArgs:(NSArray *)data
{
SocketIOPacket *packet = [[SocketIOPacket alloc] initWithType:@"ack"];
packet.data = [SocketIOJSONSerialization JSONStringFromObject:data error:nil];
packet.pId = pId;
packet.ack = @"data";
[self send:packet];
}
- (void) setResourceName:(NSString *)name
{
kResourceName = [name copy];
}
# pragma mark -
# pragma mark private methods
- (void) sendDisconnect
{
SocketIOPacket *packet = [[SocketIOPacket alloc] initWithType:@"disconnect"];
[self send:packet];
[self onDisconnect:nil];
}
- (void) sendConnect
{
SocketIOPacket *packet = [[SocketIOPacket alloc] initWithType:@"connect"];
[self send:packet];
}
- (void) sendHeartbeat
{
SocketIOPacket *packet = [[SocketIOPacket alloc] initWithType:@"heartbeat"];
[self send:packet];
}
- (void) send:(SocketIOPacket *)packet
{
if (![self isConnected] && ![self isConnecting]) {
DEBUGLOG(@"Already disconnected!");
return;
}
DEBUGLOG(@"send()");
NSNumber *type = [packet typeAsNumber];
NSMutableArray *encoded = [NSMutableArray arrayWithObject:type];
NSString *pId = packet.pId != nil ? packet.pId : @"";
if ([packet.ack isEqualToString:@"data"]) {
pId = [pId stringByAppendingString:@"+"];
}
// Do not write pid for acknowledgements
if ([type intValue] != 6) {
[encoded addObject:pId];
}
// Add the end point for the namespace to be used, as long as it is not
// an ACK, heartbeat, or disconnect packet
if ([type intValue] != 6 && [type intValue] != 2 && [type intValue] != 0) {
[encoded addObject:_endpoint];
}
else {
[encoded addObject:@""];
}
if (packet.data != nil) {
NSString *ackpId = @"";
// This is an acknowledgement packet, so, prepend the ack pid to the data
if ([type intValue] == 6) {
ackpId = [NSString stringWithFormat:@":%@%@", packet.pId, @"+"];
}
[encoded addObject:[NSString stringWithFormat:@"%@%@", ackpId, packet.data]];
}
NSString *req = [encoded componentsJoinedByString:@":"];
if (![_transport isReady]) {
DEBUGLOG(@"queue >>> %@", req);
[_queue addObject:packet];
}
else {
DEBUGLOG(@"send() >>> %@", req);
[_transport send:req];
if ([_delegate respondsToSelector:@selector(socketIO:didSendMessage:)]) {
[_delegate socketIO:self didSendMessage:packet];
}
}
}
- (void) doQueue
{
DEBUGLOG(@"doQueue() >> %lu", (unsigned long)[_queue count]);
// TODO send all packets at once ... not as seperate packets
while ([_queue count] > 0) {
SocketIOPacket *packet = [_queue objectAtIndex:0];
[self send:packet];
[_queue removeObject:packet];
}
}
- (void) onConnect:(SocketIOPacket *)packet
{
DEBUGLOG(@"onConnect()");
_isConnected = YES;
// Send the connected packet so the server knows what it's dealing with.
// Only required when endpoint/namespace is present
if ([_endpoint length] > 0) {
// Make sure the packet we received has an endpoint, otherwise send it again
if (![packet.endpoint isEqualToString:_endpoint]) {
DEBUGLOG(@"onConnect() >> End points do not match, resending connect packet");
[self sendConnect];
return;
}
}
_isConnecting = NO;
if ([_delegate respondsToSelector:@selector(socketIODidConnect:)]) {
[_delegate socketIODidConnect:self];
}
// send any queued packets
[self doQueue];
[self setTimeout];
}
# pragma mark -
# pragma mark Acknowledge methods
- (NSString *) addAcknowledge:(SocketIOCallback)function
{
if (function) {
++_ackCount;
NSString *ac = [NSString stringWithFormat:@"%ld", (long)_ackCount];
[_acks setObject:[function copy] forKey:ac];
return ac;
}
return nil;
}
- (void) removeAcknowledgeForKey:(NSString *)key
{
[_acks removeObjectForKey:key];
}
# pragma mark -
# pragma mark Heartbeat methods
- (void) onTimeout
{
if (_timeout) {
dispatch_source_cancel(_timeout);
_timeout = NULL;
}
DEBUGLOG(@"Timed out waiting for heartbeat.");
[self onDisconnect:[NSError errorWithDomain:SocketIOError
code:SocketIOHeartbeatTimeout
userInfo:nil]];
}
- (void) setTimeout
{
DEBUGLOG(@"start/reset timeout");
if (_timeout) {
dispatch_source_cancel(_timeout);
_timeout = NULL;
}
_timeout = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER,
0,
0,
dispatch_get_main_queue());
dispatch_source_set_timer(_timeout,
dispatch_time(DISPATCH_TIME_NOW, _heartbeatTimeout * NSEC_PER_SEC),
0,
0);
__weak SocketIO *weakSelf = self;
dispatch_source_set_event_handler(_timeout, ^{
[weakSelf onTimeout];
});
dispatch_resume(_timeout);
}
# pragma mark -
# pragma mark Regex helper method
- (NSMutableArray*) getMatchesFrom:(NSString*)data with:(NSString*)regex
{
NSRegularExpression *nsregexTest = [NSRegularExpression regularExpressionWithPattern:regex options:0 error:nil];
NSArray *nsmatchesTest = [nsregexTest matchesInString:data options:0 range:NSMakeRange(0, [data length])];
NSMutableArray *arr = [NSMutableArray array];
for (NSTextCheckingResult *nsmatchTest in nsmatchesTest) {
NSMutableArray *localMatch = [NSMutableArray array];
for (NSUInteger i = 0, l = [nsmatchTest numberOfRanges]; i < l; i++) {
NSRange range = [nsmatchTest rangeAtIndex:i];
NSString *nsmatchStr = nil;
if (range.location != NSNotFound && NSMaxRange(range) <= [data length]) {
nsmatchStr = [data substringWithRange:[nsmatchTest rangeAtIndex:i]];
}
else {
nsmatchStr = @"";
}
[localMatch addObject:nsmatchStr];
}
[arr addObject:localMatch];
}
return arr;
}
#pragma mark -
#pragma mark SocketIOTransport callbacks
- (void) onData:(NSString *)data
{
DEBUGLOG(@"onData %@", data);
// data arrived -> reset timeout
[self setTimeout];
// check if data is valid (from socket.io.js)
NSString *regex = @"^([^:]+):([0-9]+)?(\\+)?:([^:]+)?:?(.*)?$";
NSString *regexPieces = @"^([0-9]+)(\\+)?(.*)";
// create regex result
NSMutableArray *test = [self getMatchesFrom:data with:regex];
// valid data-string arrived
if ([test count] > 0) {
NSArray *result = [test objectAtIndex:0];
int idx = [[result objectAtIndex:1] intValue];
SocketIOPacket *packet = [[SocketIOPacket alloc] initWithTypeIndex:idx];
packet.pId = [result objectAtIndex:2];
packet.ack = [result objectAtIndex:3];
packet.endpoint = [result objectAtIndex:4];
packet.data = [result objectAtIndex:5];
//
switch (idx) {
case 0: {
DEBUGLOG(@"disconnect");
[self onDisconnect:[NSError errorWithDomain:SocketIOError
code:SocketIOServerRespondedWithDisconnect
userInfo:nil]];
break;
}
case 1: {
DEBUGLOG(@"connected");
// from socket.io.js ... not sure when data will contain sth?!
// packet.qs = data || '';
[self onConnect:packet];
break;
}
case 2: {
DEBUGLOG(@"heartbeat");
[self sendHeartbeat];
break;
}
case 3: {
DEBUGLOG(@"message");
if (packet.data && ![packet.data isEqualToString:@""]) {
if ([_delegate respondsToSelector:@selector(socketIO:didReceiveMessage:)]) {
[_delegate socketIO:self didReceiveMessage:packet];
}
}
break;
}
case 4: {
DEBUGLOG(@"json");
if (packet.data && ![packet.data isEqualToString:@""]) {
if ([_delegate respondsToSelector:@selector(socketIO:didReceiveJSON:)]) {
[_delegate socketIO:self didReceiveJSON:packet];
}
}
break;
}
case 5: {
DEBUGLOG(@"event");
if (packet.data && ![packet.data isEqualToString:@""]) {
NSDictionary *json = [packet dataAsJSON];
packet.name = [json objectForKey:@"name"];
packet.args = [json objectForKey:@"args"];
if ([_delegate respondsToSelector:@selector(socketIO:didReceiveEvent:)]) {
[_delegate socketIO:self didReceiveEvent:packet];
}
}
break;
}
case 6: {
DEBUGLOG(@"ack");
// create regex result
NSMutableArray *pieces = [self getMatchesFrom:packet.data with:regexPieces];
if ([pieces count] > 0) {
NSArray *piece = [pieces objectAtIndex:0];
int ackId = [[piece objectAtIndex:1] intValue];
DEBUGLOG(@"ack id found: %d", ackId);
NSString *argsStr = [piece objectAtIndex:3];
id argsData = nil;
if (argsStr && ![argsStr isEqualToString:@""]) {
argsData = [SocketIOJSONSerialization objectFromJSONData:[argsStr dataUsingEncoding:NSUTF8StringEncoding] error:nil];
// either send complete response or only the first arg to callback
if (!_returnAllDataFromAck && [argsData count] > 0) {
argsData = [argsData objectAtIndex:0];
}
}
// get selector for ackId
NSString *key = [NSString stringWithFormat:@"%d", ackId];
SocketIOCallback callbackFunction = [_acks objectForKey:key];
if (callbackFunction != nil) {
callbackFunction(argsData);
[self removeAcknowledgeForKey:key];
}
}
break;
}
case 7: {
DEBUGLOG(@"error");
break;
}
case 8: {
DEBUGLOG(@"noop");
break;
}
default: {
DEBUGLOG(@"command not found or not yet supported");
break;
}
}
packet = nil;
}
else {
DEBUGLOG(@"ERROR: data that has arrived wasn't valid");
}
}
- (void) onDisconnect:(NSError *)error
{
DEBUGLOG(@"onDisconnect()");
BOOL wasConnected = _isConnected;
BOOL wasConnecting = _isConnecting;
_isConnected = NO;
_isConnecting = NO;
_sid = nil;
[_queue removeAllObjects];
// Kill the heartbeat timer
if (_timeout) {
dispatch_source_cancel(_timeout);
_timeout = NULL;
}
// Disconnect the websocket, just in case
if (_transport != nil) {
// clear websocket's delegate - otherwise crashes
_transport.delegate = nil;
[_transport close];
}
if ((wasConnected || wasConnecting)) {
if ([_delegate respondsToSelector:@selector(socketIODidDisconnect:disconnectedWithError:)]) {
[_delegate socketIODidDisconnect:self disconnectedWithError:error];
}
}
}
- (void) onError:(NSError *)error
{
if ([_delegate respondsToSelector:@selector(socketIO:onError:)]) {
[_delegate socketIO:self onError:error];
}
}
# pragma mark -
# pragma mark Handshake callbacks (NSURLConnectionDataDelegate)
- (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
// check for server status code (http://gigliwood.com/weblog/Cocoa/Q__When_is_an_conne.html)
if ([response respondsToSelector:@selector(statusCode)]) {
NSInteger statusCode = [((NSHTTPURLResponse *)response) statusCode];
DEBUGLOG(@"didReceiveResponse() %i", statusCode);
if (statusCode >= 400) {
// stop connecting; no more delegate messages
[connection cancel];
NSString *error = [NSString stringWithFormat:NSLocalizedString(@"Server returned status code %d", @""), statusCode];
NSDictionary *errorInfo = [NSDictionary dictionaryWithObject:error forKey:NSLocalizedDescriptionKey];
NSError *statusError = [NSError errorWithDomain:SocketIOError
code:statusCode
userInfo:errorInfo];
// call error callback manually
[self connection:connection didFailWithError:statusError];
}
}
[_httpRequestData setLength:0];
}
- (void) connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
[_httpRequestData appendData:data];
}
- (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
NSLog(@"ERROR: handshake failed ... %@", [error localizedDescription]);
int errorCode = [error code] == 403 ? SocketIOUnauthorized : SocketIOHandshakeFailed;
_isConnected = NO;
_isConnecting = NO;
if ([_delegate respondsToSelector:@selector(socketIO:onError:)]) {
NSMutableDictionary *errorInfo = [[NSDictionary dictionaryWithObject:error
forKey:NSUnderlyingErrorKey] mutableCopy];
NSError *err = [NSError errorWithDomain:SocketIOError
code:errorCode
userInfo:errorInfo];
[_delegate socketIO:self onError:err];
}
}
- (void) connectionDidFinishLoading:(NSURLConnection *)connection
{
NSString *responseString = [[NSString alloc] initWithData:_httpRequestData encoding:NSASCIIStringEncoding];
DEBUGLOG(@"connectionDidFinishLoading() %@", responseString);
NSArray *data = [responseString componentsSeparatedByString:@":"];
// should be SID : heartbeat timeout : connection timeout : supported transports
// check each returned value (thanks for the input https://github.com/taiyangc)
BOOL connectionFailed = false;
NSError* error;
_sid = [data objectAtIndex:0];
if ([_sid length] < 1 || [data count] < 4) {
// did not receive valid data, possibly missing a useSecure?
connectionFailed = true;
}
else {
// check SID
DEBUGLOG(@"sid: %@", _sid);
NSString *regex = @"[^0-9]";
NSPredicate *regexTest = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", regex];
if ([_sid rangeOfString:@"error"].location != NSNotFound || [regexTest evaluateWithObject:_sid]) {
[self connectToHost:_host onPort:_port withParams:_params withNamespace:_endpoint];
return;
}
// check heartbeat timeout
_heartbeatTimeout = [[data objectAtIndex:1] floatValue];
if (_heartbeatTimeout == 0.0) {
// couldn't find float value -> fail
connectionFailed = true;
}
else {
// add small buffer of 7sec (magic xD) otherwise heartbeat will be too late and connection is closed
_heartbeatTimeout += 7.0;
}
DEBUGLOG(@"heartbeatTimeout: %f", _heartbeatTimeout);
// index 2 => connection timeout
// get transports
NSString *t = [data objectAtIndex:3];
NSArray *transports = [t componentsSeparatedByString:@","];
DEBUGLOG(@"transports: %@", transports);
static Class webSocketTransportClass;
static Class xhrTransportClass;
if (webSocketTransportClass == nil) {
webSocketTransportClass = NSClassFromString(@"SocketIOTransportWebsocket");
}
if (xhrTransportClass == nil) {
xhrTransportClass = NSClassFromString(@"SocketIOTransportXHR");
}
if (webSocketTransportClass != nil && [transports indexOfObject:@"websocket"] != NSNotFound) {
DEBUGLOG(@"websocket supported -> using it now");
_transport = [[webSocketTransportClass alloc] initWithDelegate:self];
}
else if (xhrTransportClass != nil && [transports indexOfObject:@"xhr-polling"] != NSNotFound) {
DEBUGLOG(@"xhr polling supported -> using it now");
_transport = [[xhrTransportClass alloc] initWithDelegate:self];
}
else {
DEBUGLOG(@"no transport found that is supported :( -> fail");
connectionFailed = true;
error = [NSError errorWithDomain:SocketIOError
code:SocketIOTransportsNotSupported
userInfo:nil];
}
}
// if connection didn't return the values we need -> fail
if (connectionFailed) {
// error already set!?
if (error == nil) {
error = [NSError errorWithDomain:SocketIOError
code:SocketIOServerRespondedWithInvalidConnectionData
userInfo:nil];
}
if ([_delegate respondsToSelector:@selector(socketIO:onError:)]) {
[_delegate socketIO:self onError:error];
}
// make sure to do call all cleanup code
[self onDisconnect:error];
return;
}
[_transport open];
}
#if DEBUG_CERTIFICATE
// to deal with self-signed certificates
- (BOOL) connection:(NSURLConnection *)connection
canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace
{
return [protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust];
}
- (void) connection:(NSURLConnection *)connection
didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
{
if ([challenge.protectionSpace.authenticationMethod
isEqualToString:NSURLAuthenticationMethodServerTrust]) {
// we only trust our own domain
if ([challenge.protectionSpace.host isEqualToString:_host]) {
SecTrustRef trust = challenge.protectionSpace.serverTrust;
NSURLCredential *credential = [NSURLCredential credentialForTrust:trust];
[challenge.sender useCredential:credential forAuthenticationChallenge:challenge];
}
}
[challenge.sender continueWithoutCredentialForAuthenticationChallenge:challenge];
}
#endif
# pragma mark -
- (void) dealloc
{
[_handshake cancel];
_handshake = nil;
_host = nil;
_sid = nil;
_endpoint = nil;
_transport.delegate = nil;
_transport = nil;
if (_timeout) {
dispatch_source_cancel(_timeout);
_timeout = NULL;
}
_queue = nil;
_acks = nil;
}
@end