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;
|
|
|
|
|
2020-12-04 18:31:58 -05:00
|
|
|
import org.signal.core.util.logging.Log;
|
2020-07-17 10:23:51 -04:00
|
|
|
import org.thoughtcrime.securesms.contacts.sync.DirectoryHelper;
|
2020-11-25 11:36:33 -04:00
|
|
|
import org.thoughtcrime.securesms.conversation.ConversationIntents;
|
2021-11-18 12:36:52 -05:00
|
|
|
import org.thoughtcrime.securesms.database.SignalDatabase;
|
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;
|
2021-11-17 15:08:28 -05:00
|
|
|
import org.thoughtcrime.securesms.keyvalue.SignalStore;
|
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.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;
|
2021-07-23 16:22:08 -04:00
|
|
|
import java.util.function.Consumer;
|
2020-07-17 10:23:51 -04:00
|
|
|
|
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")
|
2021-03-29 18:37:22 -04:00
|
|
|
private static final String TAG = Log.tag(NewConversationActivity.class);
|
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);
|
2021-07-12 15:44:59 -03:00
|
|
|
getSupportActionBar().setTitle(R.string.NewConversationActivity__new_message);
|
2015-07-20 17:29:41 -07:00
|
|
|
}
|
|
|
|
|
2014-03-17 23:25:09 -07:00
|
|
|
@Override
|
2021-07-23 16:22:08 -04:00
|
|
|
public void onBeforeContactSelected(Optional<RecipientId> recipientId, String number, Consumer<Boolean> callback) {
|
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-09-23 09:21:55 -04:00
|
|
|
|
2021-11-17 15:08:28 -05:00
|
|
|
if (SignalStore.account().isRegistered() && NetworkConstraint.isMet(this)) {
|
2020-09-23 09:21:55 -04:00
|
|
|
Log.i(TAG, "[onContactSelected] Doing contact refresh.");
|
2020-07-17 10:23:51 -04:00
|
|
|
|
|
|
|
AlertDialog progress = SimpleProgressDialog.show(this);
|
|
|
|
|
|
|
|
SimpleTask.run(getLifecycle(), () -> {
|
|
|
|
Recipient resolved = Recipient.external(this, number);
|
|
|
|
|
2021-10-28 15:39:36 -04:00
|
|
|
if (!resolved.isRegistered() || !resolved.hasAci()) {
|
2020-09-23 09:21:55 -04:00
|
|
|
Log.i(TAG, "[onContactSelected] Not registered or no UUID. Doing a directory refresh.");
|
2020-07-17 10:23:51 -04:00
|
|
|
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
|
|
|
|
2021-07-23 16:22:08 -04:00
|
|
|
callback.accept(true);
|
2019-10-28 20:16:11 -04:00
|
|
|
}
|
2014-02-16 17:44:51 -08:00
|
|
|
|
2021-07-12 15:44:59 -03:00
|
|
|
@Override
|
|
|
|
public void onSelectionChanged() {
|
|
|
|
}
|
|
|
|
|
2019-10-28 20:16:11 -04:00
|
|
|
private void launch(Recipient recipient) {
|
2021-11-18 12:36:52 -05:00
|
|
|
long existingThread = SignalDatabase.threads().getThreadIdIfExistsFor(recipient.getId());
|
2020-11-25 11:36:33 -04:00
|
|
|
Intent intent = ConversationIntents.createBuilder(this, recipient.getId(), existingThread)
|
|
|
|
.withDraftText(getIntent().getStringExtra(Intent.EXTRA_TEXT))
|
|
|
|
.withDataUri(getIntent().getData())
|
|
|
|
.withDataType(getIntent().getType())
|
|
|
|
.build();
|
2015-07-14 14:31:03 -07:00
|
|
|
|
2015-11-18 12:54:40 -08:00
|
|
|
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
|
|
|
}
|