2014-02-13 09:35:08 +00:00
|
|
|
/**
|
|
|
|
* Copyright (C) 2011 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;
|
|
|
|
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.util.Log;
|
2014-02-17 23:23:02 +00:00
|
|
|
import android.view.View;
|
2014-02-13 09:35:08 +00:00
|
|
|
|
|
|
|
import com.actionbarsherlock.app.ActionBar;
|
|
|
|
import com.actionbarsherlock.view.MenuItem;
|
|
|
|
|
2014-02-17 01:44:51 +00:00
|
|
|
import org.thoughtcrime.securesms.components.SingleRecipientPanel;
|
2014-02-18 00:19:38 +00:00
|
|
|
import org.thoughtcrime.securesms.contacts.ContactAccessor;
|
2014-02-17 23:23:02 +00:00
|
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
|
|
|
import org.thoughtcrime.securesms.database.ThreadDatabase;
|
2014-02-18 00:19:38 +00:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
|
|
|
import org.thoughtcrime.securesms.recipients.RecipientFactory;
|
2014-02-17 23:23:02 +00:00
|
|
|
import org.thoughtcrime.securesms.recipients.RecipientFormattingException;
|
2014-02-17 01:44:51 +00:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipients;
|
2014-02-13 09:35:08 +00:00
|
|
|
import org.thoughtcrime.securesms.util.ActionBarUtil;
|
|
|
|
import org.thoughtcrime.securesms.util.DynamicTheme;
|
2014-02-18 00:19:38 +00:00
|
|
|
import org.thoughtcrime.securesms.util.NumberUtil;
|
2014-02-17 23:23:02 +00:00
|
|
|
import org.whispersystems.textsecure.crypto.MasterSecret;
|
2014-02-13 09:35:08 +00:00
|
|
|
|
|
|
|
import java.util.ArrayList;
|
2014-02-18 00:19:38 +00:00
|
|
|
import java.util.List;
|
2014-02-13 09:35:08 +00:00
|
|
|
|
|
|
|
import static org.thoughtcrime.securesms.contacts.ContactAccessor.ContactData;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Activity container for selecting a list of contacts. Provides a tab frame for
|
|
|
|
* contact, group, and "recent contact" activity tabs. Used by ComposeMessageActivity
|
|
|
|
* when selecting a list of contacts to address a message to.
|
|
|
|
*
|
|
|
|
* @author Moxie Marlinspike
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public class SingleContactSelectionActivity extends PassphraseRequiredSherlockFragmentActivity {
|
2014-02-17 23:23:02 +00:00
|
|
|
private final static String TAG = "SingleContactSelectionActivity";
|
|
|
|
public final static String MASTER_SECRET_EXTRA = "master_secret";
|
2014-02-13 09:35:08 +00:00
|
|
|
|
2014-02-17 23:23:02 +00:00
|
|
|
private final DynamicTheme dynamicTheme = new DynamicTheme();
|
|
|
|
private MasterSecret masterSecret;
|
2014-02-13 09:35:08 +00:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle icicle) {
|
|
|
|
dynamicTheme.onCreate(this);
|
|
|
|
super.onCreate(icicle);
|
|
|
|
|
|
|
|
final ActionBar actionBar = this.getSupportActionBar();
|
|
|
|
ActionBarUtil.initializeDefaultActionBar(this, actionBar);
|
|
|
|
actionBar.setDisplayHomeAsUpEnabled(true);
|
|
|
|
|
|
|
|
setContentView(R.layout.single_contact_selection_activity);
|
2014-02-17 23:23:02 +00:00
|
|
|
initializeResources();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initializeResources() {
|
|
|
|
masterSecret = getIntent().getParcelableExtra(MASTER_SECRET_EXTRA);
|
|
|
|
final SingleRecipientPanel recipientsPanel = (SingleRecipientPanel) findViewById(R.id.recipients);
|
|
|
|
|
2014-02-13 09:35:08 +00:00
|
|
|
final SingleContactSelectionListFragment listFragment = (SingleContactSelectionListFragment)getSupportFragmentManager().findFragmentById(R.id.contact_selection_list_fragment);
|
|
|
|
listFragment.setOnContactSelectedListener(new SingleContactSelectionListFragment.OnContactSelectedListener() {
|
|
|
|
@Override
|
|
|
|
public void onContactSelected(ContactData contactData) {
|
2014-02-18 00:19:38 +00:00
|
|
|
Log.i(TAG, "Choosing contact from list.");
|
|
|
|
Recipients recipients = contactDataToRecipients(contactData);
|
|
|
|
openNewConversation(recipients);
|
2014-02-13 09:35:08 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-02-17 01:44:51 +00:00
|
|
|
recipientsPanel.setPanelChangeListener(new SingleRecipientPanel.RecipientsPanelChangedListener() {
|
2014-02-13 09:35:08 +00:00
|
|
|
@Override
|
2014-02-17 01:44:51 +00:00
|
|
|
public void onRecipientsPanelUpdate(Recipients recipients) {
|
2014-02-18 00:19:38 +00:00
|
|
|
Log.i(TAG, "Choosing contact from autocompletion.");
|
2014-02-17 23:23:02 +00:00
|
|
|
openNewConversation(recipients);
|
2014-02-13 09:35:08 +00:00
|
|
|
}
|
|
|
|
});
|
2014-02-17 23:23:02 +00:00
|
|
|
}
|
2014-02-17 01:44:51 +00:00
|
|
|
|
2014-02-18 00:19:38 +00:00
|
|
|
private Recipients contactDataToRecipients(ContactData contactData) {
|
|
|
|
if (contactData == null || contactData.numbers == null) return null;
|
2014-02-18 04:19:35 +00:00
|
|
|
Recipients recipients = new Recipients(new ArrayList<Recipient>());
|
2014-02-18 00:19:38 +00:00
|
|
|
for (ContactAccessor.NumberData numberData : contactData.numbers) {
|
|
|
|
if (NumberUtil.isValidSmsOrEmailOrGroup(numberData.number)) {
|
2014-02-18 04:19:35 +00:00
|
|
|
try {
|
|
|
|
Recipients recipientsForNumber = RecipientFactory.getRecipientsFromString(SingleContactSelectionActivity.this,
|
|
|
|
numberData.number,
|
|
|
|
false);
|
|
|
|
recipients.getRecipientsList().addAll(recipientsForNumber.getRecipientsList());
|
2014-02-19 00:28:54 +00:00
|
|
|
} catch (RecipientFormattingException rfe) {
|
|
|
|
Log.w(TAG, "Caught RecipientFormattingException when trying to convert a selected number to a Recipient.", rfe);
|
|
|
|
}
|
2014-02-18 00:19:38 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-18 04:19:35 +00:00
|
|
|
return recipients;
|
2014-02-18 00:19:38 +00:00
|
|
|
}
|
|
|
|
|
2014-02-17 23:23:02 +00:00
|
|
|
private void openNewConversation(Recipients recipients) {
|
|
|
|
if (recipients != null) {
|
|
|
|
Intent intent = new Intent(SingleContactSelectionActivity.this, ConversationActivity.class);
|
|
|
|
intent.putExtra(ConversationActivity.RECIPIENTS_EXTRA, recipients);
|
|
|
|
intent.putExtra(ConversationActivity.MASTER_SECRET_EXTRA, masterSecret);
|
|
|
|
long existingThread = DatabaseFactory.getThreadDatabase(SingleContactSelectionActivity.this).getThreadIdIfExistsFor(recipients);
|
|
|
|
intent.putExtra(ConversationActivity.THREAD_ID_EXTRA, existingThread);
|
|
|
|
intent.putExtra(ConversationActivity.DISTRIBUTION_TYPE_EXTRA, ThreadDatabase.DistributionTypes.DEFAULT);
|
|
|
|
startActivity(intent);
|
|
|
|
finish();
|
|
|
|
}
|
2014-02-13 09:35:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
dynamicTheme.onResume(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case android.R.id.home:
|
|
|
|
setResult(RESULT_CANCELED);
|
|
|
|
finish();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|