2015-07-14 21:31:03 +00:00
|
|
|
/**
|
|
|
|
* Copyright (C) 2015 Open Whisper Systems
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
package org.thoughtcrime.securesms;
|
|
|
|
|
2015-07-15 21:27:37 +00:00
|
|
|
import android.content.Context;
|
2015-07-14 21:31:03 +00:00
|
|
|
import android.os.AsyncTask;
|
|
|
|
import android.os.Bundle;
|
2015-10-19 18:23:12 +00:00
|
|
|
import android.support.annotation.NonNull;
|
2015-07-14 21:31:03 +00:00
|
|
|
import android.support.v4.widget.SwipeRefreshLayout;
|
|
|
|
import android.util.Log;
|
|
|
|
|
2015-10-19 18:23:12 +00:00
|
|
|
import org.thoughtcrime.securesms.components.ContactFilterToolbar;
|
|
|
|
import org.thoughtcrime.securesms.components.ContactFilterToolbar.OnFilterChangedListener;
|
2015-07-14 21:31:03 +00:00
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
|
|
|
import org.thoughtcrime.securesms.util.DirectoryHelper;
|
|
|
|
import org.thoughtcrime.securesms.util.DynamicLanguage;
|
|
|
|
import org.thoughtcrime.securesms.util.DynamicNoActionBarTheme;
|
|
|
|
import org.thoughtcrime.securesms.util.DynamicTheme;
|
2015-10-19 18:23:12 +00:00
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
|
|
|
import org.thoughtcrime.securesms.util.ViewUtil;
|
2015-07-14 21:31:03 +00:00
|
|
|
|
|
|
|
import java.io.IOException;
|
2015-07-15 21:27:37 +00:00
|
|
|
import java.lang.ref.WeakReference;
|
2015-07-14 21:31:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Base activity container for selecting a list of contacts.
|
|
|
|
*
|
|
|
|
* @author Moxie Marlinspike
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public abstract class ContactSelectionActivity extends PassphraseRequiredActionBarActivity
|
|
|
|
implements SwipeRefreshLayout.OnRefreshListener,
|
|
|
|
ContactSelectionListFragment.OnContactSelectedListener
|
|
|
|
{
|
2015-10-19 18:23:12 +00:00
|
|
|
private static final String TAG = ContactSelectionActivity.class.getSimpleName();
|
2015-07-14 21:31:03 +00:00
|
|
|
|
|
|
|
private final DynamicTheme dynamicTheme = new DynamicNoActionBarTheme();
|
|
|
|
private final DynamicLanguage dynamicLanguage = new DynamicLanguage();
|
|
|
|
|
|
|
|
protected ContactSelectionListFragment contactsFragment;
|
|
|
|
|
2015-10-19 18:23:12 +00:00
|
|
|
private MasterSecret masterSecret;
|
|
|
|
private ContactFilterToolbar toolbar;
|
2015-07-14 21:31:03 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPreCreate() {
|
|
|
|
dynamicTheme.onCreate(this);
|
|
|
|
dynamicLanguage.onCreate(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-10-19 18:23:12 +00:00
|
|
|
protected void onCreate(Bundle icicle, @NonNull MasterSecret masterSecret) {
|
2015-10-27 19:18:02 +00:00
|
|
|
this.masterSecret = masterSecret;
|
2015-10-19 18:23:12 +00:00
|
|
|
if (!getIntent().hasExtra(ContactSelectionListFragment.DISPLAY_MODE)) {
|
|
|
|
getIntent().putExtra(ContactSelectionListFragment.DISPLAY_MODE,
|
|
|
|
TextSecurePreferences.isSmsEnabled(this)
|
|
|
|
? ContactSelectionListFragment.DISPLAY_MODE_ALL
|
|
|
|
: ContactSelectionListFragment.DISPLAY_MODE_PUSH_ONLY);
|
|
|
|
}
|
|
|
|
|
|
|
|
setContentView(R.layout.contact_selection_activity);
|
2015-07-14 21:31:03 +00:00
|
|
|
|
|
|
|
initializeToolbar();
|
|
|
|
initializeResources();
|
|
|
|
initializeSearch();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
dynamicTheme.onResume(this);
|
|
|
|
dynamicLanguage.onResume(this);
|
|
|
|
}
|
|
|
|
|
2015-10-19 18:23:12 +00:00
|
|
|
protected ContactFilterToolbar getToolbar() {
|
|
|
|
return toolbar;
|
|
|
|
}
|
|
|
|
|
2015-07-14 21:31:03 +00:00
|
|
|
private void initializeToolbar() {
|
2015-10-19 18:23:12 +00:00
|
|
|
this.toolbar = ViewUtil.findById(this, R.id.toolbar);
|
2015-07-14 21:31:03 +00:00
|
|
|
setSupportActionBar(toolbar);
|
|
|
|
|
|
|
|
getSupportActionBar().setDisplayHomeAsUpEnabled(false);
|
|
|
|
getSupportActionBar().setDisplayShowTitleEnabled(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initializeResources() {
|
|
|
|
contactsFragment = (ContactSelectionListFragment) getSupportFragmentManager().findFragmentById(R.id.contact_selection_list_fragment);
|
|
|
|
contactsFragment.setOnContactSelectedListener(this);
|
|
|
|
contactsFragment.setOnRefreshListener(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initializeSearch() {
|
2015-10-19 18:23:12 +00:00
|
|
|
toolbar.setOnFilterChangedListener(new OnFilterChangedListener() {
|
|
|
|
@Override public void onFilterChanged(String filter) {
|
|
|
|
contactsFragment.setQueryFilter(filter);
|
2015-07-14 21:31:03 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onRefresh() {
|
2015-07-15 21:27:37 +00:00
|
|
|
new RefreshDirectoryTask(this).execute(getApplicationContext());
|
2015-07-14 21:31:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onContactSelected(String number) {}
|
|
|
|
|
2015-10-19 18:23:12 +00:00
|
|
|
@Override
|
|
|
|
public void onContactDeselected(String number) {}
|
2015-07-15 21:27:37 +00:00
|
|
|
|
|
|
|
private static class RefreshDirectoryTask extends AsyncTask<Context, Void, Void> {
|
|
|
|
|
|
|
|
private final WeakReference<ContactSelectionActivity> activity;
|
2015-10-27 19:18:02 +00:00
|
|
|
private final MasterSecret masterSecret;
|
2015-07-15 21:27:37 +00:00
|
|
|
|
|
|
|
private RefreshDirectoryTask(ContactSelectionActivity activity) {
|
2015-10-27 19:18:02 +00:00
|
|
|
this.activity = new WeakReference<>(activity);
|
|
|
|
this.masterSecret = activity.masterSecret;
|
2015-07-15 21:27:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected Void doInBackground(Context... params) {
|
2015-10-27 19:18:02 +00:00
|
|
|
|
2015-07-15 21:27:37 +00:00
|
|
|
try {
|
2015-10-27 19:18:02 +00:00
|
|
|
DirectoryHelper.refreshDirectory(params[0], masterSecret);
|
2015-07-15 21:27:37 +00:00
|
|
|
} catch (IOException e) {
|
|
|
|
Log.w(TAG, e);
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(Void result) {
|
|
|
|
ContactSelectionActivity activity = this.activity.get();
|
|
|
|
|
|
|
|
if (activity != null && !activity.isFinishing()) {
|
2015-10-19 18:23:12 +00:00
|
|
|
activity.toolbar.clear();
|
2015-07-15 21:27:37 +00:00
|
|
|
activity.contactsFragment.resetQueryFilter();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-14 21:31:03 +00:00
|
|
|
}
|