/* Copyright (C) 2016-2017 Andreas Shimokawa, Carsten Pfeiffer, Daniele Gobbetti, Lem Dulfo, Uwe Hermann This file is part of Gadgetbridge. Gadgetbridge is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Gadgetbridge is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . */ package nodomain.freeyourgadget.gadgetbridge.activities; import android.content.Context; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.support.v4.app.NavUtils; import android.view.MenuItem; import android.view.View; import android.view.ViewGroup; import android.webkit.JavascriptInterface; import android.webkit.WebSettings; import android.webkit.WebView; import android.widget.FrameLayout; import android.widget.Toast; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.UUID; import nodomain.freeyourgadget.gadgetbridge.GBApplication; import nodomain.freeyourgadget.gadgetbridge.R; import nodomain.freeyourgadget.gadgetbridge.impl.GBDevice; import nodomain.freeyourgadget.gadgetbridge.model.DeviceService; import nodomain.freeyourgadget.gadgetbridge.service.devices.pebble.webview.GBChromeClient; import nodomain.freeyourgadget.gadgetbridge.service.devices.pebble.webview.GBWebClient; import nodomain.freeyourgadget.gadgetbridge.service.devices.pebble.webview.JSInterface; import nodomain.freeyourgadget.gadgetbridge.util.GB; import nodomain.freeyourgadget.gadgetbridge.util.WebViewSingleton; public class ExternalPebbleJSActivity extends AbstractGBActivity { private static final Logger LOG = LoggerFactory.getLogger(ExternalPebbleJSActivity.class); private Uri confUri; private WebView myWebView; public static final String START_BG_WEBVIEW = "start_webview"; public static final String SHOW_CONFIG = "configure"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); GBDevice currentDevice; UUID currentUUID; Bundle extras = getIntent().getExtras(); if (extras != null) { currentDevice = extras.getParcelable(GBDevice.EXTRA_DEVICE); currentUUID = (UUID) extras.getSerializable(DeviceService.EXTRA_APP_UUID); if (GBApplication.getPrefs().getBoolean("pebble_enable_background_javascript", false)) { if (extras.getBoolean(SHOW_CONFIG, false)) { WebViewSingleton.runJavascriptInterface(currentDevice, currentUUID); } else if (extras.getBoolean(START_BG_WEBVIEW, false)) { WebViewSingleton.getInstance(this); finish(); } } } else { throw new IllegalArgumentException("Must provide a device when invoking this activity"); } if (GBApplication.getPrefs().getBoolean("pebble_enable_background_javascript", false)) { setContentView(R.layout.activity_external_pebble_js); myWebView = WebViewSingleton.getWebView(this); if (myWebView.getParent() != null) { ((ViewGroup) myWebView.getParent()).removeView(myWebView); } myWebView.setWillNotDraw(false); myWebView.removeJavascriptInterface("GBActivity"); myWebView.addJavascriptInterface(new ActivityJSInterface(ExternalPebbleJSActivity.this), "GBActivity"); FrameLayout fl = (FrameLayout) findViewById(R.id.webview_placeholder); fl.addView(myWebView); myWebView.addOnAttachStateChangeListener(new View.OnAttachStateChangeListener() { @Override public void onViewAttachedToWindow(View v) { v.setLayerType(View.LAYER_TYPE_HARDWARE, null); } @Override public void onViewDetachedFromWindow(View v) { v.removeOnAttachStateChangeListener(this); FrameLayout fl = (FrameLayout) findViewById(R.id.webview_placeholder); fl.removeAllViews(); } }); } else { setContentView(R.layout.activity_legacy_external_pebble_js); myWebView = (WebView) findViewById(R.id.configureWebview); myWebView.clearCache(true); myWebView.setWebViewClient(new GBWebClient()); myWebView.setWebChromeClient(new GBChromeClient()); WebSettings webSettings = myWebView.getSettings(); webSettings.setJavaScriptEnabled(true); //needed to access the DOM webSettings.setDomStorageEnabled(true); //needed for localstorage webSettings.setDatabaseEnabled(true); JSInterface gbJSInterface = new JSInterface(currentDevice, currentUUID); myWebView.addJavascriptInterface(gbJSInterface, "GBjs"); myWebView.addJavascriptInterface(new ActivityJSInterface(ExternalPebbleJSActivity.this), "GBActivity"); myWebView.loadUrl("file:///android_asset/app_config/configure.html"); } } @Override protected void onResume() { super.onResume(); String queryString = ""; if (confUri != null) { //getting back with configuration data LOG.debug("WEBVIEW returned config: " + confUri.toString()); try { queryString = confUri.getEncodedQuery(); } catch (IllegalArgumentException e) { GB.toast("returned uri: " + confUri.toString(), Toast.LENGTH_LONG, GB.ERROR); } myWebView.loadUrl("file:///android_asset/app_config/configure.html?" + queryString); } } @Override protected void onNewIntent(Intent incoming) { incoming.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK); super.onNewIntent(incoming); confUri = incoming.getData(); } @Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case android.R.id.home: NavUtils.navigateUpFromSameTask(this); return true; } return super.onOptionsItemSelected(item); } private class ActivityJSInterface { Context mContext; ActivityJSInterface(Context c) { mContext = c; } @JavascriptInterface public void closeActivity() { NavUtils.navigateUpFromSameTask((ExternalPebbleJSActivity) mContext); } } }