mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
358 lines
10 KiB
Java
358 lines
10 KiB
Java
package org.briarproject.android;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.SharedPreferences;
|
|
import android.content.res.Configuration;
|
|
import android.content.res.Resources;
|
|
import android.os.Bundle;
|
|
import android.support.design.widget.NavigationView;
|
|
import android.support.design.widget.NavigationView.OnNavigationItemSelectedListener;
|
|
import android.support.v4.widget.DrawerLayout;
|
|
import android.support.v7.app.ActionBarDrawerToggle;
|
|
import android.support.v7.widget.Toolbar;
|
|
import android.view.LayoutInflater;
|
|
import android.view.MenuItem;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
import android.widget.BaseAdapter;
|
|
import android.widget.GridView;
|
|
import android.widget.ImageView;
|
|
import android.widget.TextView;
|
|
|
|
import org.briarproject.R;
|
|
import org.briarproject.android.blogs.FeedFragment;
|
|
import org.briarproject.android.contact.ContactListFragment;
|
|
import org.briarproject.android.controller.NavDrawerController;
|
|
import org.briarproject.android.controller.TransportStateListener;
|
|
import org.briarproject.android.controller.handler.UiResultHandler;
|
|
import org.briarproject.android.forum.ForumListFragment;
|
|
import org.briarproject.android.fragment.BaseFragment.BaseFragmentListener;
|
|
import org.briarproject.android.privategroup.list.GroupListFragment;
|
|
import org.briarproject.api.TransportId;
|
|
import org.briarproject.api.identity.LocalAuthor;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.logging.Logger;
|
|
|
|
import javax.inject.Inject;
|
|
|
|
import static android.support.v4.view.GravityCompat.START;
|
|
import static android.support.v4.widget.DrawerLayout.LOCK_MODE_LOCKED_CLOSED;
|
|
import static android.support.v4.widget.DrawerLayout.LOCK_MODE_UNLOCKED;
|
|
import static android.view.View.INVISIBLE;
|
|
|
|
public class NavDrawerActivity extends BriarFragmentActivity implements
|
|
BaseFragmentListener, TransportStateListener,
|
|
OnNavigationItemSelectedListener {
|
|
|
|
static final String INTENT_CONTACTS = "intent_contacts";
|
|
static final String INTENT_FORUMS = "intent_forums";
|
|
static final String INTENT_BLOGS = "intent_blogs";
|
|
|
|
private static final Logger LOG =
|
|
Logger.getLogger(NavDrawerActivity.class.getName());
|
|
|
|
private final static String PREF_SEEN_WELCOME_MESSAGE = "welcome_message";
|
|
|
|
private ActionBarDrawerToggle drawerToggle;
|
|
|
|
@Inject
|
|
NavDrawerController controller;
|
|
|
|
private DrawerLayout drawerLayout;
|
|
private TextView progressTitle;
|
|
private ViewGroup progressViewGroup;
|
|
|
|
private List<Transport> transports;
|
|
private BaseAdapter transportsAdapter;
|
|
|
|
@Override
|
|
protected void onNewIntent(Intent intent) {
|
|
super.onNewIntent(intent);
|
|
exitIfStartupFailed(intent);
|
|
checkAuthorHandle(intent);
|
|
// FIXME why was the stack cleared here?
|
|
// This prevents state from being restored properly
|
|
// clearBackStack();
|
|
if (intent.getBooleanExtra(INTENT_FORUMS, false)) {
|
|
startFragment(ForumListFragment.newInstance());
|
|
} else if (intent.getBooleanExtra(INTENT_CONTACTS, false)) {
|
|
startFragment(ContactListFragment.newInstance());
|
|
} else if (intent.getBooleanExtra(INTENT_BLOGS, false)) {
|
|
startFragment(FeedFragment.newInstance());
|
|
}
|
|
setIntent(null);
|
|
}
|
|
|
|
@Override
|
|
public void injectActivity(ActivityComponent component) {
|
|
component.inject(this);
|
|
}
|
|
|
|
@SuppressWarnings("ConstantConditions")
|
|
@Override
|
|
public void onCreate(Bundle state) {
|
|
super.onCreate(state);
|
|
exitIfStartupFailed(getIntent());
|
|
setContentView(R.layout.activity_nav_drawer);
|
|
|
|
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
|
|
drawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
|
|
NavigationView navigation =
|
|
(NavigationView) findViewById(R.id.navigation);
|
|
GridView transportsView = (GridView) findViewById(R.id.transportsView);
|
|
progressTitle = (TextView) findViewById(R.id.title_progress_bar);
|
|
progressViewGroup = (ViewGroup) findViewById(R.id.container_progress);
|
|
|
|
setSupportActionBar(toolbar);
|
|
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
|
getSupportActionBar().setHomeButtonEnabled(true);
|
|
|
|
drawerToggle = new ActionBarDrawerToggle(this, drawerLayout, toolbar,
|
|
R.string.nav_drawer_open_description,
|
|
R.string.nav_drawer_close_description);
|
|
drawerLayout.addDrawerListener(drawerToggle);
|
|
navigation.setNavigationItemSelectedListener(this);
|
|
checkAuthorHandle(getIntent());
|
|
|
|
initializeTransports(getLayoutInflater());
|
|
transportsView.setAdapter(transportsAdapter);
|
|
|
|
welcomeMessageCheck();
|
|
|
|
if (state == null) {
|
|
navigation.setCheckedItem(R.id.nav_btn_contacts);
|
|
startFragment(ContactListFragment.newInstance());
|
|
}
|
|
if (getIntent() != null) {
|
|
onNewIntent(getIntent());
|
|
}
|
|
}
|
|
|
|
private void welcomeMessageCheck() {
|
|
SharedPreferences prefs = getPreferences(Context.MODE_PRIVATE);
|
|
if (!prefs.getBoolean(PREF_SEEN_WELCOME_MESSAGE, false)) {
|
|
showMessageDialog(R.string.dialog_title_welcome,
|
|
R.string.dialog_welcome_message);
|
|
prefs.edit().putBoolean(PREF_SEEN_WELCOME_MESSAGE, true).apply();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onStart() {
|
|
super.onStart();
|
|
updateTransports();
|
|
}
|
|
|
|
private void checkAuthorHandle(Intent intent) {
|
|
long handle = intent.getLongExtra(KEY_LOCAL_AUTHOR_HANDLE, -1);
|
|
if (handle != -1) {
|
|
LocalAuthor a = controller.removeAuthorHandle(handle);
|
|
// The activity was launched from the setup wizard
|
|
if (a != null) {
|
|
showLoadingScreen(true, R.string.progress_title_please_wait);
|
|
storeLocalAuthor(a);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void exitIfStartupFailed(Intent intent) {
|
|
if (intent.getBooleanExtra(KEY_STARTUP_FAILED, false)) {
|
|
finish();
|
|
LOG.info("Exiting");
|
|
System.exit(0);
|
|
}
|
|
}
|
|
|
|
private void storeLocalAuthor(LocalAuthor a) {
|
|
controller.storeLocalAuthor(a, new UiResultHandler<Void>(this) {
|
|
@Override
|
|
public void onResultUi(Void result) {
|
|
hideLoadingScreen();
|
|
}
|
|
});
|
|
}
|
|
|
|
private void loadFragment(int fragmentId) {
|
|
// TODO re-use fragments from the manager when possible
|
|
switch (fragmentId) {
|
|
case R.id.nav_btn_contacts:
|
|
startFragment(ContactListFragment.newInstance());
|
|
break;
|
|
case R.id.nav_btn_groups:
|
|
startFragment(GroupListFragment.newInstance());
|
|
break;
|
|
case R.id.nav_btn_forums:
|
|
startFragment(ForumListFragment.newInstance());
|
|
break;
|
|
case R.id.nav_btn_blogs:
|
|
startFragment(FeedFragment.newInstance());
|
|
break;
|
|
case R.id.nav_btn_settings:
|
|
startActivity(new Intent(this, SettingsActivity.class));
|
|
break;
|
|
case R.id.nav_btn_signout:
|
|
signOut();
|
|
break;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public boolean onNavigationItemSelected(MenuItem item) {
|
|
drawerLayout.closeDrawer(START);
|
|
clearBackStack();
|
|
loadFragment(item.getItemId());
|
|
return true;
|
|
}
|
|
|
|
|
|
@Override
|
|
public void onBackPressed() {
|
|
if (getSupportFragmentManager().getBackStackEntryCount() == 0
|
|
&& drawerLayout.isDrawerOpen(START)) {
|
|
drawerLayout.closeDrawer(START);
|
|
return;
|
|
}
|
|
super.onBackPressed();
|
|
}
|
|
|
|
@Override
|
|
public void onPostCreate(Bundle savedInstanceState) {
|
|
super.onPostCreate(savedInstanceState);
|
|
drawerToggle.syncState();
|
|
}
|
|
|
|
@Override
|
|
public void onConfigurationChanged(Configuration newConfig) {
|
|
super.onConfigurationChanged(newConfig);
|
|
drawerToggle.onConfigurationChanged(newConfig);
|
|
}
|
|
|
|
@Override
|
|
protected void signOut() {
|
|
showLoadingScreen(true, R.string.progress_title_logout);
|
|
super.signOut();
|
|
}
|
|
|
|
public void showLoadingScreen(boolean isBlocking, int stringId) {
|
|
if (isBlocking) {
|
|
// Disable navigation drawer slide to open
|
|
drawerLayout.setDrawerLockMode(LOCK_MODE_LOCKED_CLOSED);
|
|
}
|
|
progressTitle.setText(stringId);
|
|
progressViewGroup.setVisibility(View.VISIBLE);
|
|
}
|
|
|
|
public void hideLoadingScreen() {
|
|
drawerLayout.setDrawerLockMode(LOCK_MODE_UNLOCKED);
|
|
progressViewGroup.setVisibility(INVISIBLE);
|
|
}
|
|
|
|
private void initializeTransports(final LayoutInflater inflater) {
|
|
transports = new ArrayList<>(3);
|
|
|
|
Transport tor = new Transport();
|
|
tor.id = new TransportId("tor");
|
|
tor.enabled = controller.isTransportRunning(tor.id);
|
|
tor.iconId = R.drawable.transport_tor;
|
|
tor.textId = R.string.transport_tor;
|
|
transports.add(tor);
|
|
|
|
Transport bt = new Transport();
|
|
bt.id = new TransportId("bt");
|
|
bt.enabled = controller.isTransportRunning(bt.id);
|
|
bt.iconId = R.drawable.transport_bt;
|
|
bt.textId = R.string.transport_bt;
|
|
transports.add(bt);
|
|
|
|
Transport lan = new Transport();
|
|
lan.id = new TransportId("lan");
|
|
lan.enabled = controller.isTransportRunning(lan.id);
|
|
lan.iconId = R.drawable.transport_lan;
|
|
lan.textId = R.string.transport_lan;
|
|
transports.add(lan);
|
|
|
|
transportsAdapter = new BaseAdapter() {
|
|
@Override
|
|
public int getCount() {
|
|
return transports.size();
|
|
}
|
|
|
|
@Override
|
|
public Transport getItem(int position) {
|
|
return transports.get(position);
|
|
}
|
|
|
|
@Override
|
|
public long getItemId(int position) {
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public View getView(int position, View convertView,
|
|
ViewGroup parent) {
|
|
ViewGroup view = (ViewGroup) inflater.inflate(
|
|
R.layout.list_item_transport, parent, false);
|
|
|
|
Transport t = getItem(position);
|
|
Resources r = getResources();
|
|
|
|
int c;
|
|
if (t.enabled) {
|
|
c = r.getColor(R.color.briar_green_light);
|
|
} else {
|
|
c = r.getColor(android.R.color.tertiary_text_light);
|
|
}
|
|
|
|
ImageView icon = (ImageView) view.findViewById(R.id.imageView);
|
|
icon.setImageDrawable(r.getDrawable(t.iconId));
|
|
icon.setColorFilter(c);
|
|
|
|
TextView text = (TextView) view.findViewById(R.id.textView);
|
|
text.setText(getString(t.textId));
|
|
|
|
return view;
|
|
}
|
|
};
|
|
}
|
|
|
|
private void setTransport(final TransportId id, final boolean enabled) {
|
|
runOnUiThreadUnlessDestroyed(new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
if (transports == null || transportsAdapter == null) return;
|
|
for (Transport t : transports) {
|
|
if (t.id.equals(id)) {
|
|
t.enabled = enabled;
|
|
transportsAdapter.notifyDataSetChanged();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
private void updateTransports() {
|
|
if (transports == null || transportsAdapter == null) return;
|
|
for (Transport t : transports) {
|
|
t.enabled = controller.isTransportRunning(t.id);
|
|
}
|
|
transportsAdapter.notifyDataSetChanged();
|
|
}
|
|
|
|
@Override
|
|
public void stateUpdate(TransportId id, boolean enabled) {
|
|
setTransport(id, enabled);
|
|
}
|
|
|
|
private static class Transport {
|
|
|
|
private TransportId id;
|
|
private boolean enabled;
|
|
private int iconId;
|
|
private int textId;
|
|
}
|
|
}
|