forked from tidev/titanium-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTiUIWebViewProxy.m
More file actions
792 lines (649 loc) Β· 22.3 KB
/
TiUIWebViewProxy.m
File metadata and controls
792 lines (649 loc) Β· 22.3 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
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
/**
* Titanium SDK
* Copyright TiDev, Inc. 04/07/2022-Present. All Rights Reserved.
* Licensed under the terms of the Apache Public License
* Please see the LICENSE included with this distribution for details.
*/
#ifdef USE_TI_UIWEBVIEW
@import TitaniumKit.TiBlob;
@import TitaniumKit.TiHost;
@import TitaniumKit.TiUtils;
#import "TiUIWebViewProxy.h"
#import "TiNetworkCookieProxy.h"
#import "TiUIWebView.h"
@implementation TiUIWebViewProxy
static NSArray *webViewKeySequence;
#pragma mark Internal
- (NSArray *)keySequence
{
if (webViewKeySequence == nil) {
webViewKeySequence = [[NSArray arrayWithObjects:@"assetsDirectory", @"url", nil] retain];
}
return webViewKeySequence;
}
- (id)_initWithPageContext:(id<TiEvaluator>)context
{
if (self = [super _initWithPageContext:context]) {
}
return self;
}
- (TiUIWebView *)webView
{
return (TiUIWebView *)self.view;
}
- (void)dealloc
{
RELEASE_TO_NIL(_allowedURLSchemes);
RELEASE_TO_NIL(_genericProperties);
[super dealloc];
}
- (void)fireEvent:(id)listener withObject:(id)obj remove:(BOOL)yn thisObject:(id)thisObject_
{
TiThreadPerformOnMainThread(
^{
[[self webView] fireEvent:listener withObject:obj remove:yn thisObject:thisObject_];
},
NO);
}
- (void)setPageToken:(NSString *)pageToken
{
if (_pageToken != nil) {
[[self host] unregisterContext:(id<TiEvaluator>)self forToken:_pageToken];
_pageToken = nil;
}
_pageToken = pageToken;
[[self host] registerContext:self forToken:_pageToken];
}
- (void)refreshHTMLContent
{
NSString *code = @"document.documentElement.outerHTML.toString()";
// Refresh the "html" property async to be able to use the remote HTML content.
// This should be deprecated asap, since it is an overhead that should be done using
// webView.evalJS() within the app if required.
[[self wkWebView] evaluateJavaScript:code
completionHandler:^(id result, NSError *error) {
if (error != nil) {
return;
}
[self replaceValue:result forKey:@"html" notification:NO];
}];
}
- (void)windowWillClose
{
}
- (void)windowDidClose
{
if (_pageToken != nil) {
[[self host] unregisterContext:(id<TiEvaluator>)self forToken:_pageToken];
_pageToken = nil;
}
[(TiUIWebView *)[self view] viewDidClose];
NSNotification *notification = [NSNotification notificationWithName:kTiContextShutdownNotification object:self];
WARN_IF_BACKGROUND_THREAD_OBJ;
[[NSNotificationCenter defaultCenter] postNotification:notification];
[super windowDidClose];
}
- (void)_destroy
{
if (_pageToken != nil) {
[[self host] unregisterContext:(id<TiEvaluator>)self forToken:_pageToken];
_pageToken = nil;
}
[super _destroy];
}
- (WKWebView *)wkWebView
{
return (WKWebView *)[[self webView] webView];
}
#pragma mark - TiEvaluator Protocol
- (TiHost *)host
{
return [self _host];
}
- (NSString *)basename
{
return nil;
}
- (NSURL *)currentURL
{
return nil;
}
- (void)setCurrentURL:(NSURL *)unused
{
}
- (void)evalFile:(NSString *)path
{
NSURL *url_ = [path hasPrefix:@"file:"] ? [NSURL URLWithString:path] : [NSURL fileURLWithPath:path];
if (![path hasPrefix:@"/"] && ![path hasPrefix:@"file:"]) {
NSURL *root = [[self _host] baseURL];
url_ = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/%@", root, path]];
}
NSString *code = [NSString stringWithContentsOfURL:url_ encoding:NSUTF8StringEncoding error:nil];
[[self wkWebView] evaluateJavaScript:code
completionHandler:^(id _Nullablecresult, NSError *_Nullable error){
}];
}
- (NSString *)evalJSAndWait:(NSString *)code
{
return [self evalJSSync:code];
}
- (void)evalJSWithoutResult:(NSString *)code
{
[self evalJS:code];
}
- (BOOL)evaluationError
{
return NO;
}
- (KrollContext *)krollContext
{
return nil;
}
- (id)krollObjectForProxy:(id)proxy
{
return nil;
}
- (id)preloadForKey:(id)key name:(id)name
{
return nil;
}
- (id)registerProxy:(id)proxy
{
return nil;
}
- (void)unregisterProxy:(id)proxy
{
}
- (BOOL)usesProxy:(id)proxy
{
return NO;
}
#pragma mark - Public APIs
#pragma mark Getters
- (NSNumber *)disableBounce
{
return @(![[[self wkWebView] scrollView] bounces]);
}
- (NSNumber *)scrollsToTop
{
return @([[[self wkWebView] scrollView] scrollsToTop]);
}
- (NSNumber *)allowsBackForwardNavigationGestures
{
return @([[self wkWebView] allowsBackForwardNavigationGestures]);
}
- (NSString *)userAgent
{
return [[self wkWebView] customUserAgent];
}
- (NSString *)url
{
return [[[self wkWebView] URL] absoluteString];
}
- (NSString *)title
{
return [[self wkWebView] title];
}
- (NSNumber *)progress
{
return @([[self wkWebView] estimatedProgress]);
}
- (NSNumber *)secure
{
return @([[self wkWebView] hasOnlySecureContent]);
}
- (NSDictionary *)backForwardList
{
WKBackForwardList *list = [[self wkWebView] backForwardList];
NSMutableArray *backList = [NSMutableArray arrayWithCapacity:list.backList.count];
NSMutableArray *forwardList = [NSMutableArray arrayWithCapacity:list.forwardList.count];
for (WKBackForwardListItem *item in list.backList) {
[backList addObject:[[self class] _dictionaryFromBackForwardItem:item]];
}
for (WKBackForwardListItem *item in list.forwardList) {
[forwardList addObject:[[self class] _dictionaryFromBackForwardItem:item]];
}
return @{
@"currentItem" : [[self class] _dictionaryFromBackForwardItem:[list currentItem]],
@"backItem" : [[self class] _dictionaryFromBackForwardItem:[list backItem]],
@"forwardItem" : [[self class] _dictionaryFromBackForwardItem:[list forwardItem]],
@"backList" : backList,
@"forwardList" : forwardList
};
}
- (NSDictionary *)preferences
{
return @{
@"minimumFontSize" : NUMFLOAT([[[[self wkWebView] configuration] preferences] minimumFontSize]),
@"javaScriptEnabled" : NUMBOOL([[[[self wkWebView] configuration] preferences] javaScriptEnabled]),
@"javaScriptCanOpenWindowsAutomatically" : NUMBOOL([[[[self wkWebView] configuration] preferences] javaScriptCanOpenWindowsAutomatically]),
};
}
- (NSNumber *)selectionGranularity
{
return @([[[self wkWebView] configuration] selectionGranularity]);
}
- (NSNumber *)mediaTypesRequiringUserActionForPlayback
{
return @([[[self wkWebView] configuration] mediaTypesRequiringUserActionForPlayback]);
}
- (NSNumber *)suppressesIncrementalRendering
{
return @([[[self wkWebView] configuration] suppressesIncrementalRendering]);
}
- (NSNumber *)allowsInlineMediaPlayback
{
return @([[[self wkWebView] configuration] allowsInlineMediaPlayback]);
}
- (NSNumber *)allowsAirPlayMediaPlayback
{
return @([[[self wkWebView] configuration] allowsAirPlayForMediaPlayback]);
}
- (NSNumber *)allowsPictureInPictureMediaPlayback
{
return @([[[self wkWebView] configuration] allowsPictureInPictureMediaPlayback]);
}
- (NSArray<NSString *> *)allowedURLSchemes
{
return _allowedURLSchemes;
}
- (NSNumber *)zoomLevel
{
if ([TiUtils isIOSVersionOrGreater:@"14.0"]) {
return @([self wkWebView].pageZoom);
}
NSString *zoomLevel = [self evalJS:@[ @"document.body.style.zoom" ]];
if (zoomLevel == nil || zoomLevel.length == 0) {
return @(1.0);
}
return @([zoomLevel doubleValue]);
}
#pragma mark Setter
- (void)setAllowedURLSchemes:(NSArray *)schemes
{
RELEASE_TO_NIL(_allowedURLSchemes);
for (id scheme in schemes) {
ENSURE_TYPE(scheme, NSString);
}
_allowedURLSchemes = [[NSArray arrayWithArray:schemes] retain];
}
- (void)setBasicAuthentication:(id)value
{
// This was a regression between 7.x and 8.0.0. It should be removed in later versions
if ([value isKindOfClass:[NSDictionary class]]) {
NSLog(@"[WARN] Please pass the basicAuthentication parameters as function arguments, e.g. \"webView.setBasicAuthentication(username, password, persistence)\"");
[self replaceValue:value forKey:@"basicAuthentication" notification:NO];
return;
}
NSString *username = value[0];
NSString *password = value[1];
NSURLCredentialPersistence persistence = NSURLCredentialPersistenceNone;
if ([value count] == 3) {
persistence = [TiUtils intValue:value[2] def:NSURLCredentialPersistenceNone];
}
NSDictionary *params = @{ @"username" : username,
@"password" : password,
@"persistence" : @(persistence) };
[self replaceValue:params forKey:@"basicAuthentication" notification:NO];
}
- (void)setHtml:(id)args
{
[[self webView] setHtml_:args];
}
#pragma mark Methods
- (void)addUserScript:(id)args
{
ENSURE_SINGLE_ARG(args, NSDictionary);
NSString *source = [TiUtils stringValue:@"source" properties:args];
WKUserScriptInjectionTime injectionTime = [TiUtils intValue:@"injectionTime" properties:args def:WKUserScriptInjectionTimeAtDocumentStart];
BOOL mainFrameOnly = [TiUtils boolValue:@"mainFrameOnly" properties:args];
WKUserScript *script = [[WKUserScript alloc] initWithSource:source injectionTime:injectionTime forMainFrameOnly:mainFrameOnly];
WKUserContentController *controller = [[[self wkWebView] configuration] userContentController];
[controller addUserScript:script];
}
- (void)removeAllUserScripts:(id)unused
{
WKUserContentController *controller = [[[self wkWebView] configuration] userContentController];
[controller removeAllUserScripts];
}
- (void)addScriptMessageHandler:(id)value
{
ENSURE_SINGLE_ARG(value, NSString);
WKUserContentController *controller = [[[self wkWebView] configuration] userContentController];
// Enable web pages to use unified API for both Android and iOS as:
// window.tisdk.emit('handlerName', JSON.stringify(body));
[controller addUserScript:[[self webView] userScriptForMessageHandlerParity]];
[controller addScriptMessageHandler:[self webView] name:value];
}
- (void)removeScriptMessageHandler:(id)value
{
ENSURE_SINGLE_ARG(value, NSString);
WKUserContentController *controller = [[[self wkWebView] configuration] userContentController];
[controller removeScriptMessageHandlerForName:value];
}
- (void)stopLoading:(id)unused
{
[[self wkWebView] stopLoading];
}
- (void)reload:(id)unused
{
TiThreadPerformOnMainThread(
^{
[[self webView] reload];
},
NO);
}
- (void)repaint:(id)unused
{
[self contentsWillChange];
}
- (void)goBack:(id)unused
{
[[self wkWebView] goBack];
}
- (void)findString:(id)args
{
NSString *searchString = [args objectAtIndex:0];
ENSURE_STRING(searchString);
KrollCallback *callback;
NSDictionary *options = nil;
if ([args count] > 2) {
options = [args objectAtIndex:1];
ENSURE_DICT(options);
callback = [args objectAtIndex:2];
} else {
callback = [args objectAtIndex:1];
}
ENSURE_TYPE(callback, KrollCallback);
if (![TiUtils isIOSVersionOrGreater:@"14.0"]) {
[callback call:@[ @{ @"success" : NUMBOOL(NO), @"error" : @"Supported on iOS 14+" } ] thisObject:self];
return;
}
WKFindConfiguration *configuration = [[WKFindConfiguration alloc] init];
configuration.backwards = [TiUtils boolValue:@"backwards" properties:options def:NO];
configuration.caseSensitive = [TiUtils boolValue:@"caseSensitive" properties:options def:NO];
configuration.wraps = [TiUtils boolValue:@"wraps" properties:options def:YES];
[[self wkWebView] findString:searchString
withConfiguration:configuration
completionHandler:^(WKFindResult *_Nonnull result) {
[callback call:@[ @{ @"success" : NUMBOOL(result.matchFound) } ] thisObject:self];
}];
}
- (void)createPDF:(id)args
{
KrollCallback *callback = (KrollCallback *)[args objectAtIndex:0];
ENSURE_TYPE(callback, KrollCallback);
if (![TiUtils isIOSVersionOrGreater:@"14.0"]) {
[callback call:@[ @{ @"success" : NUMBOOL(NO), @"error" : @"Supported on iOS 14+" } ] thisObject:self];
return;
}
[[self wkWebView] createPDFWithConfiguration:nil
completionHandler:^(NSData *_Nullable pdfDocumentData, NSError *_Nullable error) {
if (error != nil) {
[callback call:@[ @{ @"success" : NUMBOOL(NO), @"error" : error.localizedDescription } ] thisObject:self];
return;
}
TiBlob *blob = [[[TiBlob alloc] initWithData:pdfDocumentData mimetype:@"application/pdf"] autorelease];
[callback call:@[ @{ @"success" : NUMBOOL(YES), @"data" : blob } ] thisObject:self];
}];
}
- (void)createWebArchive:(id)args
{
KrollCallback *callback = (KrollCallback *)[args objectAtIndex:0];
ENSURE_TYPE(callback, KrollCallback);
if (![TiUtils isIOSVersionOrGreater:@"14.0"]) {
[callback call:@[ @{ @"success" : NUMBOOL(NO), @"error" : @"Supported on iOS 14+" } ] thisObject:self];
return;
}
[[self wkWebView] createWebArchiveDataWithCompletionHandler:^(NSData *_Nonnull archiveData, NSError *_Nonnull error) {
if (error != nil) {
[callback call:@[ @{ @"success" : NUMBOOL(NO), @"error" : error.localizedDescription } ] thisObject:self];
return;
}
TiBlob *blob = [[[TiBlob alloc] initWithData:archiveData mimetype:@"application/x-webarchive"] autorelease];
[callback call:@[ @{ @"success" : NUMBOOL(YES), @"data" : blob } ] thisObject:self];
}];
}
- (void)goForward:(id)unused
{
[[self wkWebView] goForward];
}
- (NSNumber *)canGoBack:(id)unused
{
return NUMBOOL([[self wkWebView] canGoBack]);
}
- (NSNumber *)canGoForward:(id)unused
{
return NUMBOOL([[self wkWebView] canGoForward]);
}
- (NSNumber *)loading
{
return @([[self wkWebView] isLoading]);
}
- (void)startListeningToProperties:(id)args
{
ENSURE_SINGLE_ARG(args, NSArray);
if (_genericProperties == nil) {
_genericProperties = [[NSMutableArray alloc] init];
}
for (id property in args) {
ENSURE_TYPE(property, NSString);
[_genericProperties addObject:property];
[[self wkWebView] addObserver:self forKeyPath:property options:NSKeyValueObservingOptionNew context:NULL];
}
}
- (void)stopListeningToProperties:(id)args
{
ENSURE_SINGLE_ARG(args, NSArray);
for (id property in args) {
ENSURE_TYPE(property, NSString);
[[self wkWebView] removeObserver:self forKeyPath:property];
[_genericProperties removeObject:property];
}
}
- (id)evalJS:(id)args
{
NSString *code = nil;
KrollCallback *callback = nil;
ENSURE_ARG_AT_INDEX(code, args, 0, NSString);
ENSURE_ARG_OR_NIL_AT_INDEX(callback, args, 1, KrollCallback);
if (code == nil) {
[self throwException:@"Missing JavaScript code"
subreason:@"The required first argument is missinf and should contain a valid JavaScript string."
location:CODELOCATION];
return nil;
}
// If no argument is passed, return in sync (NOT recommended)
if (callback == nil) {
__block id result = nil;
TiThreadPerformOnMainThread(
^{
result = [[self evalJSSync:@[ code ]] retain];
},
YES);
return [result autorelease];
}
TiThreadPerformOnMainThread(
^{
[[self wkWebView] evaluateJavaScript:code
completionHandler:^(id result, NSError *error) {
if (!callback) {
return;
}
result = result ?: [NSNull null];
[callback call:@[ result ] thisObject:self];
}];
},
NO);
return nil;
}
- (NSString *)evalJSSync:(id)args
{
NSString *code = nil;
__block NSString *resultString = nil;
__block BOOL finishedEvaluation = NO;
ENSURE_ARG_AT_INDEX(code, args, 0, NSString);
[[self wkWebView] evaluateJavaScript:code
completionHandler:^(id result, NSError *error) {
resultString = [NULL_IF_NIL(result) retain];
finishedEvaluation = YES;
}];
while (!finishedEvaluation) {
[[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
}
return [resultString autorelease];
}
- (void)takeSnapshot:(id)args
{
KrollCallback *callback = (KrollCallback *)[args objectAtIndex:0];
ENSURE_TYPE(callback, KrollCallback);
[[self wkWebView] takeSnapshotWithConfiguration:nil
completionHandler:^(UIImage *snapshotImage, NSError *error) {
if (error != nil) {
[callback call:@[ @{ @"success" : NUMBOOL(NO), @"error" : error.localizedDescription } ] thisObject:self];
return;
}
[callback call:@[ @{ @"success" : NUMBOOL(YES), @"snapshot" : [[TiBlob alloc] initWithImage:snapshotImage] } ] thisObject:self];
}];
}
#pragma mark Utilities
+ (NSDictionary *)_dictionaryFromBackForwardItem:(WKBackForwardListItem *)item
{
if (item == nil) {
return @{};
}
return @{ @"url" : item.URL.absoluteString, @"initialUrl" : item.initialURL.absoluteString, @"title" : item.title };
}
#pragma mark Generic KVO
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
for (NSString *property in _genericProperties) {
if ([self _hasListeners:property] && [keyPath isEqualToString:property] && object == [self wkWebView]) {
[self fireEvent:property withObject:@{ @"value" : NULL_IF_NIL([[self wkWebView] valueForKey:property]) }];
return;
}
}
}
#pragma mark Cookies
// This whole cookie code is not getting used. Reason is -
// 1. If we use this, parity can not be managed for cookies
// 2. WKHTTPCookieStore, which manages cookie in WKWebView, is supported in iOS 11+
// 3. We are using following to implement cookies-
// https://stackoverflow.com/questions/26573137
// https://github.com/haifengkao/YWebView
// TO DO: If we can make parity using WKHTTPCookieStore, we should start using WKHTTPCookieStore APIs
- (id<TiEvaluator>)evaluationContext
{
id<TiEvaluator> context = [self executionContext];
if (context == nil) {
context = [self pageContext];
}
return context;
}
- (NSArray *)getHTTPCookiesForDomain:(id)args
{
ENSURE_SINGLE_ARG(args, NSString);
__block NSMutableArray *returnArray = [NSMutableArray array];
__block BOOL finishedEvaluation = NO;
WKHTTPCookieStore *storage = [[[[(TiUIWebView *)[self view] webView] configuration] websiteDataStore] httpCookieStore];
[storage getAllCookies:^(NSArray<NSHTTPCookie *> *cookies) {
NSMutableArray *allCookies = [NSMutableArray array];
for (NSHTTPCookie *cookie in cookies) {
if ([[cookie domain] isEqualToString:args]) {
[allCookies addObject:cookie];
}
}
for (NSHTTPCookie *cookie in allCookies) {
[returnArray addObject:[[[TiNetworkCookieProxy alloc] initWithCookie:cookie andPageContext:[self evaluationContext]] autorelease]];
}
finishedEvaluation = YES;
}];
while (!finishedEvaluation) {
[[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
}
return returnArray;
}
- (void)addHTTPCookie:(id)args
{
ENSURE_SINGLE_ARG(args, TiNetworkCookieProxy);
WKHTTPCookieStore *storage = [[[[(TiUIWebView *)[self view] webView] configuration] websiteDataStore] httpCookieStore];
NSHTTPCookie *cookie = [args newCookie];
if (cookie != nil) {
[storage setCookie:cookie completionHandler:nil];
}
RELEASE_TO_NIL(cookie);
}
- (NSArray *)getHTTPCookies:(id)args
{
NSString *domain = [TiUtils stringValue:[args objectAtIndex:0]];
NSString *path = [TiUtils stringValue:[args objectAtIndex:1]];
NSString *name = [TiUtils stringValue:[args objectAtIndex:2]];
if (path == nil || [path isEqual:@""]) {
path = @"/";
}
__block NSMutableArray *returnArray = [NSMutableArray array];
__block BOOL finishedEvaluation = NO;
WKHTTPCookieStore *storage = [[[[(TiUIWebView *)[self view] webView] configuration] websiteDataStore] httpCookieStore];
[storage getAllCookies:^(NSArray<NSHTTPCookie *> *cookies) {
for (NSHTTPCookie *cookie in cookies) {
if ([[cookie domain] isEqualToString:domain] &&
[[cookie path] isEqualToString:path] && ([[cookie name] isEqualToString:name] || name == nil)) {
TiNetworkCookieProxy *tempCookieProxy = [[TiNetworkCookieProxy alloc] initWithCookie:cookie andPageContext:[self evaluationContext]];
[returnArray addObject:tempCookieProxy];
RELEASE_TO_NIL(tempCookieProxy);
}
}
finishedEvaluation = YES;
}];
while (!finishedEvaluation) {
[[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
}
return returnArray;
}
- (void)removeAllHTTPCookies:(id)args
{
WKHTTPCookieStore *storage = [[[[(TiUIWebView *)[self view] webView] configuration] websiteDataStore] httpCookieStore];
[storage getAllCookies:^(NSArray<NSHTTPCookie *> *cookies) {
for (NSHTTPCookie *cookie in cookies) {
[storage deleteCookie:cookie completionHandler:nil];
}
}];
}
- (void)removeHTTPCookie:(id)args
{
NSArray *cookies = [self getHTTPCookies:args];
WKHTTPCookieStore *storage = [[[[(TiUIWebView *)[self view] webView] configuration] websiteDataStore] httpCookieStore];
for (TiNetworkCookieProxy *cookie in cookies) {
NSHTTPCookie *tempCookie = [cookie newCookie];
[storage deleteCookie:tempCookie completionHandler:nil];
RELEASE_TO_NIL(tempCookie);
}
}
- (void)removeHTTPCookiesForDomain:(id)args
{
NSArray *cookies = [self getHTTPCookiesForDomain:args];
WKHTTPCookieStore *storage = [[[[(TiUIWebView *)[self view] webView] configuration] websiteDataStore] httpCookieStore];
for (TiNetworkCookieProxy *cookie in cookies) {
NSHTTPCookie *tempCookie = [cookie newCookie];
[storage deleteCookie:tempCookie completionHandler:nil];
RELEASE_TO_NIL(tempCookie);
}
}
- (NSArray *)allHTTPCookies
{
__block NSMutableArray *returnArray = [NSMutableArray array];
__block BOOL finishedEvaluation = NO;
WKHTTPCookieStore *storage = [[[[(TiUIWebView *)[self view] webView] configuration] websiteDataStore] httpCookieStore];
[storage getAllCookies:^(NSArray<NSHTTPCookie *> *cookies) {
for (NSHTTPCookie *cookie in cookies) {
[returnArray addObject:[[[TiNetworkCookieProxy alloc] initWithCookie:cookie andPageContext:[self evaluationContext]] autorelease]];
}
finishedEvaluation = YES;
}];
while (!finishedEvaluation) {
[[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
}
return returnArray;
}
@end
#endif