/* Copyright 2017 Thomas Schneider * * This file is a part of Fedilab * * This program is free software; you can redistribute it and/or modify it under the terms of the * GNU General Public License as published by the Free Software Foundation; either version 3 of the * License, or (at your option) any later version. * * Fedilab 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 General * Public License for more details. * * You should have received a copy of the GNU General Public License along with Fedilab; if not, * see . */ package app.fedilab.android.activities; import android.Manifest; import android.annotation.SuppressLint; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.content.pm.PackageManager; import android.database.sqlite.SQLiteDatabase; import android.graphics.drawable.Drawable; import android.graphics.drawable.LayerDrawable; import android.net.Uri; import android.os.AsyncTask; import android.os.Build; import android.os.Bundle; import android.os.Handler; import android.os.Looper; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.view.ViewGroup; import android.view.WindowManager; import android.widget.ArrayAdapter; import android.widget.FrameLayout; import android.widget.Toast; import androidx.appcompat.app.AlertDialog; import androidx.core.app.ActivityCompat; import androidx.core.content.ContextCompat; import org.jetbrains.annotations.NotNull; import java.lang.ref.WeakReference; import java.util.ArrayList; import java.util.List; import app.fedilab.android.R; import app.fedilab.android.client.API; import app.fedilab.android.client.APIResponse; import app.fedilab.android.helper.CountDrawable; import app.fedilab.android.helper.Helper; import app.fedilab.android.sqlite.DomainBlockDAO; import app.fedilab.android.sqlite.Sqlite; import app.fedilab.android.webview.CustomWebview; import app.fedilab.android.webview.MastalabWebChromeClient; import app.fedilab.android.webview.MastalabWebViewClient; import es.dmoral.toasty.Toasty; /** * Created by Thomas on 24/06/2017. * Webview activity */ public class WebviewActivity extends BaseActivity { public static List trackingDomains; private String url; private String peertubeLinkToFetch; private boolean peertubeLink; private CustomWebview webView; private Menu defaultMenu; private MastalabWebViewClient mastalabWebViewClient; @SuppressLint("SetJavaScriptEnabled") @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); SharedPreferences sharedpreferences = getSharedPreferences(Helper.APP_PREFS, MODE_PRIVATE); int theme = sharedpreferences.getInt(Helper.SET_THEME, Helper.THEME_DARK); switch (theme) { case Helper.THEME_LIGHT: setTheme(R.style.AppTheme_Fedilab); break; case Helper.THEME_BLACK: setTheme(R.style.AppThemeBlack); break; default: setTheme(R.style.AppThemeDark); } setContentView(R.layout.activity_webview); Bundle b = getIntent().getExtras(); if (b != null) { url = b.getString("url", null); peertubeLinkToFetch = b.getString("peertubeLinkToFetch", null); peertubeLink = b.getBoolean("peertubeLink", false); } if (url == null) finish(); if (getSupportActionBar() != null) getSupportActionBar().setDisplayHomeAsUpEnabled(true); webView = Helper.initializeWebview(WebviewActivity.this, R.id.webview, null); setTitle(""); FrameLayout webview_container = findViewById(R.id.webview_container); final ViewGroup videoLayout = findViewById(R.id.videoLayout); // Your own view, read class comments webView.getSettings().setJavaScriptEnabled(true); MastalabWebChromeClient mastalabWebChromeClient = new MastalabWebChromeClient(WebviewActivity.this, webView, webview_container, videoLayout); mastalabWebChromeClient.setOnToggledFullscreen(fullscreen -> { if (fullscreen) { videoLayout.setVisibility(View.VISIBLE); WindowManager.LayoutParams attrs = getWindow().getAttributes(); attrs.flags |= WindowManager.LayoutParams.FLAG_FULLSCREEN; attrs.flags |= WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON; getWindow().setAttributes(attrs); getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE); } else { WindowManager.LayoutParams attrs = getWindow().getAttributes(); attrs.flags &= ~WindowManager.LayoutParams.FLAG_FULLSCREEN; attrs.flags &= ~WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON; getWindow().setAttributes(attrs); getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_VISIBLE); videoLayout.setVisibility(View.GONE); } }); webView.setWebChromeClient(mastalabWebChromeClient); mastalabWebViewClient = new MastalabWebViewClient(WebviewActivity.this); webView.setWebViewClient(mastalabWebViewClient); webView.setDownloadListener((url, userAgent, contentDisposition, mimetype, contentLength) -> { if (Build.VERSION.SDK_INT >= 23) { if (ContextCompat.checkSelfPermission(WebviewActivity.this, Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED || ContextCompat.checkSelfPermission(WebviewActivity.this, Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) { ActivityCompat.requestPermissions(WebviewActivity.this, new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE, Manifest.permission.READ_EXTERNAL_STORAGE}, Helper.EXTERNAL_STORAGE_REQUEST_CODE); } else { Helper.manageDownloads(WebviewActivity.this, url); } } else { Helper.manageDownloads(WebviewActivity.this, url); } }); if (!url.toLowerCase().startsWith("http://") && !url.toLowerCase().startsWith("https://")) url = "http://" + url; if (trackingDomains == null) { AsyncTask.execute(() -> { SQLiteDatabase db = Sqlite.getInstance(getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open(); trackingDomains = new DomainBlockDAO(WebviewActivity.this, db).getAll(); if (trackingDomains == null) trackingDomains = new ArrayList<>(); // Get a handler that can be used to post to the main thread Handler mainHandler = new Handler(getMainLooper()); Runnable myRunnable = () -> webView.loadUrl(url); mainHandler.post(myRunnable); }); } else webView.loadUrl(url); } public void setCount(Context context, String count) { if (defaultMenu != null && !peertubeLink) { MenuItem menuItem = defaultMenu.findItem(R.id.action_block); LayerDrawable icon = (LayerDrawable) menuItem.getIcon(); CountDrawable badge; // Reuse drawable if possible Drawable reuse = icon.findDrawableByLayerId(R.id.ic_block_count); if (reuse instanceof CountDrawable) { badge = (CountDrawable) reuse; } else { badge = new CountDrawable(context); } badge.setCount(count); icon.mutate(); icon.setDrawableByLayerId(R.id.ic_block_count, badge); } } @Override public boolean onPrepareOptionsMenu(Menu menu) { if (!peertubeLink) setCount(WebviewActivity.this, "0"); defaultMenu = menu; return super.onPrepareOptionsMenu(menu); } @Override public boolean onCreateOptionsMenu(@NotNull Menu menu) { getMenuInflater().inflate(R.menu.main_webview, menu); defaultMenu = menu; if (peertubeLink) { menu.findItem(R.id.action_go).setVisible(false); menu.findItem(R.id.action_block).setVisible(false); menu.findItem(R.id.action_comment).setVisible(true); } SharedPreferences sharedpreferences = getSharedPreferences(Helper.APP_PREFS, MODE_PRIVATE); int theme = sharedpreferences.getInt(Helper.SET_THEME, Helper.THEME_DARK); if (theme == Helper.THEME_LIGHT) Helper.colorizeIconMenu(menu, R.color.black); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { int itemId = item.getItemId(); if (itemId == android.R.id.home) { finish(); return true; } else if (itemId == R.id.action_block) { SharedPreferences sharedpreferences = getSharedPreferences(Helper.APP_PREFS, MODE_PRIVATE); final int theme = sharedpreferences.getInt(Helper.SET_THEME, Helper.THEME_DARK); List domains = mastalabWebViewClient.getDomains(); final ArrayAdapter arrayAdapter = new ArrayAdapter<>(WebviewActivity.this, R.layout.domains_blocked); arrayAdapter.addAll(domains); int style; if (theme == Helper.THEME_DARK) { style = R.style.DialogDark; } else if (theme == Helper.THEME_BLACK) { style = R.style.DialogBlack; } else { style = R.style.Dialog; } AlertDialog.Builder builder = new AlertDialog.Builder(WebviewActivity.this, style); builder.setTitle(R.string.list_of_blocked_domains); builder.setNegativeButton(R.string.close, (dialog, which) -> dialog.dismiss()); builder.setAdapter(arrayAdapter, (dialog, which) -> { String strName = arrayAdapter.getItem(which); assert strName != null; Toasty.info(WebviewActivity.this, strName, Toast.LENGTH_LONG).show(); }); builder.show(); return true; } else if (itemId == R.id.action_go) { Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); try { startActivity(browserIntent); } catch (Exception e) { Toasty.error(WebviewActivity.this, getString(R.string.toast_error), Toast.LENGTH_LONG).show(); } return true; } else if (itemId == R.id.action_comment) { Toasty.info(WebviewActivity.this, getString(R.string.retrieve_remote_status), Toast.LENGTH_LONG).show(); new connnectAsync(new WeakReference<>(WebviewActivity.this), url, peertubeLinkToFetch); return true; } return super.onOptionsItemSelected(item); } public void setUrl(String newUrl) { this.url = newUrl; } @Override public void onPause() { super.onPause(); if (webView != null) webView.onPause(); } @Override public void onResume() { super.onResume(); if (webView != null) webView.onResume(); } @Override public void onBackPressed() { if (webView.canGoBack()) { webView.goBack(); } else { super.onBackPressed(); } } @Override public void onDestroy() { super.onDestroy(); if (webView != null) webView.destroy(); } static class connnectAsync { private final WeakReference contextReference; private final String url; private final String peertubeLinkToFetch; connnectAsync(WeakReference contextReference, String url, String peertubeLinkToFetch) { this.contextReference = contextReference; this.url = url; this.peertubeLinkToFetch = peertubeLinkToFetch; doInBackground(); } protected void doInBackground() { new Thread(() -> { List remoteStatuses = null; if (url != null) { APIResponse search = new API(contextReference.get()).search(peertubeLinkToFetch); if (search != null && search.getResults() != null) { remoteStatuses = search.getResults().getStatuses(); } } Handler mainHandler = new Handler(Looper.getMainLooper()); List finalRemoteStatuses = remoteStatuses; Runnable myRunnable = () -> { Intent intent = new Intent(contextReference.get(), TootActivity.class); Bundle b = new Bundle(); if (finalRemoteStatuses == null || finalRemoteStatuses.size() == 0) { Toasty.error(contextReference.get(), contextReference.get().getString(R.string.toast_error), Toast.LENGTH_LONG).show(); return; } if (finalRemoteStatuses.get(0).getReblog() != null) { b.putParcelable("tootReply", finalRemoteStatuses.get(0).getReblog()); } else { b.putParcelable("tootReply", finalRemoteStatuses.get(0)); } intent.putExtras(b); //Put your id to your next Intent contextReference.get().startActivity(intent); }; mainHandler.post(myRunnable); }).start(); } } }