mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 18:45:19 +00:00
d935be7b0a
Fixes #3413 Closes #3414 // FREEBIE
165 lines
5.2 KiB
Java
165 lines
5.2 KiB
Java
/**
|
|
* Copyright (C) 2014 Open Whisper Systems
|
|
*
|
|
* 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;
|
|
import android.net.Uri;
|
|
import android.os.Bundle;
|
|
import android.support.annotation.NonNull;
|
|
import android.view.Menu;
|
|
import android.view.MenuInflater;
|
|
import android.view.MenuItem;
|
|
import android.webkit.MimeTypeMap;
|
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
|
import org.thoughtcrime.securesms.recipients.Recipients;
|
|
import org.thoughtcrime.securesms.util.DynamicLanguage;
|
|
import org.thoughtcrime.securesms.util.DynamicTheme;
|
|
|
|
import java.net.URLDecoder;
|
|
|
|
import ws.com.google.android.mms.ContentType;
|
|
|
|
/**
|
|
* An activity to quickly share content with contacts
|
|
*
|
|
* @author Jake McGinty
|
|
*/
|
|
public class ShareActivity extends PassphraseRequiredActionBarActivity
|
|
implements ShareFragment.ConversationSelectedListener
|
|
{
|
|
private final DynamicTheme dynamicTheme = new DynamicTheme ();
|
|
private final DynamicLanguage dynamicLanguage = new DynamicLanguage();
|
|
|
|
@Override
|
|
protected void onPreCreate() {
|
|
dynamicTheme.onCreate(this);
|
|
dynamicLanguage.onCreate(this);
|
|
}
|
|
|
|
@Override
|
|
protected void onCreate(Bundle icicle, @NonNull MasterSecret masterSecret) {
|
|
setContentView(R.layout.share_activity);
|
|
initFragment(R.id.drawer_layout, new ShareFragment(), masterSecret);
|
|
}
|
|
|
|
@Override
|
|
protected void onNewIntent(Intent intent) {
|
|
super.onNewIntent(intent);
|
|
setIntent(intent);
|
|
}
|
|
|
|
@Override
|
|
public void onResume() {
|
|
super.onResume();
|
|
dynamicTheme.onResume(this);
|
|
dynamicLanguage.onResume(this);
|
|
getSupportActionBar().setTitle(R.string.ShareActivity_share_with);
|
|
}
|
|
|
|
@Override
|
|
public void onPause() {
|
|
super.onPause();
|
|
if (!isFinishing()) finish();
|
|
}
|
|
|
|
@Override
|
|
public boolean onPrepareOptionsMenu(Menu menu) {
|
|
MenuInflater inflater = this.getMenuInflater();
|
|
menu.clear();
|
|
|
|
inflater.inflate(R.menu.share, menu);
|
|
super.onPrepareOptionsMenu(menu);
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
super.onOptionsItemSelected(item);
|
|
switch (item.getItemId()) {
|
|
case R.id.menu_new_message: handleNewConversation(); return true;
|
|
case android.R.id.home: finish(); return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private void handleNewConversation() {
|
|
Intent intent = getBaseShareIntent(NewConversationActivity.class);
|
|
startActivity(intent);
|
|
}
|
|
|
|
@Override
|
|
public void onCreateConversation(long threadId, Recipients recipients, int distributionType) {
|
|
createConversation(threadId, recipients, distributionType);
|
|
}
|
|
|
|
private void createConversation(long threadId, Recipients recipients, int distributionType) {
|
|
final Intent intent = getBaseShareIntent(ConversationActivity.class);
|
|
intent.putExtra(ConversationActivity.RECIPIENTS_EXTRA, recipients.getIds());
|
|
intent.putExtra(ConversationActivity.THREAD_ID_EXTRA, threadId);
|
|
intent.putExtra(ConversationActivity.DISTRIBUTION_TYPE_EXTRA, distributionType);
|
|
|
|
startActivity(intent);
|
|
}
|
|
|
|
private Uri getStreamExtra() {
|
|
Uri streamUri = getIntent().getParcelableExtra(Intent.EXTRA_STREAM);
|
|
if (streamUri == null) {
|
|
return null;
|
|
}
|
|
|
|
if (streamUri.getAuthority().equals("com.google.android.apps.photos.contentprovider") &&
|
|
streamUri.toString().endsWith("/ACTUAL"))
|
|
{
|
|
String[] parts = streamUri.toString().split("/");
|
|
if (parts.length > 3) {
|
|
return Uri.parse(URLDecoder.decode(parts[parts.length - 2]));
|
|
}
|
|
}
|
|
return streamUri;
|
|
}
|
|
|
|
private Intent getBaseShareIntent(final Class<?> target) {
|
|
final Intent intent = new Intent(this, target);
|
|
final String textExtra = getIntent().getStringExtra(Intent.EXTRA_TEXT);
|
|
final Uri streamExtra = getStreamExtra();
|
|
final String type = streamExtra != null ? getMimeType(streamExtra) : getIntent().getType();
|
|
|
|
if (ContentType.isImageType(type)) {
|
|
intent.putExtra(ConversationActivity.DRAFT_IMAGE_EXTRA, streamExtra);
|
|
} else if (ContentType.isAudioType(type)) {
|
|
intent.putExtra(ConversationActivity.DRAFT_AUDIO_EXTRA, streamExtra);
|
|
} else if (ContentType.isVideoType(type)) {
|
|
intent.putExtra(ConversationActivity.DRAFT_VIDEO_EXTRA, streamExtra);
|
|
}
|
|
intent.putExtra(ConversationActivity.DRAFT_TEXT_EXTRA, textExtra);
|
|
|
|
return intent;
|
|
}
|
|
|
|
private String getMimeType(Uri uri) {
|
|
String type = getContentResolver().getType(uri);
|
|
|
|
if (type == null) {
|
|
String extension = MimeTypeMap.getFileExtensionFromUrl(uri.toString());
|
|
type = MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension);
|
|
}
|
|
|
|
return type;
|
|
}
|
|
} |