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
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
import org.thoughtcrime.securesms.attachments.Attachment;
|
|
|
|
import org.thoughtcrime.securesms.attachments.UriAttachment;
|
|
|
|
import org.thoughtcrime.securesms.database.AttachmentDatabase;
|
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;
|
2015-10-13 01:25:05 +00:00
|
|
|
import org.whispersystems.libaxolotl.util.guava.Optional;
|
2015-03-31 22:44:41 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public abstract class Slide {
|
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
protected final Attachment attachment;
|
|
|
|
protected final Context context;
|
|
|
|
|
|
|
|
public Slide(@NonNull Context context, @NonNull Attachment attachment) {
|
|
|
|
this.context = context;
|
|
|
|
this.attachment = attachment;
|
2015-01-19 02:11:30 +00:00
|
|
|
|
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() {
|
2015-10-13 01:25:05 +00:00
|
|
|
return attachment.getContentType();
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2014-06-28 21:06:15 +00:00
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
@Nullable
|
2011-12-20 18:20:44 +00:00
|
|
|
public Uri getUri() {
|
2015-10-13 01:25:05 +00:00
|
|
|
return attachment.getDataUri();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Nullable
|
|
|
|
public Uri getThumbnailUri() {
|
|
|
|
return attachment.getThumbnailUri();
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2014-06-28 21:06:15 +00:00
|
|
|
|
2015-12-18 22:37:11 +00:00
|
|
|
@NonNull
|
|
|
|
public Optional<String> getBody() {
|
|
|
|
return Optional.absent();
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2016-01-04 21:02:22 +00:00
|
|
|
public boolean hasLocation() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-09-10 04:05:21 +00:00
|
|
|
public @NonNull String getContentDescription() { return ""; }
|
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
public Attachment asAttachment() {
|
|
|
|
return attachment;
|
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() {
|
2015-10-13 01:25:05 +00:00
|
|
|
return attachment.isInProgress();
|
2015-06-27 03:14:51 +00:00
|
|
|
}
|
|
|
|
|
2015-09-08 01:08:44 +00:00
|
|
|
public boolean isPendingDownload() {
|
2015-10-13 01:25:05 +00:00
|
|
|
return getTransferState() == AttachmentDatabase.TRANSFER_PROGRESS_FAILED ||
|
|
|
|
getTransferState() == AttachmentDatabase.TRANSFER_PROGRESS_AUTO_PENDING;
|
2015-09-08 01:08:44 +00:00
|
|
|
}
|
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
public long getTransferState() {
|
|
|
|
return attachment.getTransferState();
|
2015-08-24 22:24:31 +00:00
|
|
|
}
|
|
|
|
|
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-10-13 01:25:05 +00:00
|
|
|
public boolean hasPlaceholder() {
|
|
|
|
return false;
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2014-06-28 21:06:15 +00:00
|
|
|
|
2015-10-13 01:25:05 +00:00
|
|
|
protected static Attachment constructAttachmentFromUri(@NonNull Context context,
|
|
|
|
@NonNull Uri uri,
|
|
|
|
@NonNull String defaultMime,
|
|
|
|
long size)
|
2014-12-12 09:03:24 +00:00
|
|
|
{
|
2015-10-13 01:25:05 +00:00
|
|
|
Optional<String> resolvedType = Optional.fromNullable(MediaUtil.getMimeType(context, uri));
|
|
|
|
return new UriAttachment(uri, resolvedType.or(defaultMime), AttachmentDatabase.TRANSFER_PROGRESS_STARTED, size);
|
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() &&
|
2015-10-13 01:25:05 +00:00
|
|
|
this.getTransferState() == that.getTransferState() &&
|
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-10-13 01:25:05 +00:00
|
|
|
hasVideo(), getUri(), getThumbnailUri(), getTransferState());
|
2015-05-18 15:38:48 +00:00
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|