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;
|
2015-07-20 17:29:41 -07:00
|
|
|
import android.view.MenuItem;
|
2014-02-13 01:35:08 -08:00
|
|
|
|
2020-07-17 10:23:51 -04:00
|
|
|
import androidx.appcompat.app.AlertDialog;
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.contacts.sync.DirectoryHelper;
|
2019-01-31 19:28:40 -08:00
|
|
|
import org.thoughtcrime.securesms.conversation.ConversationActivity;
|
2014-02-17 15:23:02 -08:00
|
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
|
|
|
import org.thoughtcrime.securesms.database.ThreadDatabase;
|
2020-05-13 13:41:36 -03:00
|
|
|
import org.thoughtcrime.securesms.groups.ui.creategroup.CreateGroupActivity;
|
2020-07-17 10:23:51 -04:00
|
|
|
import org.thoughtcrime.securesms.jobmanager.impl.NetworkConstraint;
|
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;
|
2020-07-17 10:23:51 -04:00
|
|
|
import org.thoughtcrime.securesms.util.FeatureFlags;
|
|
|
|
import org.thoughtcrime.securesms.util.concurrent.SimpleTask;
|
|
|
|
import org.thoughtcrime.securesms.util.views.SimpleProgressDialog;
|
2019-11-04 12:38:02 -05:00
|
|
|
import org.whispersystems.libsignal.util.guava.Optional;
|
2014-02-13 01:35:08 -08:00
|
|
|
|
2020-07-17 10:23:51 -04:00
|
|
|
import java.io.IOException;
|
|
|
|
|
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
|
2020-04-24 10:13:07 -03:00
|
|
|
implements ContactSelectionListFragment.ListCallback
|
2019-08-26 19:49:16 +01:00
|
|
|
{
|
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
|
2020-08-31 11:33:50 -03:00
|
|
|
public boolean onBeforeContactSelected(Optional<RecipientId> recipientId, String number) {
|
2019-11-04 12:38:02 -05:00
|
|
|
if (recipientId.isPresent()) {
|
2020-07-17 10:23:51 -04:00
|
|
|
launch(Recipient.resolved(recipientId.get()));
|
2019-11-04 12:38:02 -05:00
|
|
|
} else {
|
|
|
|
Log.i(TAG, "[onContactSelected] Maybe creating a new recipient.");
|
2020-07-17 10:23:51 -04:00
|
|
|
if (FeatureFlags.cds() && NetworkConstraint.isMet(this)) {
|
|
|
|
Log.i(TAG, "[onContactSelected] CDS enabled. Doing contact refresh.");
|
|
|
|
|
|
|
|
AlertDialog progress = SimpleProgressDialog.show(this);
|
|
|
|
|
|
|
|
SimpleTask.run(getLifecycle(), () -> {
|
|
|
|
Recipient resolved = Recipient.external(this, number);
|
|
|
|
|
|
|
|
if (!resolved.isRegistered()) {
|
|
|
|
Log.i(TAG, "[onContactSelected] Not registered. Doing a directory refresh.");
|
|
|
|
try {
|
|
|
|
DirectoryHelper.refreshDirectoryFor(this, resolved, false);
|
|
|
|
resolved = Recipient.resolved(resolved.getId());
|
|
|
|
} catch (IOException e) {
|
|
|
|
Log.w(TAG, "[onContactSelected] Failed to refresh directory for new contact.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return resolved;
|
|
|
|
}, resolved -> {
|
|
|
|
progress.dismiss();
|
|
|
|
launch(resolved);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
launch(Recipient.external(this, number));
|
|
|
|
}
|
2019-11-04 12:38:02 -05:00
|
|
|
}
|
2020-07-29 23:04:35 -04:00
|
|
|
|
|
|
|
return true;
|
2019-10-28 20:16:11 -04:00
|
|
|
}
|
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()) {
|
2020-06-05 20:19:03 -03: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();
|
|
|
|
}
|
|
|
|
|
2020-06-05 20:19:03 -03:00
|
|
|
private void handleCreateGroup() {
|
|
|
|
startActivity(CreateGroupActivity.newIntent(this));
|
2016-03-28 13:09:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private void handleInvite() {
|
|
|
|
startActivity(new Intent(this, InviteActivity.class));
|
|
|
|
}
|
|
|
|
|
2015-11-16 15:25:39 -08:00
|
|
|
@Override
|
2020-08-29 10:45:11 -04:00
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
2015-11-16 15:25:39 -08:00
|
|
|
menu.clear();
|
2020-05-13 13:41:36 -03:00
|
|
|
getMenuInflater().inflate(R.menu.new_conversation_activity, menu);
|
|
|
|
|
2020-08-29 10:45:11 -04:00
|
|
|
super.onCreateOptionsMenu(menu);
|
2015-11-16 15:25:39 -08:00
|
|
|
return true;
|
|
|
|
}
|
2019-08-26 19:49:16 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onInvite() {
|
|
|
|
handleInvite();
|
2020-04-24 10:13:07 -03:00
|
|
|
finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-05-29 15:19:47 -03:00
|
|
|
public void onNewGroup(boolean forceV1) {
|
2020-06-05 20:19:03 -03:00
|
|
|
handleCreateGroup();
|
2020-04-24 10:13:07 -03:00
|
|
|
finish();
|
2019-08-26 19:49:16 +01:00
|
|
|
}
|
2014-02-13 01:35:08 -08:00
|
|
|
}
|