1
0
Fork 0
mirror of https://github.com/gsantner/dandelion synced 2024-06-17 17:14:54 +02:00
dandelion/app/src/main/java/com/github/dfa/diaspora_android/activity/MainActivity.java

1375 lines
58 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.content.res.Configuration;
2016-03-03 17:46:31 +01:00
import android.graphics.Bitmap;
2016-09-11 13:05:26 +02:00
import android.graphics.BitmapFactory;
2016-03-03 17:46:31 +01:00
import android.net.Uri;
import android.os.Build;
2016-03-03 17:46:31 +01:00
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;
import android.support.customtabs.CustomTabsIntent;
2016-07-31 15:16:22 +02:00
import android.support.design.widget.AppBarLayout;
2016-03-03 17:46:31 +01:00
import android.support.design.widget.NavigationView;
import android.support.design.widget.Snackbar;
import android.support.v4.content.LocalBroadcastManager;
2016-03-03 17:46:31 +01:00
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
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;
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.FrameLayout;
import android.widget.ImageView;
import android.widget.LinearLayout;
2016-03-03 17:46:31 +01:00
import android.widget.ProgressBar;
import android.widget.RelativeLayout;
2016-03-03 17:46:31 +01:00
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;
import com.github.dfa.diaspora_android.util.CustomTabHelpers.BrowserFallback;
import com.github.dfa.diaspora_android.util.CustomTabHelpers.CustomTabActivityHelper;
import com.github.dfa.diaspora_android.util.DiasporaUrlHelper;
2016-03-29 19:38:50 +02:00
import com.github.dfa.diaspora_android.util.Helpers;
import com.github.dfa.diaspora_android.util.Log;
2016-08-07 14:29:52 +02:00
import com.github.dfa.diaspora_android.util.WebHelper;
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.webkit.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
2016-09-07 23:55:25 +02:00
private static final int INPUT_FILE_REQUEST_CODE_NEW = 1;
private static final int INPUT_FILE_REQUEST_CODE_OLD = 2;
private static final int REQUEST_CODE_ASK_PERMISSIONS = 123;
public static final int REQUEST_CODE__ACCESS_EXTERNAL_STORAGE = 124;
public static final String ACTION_OPEN_URL = "com.github.dfa.diaspora_android.MainActivity.open_url";
public static final String ACTION_OPEN_EXTERNAL_URL = "com.github.dfa.diaspora_android.MainActivity.open_external_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";
public static final String ACTION_UPDATE_TITLE_FROM_URL = "com.github.dfa.diaspora_android.MainActivity.set_title";
public static final String ACTION_RELOAD_ACTIVITY = "com.github.dfa.diaspora_android.MainActivity.reload_activity";
2016-06-18 15:53:49 +02:00
public static final String URL_MESSAGE = "URL_MESSAGE";
public static final String EXTRA_URL = "com.github.dfa.diaspora_android.extra_url";
public static final String CONTENT_HASHTAG = "content://com.github.dfa.diaspora_android.mainactivity/";
2016-03-24 13:56:30 +01:00
private App app;
2016-09-07 23:55:25 +02:00
private ValueCallback<Uri[]> imageUploadFilePathCallbackNew;
private ValueCallback<Uri> imageUploadFilePathCallbackOld;
private String mCameraPhotoPath;
private CustomTabActivityHelper customTabActivityHelper;
private WebSettings webSettings;
2016-03-24 11:58:28 +01:00
private AppSettings appSettings;
private DiasporaUrlHelper urls;
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;
private String textToBeShared = null;
/**
* UI Bindings
*/
@BindView(R.id.content_layout)
RelativeLayout contentLayout;
@BindView(R.id.progressBar)
ProgressBar progressBar;
@BindView(R.id.toolbar)
Toolbar toolbarTop;
@BindView(R.id.toolbar2)
ActionMenuView toolbarBottom;
@BindView(R.id.placeholder_webview)
FrameLayout webviewPlaceholder;
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
// 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);
Log.d(App.TAG, "onCreate()");
2016-03-03 17:46:31 +01:00
// Bind UI
2016-06-04 11:11:51 +02:00
setContentView(R.layout.main__activity);
if ((app = (App) getApplication()) == null) Log.e(App.TAG, "App is null!");
if ((appSettings = app.getSettings()) == null) Log.e(App.TAG, "AppSettings is null!");
if ((podUserProfile = app.getPodUserProfile()) == null) Log.e(App.TAG, "PodUserProfile is null!");
2016-06-05 17:25:11 +02:00
podUserProfile.setCallbackHandler(uiHandler);
podUserProfile.setListener(this);
urls = new DiasporaUrlHelper(appSettings);
customTabActivityHelper = new CustomTabActivityHelper();
2016-03-03 17:46:31 +01:00
2016-09-11 13:05:26 +02:00
setupUI(savedInstanceState);
if (appSettings.isProxyEnabled()) {
if (!setProxy(appSettings.getProxyHost(), appSettings.getProxyPort())) {
Log.d(App.TAG, "Could not enable Proxy");
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
}
}
private void setupUI(Bundle savedInstanceState) {
Log.i(App.TAG, "MainActivity.setupUI()");
boolean newWebView = (webView == null);
if(newWebView) {
Log.v(App.TAG, "WebView was null. Create new one.");
2016-09-09 20:56:43 +02:00
View webviewHolder = getLayoutInflater().inflate(R.layout.webview, this.contentLayout, false);
2016-09-11 13:05:26 +02:00
this.webView = (ContextMenuWebView) webviewHolder.findViewById(R.id.webView);
((LinearLayout)webView.getParent()).removeView(webView);
setupWebView(savedInstanceState);
} else {
Log.v(App.TAG, "Reuse old WebView to avoid reloading page");
}
ButterKnife.bind(this);
if (webviewPlaceholder.getChildCount() != 0) {
webviewPlaceholder.removeAllViews();
}
Log.v(App.TAG, "Add WebView to placeholder");
webviewPlaceholder.addView(webView);
// 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(contentLayout, 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(contentLayout, R.string.new_notifications, Snackbar.LENGTH_LONG)
2016-06-24 13:31:01 +02:00
.setAction(android.R.string.yes, new View.OnClickListener() {
@Override
public void onClick(View view) {
2016-08-07 14:29:52 +02:00
if (WebHelper.isOnline(MainActivity.this)) {
webView.loadUrlNew(urls.getNotificationsUrl());
2016-06-24 13:31:01 +02:00
} else {
Snackbar.make(contentLayout, R.string.no_internet, Snackbar.LENGTH_LONG).show();
2016-06-24 13:31:01 +02:00
}
}
});
snackbarNoInternet = Snackbar.make(contentLayout, 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);
2016-03-03 17:46:31 +01:00
String url = urls.getPodUrl();
if (newWebView) {
2016-08-07 14:29:52 +02:00
if (WebHelper.isOnline(MainActivity.this)) {
Log.d(App.TAG, "setupUI: reload url");
webView.loadData("", "text/html", null);
webView.loadUrlNew(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()) {
Log.v(App.TAG, "Disable intelligent hiding of toolbars");
AppBarLayout.LayoutParams params = (AppBarLayout.LayoutParams) toolbarTop.getLayoutParams();
2016-07-31 15:16:22 +02:00
params.setScrollFlags(0); // clear all scroll flags
}
Log.v(App.TAG, "UI successfully set up");
handleIntent(getIntent());
}
@Override
public void onConfigurationChanged(Configuration newConfig)
{
Log.i(App.TAG, "onConfigurationChanged()");
if (webView != null)
{
// Remove the WebView from the old placeholder
Log.v(App.TAG, "removeView from placeholder in order to prevent recreation");
webviewPlaceholder.removeView(webView);
}
super.onConfigurationChanged(newConfig);
// Load the layout resource for the new configuration
setContentView(R.layout.main__activity);
// Reinitialize the UI
Log.v(App.TAG, "Rebuild the UI");
setupUI(null);
}
private void setupWebView(Bundle savedInstanceState) {
2016-03-03 17:46:31 +01:00
webSettings = webView.getSettings();
webSettings.setJavaScriptEnabled(true);
2016-08-13 00:42:13 +02:00
webSettings.setAllowFileAccess(false);
webSettings.setUseWideViewPort(true);
webSettings.setLoadWithOverviewMode(true);
webSettings.setDomStorageEnabled(true);
webSettings.setMinimumFontSize(appSettings.getMinimumFontSize());
webSettings.setLoadsImagesAutomatically(appSettings.isLoadImages());
webSettings.setAppCacheEnabled(true);
if (savedInstanceState != null) {
Log.v(App.TAG, "restore WebView state");
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
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, webView);
webView.setWebViewClient(webViewClient);
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) {
2016-08-07 14:29:52 +02:00
WebHelper.getUserProfile(wv);
WebHelper.optimizeMobileSiteLayout(wv);
2016-03-03 17:46:31 +01:00
}
if (progress > 60) {
2016-08-07 14:29:52 +02:00
WebHelper.optimizeMobileSiteLayout(wv);
2016-08-08 07:41:36 +02:00
if (textToBeShared != null) {
2016-08-08 07:41:36 +02:00
WebHelper.shareTextIntoWebView(wv, textToBeShared);
}
2016-03-03 17:46:31 +01:00
}
2016-08-07 11:39:20 +02:00
progressBar.setVisibility(progress == 100 ? View.GONE : View.VISIBLE);
2016-03-03 17:46:31 +01:00
}
//For Android 4.1/4.2 only. DO NOT REMOVE!
@SuppressWarnings("unused")
2016-09-07 23:55:25 +02:00
protected void openFileChooser(ValueCallback<Uri> uploadMsg, String acceptType, String capture)
{
Log.v(App.TAG, "openFileChooser(ValCallback<Uri>, String, String");
2016-09-07 23:55:25 +02:00
imageUploadFilePathCallbackOld = uploadMsg;
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
intent.putExtra("return-data", true);
2016-09-07 23:55:25 +02:00
intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
Log.v(App.TAG, "startActivityForResult");
2016-09-07 23:55:25 +02:00
startActivityForResult(Intent.createChooser(intent, "Select Picture"), INPUT_FILE_REQUEST_CODE_OLD);
}
2016-03-03 17:46:31 +01:00
@Override
public boolean onShowFileChooser(WebView webView, ValueCallback<Uri[]> filePathCallback, FileChooserParams fileChooserParams) {
if(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_image)
.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;
}
}
2016-03-03 17:46:31 +01:00
Log.d(App.TAG, "onOpenFileChooser");
2016-09-07 23:55:25 +02:00
if (imageUploadFilePathCallbackNew != null) imageUploadFilePathCallbackNew.onReceiveValue(null);
imageUploadFilePathCallbackNew = filePathCallback;
2016-03-03 17:46:31 +01:00
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 = Helpers.createImageFile();
2016-03-03 17:46:31 +01:00
takePictureIntent.putExtra("PhotoPath", mCameraPhotoPath);
} catch (IOException ex) {
Log.e(App.TAG, "ERROR creating temp file: "+ ex.toString());
2016-03-03 17:46:31 +01:00
// Error occurred while creating the File
Snackbar.make(contentLayout, R.string.unable_to_load_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);
Log.d(App.TAG,"startActivityForResult");
2016-09-07 23:55:25 +02:00
startActivityForResult(chooserIntent, INPUT_FILE_REQUEST_CODE_NEW);
2016-03-03 17:46:31 +01:00
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);
LinearLayout navheaderProfileSection = ButterKnife.findById(navHeader, R.id.nav_profile_picture);
navheaderProfileSection.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
navDrawer.closeDrawer(GravityCompat.START);
if (WebHelper.isOnline(MainActivity.this)) {
webView.loadUrlNew(urls.getProfileUrl());
} else {
snackbarNoInternet.show();
}
}
});
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());
}
String avatarUrl = appSettings.getAvatarUrl();
if (!avatarUrl.equals("")) {
//Display app launcher icon instead of default avatar asset
//(Which would by the way not load because of missing pod domain prefix in the url)
if(avatarUrl.startsWith("/assets/user/default")) {
Log.v(App.TAG, "Avatar appears to be an asset. Display launcher icon instead (avatarUrl="+avatarUrl+")");
navheaderImage.setImageResource(R.drawable.ic_launcher);
} else {
// Try to load image
if (!app.getAvatarImageLoader().loadToImageView(navheaderImage)) {
// If not yet loaded, start download
Log.v(App.TAG, "Avatar not cached. Start download: "+avatarUrl);
app.getAvatarImageLoader().startImageDownload(navheaderImage, avatarUrl);
}
}
}
// Set visibility
Menu navMenu = navView.getMenu();
navMenu.findItem(R.id.nav_exit).setVisible(appSettings.isVisibleInNavExit());
navMenu.findItem(R.id.nav_activities).setVisible(appSettings.isVisibleInNavActivities());
navMenu.findItem(R.id.nav_aspects).setVisible(appSettings.isVisibleInNavAspects());
navMenu.findItem(R.id.nav_commented).setVisible(appSettings.isVisibleInNavCommented());
navMenu.findItem(R.id.nav_followed_tags).setVisible(appSettings.isVisibleInNavFollowed_tags());
navMenu.findItem(R.id.nav_help_license).setVisible(appSettings.isVisibleInNavHelp_license());
navMenu.findItem(R.id.nav_liked).setVisible(appSettings.isVisibleInNavLiked());
navMenu.findItem(R.id.nav_mentions).setVisible(appSettings.isVisibleInNavMentions());
navMenu.findItem(R.id.nav_profile).setVisible(appSettings.isVisibleInNavProfile());
navMenu.findItem(R.id.nav_public).setVisible(appSettings.isVisibleInNavPublic_activities());
}
@OnClick(R.id.toolbar)
public void onToolBarClicked(View view) {
Log.i(App.TAG, "MainActivity.onToolBarClicked()");
2016-06-04 21:46:54 +02:00
onNavigationItemSelected(navView.getMenu().findItem(R.id.nav_stream));
2016-03-03 17:46:31 +01:00
}
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
handleIntent(intent);
}
private void handleIntent(Intent intent) {
Log.i(App.TAG, "MainActivity.handleIntent()");
if (intent == null) {
Log.v(App.TAG, "Intent was null");
return;
}
String action = intent.getAction();
String type = intent.getType();
String loadUrl = null;
Log.v(App.TAG, "Action: "+action+" Type: "+type);
if (ACTION_OPEN_URL.equals(action)) {
loadUrl = intent.getStringExtra(URL_MESSAGE);
} else if (Intent.ACTION_VIEW.equals(action) && intent.getDataString() != null) {
Uri data = intent.getData();
if(data != null && data.toString().startsWith(CONTENT_HASHTAG)) {
handleHashtag(intent);
return;
} else {
loadUrl = intent.getDataString();
}
} else if (ACTION_CHANGE_ACCOUNT.equals(action)) {
Log.v(App.TAG, "Reset pod data and animate to PodSelectionActivity");
app.resetPodData(webView);
Helpers.animateToActivity(MainActivity.this, PodSelectionActivity.class, true);
} else if (ACTION_CLEAR_CACHE.equals(action)) {
Log.v(App.TAG, "Clear WebView cache");
2016-07-26 22:52:26 +02:00
webView.clearCache(true);
} else if (ACTION_RELOAD_ACTIVITY.equals(action)) {
Log.v(App.TAG, "Recreate activity");
recreate();
return;
} else if (Intent.ACTION_SEND.equals(action) && type != null) {
switch (type) {
case "text/plain":
if (intent.hasExtra(Intent.EXTRA_SUBJECT)) {
handleSendSubject(intent);
} else {
handleSendText(intent);
}
break;
case "image/*":
handleSendImage(intent); //TODO: Add intent filter to Manifest and implement method
break;
}
} else if (Intent.ACTION_SEND_MULTIPLE.equals(action) && type != null) {
//TODO: Implement and add filter to manifest
}
if (loadUrl != null) {
webView.stopLoading();
navDrawer.closeDrawers();
webView.loadUrlNew(loadUrl);
}
}
2016-03-03 17:46:31 +01:00
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
Log.d(App.TAG,"MainActivity.onActivityResult()");
2016-09-07 23:55:25 +02:00
switch (requestCode) {
case INPUT_FILE_REQUEST_CODE_NEW: {
Log.v(App.TAG,"Upload image using recent method (Lollipop+)");
2016-09-07 23:55:25 +02:00
if (imageUploadFilePathCallbackNew == null || resultCode != Activity.RESULT_OK) {
Log.e(App.TAG, "Callback is null: " + (imageUploadFilePathCallbackNew == null)
+ " resultCode: " + resultCode);
return;
2016-03-03 17:46:31 +01:00
}
2016-09-07 23:55:25 +02:00
Uri[] results = null;
if (data == null) {
if (mCameraPhotoPath != null) {
Log.v(App.TAG, "Intent data is null. Try to parse cameraPhotoPath");
2016-09-07 23:55:25 +02:00
results = new Uri[]{Uri.parse(mCameraPhotoPath)};
} else {
Log.w(App.TAG, "Intent data is null and cameraPhotoPath is null");
2016-09-07 23:55:25 +02:00
}
} else {
String dataString = data.getDataString();
if (dataString != null) {
Log.v(App.TAG, "Intent has data. Try to parse dataString");
2016-09-07 23:55:25 +02:00
results = new Uri[]{Uri.parse(dataString)};
}
Log.w(App.TAG, "dataString is null");
2016-03-03 17:46:31 +01:00
}
Log.v(App.TAG, "handle received result over to callback");
2016-09-07 23:55:25 +02:00
imageUploadFilePathCallbackNew.onReceiveValue(results);
imageUploadFilePathCallbackNew = null;
return;
}
case INPUT_FILE_REQUEST_CODE_OLD: {
Log.v(App.TAG, "Upload image using legacy method (Jelly Bean, Kitkat)");
2016-09-07 23:55:25 +02:00
if (imageUploadFilePathCallbackOld == null || resultCode != Activity.RESULT_OK) {
Log.e(App.TAG, "Callback is null: " + (imageUploadFilePathCallbackOld == null)
+ " resultCode: " + resultCode);
return;
}
Uri results = null;
if (data == null) {
if (mCameraPhotoPath != null) {
Log.v(App.TAG, "Intent has no data. Try to parse cameraPhotoPath");
2016-09-07 23:55:25 +02:00
results = Uri.parse(mCameraPhotoPath);
} else {
Log.w(App.TAG, "Intent has no data and cameraPhotoPath is null");
2016-09-07 23:55:25 +02:00
}
} else {
String dataString = data.getDataString();
if (dataString != null) {
Log.v(App.TAG, "Intent has data. Try to parse dataString");
2016-09-07 23:55:25 +02:00
results = Uri.parse(dataString);
} else {
Log.w(App.TAG, "dataString is null");
2016-09-07 23:55:25 +02:00
}
}
Log.v(App.TAG, "handle received result over to callback");
2016-09-07 23:55:25 +02:00
imageUploadFilePathCallbackOld.onReceiveValue(results);
imageUploadFilePathCallbackOld = null;
return;
2016-03-03 17:46:31 +01:00
}
}
2016-09-07 23:55:25 +02:00
super.onActivityResult(requestCode, resultCode, data);
2016-03-03 17:46:31 +01:00
}
@Override
protected void onSaveInstanceState(Bundle outState) {
Log.v(App.TAG, "MainActivity.onSaveInstanceState()");
2016-03-03 17:46:31 +01:00
super.onSaveInstanceState(outState);
Log.v(App.TAG, "Save WebView state");
2016-03-03 17:46:31 +01:00
webView.saveState(outState);
}
@Override
protected void onRestoreInstanceState(@NonNull Bundle savedInstanceState) {
Log.v(App.TAG, "MainActivity.onRestoreInstanceState()");
2016-03-03 17:46:31 +01:00
super.onRestoreInstanceState(savedInstanceState);
Log.v(App.TAG, "Restore state of WebView");
2016-03-03 17:46:31 +01:00
webView.restoreState(savedInstanceState);
}
@Override
public void onBackPressed() {
Log.v(App.TAG, "MainActivity.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();
2016-08-07 11:39:20 +02:00
return;
}
if (!snackbarExitApp.isShown()) {
snackbarExitApp.show();
2016-03-03 17:46:31 +01:00
}
}
/**
* BroadcastReceiver that updates the title of the activity based on which url is currently loaded
*/
private final BroadcastReceiver brSetTitle = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String url = intent.getStringExtra(EXTRA_URL);
if (url != null && url.startsWith(urls.getPodUrl())) {
String subUrl = url.substring((urls.getPodUrl()).length());
Log.v(App.TAG, "MainActivity.brSetTitle.onReceive(): Set title for subUrl "+subUrl);
if (subUrl.startsWith(DiasporaUrlHelper.SUBURL_STREAM)) {
setTitle(R.string.nav_stream);
} else if (subUrl.startsWith(DiasporaUrlHelper.SUBURL_POSTS)) {
setTitle(R.string.diaspora);
} else if (subUrl.startsWith(DiasporaUrlHelper.SUBURL_NOTIFICATIONS)) {
setTitle(R.string.notifications);
} else if (subUrl.startsWith(DiasporaUrlHelper.SUBURL_CONVERSATIONS)) {
setTitle(R.string.conversations);
} else if (subUrl.startsWith(DiasporaUrlHelper.SUBURL_NEW_POST)) {
setTitle(R.string.new_post);
} else if (subUrl.startsWith(DiasporaUrlHelper.SUBURL_PEOPLE + appSettings.getProfileId())) {
setTitle(R.string.nav_profile);
} else if (subUrl.startsWith(DiasporaUrlHelper.SUBURL_ACTIVITY)) {
setTitle(R.string.nav_activities);
} else if (subUrl.startsWith(DiasporaUrlHelper.SUBURL_LIKED)) {
setTitle(R.string.nav_liked);
} else if (subUrl.startsWith(DiasporaUrlHelper.SUBURL_COMMENTED)) {
setTitle(R.string.nav_commented);
} else if (subUrl.startsWith(DiasporaUrlHelper.SUBURL_MENTIONS)) {
setTitle(R.string.nav_mentions);
} else if (subUrl.startsWith(DiasporaUrlHelper.SUBURL_PUBLIC)) {
setTitle(R.string.public_);
} else if (urls.isAspectUrl(url)){
setTitle(urls.getAspectNameFromUrl(url, app));
}
} else {
Log.w(App.TAG, "MainActivity.brSetTitle.onReceive(): Invalid url: "+url);
}
}
};
private final BroadcastReceiver brOpenExternalLink = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String url = intent.getStringExtra(EXTRA_URL);
if(url != null) {
CustomTabsIntent.Builder intentBuilder = new CustomTabsIntent.Builder();
if(Build.VERSION.SDK_INT >= 23) {
intentBuilder.setToolbarColor(getResources().getColor(R.color.colorPrimary, getTheme()));
} else {
intentBuilder.setToolbarColor(getResources().getColor(R.color.colorPrimary));
}
2016-09-11 13:05:26 +02:00
intentBuilder.setStartAnimations(MainActivity.this, android.R.anim.slide_in_left, android.R.anim.fade_out);
intentBuilder.setExitAnimations(MainActivity.this, android.R.anim.fade_in, android.R.anim.slide_out_right);
Bitmap backButtonIcon = BitmapFactory.decodeResource(getResources(),
R.drawable.ic_arrow_back_white_24px);
intentBuilder.setCloseButtonIcon(backButtonIcon);
CustomTabActivityHelper.openCustomTab(MainActivity.this, intentBuilder.build(), Uri.parse(url), new BrowserFallback());
}
}
};
@Override
protected void onStart() {
super.onStart();
customTabActivityHelper.bindCustomTabsService(this);
}
@Override
protected void onStop() {
super.onStop();
customTabActivityHelper.unbindCustomTabsService(this);
}
2016-03-03 17:46:31 +01:00
@Override
protected void onPause() {
Log.v(App.TAG, "MainActivity.onPause()");
Log.v(App.TAG, "Unregister BroadcastReceivers");
LocalBroadcastManager.getInstance(this).unregisterReceiver(brSetTitle);
LocalBroadcastManager.getInstance(this).unregisterReceiver(brOpenExternalLink);
2016-03-03 17:46:31 +01:00
super.onPause();
}
@Override
protected void onResume() {
Log.v(App.TAG, "MainActivity.onResume()");
super.onResume();
Log.v(App.TAG, "Register BroadcastReceivers");
LocalBroadcastManager.getInstance(this).registerReceiver(brSetTitle, new IntentFilter(ACTION_UPDATE_TITLE_FROM_URL));
LocalBroadcastManager.getInstance(this).registerReceiver(brOpenExternalLink, new IntentFilter(ACTION_OPEN_EXTERNAL_URL));
}
2016-03-03 17:46:31 +01:00
@Override
public boolean onCreateOptionsMenu(Menu menu) {
Log.v(App.TAG, "MainActivity.onCreateOptionsMenu()");
getMenuInflater().inflate(R.menu.main__menu_top, menu);
2016-03-03 17:46:31 +01:00
return true;
}
@Override
public boolean onPrepareOptionsMenu(Menu menu) {
Log.i(App.TAG, "MainActivity.onPrepareOptionsMenu()");
MenuItem itemNotification = menu.findItem(R.id.action_notifications);
2016-03-03 17:46:31 +01:00
if (itemNotification != null) {
if (podUserProfile.getNotificationCount() > 0) {
2016-08-07 03:30:44 +02:00
itemNotification.setIcon(R.drawable.ic_notifications_colored_48px);
2016-03-03 17:46:31 +01:00
} else {
2016-08-07 03:30:44 +02:00
itemNotification.setIcon(R.drawable.ic_notifications_white_48px);
2016-03-03 17:46:31 +01:00
}
MenuItem itemConversation = menu.findItem(R.id.action_conversations);
if (podUserProfile.getUnreadMessagesCount() > 0) {
2016-08-07 03:30:44 +02:00
itemConversation.setIcon(R.drawable.ic_email_colored_48px);
2016-03-03 17:46:31 +01:00
} else {
2016-08-07 03:30:44 +02:00
itemConversation.setIcon(R.drawable.ic_mail_white_48px);
2016-03-03 17:46:31 +01:00
}
}
return super.onPrepareOptionsMenu(menu);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
Log.i(App.TAG, "MainActivity.onOptionsItemSelected()");
switch (item.getItemId()) {
case R.id.action_notifications: {
2016-08-07 14:29:52 +02:00
if (WebHelper.isOnline(MainActivity.this)) {
webView.loadUrlNew(urls.getNotificationsUrl());
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: {
2016-08-07 14:29:52 +02:00
if (WebHelper.isOnline(MainActivity.this)) {
webView.loadUrlNew(urls.getConversationsUrl());
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_reload: {
if (WebHelper.isOnline(MainActivity.this)) {
webView.reload();
return true;
} else {
snackbarNoInternet.show();
return false;
}
}
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.loadUrlNew(urls.getToggleMobileUrl());
return true;
}
case R.id.action_compose: {
2016-08-07 14:29:52 +02:00
if (WebHelper.isOnline(MainActivity.this)) {
webView.loadUrlNew(urls.getNewPostUrl());
} 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, getResources().getString(R.string.action_share_dotdotdot)));
2016-06-04 17:56:08 +02:00
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: {
2016-08-07 14:29:52 +02:00
if (WebHelper.isOnline(MainActivity.this)) {
final InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
2016-09-10 10:47:29 +02:00
View layout = getLayoutInflater().inflate(R.layout.dialog_search__people_tags, null, false);
final EditText input = (EditText) layout.findViewById(R.id.dialog_search__input);
final DialogInterface.OnClickListener clickListener = new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int which) {
String query = input.getText().toString().trim().replaceAll((which == DialogInterface.BUTTON_NEGATIVE ? "\\*" : "\\#"), "");
if(query.equals("")) {
Snackbar.make(contentLayout, R.string.search_alert_bypeople_validate_needsomedata, Snackbar.LENGTH_LONG).show();
} else {
webView.loadUrl(which == DialogInterface.BUTTON_NEGATIVE ? urls.getSearchPeopleUrl(query) : urls.getSearchTagsUrl(query));
}
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);
imm.hideSoftInputFromWindow(input.getWindowToken(), 0);
}
};
final android.support.v7.app.AlertDialog dialog = new android.support.v7.app.AlertDialog.Builder(this)
.setView(layout).setTitle(R.string.search_alert_title)
.setCancelable(true)
.setPositiveButton(R.string.search_alert_tag, clickListener)
.setNegativeButton(R.string.search_alert_people, clickListener)
.create();
input.setOnEditorActionListener(new TextView.OnEditorActionListener() {
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_DONE) {
dialog.hide();
clickListener.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-08-07 11:39:20 +02:00
@SuppressWarnings("ResultOfMethodCallIgnored")
2016-06-04 17:56:08 +02:00
private boolean makeScreenshotOfWebView(boolean hasToShareScreenshot) {
Log.i(App.TAG, "MainActivity.makeScreenshotOfWebView()");
2016-06-04 17:56:08 +02:00
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()) {
if(!fileSaveDirectory.mkdirs()) {
Log.w(App.TAG, "Could not mkdir "+fileSaveDirectory.getAbsolutePath());
}
2016-06-04 17:56:08 +02:00
}
2016-06-05 01:54:17 +02:00
if (!hasToShareScreenshot) {
Snackbar.make(contentLayout, getString(R.string.share__toast_screenshot) + " " + fileSaveName, Snackbar.LENGTH_LONG).show();
2016-06-05 01:54:17 +02:00
}
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-08-07 11:39:20 +02:00
} catch (IOException _ignSaveored) {/* 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.action_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) {
Log.i(App.TAG, "MainActivity.onUserProfileNameChanged()");
navheaderTitle.setText(name);
}
@Override
public void onUserProfileAvatarChanged(String avatarUrl) {
Log.i(App.TAG, "MainActivity.onUserProfileAvatarChanged()");
app.getAvatarImageLoader().startImageDownload(navheaderImage, avatarUrl);
}
private void handleHashtag(Intent intent) {
Log.v(App.TAG, "handleHashtag()");
try {
setSharedTexts(null, intent.getData().toString().split("/")[3]);
} catch (Exception e) {
Log.e(App.TAG, e.toString());
}
webView.loadUrlNew(urls.getNewPostUrl());
}
private void handleSendText(Intent intent) {
Log.v(App.TAG, "handleSendText()");
try {
setSharedTexts(null, intent.getStringExtra(Intent.EXTRA_TEXT));
} catch (Exception e) {
Log.e(App.TAG, e.toString());
}
webView.loadUrlNew(urls.getBlankUrl());
webView.loadUrlNew(urls.getNewPostUrl());
}
/**
* Handle sent text + subject
*
* @param intent intent
*/
private void handleSendSubject(Intent intent) {
Log.v(App.TAG, "handleSendSubject()");
try {
setSharedTexts(intent.getStringExtra(Intent.EXTRA_SUBJECT), intent.getStringExtra(Intent.EXTRA_TEXT));
} catch (Exception e) {
Log.e(App.TAG, e.toString());
}
webView.loadUrlNew(urls.getBlankUrl()); //TODO: Necessary?
webView.loadUrlNew(urls.getNewPostUrl());
}
2016-08-07 14:29:52 +02:00
/**
* Set sharedText variable to escaped and formatted subject + body.
* If subject is null, only the body will be set. Else the subject will be set as header.
* Depending on whether the user has the setting isAppendSharedViaApp set, a reference to
* the app will be added at the bottom
* @param sharedSubject post subject or null
* @param sharedBody post text
*/
private void setSharedTexts(String sharedSubject, String sharedBody) {
Log.i(App.TAG, "MainActivity.setSharedTexts()");
String body = WebHelper.replaceUrlWithMarkdown(sharedBody);
if (appSettings.isAppendSharedViaApp()) {
Log.v(App.TAG, "Append app reference to shared text");
body = body + "\n\n" + getString(R.string.shared_by_diaspora_android);
}
final String escapedBody = WebHelper.escapeHtmlText(body);
if(sharedSubject != null) {
Log.v(App.TAG, "Append subject to shared text");
String escapedSubject = WebHelper.escapeHtmlText(WebHelper.replaceUrlWithMarkdown(sharedSubject));
textToBeShared = "**" + escapedSubject + "** " + escapedBody;
} else {
Log.v(App.TAG, "Set shared text; Subject: \""+sharedSubject+"\" Body: \""+sharedBody+"\"");
textToBeShared = escapedBody;
}
2016-08-07 14:29:52 +02:00
2016-08-08 07:41:36 +02:00
}
//TODO: Implement?
private void handleSendImage(Intent intent) {
Log.i(App.TAG, "MainActivity.handleSendImage()");
final Uri imageUri = intent.getParcelableExtra(Intent.EXTRA_STREAM);
if (imageUri != null) {
Log.v(App.TAG, "imageUri is not null. Handle shared image");
// TODO: Update UI to reflect text being shared
} else {
Log.w(App.TAG, "imageUri is null. Cannot precede.");
}
Toast.makeText(this, "Not yet implemented.", Toast.LENGTH_SHORT).show();
}
// TODO: Move from Javascript interface
@Override
public void onNotificationCountChanged(int notificationCount) {
Log.i(App.TAG, "MainActivity.onNotificationCountChanged()");
2016-08-07 11:39:20 +02:00
// Count saved in PodUserProfile
invalidateOptionsMenu();
2016-08-07 11:39:20 +02:00
if (notificationCount > 0 && !snackbarNewNotification.isShown()
&& !webView.getUrl().equals(urls.getNotificationsUrl())) {
2016-08-07 11:39:20 +02:00
snackbarNewNotification.show();
}
}
// TODO: Move from Javascript interface
@Override
public void onUnreadMessageCountChanged(int unreadMessageCount) {
Log.i(App.TAG, "MainActivity.onUnreadMessageCountChanged()");
2016-08-07 11:39:20 +02:00
// Count saved in PodUserProfile
invalidateOptionsMenu();
if (unreadMessageCount > 0 && !snackbarNewNotification.isShown()
&& !webView.getUrl().equals(urls.getNotificationsUrl())) {
2016-08-07 11:39:20 +02:00
snackbarNewNotification.show();
}
}
private class JavaScriptInterface {
2016-03-24 13:56:30 +01:00
@JavascriptInterface
public void setUserProfile(final String webMessage) throws JSONException {
Log.i(App.TAG, "MainActivity.JavaScriptInterface.setUserProfile()");
if (podUserProfile.isRefreshNeeded()) {
Log.v(App.TAG, "PodUserProfile needs refresh; Try to parse JSON");
podUserProfile.parseJson(webMessage);
} else {
Log.v(App.TAG, "No PodUserProfile refresh needed");
}
2016-03-24 13:56:30 +01:00
}
2016-08-08 07:41:36 +02:00
@JavascriptInterface
public void contentHasBeenShared() {
2016-08-08 07:41:36 +02:00
textToBeShared = null;
}
2016-03-03 17:46:31 +01:00
}
@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
Log.i(App.TAG, "MainActivity.onNavigationItemsSelected()");
2016-03-03 17:46:31 +01:00
// Handle navigation view item clicks here.
switch (item.getItemId()) {
case R.id.nav_stream: {
2016-08-07 14:29:52 +02:00
if (WebHelper.isOnline(MainActivity.this)) {
webView.loadUrlNew(urls.getStreamUrl());
} 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
2016-08-10 17:47:21 +02:00
case R.id.nav_profile: {
if (WebHelper.isOnline(MainActivity.this)) {
webView.loadUrlNew(urls.getProfileUrl());
2016-08-10 17:47:21 +02:00
} else {
snackbarNoInternet.show();
}
}
break;
case R.id.nav_followed_tags: {
2016-08-07 14:29:52 +02:00
if (WebHelper.isOnline(MainActivity.this)) {
WebHelper.showFollowedTagsList(webView, app);
setTitle(R.string.nav_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: {
2016-08-07 14:29:52 +02:00
if (WebHelper.isOnline(MainActivity.this)) {
webView.loadUrlNew(DiasporaUrlHelper.URL_BLANK);
2016-08-07 14:29:52 +02:00
WebHelper.showAspectList(webView, app);
setTitle(R.string.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: {
2016-08-07 14:29:52 +02:00
if (WebHelper.isOnline(MainActivity.this)) {
webView.loadUrlNew(urls.getActivityUrl());
} 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: {
2016-08-07 14:29:52 +02:00
if (WebHelper.isOnline(MainActivity.this)) {
webView.loadUrlNew(urls.getLikedPostsUrl());
} 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: {
2016-08-07 14:29:52 +02:00
if (WebHelper.isOnline(MainActivity.this)) {
webView.loadUrlNew(urls.getCommentedUrl());
} 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: {
2016-08-07 14:29:52 +02:00
if (WebHelper.isOnline(MainActivity.this)) {
webView.loadUrlNew(urls.getMentionsUrl());
} else {
2016-06-24 13:31:01 +02:00
snackbarNoInternet.show();
}
break;
2016-03-03 17:46:31 +01:00
}
case R.id.nav_public: {
2016-08-07 14:29:52 +02:00
if (WebHelper.isOnline(MainActivity.this)) {
webView.loadUrlNew(urls.getPublicUrl());
} else {
2016-06-24 13:31:01 +02:00
snackbarNoInternet.show();
}
break;
}
case R.id.nav_exit: {
moveTaskToBack(true);
finish();
break;
}
2016-03-03 17:46:31 +01:00
case R.id.nav_settings: {
startActivity(new Intent(this, SettingsActivity.class));
}
break;
2016-03-08 15:42:02 +01:00
case R.id.nav_help_license: {
startActivity(new Intent(MainActivity.this, AboutActivity.class));
2016-03-08 15:42:02 +01:00
}
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__ACCESS_EXTERNAL_STORAGE:
if (grantResults.length == 1 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
Log.i(App.TAG, "MainActivity.onRequestPermissionsResult: Permission to access external storage granted");
Toast.makeText(this, R.string.permission_granted_try_again, Toast.LENGTH_SHORT).show();
} else {
Log.w(App.TAG, "MainActivity.onRequestPermissionsResult: Permission to access external storage denied");
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) {
Log.i(App.TAG, "MainActivity.setProxy()");
if (host != null && !host.equals("") && port >= 0) {
Log.i(App.TAG, "Set proxy to "+host+":"+port);
2016-06-09 01:03:50 +02:00
//Temporary change thread policy
Log.v(App.TAG, "Set temporary ThreadPolicy");
2016-06-09 01:03:50 +02:00
StrictMode.ThreadPolicy old = StrictMode.getThreadPolicy();
StrictMode.ThreadPolicy tmp = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(tmp);
Log.v(App.TAG, "Apply NetCipher proxy settings");
2016-06-09 01:03:50 +02:00
NetCipher.setProxy(host, port); //Proxy for HttpsUrlConnections
try {
//Proxy for the webview
Log.v(App.TAG, "Apply Webkit proxy settings");
2016-06-09 01:03:50 +02:00
WebkitProxy.setProxy(MainActivity.class.getName(), getApplicationContext(), null, host, port);
} catch (Exception e) {
Log.e(App.TAG, "Could not apply WebKit proxy settings:\n"+e.toString());
}
Log.v(App.TAG, "Save changes in appSettings");
2016-06-09 01:03:50 +02:00
appSettings.setProxyEnabled(true);
appSettings.setProxyWasEnabled(true);
2016-06-09 01:03:50 +02:00
Log.v(App.TAG, "Reset old ThreadPolicy");
2016-06-09 01:03:50 +02:00
StrictMode.setThreadPolicy(old);
Log.i(App.TAG, "Success! Reload WebView");
2016-06-09 01:03:50 +02:00
webView.reload();
return true;
} else {
Log.w(App.TAG, "Invalid proxy configuration. Host: "+host+" Port: "+port+"\nRefuse to set proxy");
2016-06-09 01:03:50 +02:00
return false;
}
}
private boolean setProxy() {
return setProxy(appSettings.getProxyHost(), appSettings.getProxyPort());
}
private void resetProxy() {
Log.i(App.TAG, "MainActivity.resetProxy()");
Log.v(App.TAG, "write changes to appSettings");
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
Log.v(App.TAG, "Set temporary ThreadPolicy");
2016-06-09 01:03:50 +02:00
StrictMode.ThreadPolicy old = StrictMode.getThreadPolicy();
StrictMode.ThreadPolicy tmp = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(tmp);
Log.v(App.TAG, "clear NetCipher proxy");
2016-06-09 01:03:50 +02:00
NetCipher.clearProxy();
try {
Log.v(App.TAG, "clear WebKit proxy");
2016-06-09 01:03:50 +02:00
WebkitProxy.resetProxy(MainActivity.class.getName(), this);
} catch (Exception e) {
Log.e(App.TAG, "Could not clear WebKit proxy:\n"+e.toString());
}
Log.v(App.TAG, "Reset old ThreadPolicy");
2016-06-09 01:03:50 +02:00
StrictMode.setThreadPolicy(old);
//Restart app
Log.i(App.TAG, "Success! Restart app due to proxy reset");
2016-06-09 01:03:50 +02:00
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
}