Skip to content

Commit 69c629e

Browse files
committed
redirect bug fix
solution [issue 1884](#1884)
1 parent 4c58653 commit 69c629e

File tree

4 files changed

+72
-76
lines changed

4 files changed

+72
-76
lines changed

flutter_inappwebview_android/android/src/main/java/com/pichillilorenzo/flutter_inappwebview_android/webview/in_app_webview/InAppWebViewClient.java

+31-18
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
import java.util.List;
5757
import java.util.Map;
5858
import java.util.regex.Matcher;
59+
import java.util.regex.Pattern;
5960

6061
public class InAppWebViewClient extends WebViewClient {
6162

@@ -74,6 +75,12 @@ public InAppWebViewClient(InAppBrowserDelegate inAppBrowserDelegate) {
7475
public boolean shouldOverrideUrlLoading(WebView view, WebResourceRequest request) {
7576
InAppWebView webView = (InAppWebView) view;
7677
if (webView.customSettings.useShouldOverrideUrlLoading) {
78+
if (webView.customSettings.regexToCancelOverrideUrlLoading != null) {
79+
Pattern pattern = Pattern.compile(webView.customSettings.regexToCancelOverrideUrlLoading);
80+
Matcher m = pattern.matcher(request.getUrl().toString());
81+
Log.i(LOG_TAG, request.getUrl().toString() + " isMatch " + m.matches());
82+
if (m.matches() == false) return false;
83+
}
7784
boolean isRedirect = false;
7885
if (WebViewFeature.isFeatureSupported(WebViewFeature.WEB_RESOURCE_REQUEST_IS_REDIRECT)) {
7986
isRedirect = WebResourceRequestCompat.isRedirect(request);
@@ -108,6 +115,12 @@ public boolean shouldOverrideUrlLoading(WebView view, WebResourceRequest request
108115
public boolean shouldOverrideUrlLoading(WebView webView, String url) {
109116
InAppWebView inAppWebView = (InAppWebView) webView;
110117
if (inAppWebView.customSettings.useShouldOverrideUrlLoading) {
118+
if (inAppWebView.customSettings.regexToCancelOverrideUrlLoading != null) {
119+
Pattern pattern = Pattern.compile(inAppWebView.customSettings.regexToCancelOverrideUrlLoading);
120+
Matcher m = pattern.matcher(url);
121+
Log.i(LOG_TAG, url + " isMatch " + m.matches());
122+
if (m.matches() == false) return false;
123+
}
111124
onShouldOverrideUrlLoading(inAppWebView, url, "GET", null,true, false, false);
112125
return true;
113126
}
@@ -164,7 +177,7 @@ public void error(String errorCode, @Nullable String errorMessage, @Nullable Obj
164177
defaultBehaviour(null);
165178
}
166179
};
167-
180+
168181
if (webView.channelDelegate != null) {
169182
webView.channelDelegate.shouldOverrideUrlLoading(navigationAction, callback);
170183
} else {
@@ -216,7 +229,7 @@ public void onPageStarted(WebView view, String url, Bitmap favicon) {
216229
webView.channelDelegate.onLoadStart(url);
217230
}
218231
}
219-
232+
220233
public void onPageFinished(WebView view, String url) {
221234
final InAppWebView webView = (InAppWebView) view;
222235
webView.isLoading = false;
@@ -260,13 +273,13 @@ public void doUpdateVisitedHistory(WebView view, String url, boolean isReload) {
260273
if (inAppBrowserDelegate != null) {
261274
inAppBrowserDelegate.didUpdateVisitedHistory(url);
262275
}
263-
276+
264277
final InAppWebView webView = (InAppWebView) view;
265278
if (webView.channelDelegate != null) {
266279
webView.channelDelegate.onUpdateVisitedHistory(url, isReload);
267280
}
268281
}
269-
282+
270283
@RequiresApi(api = Build.VERSION_CODES.M)
271284
@Override
272285
public void onReceivedError(WebView view, @NonNull WebResourceRequest request, @NonNull WebResourceError error) {
@@ -430,7 +443,7 @@ public void error(String errorCode, @Nullable String errorMessage, @Nullable Obj
430443
defaultBehaviour(null);
431444
}
432445
};
433-
446+
434447
if (webView.channelDelegate != null) {
435448
webView.channelDelegate.onReceivedHttpAuthRequest(challenge, callback);
436449
} else {
@@ -489,7 +502,7 @@ public void error(String errorCode, @Nullable String errorMessage, @Nullable Obj
489502
defaultBehaviour(null);
490503
}
491504
};
492-
505+
493506
if (webView.channelDelegate != null) {
494507
webView.channelDelegate.onReceivedServerTrustAuthRequest(challenge, callback);
495508
} else {
@@ -525,19 +538,19 @@ public boolean nonNullSuccess(@NonNull ClientCertResponse response) {
525538
if (action != null && webView.plugin != null) {
526539
switch (action) {
527540
case 1:
528-
{
529-
String certificatePath = (String) response.getCertificatePath();
530-
String certificatePassword = (String) response.getCertificatePassword();
531-
String keyStoreType = (String) response.getKeyStoreType();
532-
Util.PrivateKeyAndCertificates privateKeyAndCertificates =
533-
Util.loadPrivateKeyAndCertificate(webView.plugin, certificatePath, certificatePassword, keyStoreType);
534-
if (privateKeyAndCertificates != null) {
535-
request.proceed(privateKeyAndCertificates.privateKey, privateKeyAndCertificates.certificates);
536-
} else {
537-
request.cancel();
538-
}
541+
{
542+
String certificatePath = (String) response.getCertificatePath();
543+
String certificatePassword = (String) response.getCertificatePassword();
544+
String keyStoreType = (String) response.getKeyStoreType();
545+
Util.PrivateKeyAndCertificates privateKeyAndCertificates =
546+
Util.loadPrivateKeyAndCertificate(webView.plugin, certificatePath, certificatePassword, keyStoreType);
547+
if (privateKeyAndCertificates != null) {
548+
request.proceed(privateKeyAndCertificates.privateKey, privateKeyAndCertificates.certificates);
549+
} else {
550+
request.cancel();
539551
}
540-
break;
552+
}
553+
break;
541554
case 2:
542555
request.ignore();
543556
break;

flutter_inappwebview_android/android/src/main/java/com/pichillilorenzo/flutter_inappwebview_android/webview/in_app_webview/InAppWebViewSettings.java

+5
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ public class InAppWebViewSettings implements ISettings<InAppWebViewInterface> {
104104
public Boolean hardwareAcceleration = true;
105105
public Boolean supportMultipleWindows = false;
106106
public String regexToCancelSubFramesLoading;
107+
public String regexToCancelOverrideUrlLoading;
107108
public Integer overScrollMode = View.OVER_SCROLL_IF_CONTENT_SCROLLS;
108109
public Boolean networkAvailable = null;
109110
public Integer scrollBarStyle = View.SCROLLBARS_INSIDE_OVERLAY;
@@ -346,6 +347,9 @@ public InAppWebViewSettings parse(@NonNull Map<String, Object> settings) {
346347
case "regexToCancelSubFramesLoading":
347348
regexToCancelSubFramesLoading = (String) value;
348349
break;
350+
case "regexToCancelOverrideUrlLoading":
351+
regexToCancelOverrideUrlLoading = (String) value;
352+
break;
349353
case "overScrollMode":
350354
overScrollMode = (Integer) value;
351355
break;
@@ -489,6 +493,7 @@ public Map<String, Object> toMap() {
489493
settings.put("hardwareAcceleration", hardwareAcceleration);
490494
settings.put("supportMultipleWindows", supportMultipleWindows);
491495
settings.put("regexToCancelSubFramesLoading", regexToCancelSubFramesLoading);
496+
settings.put("regexToCancelOverrideUrlLoading", regexToCancelOverrideUrlLoading);
492497
settings.put("overScrollMode", overScrollMode);
493498
settings.put("networkAvailable", networkAvailable);
494499
settings.put("scrollBarStyle", scrollBarStyle);

flutter_inappwebview_platform_interface/lib/src/in_app_webview/in_app_webview_settings.dart

+25-50
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
1+
import 'dart:typed_data';
2+
13
import 'package:flutter/foundation.dart';
24
import 'package:flutter/widgets.dart';
35
import 'package:flutter_inappwebview_internal_annotations/flutter_inappwebview_internal_annotations.dart';
4-
import 'dart:typed_data';
56

7+
import '../content_blocker.dart';
8+
import '../context_menu/context_menu.dart';
9+
import '../in_app_browser/in_app_browser_settings.dart';
10+
import '../in_app_browser/platform_in_app_browser.dart';
11+
import '../in_app_webview/platform_inappwebview_controller.dart';
612
import '../platform_webview_asset_loader.dart';
13+
import '../platform_webview_feature.dart';
714
import '../types/action_mode_menu_item.dart';
815
import '../types/cache_mode.dart';
916
import '../types/data_detector_types.dart';
1017
import '../types/force_dark.dart';
1118
import '../types/force_dark_strategy.dart';
1219
import '../types/layout_algorithm.dart';
20+
import '../types/main.dart';
1321
import '../types/mixed_content_mode.dart';
1422
import '../types/over_scroll_mode.dart';
1523
import '../types/referrer_policy.dart';
@@ -21,17 +29,10 @@ import '../types/scrollview_deceleration_rate.dart';
2129
import '../types/selection_granularity.dart';
2230
import '../types/user_preferred_content_mode.dart';
2331
import '../types/vertical_scrollbar_position.dart';
32+
import '../util.dart';
2433
import '../web_uri.dart';
2534
import 'android/in_app_webview_options.dart';
2635
import 'apple/in_app_webview_options.dart';
27-
import '../content_blocker.dart';
28-
import '../types/main.dart';
29-
import '../util.dart';
30-
import '../in_app_browser/in_app_browser_settings.dart';
31-
import '../platform_webview_feature.dart';
32-
import '../in_app_webview/platform_inappwebview_controller.dart';
33-
import '../context_menu/context_menu.dart';
34-
import '../in_app_browser/platform_in_app_browser.dart';
3536
import 'platform_webview.dart';
3637

3738
part 'in_app_webview_settings.g.dart';
@@ -57,12 +58,8 @@ class InAppWebViewSettings_ {
5758
///If the [PlatformWebViewCreationParams.shouldOverrideUrlLoading] event is implemented and this value is `null`,
5859
///it will be automatically inferred as `true`, otherwise, the default value is `false`.
5960
///This logic will not be applied for [PlatformInAppBrowser], where you must set the value manually.
60-
@SupportedPlatforms(platforms: [
61-
AndroidPlatform(),
62-
IOSPlatform(),
63-
MacOSPlatform(),
64-
WindowsPlatform()
65-
])
61+
@SupportedPlatforms(
62+
platforms: [AndroidPlatform(), IOSPlatform(), MacOSPlatform()])
6663
bool? useShouldOverrideUrlLoading;
6764

6865
///Set to `true` to be able to listen at the [PlatformWebViewCreationParams.onLoadResource] event.
@@ -102,11 +99,7 @@ class InAppWebViewSettings_ {
10299
MacOSPlatform(
103100
apiName: "WKWebView.customUserAgent",
104101
apiUrl:
105-
"https://developer.apple.com/documentation/webkit/wkwebview/1414950-customuseragent"),
106-
WindowsPlatform(
107-
apiName: 'ICoreWebView2Settings2.put_UserAgent',
108-
apiUrl:
109-
'https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/win32/icorewebview2settings2?view=webview2-1.0.2210.55#put_useragent')
102+
"https://developer.apple.com/documentation/webkit/wkwebview/1414950-customuseragent")
110103
])
111104
String? userAgent;
112105

@@ -138,11 +131,7 @@ class InAppWebViewSettings_ {
138131
apiName: "WKWebpagePreferences.allowsContentJavaScript",
139132
apiUrl:
140133
"https://developer.apple.com/documentation/webkit/wkwebpagepreferences/3552422-allowscontentjavascript/"),
141-
WebPlatform(requiresSameOrigin: false),
142-
WindowsPlatform(
143-
apiName: "ICoreWebView2Settings.put_IsScriptEnabled",
144-
apiUrl:
145-
"https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/win32/icorewebview2settings?view=webview2-1.0.2210.55#put_isscriptenabled")
134+
WebPlatform(requiresSameOrigin: false)
146135
])
147136
bool? javaScriptEnabled;
148137

@@ -319,12 +308,7 @@ because there isn't any way to make the website data store non-persistent for th
319308
@SupportedPlatforms(platforms: [
320309
AndroidPlatform(),
321310
IOSPlatform(),
322-
MacOSPlatform(available: "12.0"),
323-
WindowsPlatform(
324-
available: '1.0.774.44',
325-
apiName: 'ICoreWebView2Controller2.put_DefaultBackgroundColor',
326-
apiUrl:
327-
'https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/win32/icorewebview2controller2?view=webview2-1.0.2210.55#put_defaultbackgroundcolor')
311+
MacOSPlatform(available: "12.0")
328312
])
329313
bool? transparentBackground;
330314

@@ -339,15 +323,8 @@ because there isn't any way to make the website data store non-persistent for th
339323
bool? disableHorizontalScroll;
340324

341325
///Set to `true` to disable context menu. The default value is `false`.
342-
@SupportedPlatforms(platforms: [
343-
AndroidPlatform(),
344-
IOSPlatform(),
345-
WebPlatform(),
346-
WindowsPlatform(
347-
apiName: "ICoreWebView2Settings.put_AreDefaultContextMenusEnabled",
348-
apiUrl:
349-
"https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/win32/icorewebview2settings?view=webview2-1.0.2210.55#put_aredefaultcontextmenusenabled")
350-
])
326+
@SupportedPlatforms(
327+
platforms: [AndroidPlatform(), IOSPlatform(), WebPlatform()])
351328
bool? disableContextMenu;
352329

353330
///Set to `false` if the WebView should not support zooming using its on-screen zoom controls and gestures. The default value is `true`.
@@ -357,11 +334,7 @@ because there isn't any way to make the website data store non-persistent for th
357334
apiUrl:
358335
"https://developer.android.com/reference/android/webkit/WebSettings?hl=en#setSupportZoom(boolean)"),
359336
IOSPlatform(),
360-
MacOSPlatform(),
361-
WindowsPlatform(
362-
apiName: "ICoreWebView2Settings.put_IsZoomControlEnabled",
363-
apiUrl:
364-
"https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/win32/icorewebview2settings?view=webview2-1.0.2210.55#put_iszoomcontrolenabled")
337+
MacOSPlatform()
365338
])
366339
bool? supportZoom;
367340

@@ -805,6 +778,11 @@ because there isn't any way to make the website data store non-persistent for th
805778
@SupportedPlatforms(platforms: [AndroidPlatform()])
806779
String? regexToCancelSubFramesLoading;
807780

781+
///Regular expression used by [PlatformWebViewCreationParams.shouldOverrideUrlLoading] event to cancel navigation requests
782+
///If the url request not matches the regular expression, then the shouldOverrideUrlLoading is return false.
783+
@SupportedPlatforms(platforms: [AndroidPlatform()])
784+
String? regexToCancelOverrideUrlLoading;
785+
808786
///Set to `false` to disable Flutter Hybrid Composition. The default value is `true`.
809787
///Hybrid Composition is supported starting with Flutter v1.20+.
810788
@SupportedPlatforms(platforms: [
@@ -1565,11 +1543,7 @@ as it can cause framerate drops on animations in Android 9 and lower (see [Hybri
15651543
available: "13.3",
15661544
apiName: "WKWebView.isInspectable",
15671545
apiUrl:
1568-
"https://developer.apple.com/documentation/webkit/wkwebview/4111163-isinspectable"),
1569-
WindowsPlatform(
1570-
apiName: "ICoreWebView2Settings.put_AreDevToolsEnabled",
1571-
apiUrl:
1572-
"https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/win32/icorewebview2settings?view=webview2-1.0.2210.55#put_aredevtoolsenabled")
1546+
"https://developer.apple.com/documentation/webkit/wkwebview/4111163-isinspectable")
15731547
])
15741548
bool? isInspectable;
15751549

@@ -1722,6 +1696,7 @@ as it can cause framerate drops on animations in Android 9 and lower (see [Hybri
17221696
this.initialScale = 0,
17231697
this.supportMultipleWindows = false,
17241698
this.regexToCancelSubFramesLoading,
1699+
this.regexToCancelOverrideUrlLoading,
17251700
this.useHybridComposition = true,
17261701
this.useShouldInterceptRequest,
17271702
this.useOnRenderProcessGone,

0 commit comments

Comments
 (0)