mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +00:00
02c37e815c
fixes #1362 closes #4589 // FREEBIE
107 lines
3.6 KiB
Java
107 lines
3.6 KiB
Java
package org.thoughtcrime.securesms;
|
|
|
|
import android.app.Activity;
|
|
import android.content.Intent;
|
|
import android.database.Cursor;
|
|
import android.os.Bundle;
|
|
import android.provider.ContactsContract;
|
|
import android.support.annotation.NonNull;
|
|
import android.util.Log;
|
|
import android.widget.Toast;
|
|
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
|
import org.thoughtcrime.securesms.recipients.RecipientFactory;
|
|
import org.thoughtcrime.securesms.recipients.Recipients;
|
|
import org.thoughtcrime.securesms.util.Rfc5724Uri;
|
|
|
|
import java.net.URISyntaxException;
|
|
|
|
public class SmsSendtoActivity extends Activity {
|
|
|
|
private static final String TAG = SmsSendtoActivity.class.getSimpleName();
|
|
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
startActivity(getNextIntent(getIntent()));
|
|
finish();
|
|
super.onCreate(savedInstanceState);
|
|
}
|
|
|
|
private Intent getNextIntent(Intent original) {
|
|
DestinationAndBody destination;
|
|
|
|
if (original.getAction().equals(Intent.ACTION_SENDTO)) {
|
|
destination = getDestinationForSendTo(original);
|
|
} else if (original.getData() != null && "content".equals(original.getData().getScheme())) {
|
|
destination = getDestinationForSyncAdapter(original);
|
|
} else {
|
|
destination = getDestinationForView(original);
|
|
}
|
|
|
|
Recipients recipients = RecipientFactory.getRecipientsFromString(this, destination.getDestination(), true);
|
|
long threadId = DatabaseFactory.getThreadDatabase(this).getThreadIdIfExistsFor(recipients);
|
|
|
|
final Intent nextIntent;
|
|
if (recipients.isEmpty()) {
|
|
nextIntent = new Intent(this, NewConversationActivity.class);
|
|
nextIntent.putExtra(ConversationActivity.TEXT_EXTRA, destination.getBody());
|
|
Toast.makeText(this, R.string.ConversationActivity_specify_recipient, Toast.LENGTH_LONG).show();
|
|
} else {
|
|
nextIntent = new Intent(this, ConversationActivity.class);
|
|
nextIntent.putExtra(ConversationActivity.TEXT_EXTRA, destination.getBody());
|
|
nextIntent.putExtra(ConversationActivity.THREAD_ID_EXTRA, threadId);
|
|
nextIntent.putExtra(ConversationActivity.RECIPIENTS_EXTRA, recipients.getIds());
|
|
}
|
|
return nextIntent;
|
|
}
|
|
|
|
private @NonNull DestinationAndBody getDestinationForSendTo(Intent intent) {
|
|
return new DestinationAndBody(intent.getData().getSchemeSpecificPart(),
|
|
intent.getStringExtra("sms_body"));
|
|
}
|
|
|
|
private @NonNull DestinationAndBody getDestinationForView(Intent intent) {
|
|
try {
|
|
Rfc5724Uri smsUri = new Rfc5724Uri(intent.getData().toString());
|
|
return new DestinationAndBody(smsUri.getPath(), smsUri.getQueryParams().get("body"));
|
|
} catch (URISyntaxException e) {
|
|
Log.w(TAG, "unable to parse RFC5724 URI from intent", e);
|
|
return new DestinationAndBody("", "");
|
|
}
|
|
}
|
|
|
|
private @NonNull DestinationAndBody getDestinationForSyncAdapter(Intent intent) {
|
|
Cursor cursor = null;
|
|
|
|
try {
|
|
cursor = getContentResolver().query(intent.getData(), null, null, null, null);
|
|
|
|
if (cursor != null && cursor.moveToNext()) {
|
|
return new DestinationAndBody(cursor.getString(cursor.getColumnIndexOrThrow(ContactsContract.RawContacts.Data.DATA1)), "");
|
|
}
|
|
|
|
return new DestinationAndBody("", "");
|
|
} finally {
|
|
if (cursor != null) cursor.close();
|
|
}
|
|
}
|
|
|
|
private static class DestinationAndBody {
|
|
private final String destination;
|
|
private final String body;
|
|
|
|
private DestinationAndBody(String destination, String body) {
|
|
this.destination = destination;
|
|
this.body = body;
|
|
}
|
|
|
|
public String getDestination() {
|
|
return destination;
|
|
}
|
|
|
|
public String getBody() {
|
|
return body;
|
|
}
|
|
}
|
|
}
|