dandelion/app/src/main/java/com/github/dfa/diaspora_android/activity/MainActivity.java

1086 lines
42 KiB
Java
Raw Normal View History

2016-03-03 17:46:31 +01:00
/*
This file is part of the Diaspora for Android.
2016-03-03 17:46:31 +01:00
Diaspora for Android is free software: you can redistribute it and/or modify
2016-03-03 17:46:31 +01:00
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.
Diaspora for Android is distributed in the hope that it will be useful,
2016-03-03 17:46:31 +01:00
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 the Diaspora for Android.
2016-03-03 17:46:31 +01:00
If not, see <http://www.gnu.org/licenses/>.
*/
2016-03-29 19:38:50 +02:00
package com.github.dfa.diaspora_android.activity;
2016-03-03 17:46:31 +01:00
import android.Manifest;
import android.animation.ObjectAnimator;
2016-03-03 17:46:31 +01:00
import android.annotation.SuppressLint;
import android.app.Activity;
2016-06-09 01:03:50 +02:00
import android.app.AlarmManager;
2016-03-03 17:46:31 +01:00
import android.app.AlertDialog;
2016-06-09 01:03:50 +02:00
import android.app.PendingIntent;
2016-03-03 17:46:31 +01:00
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.pm.PackageManager;
import android.graphics.Bitmap;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.os.Handler;
2016-06-09 01:03:50 +02:00
import android.os.StrictMode;
2016-03-03 17:46:31 +01:00
import android.provider.MediaStore;
import android.support.annotation.NonNull;
2016-07-31 15:16:22 +02:00
import android.support.design.widget.AppBarLayout;
2016-06-05 01:42:10 +02:00
import android.support.design.widget.CollapsingToolbarLayout;
2016-03-03 17:46:31 +01:00
import android.support.design.widget.NavigationView;
import android.support.design.widget.Snackbar;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
import android.support.v4.widget.SwipeRefreshLayout;
import android.support.v7.app.ActionBarDrawerToggle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.ActionMenuView;
2016-03-03 17:46:31 +01:00
import android.support.v7.widget.Toolbar;
2016-03-08 15:42:02 +01:00
import android.text.Html;
import android.text.SpannableString;
import android.text.method.LinkMovementMethod;
import android.text.util.Linkify;
import android.util.Log;
import android.view.Gravity;
import android.view.KeyEvent;
2016-03-03 17:46:31 +01:00
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.WindowManager;
import android.view.inputmethod.EditorInfo;
import android.view.inputmethod.InputMethodManager;
2016-03-03 17:46:31 +01:00
import android.webkit.JavascriptInterface;
import android.webkit.ValueCallback;
import android.webkit.WebChromeClient;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.LinearLayout;
2016-03-03 17:46:31 +01:00
import android.widget.ProgressBar;
import android.widget.TextView;
import android.widget.Toast;
2016-03-03 17:46:31 +01:00
2016-03-29 19:38:50 +02:00
import com.github.dfa.diaspora_android.App;
import com.github.dfa.diaspora_android.R;
import com.github.dfa.diaspora_android.data.AppSettings;
import com.github.dfa.diaspora_android.data.PodUserProfile;
2016-03-29 19:38:50 +02:00
import com.github.dfa.diaspora_android.listener.WebUserProfileChangedListener;
import com.github.dfa.diaspora_android.ui.ContextMenuWebView;
import com.github.dfa.diaspora_android.ui.CustomWebViewClient;
2016-03-29 19:38:50 +02:00
import com.github.dfa.diaspora_android.util.Helpers;
2016-03-24 13:56:30 +01:00
import org.json.JSONException;
2016-03-03 17:46:31 +01:00
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
2016-04-23 20:58:37 +02:00
import java.text.DateFormat;
2016-03-03 17:46:31 +01:00
import java.text.SimpleDateFormat;
import java.util.Date;
2016-04-28 21:36:27 +02:00
import java.util.Locale;
2016-03-03 17:46:31 +01:00
import butterknife.BindView;
import butterknife.ButterKnife;
import butterknife.OnClick;
2016-06-09 01:03:50 +02:00
import info.guardianproject.netcipher.NetCipher;
import info.guardianproject.netcipher.web.WebkitProxy;
2016-03-03 17:46:31 +01:00
public class MainActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener, WebUserProfileChangedListener {
2016-03-03 17:46:31 +01:00
static final int INPUT_FILE_REQUEST_CODE = 1;
private static final int REQUEST_CODE_ASK_PERMISSIONS = 123;
public static final int REQUEST_CODE_ASK_PERMISSIONS_SAVE_IMAGE = 124;
public static final String ACTION_OPEN_URL = "com.github.dfa.diaspora_android.MainActivity.open_url";
public static final String ACTION_CHANGE_ACCOUNT = "com.github.dfa.diaspora_android.MainActivity.change_account";
2016-07-26 22:52:26 +02:00
public static final String ACTION_CLEAR_CACHE = "com.github.dfa.diaspora_android.MainActivity.clear_cache";
2016-06-18 15:53:49 +02:00
public static final String URL_MESSAGE = "URL_MESSAGE";
2016-03-24 13:56:30 +01:00
private App app;
private String podDomain;
private Menu menu;
private int notificationCount = 0;
private int conversationCount = 0;
private ValueCallback<Uri[]> mFilePathCallback;
private String mCameraPhotoPath;
private WebSettings webSettings;
2016-03-24 11:58:28 +01:00
private AppSettings appSettings;
private PodUserProfile podUserProfile;
private final Handler uiHandler = new Handler();
private CustomWebViewClient webViewClient;
private Snackbar snackbarExitApp;
2016-06-24 13:31:01 +02:00
private Snackbar snackbarNewNotification;
private Snackbar snackbarNoInternet;
/**
* UI Bindings
*/
@BindView(R.id.swipe)
SwipeRefreshLayout swipeRefreshLayout;
@BindView(R.id.progressBar)
ProgressBar progressBar;
@BindView(R.id.toolbar)
Toolbar toolbarTop;
@BindView(R.id.toolbar2)
ActionMenuView toolbarBottom;
@BindView(R.id.webView)
ContextMenuWebView webView;
@BindView(R.id.main__navigaion_view)
2016-06-04 21:46:54 +02:00
NavigationView navView;
@BindView(R.id.main__layout)
DrawerLayout navDrawer;
2016-06-05 01:42:10 +02:00
@BindView(R.id.collapsing_toolbar)
CollapsingToolbarLayout toolbarTopCollapsing;
// NavHeader cannot be bound by Butterknife
private TextView navheaderTitle;
private TextView navheaderDescription;
private ImageView navheaderImage;
2016-03-03 17:46:31 +01:00
/**
* END UI Bindings
*/
2016-03-03 17:46:31 +01:00
@SuppressLint("SetJavaScriptEnabled")
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Bind UI
2016-06-04 11:11:51 +02:00
setContentView(R.layout.main__activity);
ButterKnife.bind(this);
2016-03-24 13:56:30 +01:00
app = (App) getApplication();
appSettings = app.getSettings();
2016-06-05 17:25:11 +02:00
podUserProfile = app.getPodUserProfile();
podUserProfile.setCallbackHandler(uiHandler);
podUserProfile.setListener(this);
2016-03-03 17:46:31 +01:00
if (appSettings.isProxyEnabled()) {
if (!setProxy(appSettings.getProxyHost(), appSettings.getProxyPort())) {
Toast.makeText(MainActivity.this, R.string.toast_set_proxy_failed, Toast.LENGTH_SHORT).show();
2016-06-16 23:01:23 +02:00
}
} else if (appSettings.wasProxyEnabled()) {
resetProxy();
2016-06-16 23:01:23 +02:00
}
setupWebView(savedInstanceState);
// Setup toolbar
setSupportActionBar(toolbarTop);
getMenuInflater().inflate(R.menu.main__menu_bottom, toolbarBottom.getMenu());
toolbarBottom.setOnMenuItemClickListener(new ActionMenuView.OnMenuItemClickListener() {
public boolean onMenuItemClick(MenuItem item) {
return MainActivity.this.onOptionsItemSelected(item);
2016-03-25 18:25:59 +01:00
}
});
2016-06-07 19:13:37 +02:00
setTitle(R.string.app_name);
2016-03-25 18:25:59 +01:00
//Setup snackbar
snackbarExitApp = Snackbar
.make(swipeRefreshLayout, R.string.confirm_exit, Snackbar.LENGTH_LONG)
.setAction(android.R.string.yes, new View.OnClickListener() {
@Override
public void onClick(View view) {
2016-07-31 15:16:22 +02:00
finish();
moveTaskToBack(true);
}
});
2016-06-24 13:31:01 +02:00
snackbarNewNotification = Snackbar
.make(swipeRefreshLayout, R.string.new_notifications, Snackbar.LENGTH_LONG)
.setAction(android.R.string.yes, new View.OnClickListener() {
@Override
public void onClick(View view) {
if (Helpers.isOnline(MainActivity.this)) {
webView.loadUrl("https://" + podDomain + "/notifications");
setTitle(R.string.title_notifications);
} else {
Snackbar.make(swipeRefreshLayout, R.string.no_internet, Snackbar.LENGTH_LONG).show();
}
}
});
snackbarNoInternet = Snackbar.make(swipeRefreshLayout, R.string.no_internet, Snackbar.LENGTH_LONG);
// Load app settings
setupNavigationSlider();
2016-03-03 17:46:31 +01:00
progressBar = (ProgressBar) findViewById(R.id.progressBar);
podDomain = appSettings.getPodDomain();
2016-03-03 17:46:31 +01:00
swipeRefreshLayout.setColorSchemeResources(R.color.colorPrimary,
2016-03-03 17:46:31 +01:00
R.color.fab_big);
2016-06-18 15:53:49 +02:00
String url = "https://" + podDomain;
if (savedInstanceState == null) {
if (Helpers.isOnline(MainActivity.this)) {
webView.loadData("", "text/html", null);
2016-06-18 15:53:49 +02:00
webView.loadUrl(url);
} else {
2016-06-24 13:31:01 +02:00
snackbarNoInternet.show();
}
2016-03-03 17:46:31 +01:00
}
2016-07-31 15:16:22 +02:00
if (!appSettings.isIntellihideToolbars()) {
AppBarLayout.LayoutParams params = (AppBarLayout.LayoutParams) toolbarTopCollapsing.getLayoutParams();
params.setScrollFlags(0); // clear all scroll flags
}
handleIntent(getIntent());
}
private void setupWebView(Bundle savedInstanceState) {
2016-03-03 17:46:31 +01:00
webSettings = webView.getSettings();
//TODO: Dangerous on API < 17. Can we do anything about this?
webSettings.setJavaScriptEnabled(true);
webSettings.setUseWideViewPort(true);
webSettings.setLoadWithOverviewMode(true);
webSettings.setDomStorageEnabled(true);
webSettings.setMinimumFontSize(appSettings.getMinimumFontSize());
webSettings.setLoadsImagesAutomatically(appSettings.isLoadImages());
webSettings.setAppCacheEnabled(true);
if (savedInstanceState != null) {
webView.restoreState(savedInstanceState);
}
2016-03-03 17:46:31 +01:00
if (android.os.Build.VERSION.SDK_INT >= 21) {
WebView.enableSlowWholeDocumentDraw();
webSettings.setMixedContentMode(WebSettings.MIXED_CONTENT_ALWAYS_ALLOW);
}
this.registerForContextMenu(webView);
webView.setParentActivity(this);
webView.setOverScrollMode(WebView.OVER_SCROLL_ALWAYS);
// Setup WebView
//TODO: Dangerous on API < 17. Can we do anything about this?
webView.addJavascriptInterface(new JavaScriptInterface(), "AndroidBridge");
2016-03-03 17:46:31 +01:00
2016-06-09 01:03:50 +02:00
//Set proxy
if (appSettings.isProxyEnabled()) {
if (!setProxy())
Toast.makeText(this, R.string.toast_set_proxy_failed, Toast.LENGTH_LONG).show();
2016-06-09 01:03:50 +02:00
}
2016-03-03 17:46:31 +01:00
/*
* WebViewClient
*/
webViewClient = new CustomWebViewClient(app, swipeRefreshLayout, webView);
webView.setWebViewClient(webViewClient);
2016-03-03 17:46:31 +01:00
swipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
2016-03-03 17:46:31 +01:00
@Override
public void onRefresh() {
if (Helpers.isOnline(MainActivity.this)) {
webView.reload();
} else {
2016-06-24 13:31:01 +02:00
snackbarNoInternet.show();
swipeRefreshLayout.setRefreshing(false);
2016-03-03 17:46:31 +01:00
}
}
});
/*
* WebChromeClient
*/
webView.setWebChromeClient(new WebChromeClient() {
public void onProgressChanged(WebView wv, int progress) {
progressBar.setProgress(progress);
if (progress > 0 && progress <= 60) {
Helpers.getNotificationCount(wv);
2016-03-24 13:56:30 +01:00
Helpers.getUserProfile(wv);
2016-03-03 17:46:31 +01:00
}
if (progress > 60) {
2016-06-05 17:25:11 +02:00
Helpers.applyDiasporaMobileSiteChanges(wv);
2016-03-03 17:46:31 +01:00
}
if (progress == 100) {
progressBar.setVisibility(View.GONE);
} else {
progressBar.setVisibility(View.VISIBLE);
}
}
@Override
public boolean onShowFileChooser(WebView webView, ValueCallback<Uri[]> filePathCallback, FileChooserParams fileChooserParams) {
if (mFilePathCallback != null) mFilePathCallback.onReceiveValue(null);
mFilePathCallback = filePathCallback;
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
// Create the File where the photo should go
File photoFile;
2016-03-03 17:46:31 +01:00
try {
photoFile = createImageFile();
takePictureIntent.putExtra("PhotoPath", mCameraPhotoPath);
} catch (IOException ex) {
// Error occurred while creating the File
Snackbar.make(swipeRefreshLayout, R.string.image, Snackbar.LENGTH_LONG).show();
2016-03-03 17:46:31 +01:00
return false;
}
// Continue only if the File was successfully created
if (photoFile != null) {
mCameraPhotoPath = "file:" + photoFile.getAbsolutePath();
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT,
Uri.fromFile(photoFile));
} else {
takePictureIntent = null;
}
}
Intent contentSelectionIntent = new Intent(Intent.ACTION_GET_CONTENT);
contentSelectionIntent.addCategory(Intent.CATEGORY_OPENABLE);
contentSelectionIntent.setType("image/*");
Intent[] intentArray;
if (takePictureIntent != null) {
intentArray = new Intent[]{takePictureIntent};
} else {
intentArray = new Intent[0];
}
Intent chooserIntent = new Intent(Intent.ACTION_CHOOSER);
chooserIntent.putExtra(Intent.EXTRA_INTENT, contentSelectionIntent);
chooserIntent.putExtra(Intent.EXTRA_TITLE, "Image Chooser");
chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS, intentArray);
startActivityForResult(chooserIntent, INPUT_FILE_REQUEST_CODE);
return true;
}
});
}
private void setupNavigationSlider() {
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
2016-06-04 21:46:54 +02:00
this, navDrawer, toolbarTop, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
navDrawer.addDrawerListener(toggle);
toggle.syncState();
2016-06-04 21:46:54 +02:00
//NavigationView navView = ButterKnife.findById(this, R.id.nav_view);
navView.setNavigationItemSelectedListener(this);
2016-06-04 21:46:54 +02:00
View navHeader = navView.getHeaderView(0);
navheaderTitle = ButterKnife.findById(navHeader, R.id.navheader_title);
navheaderDescription = ButterKnife.findById(navHeader, R.id.podselection__podupti_notice);
navheaderImage = ButterKnife.findById(navHeader, R.id.navheader_user_image);
if (!appSettings.getName().equals("")) {
navheaderTitle.setText(appSettings.getName());
}
if (!appSettings.getPodDomain().equals("")) {
navheaderDescription.setText(appSettings.getPodDomain());
}
if (!appSettings.getAvatarUrl().equals("")) {
// Try to load image
if (!app.getAvatarImageLoader().loadToImageView(navheaderImage)) {
// If not yet loaded, start download
app.getAvatarImageLoader().startImageDownload(navheaderImage, appSettings.getAvatarUrl());
}
}
}
@OnClick(R.id.toolbar)
public void onToolBarClicked(View view) {
2016-06-04 21:46:54 +02:00
onNavigationItemSelected(navView.getMenu().findItem(R.id.nav_stream));
2016-03-03 17:46:31 +01:00
}
private File createImageFile() throws IOException {
// Create an image file name
2016-04-28 21:36:27 +02:00
String timeStamp = new SimpleDateFormat("dd-MM-yy_HH-mm", Locale.getDefault()).format(new Date());
2016-03-03 17:46:31 +01:00
String imageFileName = "JPEG_" + timeStamp + "_";
File storageDir = Environment.getExternalStoragePublicDirectory(
Environment.DIRECTORY_PICTURES);
return File.createTempFile(
imageFileName, /* prefix */
".jpg", /* suffix */
storageDir /* directory */
);
}
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
handleIntent(intent);
}
private void handleIntent(Intent intent) {
if (intent == null) {
return;
}
String action = intent.getAction();
String loadUrl = null;
if (ACTION_OPEN_URL.equals(action)) {
loadUrl = intent.getStringExtra(URL_MESSAGE);
} else if (Intent.ACTION_VIEW.equals(action) && intent.getDataString() != null) {
loadUrl = intent.getDataString();
} else if (ACTION_CHANGE_ACCOUNT.equals(action)) {
app.resetPodData(webView);
Helpers.animateToActivity(MainActivity.this, PodSelectionActivity.class, true);
} else if (ACTION_CLEAR_CACHE.equals(action)) {
2016-07-26 22:52:26 +02:00
webView.clearCache(true);
}
if (loadUrl != null) {
webView.stopLoading();
navDrawer.closeDrawers();
webView.loadUrl(loadUrl);
}
}
2016-03-03 17:46:31 +01:00
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode != INPUT_FILE_REQUEST_CODE || mFilePathCallback == null) {
2016-03-03 17:46:31 +01:00
super.onActivityResult(requestCode, resultCode, data);
return;
}
Uri[] results = null;
if (resultCode == Activity.RESULT_OK) {
if (data == null) {
if (mCameraPhotoPath != null) {
2016-03-03 17:46:31 +01:00
results = new Uri[]{Uri.parse(mCameraPhotoPath)};
}
} else {
String dataString = data.getDataString();
if (dataString != null) {
results = new Uri[]{Uri.parse(dataString)};
}
}
}
mFilePathCallback.onReceiveValue(results);
mFilePathCallback = null;
}
@Override
protected void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
webView.saveState(outState);
}
@Override
protected void onRestoreInstanceState(@NonNull Bundle savedInstanceState) {
super.onRestoreInstanceState(savedInstanceState);
webView.restoreState(savedInstanceState);
}
@Override
protected void onResume() {
super.onResume();
registerReceiver(brLoadUrl, new IntentFilter(URL_MESSAGE));
}
@Override
public void onBackPressed() {
2016-06-04 21:46:54 +02:00
if (navDrawer.isDrawerOpen(navView)) {
navDrawer.closeDrawer(navView);
return;
}
2016-03-03 17:46:31 +01:00
if (webView.canGoBack()) {
webView.goBack();
} else {
if (!snackbarExitApp.isShown())
snackbarExitApp.show();
2016-03-03 17:46:31 +01:00
}
}
private final BroadcastReceiver brLoadUrl = new BroadcastReceiver() {
2016-03-03 17:46:31 +01:00
@Override
public void onReceive(Context context, Intent intent) {
String url = intent.getStringExtra("url");
webView.loadUrl(url);
}
};
@Override
protected void onPause() {
unregisterReceiver(brLoadUrl);
super.onPause();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main__menu_top, menu);
2016-03-03 17:46:31 +01:00
return true;
}
@Override
public boolean onPrepareOptionsMenu(Menu menu) {
this.menu = menu;
MenuItem itemNotification = menu.findItem(R.id.action_notifications);
2016-03-03 17:46:31 +01:00
if (itemNotification != null) {
if (notificationCount > 0) {
itemNotification.setIcon(R.drawable.ic_bell_ring_white_24dp);
} else {
itemNotification.setIcon(R.drawable.ic_bell_outline_white_24dp);
}
MenuItem itemConversation = menu.findItem(R.id.action_conversations);
2016-03-03 17:46:31 +01:00
if (conversationCount > 0) {
itemConversation.setIcon(R.drawable.ic_message_text_white_24dp);
} else {
itemConversation.setIcon(R.drawable.ic_message_text_outline_white_24dp);
}
}
return super.onPrepareOptionsMenu(menu);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.action_notifications: {
if (Helpers.isOnline(MainActivity.this)) {
webView.loadUrl("https://" + podDomain + "/notifications");
2016-06-07 19:13:37 +02:00
setTitle(R.string.title_notifications);
return true;
} else {
2016-06-24 13:31:01 +02:00
snackbarNoInternet.show();
return false;
}
2016-03-03 17:46:31 +01:00
}
case R.id.action_conversations: {
if (Helpers.isOnline(MainActivity.this)) {
webView.loadUrl("https://" + podDomain + "/conversations");
2016-06-07 19:13:37 +02:00
setTitle(R.string.title_conversations);
return true;
} else {
2016-06-24 13:31:01 +02:00
snackbarNoInternet.show();
return false;
}
2016-03-03 17:46:31 +01:00
}
2016-03-08 15:42:02 +01:00
case R.id.action_exit: {
moveTaskToBack(true);
2016-07-31 15:16:22 +02:00
finish();
return true;
}
case R.id.action_toggle_desktop_page: {
webView.loadUrl("https://" + podDomain + "/mobile/toggle");
return true;
}
case R.id.action_compose: {
if (Helpers.isOnline(MainActivity.this)) {
webView.loadUrl("https://" + podDomain + "/status_messages/new");
2016-06-07 19:13:37 +02:00
setTitle(R.string.new_post);
} else {
2016-06-24 13:31:01 +02:00
snackbarNoInternet.show();
}
return true;
}
case R.id.action_go_to_top: {
// Scroll to top (animated)
ObjectAnimator anim = ObjectAnimator.ofInt(webView, "scrollY", webView.getScrollY(), 0);
anim.setDuration(400);
anim.start();
return true;
}
2016-03-03 17:46:31 +01:00
2016-06-04 17:56:08 +02:00
case R.id.action_share_link: {
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
sharingIntent.putExtra(Intent.EXTRA_SUBJECT, webView.getTitle());
sharingIntent.putExtra(Intent.EXTRA_TEXT, webView.getUrl());
startActivity(Intent.createChooser(sharingIntent, "Share using"));
return true;
}
2016-04-28 21:36:27 +02:00
2016-06-04 17:56:08 +02:00
case R.id.action_take_screenshot: {
makeScreenshotOfWebView(false);
return true;
}
2016-04-23 20:58:37 +02:00
2016-06-04 17:56:08 +02:00
case R.id.action_share_screenshot: {
makeScreenshotOfWebView(true);
return true;
}
case R.id.action_search: {
if (Helpers.isOnline(MainActivity.this)) {
final InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
LinearLayout layout = new LinearLayout(this);
layout.setOrientation(LinearLayout.VERTICAL);
layout.setGravity(Gravity.CENTER_HORIZONTAL);
final EditText input = new EditText(this);
input.setSingleLine(true);
layout.setPadding(50, 0, 50, 0);
input.setHint(R.string.app_hashtag);
layout.addView(input);
final DialogInterface.OnClickListener onSearchAccepted = new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
boolean wasClickedOnSearchForPeople = which == DialogInterface.BUTTON_NEGATIVE;
String inputTag = input.getText().toString().trim();
String cleanTag = inputTag.replaceAll(wasClickedOnSearchForPeople ? "\\*" : "\\#", "");
// this validate the input data for tagfind
if (cleanTag == null || cleanTag.equals("")) {
Snackbar.make(swipeRefreshLayout, R.string.search_alert_bypeople_validate_needsomedata, Snackbar.LENGTH_LONG).show();
} else { // User have added a search tag
if (wasClickedOnSearchForPeople) {
webView.loadUrl("https://" + podDomain + "/people.mobile?q=" + cleanTag);
} else {
webView.loadUrl("https://" + podDomain + "/tags/" + cleanTag);
}
}
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);
imm.hideSoftInputFromWindow(input.getWindowToken(), 0);
}
};
final AlertDialog dialog = new AlertDialog.Builder(this)
.setView(layout)
.setTitle(R.string.search_alert_title)
.setCancelable(true)
.setPositiveButton(R.string.search_alert_tag, onSearchAccepted)
.setNegativeButton(R.string.search_alert_people, onSearchAccepted)
.create();
input.setOnEditorActionListener(new TextView.OnEditorActionListener() {
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_DONE) {
dialog.hide();
onSearchAccepted.onClick(null, 0);
return true;
}
return false;
}
});
// Popup keyboard
dialog.show();
input.requestFocus();
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
} else {
2016-06-24 13:31:01 +02:00
snackbarNoInternet.show();
}
return true;
}
2016-03-03 17:46:31 +01:00
}
2016-06-04 17:56:08 +02:00
2016-03-03 17:46:31 +01:00
return super.onOptionsItemSelected(item);
}
2016-06-04 17:56:08 +02:00
private boolean makeScreenshotOfWebView(boolean hasToShareScreenshot) {
if (android.os.Build.VERSION.SDK_INT >= 23) {
int hasWRITE_EXTERNAL_STORAGE = checkSelfPermission(Manifest.permission.WRITE_EXTERNAL_STORAGE);
if (hasWRITE_EXTERNAL_STORAGE != PackageManager.PERMISSION_GRANTED) {
if (!shouldShowRequestPermissionRationale(Manifest.permission.WRITE_EXTERNAL_STORAGE)) {
new AlertDialog.Builder(MainActivity.this)
.setMessage(R.string.permissions_screenshot)
.setNegativeButton(android.R.string.no, null)
.setPositiveButton(android.R.string.yes, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
if (android.os.Build.VERSION.SDK_INT >= 23)
requestPermissions(new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE},
REQUEST_CODE_ASK_PERMISSIONS);
}
})
.show();
return false;
}
requestPermissions(new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE},
REQUEST_CODE_ASK_PERMISSIONS);
return false;
}
}
Date dateNow = new Date();
DateFormat dateFormat = new SimpleDateFormat("yy_MM_dd--HH_mm_ss", Locale.getDefault());
File fileSaveDirectory = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES) + "/Diaspora");
2016-06-04 17:56:08 +02:00
String fileSaveName = hasToShareScreenshot ? ".DfA_share.jpg" : String.format("DfA_%s.jpg", dateFormat.format(dateNow));
2016-06-04 17:56:08 +02:00
if (!fileSaveDirectory.exists()) {
fileSaveDirectory.mkdirs();
}
2016-06-05 01:54:17 +02:00
if (!hasToShareScreenshot) {
Snackbar.make(swipeRefreshLayout, getString(R.string.toast_screenshot) + " " + fileSaveName, Snackbar.LENGTH_LONG).show();
}
2016-06-04 17:56:08 +02:00
2016-07-04 11:19:09 +02:00
Bitmap bitmap;
2016-06-04 17:56:08 +02:00
webView.setDrawingCacheEnabled(true);
bitmap = Bitmap.createBitmap(webView.getDrawingCache());
webView.setDrawingCacheEnabled(false);
OutputStream bitmapWriter = null;
try {
bitmapWriter = new FileOutputStream(new File(fileSaveDirectory, fileSaveName));
bitmap.compress(Bitmap.CompressFormat.JPEG, 85, bitmapWriter);
bitmapWriter.flush();
bitmap.recycle();
} catch (Exception e) {
return false;
} finally {
if (bitmapWriter != null) {
try {
bitmapWriter.close();
2016-07-04 11:19:09 +02:00
} catch (IOException _ignored) {/* Nothing */}
2016-06-04 17:56:08 +02:00
}
}
// Only show share intent when Action Share Screenshot was selected
if (hasToShareScreenshot) {
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("image/jpeg");
sharingIntent.putExtra(Intent.EXTRA_SUBJECT, webView.getTitle());
sharingIntent.putExtra(Intent.EXTRA_TEXT, webView.getUrl());
Uri bmpUri = Uri.fromFile(new File(fileSaveDirectory, fileSaveName));
sharingIntent.putExtra(Intent.EXTRA_STREAM, bmpUri);
startActivity(Intent.createChooser(sharingIntent, getString(R.string.share_dotdotdot)));
} else {
2016-06-05 01:54:17 +02:00
// Broadcast that this file is indexable
File file = new File(fileSaveDirectory, fileSaveName);
Uri uri = Uri.fromFile(file);
Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, uri);
sendBroadcast(intent);
}
2016-06-04 17:56:08 +02:00
return true;
}
@Override
public void onUserProfileNameChanged(String name) {
navheaderTitle.setText(name);
}
@Override
public void onUserProfileAvatarChanged(String avatarUrl) {
app.getAvatarImageLoader().startImageDownload(navheaderImage, avatarUrl);
}
// TODO: Move from Javascript interface
@Override
public void onNotificationCountChanged(int notificationCount) {
}
// TODO: Move from Javascript interface
@Override
public void onUnreadMessageCountChanged(int unreadMessageCount) {
}
private class JavaScriptInterface {
2016-03-03 17:46:31 +01:00
@JavascriptInterface
public void setNotificationCount(final String webMessage) {
uiHandler.post(new Runnable() {
2016-03-03 17:46:31 +01:00
@Override
public void run() {
if (menu == null) {
return;
}
2016-03-03 17:46:31 +01:00
notificationCount = Integer.valueOf(webMessage);
MenuItem item = menu.findItem(R.id.action_notifications);
2016-03-03 17:46:31 +01:00
if (item != null) {
if (notificationCount > 0) {
item.setIcon(R.drawable.ic_bell_ring_white_24dp);
if (!snackbarNewNotification.isShown() && !webView.getUrl().equals("https://" + podDomain + "/notifications"))
2016-06-24 13:31:01 +02:00
snackbarNewNotification.show();
2016-03-03 17:46:31 +01:00
} else {
item.setIcon(R.drawable.ic_bell_outline_white_24dp);
}
}
}
});
}
2016-03-24 13:56:30 +01:00
@JavascriptInterface
public void setUserProfile(final String webMessage) throws JSONException {
if (podUserProfile.isRefreshNeeded()) {
podUserProfile.parseJson(webMessage);
}
2016-03-24 13:56:30 +01:00
}
@JavascriptInterface
public void setConversationCount(final String webMessage) {
uiHandler.post(new Runnable() {
2016-03-03 17:46:31 +01:00
@Override
public void run() {
if (menu == null) {
return;
}
2016-03-03 17:46:31 +01:00
conversationCount = Integer.valueOf(webMessage);
MenuItem item = menu.findItem(R.id.action_conversations);
2016-03-03 17:46:31 +01:00
if (item != null) {
if (conversationCount > 0) {
item.setIcon(R.drawable.ic_message_text_white_24dp);
if (!snackbarNewNotification.isShown() && !webView.getUrl().equals("https://" + podDomain + "/notifications"))
2016-06-24 13:31:01 +02:00
snackbarNewNotification.show();
2016-03-03 17:46:31 +01:00
} else {
item.setIcon(R.drawable.ic_message_text_outline_white_24dp);
}
}
}
});
}
}
@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
// Handle navigation view item clicks here.
switch (item.getItemId()) {
case R.id.nav_stream: {
if (Helpers.isOnline(MainActivity.this)) {
webView.loadUrl("https://" + podDomain + "/stream");
2016-06-07 19:13:37 +02:00
setTitle(R.string.title_stream);
} else {
2016-06-24 13:31:01 +02:00
snackbarNoInternet.show();
}
2016-03-03 17:46:31 +01:00
}
break;
2016-03-03 17:46:31 +01:00
case R.id.nav_profile: {
if (Helpers.isOnline(MainActivity.this)) {
webView.loadUrl("https://" + podDomain + "/people/" + appSettings.getProfileId());
2016-06-07 19:13:37 +02:00
setTitle(R.string.title_profil);
} else {
2016-06-24 13:31:01 +02:00
snackbarNoInternet.show();
}
2016-03-03 17:46:31 +01:00
}
break;
2016-03-03 17:46:31 +01:00
case R.id.nav_followed_tags: {
if (Helpers.isOnline(MainActivity.this)) {
2016-07-18 14:02:18 +02:00
// webView.loadUrl("https://" + podDomain + "/followed_tags");
Helpers.showFollowedTagsList(webView, app);
2016-06-07 19:13:37 +02:00
setTitle(R.string.jb_followed_tags);
} else {
2016-06-24 13:31:01 +02:00
snackbarNoInternet.show();
}
2016-03-03 17:46:31 +01:00
}
break;
2016-03-03 17:46:31 +01:00
case R.id.nav_aspects: {
if (Helpers.isOnline(MainActivity.this)) {
2016-06-09 01:03:50 +02:00
// webView.loadUrl("https://" + podDomain + "/aspects");
2016-06-05 17:25:11 +02:00
Helpers.showAspectList(webView, app);
2016-06-07 19:13:37 +02:00
setTitle(R.string.title_aspects);
} else {
2016-06-24 13:31:01 +02:00
snackbarNoInternet.show();
}
2016-03-03 17:46:31 +01:00
}
break;
2016-03-03 17:46:31 +01:00
case R.id.nav_activities: {
if (Helpers.isOnline(MainActivity.this)) {
webView.loadUrl("https://" + podDomain + "/activity");
2016-06-07 19:13:37 +02:00
setTitle(R.string.title_activities);
} else {
2016-06-24 13:31:01 +02:00
snackbarNoInternet.show();
}
2016-03-03 17:46:31 +01:00
}
break;
2016-03-03 17:46:31 +01:00
case R.id.nav_liked: {
if (Helpers.isOnline(MainActivity.this)) {
webView.loadUrl("https://" + podDomain + "/liked");
2016-06-07 19:13:37 +02:00
setTitle(R.string.title_liked);
} else {
2016-06-24 13:31:01 +02:00
snackbarNoInternet.show();
}
2016-03-03 17:46:31 +01:00
}
break;
2016-03-03 17:46:31 +01:00
case R.id.nav_commented: {
if (Helpers.isOnline(MainActivity.this)) {
webView.loadUrl("https://" + podDomain + "/commented");
2016-06-07 19:13:37 +02:00
setTitle(R.string.title_commented);
} else {
2016-06-24 13:31:01 +02:00
snackbarNoInternet.show();
}
2016-03-03 17:46:31 +01:00
}
break;
2016-03-03 17:46:31 +01:00
case R.id.nav_mentions: {
if (Helpers.isOnline(MainActivity.this)) {
webView.loadUrl("https://" + podDomain + "/mentions");
2016-06-07 19:13:37 +02:00
setTitle(R.string.title_mentions);
} else {
2016-06-24 13:31:01 +02:00
snackbarNoInternet.show();
}
2016-03-03 17:46:31 +01:00
}
break;
2016-03-03 17:46:31 +01:00
case R.id.nav_public: {
if (Helpers.isOnline(MainActivity.this)) {
webView.loadUrl("https://" + podDomain + "/public");
2016-06-07 19:13:37 +02:00
setTitle(R.string.title_public);
} else {
2016-06-24 13:31:01 +02:00
snackbarNoInternet.show();
}
}
break;
2016-03-03 17:46:31 +01:00
case R.id.nav_settings_app: {
startActivity(new Intent(this, SettingsActivity.class));
}
break;
2016-03-08 15:42:02 +01:00
case R.id.nav_license_help: {
2016-07-04 16:04:38 +02:00
final CharSequence[] options = {getString(R.string.help_license), getString(R.string.help_help)};
2016-03-08 15:42:02 +01:00
new AlertDialog.Builder(MainActivity.this)
.setItems(options, new DialogInterface.OnClickListener() {
2016-03-08 15:42:02 +01:00
@Override
public void onClick(DialogInterface dialog, int item) {
if (options[item].equals(getString(R.string.help_license))) {
final SpannableString s = new SpannableString(Html.fromHtml(getString(R.string.license_text)));
Linkify.addLinks(s, Linkify.WEB_URLS);
final AlertDialog d = new AlertDialog.Builder(MainActivity.this)
.setTitle(R.string.license_title)
.setMessage(s)
2016-06-04 11:11:51 +02:00
.setPositiveButton(android.R.string.yes, null).show();
d.show();
((TextView) d.findViewById(android.R.id.message)).setMovementMethod(LinkMovementMethod.getInstance());
}
if (options[item].equals(getString(R.string.help_help))) {
2016-03-03 17:46:31 +01:00
new AlertDialog.Builder(MainActivity.this)
.setTitle(R.string.help_help)
.setMessage(Html.fromHtml(getString(R.string.markdown_text)))
.setPositiveButton(android.R.string.yes, null).show();
}
2016-03-03 17:46:31 +01:00
}
2016-03-08 15:42:02 +01:00
}).show();
}
break;
2016-03-03 17:46:31 +01:00
}
2016-07-31 15:16:22 +02:00
navDrawer.closeDrawer(GravityCompat.START);
2016-03-03 17:46:31 +01:00
return true;
}
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
switch (requestCode) {
case REQUEST_CODE_ASK_PERMISSIONS_SAVE_IMAGE:
if (grantResults.length == 1 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
Toast.makeText(this, R.string.permission_granted_try_again, Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(this, R.string.permission_denied, Toast.LENGTH_SHORT).show();
}
return;
default:
super.onRequestPermissionsResult(requestCode, permissions,
grantResults);
}
}
2016-06-09 01:03:50 +02:00
/**
* Set proxy according to arguments. host must not be "" or null, port must be positive.
* Return true on success and update appSettings' proxy related values.
*
2016-06-09 01:03:50 +02:00
* @param host proxy host (eg. localhost or 127.0.0.1)
* @param port proxy port (eg. 8118)
* @return success
* @throws IllegalArgumentException if arguments do not fit specifications above
*/
private boolean setProxy(final String host, final int port) {
if (host != null && !host.equals("") && port >= 0) {
2016-06-09 01:03:50 +02:00
//Temporary change thread policy
StrictMode.ThreadPolicy old = StrictMode.getThreadPolicy();
StrictMode.ThreadPolicy tmp = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(tmp);
NetCipher.setProxy(host, port); //Proxy for HttpsUrlConnections
try {
//Proxy for the webview
WebkitProxy.setProxy(MainActivity.class.getName(), getApplicationContext(), null, host, port);
} catch (Exception e) { /*Nothing we can do*/ }
appSettings.setProxyEnabled(true);
appSettings.setProxyWasEnabled(true);
2016-06-09 01:03:50 +02:00
StrictMode.setThreadPolicy(old);
webView.reload();
return true;
} else {
return false;
}
}
private boolean setProxy() {
Log.d(App.TAG, "Enable Proxy");
2016-06-09 01:03:50 +02:00
return setProxy(appSettings.getProxyHost(), appSettings.getProxyPort());
}
private void resetProxy() {
Log.d(App.TAG, "Reset Proxy");
2016-06-09 01:03:50 +02:00
appSettings.setProxyEnabled(false);
appSettings.setProxyWasEnabled(false);
2016-06-09 01:03:50 +02:00
//Temporary change thread policy
StrictMode.ThreadPolicy old = StrictMode.getThreadPolicy();
StrictMode.ThreadPolicy tmp = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(tmp);
NetCipher.clearProxy();
try {
2016-06-09 01:03:50 +02:00
WebkitProxy.resetProxy(MainActivity.class.getName(), this);
} catch (Exception e) {/*Nothing*/}
2016-06-09 01:03:50 +02:00
StrictMode.setThreadPolicy(old);
//Restart app
Intent restartActivity = new Intent(this, MainActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 12374, restartActivity, PendingIntent.FLAG_CANCEL_CURRENT);
AlarmManager mgr = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
mgr.set(AlarmManager.RTC, System.currentTimeMillis() + 100, pendingIntent);
System.exit(0);
}
2016-07-29 14:00:28 +02:00
}