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-03-03 12:21:12 +00:00
|
|
|
import com.actionbarsherlock.view.Menu;
|
|
|
|
import com.actionbarsherlock.view.MenuInflater;
|
2014-02-13 09:35:08 +00:00
|
|
|
import com.actionbarsherlock.view.MenuItem;
|
|
|
|
|
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-03-03 12:21:12 +00:00
|
|
|
import org.thoughtcrime.securesms.util.DirectoryHelper;
|
2014-02-13 09:35:08 +00:00
|
|
|
import org.thoughtcrime.securesms.util.DynamicTheme;
|
2014-02-18 00:19:38 +00:00
|
|
|
import org.thoughtcrime.securesms.util.NumberUtil;
|
2014-03-03 12:21:12 +00:00
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
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-03-18 06:25:09 +00:00
|
|
|
import java.util.LinkedList;
|
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;
|
|
|
|
|
|
|
|
/**
|
2014-03-18 06:25:09 +00:00
|
|
|
* Activity container for selecting a list of contacts.
|
2014-02-13 09:35:08 +00:00
|
|
|
*
|
|
|
|
* @author Moxie Marlinspike
|
|
|
|
*
|
|
|
|
*/
|
2014-03-18 06:25:09 +00:00
|
|
|
public class NewConversationActivity extends PassphraseRequiredSherlockFragmentActivity {
|
|
|
|
private final static String TAG = "ContactSelectActivity";
|
|
|
|
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();
|
2014-03-18 06:25:09 +00:00
|
|
|
private MasterSecret masterSecret;
|
|
|
|
|
|
|
|
private PushContactSelectionListFragment contactsFragment;
|
|
|
|
|
2014-02-13 09:35:08 +00:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle icicle) {
|
|
|
|
dynamicTheme.onCreate(this);
|
|
|
|
super.onCreate(icicle);
|
|
|
|
|
2014-04-08 20:14:40 +00:00
|
|
|
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
2014-02-13 09:35:08 +00:00
|
|
|
|
2014-03-18 06:25:09 +00:00
|
|
|
setContentView(R.layout.new_conversation_activity);
|
2014-02-17 23:23:02 +00:00
|
|
|
initializeResources();
|
|
|
|
}
|
|
|
|
|
2014-03-18 06:25:09 +00:00
|
|
|
@Override
|
|
|
|
public void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
dynamicTheme.onResume(this);
|
2014-02-17 23:23:02 +00:00
|
|
|
masterSecret = getIntent().getParcelableExtra(MASTER_SECRET_EXTRA);
|
2014-03-18 06:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onPrepareOptionsMenu(Menu menu) {
|
|
|
|
MenuInflater inflater = this.getSupportMenuInflater();
|
|
|
|
menu.clear();
|
|
|
|
|
|
|
|
if (TextSecurePreferences.isPushRegistered(this)) inflater.inflate(R.menu.push_directory, menu);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
super.onOptionsItemSelected(item);
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case R.id.menu_refresh_directory: handleDirectoryRefresh(); return true;
|
|
|
|
case R.id.menu_selection_finished: handleSelectionFinished(); return true;
|
|
|
|
case android.R.id.home: finish(); return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2014-02-17 23:23:02 +00:00
|
|
|
|
2014-03-18 06:25:09 +00:00
|
|
|
private void initializeResources() {
|
|
|
|
contactsFragment = (PushContactSelectionListFragment) getSupportFragmentManager().findFragmentById(R.id.contact_selection_list_fragment);
|
|
|
|
contactsFragment.setOnContactSelectedListener(new PushContactSelectionListFragment.OnContactSelectedListener() {
|
2014-02-13 09:35:08 +00:00
|
|
|
@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-03-18 06:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void handleSelectionFinished() {
|
|
|
|
final Intent resultIntent = getIntent();
|
|
|
|
final List<ContactData> selectedContacts = contactsFragment.getSelectedContacts();
|
|
|
|
if (selectedContacts != null) {
|
|
|
|
resultIntent.putParcelableArrayListExtra("contacts", new ArrayList<ContactData>(contactsFragment.getSelectedContacts()));
|
|
|
|
}
|
|
|
|
setResult(RESULT_OK, resultIntent);
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleDirectoryRefresh() {
|
|
|
|
DirectoryHelper.refreshDirectoryWithProgressDialog(this, new DirectoryHelper.DirectoryUpdateFinishedListener() {
|
|
|
|
@Override
|
|
|
|
public void onUpdateFinished() {
|
|
|
|
contactsFragment.update();
|
|
|
|
}
|
|
|
|
});
|
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-03-18 06:25:09 +00:00
|
|
|
Recipients recipients = new Recipients(new LinkedList<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 {
|
2014-03-18 06:25:09 +00:00
|
|
|
Recipients recipientsForNumber = RecipientFactory.getRecipientsFromString(NewConversationActivity.this,
|
|
|
|
numberData.number,
|
|
|
|
false);
|
2014-02-18 04:19:35 +00:00
|
|
|
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) {
|
2014-03-18 06:25:09 +00:00
|
|
|
Intent intent = new Intent(this, ConversationActivity.class);
|
2014-02-24 08:19:54 +00:00
|
|
|
intent.putExtra(ConversationActivity.RECIPIENTS_EXTRA, recipients.toIdString());
|
2014-02-17 23:23:02 +00:00
|
|
|
intent.putExtra(ConversationActivity.MASTER_SECRET_EXTRA, masterSecret);
|
2014-02-28 06:44:02 +00:00
|
|
|
intent.putExtra(ConversationActivity.DRAFT_TEXT_EXTRA, getIntent().getStringExtra(ConversationActivity.DRAFT_TEXT_EXTRA));
|
|
|
|
intent.putExtra(ConversationActivity.DRAFT_AUDIO_EXTRA, getIntent().getParcelableExtra(ConversationActivity.DRAFT_AUDIO_EXTRA));
|
|
|
|
intent.putExtra(ConversationActivity.DRAFT_VIDEO_EXTRA, getIntent().getParcelableExtra(ConversationActivity.DRAFT_VIDEO_EXTRA));
|
|
|
|
intent.putExtra(ConversationActivity.DRAFT_IMAGE_EXTRA, getIntent().getParcelableExtra(ConversationActivity.DRAFT_IMAGE_EXTRA));
|
2014-03-18 06:25:09 +00:00
|
|
|
long existingThread = DatabaseFactory.getThreadDatabase(this).getThreadIdIfExistsFor(recipients);
|
2014-02-17 23:23:02 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|