mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-21 13:41:31 +00:00
DB attachment record gets properly updated on upload error.
Individual loading indicators per conversation item thumbnail.
This commit is contained in:
parent
f3bb40e024
commit
7cc67daf80
@ -45,15 +45,4 @@
|
|||||||
app:footer_text_color="@android:color/white"
|
app:footer_text_color="@android:color/white"
|
||||||
app:footer_icon_color="@android:color/white"/>
|
app:footer_icon_color="@android:color/white"/>
|
||||||
|
|
||||||
<ProgressBar
|
|
||||||
android:id="@+id/conversation_thumbnail_load_indicator"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_gravity="center"
|
|
||||||
android:maxWidth="48dp"
|
|
||||||
android:maxHeight="48dp"
|
|
||||||
android:indeterminate="true"
|
|
||||||
android:visibility="gone"
|
|
||||||
tools:visibility="visible"/>
|
|
||||||
|
|
||||||
</merge>
|
</merge>
|
||||||
|
@ -22,6 +22,15 @@
|
|||||||
android:src="@drawable/ic_caption_28"
|
android:src="@drawable/ic_caption_28"
|
||||||
android:visibility="gone" />
|
android:visibility="gone" />
|
||||||
|
|
||||||
|
<ProgressBar
|
||||||
|
android:id="@+id/thumbnail_load_indicator"
|
||||||
|
android:layout_width="48dp"
|
||||||
|
android:layout_height="48dp"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:indeterminate="true"
|
||||||
|
android:visibility="gone"
|
||||||
|
tools:visibility="visible"/>
|
||||||
|
|
||||||
<FrameLayout
|
<FrameLayout
|
||||||
android:id="@+id/play_overlay"
|
android:id="@+id/play_overlay"
|
||||||
android:layout_width="48dp"
|
android:layout_width="48dp"
|
||||||
|
@ -73,7 +73,7 @@ public class AlbumThumbnailView extends FrameLayout {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int sizeClass = sizeClass(slides.size());
|
int sizeClass = Math.min(slides.size(), 6);
|
||||||
|
|
||||||
if (sizeClass != currentSizeClass) {
|
if (sizeClass != currentSizeClass) {
|
||||||
inflateLayout(sizeClass);
|
inflateLayout(sizeClass);
|
||||||
@ -148,11 +148,8 @@ public class AlbumThumbnailView extends FrameLayout {
|
|||||||
private void setSlide(@NonNull GlideRequests glideRequests, @NonNull Slide slide, @IdRes int id) {
|
private void setSlide(@NonNull GlideRequests glideRequests, @NonNull Slide slide, @IdRes int id) {
|
||||||
ThumbnailView cell = findViewById(id);
|
ThumbnailView cell = findViewById(id);
|
||||||
cell.setImageResource(glideRequests, slide, false, false);
|
cell.setImageResource(glideRequests, slide, false, false);
|
||||||
|
cell.setLoadIndicatorVisibile(slide.isInProgress());
|
||||||
cell.setThumbnailClickListener(defaultThumbnailClickListener);
|
cell.setThumbnailClickListener(defaultThumbnailClickListener);
|
||||||
cell.setOnLongClickListener(defaultLongClickListener);
|
cell.setOnLongClickListener(defaultLongClickListener);
|
||||||
}
|
}
|
||||||
|
|
||||||
private int sizeClass(int size) {
|
|
||||||
return Math.min(size, 6);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,6 @@ import android.graphics.Canvas;
|
|||||||
import android.util.AttributeSet;
|
import android.util.AttributeSet;
|
||||||
import android.widget.FrameLayout;
|
import android.widget.FrameLayout;
|
||||||
import android.widget.ImageView;
|
import android.widget.ImageView;
|
||||||
import android.widget.ProgressBar;
|
|
||||||
|
|
||||||
import androidx.annotation.ColorInt;
|
import androidx.annotation.ColorInt;
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
@ -30,7 +29,6 @@ public class ConversationItemThumbnail extends FrameLayout {
|
|||||||
private AlbumThumbnailView album;
|
private AlbumThumbnailView album;
|
||||||
private ImageView shade;
|
private ImageView shade;
|
||||||
private ConversationItemFooter footer;
|
private ConversationItemFooter footer;
|
||||||
private ProgressBar loadIndicator;
|
|
||||||
private CornerMask cornerMask;
|
private CornerMask cornerMask;
|
||||||
private Outliner outliner;
|
private Outliner outliner;
|
||||||
private boolean borderless;
|
private boolean borderless;
|
||||||
@ -57,7 +55,6 @@ public class ConversationItemThumbnail extends FrameLayout {
|
|||||||
this.album = findViewById(R.id.conversation_thumbnail_album);
|
this.album = findViewById(R.id.conversation_thumbnail_album);
|
||||||
this.shade = findViewById(R.id.conversation_thumbnail_shade);
|
this.shade = findViewById(R.id.conversation_thumbnail_shade);
|
||||||
this.footer = findViewById(R.id.conversation_thumbnail_footer);
|
this.footer = findViewById(R.id.conversation_thumbnail_footer);
|
||||||
this.loadIndicator = findViewById(R.id.conversation_thumbnail_load_indicator);
|
|
||||||
this.cornerMask = new CornerMask(this);
|
this.cornerMask = new CornerMask(this);
|
||||||
this.outliner = new Outliner();
|
this.outliner = new Outliner();
|
||||||
|
|
||||||
@ -131,8 +128,10 @@ public class ConversationItemThumbnail extends FrameLayout {
|
|||||||
thumbnail.setVisibility(VISIBLE);
|
thumbnail.setVisibility(VISIBLE);
|
||||||
album.setVisibility(GONE);
|
album.setVisibility(GONE);
|
||||||
|
|
||||||
Attachment attachment = slides.get(0).asAttachment();
|
Slide slide = slides.get(0);
|
||||||
thumbnail.setImageResource(glideRequests, slides.get(0), showControls, isPreview, attachment.getWidth(), attachment.getHeight());
|
Attachment attachment = slide.asAttachment();
|
||||||
|
thumbnail.setImageResource(glideRequests, slide, showControls, isPreview, attachment.getWidth(), attachment.getHeight());
|
||||||
|
thumbnail.setLoadIndicatorVisibile(slide.isInProgress());
|
||||||
setTouchDelegate(thumbnail.getTouchDelegate());
|
setTouchDelegate(thumbnail.getTouchDelegate());
|
||||||
} else {
|
} else {
|
||||||
thumbnail.setVisibility(GONE);
|
thumbnail.setVisibility(GONE);
|
||||||
@ -141,18 +140,6 @@ public class ConversationItemThumbnail extends FrameLayout {
|
|||||||
album.setSlides(glideRequests, slides, showControls);
|
album.setSlides(glideRequests, slides, showControls);
|
||||||
setTouchDelegate(album.getTouchDelegate());
|
setTouchDelegate(album.getTouchDelegate());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Display loading indicator if any attachment is in loading state.
|
|
||||||
{
|
|
||||||
boolean anyLoading = false;
|
|
||||||
for (int i = 0; i < slides.size(); i++) {
|
|
||||||
if (slides.get(i).asAttachment().isInProgress()) {
|
|
||||||
anyLoading = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
loadIndicator.setVisibility(anyLoading ? VISIBLE : GONE);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setConversationColor(@ColorInt int color) {
|
public void setConversationColor(@ColorInt int color) {
|
||||||
|
@ -52,6 +52,7 @@ public class ThumbnailView extends FrameLayout {
|
|||||||
private ImageView image;
|
private ImageView image;
|
||||||
private View playOverlay;
|
private View playOverlay;
|
||||||
private View captionIcon;
|
private View captionIcon;
|
||||||
|
private View loadIndicator;
|
||||||
private OnClickListener parentClickListener;
|
private OnClickListener parentClickListener;
|
||||||
|
|
||||||
private final int[] dimens = new int[2];
|
private final int[] dimens = new int[2];
|
||||||
@ -78,9 +79,10 @@ public class ThumbnailView extends FrameLayout {
|
|||||||
|
|
||||||
inflate(context, R.layout.thumbnail_view, this);
|
inflate(context, R.layout.thumbnail_view, this);
|
||||||
|
|
||||||
this.image = findViewById(R.id.thumbnail_image);
|
this.image = findViewById(R.id.thumbnail_image);
|
||||||
this.playOverlay = findViewById(R.id.play_overlay);
|
this.playOverlay = findViewById(R.id.play_overlay);
|
||||||
this.captionIcon = findViewById(R.id.thumbnail_caption_icon);
|
this.captionIcon = findViewById(R.id.thumbnail_caption_icon);
|
||||||
|
this.loadIndicator = findViewById(R.id.thumbnail_load_indicator);
|
||||||
super.setOnClickListener(new ThumbnailClickDispatcher());
|
super.setOnClickListener(new ThumbnailClickDispatcher());
|
||||||
|
|
||||||
if (attrs != null) {
|
if (attrs != null) {
|
||||||
@ -336,6 +338,10 @@ public class ThumbnailView extends FrameLayout {
|
|||||||
getTransferControls().showProgressSpinner();
|
getTransferControls().showProgressSpinner();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setLoadIndicatorVisibile(boolean visible) {
|
||||||
|
this.loadIndicator.setVisibility(visible ? VISIBLE : GONE);
|
||||||
|
}
|
||||||
|
|
||||||
protected void setRadius(int radius) {
|
protected void setRadius(int radius) {
|
||||||
this.radius = radius;
|
this.radius = radius;
|
||||||
}
|
}
|
||||||
|
@ -374,7 +374,7 @@ public class AttachmentDatabase extends Database {
|
|||||||
thumbnailExecutor.submit(new ThumbnailFetchCallable(attachmentId));
|
thumbnailExecutor.submit(new ThumbnailFetchCallable(attachmentId));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void updateAttachmentAfterUpload(@NonNull AttachmentId id, @NonNull Attachment attachment) {
|
public void updateAttachmentAfterUploadSucceeded(@NonNull AttachmentId id, @NonNull Attachment attachment) {
|
||||||
SQLiteDatabase database = databaseHelper.getWritableDatabase();
|
SQLiteDatabase database = databaseHelper.getWritableDatabase();
|
||||||
ContentValues values = new ContentValues();
|
ContentValues values = new ContentValues();
|
||||||
|
|
||||||
@ -390,6 +390,15 @@ public class AttachmentDatabase extends Database {
|
|||||||
database.update(TABLE_NAME, values, PART_ID_WHERE, id.toStrings());
|
database.update(TABLE_NAME, values, PART_ID_WHERE, id.toStrings());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void updateAttachmentAfterUploadFailed(@NonNull AttachmentId id) {
|
||||||
|
SQLiteDatabase database = databaseHelper.getWritableDatabase();
|
||||||
|
ContentValues values = new ContentValues();
|
||||||
|
|
||||||
|
values.put(TRANSFER_STATE, TRANSFER_PROGRESS_FAILED);
|
||||||
|
|
||||||
|
database.update(TABLE_NAME, values, PART_ID_WHERE, id.toStrings());
|
||||||
|
}
|
||||||
|
|
||||||
@NonNull Map<Attachment, AttachmentId> insertAttachmentsForMessage(long mmsId, @NonNull List<Attachment> attachments, @NonNull List<Attachment> quoteAttachment)
|
@NonNull Map<Attachment, AttachmentId> insertAttachmentsForMessage(long mmsId, @NonNull List<Attachment> attachments, @NonNull List<Attachment> quoteAttachment)
|
||||||
throws MmsException
|
throws MmsException
|
||||||
{
|
{
|
||||||
|
@ -87,13 +87,20 @@ public class AttachmentUploadJob extends BaseJob implements InjectableType {
|
|||||||
|
|
||||||
// Only upload attachment if necessary
|
// Only upload attachment if necessary
|
||||||
if (databaseAttachment.getUrl().isEmpty()) {
|
if (databaseAttachment.getUrl().isEmpty()) {
|
||||||
MediaConstraints mediaConstraints = MediaConstraints.getPushMediaConstraints();
|
final Attachment attachment;
|
||||||
Attachment scaledAttachment = scaleAndStripExif(database, mediaConstraints, databaseAttachment);
|
try {
|
||||||
SignalServiceAttachment localAttachment = getAttachmentFor(scaledAttachment);
|
MediaConstraints mediaConstraints = MediaConstraints.getPushMediaConstraints();
|
||||||
SignalServiceAttachmentPointer remoteAttachment = messageSender.uploadAttachment(localAttachment.asStream(), databaseAttachment.isSticker(), new SignalServiceAddress(destination.serialize()));
|
Attachment scaledAttachment = scaleAndStripExif(database, mediaConstraints, databaseAttachment);
|
||||||
Attachment attachment = PointerAttachment.forPointer(Optional.of(remoteAttachment), null, databaseAttachment.getFastPreflightId()).get();
|
SignalServiceAttachment localAttachment = getAttachmentFor(scaledAttachment);
|
||||||
|
SignalServiceAttachmentPointer remoteAttachment = messageSender.uploadAttachment(localAttachment.asStream(), databaseAttachment.isSticker(), new SignalServiceAddress(destination.serialize()));
|
||||||
|
attachment = PointerAttachment.forPointer(Optional.of(remoteAttachment), null, databaseAttachment.getFastPreflightId()).get();
|
||||||
|
} catch (Exception e) {
|
||||||
|
// On any error make sure we mark the related DB record's transfer state as failed.
|
||||||
|
database.updateAttachmentAfterUploadFailed(databaseAttachment.getAttachmentId());
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
|
|
||||||
database.updateAttachmentAfterUpload(databaseAttachment.getAttachmentId(), attachment);
|
database.updateAttachmentAfterUploadSucceeded(databaseAttachment.getAttachmentId(), attachment);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user