2013-02-04 02:41:34 +00:00
|
|
|
/**
|
2011-12-20 18:20:44 +00:00
|
|
|
* Copyright (C) 2011 Whisper Systems
|
2013-02-04 02:41:34 +00:00
|
|
|
*
|
2011-12-20 18:20:44 +00: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.
|
2013-02-04 02:41:34 +00:00
|
|
|
*
|
2011-12-20 18:20:44 +00:00
|
|
|
* 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.mms;
|
|
|
|
|
|
|
|
import android.app.Activity;
|
2014-10-16 08:48:59 +00:00
|
|
|
import android.content.ActivityNotFoundException;
|
2011-12-20 18:20:44 +00:00
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.net.Uri;
|
2014-03-02 12:17:03 +00:00
|
|
|
import android.os.Build;
|
2014-06-03 23:24:44 +00:00
|
|
|
import android.provider.ContactsContract;
|
2015-07-11 01:45:55 +00:00
|
|
|
import android.provider.MediaStore;
|
2015-04-16 05:38:33 +00:00
|
|
|
import android.support.annotation.Nullable;
|
2015-03-31 22:44:41 +00:00
|
|
|
import android.util.Log;
|
2011-12-20 18:20:44 +00:00
|
|
|
import android.view.View;
|
2015-06-17 18:54:12 +00:00
|
|
|
import android.view.animation.AlphaAnimation;
|
|
|
|
import android.view.animation.Animation;
|
2014-10-16 08:48:59 +00:00
|
|
|
import android.widget.Toast;
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2013-02-04 02:41:34 +00:00
|
|
|
import org.thoughtcrime.securesms.R;
|
2015-03-31 22:44:41 +00:00
|
|
|
import org.thoughtcrime.securesms.components.ThumbnailView;
|
2015-04-16 05:38:33 +00:00
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
2015-06-08 18:07:46 +00:00
|
|
|
import org.thoughtcrime.securesms.providers.CaptureProvider;
|
2015-07-14 00:35:34 +00:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipients;
|
2013-05-21 17:32:48 +00:00
|
|
|
import org.thoughtcrime.securesms.util.BitmapDecodingException;
|
2015-07-15 20:42:59 +00:00
|
|
|
import org.thoughtcrime.securesms.util.MediaUtil;
|
2013-02-04 02:41:34 +00:00
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public class AttachmentManager {
|
2014-10-16 08:48:59 +00:00
|
|
|
private final static String TAG = AttachmentManager.class.getSimpleName();
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2015-05-18 17:26:32 +00:00
|
|
|
private final Context context;
|
|
|
|
private final View attachmentView;
|
|
|
|
private final ThumbnailView thumbnail;
|
|
|
|
private final SlideDeck slideDeck;
|
2014-04-15 10:43:14 +00:00
|
|
|
private final AttachmentListener attachmentListener;
|
2013-02-04 02:41:34 +00:00
|
|
|
|
2015-06-08 18:07:46 +00:00
|
|
|
private Uri captureUri;
|
2015-05-18 17:26:32 +00:00
|
|
|
|
2014-04-15 10:43:14 +00:00
|
|
|
public AttachmentManager(Activity view, AttachmentListener listener) {
|
2015-05-18 17:26:32 +00:00
|
|
|
this.attachmentView = view.findViewById(R.id.attachment_editor);
|
2015-03-31 22:44:41 +00:00
|
|
|
this.thumbnail = (ThumbnailView)view.findViewById(R.id.attachment_thumbnail);
|
2014-04-15 10:43:14 +00:00
|
|
|
this.slideDeck = new SlideDeck();
|
|
|
|
this.context = view;
|
|
|
|
this.attachmentListener = listener;
|
2013-02-04 02:41:34 +00:00
|
|
|
|
2015-07-30 22:02:20 +00:00
|
|
|
thumbnail.setRemoveClickListener(new RemoveButtonListener());
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2013-02-04 02:41:34 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public void clear() {
|
2015-06-17 18:54:12 +00:00
|
|
|
AlphaAnimation animation = new AlphaAnimation(1.0f, 0.0f);
|
|
|
|
animation.setDuration(200);
|
|
|
|
animation.setAnimationListener(new Animation.AnimationListener() {
|
2015-07-15 20:42:59 +00:00
|
|
|
@Override public void onAnimationStart(Animation animation) {}
|
|
|
|
@Override public void onAnimationRepeat(Animation animation) {}
|
|
|
|
@Override public void onAnimationEnd(Animation animation) {
|
2015-06-17 18:54:12 +00:00
|
|
|
slideDeck.clear();
|
|
|
|
attachmentView.setVisibility(View.GONE);
|
|
|
|
attachmentListener.onAttachmentChanged();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
attachmentView.startAnimation(animation);
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2013-02-04 02:41:34 +00:00
|
|
|
|
2015-05-18 17:26:32 +00:00
|
|
|
public void cleanup() {
|
2015-07-14 00:35:34 +00:00
|
|
|
if (captureUri != null) CaptureProvider.getInstance(context).delete(captureUri);
|
2015-06-08 18:07:46 +00:00
|
|
|
captureUri = null;
|
2015-05-18 17:26:32 +00:00
|
|
|
}
|
|
|
|
|
2015-07-28 20:17:01 +00:00
|
|
|
public void setImage(MasterSecret masterSecret, Uri image)
|
|
|
|
throws IOException, BitmapDecodingException, MediaTooLargeException
|
|
|
|
{
|
2015-07-24 21:05:48 +00:00
|
|
|
if (MediaUtil.isGif(MediaUtil.getMimeType(context, image))) {
|
2015-07-15 20:42:59 +00:00
|
|
|
setMedia(new GifSlide(context, masterSecret, image), masterSecret);
|
|
|
|
} else {
|
|
|
|
setMedia(new ImageSlide(context, masterSecret, image), masterSecret);
|
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2013-02-04 02:41:34 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public void setVideo(Uri video) throws IOException, MediaTooLargeException {
|
2014-10-28 15:36:27 +00:00
|
|
|
setMedia(new VideoSlide(context, video));
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2013-02-04 02:41:34 +00:00
|
|
|
|
2014-10-28 15:36:27 +00:00
|
|
|
public void setAudio(Uri audio) throws IOException, MediaTooLargeException {
|
|
|
|
setMedia(new AudioSlide(context, audio));
|
|
|
|
}
|
|
|
|
|
2015-03-31 22:44:41 +00:00
|
|
|
public void setMedia(final Slide slide) {
|
2015-04-16 05:38:33 +00:00
|
|
|
setMedia(slide, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setMedia(final Slide slide, @Nullable MasterSecret masterSecret) {
|
2014-10-28 15:36:27 +00:00
|
|
|
slideDeck.clear();
|
2011-12-20 18:20:44 +00:00
|
|
|
slideDeck.addSlide(slide);
|
2015-03-31 22:44:41 +00:00
|
|
|
attachmentView.setVisibility(View.VISIBLE);
|
2015-04-16 05:38:33 +00:00
|
|
|
thumbnail.setImageResource(slide, masterSecret);
|
2015-05-18 17:26:32 +00:00
|
|
|
attachmentListener.onAttachmentChanged();
|
2014-10-28 15:36:27 +00:00
|
|
|
}
|
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public boolean isAttachmentPresent() {
|
|
|
|
return attachmentView.getVisibility() == View.VISIBLE;
|
|
|
|
}
|
|
|
|
|
2015-07-14 00:35:34 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public SlideDeck getSlideDeck() {
|
|
|
|
return slideDeck;
|
|
|
|
}
|
2013-02-04 02:41:34 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public static void selectVideo(Activity activity, int requestCode) {
|
|
|
|
selectMediaType(activity, "video/*", requestCode);
|
|
|
|
}
|
2013-02-04 02:41:34 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public static void selectImage(Activity activity, int requestCode) {
|
|
|
|
selectMediaType(activity, "image/*", requestCode);
|
|
|
|
}
|
2013-02-04 02:41:34 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public static void selectAudio(Activity activity, int requestCode) {
|
|
|
|
selectMediaType(activity, "audio/*", requestCode);
|
|
|
|
}
|
2013-02-04 02:41:34 +00:00
|
|
|
|
2014-06-03 23:24:44 +00:00
|
|
|
public static void selectContactInfo(Activity activity, int requestCode) {
|
|
|
|
Intent intent = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI);
|
|
|
|
activity.startActivityForResult(intent, requestCode);
|
|
|
|
}
|
|
|
|
|
2015-07-11 01:45:55 +00:00
|
|
|
public Uri getCaptureUri() {
|
|
|
|
return captureUri;
|
|
|
|
}
|
|
|
|
|
2015-07-14 00:35:34 +00:00
|
|
|
public void setCaptureUri(Uri captureUri) {
|
|
|
|
this.captureUri = captureUri;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void capturePhoto(Activity activity, Recipients recipients, int requestCode) {
|
2015-07-11 01:45:55 +00:00
|
|
|
try {
|
|
|
|
Intent captureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
|
|
|
|
if (captureIntent.resolveActivity(activity.getPackageManager()) != null) {
|
2015-07-14 00:35:34 +00:00
|
|
|
captureUri = CaptureProvider.getInstance(context).createForExternal(recipients);
|
2015-07-11 01:45:55 +00:00
|
|
|
captureIntent.putExtra(MediaStore.EXTRA_OUTPUT, captureUri);
|
|
|
|
activity.startActivityForResult(captureIntent, requestCode);
|
|
|
|
}
|
|
|
|
} catch (IOException ioe) {
|
|
|
|
Log.w(TAG, ioe);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
private static void selectMediaType(Activity activity, String type, int requestCode) {
|
2014-10-16 08:48:59 +00:00
|
|
|
final Intent intent = new Intent();
|
|
|
|
intent.setType(type);
|
2014-03-02 12:17:03 +00:00
|
|
|
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
|
2014-10-16 08:48:59 +00:00
|
|
|
intent.setAction(Intent.ACTION_OPEN_DOCUMENT);
|
|
|
|
try {
|
|
|
|
activity.startActivityForResult(intent, requestCode);
|
|
|
|
return;
|
|
|
|
} catch (ActivityNotFoundException anfe) {
|
|
|
|
Log.w(TAG, "couldn't complete ACTION_OPEN_DOCUMENT, no activity found. falling back.");
|
|
|
|
}
|
2014-03-02 12:17:03 +00:00
|
|
|
}
|
|
|
|
|
2014-10-16 08:48:59 +00:00
|
|
|
intent.setAction(Intent.ACTION_GET_CONTENT);
|
|
|
|
try {
|
|
|
|
activity.startActivityForResult(intent, requestCode);
|
|
|
|
} catch (ActivityNotFoundException anfe) {
|
|
|
|
Log.w(TAG, "couldn't complete ACTION_GET_CONTENT intent, no activity found. falling back.");
|
|
|
|
Toast.makeText(activity, R.string.AttachmentManager_cant_open_media_selection, Toast.LENGTH_LONG).show();
|
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2013-02-04 02:41:34 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
private class RemoveButtonListener implements View.OnClickListener {
|
2013-02-04 02:41:34 +00:00
|
|
|
@Override
|
2011-12-20 18:20:44 +00:00
|
|
|
public void onClick(View v) {
|
|
|
|
clear();
|
2015-05-18 17:26:32 +00:00
|
|
|
cleanup();
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-15 10:43:14 +00:00
|
|
|
public interface AttachmentListener {
|
2015-06-08 18:07:46 +00:00
|
|
|
void onAttachmentChanged();
|
2014-04-15 10:43:14 +00:00
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|