mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-28 04:25:18 +00:00
40 lines
1.6 KiB
Java
40 lines
1.6 KiB
Java
|
package org.thoughtcrime.securesms;
|
||
|
|
||
|
import android.app.Activity;
|
||
|
import android.content.Intent;
|
||
|
import android.os.Bundle;
|
||
|
import android.widget.Toast;
|
||
|
|
||
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
||
|
import org.thoughtcrime.securesms.recipients.RecipientFactory;
|
||
|
import org.thoughtcrime.securesms.recipients.Recipients;
|
||
|
|
||
|
public class SmsSendtoActivity extends Activity {
|
||
|
@Override
|
||
|
protected void onCreate(Bundle savedInstanceState) {
|
||
|
startActivity(getNextIntent(getIntent()));
|
||
|
finish();
|
||
|
super.onCreate(savedInstanceState);
|
||
|
}
|
||
|
|
||
|
private Intent getNextIntent(Intent original) {
|
||
|
String body = original.getStringExtra("sms_body");
|
||
|
String data = original.getData().getSchemeSpecificPart();
|
||
|
Recipients recipients = RecipientFactory.getRecipientsFromString(this, data, false);
|
||
|
long threadId = DatabaseFactory.getThreadDatabase(this).getThreadIdIfExistsFor(recipients);
|
||
|
|
||
|
final Intent nextIntent;
|
||
|
if (recipients == null || recipients.isEmpty()) {
|
||
|
nextIntent = new Intent(this, NewConversationActivity.class);
|
||
|
nextIntent.putExtra(ConversationActivity.DRAFT_TEXT_EXTRA, body);
|
||
|
Toast.makeText(this, R.string.ConversationActivity_specify_recipient, Toast.LENGTH_LONG).show();
|
||
|
} else {
|
||
|
nextIntent = new Intent(this, ConversationActivity.class);
|
||
|
nextIntent.putExtra(ConversationActivity.DRAFT_TEXT_EXTRA, body);
|
||
|
nextIntent.putExtra(ConversationActivity.THREAD_ID_EXTRA, threadId);
|
||
|
nextIntent.putExtra(ConversationActivity.RECIPIENTS_EXTRA, recipients.getIds());
|
||
|
}
|
||
|
return nextIntent;
|
||
|
}
|
||
|
}
|