2015-01-02 23:43:28 +00:00
|
|
|
package org.thoughtcrime.securesms.mms;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.net.Uri;
|
2015-10-13 01:25:05 +00:00
|
|
|
import android.support.annotation.NonNull;
|
|
|
|
import android.support.annotation.Nullable;
|
2015-01-02 23:43:28 +00:00
|
|
|
import android.util.Log;
|
|
|
|
import android.util.Pair;
|
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
import org.thoughtcrime.securesms.attachments.Attachment;
|
2015-01-02 23:43:28 +00:00
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
2015-07-25 00:07:33 +00:00
|
|
|
import org.thoughtcrime.securesms.mms.DecryptableStreamUriLoader.DecryptableUri;
|
2016-01-30 23:22:55 +00:00
|
|
|
import org.thoughtcrime.securesms.util.BitmapDecodingException;
|
2015-01-02 23:43:28 +00:00
|
|
|
import org.thoughtcrime.securesms.util.BitmapUtil;
|
|
|
|
import org.thoughtcrime.securesms.util.MediaUtil;
|
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
import java.io.ByteArrayInputStream;
|
2015-01-02 23:43:28 +00:00
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
|
|
|
|
2015-11-23 04:18:54 +00:00
|
|
|
import ws.com.google.android.mms.ContentType;
|
|
|
|
|
2015-01-02 23:43:28 +00:00
|
|
|
public abstract class MediaConstraints {
|
|
|
|
private static final String TAG = MediaConstraints.class.getSimpleName();
|
|
|
|
|
|
|
|
public static MediaConstraints MMS_CONSTRAINTS = new MmsMediaConstraints();
|
|
|
|
public static MediaConstraints PUSH_CONSTRAINTS = new PushMediaConstraints();
|
|
|
|
|
2015-06-04 21:19:10 +00:00
|
|
|
public abstract int getImageMaxWidth(Context context);
|
|
|
|
public abstract int getImageMaxHeight(Context context);
|
2015-01-02 23:43:28 +00:00
|
|
|
public abstract int getImageMaxSize();
|
|
|
|
|
2015-07-15 20:42:59 +00:00
|
|
|
public abstract int getGifMaxSize();
|
|
|
|
|
2015-01-02 23:43:28 +00:00
|
|
|
public abstract int getVideoMaxSize();
|
|
|
|
|
|
|
|
public abstract int getAudioMaxSize();
|
|
|
|
|
2017-04-24 22:52:48 +00:00
|
|
|
public abstract int getDocumentMaxSize();
|
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
public boolean isSatisfied(@NonNull Context context, @NonNull MasterSecret masterSecret, @NonNull Attachment attachment) {
|
2015-01-02 23:43:28 +00:00
|
|
|
try {
|
2015-10-13 01:25:05 +00:00
|
|
|
return (MediaUtil.isGif(attachment) && attachment.getSize() <= getGifMaxSize() && isWithinBounds(context, masterSecret, attachment.getDataUri())) ||
|
|
|
|
(MediaUtil.isImage(attachment) && attachment.getSize() <= getImageMaxSize() && isWithinBounds(context, masterSecret, attachment.getDataUri())) ||
|
|
|
|
(MediaUtil.isAudio(attachment) && attachment.getSize() <= getAudioMaxSize()) ||
|
|
|
|
(MediaUtil.isVideo(attachment) && attachment.getSize() <= getVideoMaxSize()) ||
|
2017-04-24 22:52:48 +00:00
|
|
|
(MediaUtil.isFile(attachment) && attachment.getSize() <= getDocumentMaxSize());
|
2015-01-02 23:43:28 +00:00
|
|
|
} catch (IOException ioe) {
|
|
|
|
Log.w(TAG, "Failed to determine if media's constraints are satisfied.", ioe);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-14 18:21:14 +00:00
|
|
|
private boolean isWithinBounds(Context context, MasterSecret masterSecret, Uri uri) throws IOException {
|
2016-01-30 23:22:55 +00:00
|
|
|
try {
|
|
|
|
InputStream is = PartAuthority.getAttachmentStream(context, masterSecret, uri);
|
|
|
|
Pair<Integer, Integer> dimensions = BitmapUtil.getDimensions(is);
|
|
|
|
return dimensions.first > 0 && dimensions.first <= getImageMaxWidth(context) &&
|
|
|
|
dimensions.second > 0 && dimensions.second <= getImageMaxHeight(context);
|
|
|
|
} catch (BitmapDecodingException e) {
|
|
|
|
throw new IOException(e);
|
|
|
|
}
|
2015-01-02 23:43:28 +00:00
|
|
|
}
|
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
public boolean canResize(@Nullable Attachment attachment) {
|
|
|
|
return attachment != null && MediaUtil.isImage(attachment) && !MediaUtil.isGif(attachment);
|
2015-01-02 23:43:28 +00:00
|
|
|
}
|
|
|
|
|
2015-11-23 04:18:54 +00:00
|
|
|
public MediaStream getResizedMedia(@NonNull Context context,
|
2015-10-13 01:25:05 +00:00
|
|
|
@NonNull MasterSecret masterSecret,
|
|
|
|
@NonNull Attachment attachment)
|
2015-01-02 23:43:28 +00:00
|
|
|
throws IOException
|
|
|
|
{
|
2015-10-13 01:25:05 +00:00
|
|
|
if (!canResize(attachment)) {
|
2015-01-02 23:43:28 +00:00
|
|
|
throw new UnsupportedOperationException("Cannot resize this content type");
|
|
|
|
}
|
2015-10-13 01:25:05 +00:00
|
|
|
|
2015-01-02 23:43:28 +00:00
|
|
|
try {
|
2015-10-13 01:25:05 +00:00
|
|
|
// XXX - This is loading everything into memory! We want the send path to be stream-like.
|
2015-11-23 04:18:54 +00:00
|
|
|
return new MediaStream(new ByteArrayInputStream(BitmapUtil.createScaledBytes(context, new DecryptableUri(masterSecret, attachment.getDataUri()), this)),
|
|
|
|
ContentType.IMAGE_JPEG);
|
2016-01-30 23:22:55 +00:00
|
|
|
} catch (BitmapDecodingException e) {
|
|
|
|
throw new IOException(e);
|
2015-01-02 23:43:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|