use of com.nu.art.core.generics.Processor in project cyborg-core by nu-art.
the class CyborgWebView method setupClients.
private void setupClients() {
setDownloadListener(new DownloadListener() {
private String downloadingNow;
@Override
public void onDownloadStart(final String url, final String userAgent, final String contentDisposition, final String mimeType, final long contentLength) {
logInfo("DEBUG-LOG: onDownloadStart... url: " + url + " userAgent: " + userAgent + " contentDisposition: " + contentDisposition + " mimetype: " + mimeType + " contentLength: " + contentLength);
if (downloadingNow != null) {
logWarning("DOWNLOAD IN PROGRESS: " + downloadingNow + "... NOT DOWNLOADING FILE FROM NEW URL: " + url);
return;
}
if (downloadHandler == null) {
if (getContext() instanceof Application) {
logWarning("APPLICATION CONTEXT FOUND!!! NOT DOWNLOADING FILE FROM: " + url);
return;
}
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
getContext().startActivity(i);
return;
}
HandlerThread fileDownloader = new HandlerThread("File Downloader: " + url);
fileDownloader.start();
Handler handler = new Handler(fileDownloader.getLooper());
downloadingNow = url;
handler.post(new Runnable() {
@Override
public void run() {
FileOutputStream os = null;
InputStream is = null;
String fileName = contentDisposition;
if (fileName == null)
fileName = "unknown-file";
int index = fileName.indexOf("filename=\"");
if (index != -1)
fileName = fileName.substring(index + "filename=\"".length(), fileName.length() - 1);
fileName = fileName.replaceAll("[\\*/:<>\\?\\\\\\|\\+,\\.;=\\[\\]\\\"\\'\\^]", "_");
try {
HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection();
connection.setRequestProperty("User-Agent", userAgent);
connection.setRequestProperty("Content-Type", mimeType);
connection.connect();
is = connection.getInputStream();
File outputFile;
int counter = 0;
while (true) {
outputFile = new File(Storage.getDefaultStorage().getPath() + "/Download", fileName + (counter == 0 ? "" : "(" + counter + ")"));
if (!outputFile.exists())
break;
}
final File finalOutputFile = outputFile;
FileTools.createNewFile(finalOutputFile);
os = new FileOutputStream(finalOutputFile);
StreamTools.copy(is, contentLength, os, new ProgressNotifier() {
@Override
public void reportState(String report) {
}
@Override
public void onCopyStarted() {
downloadHandler.onDownloadStarted(url);
}
@Override
public void onProgressPercentage(double percentages) {
downloadHandler.onDownloadProgress(url, (float) percentages);
}
@Override
public void onCopyException(Throwable t) {
downloadHandler.onDownloadError(url, t);
}
@Override
public void onCopyEnded() {
downloadHandler.onDownloadEneded(url, finalOutputFile);
}
});
} catch (Exception e) {
downloadHandler.onDownloadError(url, e);
} finally {
downloadingNow = null;
if (os != null)
try {
os.close();
} catch (IOException ignored) {
}
if (is != null)
try {
is.close();
} catch (IOException ignored) {
}
}
}
});
}
});
setWebChromeClient(new WebChromeClient() {
@Override
public void onProgressChanged(WebView view, int newProgress) {
if (DEBUG)
logInfo("DEBUG-LOG: onProgressChanged... " + newProgress);
if (pageHandler == null)
return;
if (newProgress >= 89)
onPageFinished(view, view.getUrl());
pageHandler.onProgressChanged(view, newProgress);
}
@Override
public void onReachedMaxAppCacheSize(long requiredStorage, long quota, QuotaUpdater quotaUpdater) {
if (DEBUG)
logInfo("DEBUG-LOG: onRequestFocus...");
if (pageDetailsHandler == null)
return;
CyborgWebView.this.onReachedMaxAppCacheSize(requiredStorage, quota, quotaUpdater);
}
@Override
public void onGeolocationPermissionsShowPrompt(final String origin, final Callback callback) {
if (DEBUG)
logInfo("DEBUG-LOG: onGeolocationPermissionsShowPrompt (origin: " + origin + ", callback: " + callback + ")");
if (geoLocationHandler == null)
return;
geoLocationHandler.onGeolocationPermissionsShowPrompt(origin, new Processor<GeoLocationResponse>() {
@Override
public void process(GeoLocationResponse res) {
callback.invoke(origin, res.enable, res.remember);
settings.setGeolocationEnabled(res.enable);
}
});
}
@Override
public void onGeolocationPermissionsHidePrompt() {
if (DEBUG)
logInfo("DEBUG-LOG: onGeolocationPermissionsHidePrompt...");
if (geoLocationHandler == null)
return;
geoLocationHandler.onGeolocationPermissionsShowPrompt();
}
@SuppressWarnings("unused")
public void openFileChooser(ValueCallback<Uri> uploadMsg, String acceptType, String capture) {
if (DEBUG)
logInfo("DEBUG-LOG: File Chooser: " + uploadMsg + ", acceptType: " + acceptType + ", capture: " + capture);
openFileChooser(uploadMsg, acceptType);
}
public void openFileChooser(final ValueCallback<Uri> uploadMsg, String acceptType) {
if (DEBUG)
logInfo("DEBUG-LOG: File Chooser: " + uploadMsg + ", acceptType: " + acceptType);
if (fileChooserHandler == null)
uploadMsg.onReceiveValue(null);
boolean handled = fileChooserHandler.openFileChooser(getUrl(), acceptType, new Processor<Uri>() {
@Override
public void process(Uri uri) {
uploadMsg.onReceiveValue(uri);
}
});
if (!handled)
uploadMsg.onReceiveValue(null);
}
@SuppressWarnings("unused")
public void openFileChooser(ValueCallback<Uri> uploadMsg) {
if (DEBUG)
logInfo("DEBUG-LOG: File Chooser: " + uploadMsg);
openFileChooser(uploadMsg, null);
}
@Override
public Bitmap getDefaultVideoPoster() {
if (DEBUG)
logInfo("DEBUG-LOG: getDefaultVideoPoster...");
if (javaScriptHandler == null)
return null;
return videoHandler.getDefaultVideoPoster();
}
@Override
public View getVideoLoadingProgressView() {
if (DEBUG)
logInfo("DEBUG-LOG: getVideoLoadingProgressView...");
if (javaScriptHandler == null)
return null;
return videoHandler.getVideoLoadingProgressView();
}
@Override
public boolean onJsAlert(WebView view, String url, String message, JsResult result) {
if (DEBUG)
logInfo("DEBUG-LOG: onJsAlert (url: " + url + ", message: " + message + ", result: " + result + ")");
if (javaScriptHandler == null) {
result.confirm();
return true;
}
return javaScriptHandler.onJsAlert(view, url, message, result);
}
@Override
public boolean onJsBeforeUnload(WebView view, String url, String message, JsResult result) {
if (DEBUG)
logInfo("DEBUG-LOG: onJsBeforeUnload (url: " + url + ", message: " + message + ", result: " + result + ")");
if (javaScriptHandler == null) {
result.cancel();
return false;
}
return javaScriptHandler.onJsBeforeUnload(view, url, message, result);
}
@Override
public boolean onJsConfirm(WebView view, String url, String message, JsResult result) {
if (DEBUG)
logInfo("DEBUG-LOG: onJsConfirm (url: " + url + ", message: " + message + ", result: " + result + ")");
if (javaScriptHandler == null) {
result.cancel();
return false;
}
return javaScriptHandler.onJsConfirm(view, url, message, result);
}
@Override
public boolean onJsPrompt(WebView view, String url, String message, String defaultValue, JsPromptResult result) {
if (DEBUG)
logInfo("DEBUG-LOG: onJsPrompt (url: " + url + ", message: " + message + ", defaultValue: " + defaultValue + ", result: " + result + ")");
if (javaScriptHandler == null) {
result.cancel();
return false;
}
return javaScriptHandler.onJsPrompt(view, url, message, defaultValue, result);
}
@Override
public boolean onCreateWindow(WebView view, boolean isDialog, boolean isUserGesture, Message resultMsg) {
if (DEBUG)
logInfo("DEBUG-LOG: onCreateWindow (isDialog: " + isDialog + ", isUserGesture: " + isUserGesture + ", resultMsg: " + resultMsg + ")");
if (windowHandler == null)
return false;
return windowHandler.onCreateWindow(view, isDialog, isUserGesture, resultMsg);
}
@Override
public void onCloseWindow(WebView window) {
if (DEBUG)
logInfo("DEBUG-LOG: onCloseWindow...");
if (windowHandler == null)
return;
windowHandler.onCloseWindow(window);
}
@Override
public void onShowCustomView(View view, int requestedOrientation, CustomViewCallback callback) {
if (DEBUG)
logInfo("DEBUG-LOG: onShowCustomView (callback: " + callback + ")");
if (javaScriptHandler == null)
return;
customViewHandler.onShowCustomView(view, requestedOrientation, callback);
}
@Override
public void onShowCustomView(View view, CustomViewCallback callback) {
onShowCustomView(view, 0, callback);
}
@Override
public void onHideCustomView() {
if (DEBUG)
logInfo("DEBUG-LOG: onHideCustomView...");
if (javaScriptHandler == null)
return;
customViewHandler.onHideCustomView();
}
@Override
public void onReceivedIcon(WebView view, Bitmap icon) {
if (DEBUG)
logInfo("DEBUG-LOG: onReceivedIcon (icon: " + icon + ")");
if (pageDetailsHandler == null)
return;
pageDetailsHandler.onReceivedIcon(view, icon);
}
@Override
public void onReceivedTitle(WebView view, String title) {
if (DEBUG)
logInfo("DEBUG-LOG: onReceivedTitle (title: " + title + ")");
if (pageDetailsHandler == null)
return;
pageDetailsHandler.onReceivedTitle(view, title);
}
@Override
public void onReceivedTouchIconUrl(WebView view, String url, boolean precomposed) {
if (DEBUG)
logInfo("DEBUG-LOG: onReceivedTouchIconUrl (url: " + url + ", precomposed: " + precomposed + ")");
if (pageDetailsHandler == null)
return;
pageDetailsHandler.onReceivedTouchIconUrl(view, url, precomposed);
}
@Override
public void onRequestFocus(WebView view) {
if (DEBUG)
logInfo("DEBUG-LOG: onRequestFocus...");
if (pageDetailsHandler == null)
return;
pageDetailsHandler.onRequestFocus(view);
}
});
setWebViewClient(new WebViewClient() {
@Override
public void doUpdateVisitedHistory(WebView view, String url, boolean isReload) {
if (DEBUG)
logInfo("DEBUG-LOG: doUpdateVisitedHistory (url: " + url + ", isReload: " + isReload + ")");
if (pageHandler == null)
return;
pageHandler.doUpdateVisitedHistory(view, url, isReload);
}
@Override
public void onLoadResource(WebView view, String url) {
if (DEBUG)
logInfo("DEBUG-LOG: onLoadResource (url: " + url + ")");
if (pageHandler == null)
return;
pageHandler.onLoadResource(view, url);
}
@Override
public void onPageFinished(WebView view, String url) {
if (DEBUG)
logInfo("DEBUG-LOG: onPageFinished (url: " + url + ")");
CyborgWebView.this.onPageFinished(view, url);
}
@Override
public void onPageStarted(WebView view, String url, Bitmap favicon) {
if (DEBUG)
logInfo("DEBUG-LOG: onPageStarted (url: " + url + ", favicon: " + favicon + ")");
finishedURL = null;
if (pageHandler == null)
return;
pageHandler.onPageStarted(view, url, favicon);
}
@Override
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
if (DEBUG)
logInfo("DEBUG-LOG: onReceivedError (errorCode: " + errorCode + ", description: " + description + ", failingUrl: " + failingUrl + ")");
if (pageHandler == null)
return;
pageHandler.onReceivedError(view, errorCode, description, failingUrl);
}
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if (DEBUG)
logInfo("DEBUG-LOG: shouldOverrideUrlLoading: " + url);
if (url.toLowerCase().equals("about:blank"))
return super.shouldOverrideUrlLoading(view, url);
if (URLUtil.isHttpsUrl(url) || URLUtil.isHttpUrl(url)) {
if (pageHandler != null && pageHandler.shouldOverrideUrlLoading(view, url))
return true;
return super.shouldOverrideUrlLoading(view, url);
}
if (getContext() instanceof Activity && resolveUrl(url))
return true;
if (pageHandler != null && pageHandler.resolveNoneHttpUrl(view, url))
return true;
if (!(getContext() instanceof Activity))
return true;
try {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
getContext().startActivity(intent);
} catch (Throwable e) {
logError(e);
}
return true;
}
/*
* requestHandler
*/
@Override
public void onFormResubmission(WebView view, Message dontResend, Message resend) {
if (DEBUG)
logInfo("DEBUG-LOG: onFormResubmission...");
if (requestHandler == null)
return;
requestHandler.onFormResubmission(view, dontResend, resend);
}
@Override
public void onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) {
if (DEBUG)
logInfo("DEBUG-LOG: onReceivedHttpAuthRequest (host: " + host + ", realm: " + realm + ")");
if (requestHandler == null)
return;
requestHandler.onReceivedHttpAuthRequest(view, handler, host, realm);
}
@Override
@SuppressWarnings("unused")
public void onReceivedLoginRequest(WebView view, String realm, String account, String args) {
if (DEBUG)
logInfo("DEBUG-LOG: onReceivedLoginRequest (realm: " + realm + ", account: " + account + ", args: " + args + ")");
if (requestHandler == null)
return;
requestHandler.onReceivedLoginRequest(view, realm, account, args);
}
@Override
public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) {
if (DEBUG)
logInfo("DEBUG-LOG: onReceivedSslError (error: " + error + ")");
if (requestHandler == null)
return;
requestHandler.onReceivedSslError(view, handler, error);
}
@Override
public WebResourceResponse shouldInterceptRequest(WebView view, String url) {
if (DEBUG)
logInfo("DEBUG-LOG: shouldInterceptRequest: " + url);
if (requestHandler == null)
return null;
return requestHandler.shouldInterceptRequest(view, url);
}
@Override
public void onTooManyRedirects(WebView view, Message cancelMsg, Message continueMsg) {
if (DEBUG)
logInfo("DEBUG-LOG: onTooManyRedirects...");
if (requestHandler == null)
return;
requestHandler.onTooManyRedirects(view, cancelMsg, continueMsg);
}
@Override
public void onUnhandledKeyEvent(WebView view, KeyEvent event) {
if (DEBUG)
logInfo("DEBUG-LOG: onUnhandledKeyEvent: " + event);
if (systemHandler == null)
return;
systemHandler.onUnhandledKeyEvent(view, event);
}
@Override
public void onScaleChanged(WebView view, float oldScale, float newScale) {
if (DEBUG)
logInfo("DEBUG-LOG: onScaleChanged: " + oldScale + " => " + newScale);
if (systemHandler == null)
return;
systemHandler.onScaleChanged(view, oldScale, newScale);
}
@Override
public boolean shouldOverrideKeyEvent(WebView view, KeyEvent event) {
if (DEBUG)
logInfo("DEBUG-LOG: shouldOverrideKeyEvent: " + event);
if (systemHandler == null)
return false;
return systemHandler.shouldOverrideKeyEvent(view, event);
}
});
}
Aggregations