2018-02-01 19:22:48 -08:00
|
|
|
/*
|
2015-07-14 14:31:03 -07:00
|
|
|
* Copyright (C) 2015 Open Whisper Systems
|
2014-02-13 01:35:08 -08:00
|
|
|
*
|
|
|
|
* 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;
|
2015-07-20 17:29:41 -07:00
|
|
|
import android.os.Bundle;
|
2015-11-16 15:25:39 -08:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuInflater;
|
2015-07-20 17:29:41 -07:00
|
|
|
import android.view.MenuItem;
|
2015-11-16 15:25:39 -08:00
|
|
|
import android.view.View;
|
2019-10-28 20:16:11 -04:00
|
|
|
import android.widget.Toast;
|
2014-02-13 01:35:08 -08:00
|
|
|
|
2019-01-31 19:28:40 -08:00
|
|
|
import org.thoughtcrime.securesms.conversation.ConversationActivity;
|
2019-10-28 20:16:11 -04:00
|
|
|
import org.thoughtcrime.securesms.crypto.UnidentifiedAccessUtil;
|
2014-02-17 15:23:02 -08:00
|
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
|
|
|
import org.thoughtcrime.securesms.database.ThreadDatabase;
|
2019-11-04 12:38:02 -05:00
|
|
|
import org.thoughtcrime.securesms.logging.Log;
|
2017-08-01 08:56:00 -07:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
2019-11-04 12:38:02 -05:00
|
|
|
import org.thoughtcrime.securesms.recipients.RecipientId;
|
|
|
|
import org.whispersystems.libsignal.util.guava.Optional;
|
2019-10-28 20:16:11 -04:00
|
|
|
import org.thoughtcrime.securesms.dependencies.ApplicationDependencies;
|
|
|
|
import org.thoughtcrime.securesms.logging.Log;
|
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
|
|
|
import org.thoughtcrime.securesms.util.FeatureFlags;
|
|
|
|
import org.thoughtcrime.securesms.util.UsernameUtil;
|
|
|
|
import org.thoughtcrime.securesms.util.concurrent.SignalExecutors;
|
|
|
|
import org.thoughtcrime.securesms.util.concurrent.SimpleTask;
|
|
|
|
import org.whispersystems.libsignal.util.guava.Optional;
|
|
|
|
import org.whispersystems.signalservice.api.profiles.SignalServiceProfile;
|
|
|
|
import org.whispersystems.signalservice.api.util.UuidUtil;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.UUID;
|
2014-02-13 01:35:08 -08:00
|
|
|
|
|
|
|
/**
|
2015-07-14 14:31:03 -07:00
|
|
|
* Activity container for starting a new conversation.
|
2014-02-13 01:35:08 -08:00
|
|
|
*
|
|
|
|
* @author Moxie Marlinspike
|
|
|
|
*
|
|
|
|
*/
|
2019-08-26 19:49:16 +01:00
|
|
|
public class NewConversationActivity extends ContactSelectionActivity
|
|
|
|
implements ContactSelectionListFragment.InviteCallback
|
|
|
|
{
|
2014-03-17 23:25:09 -07:00
|
|
|
|
2018-02-01 19:22:48 -08:00
|
|
|
@SuppressWarnings("unused")
|
2015-07-14 14:31:03 -07:00
|
|
|
private static final String TAG = NewConversationActivity.class.getSimpleName();
|
2014-03-17 23:25:09 -07:00
|
|
|
|
2015-07-20 17:29:41 -07:00
|
|
|
@Override
|
2018-02-01 19:22:48 -08:00
|
|
|
public void onCreate(Bundle bundle, boolean ready) {
|
2018-02-01 19:36:09 -08:00
|
|
|
super.onCreate(bundle, ready);
|
2018-02-01 19:22:48 -08:00
|
|
|
assert getSupportActionBar() != null;
|
2015-07-20 17:29:41 -07:00
|
|
|
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
|
|
|
}
|
|
|
|
|
2014-03-17 23:25:09 -07:00
|
|
|
@Override
|
2019-11-04 12:38:02 -05:00
|
|
|
public void onContactSelected(Optional<RecipientId> recipientId, String number) {
|
|
|
|
Recipient recipient;
|
|
|
|
if (recipientId.isPresent()) {
|
|
|
|
recipient = Recipient.resolved(recipientId.get());
|
|
|
|
} else {
|
|
|
|
Log.i(TAG, "[onContactSelected] Maybe creating a new recipient.");
|
|
|
|
recipient = Recipient.external(this, number);
|
|
|
|
}
|
2019-10-28 20:16:11 -04:00
|
|
|
launch(recipient);
|
|
|
|
}
|
2014-02-16 17:44:51 -08:00
|
|
|
|
2019-10-28 20:16:11 -04:00
|
|
|
private void launch(Recipient recipient) {
|
2015-11-18 12:54:40 -08:00
|
|
|
Intent intent = new Intent(this, ConversationActivity.class);
|
2019-08-07 14:22:51 -04:00
|
|
|
intent.putExtra(ConversationActivity.RECIPIENT_EXTRA, recipient.getId());
|
2015-12-12 19:12:37 +01:00
|
|
|
intent.putExtra(ConversationActivity.TEXT_EXTRA, getIntent().getStringExtra(ConversationActivity.TEXT_EXTRA));
|
2015-11-18 12:54:40 -08:00
|
|
|
intent.setDataAndType(getIntent().getData(), getIntent().getType());
|
2015-07-14 14:31:03 -07:00
|
|
|
|
2017-08-01 08:56:00 -07:00
|
|
|
long existingThread = DatabaseFactory.getThreadDatabase(this).getThreadIdIfExistsFor(recipient);
|
2015-07-14 14:31:03 -07:00
|
|
|
|
2015-11-18 12:54:40 -08:00
|
|
|
intent.putExtra(ConversationActivity.THREAD_ID_EXTRA, existingThread);
|
|
|
|
intent.putExtra(ConversationActivity.DISTRIBUTION_TYPE_EXTRA, ThreadDatabase.DistributionTypes.DEFAULT);
|
|
|
|
startActivity(intent);
|
|
|
|
finish();
|
2014-02-13 01:35:08 -08:00
|
|
|
}
|
2015-07-14 14:31:03 -07:00
|
|
|
|
2015-07-20 17:29:41 -07:00
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
super.onOptionsItemSelected(item);
|
|
|
|
|
|
|
|
switch (item.getItemId()) {
|
2016-03-28 13:09:04 +02:00
|
|
|
case android.R.id.home: super.onBackPressed(); return true;
|
|
|
|
case R.id.menu_refresh: handleManualRefresh(); return true;
|
|
|
|
case R.id.menu_new_group: handleCreateGroup(); return true;
|
|
|
|
case R.id.menu_invite: handleInvite(); return true;
|
2015-07-20 17:29:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-11-16 15:25:39 -08:00
|
|
|
private void handleManualRefresh() {
|
|
|
|
contactsFragment.setRefreshing(true);
|
|
|
|
onRefresh();
|
|
|
|
}
|
|
|
|
|
2016-03-28 13:09:04 +02:00
|
|
|
private void handleCreateGroup() {
|
|
|
|
startActivity(new Intent(this, GroupCreateActivity.class));
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleInvite() {
|
|
|
|
startActivity(new Intent(this, InviteActivity.class));
|
|
|
|
}
|
|
|
|
|
2015-11-16 15:25:39 -08:00
|
|
|
@Override
|
|
|
|
protected boolean onPrepareOptionsPanel(View view, Menu menu) {
|
|
|
|
MenuInflater inflater = this.getMenuInflater();
|
|
|
|
menu.clear();
|
|
|
|
inflater.inflate(R.menu.new_conversation_activity, menu);
|
|
|
|
super.onPrepareOptionsMenu(menu);
|
|
|
|
return true;
|
|
|
|
}
|
2019-08-26 19:49:16 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onInvite() {
|
|
|
|
handleInvite();
|
|
|
|
}
|
2014-02-13 01:35:08 -08:00
|
|
|
}
|