-
Notifications
You must be signed in to change notification settings - Fork 12
/
gowebview_android.java
264 lines (220 loc) · 9.38 KB
/
gowebview_android.java
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
package com.inkeliz.gowebview;
import android.os.Bundle;
import android.view.ViewGroup;
import android.app.Activity;
import android.view.View;
import android.view.KeyEvent;
import android.webkit.WebSettings;
import android.content.Context;
import android.webkit.WebViewClient;
import android.widget.Toast;
import android.webkit.WebView;
import android.util.Log;
import android.os.Build;
import android.os.Parcelable;
import android.net.Proxy;
import java.lang.reflect.*;
import android.util.ArrayMap;
import android.content.Intent;
import java.util.concurrent.Semaphore;
import android.net.http.SslError;
import android.webkit.SslErrorHandler;
import java.security.cert.Certificate;
import android.net.http.SslCertificate;
import java.security.PublicKey;
import java.security.cert.X509Certificate;
import java.security.MessageDigest;
import java.security.cert.CertificateFactory;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import android.os.Build.VERSION;
import android.os.Build.VERSION_CODES;
import android.util.Base64;
import android.webkit.URLUtil;
import android.webkit.WebResourceRequest;
public class gowebview_android {
private View primaryView;
private WebView webBrowser;
private PublicKey[] additionalCerts;
public class gowebview_boolean {
private boolean b;
public void Set(Boolean r) {b = r;}
public boolean Get() {return b;}
}
public class gowebview_webbrowser extends WebViewClient {
@Override public boolean shouldOverrideUrlLoading(WebView v, WebResourceRequest request) {
String url = request.getUrl().toString();
if (url.isEmpty()) {
return false;
}
if (URLUtil.isNetworkUrl(url)) {
return false;
}
return true;
}
@Override public void onReceivedSslError(WebView v, final SslErrorHandler sslHandler, SslError err){
if (additionalCerts == null || additionalCerts.length == 0) {
super.onReceivedSslError(v, sslHandler, err);
return;
}
Certificate certificate = null;
try{
if (android.os.Build.VERSION.SDK_INT > android.os.Build.VERSION_CODES.Q) {
certificate = err.getCertificate().getX509Certificate();
} else {
// Old APIs doesn't have such .getX509Certificate()
Bundle bundle = SslCertificate.saveState(err.getCertificate());
byte[] certificateBytes = bundle.getByteArray("x509-certificate");
if (certificateBytes != null) {
CertificateFactory certFactory = CertificateFactory.getInstance("X.509");
certificate = certFactory.generateCertificate(new ByteArrayInputStream(certificateBytes));
}
}
} catch (Exception e) {
e.printStackTrace();
}
if (certificate == null) {
super.onReceivedSslError(v, sslHandler, err);
return;
}
for (int i = 0; i < additionalCerts.length; i++) {
try{
certificate.verify(additionalCerts[i]);
sslHandler.proceed();
return;
} catch (Exception e) {
e.printStackTrace();
}
}
super.onReceivedSslError(v, sslHandler, err);
}
}
// Executed when call `New(config *Config)`
public void webview_create(View v) {
primaryView = v;
final Semaphore mutex = new Semaphore(0);
((Activity)primaryView.getContext()).runOnUiThread(new Runnable() {
public void run() {
webBrowser = new WebView(primaryView.getContext());
WebSettings webSettings = webBrowser.getSettings();
webSettings.setJavaScriptEnabled(true);
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O_MR1) {
webSettings.setSafeBrowsingEnabled(false);
}
webSettings.setMixedContentMode(WebSettings.MIXED_CONTENT_COMPATIBILITY_MODE);
webSettings.setUseWideViewPort(true);
webSettings.setLoadWithOverviewMode(true);
webSettings.setDomStorageEnabled(true);
webSettings.setDatabaseEnabled(true);
webBrowser.setWebViewClient(new gowebview_webbrowser());
mutex.release();
}
});
try {
mutex.acquire();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
// Executed when call `.SetURL(url string)`
public void webview_navigate(String url) {
((Activity)primaryView.getContext()).runOnUiThread(new Runnable() {
public void run() {
webBrowser.loadUrl(url);
}
});
}
// Executed when call `.Run()` or `.SetVisibility()`
public void webview_run() {
((Activity)primaryView.getContext()).runOnUiThread(new Runnable() {
public void run() {
((Activity)primaryView.getContext()).setContentView(webBrowser);
}
});
}
// Executed when call `.Destroy()`
public void webview_destroy() {
((Activity)primaryView.getContext()).runOnUiThread(new Runnable() {
public void run() {
((Activity)primaryView.getContext()).setContentView(primaryView);
webBrowser.onPause();
webBrowser.removeAllViews();
webBrowser.pauseTimers();
webBrowser.destroy();
}
});
}
// Executed when call `.SetVisibility()`
public void webview_hide() {
((Activity)primaryView.getContext()).runOnUiThread(new Runnable() {
public void run() {
((Activity)primaryView.getContext()).setContentView(primaryView);
}
});
}
public boolean webview_proxy(String host, String port) {
final Semaphore mutex = new Semaphore(0);
final gowebview_boolean result = new gowebview_boolean();
((Activity)primaryView.getContext()).runOnUiThread(new Runnable() {
public void run() {
Context app = webBrowser.getContext().getApplicationContext();
System.setProperty("http.proxyHost", host);
System.setProperty("http.proxyPort", port);
System.setProperty("https.proxyHost", host);
System.setProperty("https.proxyPort", port);
try {
Field apk = app.getClass().getDeclaredField("mLoadedApk");
apk.setAccessible(true);
Field receivers = Class.forName("android.app.LoadedApk").getDeclaredField("mReceivers");
receivers.setAccessible(true);
for (Object map : ((ArrayMap) receivers.get(apk.get(app))).values()) {
for (Object receiver : ((ArrayMap) map).keySet()) {
Class<?> cls = receiver.getClass();
if (cls.getName().contains("ProxyChangeListener")) {
String proxyInfoName = "android.net.ProxyInfo";
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.KITKAT) {
proxyInfoName = "android.net.ProxyProperties";
}
Intent intent = new Intent(Proxy.PROXY_CHANGE_ACTION);
Class proxyInfoClass = Class.forName(proxyInfoName);
if (proxyInfoClass != null) {
Constructor proxyInfo = proxyInfoClass.getConstructor(String.class, Integer.TYPE, String.class);
proxyInfo.setAccessible(true);
intent.putExtra("proxy", (Parcelable) ((Object) proxyInfo.newInstance(host, Integer.parseInt(port), null)));
}
cls.getDeclaredMethod("onReceive", Context.class, Intent.class).invoke(receiver, app, intent);
}
}
}
result.Set(true);
} catch(Exception e) {
e.printStackTrace();
result.Set(false);
}
mutex.release();
}
});
try {
mutex.acquire();
} catch (InterruptedException e) {
e.printStackTrace();
}
return result.Get();
}
public boolean webview_certs(String der) {
String[] sCerts = der.split(";");
additionalCerts = new PublicKey[sCerts.length];
for (int i = 0; i < sCerts.length; i++) {
InputStream streamCert = new ByteArrayInputStream(Base64.decode(sCerts[i], android.util.Base64.DEFAULT));
try {
CertificateFactory factory = CertificateFactory.getInstance("X.509");
X509Certificate cert = (X509Certificate)factory.generateCertificate(streamCert);
additionalCerts[i] = cert.getPublicKey();
} catch(Exception e) {
e.printStackTrace();
return false;
}
}
return true;
}
}