2011-12-20 18:20:44 +00:00
|
|
|
/**
|
|
|
|
* Copyright (C) 2011 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.mms;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
|
|
|
|
2014-12-12 09:03:24 +00:00
|
|
|
import org.thoughtcrime.securesms.util.Util;
|
2014-06-28 21:06:15 +00:00
|
|
|
import org.w3c.dom.smil.SMILDocument;
|
|
|
|
import org.w3c.dom.smil.SMILMediaElement;
|
|
|
|
import org.w3c.dom.smil.SMILRegionElement;
|
2014-11-03 23:16:04 +00:00
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
2011-12-20 18:20:44 +00:00
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.graphics.Bitmap;
|
2013-09-09 01:19:05 +00:00
|
|
|
import android.graphics.drawable.Drawable;
|
2011-12-20 18:20:44 +00:00
|
|
|
import android.net.Uri;
|
|
|
|
import android.util.Log;
|
2013-04-26 18:23:43 +00:00
|
|
|
import android.widget.ImageView;
|
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
import ws.com.google.android.mms.pdu.PduPart;
|
|
|
|
|
|
|
|
public abstract class Slide {
|
|
|
|
|
2014-12-17 19:47:19 +00:00
|
|
|
protected final PduPart part;
|
|
|
|
protected final Context context;
|
|
|
|
protected MasterSecret masterSecret;
|
2015-01-19 02:11:30 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public Slide(Context context, PduPart part) {
|
|
|
|
this.part = part;
|
|
|
|
this.context = context;
|
|
|
|
}
|
2014-06-28 21:06:15 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public Slide(Context context, MasterSecret masterSecret, PduPart part) {
|
|
|
|
this(context, part);
|
|
|
|
this.masterSecret = masterSecret;
|
|
|
|
}
|
2014-06-28 21:06:15 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
protected byte[] getPartData() {
|
2014-12-12 09:03:24 +00:00
|
|
|
try {
|
|
|
|
if (part.getData() != null)
|
|
|
|
return part.getData();
|
2014-06-28 21:06:15 +00:00
|
|
|
|
2014-12-12 09:03:24 +00:00
|
|
|
return Util.readFully(PartAuthority.getPartStream(context, masterSecret, part.getDataUri()));
|
|
|
|
} catch (IOException e) {
|
|
|
|
Log.w("Slide", e);
|
|
|
|
return new byte[0];
|
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2014-06-28 21:06:15 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public String getContentType() {
|
|
|
|
return new String(part.getContentType());
|
|
|
|
}
|
2014-06-28 21:06:15 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public Uri getUri() {
|
|
|
|
return part.getDataUri();
|
|
|
|
}
|
2014-06-28 21:06:15 +00:00
|
|
|
|
2013-09-09 01:19:05 +00:00
|
|
|
public Drawable getThumbnail(int maxWidth, int maxHeight) {
|
2011-12-20 18:20:44 +00:00
|
|
|
throw new AssertionError("getThumbnail() called on non-thumbnail producing slide!");
|
|
|
|
}
|
2013-04-26 18:23:43 +00:00
|
|
|
|
|
|
|
public void setThumbnailOn(ImageView imageView) {
|
2013-09-09 01:19:05 +00:00
|
|
|
imageView.setImageDrawable(getThumbnail(imageView.getWidth(), imageView.getHeight()));
|
2013-04-26 18:23:43 +00:00
|
|
|
}
|
|
|
|
|
2015-01-19 02:11:30 +00:00
|
|
|
public void setThumbnailOn(ImageView imageView, int height, int width, Drawable placeholder) {
|
|
|
|
imageView.setImageDrawable(getThumbnail(width, height));
|
|
|
|
}
|
|
|
|
|
2014-12-30 09:36:51 +00:00
|
|
|
public Bitmap getGeneratedThumbnail() { return null; }
|
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public boolean hasImage() {
|
|
|
|
return false;
|
|
|
|
}
|
2014-06-28 21:06:15 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public boolean hasVideo() {
|
|
|
|
return false;
|
|
|
|
}
|
2014-06-28 21:06:15 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public boolean hasAudio() {
|
|
|
|
return false;
|
|
|
|
}
|
2014-06-28 21:06:15 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public Bitmap getImage() {
|
|
|
|
throw new AssertionError("getImage() called on non-image slide!");
|
|
|
|
}
|
2014-06-28 21:06:15 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public boolean hasText() {
|
|
|
|
return false;
|
|
|
|
}
|
2014-06-28 21:06:15 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public String getText() {
|
|
|
|
throw new AssertionError("getText() called on non-text slide!");
|
|
|
|
}
|
2014-06-28 21:06:15 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public PduPart getPart() {
|
|
|
|
return part;
|
|
|
|
}
|
2014-06-28 21:06:15 +00:00
|
|
|
|
|
|
|
public abstract SMILRegionElement getSmilRegion(SMILDocument document);
|
|
|
|
|
|
|
|
public abstract SMILMediaElement getMediaElement(SMILDocument document);
|
2014-12-12 09:03:24 +00:00
|
|
|
|
|
|
|
protected static void assertMediaSize(Context context, Uri uri)
|
|
|
|
throws MediaTooLargeException, IOException
|
|
|
|
{
|
|
|
|
InputStream in = context.getContentResolver().openInputStream(uri);
|
|
|
|
long size = 0;
|
|
|
|
byte[] buffer = new byte[512];
|
|
|
|
int read;
|
|
|
|
|
|
|
|
while ((read = in.read(buffer)) != -1) {
|
|
|
|
size += read;
|
2015-01-02 23:43:28 +00:00
|
|
|
if (size > MmsMediaConstraints.MAX_MESSAGE_SIZE) throw new MediaTooLargeException("Media exceeds maximum message size.");
|
2014-12-12 09:03:24 +00:00
|
|
|
}
|
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|