2015-03-31 22:44:41 +00:00
package org.thoughtcrime.securesms.components ;
import android.content.Context ;
2015-07-15 20:42:59 +00:00
import android.content.res.TypedArray ;
import android.graphics.Color ;
2015-10-16 20:59:40 +00:00
import android.net.Uri ;
2015-03-31 22:44:41 +00:00
import android.support.annotation.NonNull ;
2018-03-20 18:27:11 +00:00
import android.support.annotation.UiThread ;
2015-03-31 22:44:41 +00:00
import android.util.AttributeSet ;
import android.util.Log ;
2018-03-20 18:27:11 +00:00
import android.util.Pair ;
2015-03-31 22:44:41 +00:00
import android.view.View ;
2015-06-27 03:14:51 +00:00
import android.widget.FrameLayout ;
2015-07-15 20:42:59 +00:00
import android.widget.ImageView ;
2015-03-31 22:44:41 +00:00
2017-10-12 00:12:46 +00:00
import com.bumptech.glide.RequestBuilder ;
2016-10-17 02:05:07 +00:00
import com.bumptech.glide.load.engine.DiskCacheStrategy ;
2018-03-20 18:27:11 +00:00
import com.bumptech.glide.load.resource.bitmap.BitmapTransformation ;
import com.bumptech.glide.load.resource.bitmap.CenterCrop ;
import com.bumptech.glide.load.resource.bitmap.FitCenter ;
2017-10-12 00:12:46 +00:00
import com.bumptech.glide.load.resource.bitmap.RoundedCorners ;
import com.bumptech.glide.request.RequestOptions ;
2015-03-31 22:44:41 +00:00
import org.thoughtcrime.securesms.R ;
2015-10-13 01:25:05 +00:00
import org.thoughtcrime.securesms.database.AttachmentDatabase ;
2015-03-31 22:44:41 +00:00
import org.thoughtcrime.securesms.mms.DecryptableStreamUriLoader.DecryptableUri ;
2018-03-20 18:27:11 +00:00
import org.thoughtcrime.securesms.mms.GlideRequest ;
2017-10-16 20:11:42 +00:00
import org.thoughtcrime.securesms.mms.GlideRequests ;
2015-03-31 22:44:41 +00:00
import org.thoughtcrime.securesms.mms.Slide ;
2015-10-21 22:32:29 +00:00
import org.thoughtcrime.securesms.mms.SlideClickListener ;
2015-05-18 15:38:48 +00:00
import org.thoughtcrime.securesms.util.Util ;
2015-07-30 22:02:20 +00:00
import org.thoughtcrime.securesms.util.ViewUtil ;
2016-03-23 17:34:41 +00:00
import org.whispersystems.libsignal.util.guava.Optional ;
2015-03-31 22:44:41 +00:00
2018-03-20 18:27:11 +00:00
import java.util.Locale ;
2017-10-12 00:12:46 +00:00
import static com.bumptech.glide.load.resource.drawable.DrawableTransitionOptions.withCrossFade ;
2015-06-27 03:14:51 +00:00
public class ThumbnailView extends FrameLayout {
2015-10-21 22:32:29 +00:00
2015-06-27 03:14:51 +00:00
private static final String TAG = ThumbnailView . class . getSimpleName ( ) ;
2018-03-20 18:27:11 +00:00
private static final int WIDTH = 0 ;
private static final int HEIGHT = 1 ;
private static final int MIN_WIDTH = 0 ;
private static final int MAX_WIDTH = 1 ;
private static final int MIN_HEIGHT = 2 ;
private static final int MAX_HEIGHT = 3 ;
2015-06-27 03:14:51 +00:00
2015-09-24 23:46:57 +00:00
private ImageView image ;
2016-12-11 21:37:27 +00:00
private ImageView playOverlay ;
2015-09-24 23:46:57 +00:00
private int backgroundColorHint ;
private int radius ;
private OnClickListener parentClickListener ;
2015-05-18 15:38:48 +00:00
2018-03-20 18:27:11 +00:00
private final int [ ] dimens = new int [ 2 ] ;
private final int [ ] bounds = new int [ 4 ] ;
private final int [ ] measureDimens = new int [ 2 ] ;
2015-10-21 22:32:29 +00:00
private Optional < TransferControlView > transferControls = Optional . absent ( ) ;
private SlideClickListener thumbnailClickListener = null ;
private SlideClickListener downloadClickListener = null ;
private Slide slide = null ;
2015-03-31 22:44:41 +00:00
public ThumbnailView ( Context context ) {
2015-06-27 03:14:51 +00:00
this ( context , null ) ;
2015-03-31 22:44:41 +00:00
}
public ThumbnailView ( Context context , AttributeSet attrs ) {
2015-06-27 03:14:51 +00:00
this ( context , attrs , 0 ) ;
2015-03-31 22:44:41 +00:00
}
2015-08-24 22:24:31 +00:00
public ThumbnailView ( final Context context , AttributeSet attrs , int defStyle ) {
2015-03-31 22:44:41 +00:00
super ( context , attrs , defStyle ) ;
2015-10-21 22:32:29 +00:00
2015-06-27 03:14:51 +00:00
inflate ( context , R . layout . thumbnail_view , this ) ;
2015-10-21 22:32:29 +00:00
2016-12-11 21:37:27 +00:00
this . radius = getResources ( ) . getDimensionPixelSize ( R . dimen . message_bubble_corner_radius ) ;
2018-01-25 03:17:44 +00:00
this . image = findViewById ( R . id . thumbnail_image ) ;
this . playOverlay = findViewById ( R . id . play_overlay ) ;
2015-09-24 23:46:57 +00:00
super . setOnClickListener ( new ThumbnailClickDispatcher ( ) ) ;
2015-09-09 18:55:06 +00:00
2015-07-15 20:42:59 +00:00
if ( attrs ! = null ) {
TypedArray typedArray = context . getTheme ( ) . obtainStyledAttributes ( attrs , R . styleable . ThumbnailView , 0 , 0 ) ;
2018-03-20 18:27:11 +00:00
backgroundColorHint = typedArray . getColor ( R . styleable . ThumbnailView_backgroundColorHint , Color . BLACK ) ;
bounds [ MIN_WIDTH ] = typedArray . getDimensionPixelSize ( R . styleable . ThumbnailView_minWidth , 0 ) ;
bounds [ MAX_WIDTH ] = typedArray . getDimensionPixelSize ( R . styleable . ThumbnailView_maxWidth , 0 ) ;
bounds [ MIN_HEIGHT ] = typedArray . getDimensionPixelSize ( R . styleable . ThumbnailView_minHeight , 0 ) ;
bounds [ MAX_HEIGHT ] = typedArray . getDimensionPixelSize ( R . styleable . ThumbnailView_maxHeight , 0 ) ;
2015-07-15 20:42:59 +00:00
typedArray . recycle ( ) ;
}
2015-06-27 03:14:51 +00:00
}
2018-03-20 18:27:11 +00:00
@Override
protected void onMeasure ( int originalWidthMeasureSpec , int originalHeightMeasureSpec ) {
fillTargetDimensions ( measureDimens , dimens , bounds ) ;
if ( measureDimens [ WIDTH ] = = 0 & & measureDimens [ HEIGHT ] = = 0 ) {
super . onMeasure ( originalWidthMeasureSpec , originalHeightMeasureSpec ) ;
return ;
}
int finalWidth = measureDimens [ WIDTH ] + getPaddingLeft ( ) + getPaddingRight ( ) ;
int finalHeight = measureDimens [ HEIGHT ] + getPaddingTop ( ) + getPaddingBottom ( ) ;
super . onMeasure ( MeasureSpec . makeMeasureSpec ( finalWidth , MeasureSpec . EXACTLY ) ,
MeasureSpec . makeMeasureSpec ( finalHeight , MeasureSpec . EXACTLY ) ) ;
}
@SuppressWarnings ( " SuspiciousNameCombination " )
private void fillTargetDimensions ( int [ ] targetDimens , int [ ] dimens , int [ ] bounds ) {
int dimensFilledCount = getNonZeroCount ( dimens ) ;
int boundsFilledCount = getNonZeroCount ( bounds ) ;
if ( dimensFilledCount = = 0 | | boundsFilledCount = = 0 ) {
targetDimens [ WIDTH ] = 0 ;
targetDimens [ HEIGHT ] = 0 ;
return ;
}
double naturalWidth = dimens [ WIDTH ] ;
double naturalHeight = dimens [ HEIGHT ] ;
int minWidth = bounds [ MIN_WIDTH ] ;
int maxWidth = bounds [ MAX_WIDTH ] ;
int minHeight = bounds [ MIN_HEIGHT ] ;
int maxHeight = bounds [ MAX_HEIGHT ] ;
if ( dimensFilledCount > 0 & & dimensFilledCount < dimens . length ) {
throw new IllegalStateException ( String . format ( Locale . ENGLISH , " Width or height has been specified, but not both. Dimens: %f x %f " ,
naturalWidth , naturalHeight ) ) ;
}
if ( boundsFilledCount > 0 & & boundsFilledCount < bounds . length ) {
throw new IllegalStateException ( String . format ( Locale . ENGLISH , " One or more min/max dimensions have been specified, but not all. Bounds: [%d, %d, %d, %d] " ,
minWidth , maxWidth , minHeight , maxHeight ) ) ;
}
double measuredWidth = naturalWidth ;
double measuredHeight = naturalHeight ;
boolean widthInBounds = measuredWidth > = minWidth & & measuredWidth < = maxWidth ;
boolean heightInBounds = measuredHeight > = minHeight & & measuredHeight < = maxHeight ;
if ( ! widthInBounds | | ! heightInBounds ) {
double minWidthRatio = naturalWidth / minWidth ;
double maxWidthRatio = naturalWidth / maxWidth ;
double minHeightRatio = naturalHeight / minHeight ;
double maxHeightRatio = naturalHeight / maxHeight ;
if ( maxWidthRatio > 1 | | maxHeightRatio > 1 ) {
if ( maxWidthRatio > = maxHeightRatio ) {
measuredWidth / = maxWidthRatio ;
measuredHeight / = maxWidthRatio ;
} else {
measuredWidth / = maxHeightRatio ;
measuredHeight / = maxHeightRatio ;
}
measuredWidth = Math . max ( measuredWidth , minWidth ) ;
measuredHeight = Math . max ( measuredHeight , minHeight ) ;
} else if ( minWidthRatio < 1 | | minHeightRatio < 1 ) {
if ( minWidthRatio < = minHeightRatio ) {
measuredWidth / = minWidthRatio ;
measuredHeight / = minWidthRatio ;
} else {
measuredWidth / = minHeightRatio ;
measuredHeight / = minHeightRatio ;
}
measuredWidth = Math . min ( measuredWidth , maxWidth ) ;
measuredHeight = Math . min ( measuredHeight , maxHeight ) ;
}
}
targetDimens [ WIDTH ] = ( int ) measuredWidth ;
targetDimens [ HEIGHT ] = ( int ) measuredHeight ;
}
private int getNonZeroCount ( int [ ] vals ) {
int count = 0 ;
for ( int val : vals ) {
if ( val > 0 ) {
count + + ;
}
}
return count ;
}
2015-10-13 01:25:05 +00:00
@Override
public void setOnClickListener ( OnClickListener l ) {
2015-09-24 23:46:57 +00:00
parentClickListener = l ;
}
2015-10-13 01:25:05 +00:00
@Override
public void setFocusable ( boolean focusable ) {
2015-09-24 23:46:57 +00:00
super . setFocusable ( focusable ) ;
if ( transferControls . isPresent ( ) ) transferControls . get ( ) . setFocusable ( focusable ) ;
}
2015-10-13 01:25:05 +00:00
@Override
public void setClickable ( boolean clickable ) {
2015-09-24 22:55:17 +00:00
super . setClickable ( clickable ) ;
2015-09-24 23:46:57 +00:00
if ( transferControls . isPresent ( ) ) transferControls . get ( ) . setClickable ( clickable ) ;
2015-09-24 22:55:17 +00:00
}
2015-09-08 01:08:44 +00:00
private TransferControlView getTransferControls ( ) {
2015-09-24 23:46:57 +00:00
if ( ! transferControls . isPresent ( ) ) {
2018-01-25 03:17:44 +00:00
transferControls = Optional . of ( ViewUtil . inflateStub ( this , R . id . transfer_controls_stub ) ) ;
2015-09-24 23:46:57 +00:00
}
return transferControls . get ( ) ;
2015-03-31 22:44:41 +00:00
}
2015-07-15 20:42:59 +00:00
public void setBackgroundColorHint ( int color ) {
this . backgroundColorHint = color ;
}
2018-03-20 18:27:11 +00:00
@UiThread
2018-01-25 03:17:44 +00:00
public void setImageResource ( @NonNull GlideRequests glideRequests , @NonNull Slide slide ,
boolean showControls , boolean isPreview )
2017-10-16 20:11:42 +00:00
{
2018-03-20 18:27:11 +00:00
setImageResource ( glideRequests , slide , showControls , isPreview , 0 , 0 ) ;
}
@UiThread
public void setImageResource ( @NonNull GlideRequests glideRequests , @NonNull Slide slide ,
boolean showControls , boolean isPreview , int naturalWidth ,
int naturalHeight )
{
dimens [ WIDTH ] = naturalWidth ;
dimens [ HEIGHT ] = naturalHeight ;
invalidate ( ) ;
2015-11-02 21:55:16 +00:00
if ( showControls ) {
getTransferControls ( ) . setSlide ( slide ) ;
getTransferControls ( ) . setDownloadClickListener ( new DownloadClickDispatcher ( ) ) ;
} else if ( transferControls . isPresent ( ) ) {
getTransferControls ( ) . setVisibility ( View . GONE ) ;
}
2015-10-21 22:32:29 +00:00
2017-04-20 04:23:57 +00:00
if ( slide . getThumbnailUri ( ) ! = null & & slide . hasPlayOverlay ( ) & &
( slide . getTransferState ( ) = = AttachmentDatabase . TRANSFER_PROGRESS_DONE | | isPreview ) )
{
2016-12-11 21:37:27 +00:00
this . playOverlay . setVisibility ( View . VISIBLE ) ;
} else {
this . playOverlay . setVisibility ( View . GONE ) ;
}
2015-06-27 03:14:51 +00:00
if ( Util . equals ( slide , this . slide ) ) {
2015-10-13 01:25:05 +00:00
Log . w ( TAG , " Not re-loading slide " + slide . asAttachment ( ) . getDataUri ( ) ) ;
2015-06-27 03:14:51 +00:00
return ;
}
2015-09-10 04:05:21 +00:00
2017-04-22 23:29:26 +00:00
if ( this . slide ! = null & & this . slide . getFastPreflightId ( ) ! = null & &
this . slide . getFastPreflightId ( ) . equals ( slide . getFastPreflightId ( ) ) )
{
Log . w ( TAG , " Not re-loading slide for fast preflight: " + slide . getFastPreflightId ( ) ) ;
this . slide = slide ;
return ;
}
2015-10-13 01:25:05 +00:00
Log . w ( TAG , " loading part with id " + slide . asAttachment ( ) . getDataUri ( )
2017-04-22 23:29:26 +00:00
+ " , progress " + slide . getTransferState ( ) + " , fast preflight id: " +
slide . asAttachment ( ) . getFastPreflightId ( ) ) ;
2015-10-13 01:25:05 +00:00
this . slide = slide ;
2018-01-25 03:17:44 +00:00
if ( slide . getThumbnailUri ( ) ! = null ) buildThumbnailGlideRequest ( glideRequests , slide ) . into ( image ) ;
2017-10-16 20:11:42 +00:00
else if ( slide . hasPlaceholder ( ) ) buildPlaceholderGlideRequest ( glideRequests , slide ) . into ( image ) ;
else glideRequests . clear ( image ) ;
2018-03-20 18:27:11 +00:00
2015-03-31 22:44:41 +00:00
}
2018-01-25 03:17:44 +00:00
public void setImageResource ( @NonNull GlideRequests glideRequests , @NonNull Uri uri ) {
2015-10-16 20:59:40 +00:00
if ( transferControls . isPresent ( ) ) getTransferControls ( ) . setVisibility ( View . GONE ) ;
2018-01-25 03:17:44 +00:00
glideRequests . load ( new DecryptableUri ( uri ) )
2018-03-18 21:52:49 +00:00
. diskCacheStrategy ( DiskCacheStrategy . RESOURCE )
2017-10-16 20:11:42 +00:00
. transform ( new RoundedCorners ( radius ) )
. transition ( withCrossFade ( ) )
2017-11-01 22:56:44 +00:00
. centerCrop ( )
2017-10-16 20:11:42 +00:00
. into ( image ) ;
2015-10-16 20:59:40 +00:00
}
2015-10-21 22:32:29 +00:00
public void setThumbnailClickListener ( SlideClickListener listener ) {
2015-03-31 22:44:41 +00:00
this . thumbnailClickListener = listener ;
}
2015-10-21 22:32:29 +00:00
public void setDownloadClickListener ( SlideClickListener listener ) {
2015-08-24 22:24:31 +00:00
this . downloadClickListener = listener ;
}
2017-10-16 20:11:42 +00:00
public void clear ( GlideRequests glideRequests ) {
glideRequests . clear ( image ) ;
if ( transferControls . isPresent ( ) ) {
getTransferControls ( ) . clear ( ) ;
}
2015-10-21 22:32:19 +00:00
slide = null ;
2015-05-31 05:10:40 +00:00
}
2015-09-05 00:33:22 +00:00
public void showProgressSpinner ( ) {
2015-09-08 01:08:44 +00:00
getTransferControls ( ) . showProgressSpinner ( ) ;
2015-09-05 00:33:22 +00:00
}
2018-03-20 18:27:11 +00:00
private GlideRequest buildThumbnailGlideRequest ( @NonNull GlideRequests glideRequests , @NonNull Slide slide ) {
GlideRequest request = applySizing ( glideRequests . load ( new DecryptableUri ( slide . getThumbnailUri ( ) ) )
2018-03-18 21:52:49 +00:00
. diskCacheStrategy ( DiskCacheStrategy . RESOURCE )
2018-03-20 18:27:11 +00:00
. transition ( withCrossFade ( ) ) , new CenterCrop ( ) ) ;
2015-09-10 04:05:21 +00:00
2018-03-20 18:27:11 +00:00
if ( slide . isInProgress ( ) ) return request ;
else return request . apply ( RequestOptions . errorOf ( R . drawable . ic_missing_thumbnail_picture ) ) ;
2015-03-31 22:44:41 +00:00
}
2017-10-16 20:11:42 +00:00
private RequestBuilder buildPlaceholderGlideRequest ( @NonNull GlideRequests glideRequests , @NonNull Slide slide ) {
2018-03-20 18:27:11 +00:00
return applySizing ( glideRequests . asBitmap ( )
2017-10-16 20:11:42 +00:00
. load ( slide . getPlaceholderRes ( getContext ( ) . getTheme ( ) ) )
2018-03-20 18:27:11 +00:00
. diskCacheStrategy ( DiskCacheStrategy . NONE ) , new FitCenter ( ) ) ;
}
private GlideRequest applySizing ( @NonNull GlideRequest request , @NonNull BitmapTransformation unavailableDimensSizing ) {
int [ ] size = new int [ 2 ] ;
fillTargetDimensions ( size , dimens , bounds ) ;
if ( size [ WIDTH ] = = 0 & & size [ HEIGHT ] = = 0 ) {
return request . transforms ( unavailableDimensSizing , new RoundedCorners ( radius ) ) ;
}
return request . override ( size [ WIDTH ] , size [ HEIGHT ] )
. transforms ( new CenterCrop ( ) , new RoundedCorners ( radius ) ) ;
2015-03-31 22:44:41 +00:00
}
2015-09-09 18:55:06 +00:00
private class ThumbnailClickDispatcher implements View . OnClickListener {
@Override
public void onClick ( View view ) {
2015-10-13 01:25:05 +00:00
if ( thumbnailClickListener ! = null & &
slide ! = null & &
slide . asAttachment ( ) . getDataUri ( ) ! = null & &
slide . getTransferState ( ) = = AttachmentDatabase . TRANSFER_PROGRESS_DONE )
2015-09-09 18:55:06 +00:00
{
thumbnailClickListener . onClick ( view , slide ) ;
2015-09-24 23:46:57 +00:00
} else if ( parentClickListener ! = null ) {
parentClickListener . onClick ( view ) ;
2015-09-09 18:55:06 +00:00
}
2015-03-31 22:44:41 +00:00
}
2015-09-09 18:55:06 +00:00
}
2015-03-31 22:44:41 +00:00
2015-09-09 18:55:06 +00:00
private class DownloadClickDispatcher implements View . OnClickListener {
2015-03-31 22:44:41 +00:00
@Override
public void onClick ( View view ) {
2015-09-09 18:55:06 +00:00
if ( downloadClickListener ! = null & & slide ! = null ) {
downloadClickListener . onClick ( view , slide ) ;
2015-04-23 18:33:34 +00:00
}
2015-03-31 22:44:41 +00:00
}
}
}