2013-07-10 02:45:36 +02:00
|
|
|
/*
|
|
|
|
* libjingle
|
|
|
|
* Copyright 2013, Google Inc.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
|
|
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import "APPRTCAppClient.h"
|
|
|
|
|
|
|
|
#import <dispatch/dispatch.h>
|
|
|
|
|
|
|
|
#import "GAEChannelClient.h"
|
2013-08-01 20:29:45 +02:00
|
|
|
#import "RTCICEServer.h"
|
2014-03-10 21:41:22 +01:00
|
|
|
#import "APPRTCAppDelegate.h"
|
|
|
|
#import "RTCMediaConstraints.h"
|
2013-07-10 02:45:36 +02:00
|
|
|
|
|
|
|
@interface APPRTCAppClient ()
|
|
|
|
|
2013-08-21 00:16:55 +02:00
|
|
|
@property(nonatomic, strong) dispatch_queue_t backgroundQueue;
|
2013-07-10 02:45:36 +02:00
|
|
|
@property(nonatomic, copy) NSString *baseURL;
|
|
|
|
@property(nonatomic, strong) GAEChannelClient *gaeChannel;
|
|
|
|
@property(nonatomic, copy) NSString *postMessageUrl;
|
|
|
|
@property(nonatomic, copy) NSString *pcConfig;
|
2013-08-01 20:29:45 +02:00
|
|
|
@property(nonatomic, strong) NSMutableString *roomHtml;
|
2013-07-10 02:45:36 +02:00
|
|
|
@property(atomic, strong) NSMutableArray *sendQueue;
|
|
|
|
@property(nonatomic, copy) NSString *token;
|
|
|
|
|
|
|
|
@property(nonatomic, assign) BOOL verboseLogging;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation APPRTCAppClient
|
|
|
|
|
2013-10-29 01:14:15 +01:00
|
|
|
@synthesize ICEServerDelegate = _ICEServerDelegate;
|
|
|
|
@synthesize messageHandler = _messageHandler;
|
|
|
|
|
|
|
|
@synthesize backgroundQueue = _backgroundQueue;
|
|
|
|
@synthesize baseURL = _baseURL;
|
|
|
|
@synthesize gaeChannel = _gaeChannel;
|
|
|
|
@synthesize postMessageUrl = _postMessageUrl;
|
|
|
|
@synthesize pcConfig = _pcConfig;
|
|
|
|
@synthesize roomHtml = _roomHtml;
|
|
|
|
@synthesize sendQueue = _sendQueue;
|
|
|
|
@synthesize token = _token;
|
|
|
|
@synthesize verboseLogging = _verboseLogging;
|
2014-02-10 19:47:11 +01:00
|
|
|
@synthesize initiator = _initiator;
|
2014-03-10 21:41:22 +01:00
|
|
|
@synthesize videoConstraints = _videoConstraints;
|
2013-10-29 01:14:15 +01:00
|
|
|
|
2013-07-10 02:45:36 +02:00
|
|
|
- (id)init {
|
|
|
|
if (self = [super init]) {
|
|
|
|
_backgroundQueue = dispatch_queue_create("RTCBackgroundQueue", NULL);
|
|
|
|
_sendQueue = [NSMutableArray array];
|
|
|
|
// Uncomment to see Request/Response logging.
|
2013-08-01 20:29:45 +02:00
|
|
|
// _verboseLogging = YES;
|
2013-07-10 02:45:36 +02:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark - Public methods
|
|
|
|
|
|
|
|
- (void)connectToRoom:(NSURL *)url {
|
|
|
|
NSURLRequest *request = [self getRequestFromUrl:url];
|
|
|
|
[NSURLConnection connectionWithRequest:request delegate:self];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)sendData:(NSData *)data {
|
|
|
|
@synchronized(self) {
|
|
|
|
[self maybeLogMessage:@"Send message"];
|
|
|
|
[self.sendQueue addObject:[data copy]];
|
|
|
|
}
|
|
|
|
[self requestQueueDrainInBackground];
|
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark - Internal methods
|
|
|
|
|
2013-08-01 20:29:45 +02:00
|
|
|
- (NSString*)findVar:(NSString*)name
|
|
|
|
strippingQuotes:(BOOL)strippingQuotes {
|
|
|
|
NSError* error;
|
|
|
|
NSString* pattern =
|
|
|
|
[NSString stringWithFormat:@".*\n *var %@ = ([^\n]*);\n.*", name];
|
2013-07-10 02:45:36 +02:00
|
|
|
NSRegularExpression *regexp =
|
2013-08-01 20:29:45 +02:00
|
|
|
[NSRegularExpression regularExpressionWithPattern:pattern
|
2013-07-10 02:45:36 +02:00
|
|
|
options:0
|
|
|
|
error:&error];
|
2013-08-01 20:29:45 +02:00
|
|
|
NSAssert(!error, @"Unexpected error compiling regex: ",
|
|
|
|
error.localizedDescription);
|
|
|
|
|
|
|
|
NSRange fullRange = NSMakeRange(0, [self.roomHtml length]);
|
|
|
|
NSArray *matches =
|
|
|
|
[regexp matchesInString:self.roomHtml options:0 range:fullRange];
|
|
|
|
if ([matches count] != 1) {
|
|
|
|
[self showMessage:[NSString stringWithFormat:@"%d matches for %@ in %@",
|
|
|
|
[matches count], name, self.roomHtml]];
|
2013-07-10 02:45:36 +02:00
|
|
|
return nil;
|
|
|
|
}
|
2013-08-01 20:29:45 +02:00
|
|
|
NSRange matchRange = [matches[0] rangeAtIndex:1];
|
|
|
|
NSString* value = [self.roomHtml substringWithRange:matchRange];
|
|
|
|
if (strippingQuotes) {
|
|
|
|
NSAssert([value length] > 2,
|
|
|
|
@"Can't strip quotes from short string: [%@]", value);
|
|
|
|
NSAssert(([value characterAtIndex:0] == '\'' &&
|
|
|
|
[value characterAtIndex:[value length] - 1] == '\''),
|
|
|
|
@"Can't strip quotes from unquoted string: [%@]", value);
|
|
|
|
value = [value substringWithRange:NSMakeRange(1, [value length] - 2)];
|
2013-07-10 02:45:36 +02:00
|
|
|
}
|
2013-08-01 20:29:45 +02:00
|
|
|
return value;
|
2013-07-10 02:45:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
- (NSURLRequest *)getRequestFromUrl:(NSURL *)url {
|
2013-08-01 20:29:45 +02:00
|
|
|
self.roomHtml = [NSMutableString stringWithCapacity:20000];
|
2013-07-10 02:45:36 +02:00
|
|
|
NSString *path =
|
|
|
|
[NSString stringWithFormat:@"https:%@", [url resourceSpecifier]];
|
|
|
|
NSURLRequest *request =
|
|
|
|
[NSURLRequest requestWithURL:[NSURL URLWithString:path]];
|
|
|
|
return request;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)maybeLogMessage:(NSString *)message {
|
|
|
|
if (self.verboseLogging) {
|
|
|
|
NSLog(@"%@", message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)requestQueueDrainInBackground {
|
|
|
|
dispatch_async(self.backgroundQueue, ^(void) {
|
|
|
|
// TODO(hughv): This can block the UI thread. Fix.
|
|
|
|
@synchronized(self) {
|
|
|
|
if ([self.postMessageUrl length] < 1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (NSData *data in self.sendQueue) {
|
|
|
|
NSString *url = [NSString stringWithFormat:@"%@/%@",
|
|
|
|
self.baseURL,
|
|
|
|
self.postMessageUrl];
|
|
|
|
[self sendData:data withUrl:url];
|
|
|
|
}
|
|
|
|
[self.sendQueue removeAllObjects];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)sendData:(NSData *)data withUrl:(NSString *)url {
|
|
|
|
NSMutableURLRequest *request =
|
|
|
|
[NSMutableURLRequest requestWithURL:[NSURL URLWithString:url]];
|
|
|
|
request.HTTPMethod = @"POST";
|
|
|
|
[request setHTTPBody:data];
|
|
|
|
NSURLResponse *response;
|
|
|
|
NSError *error;
|
|
|
|
NSData *responseData = [NSURLConnection sendSynchronousRequest:request
|
|
|
|
returningResponse:&response
|
|
|
|
error:&error];
|
|
|
|
NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response;
|
|
|
|
int status = [httpResponse statusCode];
|
|
|
|
NSAssert(status == 200,
|
|
|
|
@"Bad response [%d] to message: %@\n\n%@",
|
|
|
|
status,
|
|
|
|
[NSString stringWithUTF8String:[data bytes]],
|
|
|
|
[NSString stringWithUTF8String:[responseData bytes]]);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)showMessage:(NSString *)message {
|
|
|
|
NSLog(@"%@", message);
|
|
|
|
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Unable to join"
|
|
|
|
message:message
|
|
|
|
delegate:nil
|
|
|
|
cancelButtonTitle:@"OK"
|
|
|
|
otherButtonTitles:nil];
|
|
|
|
[alertView show];
|
|
|
|
}
|
|
|
|
|
2013-08-01 20:29:45 +02:00
|
|
|
- (void)updateICEServers:(NSMutableArray *)ICEServers
|
2013-07-10 02:45:36 +02:00
|
|
|
withTurnServer:(NSString *)turnServerUrl {
|
|
|
|
if ([turnServerUrl length] < 1) {
|
2013-08-01 20:29:45 +02:00
|
|
|
[self.ICEServerDelegate onICEServers:ICEServers];
|
2013-07-10 02:45:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
dispatch_async(self.backgroundQueue, ^(void) {
|
|
|
|
NSMutableURLRequest *request = [NSMutableURLRequest
|
|
|
|
requestWithURL:[NSURL URLWithString:turnServerUrl]];
|
|
|
|
[request addValue:@"Mozilla/5.0" forHTTPHeaderField:@"user-agent"];
|
|
|
|
[request addValue:@"https://apprtc.appspot.com"
|
|
|
|
forHTTPHeaderField:@"origin"];
|
|
|
|
NSURLResponse *response;
|
|
|
|
NSError *error;
|
|
|
|
NSData *responseData = [NSURLConnection sendSynchronousRequest:request
|
|
|
|
returningResponse:&response
|
|
|
|
error:&error];
|
|
|
|
if (!error) {
|
|
|
|
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:responseData
|
|
|
|
options:0
|
|
|
|
error:&error];
|
|
|
|
NSAssert(!error, @"Unable to parse. %@", error.localizedDescription);
|
|
|
|
NSString *username = json[@"username"];
|
|
|
|
NSString *password = json[@"password"];
|
2013-09-05 23:49:58 +02:00
|
|
|
NSArray* uris = json[@"uris"];
|
|
|
|
for (int i = 0; i < [uris count]; ++i) {
|
|
|
|
NSString *turnServer = [uris objectAtIndex:i];
|
|
|
|
RTCICEServer *ICEServer =
|
|
|
|
[[RTCICEServer alloc] initWithURI:[NSURL URLWithString:turnServer]
|
|
|
|
username:username
|
2013-07-10 02:45:36 +02:00
|
|
|
password:password];
|
2013-09-05 23:49:58 +02:00
|
|
|
NSLog(@"Added ICE Server: %@", ICEServer);
|
|
|
|
[ICEServers addObject:ICEServer];
|
|
|
|
}
|
2013-07-10 02:45:36 +02:00
|
|
|
} else {
|
|
|
|
NSLog(@"Unable to get TURN server. Error: %@", error.description);
|
|
|
|
}
|
|
|
|
|
|
|
|
dispatch_async(dispatch_get_main_queue(), ^(void) {
|
2013-08-01 20:29:45 +02:00
|
|
|
[self.ICEServerDelegate onICEServers:ICEServers];
|
2013-07-10 02:45:36 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark - NSURLConnectionDataDelegate methods
|
|
|
|
|
|
|
|
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
|
|
|
|
NSString *roomHtml = [NSString stringWithUTF8String:[data bytes]];
|
|
|
|
[self maybeLogMessage:
|
|
|
|
[NSString stringWithFormat:@"Received %d chars", [roomHtml length]]];
|
2013-08-01 20:29:45 +02:00
|
|
|
[self.roomHtml appendString:roomHtml];
|
2013-07-10 02:45:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)connection:(NSURLConnection *)connection
|
|
|
|
didReceiveResponse:(NSURLResponse *)response {
|
|
|
|
NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response;
|
|
|
|
int statusCode = [httpResponse statusCode];
|
|
|
|
[self maybeLogMessage:
|
|
|
|
[NSString stringWithFormat:
|
|
|
|
@"Response received\nURL\n%@\nStatus [%d]\nHeaders\n%@",
|
|
|
|
[httpResponse URL],
|
|
|
|
statusCode,
|
|
|
|
[httpResponse allHeaderFields]]];
|
|
|
|
NSAssert(statusCode == 200, @"Invalid response of %d received.", statusCode);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
|
|
|
|
[self maybeLogMessage:[NSString stringWithFormat:@"finished loading %d chars",
|
2013-08-01 20:29:45 +02:00
|
|
|
[self.roomHtml length]]];
|
|
|
|
NSRegularExpression* fullRegex =
|
|
|
|
[NSRegularExpression regularExpressionWithPattern:@"room is full"
|
|
|
|
options:0
|
|
|
|
error:nil];
|
2013-09-05 23:49:58 +02:00
|
|
|
if ([fullRegex
|
|
|
|
numberOfMatchesInString:self.roomHtml
|
|
|
|
options:0
|
|
|
|
range:NSMakeRange(0, [self.roomHtml length])]) {
|
2013-07-10 02:45:36 +02:00
|
|
|
[self showMessage:@"Room full"];
|
2014-03-10 21:41:22 +01:00
|
|
|
APPRTCAppDelegate *ad =
|
|
|
|
(APPRTCAppDelegate *)[[UIApplication sharedApplication] delegate];
|
|
|
|
[ad closeVideoUI];
|
2013-07-10 02:45:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-08-01 20:29:45 +02:00
|
|
|
|
2013-07-10 02:45:36 +02:00
|
|
|
NSString *fullUrl = [[[connection originalRequest] URL] absoluteString];
|
|
|
|
NSRange queryRange = [fullUrl rangeOfString:@"?"];
|
|
|
|
self.baseURL = [fullUrl substringToIndex:queryRange.location];
|
2013-09-05 23:49:58 +02:00
|
|
|
[self maybeLogMessage:
|
|
|
|
[NSString stringWithFormat:@"Base URL: %@", self.baseURL]];
|
2013-07-10 02:45:36 +02:00
|
|
|
|
2014-02-10 19:47:11 +01:00
|
|
|
self.initiator = [[self findVar:@"initiator" strippingQuotes:NO] boolValue];
|
2013-08-01 20:29:45 +02:00
|
|
|
self.token = [self findVar:@"channelToken" strippingQuotes:YES];
|
|
|
|
if (!self.token)
|
2013-07-10 02:45:36 +02:00
|
|
|
return;
|
2013-08-01 20:29:45 +02:00
|
|
|
[self maybeLogMessage:[NSString stringWithFormat:@"Token: %@", self.token]];
|
|
|
|
|
|
|
|
NSString* roomKey = [self findVar:@"roomKey" strippingQuotes:YES];
|
|
|
|
NSString* me = [self findVar:@"me" strippingQuotes:YES];
|
|
|
|
if (!roomKey || !me)
|
2013-07-10 02:45:36 +02:00
|
|
|
return;
|
|
|
|
self.postMessageUrl =
|
2013-08-01 20:29:45 +02:00
|
|
|
[NSString stringWithFormat:@"/message?r=%@&u=%@", roomKey, me];
|
|
|
|
[self maybeLogMessage:[NSString stringWithFormat:@"POST message URL: %@",
|
|
|
|
self.postMessageUrl]];
|
|
|
|
|
|
|
|
NSString* pcConfig = [self findVar:@"pcConfig" strippingQuotes:NO];
|
|
|
|
if (!pcConfig)
|
2013-07-10 02:45:36 +02:00
|
|
|
return;
|
|
|
|
[self maybeLogMessage:
|
2013-08-01 20:29:45 +02:00
|
|
|
[NSString stringWithFormat:@"PC Config JSON: %@", pcConfig]];
|
|
|
|
|
|
|
|
NSString *turnServerUrl = [self findVar:@"turnUrl" strippingQuotes:YES];
|
|
|
|
if (turnServerUrl) {
|
2013-07-10 02:45:36 +02:00
|
|
|
[self maybeLogMessage:
|
2013-08-01 20:29:45 +02:00
|
|
|
[NSString stringWithFormat:@"TURN server request URL: %@",
|
2013-07-10 02:45:36 +02:00
|
|
|
turnServerUrl]];
|
|
|
|
}
|
|
|
|
|
|
|
|
NSError *error;
|
|
|
|
NSData *pcData = [pcConfig dataUsingEncoding:NSUTF8StringEncoding];
|
|
|
|
NSDictionary *json =
|
|
|
|
[NSJSONSerialization JSONObjectWithData:pcData options:0 error:&error];
|
|
|
|
NSAssert(!error, @"Unable to parse. %@", error.localizedDescription);
|
2013-09-05 23:49:58 +02:00
|
|
|
NSArray *servers = [json objectForKey:@"iceServers"];
|
2013-08-01 20:29:45 +02:00
|
|
|
NSMutableArray *ICEServers = [NSMutableArray array];
|
2013-07-10 02:45:36 +02:00
|
|
|
for (NSDictionary *server in servers) {
|
2014-02-26 05:16:02 +01:00
|
|
|
NSString *url = [server objectForKey:@"urls"];
|
2013-09-05 23:49:58 +02:00
|
|
|
NSString *username = json[@"username"];
|
2013-07-10 02:45:36 +02:00
|
|
|
NSString *credential = [server objectForKey:@"credential"];
|
2013-09-05 23:49:58 +02:00
|
|
|
if (!username) {
|
|
|
|
username = @"";
|
|
|
|
}
|
2013-07-10 02:45:36 +02:00
|
|
|
if (!credential) {
|
|
|
|
credential = @"";
|
|
|
|
}
|
|
|
|
[self maybeLogMessage:
|
|
|
|
[NSString stringWithFormat:@"url [%@] - credential [%@]",
|
|
|
|
url,
|
|
|
|
credential]];
|
2013-08-01 20:29:45 +02:00
|
|
|
RTCICEServer *ICEServer =
|
|
|
|
[[RTCICEServer alloc] initWithURI:[NSURL URLWithString:url]
|
2013-09-05 23:49:58 +02:00
|
|
|
username:username
|
2013-07-10 02:45:36 +02:00
|
|
|
password:credential];
|
2013-09-05 23:49:58 +02:00
|
|
|
NSLog(@"Added ICE Server: %@", ICEServer);
|
2013-08-01 20:29:45 +02:00
|
|
|
[ICEServers addObject:ICEServer];
|
2013-07-10 02:45:36 +02:00
|
|
|
}
|
2013-08-01 20:29:45 +02:00
|
|
|
[self updateICEServers:ICEServers withTurnServer:turnServerUrl];
|
2013-07-10 02:45:36 +02:00
|
|
|
|
2014-03-10 21:41:22 +01:00
|
|
|
NSString* mc = [self findVar:@"mediaConstraints" strippingQuotes:NO];
|
|
|
|
if (mc) {
|
|
|
|
error = nil;
|
|
|
|
NSData *mcData = [mc dataUsingEncoding:NSUTF8StringEncoding];
|
|
|
|
json =
|
|
|
|
[NSJSONSerialization JSONObjectWithData:mcData options:0 error:&error];
|
|
|
|
NSAssert(!error, @"Unable to parse. %@", error.localizedDescription);
|
|
|
|
if ([[json objectForKey:@"video"] boolValue]) {
|
|
|
|
self.videoConstraints = [[RTCMediaConstraints alloc] init];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-10 02:45:36 +02:00
|
|
|
[self maybeLogMessage:
|
|
|
|
[NSString stringWithFormat:@"About to open GAE with token: %@",
|
|
|
|
self.token]];
|
|
|
|
self.gaeChannel =
|
|
|
|
[[GAEChannelClient alloc] initWithToken:self.token
|
|
|
|
delegate:self.messageHandler];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|