mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 02:39:05 +01:00
Return LiveData when sending message
This commit is contained in:
@@ -20,6 +20,7 @@ import org.briarproject.briar.android.fragment.BaseFragment;
|
||||
import org.briarproject.briar.android.view.TextInputView;
|
||||
import org.briarproject.briar.android.view.TextSendController;
|
||||
import org.briarproject.briar.android.view.TextSendController.SendListener;
|
||||
import org.briarproject.briar.android.view.TextSendController.SendState;
|
||||
import org.briarproject.briar.api.attachment.AttachmentHeader;
|
||||
|
||||
import java.util.List;
|
||||
@@ -27,6 +28,9 @@ import java.util.List;
|
||||
import javax.annotation.Nullable;
|
||||
import javax.inject.Inject;
|
||||
|
||||
import androidx.lifecycle.LiveData;
|
||||
import androidx.lifecycle.MutableLiveData;
|
||||
|
||||
import static android.view.View.FOCUS_DOWN;
|
||||
import static android.view.View.GONE;
|
||||
import static android.view.View.INVISIBLE;
|
||||
@@ -34,6 +38,7 @@ import static android.view.View.VISIBLE;
|
||||
import static java.util.Objects.requireNonNull;
|
||||
import static org.briarproject.briar.android.activity.BriarActivity.GROUP_ID;
|
||||
import static org.briarproject.briar.android.blog.BasePostFragment.POST_ID;
|
||||
import static org.briarproject.briar.android.view.TextSendController.SendState.SENT;
|
||||
import static org.briarproject.briar.api.blog.BlogConstants.MAX_BLOG_POST_TEXT_LENGTH;
|
||||
|
||||
@MethodsNotNullByDefault
|
||||
@@ -121,8 +126,8 @@ public class ReblogFragment extends BaseFragment implements SendListener {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onSendClick(@Nullable String text,
|
||||
List<AttachmentHeader> headers) {
|
||||
public LiveData<SendState> onSendClick(@Nullable String text,
|
||||
List<AttachmentHeader> headers, long expectedAutoDeleteTimer) {
|
||||
ui.input.hideSoftKeyboard();
|
||||
feedController.repeatPost(item, text,
|
||||
new UiExceptionHandler<DbException>(this) {
|
||||
@@ -132,6 +137,7 @@ public class ReblogFragment extends BaseFragment implements SendListener {
|
||||
}
|
||||
});
|
||||
finish();
|
||||
return new MutableLiveData<>(SENT);
|
||||
}
|
||||
|
||||
private void showProgressBar() {
|
||||
|
||||
@@ -31,12 +31,16 @@ import java.util.logging.Logger;
|
||||
import javax.inject.Inject;
|
||||
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.lifecycle.LiveData;
|
||||
import androidx.lifecycle.MutableLiveData;
|
||||
|
||||
import static android.view.View.GONE;
|
||||
import static android.view.View.VISIBLE;
|
||||
import static java.util.logging.Level.WARNING;
|
||||
import static org.briarproject.bramble.util.LogUtils.logException;
|
||||
import static org.briarproject.bramble.util.StringUtils.isNullOrEmpty;
|
||||
import static org.briarproject.briar.android.view.TextSendController.SendState;
|
||||
import static org.briarproject.briar.android.view.TextSendController.SendState.SENT;
|
||||
import static org.briarproject.briar.api.blog.BlogConstants.MAX_BLOG_POST_TEXT_LENGTH;
|
||||
|
||||
@MethodsNotNullByDefault
|
||||
@@ -112,8 +116,8 @@ public class WriteBlogPostActivity extends BriarActivity
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onSendClick(@Nullable String text,
|
||||
List<AttachmentHeader> headers) {
|
||||
public LiveData<SendState> onSendClick(@Nullable String text,
|
||||
List<AttachmentHeader> headers, long expectedAutoDeleteTimer) {
|
||||
if (isNullOrEmpty(text)) throw new AssertionError();
|
||||
|
||||
// hide publish button, show progress bar
|
||||
@@ -122,6 +126,7 @@ public class WriteBlogPostActivity extends BriarActivity
|
||||
progressBar.setVisibility(VISIBLE);
|
||||
|
||||
storePost(text);
|
||||
return new MutableLiveData<>(SENT);
|
||||
}
|
||||
|
||||
private void storePost(String text) {
|
||||
|
||||
@@ -60,6 +60,7 @@ import org.briarproject.briar.android.view.TextAttachmentController;
|
||||
import org.briarproject.briar.android.view.TextAttachmentController.AttachmentListener;
|
||||
import org.briarproject.briar.android.view.TextInputView;
|
||||
import org.briarproject.briar.android.view.TextSendController;
|
||||
import org.briarproject.briar.android.view.TextSendController.SendState;
|
||||
import org.briarproject.briar.api.android.AndroidNotificationManager;
|
||||
import org.briarproject.briar.api.attachment.AttachmentHeader;
|
||||
import org.briarproject.briar.api.blog.BlogSharingManager;
|
||||
@@ -747,12 +748,13 @@ public class ConversationActivity extends BriarActivity
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onSendClick(@Nullable String text,
|
||||
List<AttachmentHeader> attachmentHeaders) {
|
||||
public LiveData<SendState> onSendClick(@Nullable String text,
|
||||
List<AttachmentHeader> attachmentHeaders,
|
||||
long expectedAutoDeleteTimer) {
|
||||
if (isNullOrEmpty(text) && attachmentHeaders.isEmpty())
|
||||
throw new AssertionError();
|
||||
viewModel.sendMessage(text, attachmentHeaders);
|
||||
textInputView.clearText();
|
||||
return viewModel
|
||||
.sendMessage(text, attachmentHeaders, expectedAutoDeleteTimer);
|
||||
}
|
||||
|
||||
private void onAddedPrivateMessage(@Nullable PrivateMessageHeader h) {
|
||||
|
||||
@@ -29,11 +29,13 @@ import org.briarproject.briar.android.attachment.AttachmentResult;
|
||||
import org.briarproject.briar.android.attachment.AttachmentRetriever;
|
||||
import org.briarproject.briar.android.contact.ContactItem;
|
||||
import org.briarproject.briar.android.util.UiUtils;
|
||||
import org.briarproject.briar.android.view.TextSendController.SendState;
|
||||
import org.briarproject.briar.android.viewmodel.DbViewModel;
|
||||
import org.briarproject.briar.android.viewmodel.LiveEvent;
|
||||
import org.briarproject.briar.android.viewmodel.MutableLiveEvent;
|
||||
import org.briarproject.briar.api.attachment.AttachmentHeader;
|
||||
import org.briarproject.briar.api.autodelete.AutoDeleteManager;
|
||||
import org.briarproject.briar.api.autodelete.UnexpectedTimerException;
|
||||
import org.briarproject.briar.api.autodelete.event.AutoDeleteTimerMirroredEvent;
|
||||
import org.briarproject.briar.api.avatar.event.AvatarUpdatedEvent;
|
||||
import org.briarproject.briar.api.conversation.ConversationManager;
|
||||
@@ -61,6 +63,7 @@ import androidx.lifecycle.MutableLiveData;
|
||||
import static androidx.lifecycle.Transformations.map;
|
||||
import static java.util.Objects.requireNonNull;
|
||||
import static java.util.concurrent.TimeUnit.DAYS;
|
||||
import static java.util.logging.Level.INFO;
|
||||
import static java.util.logging.Level.WARNING;
|
||||
import static java.util.logging.Logger.getLogger;
|
||||
import static org.briarproject.bramble.util.LogUtils.logDuration;
|
||||
@@ -68,6 +71,10 @@ import static org.briarproject.bramble.util.LogUtils.logException;
|
||||
import static org.briarproject.bramble.util.LogUtils.now;
|
||||
import static org.briarproject.briar.android.settings.SettingsFragment.SETTINGS_NAMESPACE;
|
||||
import static org.briarproject.briar.android.util.UiUtils.observeForeverOnce;
|
||||
import static org.briarproject.briar.android.view.TextSendController.SendState.ERROR;
|
||||
import static org.briarproject.briar.android.view.TextSendController.SendState.SENDING;
|
||||
import static org.briarproject.briar.android.view.TextSendController.SendState.SENT;
|
||||
import static org.briarproject.briar.android.view.TextSendController.SendState.UNEXPECTED_TIMER;
|
||||
import static org.briarproject.briar.api.autodelete.AutoDeleteConstants.NO_AUTO_DELETE_TIMER;
|
||||
import static org.briarproject.briar.api.messaging.PrivateMessageFormat.TEXT_IMAGES;
|
||||
import static org.briarproject.briar.api.messaging.PrivateMessageFormat.TEXT_ONLY;
|
||||
@@ -260,17 +267,6 @@ public class ConversationViewModel extends DbViewModel
|
||||
});
|
||||
}
|
||||
|
||||
@UiThread
|
||||
void sendMessage(@Nullable String text, List<AttachmentHeader> headers) {
|
||||
// messagingGroupId is loaded with the contact
|
||||
observeForeverOnce(messagingGroupId, groupId -> {
|
||||
requireNonNull(groupId);
|
||||
observeForeverOnce(privateMessageFormat, format ->
|
||||
storeMessage(requireNonNull(contactId), groupId, text,
|
||||
headers, format));
|
||||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
@UiThread
|
||||
public LiveData<AttachmentResult> storeAttachments(Collection<Uri> uris,
|
||||
@@ -300,6 +296,8 @@ public class ConversationViewModel extends DbViewModel
|
||||
// check if images and auto-deletion are supported
|
||||
PrivateMessageFormat format = db.transactionWithResult(true, txn ->
|
||||
messagingManager.getContactMessageFormat(txn, c));
|
||||
if (LOG.isLoggable(INFO))
|
||||
LOG.info("PrivateMessageFormat loaded: " + format.name());
|
||||
privateMessageFormat.postValue(format);
|
||||
|
||||
// check if introductions are supported
|
||||
@@ -327,40 +325,16 @@ public class ConversationViewModel extends DbViewModel
|
||||
settingsManager.mergeSettings(settings, SETTINGS_NAMESPACE);
|
||||
}
|
||||
|
||||
private PrivateMessage createMessage(Transaction txn, ContactId c,
|
||||
GroupId groupId, @Nullable String text,
|
||||
List<AttachmentHeader> headers, PrivateMessageFormat format)
|
||||
throws DbException {
|
||||
long timestamp =
|
||||
conversationManager.getTimestampForOutgoingMessage(txn, c);
|
||||
try {
|
||||
if (format == TEXT_ONLY) {
|
||||
return privateMessageFactory.createLegacyPrivateMessage(
|
||||
groupId, timestamp, requireNonNull(text));
|
||||
} else if (format == TEXT_IMAGES) {
|
||||
return privateMessageFactory.createPrivateMessage(groupId,
|
||||
timestamp, text, headers);
|
||||
} else {
|
||||
long timer = autoDeleteManager.getAutoDeleteTimer(txn, c,
|
||||
timestamp);
|
||||
return privateMessageFactory.createPrivateMessage(groupId,
|
||||
timestamp, text, headers, timer);
|
||||
}
|
||||
} catch (FormatException e) {
|
||||
throw new AssertionError(e);
|
||||
}
|
||||
}
|
||||
|
||||
@UiThread
|
||||
private void storeMessage(ContactId c, GroupId groupId,
|
||||
@Nullable String text, List<AttachmentHeader> headers,
|
||||
PrivateMessageFormat format) {
|
||||
LiveData<SendState> sendMessage(@Nullable String text,
|
||||
List<AttachmentHeader> headers, long expectedTimer) {
|
||||
MutableLiveData<SendState> liveData = new MutableLiveData<>(SENDING);
|
||||
runOnDbThread(() -> {
|
||||
try {
|
||||
db.transaction(false, txn -> {
|
||||
long start = now();
|
||||
PrivateMessage m = createMessage(txn, c, groupId, text,
|
||||
headers, format);
|
||||
PrivateMessage m = createMessage(txn, text, headers,
|
||||
expectedTimer);
|
||||
messagingManager.addLocalMessage(txn, m);
|
||||
logDuration(LOG, "Storing message", start);
|
||||
Message message = m.getMessage();
|
||||
@@ -372,12 +346,50 @@ public class ConversationViewModel extends DbViewModel
|
||||
// TODO add text to cache when available here
|
||||
MessageId id = message.getId();
|
||||
txn.attach(() -> attachmentCreator.onAttachmentsSent(id));
|
||||
liveData.postValue(SENT);
|
||||
addedHeader.postEvent(h);
|
||||
});
|
||||
} catch (UnexpectedTimerException e) {
|
||||
liveData.postValue(UNEXPECTED_TIMER);
|
||||
} catch (DbException e) {
|
||||
logException(LOG, WARNING, e);
|
||||
liveData.postValue(ERROR);
|
||||
}
|
||||
});
|
||||
return liveData;
|
||||
}
|
||||
|
||||
private PrivateMessage createMessage(Transaction txn, @Nullable String text,
|
||||
List<AttachmentHeader> headers, long expectedTimer)
|
||||
throws DbException {
|
||||
// Sending is only possible (setReady(true)) after loading all messages
|
||||
// which happens after the contact has been loaded.
|
||||
// privateMessageFormat is loaded together with contact
|
||||
Contact contact =
|
||||
requireNonNull(this.contactItem.getValue()).getContact();
|
||||
GroupId groupId = messagingManager.getContactGroup(contact).getId();
|
||||
PrivateMessageFormat format =
|
||||
requireNonNull(privateMessageFormat.getValue());
|
||||
long timestamp = conversationManager
|
||||
.getTimestampForOutgoingMessage(txn, requireNonNull(contactId));
|
||||
try {
|
||||
if (format == TEXT_ONLY) {
|
||||
return privateMessageFactory.createLegacyPrivateMessage(
|
||||
groupId, timestamp, requireNonNull(text));
|
||||
} else if (format == TEXT_IMAGES) {
|
||||
return privateMessageFactory.createPrivateMessage(groupId,
|
||||
timestamp, text, headers);
|
||||
} else {
|
||||
long timer = autoDeleteManager
|
||||
.getAutoDeleteTimer(txn, contactId, timestamp);
|
||||
if (timer != expectedTimer)
|
||||
throw new UnexpectedTimerException();
|
||||
return privateMessageFactory.createPrivateMessage(groupId,
|
||||
timestamp, text, headers, timer);
|
||||
}
|
||||
} catch (FormatException e) {
|
||||
throw new AssertionError(e);
|
||||
}
|
||||
}
|
||||
|
||||
void setAutoDeleteTimerEnabled(boolean enabled) {
|
||||
|
||||
@@ -35,6 +35,8 @@ import javax.inject.Inject;
|
||||
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.appcompat.app.ActionBar;
|
||||
import androidx.lifecycle.LiveData;
|
||||
import androidx.lifecycle.MutableLiveData;
|
||||
import de.hdodenhof.circleimageview.CircleImageView;
|
||||
|
||||
import static android.app.Activity.RESULT_OK;
|
||||
@@ -46,6 +48,8 @@ import static org.briarproject.bramble.util.LogUtils.logException;
|
||||
import static org.briarproject.briar.android.util.UiUtils.getContactDisplayName;
|
||||
import static org.briarproject.briar.android.util.UiUtils.hideSoftKeyboard;
|
||||
import static org.briarproject.briar.android.view.AuthorView.setAvatar;
|
||||
import static org.briarproject.briar.android.view.TextSendController.SendState;
|
||||
import static org.briarproject.briar.android.view.TextSendController.SendState.SENT;
|
||||
import static org.briarproject.briar.api.introduction.IntroductionConstants.MAX_INTRODUCTION_TEXT_LENGTH;
|
||||
|
||||
@MethodsNotNullByDefault
|
||||
@@ -201,8 +205,8 @@ public class IntroductionMessageFragment extends BaseFragment
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onSendClick(@Nullable String text,
|
||||
List<AttachmentHeader> headers) {
|
||||
public LiveData<SendState> onSendClick(@Nullable String text,
|
||||
List<AttachmentHeader> headers, long expectedAutoDeleteTimer) {
|
||||
// disable button to prevent accidental double invitations
|
||||
ui.message.setReady(false);
|
||||
|
||||
@@ -212,6 +216,7 @@ public class IntroductionMessageFragment extends BaseFragment
|
||||
hideSoftKeyboard(ui.message);
|
||||
introductionActivity.setResult(RESULT_OK);
|
||||
introductionActivity.supportFinishAfterTransition();
|
||||
return new MutableLiveData<>(SENT);
|
||||
}
|
||||
|
||||
private void makeIntroduction(Contact c1, Contact c2,
|
||||
|
||||
@@ -15,6 +15,7 @@ import org.briarproject.briar.android.fragment.BaseFragment;
|
||||
import org.briarproject.briar.android.view.LargeTextInputView;
|
||||
import org.briarproject.briar.android.view.TextSendController;
|
||||
import org.briarproject.briar.android.view.TextSendController.SendListener;
|
||||
import org.briarproject.briar.android.view.TextSendController.SendState;
|
||||
import org.briarproject.briar.api.attachment.AttachmentHeader;
|
||||
|
||||
import java.util.List;
|
||||
@@ -22,6 +23,10 @@ import java.util.List;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.annotation.StringRes;
|
||||
import androidx.annotation.UiThread;
|
||||
import androidx.lifecycle.LiveData;
|
||||
import androidx.lifecycle.MutableLiveData;
|
||||
|
||||
import static org.briarproject.briar.android.view.TextSendController.SendState.SENT;
|
||||
|
||||
@MethodsNotNullByDefault
|
||||
@ParametersNotNullByDefault
|
||||
@@ -79,13 +84,14 @@ public abstract class BaseMessageFragment extends BaseFragment
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onSendClick(@Nullable String text,
|
||||
List<AttachmentHeader> headers) {
|
||||
public LiveData<SendState> onSendClick(@Nullable String text,
|
||||
List<AttachmentHeader> headers, long expectedAutoDeleteTimer) {
|
||||
// disable button to prevent accidental double actions
|
||||
sendController.setReady(false);
|
||||
message.hideSoftKeyboard();
|
||||
|
||||
listener.onButtonClick(text);
|
||||
return new MutableLiveData<>(SENT);
|
||||
}
|
||||
|
||||
@UiThread
|
||||
|
||||
@@ -19,6 +19,7 @@ import org.briarproject.briar.android.view.BriarRecyclerView;
|
||||
import org.briarproject.briar.android.view.TextInputView;
|
||||
import org.briarproject.briar.android.view.TextSendController;
|
||||
import org.briarproject.briar.android.view.TextSendController.SendListener;
|
||||
import org.briarproject.briar.android.view.TextSendController.SendState;
|
||||
import org.briarproject.briar.android.view.UnreadMessageButton;
|
||||
import org.briarproject.briar.api.attachment.AttachmentHeader;
|
||||
|
||||
@@ -29,10 +30,13 @@ import javax.annotation.Nullable;
|
||||
import androidx.annotation.CallSuper;
|
||||
import androidx.annotation.StringRes;
|
||||
import androidx.appcompat.app.ActionBar;
|
||||
import androidx.lifecycle.LiveData;
|
||||
import androidx.lifecycle.MutableLiveData;
|
||||
import androidx.recyclerview.widget.LinearLayoutManager;
|
||||
|
||||
import static androidx.recyclerview.widget.RecyclerView.NO_POSITION;
|
||||
import static org.briarproject.bramble.util.StringUtils.isNullOrEmpty;
|
||||
import static org.briarproject.briar.android.view.TextSendController.SendState.SENT;
|
||||
|
||||
@MethodsNotNullByDefault
|
||||
@ParametersNotNullByDefault
|
||||
@@ -231,8 +235,8 @@ public abstract class ThreadListActivity<I extends ThreadItem, A extends ThreadI
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onSendClick(@Nullable String text,
|
||||
List<AttachmentHeader> headers) {
|
||||
public LiveData<SendState> onSendClick(@Nullable String text,
|
||||
List<AttachmentHeader> headers, long expectedAutoDeleteTimer) {
|
||||
if (isNullOrEmpty(text)) throw new AssertionError();
|
||||
|
||||
MessageId replyId = getViewModel().getReplyId();
|
||||
@@ -241,6 +245,7 @@ public abstract class ThreadListActivity<I extends ThreadItem, A extends ThreadI
|
||||
textInput.clearText();
|
||||
getViewModel().setReplyId(null);
|
||||
updateTextInput();
|
||||
return new MutableLiveData<>(SENT);
|
||||
}
|
||||
|
||||
protected abstract int getMaxTextLength();
|
||||
|
||||
@@ -26,7 +26,6 @@ import androidx.annotation.Nullable;
|
||||
import androidx.annotation.UiThread;
|
||||
import androidx.appcompat.app.AlertDialog.Builder;
|
||||
import androidx.customview.view.AbsSavedState;
|
||||
import androidx.lifecycle.LifecycleOwner;
|
||||
import androidx.lifecycle.LiveData;
|
||||
import androidx.lifecycle.Observer;
|
||||
import androidx.vectordrawable.graphics.drawable.VectorDrawableCompat;
|
||||
@@ -39,6 +38,7 @@ import static androidx.core.content.ContextCompat.getColor;
|
||||
import static androidx.customview.view.AbsSavedState.EMPTY_STATE;
|
||||
import static androidx.lifecycle.Lifecycle.State.DESTROYED;
|
||||
import static org.briarproject.briar.android.util.UiUtils.resolveColorAttribute;
|
||||
import static org.briarproject.briar.android.view.TextSendController.SendState.SENT;
|
||||
import static org.briarproject.briar.api.messaging.MessagingConstants.MAX_ATTACHMENTS_PER_MESSAGE;
|
||||
|
||||
@UiThread
|
||||
@@ -111,11 +111,17 @@ public class TextAttachmentController extends TextSendController
|
||||
if (canSend()) {
|
||||
if (loadingUris) throw new AssertionError();
|
||||
listener.onSendClick(textInput.getText(),
|
||||
attachmentManager.getAttachmentHeadersForSending());
|
||||
reset();
|
||||
attachmentManager.getAttachmentHeadersForSending(),
|
||||
expectedTimer).observe(listener, this::onSendStateChanged);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onSendStateChanged(SendState sendState) {
|
||||
super.onSendStateChanged(sendState);
|
||||
if (sendState == SENT) reset();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean canSendEmptyText() {
|
||||
return !imageUris.isEmpty();
|
||||
@@ -321,7 +327,7 @@ public class TextAttachmentController extends TextSendController
|
||||
}
|
||||
|
||||
@UiThread
|
||||
public interface AttachmentListener extends SendListener, LifecycleOwner {
|
||||
public interface AttachmentListener extends SendListener {
|
||||
|
||||
void onAttachImage(Intent intent);
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@ package org.briarproject.briar.android.view;
|
||||
import android.content.Context;
|
||||
import android.os.Parcelable;
|
||||
import android.view.View;
|
||||
import android.widget.Toast;
|
||||
|
||||
import com.google.android.material.snackbar.Snackbar;
|
||||
|
||||
@@ -17,9 +18,15 @@ import androidx.annotation.CallSuper;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.annotation.UiThread;
|
||||
import androidx.appcompat.app.AlertDialog;
|
||||
import androidx.lifecycle.LifecycleOwner;
|
||||
import androidx.lifecycle.LiveData;
|
||||
|
||||
import static android.widget.Toast.LENGTH_LONG;
|
||||
import static com.google.android.material.snackbar.Snackbar.LENGTH_SHORT;
|
||||
import static java.util.Collections.emptyList;
|
||||
import static org.briarproject.briar.android.view.TextSendController.SendState.ERROR;
|
||||
import static org.briarproject.briar.android.view.TextSendController.SendState.SENT;
|
||||
import static org.briarproject.briar.android.view.TextSendController.SendState.UNEXPECTED_TIMER;
|
||||
import static org.briarproject.briar.api.autodelete.AutoDeleteConstants.NO_AUTO_DELETE_TIMER;
|
||||
|
||||
@UiThread
|
||||
@@ -33,7 +40,7 @@ public class TextSendController implements TextInputListener {
|
||||
protected boolean textIsEmpty = true;
|
||||
private boolean ready = true;
|
||||
private long currentTimer = NO_AUTO_DELETE_TIMER;
|
||||
private long expectedTimer = NO_AUTO_DELETE_TIMER;
|
||||
protected long expectedTimer = NO_AUTO_DELETE_TIMER;
|
||||
|
||||
private final CharSequence defaultHint;
|
||||
private final boolean allowEmptyText;
|
||||
@@ -58,7 +65,21 @@ public class TextSendController implements TextInputListener {
|
||||
@Override
|
||||
public void onSendEvent() {
|
||||
if (canSend()) {
|
||||
listener.onSendClick(textInput.getText(), emptyList());
|
||||
listener.onSendClick(textInput.getText(), emptyList(),
|
||||
expectedTimer).observe(listener, this::onSendStateChanged);
|
||||
}
|
||||
}
|
||||
|
||||
@CallSuper
|
||||
protected void onSendStateChanged(SendState sendState) {
|
||||
if (sendState == SENT) {
|
||||
textInput.clearText();
|
||||
} else if (sendState == UNEXPECTED_TIMER) {
|
||||
boolean enabled = expectedTimer == NO_AUTO_DELETE_TIMER;
|
||||
showTimerChangedDialog(enabled);
|
||||
} else if (sendState == ERROR) {
|
||||
Toast.makeText(textInput.getContext(), R.string.message_error,
|
||||
LENGTH_LONG).show();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -123,11 +144,6 @@ public class TextSendController implements TextInputListener {
|
||||
LENGTH_SHORT).show();
|
||||
return false;
|
||||
}
|
||||
if (expectedTimer != currentTimer) {
|
||||
boolean enabled = currentTimer != NO_AUTO_DELETE_TIMER;
|
||||
showTimerChangedDialog(enabled);
|
||||
return false;
|
||||
}
|
||||
return ready && (canSendEmptyText() || !textIsEmpty);
|
||||
}
|
||||
|
||||
@@ -162,9 +178,11 @@ public class TextSendController implements TextInputListener {
|
||||
return state;
|
||||
}
|
||||
|
||||
@UiThread
|
||||
public interface SendListener {
|
||||
void onSendClick(@Nullable String text, List<AttachmentHeader> headers);
|
||||
public enum SendState {SENDING, SENT, ERROR, UNEXPECTED_TIMER}
|
||||
|
||||
public interface SendListener extends LifecycleOwner {
|
||||
LiveData<SendState> onSendClick(@Nullable String text,
|
||||
List<AttachmentHeader> headers, long expectedAutoDeleteTimer);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -159,6 +159,7 @@
|
||||
<string name="no_private_messages">No messages to show</string>
|
||||
<string name="message_hint">New message</string>
|
||||
<string name="message_hint_auto_delete">New disappearing message</string>
|
||||
<string name="message_error">Error sending message</string>
|
||||
<string name="image_caption_hint">Add a caption (optional)</string>
|
||||
<string name="image_attach">Attach image</string>
|
||||
<string name="image_attach_error">Could not attach image(s)</string>
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
package org.briarproject.briar.api.autodelete;
|
||||
|
||||
import org.briarproject.bramble.api.db.DbException;
|
||||
|
||||
/**
|
||||
* Thrown when a database operation is attempted as part of message storing
|
||||
* and the operation is expecting a different timer state. This
|
||||
* exception may occur due to concurrent updates and does not indicate a
|
||||
* database error.
|
||||
*/
|
||||
public class UnexpectedTimerException extends DbException {
|
||||
}
|
||||
Reference in New Issue
Block a user