-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathImmutableWebView.mm
More file actions
428 lines (368 loc) · 16.9 KB
/
Copy pathImmutableWebView.mm
File metadata and controls
428 lines (368 loc) · 16.9 KB
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
/*
* Copyright (C) 2011 Keijiro Takahashi
* Copyright (C) 2012 GREE, Inc.
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
*
* Permission is granted to anyone to use this software for any purpose,
* including commercial applications, and to alter it and redistribute it
* freely, subject to the following restrictions:
*
* 1. The origin of this software must not be misrepresented; you must not
* claim that you wrote the original software. If you use this software
* in a product, an acknowledgment in the product documentation would be
* appreciated but is not required.
* 2. Altered source versions must be plainly marked as such, and must not be
* misrepresented as being the original software.
* 3. This notice may not be removed or altered from any source distribution.
*/
#import <AppKit/AppKit.h>
#import <WebKit/WebKit.h>
#import <AuthenticationServices/AuthenticationServices.h>
extern "C" typedef void (*DelegateCallbackFunction)(const char * key, const char * message);
DelegateCallbackFunction delegateCallback = NULL;
// cf. https://stackoverflow.com/questions/26383031/wkwebview-causes-my-view-controller-to-leak/33365424#33365424
@interface WeakScriptMessageDelegate : NSObject<WKScriptMessageHandler>
@property (nonatomic, weak) id<WKScriptMessageHandler> scriptDelegate;
- (instancetype)initWithDelegate:(id<WKScriptMessageHandler>)scriptDelegate;
@end
@implementation WeakScriptMessageDelegate
- (instancetype)initWithDelegate:(id<WKScriptMessageHandler>)scriptDelegate
{
self = [super init];
if (self) {
_scriptDelegate = scriptDelegate;
}
return self;
}
- (void)userContentController:(WKUserContentController *)userContentController didReceiveScriptMessage:(WKScriptMessage *)message
{
[self.scriptDelegate userContentController:userContentController didReceiveScriptMessage:message];
}
@end
@protocol WebViewProtocol <NSObject>
@property (nullable, nonatomic, weak) id <WKNavigationDelegate> navigationDelegate;
@property (nullable, nonatomic, weak) id <WKUIDelegate> UIDelegate;
@property (nullable, nonatomic, readonly, copy) NSURL *URL;
- (void)stopLoading;
- (void)load:(NSURLRequest *)request;
- (void)evaluateJavaScript:(NSString *)javaScriptString completionHandler:(void (^ __nullable)(__nullable id, NSError * __nullable error))completionHandler;
@end
@interface WKWebView(WebViewProtocolConformed) <WebViewProtocol>
@end
@implementation WKWebView(WebViewProtocolConformed)
- (void)load:(NSURLRequest *)request
{
WKWebView *webView = (WKWebView *)self;
NSURL *url = [request URL];
if ([url.absoluteString hasPrefix:@"file:"]) {
NSString *htmlContent = [NSString stringWithContentsOfFile:url.path encoding:NSUTF8StringEncoding error:nil];
[webView loadHTMLString:htmlContent baseURL:url];
} else {
[webView loadRequest:request];
}
}
@end
@interface CWebViewPlugin : NSObject<WKUIDelegate, WKNavigationDelegate, WKScriptMessageHandler, ASWebAuthenticationPresentationContextProviding>
{
WKWebView *webView;
}
@end
@implementation CWebViewPlugin
static WKProcessPool *_sharedProcessPool;
static NSMutableArray *_instances = [[NSMutableArray alloc] init];
static CWebViewPlugin *__delegate = nil;
static ASWebAuthenticationSession *_authSession;
- (id)initWithUa:(const char *)ua
{
self = [super init];
CGRect frame = CGRectMake(0, 0, 500, 400);
if (_sharedProcessPool == NULL) {
_sharedProcessPool = [[WKProcessPool alloc] init];
}
WKWebViewConfiguration *configuration = [[WKWebViewConfiguration alloc] init];
WKUserContentController *controller = [[WKUserContentController alloc] init];
[controller addScriptMessageHandler:[[WeakScriptMessageDelegate alloc] initWithDelegate:self] name:@"unityControl"];
[controller addScriptMessageHandler:[[WeakScriptMessageDelegate alloc] initWithDelegate:self] name:@"saveDataURL"];
[controller addScriptMessageHandler:[[WeakScriptMessageDelegate alloc] initWithDelegate:self] name:@"logHandler"];
NSString *str = @"\
window.Unity = { \
call: function(msg) { \
window.webkit.messageHandlers.unityControl.postMessage(msg); \
}, \
saveDataURL: function(fileName, dataURL) { \
window.webkit.messageHandlers.saveDataURL.postMessage(fileName + '\t' + dataURL); \
} \
}; \
function captureLog(msg) { window.webkit.messageHandlers.logHandler.postMessage(msg); } window.console.log = captureLog; \
";
WKUserScript *script
= [[WKUserScript alloc] initWithSource:str injectionTime:WKUserScriptInjectionTimeAtDocumentStart forMainFrameOnly:YES];
[controller addUserScript:script];
configuration.userContentController = controller;
configuration.mediaTypesRequiringUserActionForPlayback = WKAudiovisualMediaTypeNone;
configuration.websiteDataStore = [WKWebsiteDataStore defaultDataStore];
configuration.processPool = _sharedProcessPool;
WKWebView *wkwebView = [[WKWebView alloc] initWithFrame:frame configuration:configuration];
#if UNITYWEBVIEW_DEVELOPMENT
[[[webView configuration] preferences] setValue:@YES forKey:@"developerExtrasEnabled"];
// enable Safari debugging if exists
if ([wkwebView respondsToSelector:@selector(setInspectable:)]) {
[wkwebView performSelector:@selector(setInspectable:) withObject:@true];
}
#endif
webView = wkwebView;
webView.UIDelegate = self;
webView.navigationDelegate = self;
webView.hidden = YES;
if (ua != NULL && strcmp(ua, "") != 0) {
((WKWebView *)webView).customUserAgent = [[NSString alloc] initWithUTF8String:ua];
}
return self;
}
- (void)dispose
{
if (webView != nil) {
WKWebView *webView0 = webView;
webView = nil;
if ([webView0 isKindOfClass:[WKWebView class]]) {
webView0.UIDelegate = nil;
webView0.navigationDelegate = nil;
[((WKWebView *)webView0).configuration.userContentController removeScriptMessageHandlerForName:@"saveDataURL"];
[((WKWebView *)webView0).configuration.userContentController removeScriptMessageHandlerForName:@"unityControl"];
[((WKWebView *)webView0).configuration.userContentController removeScriptMessageHandlerForName:@"logHandler"];
}
[webView0 stopLoading];
[webView0 removeFromSuperview];
}
delegateCallback = nil;
}
+ (void)resetSharedProcessPool
{
// cf. https://stackoverflow.com/questions/33156567/getting-all-cookies-from-wkwebview/49744695#49744695
_sharedProcessPool = [[WKProcessPool alloc] init];
[_instances enumerateObjectsUsingBlock:^(CWebViewPlugin *obj, NSUInteger idx, BOOL *stop) {
if ([obj->webView isKindOfClass:[WKWebView class]]) {
WKWebView *webView = (WKWebView *)obj->webView;
webView.configuration.processPool = _sharedProcessPool;
}
}];
}
- (void)userContentController:(WKUserContentController *)userContentController
didReceiveScriptMessage:(WKScriptMessage *)message
{
if ([message.name isEqualToString:@"logHandler"]) {
[self sendUnityCallback:"CallOnLog" message:[[NSString stringWithFormat:@"%@", message.body] UTF8String]];
} else if ([message.name isEqualToString:@"unityControl"]) {
[self sendUnityCallback:"CallFromJS" message:[[NSString stringWithFormat:@"%@", message.body] UTF8String]];
} else if ([message.name isEqualToString:@"saveDataURL"]) {
NSRange range = [message.body rangeOfString:@"\t"];
if (range.location == NSNotFound) {
return;
}
NSString *fileName = [[message.body substringWithRange:NSMakeRange(0, range.location)] lastPathComponent];
NSString *dataURL = [message.body substringFromIndex:(range.location + 1)];
range = [dataURL rangeOfString:@"data:"];
if (range.location != 0) {
return;
}
NSString *tmp = [dataURL substringFromIndex:[@"data:" length]];
range = [tmp rangeOfString:@";"];
if (range.location == NSNotFound) {
return;
}
NSString *base64data = [tmp substringFromIndex:(range.location + 1 + [@"base64," length])];
NSData *data = [[NSData alloc] initWithBase64EncodedString:base64data options:0];
NSString *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
path = [path stringByAppendingString:@"/Downloads"];
BOOL isDir;
NSError *err = nil;
if ([[NSFileManager defaultManager] fileExistsAtPath:path isDirectory:&isDir]) {
if (!isDir) {
return;
}
} else {
[[NSFileManager defaultManager] createDirectoryAtPath:path withIntermediateDirectories:YES attributes:nil error:&err];
if (err != nil) {
return;
}
}
NSString *prefix = [path stringByAppendingString:@"/"];
path = [prefix stringByAppendingString:fileName];
int count = 0;
while ([[NSFileManager defaultManager] fileExistsAtPath:path]) {
count++;
NSString *name = [fileName stringByDeletingPathExtension];
NSString *ext = [fileName pathExtension];
if (ext.length == 0) {
path = [NSString stringWithFormat:@"%@%@ (%d)", prefix, name, count];
} else {
path = [NSString stringWithFormat:@"%@%@ (%d).%@", prefix, name, count, ext];
}
}
[data writeToFile:path atomically:YES];
}
}
- (void)webViewWebContentProcessDidTerminate:(WKWebView *)webView
{
[self sendUnityCallback:"CallOnError" message:"webViewWebContentProcessDidTerminate"];
}
- (void)webView:(WKWebView *)webView didFailProvisionalNavigation:(WKNavigation *)navigation withError:(NSError *)error
{
[self sendUnityCallback:"CallOnError" message:[[error description] UTF8String]];
}
- (void)webView:(WKWebView *)webView didFailNavigation:(WKNavigation *)navigation withError:(NSError *)error
{
[self sendUnityCallback:"CallOnError" message:[[error description] UTF8String]];
}
- (WKWebView *)webView:(WKWebView *)wkWebView createWebViewWithConfiguration:(WKWebViewConfiguration *)configuration forNavigationAction:(WKNavigationAction *)navigationAction windowFeatures:(WKWindowFeatures *)windowFeatures
{
// cf. for target="_blank", cf. http://qiita.com/ShingoFukuyama/items/b3a1441025a36ab7659c
if (!navigationAction.targetFrame.isMainFrame) {
[wkWebView loadRequest:navigationAction.request];
}
return nil;
}
- (void)webView:(WKWebView *)wkWebView decidePolicyForNavigationAction:(WKNavigationAction *)navigationAction decisionHandler:(void (^)(WKNavigationActionPolicy))decisionHandler
{
if (webView == nil) {
decisionHandler(WKNavigationActionPolicyCancel);
return;
}
NSURL *nsurl = [navigationAction.request URL];
NSString *url = [nsurl absoluteString];
if ([url rangeOfString:@"//itunes.apple.com/"].location != NSNotFound) {
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:url]];
decisionHandler(WKNavigationActionPolicyCancel);
return;
} else if ([url hasPrefix:@"unity:"]) {
[self sendUnityCallback:"CallFromJS" message:[[url substringFromIndex:6] UTF8String]];
decisionHandler(WKNavigationActionPolicyCancel);
return;
} else if (![url hasPrefix:@"about:blank"] // for loadHTML(), cf. #365
&& ![url hasPrefix:@"file:"]
&& ![url hasPrefix:@"http:"]
&& ![url hasPrefix:@"https:"]) {
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:url]];
decisionHandler(WKNavigationActionPolicyCancel);
return;
} else if (navigationAction.navigationType == WKNavigationTypeLinkActivated
&& (!navigationAction.targetFrame || !navigationAction.targetFrame.isMainFrame)) {
// cf. for target="_blank", cf. http://qiita.com/ShingoFukuyama/items/b3a1441025a36ab7659c
[webView load:navigationAction.request];
decisionHandler(WKNavigationActionPolicyCancel);
return;
}
[self sendUnityCallback:"CallOnStarted" message:[url UTF8String]];
decisionHandler(WKNavigationActionPolicyAllow);
}
- (void)webView:(WKWebView *)webView decidePolicyForNavigationResponse:(WKNavigationResponse *)navigationResponse decisionHandler:(void (^)(WKNavigationResponsePolicy))decisionHandler {
if ([navigationResponse.response isKindOfClass:[NSHTTPURLResponse class]]) {
NSHTTPURLResponse * response = (NSHTTPURLResponse *)navigationResponse.response;
if (response.statusCode >= 400) {
[self sendUnityCallback:"CallOnHttpError" message:[[NSString stringWithFormat:@"%ld", (long)response.statusCode] UTF8String]];
}
}
decisionHandler(WKNavigationResponsePolicyAllow);
}
- (void)sendUnityCallback:(const char *)key message:(const char *)message {
if (delegateCallback != nil) {
delegateCallback(key, message);
} else {
NSLog(@"delegateCallback is nil, message not sent.");
}
}
- (void)loadURL:(const char *)url
{
if (webView == nil)
return;
WKWebView *_webView = (WKWebView *)webView;
NSString *urlStr = [NSString stringWithUTF8String:url];
NSURL *nsurl = [NSURL URLWithString:urlStr];
NSURLRequest *request = [NSURLRequest requestWithURL:nsurl];
[_webView load:request];
}
- (void)launchAuthURL:(const char *)url redirectUri:(const char *)redirectUri
{
NSURL *URL = [[NSURL alloc] initWithString: [NSString stringWithUTF8String:url]];
// Bundle identifier does not work like iOS, so using callback URL scheme
// from redirect URI instead
NSString *redirectUriString = [[NSString alloc] initWithUTF8String:redirectUri];
NSString *callbackURLScheme = [[redirectUriString componentsSeparatedByString:@":"] objectAtIndex:0];
_authSession = [[ASWebAuthenticationSession alloc] initWithURL:URL callbackURLScheme:callbackURLScheme completionHandler:^(NSURL * _Nullable callbackURL, NSError * _Nullable error) {
_authSession = nil;
if (error != nil && (error.code == 1 || error.code == ASWebAuthenticationSessionErrorCodeCanceledLogin)) {
// Cancelled
[self sendUnityCallback:"CallFromAuthCallbackError" message: ""];
} else if (error != nil) {
[self sendUnityCallback:"CallFromAuthCallbackError" message:error.localizedDescription.UTF8String];
} else {
[self sendUnityCallback:"CallFromAuthCallback" message: callbackURL.absoluteString.UTF8String];
}
}];
_authSession.presentationContextProvider = self;
[_authSession start];
}
- (void)evaluateJS:(const char *)js
{
if (webView == nil)
return;
NSString *jsStr = [NSString stringWithUTF8String:js];
[webView evaluateJavaScript:jsStr completionHandler:^(NSString *result, NSError *error) {}];
}
- (nonnull ASPresentationAnchor)presentationAnchorForWebAuthenticationSession:(nonnull ASWebAuthenticationSession *)session {
if (webView.window != nil) {
return webView.window;
}
return NSApplication.sharedApplication.windows.firstObject;
}
@end
extern "C" {
void *_CImmutableWebViewPlugin_Init(const char *ua);
void _CImmutableWebViewPlugin_Destroy(void *instance);
void _CImmutableWebViewPlugin_LoadURL(void *instance, const char *url);
void _CImmutableWebViewPlugin_EvaluateJS(void *instance, const char *url);
void _CImmutableWebViewPlugin_SetDelegate(DelegateCallbackFunction callback);
void _CImmutableWebViewPlugin_LaunchAuthURL(void *instance, const char *url, const char *redirectUri);
}
void _CImmutableWebViewPlugin_SetDelegate(DelegateCallbackFunction callback) {
delegateCallback = callback;
}
void *_CImmutableWebViewPlugin_Init(const char *ua)
{
CWebViewPlugin *webViewPlugin = [[CWebViewPlugin alloc] initWithUa:ua];
[_instances addObject:webViewPlugin];
return (__bridge_retained void *)webViewPlugin;
}
void _CImmutableWebViewPlugin_Destroy(void *instance)
{
if (instance == NULL)
return;
CWebViewPlugin *webViewPlugin = (__bridge_transfer CWebViewPlugin *)instance;
[_instances removeObject:webViewPlugin];
[webViewPlugin dispose];
webViewPlugin = nil;
}
void _CImmutableWebViewPlugin_LoadURL(void *instance, const char *url)
{
if (instance == NULL)
return;
CWebViewPlugin *webViewPlugin = (__bridge CWebViewPlugin *)instance;
[webViewPlugin loadURL:url];
}
void _CImmutableWebViewPlugin_EvaluateJS(void *instance, const char *js)
{
if (instance == NULL)
return;
CWebViewPlugin *webViewPlugin = (__bridge CWebViewPlugin *)instance;
[webViewPlugin evaluateJS:js];
}
void _CImmutableWebViewPlugin_LaunchAuthURL(void *instance, const char *url, const char *redirectUri)
{
if (instance == NULL)
return;
CWebViewPlugin *webViewPlugin = (__bridge CWebViewPlugin *)instance;
[webViewPlugin launchAuthURL:url redirectUri:redirectUri];
}