2014-02-13 10:35:08 +01:00
|
|
|
/**
|
2015-07-14 23:31:03 +02:00
|
|
|
* Copyright (C) 2015 Open Whisper Systems
|
2014-02-13 10:35:08 +01: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-21 02:29:41 +02:00
|
|
|
import android.os.Bundle;
|
2015-10-19 20:23:12 +02:00
|
|
|
import android.support.annotation.NonNull;
|
2015-11-17 00:25:39 +01:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuInflater;
|
2015-07-21 02:29:41 +02:00
|
|
|
import android.view.MenuItem;
|
2015-11-17 00:25:39 +01:00
|
|
|
import android.view.View;
|
2014-02-13 10:35:08 +01:00
|
|
|
|
2015-07-21 02:29:41 +02:00
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
2014-02-18 00:23:02 +01:00
|
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
|
|
|
import org.thoughtcrime.securesms.database.ThreadDatabase;
|
2014-02-18 01:19:38 +01:00
|
|
|
import org.thoughtcrime.securesms.recipients.RecipientFactory;
|
2014-02-17 02:44:51 +01:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipients;
|
2014-02-13 10:35:08 +01:00
|
|
|
|
|
|
|
/**
|
2015-07-14 23:31:03 +02:00
|
|
|
* Activity container for starting a new conversation.
|
2014-02-13 10:35:08 +01:00
|
|
|
*
|
|
|
|
* @author Moxie Marlinspike
|
|
|
|
*
|
|
|
|
*/
|
2015-07-14 23:31:03 +02:00
|
|
|
public class NewConversationActivity extends ContactSelectionActivity {
|
2014-03-18 07:25:09 +01:00
|
|
|
|
2015-07-14 23:31:03 +02:00
|
|
|
private static final String TAG = NewConversationActivity.class.getSimpleName();
|
2014-03-18 07:25:09 +01:00
|
|
|
|
2015-07-21 02:29:41 +02:00
|
|
|
@Override
|
2015-10-19 20:23:12 +02:00
|
|
|
public void onCreate(Bundle bundle, @NonNull MasterSecret masterSecret) {
|
2015-07-21 02:29:41 +02:00
|
|
|
super.onCreate(bundle, masterSecret);
|
|
|
|
|
2015-10-19 20:23:12 +02:00
|
|
|
getToolbar().setShowCustomNavigationButton(false);
|
2015-07-21 02:29:41 +02:00
|
|
|
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
|
|
|
}
|
|
|
|
|
2014-03-18 07:25:09 +01:00
|
|
|
@Override
|
2015-07-14 23:31:03 +02:00
|
|
|
public void onContactSelected(String number) {
|
|
|
|
Recipients recipients = RecipientFactory.getRecipientsFromString(this, number, true);
|
2014-02-17 02:44:51 +01:00
|
|
|
|
2015-11-18 21:54:40 +01:00
|
|
|
Intent intent = new Intent(this, ConversationActivity.class);
|
|
|
|
intent.putExtra(ConversationActivity.RECIPIENTS_EXTRA, recipients.getIds());
|
|
|
|
intent.setDataAndType(getIntent().getData(), getIntent().getType());
|
2015-07-14 23:31:03 +02:00
|
|
|
|
2015-11-18 21:54:40 +01:00
|
|
|
long existingThread = DatabaseFactory.getThreadDatabase(this).getThreadIdIfExistsFor(recipients);
|
2015-07-14 23:31:03 +02:00
|
|
|
|
2015-11-18 21:54:40 +01:00
|
|
|
intent.putExtra(ConversationActivity.THREAD_ID_EXTRA, existingThread);
|
|
|
|
intent.putExtra(ConversationActivity.DISTRIBUTION_TYPE_EXTRA, ThreadDatabase.DistributionTypes.DEFAULT);
|
|
|
|
startActivity(intent);
|
|
|
|
finish();
|
2014-02-13 10:35:08 +01:00
|
|
|
}
|
2015-07-14 23:31:03 +02:00
|
|
|
|
2015-07-21 02:29:41 +02:00
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
super.onOptionsItemSelected(item);
|
|
|
|
|
|
|
|
switch (item.getItemId()) {
|
2015-11-17 00:25:39 +01:00
|
|
|
case android.R.id.home: super.onBackPressed(); return true;
|
|
|
|
case R.id.menu_refresh: handleManualRefresh(); return true;
|
2015-07-21 02:29:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-11-17 00:25:39 +01:00
|
|
|
private void handleManualRefresh() {
|
|
|
|
contactsFragment.setRefreshing(true);
|
|
|
|
onRefresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
@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;
|
|
|
|
}
|
2014-02-13 10:35:08 +01:00
|
|
|
}
|