No Description

RNCWebView.m 52KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395
  1. /**
  2. * Copyright (c) 2015-present, Facebook, Inc.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. */
  7. #import "RNCWebView.h"
  8. #import <React/RCTConvert.h>
  9. #import <React/RCTAutoInsetsProtocol.h>
  10. #import "RNCWKProcessPoolManager.h"
  11. #if !TARGET_OS_OSX
  12. #import <UIKit/UIKit.h>
  13. #else
  14. #import <React/RCTUIKit.h>
  15. #endif // !TARGET_OS_OSX
  16. #import "objc/runtime.h"
  17. static NSTimer *keyboardTimer;
  18. static NSString *const HistoryShimName = @"ReactNativeHistoryShim";
  19. static NSString *const MessageHandlerName = @"ReactNativeWebView";
  20. static NSURLCredential* clientAuthenticationCredential;
  21. static NSDictionary* customCertificatesForHost;
  22. #if !TARGET_OS_OSX
  23. // runtime trick to remove WKWebView keyboard default toolbar
  24. // see: http://stackoverflow.com/questions/19033292/ios-7-uiwebview-keyboard-issue/19042279#19042279
  25. @interface _SwizzleHelperWK : UIView
  26. @property (nonatomic, copy) WKWebView *webView;
  27. @end
  28. @implementation _SwizzleHelperWK
  29. -(id)inputAccessoryView
  30. {
  31. if (_webView == nil) {
  32. return nil;
  33. }
  34. if ([_webView respondsToSelector:@selector(inputAssistantItem)]) {
  35. UITextInputAssistantItem *inputAssistantItem = [_webView inputAssistantItem];
  36. inputAssistantItem.leadingBarButtonGroups = @[];
  37. inputAssistantItem.trailingBarButtonGroups = @[];
  38. }
  39. return nil;
  40. }
  41. @end
  42. #endif // !TARGET_OS_OSX
  43. #if TARGET_OS_OSX
  44. @interface RNCWKWebView : WKWebView
  45. @end
  46. @implementation RNCWKWebView
  47. - (void)scrollWheel:(NSEvent *)theEvent {
  48. RNCWebView *rncWebView = (RNCWebView *)[self superview];
  49. RCTAssert([rncWebView isKindOfClass:[rncWebView class]], @"superview must be an RNCWebView");
  50. if (![rncWebView scrollEnabled]) {
  51. [[self nextResponder] scrollWheel:theEvent];
  52. return;
  53. }
  54. [super scrollWheel:theEvent];
  55. }
  56. @end
  57. #endif // TARGET_OS_OSX
  58. @interface RNCWebView () <WKUIDelegate, WKNavigationDelegate, WKScriptMessageHandler,
  59. #if !TARGET_OS_OSX
  60. UIScrollViewDelegate,
  61. #endif // !TARGET_OS_OSX
  62. RCTAutoInsetsProtocol>
  63. @property (nonatomic, copy) RCTDirectEventBlock onFileDownload;
  64. @property (nonatomic, copy) RCTDirectEventBlock onLoadingStart;
  65. @property (nonatomic, copy) RCTDirectEventBlock onLoadingFinish;
  66. @property (nonatomic, copy) RCTDirectEventBlock onLoadingError;
  67. @property (nonatomic, copy) RCTDirectEventBlock onLoadingProgress;
  68. @property (nonatomic, copy) RCTDirectEventBlock onShouldStartLoadWithRequest;
  69. @property (nonatomic, copy) RCTDirectEventBlock onHttpError;
  70. @property (nonatomic, copy) RCTDirectEventBlock onMessage;
  71. @property (nonatomic, copy) RCTDirectEventBlock onScroll;
  72. @property (nonatomic, copy) RCTDirectEventBlock onContentProcessDidTerminate;
  73. #if !TARGET_OS_OSX
  74. @property (nonatomic, copy) WKWebView *webView;
  75. #else
  76. @property (nonatomic, copy) RNCWKWebView *webView;
  77. #endif // !TARGET_OS_OSX
  78. @property (nonatomic, strong) WKUserScript *postMessageScript;
  79. @property (nonatomic, strong) WKUserScript *atStartScript;
  80. @property (nonatomic, strong) WKUserScript *atEndScript;
  81. @end
  82. @implementation RNCWebView
  83. {
  84. #if !TARGET_OS_OSX
  85. UIColor * _savedBackgroundColor;
  86. #else
  87. RCTUIColor * _savedBackgroundColor;
  88. #endif // !TARGET_OS_OSX
  89. BOOL _savedHideKeyboardAccessoryView;
  90. BOOL _savedKeyboardDisplayRequiresUserAction;
  91. // Workaround for StatusBar appearance bug for iOS 12
  92. // https://github.com/react-native-community/react-native-webview/issues/62
  93. BOOL _isFullScreenVideoOpen;
  94. #if !TARGET_OS_OSX
  95. UIStatusBarStyle _savedStatusBarStyle;
  96. #endif // !TARGET_OS_OSX
  97. BOOL _savedStatusBarHidden;
  98. #if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 110000 /* __IPHONE_11_0 */
  99. UIScrollViewContentInsetAdjustmentBehavior _savedContentInsetAdjustmentBehavior;
  100. #endif
  101. }
  102. - (instancetype)initWithFrame:(CGRect)frame
  103. {
  104. if ((self = [super initWithFrame:frame])) {
  105. #if !TARGET_OS_OSX
  106. super.backgroundColor = [UIColor clearColor];
  107. #else
  108. super.backgroundColor = [RCTUIColor clearColor];
  109. #endif // !TARGET_OS_OSX
  110. _bounces = YES;
  111. _scrollEnabled = YES;
  112. _showsHorizontalScrollIndicator = YES;
  113. _showsVerticalScrollIndicator = YES;
  114. _directionalLockEnabled = YES;
  115. _automaticallyAdjustContentInsets = YES;
  116. _autoManageStatusBarEnabled = YES;
  117. _contentInset = UIEdgeInsetsZero;
  118. _savedKeyboardDisplayRequiresUserAction = YES;
  119. #if !TARGET_OS_OSX
  120. _savedStatusBarStyle = RCTSharedApplication().statusBarStyle;
  121. _savedStatusBarHidden = RCTSharedApplication().statusBarHidden;
  122. #endif // !TARGET_OS_OSX
  123. _injectedJavaScript = nil;
  124. _injectedJavaScriptForMainFrameOnly = YES;
  125. _injectedJavaScriptBeforeContentLoaded = nil;
  126. _injectedJavaScriptBeforeContentLoadedForMainFrameOnly = YES;
  127. #if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 110000 /* __IPHONE_11_0 */
  128. _savedContentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
  129. #endif
  130. }
  131. #if !TARGET_OS_OSX
  132. [[NSNotificationCenter defaultCenter]addObserver:self
  133. selector:@selector(appDidBecomeActive)
  134. name:UIApplicationDidBecomeActiveNotification
  135. object:nil];
  136. [[NSNotificationCenter defaultCenter]addObserver:self
  137. selector:@selector(appWillResignActive)
  138. name:UIApplicationWillResignActiveNotification
  139. object:nil];
  140. if (@available(iOS 12.0, *)) {
  141. // Workaround for a keyboard dismissal bug present in iOS 12
  142. // https://openradar.appspot.com/radar?id=5018321736957952
  143. [[NSNotificationCenter defaultCenter]
  144. addObserver:self
  145. selector:@selector(keyboardWillHide)
  146. name:UIKeyboardWillHideNotification object:nil];
  147. [[NSNotificationCenter defaultCenter]
  148. addObserver:self
  149. selector:@selector(keyboardWillShow)
  150. name:UIKeyboardWillShowNotification object:nil];
  151. // Workaround for StatusBar appearance bug for iOS 12
  152. // https://github.com/react-native-community/react-native-webview/issues/62
  153. [[NSNotificationCenter defaultCenter] addObserver:self
  154. selector:@selector(showFullScreenVideoStatusBars)
  155. name:UIWindowDidBecomeVisibleNotification
  156. object:nil];
  157. [[NSNotificationCenter defaultCenter] addObserver:self
  158. selector:@selector(hideFullScreenVideoStatusBars)
  159. name:UIWindowDidBecomeHiddenNotification
  160. object:nil];
  161. }
  162. #endif // !TARGET_OS_OSX
  163. return self;
  164. }
  165. - (void)dealloc
  166. {
  167. [[NSNotificationCenter defaultCenter] removeObserver:self];
  168. }
  169. /**
  170. * See https://stackoverflow.com/questions/25713069/why-is-wkwebview-not-opening-links-with-target-blank/25853806#25853806 for details.
  171. */
  172. - (WKWebView *)webView:(WKWebView *)webView createWebViewWithConfiguration:(WKWebViewConfiguration *)configuration forNavigationAction:(WKNavigationAction *)navigationAction windowFeatures:(WKWindowFeatures *)windowFeatures
  173. {
  174. if (!navigationAction.targetFrame.isMainFrame) {
  175. [webView loadRequest:navigationAction.request];
  176. }
  177. return nil;
  178. }
  179. - (WKWebViewConfiguration *)setUpWkWebViewConfig
  180. {
  181. WKWebViewConfiguration *wkWebViewConfig = [WKWebViewConfiguration new];
  182. WKPreferences *prefs = [[WKPreferences alloc]init];
  183. BOOL _prefsUsed = NO;
  184. if (!_javaScriptEnabled) {
  185. prefs.javaScriptEnabled = NO;
  186. _prefsUsed = YES;
  187. }
  188. if (_allowFileAccessFromFileURLs) {
  189. [prefs setValue:@TRUE forKey:@"allowFileAccessFromFileURLs"];
  190. _prefsUsed = YES;
  191. }
  192. if (_javaScriptCanOpenWindowsAutomatically) {
  193. [prefs setValue:@TRUE forKey:@"javaScriptCanOpenWindowsAutomatically"];
  194. _prefsUsed = YES;
  195. }
  196. if (_prefsUsed) {
  197. wkWebViewConfig.preferences = prefs;
  198. }
  199. if (_incognito) {
  200. wkWebViewConfig.websiteDataStore = [WKWebsiteDataStore nonPersistentDataStore];
  201. } else if (_cacheEnabled) {
  202. wkWebViewConfig.websiteDataStore = [WKWebsiteDataStore defaultDataStore];
  203. }
  204. if(self.useSharedProcessPool) {
  205. wkWebViewConfig.processPool = [[RNCWKProcessPoolManager sharedManager] sharedProcessPool];
  206. }
  207. wkWebViewConfig.userContentController = [WKUserContentController new];
  208. #if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000 /* iOS 13 */
  209. if (@available(iOS 13.0, *)) {
  210. WKWebpagePreferences *pagePrefs = [[WKWebpagePreferences alloc]init];
  211. pagePrefs.preferredContentMode = _contentMode;
  212. wkWebViewConfig.defaultWebpagePreferences = pagePrefs;
  213. }
  214. #endif
  215. #if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 140000 /* iOS 14 */
  216. if (@available(iOS 14.0, *)) {
  217. if (_limitsNavigationsToAppBoundDomains) {
  218. wkWebViewConfig.limitsNavigationsToAppBoundDomains = YES;
  219. }
  220. }
  221. #endif
  222. // Shim the HTML5 history API:
  223. [wkWebViewConfig.userContentController addScriptMessageHandler:[[RNCWeakScriptMessageDelegate alloc] initWithDelegate:self]
  224. name:HistoryShimName];
  225. [self resetupScripts:wkWebViewConfig];
  226. #if !TARGET_OS_OSX
  227. wkWebViewConfig.allowsInlineMediaPlayback = _allowsInlineMediaPlayback;
  228. #if WEBKIT_IOS_10_APIS_AVAILABLE
  229. wkWebViewConfig.mediaTypesRequiringUserActionForPlayback = _mediaPlaybackRequiresUserAction
  230. ? WKAudiovisualMediaTypeAll
  231. : WKAudiovisualMediaTypeNone;
  232. wkWebViewConfig.dataDetectorTypes = _dataDetectorTypes;
  233. #else
  234. wkWebViewConfig.mediaPlaybackRequiresUserAction = _mediaPlaybackRequiresUserAction;
  235. #endif
  236. #endif // !TARGET_OS_OSX
  237. if (_applicationNameForUserAgent) {
  238. wkWebViewConfig.applicationNameForUserAgent = [NSString stringWithFormat:@"%@ %@", wkWebViewConfig.applicationNameForUserAgent, _applicationNameForUserAgent];
  239. }
  240. return wkWebViewConfig;
  241. }
  242. - (void)didMoveToWindow
  243. {
  244. if (self.window != nil && _webView == nil) {
  245. WKWebViewConfiguration *wkWebViewConfig = [self setUpWkWebViewConfig];
  246. #if !TARGET_OS_OSX
  247. _webView = [[WKWebView alloc] initWithFrame:self.bounds configuration: wkWebViewConfig];
  248. #else
  249. _webView = [[RNCWKWebView alloc] initWithFrame:self.bounds configuration: wkWebViewConfig];
  250. #endif // !TARGET_OS_OSX
  251. [self setBackgroundColor: _savedBackgroundColor];
  252. #if !TARGET_OS_OSX
  253. _webView.scrollView.delegate = self;
  254. #endif // !TARGET_OS_OSX
  255. _webView.UIDelegate = self;
  256. _webView.navigationDelegate = self;
  257. #if !TARGET_OS_OSX
  258. if (_pullToRefreshEnabled) {
  259. [self addPullToRefreshControl];
  260. }
  261. _webView.scrollView.scrollEnabled = _scrollEnabled;
  262. _webView.scrollView.pagingEnabled = _pagingEnabled;
  263. //For UIRefreshControl to work correctly, the bounces should always be true
  264. _webView.scrollView.bounces = _pullToRefreshEnabled || _bounces;
  265. _webView.scrollView.showsHorizontalScrollIndicator = _showsHorizontalScrollIndicator;
  266. _webView.scrollView.showsVerticalScrollIndicator = _showsVerticalScrollIndicator;
  267. _webView.scrollView.directionalLockEnabled = _directionalLockEnabled;
  268. #endif // !TARGET_OS_OSX
  269. _webView.allowsLinkPreview = _allowsLinkPreview;
  270. [_webView addObserver:self forKeyPath:@"estimatedProgress" options:NSKeyValueObservingOptionOld | NSKeyValueObservingOptionNew context:nil];
  271. _webView.allowsBackForwardNavigationGestures = _allowsBackForwardNavigationGestures;
  272. if (_userAgent) {
  273. _webView.customUserAgent = _userAgent;
  274. }
  275. #if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 110000 /* __IPHONE_11_0 */
  276. if ([_webView.scrollView respondsToSelector:@selector(setContentInsetAdjustmentBehavior:)]) {
  277. _webView.scrollView.contentInsetAdjustmentBehavior = _savedContentInsetAdjustmentBehavior;
  278. }
  279. #endif
  280. [self addSubview:_webView];
  281. [self setHideKeyboardAccessoryView: _savedHideKeyboardAccessoryView];
  282. [self setKeyboardDisplayRequiresUserAction: _savedKeyboardDisplayRequiresUserAction];
  283. [self visitSource];
  284. }
  285. }
  286. // Update webview property when the component prop changes.
  287. - (void)setAllowsBackForwardNavigationGestures:(BOOL)allowsBackForwardNavigationGestures {
  288. _allowsBackForwardNavigationGestures = allowsBackForwardNavigationGestures;
  289. _webView.allowsBackForwardNavigationGestures = _allowsBackForwardNavigationGestures;
  290. }
  291. - (void)removeFromSuperview
  292. {
  293. if (_webView) {
  294. [_webView.configuration.userContentController removeScriptMessageHandlerForName:MessageHandlerName];
  295. [_webView removeObserver:self forKeyPath:@"estimatedProgress"];
  296. [_webView removeFromSuperview];
  297. #if !TARGET_OS_OSX
  298. _webView.scrollView.delegate = nil;
  299. #endif // !TARGET_OS_OSX
  300. _webView = nil;
  301. if (_onContentProcessDidTerminate) {
  302. NSMutableDictionary<NSString *, id> *event = [self baseEvent];
  303. _onContentProcessDidTerminate(event);
  304. }
  305. }
  306. [super removeFromSuperview];
  307. }
  308. #if !TARGET_OS_OSX
  309. -(void)showFullScreenVideoStatusBars
  310. {
  311. #pragma clang diagnostic ignored "-Wdeprecated-declarations"
  312. if (!_autoManageStatusBarEnabled) {
  313. return;
  314. }
  315. _isFullScreenVideoOpen = YES;
  316. RCTUnsafeExecuteOnMainQueueSync(^{
  317. [RCTSharedApplication() setStatusBarStyle:self->_savedStatusBarStyle animated:YES];
  318. });
  319. #pragma clang diagnostic pop
  320. }
  321. -(void)hideFullScreenVideoStatusBars
  322. {
  323. #pragma clang diagnostic ignored "-Wdeprecated-declarations"
  324. if (!_autoManageStatusBarEnabled) {
  325. return;
  326. }
  327. _isFullScreenVideoOpen = NO;
  328. RCTUnsafeExecuteOnMainQueueSync(^{
  329. [RCTSharedApplication() setStatusBarHidden:self->_savedStatusBarHidden animated:YES];
  330. [RCTSharedApplication() setStatusBarStyle:self->_savedStatusBarStyle animated:YES];
  331. });
  332. #pragma clang diagnostic pop
  333. }
  334. -(void)keyboardWillHide
  335. {
  336. keyboardTimer = [NSTimer scheduledTimerWithTimeInterval:0 target:self selector:@selector(keyboardDisplacementFix) userInfo:nil repeats:false];
  337. [[NSRunLoop mainRunLoop] addTimer:keyboardTimer forMode:NSRunLoopCommonModes];
  338. }
  339. -(void)keyboardWillShow
  340. {
  341. if (keyboardTimer != nil) {
  342. [keyboardTimer invalidate];
  343. }
  344. }
  345. -(void)keyboardDisplacementFix
  346. {
  347. // Additional viewport checks to prevent unintentional scrolls
  348. UIScrollView *scrollView = self.webView.scrollView;
  349. double maxContentOffset = scrollView.contentSize.height - scrollView.frame.size.height;
  350. if (maxContentOffset < 0) {
  351. maxContentOffset = 0;
  352. }
  353. if (scrollView.contentOffset.y > maxContentOffset) {
  354. // https://stackoverflow.com/a/9637807/824966
  355. [UIView animateWithDuration:.25 animations:^{
  356. scrollView.contentOffset = CGPointMake(0, maxContentOffset);
  357. }];
  358. }
  359. }
  360. #endif // !TARGET_OS_OSX
  361. - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSKeyValueChangeKey,id> *)change context:(void *)context{
  362. if ([keyPath isEqual:@"estimatedProgress"] && object == self.webView) {
  363. if(_onLoadingProgress){
  364. NSMutableDictionary<NSString *, id> *event = [self baseEvent];
  365. [event addEntriesFromDictionary:@{@"progress":[NSNumber numberWithDouble:self.webView.estimatedProgress]}];
  366. _onLoadingProgress(event);
  367. }
  368. }else{
  369. [super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
  370. }
  371. }
  372. #if !TARGET_OS_OSX
  373. - (void)setBackgroundColor:(UIColor *)backgroundColor
  374. #else
  375. - (void)setBackgroundColor:(RCTUIColor *)backgroundColor
  376. #endif // !TARGET_OS_OSX
  377. {
  378. _savedBackgroundColor = backgroundColor;
  379. if (_webView == nil) {
  380. return;
  381. }
  382. CGFloat alpha = CGColorGetAlpha(backgroundColor.CGColor);
  383. BOOL opaque = (alpha == 1.0);
  384. #if !TARGET_OS_OSX
  385. self.opaque = _webView.opaque = opaque;
  386. _webView.scrollView.backgroundColor = backgroundColor;
  387. _webView.backgroundColor = backgroundColor;
  388. #else
  389. // https://stackoverflow.com/questions/40007753/macos-wkwebview-background-transparency
  390. NSOperatingSystemVersion version = { 10, 12, 0 };
  391. if ([[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion:version]) {
  392. [_webView setValue:@(opaque) forKey: @"drawsBackground"];
  393. } else {
  394. [_webView setValue:@(!opaque) forKey: @"drawsTransparentBackground"];
  395. }
  396. #endif // !TARGET_OS_OSX
  397. }
  398. #if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 110000 /* __IPHONE_11_0 */
  399. - (void)setContentInsetAdjustmentBehavior:(UIScrollViewContentInsetAdjustmentBehavior)behavior
  400. {
  401. _savedContentInsetAdjustmentBehavior = behavior;
  402. if (_webView == nil) {
  403. return;
  404. }
  405. if ([_webView.scrollView respondsToSelector:@selector(setContentInsetAdjustmentBehavior:)]) {
  406. CGPoint contentOffset = _webView.scrollView.contentOffset;
  407. _webView.scrollView.contentInsetAdjustmentBehavior = behavior;
  408. _webView.scrollView.contentOffset = contentOffset;
  409. }
  410. }
  411. #endif
  412. /**
  413. * This method is called whenever JavaScript running within the web view calls:
  414. * - window.webkit.messageHandlers[MessageHandlerName].postMessage
  415. */
  416. - (void)userContentController:(WKUserContentController *)userContentController
  417. didReceiveScriptMessage:(WKScriptMessage *)message
  418. {
  419. if ([message.name isEqualToString:HistoryShimName]) {
  420. if (_onLoadingFinish) {
  421. NSMutableDictionary<NSString *, id> *event = [self baseEvent];
  422. [event addEntriesFromDictionary: @{@"navigationType": message.body}];
  423. _onLoadingFinish(event);
  424. }
  425. } else if ([message.name isEqualToString:MessageHandlerName]) {
  426. if (_onMessage) {
  427. NSMutableDictionary<NSString *, id> *event = [self baseEvent];
  428. [event addEntriesFromDictionary: @{@"data": message.body}];
  429. _onMessage(event);
  430. }
  431. }
  432. }
  433. - (void)setSource:(NSDictionary *)source
  434. {
  435. if (![_source isEqualToDictionary:source]) {
  436. _source = [source copy];
  437. if (_webView != nil) {
  438. [self visitSource];
  439. }
  440. }
  441. }
  442. - (void)setAllowingReadAccessToURL:(NSString *)allowingReadAccessToURL
  443. {
  444. if (![_allowingReadAccessToURL isEqualToString:allowingReadAccessToURL]) {
  445. _allowingReadAccessToURL = [allowingReadAccessToURL copy];
  446. if (_webView != nil) {
  447. [self visitSource];
  448. }
  449. }
  450. }
  451. #if !TARGET_OS_OSX
  452. - (void)setContentInset:(UIEdgeInsets)contentInset
  453. {
  454. _contentInset = contentInset;
  455. [RCTView autoAdjustInsetsForView:self
  456. withScrollView:_webView.scrollView
  457. updateOffset:NO];
  458. }
  459. - (void)refreshContentInset
  460. {
  461. [RCTView autoAdjustInsetsForView:self
  462. withScrollView:_webView.scrollView
  463. updateOffset:YES];
  464. }
  465. #endif // !TARGET_OS_OSX
  466. - (void)visitSource
  467. {
  468. // Check for a static html source first
  469. NSString *html = [RCTConvert NSString:_source[@"html"]];
  470. if (html) {
  471. NSURL *baseURL = [RCTConvert NSURL:_source[@"baseUrl"]];
  472. if (!baseURL) {
  473. baseURL = [NSURL URLWithString:@"about:blank"];
  474. }
  475. [_webView loadHTMLString:html baseURL:baseURL];
  476. return;
  477. }
  478. NSURLRequest *request = [self requestForSource:_source];
  479. // Because of the way React works, as pages redirect, we actually end up
  480. // passing the redirect urls back here, so we ignore them if trying to load
  481. // the same url. We'll expose a call to 'reload' to allow a user to load
  482. // the existing page.
  483. if ([request.URL isEqual:_webView.URL]) {
  484. return;
  485. }
  486. if (!request.URL) {
  487. // Clear the webview
  488. [_webView loadHTMLString:@"" baseURL:nil];
  489. return;
  490. }
  491. if (request.URL.host) {
  492. [_webView loadRequest:request];
  493. }
  494. else {
  495. NSURL* readAccessUrl = _allowingReadAccessToURL ? [RCTConvert NSURL:_allowingReadAccessToURL] : request.URL;
  496. [_webView loadFileURL:request.URL allowingReadAccessToURL:readAccessUrl];
  497. }
  498. }
  499. #if !TARGET_OS_OSX
  500. -(void)setKeyboardDisplayRequiresUserAction:(BOOL)keyboardDisplayRequiresUserAction
  501. {
  502. if (_webView == nil) {
  503. _savedKeyboardDisplayRequiresUserAction = keyboardDisplayRequiresUserAction;
  504. return;
  505. }
  506. if (_savedKeyboardDisplayRequiresUserAction == true) {
  507. return;
  508. }
  509. UIView* subview;
  510. for (UIView* view in _webView.scrollView.subviews) {
  511. if([[view.class description] hasPrefix:@"WK"])
  512. subview = view;
  513. }
  514. if(subview == nil) return;
  515. Class class = subview.class;
  516. NSOperatingSystemVersion iOS_11_3_0 = (NSOperatingSystemVersion){11, 3, 0};
  517. NSOperatingSystemVersion iOS_12_2_0 = (NSOperatingSystemVersion){12, 2, 0};
  518. NSOperatingSystemVersion iOS_13_0_0 = (NSOperatingSystemVersion){13, 0, 0};
  519. Method method;
  520. IMP override;
  521. if ([[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion: iOS_13_0_0]) {
  522. // iOS 13.0.0 - Future
  523. SEL selector = sel_getUid("_elementDidFocus:userIsInteracting:blurPreviousNode:activityStateChanges:userObject:");
  524. method = class_getInstanceMethod(class, selector);
  525. IMP original = method_getImplementation(method);
  526. override = imp_implementationWithBlock(^void(id me, void* arg0, BOOL arg1, BOOL arg2, BOOL arg3, id arg4) {
  527. ((void (*)(id, SEL, void*, BOOL, BOOL, BOOL, id))original)(me, selector, arg0, TRUE, arg2, arg3, arg4);
  528. });
  529. }
  530. else if ([[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion: iOS_12_2_0]) {
  531. // iOS 12.2.0 - iOS 13.0.0
  532. SEL selector = sel_getUid("_elementDidFocus:userIsInteracting:blurPreviousNode:changingActivityState:userObject:");
  533. method = class_getInstanceMethod(class, selector);
  534. IMP original = method_getImplementation(method);
  535. override = imp_implementationWithBlock(^void(id me, void* arg0, BOOL arg1, BOOL arg2, BOOL arg3, id arg4) {
  536. ((void (*)(id, SEL, void*, BOOL, BOOL, BOOL, id))original)(me, selector, arg0, TRUE, arg2, arg3, arg4);
  537. });
  538. }
  539. else if ([[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion: iOS_11_3_0]) {
  540. // iOS 11.3.0 - 12.2.0
  541. SEL selector = sel_getUid("_startAssistingNode:userIsInteracting:blurPreviousNode:changingActivityState:userObject:");
  542. method = class_getInstanceMethod(class, selector);
  543. IMP original = method_getImplementation(method);
  544. override = imp_implementationWithBlock(^void(id me, void* arg0, BOOL arg1, BOOL arg2, BOOL arg3, id arg4) {
  545. ((void (*)(id, SEL, void*, BOOL, BOOL, BOOL, id))original)(me, selector, arg0, TRUE, arg2, arg3, arg4);
  546. });
  547. } else {
  548. // iOS 9.0 - 11.3.0
  549. SEL selector = sel_getUid("_startAssistingNode:userIsInteracting:blurPreviousNode:userObject:");
  550. method = class_getInstanceMethod(class, selector);
  551. IMP original = method_getImplementation(method);
  552. override = imp_implementationWithBlock(^void(id me, void* arg0, BOOL arg1, BOOL arg2, id arg3) {
  553. ((void (*)(id, SEL, void*, BOOL, BOOL, id))original)(me, selector, arg0, TRUE, arg2, arg3);
  554. });
  555. }
  556. method_setImplementation(method, override);
  557. }
  558. -(void)setHideKeyboardAccessoryView:(BOOL)hideKeyboardAccessoryView
  559. {
  560. if (_webView == nil) {
  561. _savedHideKeyboardAccessoryView = hideKeyboardAccessoryView;
  562. return;
  563. }
  564. if (_savedHideKeyboardAccessoryView == false) {
  565. return;
  566. }
  567. UIView* subview;
  568. for (UIView* view in _webView.scrollView.subviews) {
  569. if([[view.class description] hasPrefix:@"WK"])
  570. subview = view;
  571. }
  572. if(subview == nil) return;
  573. NSString* name = [NSString stringWithFormat:@"%@_SwizzleHelperWK", subview.class.superclass];
  574. Class newClass = NSClassFromString(name);
  575. if(newClass == nil)
  576. {
  577. newClass = objc_allocateClassPair(subview.class, [name cStringUsingEncoding:NSASCIIStringEncoding], 0);
  578. if(!newClass) return;
  579. Method method = class_getInstanceMethod([_SwizzleHelperWK class], @selector(inputAccessoryView));
  580. class_addMethod(newClass, @selector(inputAccessoryView), method_getImplementation(method), method_getTypeEncoding(method));
  581. objc_registerClassPair(newClass);
  582. }
  583. object_setClass(subview, newClass);
  584. }
  585. // UIScrollViewDelegate method
  586. - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
  587. {
  588. scrollView.decelerationRate = _decelerationRate;
  589. }
  590. #endif // !TARGET_OS_OSX
  591. - (void)setScrollEnabled:(BOOL)scrollEnabled
  592. {
  593. _scrollEnabled = scrollEnabled;
  594. #if !TARGET_OS_OSX
  595. _webView.scrollView.scrollEnabled = scrollEnabled;
  596. #endif // !TARGET_OS_OSX
  597. }
  598. #if !TARGET_OS_OSX
  599. // UIScrollViewDelegate method
  600. - (void)scrollViewDidScroll:(UIScrollView *)scrollView
  601. {
  602. // Don't allow scrolling the scrollView.
  603. if (!_scrollEnabled) {
  604. scrollView.bounds = _webView.bounds;
  605. }
  606. else if (_onScroll != nil) {
  607. NSDictionary *event = @{
  608. @"contentOffset": @{
  609. @"x": @(scrollView.contentOffset.x),
  610. @"y": @(scrollView.contentOffset.y)
  611. },
  612. @"contentInset": @{
  613. @"top": @(scrollView.contentInset.top),
  614. @"left": @(scrollView.contentInset.left),
  615. @"bottom": @(scrollView.contentInset.bottom),
  616. @"right": @(scrollView.contentInset.right)
  617. },
  618. @"contentSize": @{
  619. @"width": @(scrollView.contentSize.width),
  620. @"height": @(scrollView.contentSize.height)
  621. },
  622. @"layoutMeasurement": @{
  623. @"width": @(scrollView.frame.size.width),
  624. @"height": @(scrollView.frame.size.height)
  625. },
  626. @"zoomScale": @(scrollView.zoomScale ?: 1),
  627. };
  628. _onScroll(event);
  629. }
  630. }
  631. - (void)setDirectionalLockEnabled:(BOOL)directionalLockEnabled
  632. {
  633. _directionalLockEnabled = directionalLockEnabled;
  634. _webView.scrollView.directionalLockEnabled = directionalLockEnabled;
  635. }
  636. - (void)setShowsHorizontalScrollIndicator:(BOOL)showsHorizontalScrollIndicator
  637. {
  638. _showsHorizontalScrollIndicator = showsHorizontalScrollIndicator;
  639. _webView.scrollView.showsHorizontalScrollIndicator = showsHorizontalScrollIndicator;
  640. }
  641. - (void)setShowsVerticalScrollIndicator:(BOOL)showsVerticalScrollIndicator
  642. {
  643. _showsVerticalScrollIndicator = showsVerticalScrollIndicator;
  644. _webView.scrollView.showsVerticalScrollIndicator = showsVerticalScrollIndicator;
  645. }
  646. #endif // !TARGET_OS_OSX
  647. - (void)postMessage:(NSString *)message
  648. {
  649. NSDictionary *eventInitDict = @{@"data": message};
  650. NSString *source = [NSString
  651. stringWithFormat:@"window.dispatchEvent(new MessageEvent('message', %@));",
  652. RCTJSONStringify(eventInitDict, NULL)
  653. ];
  654. [self injectJavaScript: source];
  655. }
  656. - (void)layoutSubviews
  657. {
  658. [super layoutSubviews];
  659. // Ensure webview takes the position and dimensions of RNCWebView
  660. _webView.frame = self.bounds;
  661. #if !TARGET_OS_OSX
  662. _webView.scrollView.contentInset = _contentInset;
  663. #endif // !TARGET_OS_OSX
  664. }
  665. - (NSMutableDictionary<NSString *, id> *)baseEvent
  666. {
  667. NSDictionary *event = @{
  668. @"url": _webView.URL.absoluteString ?: @"",
  669. @"title": _webView.title ?: @"",
  670. @"loading" : @(_webView.loading),
  671. @"canGoBack": @(_webView.canGoBack),
  672. @"canGoForward" : @(_webView.canGoForward)
  673. };
  674. return [[NSMutableDictionary alloc] initWithDictionary: event];
  675. }
  676. + (void)setClientAuthenticationCredential:(nullable NSURLCredential*)credential {
  677. clientAuthenticationCredential = credential;
  678. }
  679. + (void)setCustomCertificatesForHost:(nullable NSDictionary*)certificates {
  680. customCertificatesForHost = certificates;
  681. }
  682. - (void) webView:(WKWebView *)webView
  683. didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
  684. completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential * _Nullable))completionHandler
  685. {
  686. NSString* host = nil;
  687. if (webView.URL != nil) {
  688. host = webView.URL.host;
  689. }
  690. if ([[challenge protectionSpace] authenticationMethod] == NSURLAuthenticationMethodClientCertificate) {
  691. completionHandler(NSURLSessionAuthChallengeUseCredential, clientAuthenticationCredential);
  692. return;
  693. }
  694. if ([[challenge protectionSpace] serverTrust] != nil && customCertificatesForHost != nil && host != nil) {
  695. SecCertificateRef localCertificate = (__bridge SecCertificateRef)([customCertificatesForHost objectForKey:host]);
  696. if (localCertificate != nil) {
  697. NSData *localCertificateData = (NSData*) CFBridgingRelease(SecCertificateCopyData(localCertificate));
  698. SecTrustRef trust = [[challenge protectionSpace] serverTrust];
  699. long count = SecTrustGetCertificateCount(trust);
  700. for (long i = 0; i < count; i++) {
  701. SecCertificateRef serverCertificate = SecTrustGetCertificateAtIndex(trust, i);
  702. if (serverCertificate == nil) { continue; }
  703. NSData *serverCertificateData = (NSData *) CFBridgingRelease(SecCertificateCopyData(serverCertificate));
  704. if ([serverCertificateData isEqualToData:localCertificateData]) {
  705. NSURLCredential *useCredential = [NSURLCredential credentialForTrust:trust];
  706. if (challenge.sender != nil) {
  707. [challenge.sender useCredential:useCredential forAuthenticationChallenge:challenge];
  708. }
  709. completionHandler(NSURLSessionAuthChallengeUseCredential, useCredential);
  710. return;
  711. }
  712. }
  713. }
  714. }
  715. completionHandler(NSURLSessionAuthChallengePerformDefaultHandling, nil);
  716. }
  717. #pragma mark - WKNavigationDelegate methods
  718. /**
  719. * alert
  720. */
  721. - (void)webView:(WKWebView *)webView runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(void))completionHandler
  722. {
  723. #if !TARGET_OS_OSX
  724. UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"" message:message preferredStyle:UIAlertControllerStyleAlert];
  725. [alert addAction:[UIAlertAction actionWithTitle:@"Ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  726. completionHandler();
  727. }]];
  728. [[self topViewController] presentViewController:alert animated:YES completion:NULL];
  729. #else
  730. NSAlert *alert = [[NSAlert alloc] init];
  731. [alert setMessageText:message];
  732. [alert beginSheetModalForWindow:[NSApp keyWindow] completionHandler:^(__unused NSModalResponse response){
  733. completionHandler();
  734. }];
  735. #endif // !TARGET_OS_OSX
  736. }
  737. /**
  738. * confirm
  739. */
  740. - (void)webView:(WKWebView *)webView runJavaScriptConfirmPanelWithMessage:(NSString *)message initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(BOOL))completionHandler{
  741. #if !TARGET_OS_OSX
  742. UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"" message:message preferredStyle:UIAlertControllerStyleAlert];
  743. [alert addAction:[UIAlertAction actionWithTitle:@"Ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  744. completionHandler(YES);
  745. }]];
  746. [alert addAction:[UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  747. completionHandler(NO);
  748. }]];
  749. [[self topViewController] presentViewController:alert animated:YES completion:NULL];
  750. #else
  751. NSAlert *alert = [[NSAlert alloc] init];
  752. [alert setMessageText:message];
  753. [alert addButtonWithTitle:NSLocalizedString(@"OK", @"OK button")];
  754. [alert addButtonWithTitle:NSLocalizedString(@"Cancel", @"Cancel button")];
  755. void (^callbacksHandlers)(NSModalResponse response) = ^void(NSModalResponse response) {
  756. completionHandler(response == NSAlertFirstButtonReturn);
  757. };
  758. [alert beginSheetModalForWindow:[NSApp keyWindow] completionHandler:callbacksHandlers];
  759. #endif // !TARGET_OS_OSX
  760. }
  761. /**
  762. * prompt
  763. */
  764. - (void)webView:(WKWebView *)webView runJavaScriptTextInputPanelWithPrompt:(NSString *)prompt defaultText:(NSString *)defaultText initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(NSString *))completionHandler{
  765. #if !TARGET_OS_OSX
  766. UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"" message:prompt preferredStyle:UIAlertControllerStyleAlert];
  767. [alert addTextFieldWithConfigurationHandler:^(UITextField *textField) {
  768. textField.text = defaultText;
  769. }];
  770. UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"Ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  771. completionHandler([[alert.textFields lastObject] text]);
  772. }];
  773. [alert addAction:okAction];
  774. UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  775. completionHandler(nil);
  776. }];
  777. [alert addAction:cancelAction];
  778. alert.preferredAction = okAction;
  779. [[self topViewController] presentViewController:alert animated:YES completion:NULL];
  780. #else
  781. NSAlert *alert = [[NSAlert alloc] init];
  782. [alert setMessageText:prompt];
  783. const NSRect RCTSingleTextFieldFrame = NSMakeRect(0.0, 0.0, 275.0, 22.0);
  784. NSTextField *textField = [[NSTextField alloc] initWithFrame:RCTSingleTextFieldFrame];
  785. textField.cell.scrollable = YES;
  786. if (@available(macOS 10.11, *)) {
  787. textField.maximumNumberOfLines = 1;
  788. }
  789. textField.stringValue = defaultText;
  790. [alert setAccessoryView:textField];
  791. [alert addButtonWithTitle:NSLocalizedString(@"OK", @"OK button")];
  792. [alert addButtonWithTitle:NSLocalizedString(@"Cancel", @"Cancel button")];
  793. [alert beginSheetModalForWindow:[NSApp keyWindow] completionHandler:^(NSModalResponse response) {
  794. if (response == NSAlertFirstButtonReturn) {
  795. completionHandler([textField stringValue]);
  796. } else {
  797. completionHandler(nil);
  798. }
  799. }];
  800. #endif // !TARGET_OS_OSX
  801. }
  802. #if !TARGET_OS_OSX
  803. /**
  804. * topViewController
  805. */
  806. -(UIViewController *)topViewController{
  807. return RCTPresentedViewController();
  808. }
  809. #endif // !TARGET_OS_OSX
  810. /**
  811. * Decides whether to allow or cancel a navigation.
  812. * @see https://fburl.com/42r9fxob
  813. */
  814. - (void) webView:(WKWebView *)webView
  815. decidePolicyForNavigationAction:(WKNavigationAction *)navigationAction
  816. decisionHandler:(void (^)(WKNavigationActionPolicy))decisionHandler
  817. {
  818. static NSDictionary<NSNumber *, NSString *> *navigationTypes;
  819. static dispatch_once_t onceToken;
  820. dispatch_once(&onceToken, ^{
  821. navigationTypes = @{
  822. @(WKNavigationTypeLinkActivated): @"click",
  823. @(WKNavigationTypeFormSubmitted): @"formsubmit",
  824. @(WKNavigationTypeBackForward): @"backforward",
  825. @(WKNavigationTypeReload): @"reload",
  826. @(WKNavigationTypeFormResubmitted): @"formresubmit",
  827. @(WKNavigationTypeOther): @"other",
  828. };
  829. });
  830. WKNavigationType navigationType = navigationAction.navigationType;
  831. NSURLRequest *request = navigationAction.request;
  832. BOOL isTopFrame = [request.URL isEqual:request.mainDocumentURL];
  833. if (_onShouldStartLoadWithRequest) {
  834. NSMutableDictionary<NSString *, id> *event = [self baseEvent];
  835. [event addEntriesFromDictionary: @{
  836. @"url": (request.URL).absoluteString,
  837. @"mainDocumentURL": (request.mainDocumentURL).absoluteString,
  838. @"navigationType": navigationTypes[@(navigationType)],
  839. @"isTopFrame": @(isTopFrame)
  840. }];
  841. if (![self.delegate webView:self
  842. shouldStartLoadForRequest:event
  843. withCallback:_onShouldStartLoadWithRequest]) {
  844. decisionHandler(WKNavigationActionPolicyCancel);
  845. return;
  846. }
  847. }
  848. if (_onLoadingStart) {
  849. // We have this check to filter out iframe requests and whatnot
  850. if (isTopFrame) {
  851. NSMutableDictionary<NSString *, id> *event = [self baseEvent];
  852. [event addEntriesFromDictionary: @{
  853. @"url": (request.URL).absoluteString,
  854. @"navigationType": navigationTypes[@(navigationType)]
  855. }];
  856. _onLoadingStart(event);
  857. }
  858. }
  859. // Allow all navigation by default
  860. decisionHandler(WKNavigationActionPolicyAllow);
  861. }
  862. /**
  863. * Called when the web view’s content process is terminated.
  864. * @see https://developer.apple.com/documentation/webkit/wknavigationdelegate/1455639-webviewwebcontentprocessdidtermi?language=objc
  865. */
  866. - (void)webViewWebContentProcessDidTerminate:(WKWebView *)webView
  867. {
  868. RCTLogWarn(@"Webview Process Terminated");
  869. if (_onContentProcessDidTerminate) {
  870. NSMutableDictionary<NSString *, id> *event = [self baseEvent];
  871. _onContentProcessDidTerminate(event);
  872. }
  873. }
  874. /**
  875. * Decides whether to allow or cancel a navigation after its response is known.
  876. * @see https://developer.apple.com/documentation/webkit/wknavigationdelegate/1455643-webview?language=objc
  877. */
  878. - (void) webView:(WKWebView *)webView
  879. decidePolicyForNavigationResponse:(WKNavigationResponse *)navigationResponse
  880. decisionHandler:(void (^)(WKNavigationResponsePolicy))decisionHandler
  881. {
  882. WKNavigationResponsePolicy policy = WKNavigationResponsePolicyAllow;
  883. if (_onHttpError && navigationResponse.forMainFrame) {
  884. if ([navigationResponse.response isKindOfClass:[NSHTTPURLResponse class]]) {
  885. NSHTTPURLResponse *response = (NSHTTPURLResponse *)navigationResponse.response;
  886. NSInteger statusCode = response.statusCode;
  887. if (statusCode >= 400) {
  888. NSMutableDictionary<NSString *, id> *httpErrorEvent = [self baseEvent];
  889. [httpErrorEvent addEntriesFromDictionary: @{
  890. @"url": response.URL.absoluteString,
  891. @"statusCode": @(statusCode)
  892. }];
  893. _onHttpError(httpErrorEvent);
  894. }
  895. NSString *disposition = nil;
  896. if (@available(iOS 13, *)) {
  897. disposition = [response valueForHTTPHeaderField:@"Content-Disposition"];
  898. }
  899. BOOL isAttachment = disposition != nil && [disposition hasPrefix:@"attachment"];
  900. if (isAttachment || !navigationResponse.canShowMIMEType) {
  901. if (_onFileDownload) {
  902. policy = WKNavigationResponsePolicyCancel;
  903. NSMutableDictionary<NSString *, id> *downloadEvent = [self baseEvent];
  904. [downloadEvent addEntriesFromDictionary: @{
  905. @"downloadUrl": (response.URL).absoluteString,
  906. }];
  907. _onFileDownload(downloadEvent);
  908. }
  909. }
  910. }
  911. }
  912. decisionHandler(policy);
  913. }
  914. /**
  915. * Called when an error occurs while the web view is loading content.
  916. * @see https://fburl.com/km6vqenw
  917. */
  918. - (void) webView:(WKWebView *)webView
  919. didFailProvisionalNavigation:(WKNavigation *)navigation
  920. withError:(NSError *)error
  921. {
  922. if (_onLoadingError) {
  923. if ([error.domain isEqualToString:NSURLErrorDomain] && error.code == NSURLErrorCancelled) {
  924. // NSURLErrorCancelled is reported when a page has a redirect OR if you load
  925. // a new URL in the WebView before the previous one came back. We can just
  926. // ignore these since they aren't real errors.
  927. // http://stackoverflow.com/questions/1024748/how-do-i-fix-nsurlerrordomain-error-999-in-iphone-3-0-os
  928. return;
  929. }
  930. if ([error.domain isEqualToString:@"WebKitErrorDomain"] && error.code == 102 || [error.domain isEqualToString:@"WebKitErrorDomain"] && error.code == 101) {
  931. // Error code 102 "Frame load interrupted" is raised by the WKWebView
  932. // when the URL is from an http redirect. This is a common pattern when
  933. // implementing OAuth with a WebView.
  934. return;
  935. }
  936. NSMutableDictionary<NSString *, id> *event = [self baseEvent];
  937. [event addEntriesFromDictionary:@{
  938. @"didFailProvisionalNavigation": @YES,
  939. @"domain": error.domain,
  940. @"code": @(error.code),
  941. @"description": error.localizedDescription,
  942. }];
  943. _onLoadingError(event);
  944. }
  945. }
  946. - (void)evaluateJS:(NSString *)js
  947. thenCall: (void (^)(NSString*)) callback
  948. {
  949. [self.webView evaluateJavaScript: js completionHandler: ^(id result, NSError *error) {
  950. if (callback != nil) {
  951. callback([NSString stringWithFormat:@"%@", result]);
  952. }
  953. if (error != nil) {
  954. RCTLogWarn(@"%@", [NSString stringWithFormat:@"Error evaluating injectedJavaScript: This is possibly due to an unsupported return type. Try adding true to the end of your injectedJavaScript string. %@", error]);
  955. }
  956. }];
  957. }
  958. -(void)forceIgnoreSilentHardwareSwitch:(BOOL)initialSetup
  959. {
  960. NSString *mp3Str = @"data:audio/mp3;base64,//tAxAAAAAAAAAAAAAAAAAAAAAAASW5mbwAAAA8AAAAFAAAESAAzMzMzMzMzMzMzMzMzMzMzMzMzZmZmZmZmZmZmZmZmZmZmZmZmZmaZmZmZmZmZmZmZmZmZmZmZmZmZmczMzMzMzMzMzMzMzMzMzMzMzMzM//////////////////////////8AAAA5TEFNRTMuMTAwAZYAAAAAAAAAABQ4JAMGQgAAOAAABEhNIZS0AAAAAAD/+0DEAAPH3Yz0AAR8CPqyIEABp6AxjG/4x/XiInE4lfQDFwIIRE+uBgZoW4RL0OLMDFn6E5v+/u5ehf76bu7/6bu5+gAiIQGAABQIUJ0QolFghEn/9PhZQpcUTpXMjo0OGzRCZXyKxoIQzB2KhCtGobpT9TRVj/3Pmfp+f8X7Pu1B04sTnc3s0XhOlXoGVCMNo9X//9/r6a10TZEY5DsxqvO7mO5qFvpFCmKIjhpSItGsUYcRO//7QsQRgEiljQIAgLFJAbIhNBCa+JmorCbOi5q9nVd2dKnusTMQg4MFUlD6DQ4OFijwGAijRMfLbHG4nLVTjydyPlJTj8pfPflf9/5GD950A5e+jsrmNZSjSirjs1R7hnkia8vr//l/7Nb+crvr9Ok5ZJOylUKRxf/P9Zn0j2P4pJYXyKkeuy5wUYtdmOu6uobEtFqhIJViLEKIjGxchGev/L3Y0O3bwrIOszTBAZ7Ih28EUaSOZf/7QsQfg8fpjQIADN0JHbGgQBAZ8T//y//t/7d/2+f5m7MdCeo/9tdkMtGLbt1tqnabRroO1Qfvh20yEbei8nfDXP7btW7f9/uO9tbe5IvHQbLlxpf3DkAk0ojYcv///5/u3/7PTfGjPEPUvt5D6f+/3Lea4lz4tc4TnM/mFPrmalWbboeNiNyeyr+vufttZuvrVrt/WYv3T74JFo8qEDiJqJrmDTs///v99xDku2xG02jjunrICP/7QsQtA8kpkQAAgNMA/7FgQAGnobgfghgqA+uXwWQ3XFmGimSbe2X3ksY//KzK1a2k6cnNWOPJnPWUsYbKqkh8RJzrVf///P///////4vyhLKHLrCb5nIrYIUss4cthigL1lQ1wwNAc6C1pf1TIKRSkt+a//z+yLVcwlXKSqeSuCVQFLng2h4AFAFgTkH+Z/8jTX/zr//zsJV/5f//5UX/0ZNCNCCaf5lTCTRkaEdhNP//n/KUjf/7QsQ5AEhdiwAAjN7I6jGddBCO+WGTQ1mXrYatSAgaykxBTUUzLjEwMKqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqg==";
  961. NSString *scr;
  962. if (initialSetup) {
  963. scr = [NSString stringWithFormat:@"var s=new Audio('%@');s.id='wkwebviewAudio';s.controls=false;s.loop=true;s.play();document.body.appendChild(s);true", mp3Str];
  964. } else {
  965. scr = [NSString stringWithFormat:@"var s=document.getElementById('wkwebviewAudio');s.src=null;s.parentNode.removeChild(s);s=null;s=new Audio('%@');s.id='wkwebviewAudio';s.controls=false;s.loop=true;s.play();document.body.appendChild(s);true", mp3Str];
  966. }
  967. [self evaluateJS: scr thenCall: nil];
  968. }
  969. -(void)disableIgnoreSilentSwitch
  970. {
  971. [self evaluateJS: @"document.getElementById('wkwebviewAudio').src=null;true" thenCall: nil];
  972. }
  973. -(void)appDidBecomeActive
  974. {
  975. if (_ignoreSilentHardwareSwitch) {
  976. [self forceIgnoreSilentHardwareSwitch:false];
  977. }
  978. }
  979. -(void)appWillResignActive
  980. {
  981. if (_ignoreSilentHardwareSwitch) {
  982. [self disableIgnoreSilentSwitch];
  983. }
  984. }
  985. /**
  986. * Called when the navigation is complete.
  987. * @see https://fburl.com/rtys6jlb
  988. */
  989. - (void)webView:(WKWebView *)webView
  990. didFinishNavigation:(WKNavigation *)navigation
  991. {
  992. if (_ignoreSilentHardwareSwitch) {
  993. [self forceIgnoreSilentHardwareSwitch:true];
  994. }
  995. if (_onLoadingFinish) {
  996. _onLoadingFinish([self baseEvent]);
  997. }
  998. }
  999. - (void)injectJavaScript:(NSString *)script
  1000. {
  1001. [self evaluateJS: script thenCall: nil];
  1002. }
  1003. - (void)goForward
  1004. {
  1005. [_webView goForward];
  1006. }
  1007. - (void)goBack
  1008. {
  1009. [_webView goBack];
  1010. }
  1011. - (void)reload
  1012. {
  1013. /**
  1014. * When the initial load fails due to network connectivity issues,
  1015. * [_webView reload] doesn't reload the webpage. Therefore, we must
  1016. * manually call [_webView loadRequest:request].
  1017. */
  1018. NSURLRequest *request = [self requestForSource:self.source];
  1019. if (request.URL && !_webView.URL.absoluteString.length) {
  1020. [_webView loadRequest:request];
  1021. } else {
  1022. [_webView reload];
  1023. }
  1024. }
  1025. - (void)addPullToRefreshControl
  1026. {
  1027. UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];
  1028. _refreshControl = refreshControl;
  1029. [_webView.scrollView addSubview: refreshControl];
  1030. [refreshControl addTarget:self action:@selector(pullToRefresh:) forControlEvents: UIControlEventValueChanged];
  1031. }
  1032. - (void)pullToRefresh:(UIRefreshControl *)refreshControl
  1033. {
  1034. [self reload];
  1035. [refreshControl endRefreshing];
  1036. }
  1037. #if !TARGET_OS_OSX
  1038. - (void)setPullToRefreshEnabled:(BOOL)pullToRefreshEnabled
  1039. {
  1040. _pullToRefreshEnabled = pullToRefreshEnabled;
  1041. if (pullToRefreshEnabled) {
  1042. [self addPullToRefreshControl];
  1043. } else {
  1044. [_refreshControl removeFromSuperview];
  1045. }
  1046. [self setBounces:_bounces];
  1047. }
  1048. #endif // !TARGET_OS_OSX
  1049. - (void)stopLoading
  1050. {
  1051. [_webView stopLoading];
  1052. }
  1053. #if !TARGET_OS_OSX
  1054. - (void)setBounces:(BOOL)bounces
  1055. {
  1056. _bounces = bounces;
  1057. //For UIRefreshControl to work correctly, the bounces should always be true
  1058. _webView.scrollView.bounces = _pullToRefreshEnabled || bounces;
  1059. }
  1060. #endif // !TARGET_OS_OSX
  1061. - (void)setInjectedJavaScript:(NSString *)source {
  1062. _injectedJavaScript = source;
  1063. self.atEndScript = source == nil ? nil : [[WKUserScript alloc] initWithSource:source
  1064. injectionTime:WKUserScriptInjectionTimeAtDocumentEnd
  1065. forMainFrameOnly:_injectedJavaScriptForMainFrameOnly];
  1066. if(_webView != nil){
  1067. [self resetupScripts:_webView.configuration];
  1068. }
  1069. }
  1070. - (void)setInjectedJavaScriptBeforeContentLoaded:(NSString *)source {
  1071. _injectedJavaScriptBeforeContentLoaded = source;
  1072. self.atStartScript = source == nil ? nil : [[WKUserScript alloc] initWithSource:source
  1073. injectionTime:WKUserScriptInjectionTimeAtDocumentStart
  1074. forMainFrameOnly:_injectedJavaScriptBeforeContentLoadedForMainFrameOnly];
  1075. if(_webView != nil){
  1076. [self resetupScripts:_webView.configuration];
  1077. }
  1078. }
  1079. - (void)setInjectedJavaScriptForMainFrameOnly:(BOOL)mainFrameOnly {
  1080. _injectedJavaScriptForMainFrameOnly = mainFrameOnly;
  1081. [self setInjectedJavaScript:_injectedJavaScript];
  1082. }
  1083. - (void)setInjectedJavaScriptBeforeContentLoadedForMainFrameOnly:(BOOL)mainFrameOnly {
  1084. _injectedJavaScriptBeforeContentLoadedForMainFrameOnly = mainFrameOnly;
  1085. [self setInjectedJavaScriptBeforeContentLoaded:_injectedJavaScriptBeforeContentLoaded];
  1086. }
  1087. - (void)setMessagingEnabled:(BOOL)messagingEnabled {
  1088. _messagingEnabled = messagingEnabled;
  1089. self.postMessageScript = _messagingEnabled ?
  1090. [
  1091. [WKUserScript alloc]
  1092. initWithSource: [
  1093. NSString
  1094. stringWithFormat:
  1095. @"window.%@ = {"
  1096. " postMessage: function (data) {"
  1097. " window.webkit.messageHandlers.%@.postMessage(String(data));"
  1098. " }"
  1099. "};", MessageHandlerName, MessageHandlerName
  1100. ]
  1101. injectionTime:WKUserScriptInjectionTimeAtDocumentStart
  1102. /* TODO: For a separate (minor) PR: use logic like this (as react-native-wkwebview does) so that messaging can be used in all frames if desired.
  1103. * I am keeping it as YES for consistency with previous behaviour. */
  1104. // forMainFrameOnly:_messagingEnabledForMainFrameOnly
  1105. forMainFrameOnly:YES
  1106. ] :
  1107. nil;
  1108. if(_webView != nil){
  1109. [self resetupScripts:_webView.configuration];
  1110. }
  1111. }
  1112. - (void)resetupScripts:(WKWebViewConfiguration *)wkWebViewConfig {
  1113. [wkWebViewConfig.userContentController removeAllUserScripts];
  1114. [wkWebViewConfig.userContentController removeScriptMessageHandlerForName:MessageHandlerName];
  1115. NSString *html5HistoryAPIShimSource = [NSString stringWithFormat:
  1116. @"(function(history) {\n"
  1117. " function notify(type) {\n"
  1118. " setTimeout(function() {\n"
  1119. " window.webkit.messageHandlers.%@.postMessage(type)\n"
  1120. " }, 0)\n"
  1121. " }\n"
  1122. " function shim(f) {\n"
  1123. " return function pushState() {\n"
  1124. " notify('other')\n"
  1125. " return f.apply(history, arguments)\n"
  1126. " }\n"
  1127. " }\n"
  1128. " history.pushState = shim(history.pushState)\n"
  1129. " history.replaceState = shim(history.replaceState)\n"
  1130. " window.addEventListener('popstate', function() {\n"
  1131. " notify('backforward')\n"
  1132. " })\n"
  1133. "})(window.history)\n", HistoryShimName
  1134. ];
  1135. WKUserScript *script = [[WKUserScript alloc] initWithSource:html5HistoryAPIShimSource injectionTime:WKUserScriptInjectionTimeAtDocumentStart forMainFrameOnly:YES];
  1136. [wkWebViewConfig.userContentController addUserScript:script];
  1137. if(_sharedCookiesEnabled) {
  1138. // More info to sending cookies with WKWebView
  1139. // https://stackoverflow.com/questions/26573137/can-i-set-the-cookies-to-be-used-by-a-wkwebview/26577303#26577303
  1140. if (@available(iOS 11.0, *)) {
  1141. // Set Cookies in iOS 11 and above, initialize websiteDataStore before setting cookies
  1142. // See also https://forums.developer.apple.com/thread/97194
  1143. // check if websiteDataStore has not been initialized before
  1144. if(!_incognito && !_cacheEnabled) {
  1145. wkWebViewConfig.websiteDataStore = [WKWebsiteDataStore nonPersistentDataStore];
  1146. }
  1147. for (NSHTTPCookie *cookie in [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookies]) {
  1148. [wkWebViewConfig.websiteDataStore.httpCookieStore setCookie:cookie completionHandler:nil];
  1149. }
  1150. } else {
  1151. NSMutableString *script = [NSMutableString string];
  1152. // Clear all existing cookies in a direct called function. This ensures that no
  1153. // javascript error will break the web content javascript.
  1154. // We keep this code here, if someone requires that Cookies are also removed within the
  1155. // the WebView and want to extends the current sharedCookiesEnabled option with an
  1156. // additional property.
  1157. // Generates JS: document.cookie = "key=; Expires=Thu, 01 Jan 1970 00:00:01 GMT;"
  1158. // for each cookie which is already available in the WebView context.
  1159. /*
  1160. [script appendString:@"(function () {\n"];
  1161. [script appendString:@" var cookies = document.cookie.split('; ');\n"];
  1162. [script appendString:@" for (var i = 0; i < cookies.length; i++) {\n"];
  1163. [script appendString:@" if (cookies[i].indexOf('=') !== -1) {\n"];
  1164. [script appendString:@" document.cookie = cookies[i].split('=')[0] + '=; Expires=Thu, 01 Jan 1970 00:00:01 GMT';\n"];
  1165. [script appendString:@" }\n"];
  1166. [script appendString:@" }\n"];
  1167. [script appendString:@"})();\n\n"];
  1168. */
  1169. // Set cookies in a direct called function. This ensures that no
  1170. // javascript error will break the web content javascript.
  1171. // Generates JS: document.cookie = "key=value; Path=/; Expires=Thu, 01 Jan 20xx 00:00:01 GMT;"
  1172. // for each cookie which is available in the application context.
  1173. [script appendString:@"(function () {\n"];
  1174. for (NSHTTPCookie *cookie in [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookies]) {
  1175. [script appendFormat:@"document.cookie = %@ + '=' + %@",
  1176. RCTJSONStringify(cookie.name, NULL),
  1177. RCTJSONStringify(cookie.value, NULL)];
  1178. if (cookie.path) {
  1179. [script appendFormat:@" + '; Path=' + %@", RCTJSONStringify(cookie.path, NULL)];
  1180. }
  1181. if (cookie.expiresDate) {
  1182. [script appendFormat:@" + '; Expires=' + new Date(%f).toUTCString()",
  1183. cookie.expiresDate.timeIntervalSince1970 * 1000
  1184. ];
  1185. }
  1186. [script appendString:@";\n"];
  1187. }
  1188. [script appendString:@"})();\n"];
  1189. WKUserScript* cookieInScript = [[WKUserScript alloc] initWithSource:script
  1190. injectionTime:WKUserScriptInjectionTimeAtDocumentStart
  1191. forMainFrameOnly:YES];
  1192. [wkWebViewConfig.userContentController addUserScript:cookieInScript];
  1193. }
  1194. }
  1195. if(_messagingEnabled){
  1196. if (self.postMessageScript){
  1197. [wkWebViewConfig.userContentController addScriptMessageHandler:[[RNCWeakScriptMessageDelegate alloc] initWithDelegate:self]
  1198. name:MessageHandlerName];
  1199. [wkWebViewConfig.userContentController addUserScript:self.postMessageScript];
  1200. }
  1201. if (self.atEndScript) {
  1202. [wkWebViewConfig.userContentController addUserScript:self.atEndScript];
  1203. }
  1204. }
  1205. // Whether or not messaging is enabled, add the startup script if it exists.
  1206. if (self.atStartScript) {
  1207. [wkWebViewConfig.userContentController addUserScript:self.atStartScript];
  1208. }
  1209. }
  1210. - (NSURLRequest *)requestForSource:(id)json {
  1211. NSURLRequest *request = [RCTConvert NSURLRequest:self.source];
  1212. // If sharedCookiesEnabled we automatically add all application cookies to the
  1213. // http request. This is automatically done on iOS 11+ in the WebView constructor.
  1214. // Se we need to manually add these shared cookies here only for iOS versions < 11.
  1215. if (_sharedCookiesEnabled) {
  1216. if (@available(iOS 11.0, *)) {
  1217. // see WKWebView initialization for added cookies
  1218. } else {
  1219. NSArray *cookies = [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookiesForURL:request.URL];
  1220. NSDictionary<NSString *, NSString *> *cookieHeader = [NSHTTPCookie requestHeaderFieldsWithCookies:cookies];
  1221. NSMutableURLRequest *mutableRequest = [request mutableCopy];
  1222. [mutableRequest setAllHTTPHeaderFields:cookieHeader];
  1223. return mutableRequest;
  1224. }
  1225. }
  1226. return request;
  1227. }
  1228. @end
  1229. @implementation RNCWeakScriptMessageDelegate
  1230. - (instancetype)initWithDelegate:(id<WKScriptMessageHandler>)scriptDelegate {
  1231. self = [super init];
  1232. if (self) {
  1233. _scriptDelegate = scriptDelegate;
  1234. }
  1235. return self;
  1236. }
  1237. - (void)userContentController:(WKUserContentController *)userContentController didReceiveScriptMessage:(WKScriptMessage *)message {
  1238. [self.scriptDelegate userContentController:userContentController didReceiveScriptMessage:message];
  1239. }
  1240. @end