Skip to content

Commit 6a391dd

Browse files
committed
feat(ios): add http(s) proxy/scheme
This adds a new URLSchemeHandler which can proxy http(s) requests to external servers. This is useful for some CORS issues and webview bugs that affect the use of cookies in CORS requests via XHR and fetch. For that reason cookies will be synced between proxied requests on the native layer and the webview.
1 parent 0eb8a37 commit 6a391dd

File tree

2 files changed

+80
-19
lines changed

2 files changed

+80
-19
lines changed

src/ios/IONAssetHandler.m

Lines changed: 74 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,68 @@ - (instancetype)initWithBasePath:(NSString *)basePath andScheme:(NSString *)sche
1919

2020
- (void)webView:(WKWebView *)webView startURLSchemeTask:(id <WKURLSchemeTask>)urlSchemeTask
2121
{
22+
Boolean loadFile = true;
2223
NSString * startPath = @"";
2324
NSURL * url = urlSchemeTask.request.URL;
24-
NSString * stringToLoad = url.path;
25+
NSDictionary * header = urlSchemeTask.request.allHTTPHeaderFields;
26+
NSMutableString * stringToLoad = [NSMutableString string];
27+
[stringToLoad appendString:url.path];
2528
NSString * scheme = url.scheme;
29+
NSString * method = urlSchemeTask.request.HTTPMethod;
30+
NSData * body = urlSchemeTask.request.HTTPBody;
31+
NSData * data;
32+
NSInteger statusCode;
2633

2734
if ([scheme isEqualToString:self.scheme]) {
2835
if ([stringToLoad hasPrefix:@"/_app_file_"]) {
2936
startPath = [stringToLoad stringByReplacingOccurrencesOfString:@"/_app_file_" withString:@""];
37+
} else if ([stringToLoad hasPrefix:@"/_http_proxy_"]||[stringToLoad hasPrefix:@"/_https_proxy_"]) {
38+
if(url.query) {
39+
[stringToLoad appendString:@"?"];
40+
[stringToLoad appendString:url.query];
41+
}
42+
loadFile = false;
43+
startPath = [stringToLoad stringByReplacingOccurrencesOfString:@"/_http_proxy_" withString:@"http://"];
44+
startPath = [startPath stringByReplacingOccurrencesOfString:@"/_https_proxy_" withString:@"https://"];
45+
NSURL * requestUrl = [NSURL URLWithString:startPath];
46+
WKWebsiteDataStore* dataStore = [WKWebsiteDataStore defaultDataStore];
47+
WKHTTPCookieStore* cookieStore = dataStore.httpCookieStore;
48+
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
49+
[request setHTTPMethod:method];
50+
[request setURL:requestUrl];
51+
if (body) {
52+
[request setHTTPBody:body];
53+
}
54+
[request setAllHTTPHeaderFields:header];
55+
[request setHTTPShouldHandleCookies:YES];
56+
57+
[[[NSURLSession sharedSession] dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
58+
if(error) {
59+
NSLog(@"Proxy error: %@", error);
60+
}
61+
62+
// set cookies to WKWebView
63+
NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse*)response;
64+
if(httpResponse) {
65+
NSArray* cookies = [NSHTTPCookie cookiesWithResponseHeaderFields:[httpResponse allHeaderFields] forURL:response.URL];
66+
[[NSHTTPCookieStorage sharedHTTPCookieStorage] setCookies:cookies forURL:httpResponse.URL mainDocumentURL:nil];
67+
cookies = [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookies];
68+
69+
for (NSHTTPCookie* c in cookies)
70+
{
71+
dispatch_async(dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^(void){
72+
//running in background thread is necessary because setCookie otherwise fails
73+
dispatch_async(dispatch_get_main_queue(), ^(void){
74+
[cookieStore setCookie:c completionHandler:nil];
75+
});
76+
});
77+
};
78+
}
79+
80+
[urlSchemeTask didReceiveResponse:response];
81+
[urlSchemeTask didReceiveData:data];
82+
[urlSchemeTask didFinish];
83+
}] resume];
3084
} else {
3185
startPath = self.basePath;
3286
if ([stringToLoad isEqualToString:@""] || [url.pathExtension isEqualToString:@""]) {
@@ -37,25 +91,26 @@ - (void)webView:(WKWebView *)webView startURLSchemeTask:(id <WKURLSchemeTask>)ur
3791
}
3892
}
3993

40-
NSData * data = [[NSData alloc] initWithContentsOfFile:startPath];
41-
NSInteger statusCode = 200;
42-
if (!data) {
43-
statusCode = 404;
44-
}
45-
NSURL * localUrl = [NSURL URLWithString:url.absoluteString];
46-
NSString * mimeType = [self getMimeType:url.pathExtension];
47-
id response = nil;
48-
if (data && [self isMediaExtension:url.pathExtension]) {
49-
response = [[NSURLResponse alloc] initWithURL:localUrl MIMEType:mimeType expectedContentLength:data.length textEncodingName:nil];
50-
} else {
51-
NSDictionary * headers = @{ @"Content-Type" : mimeType, @"Cache-Control": @"no-cache"};
52-
response = [[NSHTTPURLResponse alloc] initWithURL:localUrl statusCode:statusCode HTTPVersion:nil headerFields:headers];
94+
if(loadFile) {
95+
data = [[NSData alloc] initWithContentsOfFile:startPath];
96+
statusCode = 200;
97+
if (!data) {
98+
statusCode = 404;
99+
}
100+
NSURL * localUrl = [NSURL URLWithString:url.absoluteString];
101+
NSString * mimeType = [self getMimeType:url.pathExtension];
102+
id response = nil;
103+
if (data && [self isMediaExtension:url.pathExtension]) {
104+
response = [[NSURLResponse alloc] initWithURL:localUrl MIMEType:mimeType expectedContentLength:data.length textEncodingName:nil];
105+
} else {
106+
NSDictionary * headers = @{ @"Content-Type" : mimeType, @"Cache-Control": @"no-cache"};
107+
response = [[NSHTTPURLResponse alloc] initWithURL:localUrl statusCode:statusCode HTTPVersion:nil headerFields:headers];
108+
}
109+
110+
[urlSchemeTask didReceiveResponse:response];
111+
[urlSchemeTask didReceiveData:data];
112+
[urlSchemeTask didFinish];
53113
}
54-
55-
[urlSchemeTask didReceiveResponse:response];
56-
[urlSchemeTask didReceiveData:data];
57-
[urlSchemeTask didFinish];
58-
59114
}
60115

61116
- (void)webView:(nonnull WKWebView *)webView stopURLSchemeTask:(nonnull id<WKURLSchemeTask>)urlSchemeTask

src/www/util.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ var WebView = {
1111
if (url.startsWith('file://')) {
1212
return window.WEBVIEW_SERVER_URL + url.replace('file://', '/_app_file_');
1313
}
14+
if (url.startsWith('http://')) {
15+
return window.WEBVIEW_SERVER_URL + url.replace('http://', '/_http_proxy_');
16+
}
17+
if (url.startsWith('https://')) {
18+
return window.WEBVIEW_SERVER_URL + url.replace('https://', '/_https_proxy_');
19+
}
1420
if (url.startsWith('content://')) {
1521
return window.WEBVIEW_SERVER_URL + url.replace('content:/', '/_app_content_');
1622
}

0 commit comments

Comments
 (0)