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 android.content.Context;
|
2015-03-31 22:44:41 +00:00
|
|
|
import android.content.res.Resources.Theme;
|
2011-12-20 18:20:44 +00:00
|
|
|
import android.net.Uri;
|
2015-03-31 22:44:41 +00:00
|
|
|
import android.support.annotation.DrawableRes;
|
2015-05-18 15:38:48 +00:00
|
|
|
import android.support.annotation.NonNull;
|
2015-09-05 00:33:22 +00:00
|
|
|
import android.support.annotation.Nullable;
|
2015-03-31 22:44:41 +00:00
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
2015-09-05 00:33:22 +00:00
|
|
|
import org.thoughtcrime.securesms.util.MediaUtil;
|
2015-03-31 22:44:41 +00:00
|
|
|
import org.thoughtcrime.securesms.util.Util;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
2013-04-26 18:23:43 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
import ws.com.google.android.mms.pdu.PduPart;
|
|
|
|
|
|
|
|
public abstract class Slide {
|
|
|
|
|
2015-09-05 00:33:22 +00:00
|
|
|
protected final PduPart part;
|
|
|
|
protected final Context context;
|
2015-01-19 02:11:30 +00:00
|
|
|
|
2015-05-18 15:38:48 +00:00
|
|
|
public Slide(Context context, @NonNull PduPart part) {
|
2011-12-20 18:20:44 +00:00
|
|
|
this.part = part;
|
|
|
|
this.context = context;
|
|
|
|
}
|
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
|
|
|
|
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
|
|
|
|
2015-03-31 22:44:41 +00:00
|
|
|
public PduPart getPart() {
|
|
|
|
return part;
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2014-06-28 21:06:15 +00:00
|
|
|
|
2015-03-31 22:44:41 +00:00
|
|
|
public Uri getThumbnailUri() {
|
|
|
|
return null;
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2014-06-28 21:06:15 +00:00
|
|
|
|
2015-06-27 03:14:51 +00:00
|
|
|
public boolean isInProgress() {
|
|
|
|
return part.isInProgress();
|
|
|
|
}
|
|
|
|
|
2015-08-24 22:24:31 +00:00
|
|
|
public long getTransferProgress() {
|
|
|
|
return part.getTransferProgress();
|
|
|
|
}
|
|
|
|
|
2015-03-31 22:44:41 +00:00
|
|
|
public @DrawableRes int getPlaceholderRes(Theme theme) {
|
|
|
|
throw new AssertionError("getPlaceholderRes() called for non-drawable slide");
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2014-06-28 21:06:15 +00:00
|
|
|
|
2015-03-31 22:44:41 +00:00
|
|
|
public boolean isDraft() {
|
2015-05-21 18:55:03 +00:00
|
|
|
return !getPart().getPartId().isValid();
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2014-06-28 21:06:15 +00:00
|
|
|
|
2015-09-05 00:33:22 +00:00
|
|
|
|
|
|
|
protected static PduPart constructPartFromUri(@NonNull Context context,
|
|
|
|
@NonNull Uri uri,
|
|
|
|
@NonNull String defaultMime,
|
|
|
|
long dataSize)
|
|
|
|
throws IOException
|
2014-12-12 09:03:24 +00:00
|
|
|
{
|
2015-09-05 00:33:22 +00:00
|
|
|
final PduPart part = new PduPart();
|
|
|
|
final String mimeType = MediaUtil.getMimeType(context, uri);
|
|
|
|
final String derivedMimeType = mimeType != null ? mimeType : defaultMime;
|
|
|
|
|
|
|
|
part.setDataSize(dataSize);
|
|
|
|
part.setDataUri(uri);
|
|
|
|
part.setContentType(derivedMimeType.getBytes());
|
|
|
|
part.setContentId((System.currentTimeMillis()+"").getBytes());
|
|
|
|
part.setName((MediaUtil.getDiscreteMimeType(derivedMimeType) + System.currentTimeMillis()).getBytes());
|
|
|
|
|
|
|
|
return part;
|
2014-12-12 09:03:24 +00:00
|
|
|
}
|
2015-05-18 15:38:48 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean equals(Object other) {
|
|
|
|
if (!(other instanceof Slide)) return false;
|
|
|
|
|
|
|
|
Slide that = (Slide)other;
|
|
|
|
|
|
|
|
return Util.equals(this.getContentType(), that.getContentType()) &&
|
|
|
|
this.hasAudio() == that.hasAudio() &&
|
|
|
|
this.hasImage() == that.hasImage() &&
|
|
|
|
this.hasVideo() == that.hasVideo() &&
|
|
|
|
this.isDraft() == that.isDraft() &&
|
2015-08-24 22:24:31 +00:00
|
|
|
this.getTransferProgress() == that.getTransferProgress() &&
|
2015-05-18 15:38:48 +00:00
|
|
|
Util.equals(this.getUri(), that.getUri()) &&
|
|
|
|
Util.equals(this.getThumbnailUri(), that.getThumbnailUri());
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int hashCode() {
|
|
|
|
return Util.hashCode(getContentType(), hasAudio(), hasImage(),
|
2015-08-24 22:24:31 +00:00
|
|
|
hasVideo(), isDraft(), getUri(), getThumbnailUri(), getTransferProgress());
|
2015-05-18 15:38:48 +00:00
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|