blob: 9126f67c70abdcab4da161be4b6268ba20e1e7d4 [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001/*
2 * libjingle
3 * Copyright 2013, Google Inc.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 * 3. The name of the author may not be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
19 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#import "GAEChannelClient.h"
29
30#import "RTCPeerConnectionFactory.h"
31
32@interface GAEChannelClient ()
33
34@property(nonatomic, assign) id<GAEMessageHandler> delegate;
35@property(nonatomic, strong) UIWebView *webView;
36
37@end
38
39@implementation GAEChannelClient
40
41- (id)initWithToken:(NSString *)token delegate:(id<GAEMessageHandler>)delegate {
42 self = [super init];
43 if (self) {
44 _webView = [[UIWebView alloc] init];
45 _webView.delegate = self;
46 _delegate = delegate;
47 NSString *htmlPath =
48 [[NSBundle mainBundle] pathForResource:@"ios_channel" ofType:@"html"];
49 NSURL *htmlUrl = [NSURL fileURLWithPath:htmlPath];
50 NSString *path = [NSString stringWithFormat:@"%@?token=%@",
51 [htmlUrl absoluteString],
52 token];
53
54 [_webView
55 loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:path]]];
56 }
57 return self;
58}
59
60- (void)dealloc {
61 _webView.delegate = nil;
62 [_webView stopLoading];
63}
64
65#pragma mark - UIWebViewDelegate method
66
67- (BOOL)webView:(UIWebView *)webView
68 shouldStartLoadWithRequest:(NSURLRequest *)request
69 navigationType:(UIWebViewNavigationType)navigationType {
70 NSString *scheme = [request.URL scheme];
71 if ([scheme compare:@"js-frame"] != NSOrderedSame) {
72 return YES;
73 }
74 NSString *resourceSpecifier = [request.URL resourceSpecifier];
75 NSRange range = [resourceSpecifier rangeOfString:@":"];
76 NSString *method;
77 NSString *message;
78 if (range.length == 0 && range.location == NSNotFound) {
79 method = resourceSpecifier;
80 } else {
81 method = [resourceSpecifier substringToIndex:range.location];
82 message = [resourceSpecifier substringFromIndex:range.location + 1];
83 }
84 dispatch_async(dispatch_get_main_queue(), ^(void) {
85 if ([method compare:@"onopen"] == NSOrderedSame) {
86 [self.delegate onOpen];
87 } else if ([method compare:@"onmessage"] == NSOrderedSame) {
88 [self.delegate onMessage:message];
89 } else if ([method compare:@"onclose"] == NSOrderedSame) {
90 [self.delegate onClose];
91 } else if ([method compare:@"onerror"] == NSOrderedSame) {
92 // TODO(hughv): Get error.
93 int code = -1;
94 NSString *description = message;
95 [self.delegate onError:code withDescription:description];
96 } else {
97 NSAssert(NO, @"Invalid message sent from UIWebView: %@",
98 resourceSpecifier);
99 }
100 });
101 return YES;
102}
103
104@end