2014-02-28 17:46:01 +00:00
|
|
|
package eu.siacs.conversations.ui;
|
2014-01-24 01:04:05 +00:00
|
|
|
|
2015-07-19 16:36:28 +00:00
|
|
|
import android.app.Activity;
|
2014-02-16 15:32:15 +00:00
|
|
|
import android.app.AlertDialog;
|
2014-01-24 01:04:05 +00:00
|
|
|
import android.app.Fragment;
|
2014-05-01 20:33:49 +00:00
|
|
|
import android.app.PendingIntent;
|
2015-07-12 18:17:12 +00:00
|
|
|
import android.content.ActivityNotFoundException;
|
2014-07-31 11:26:05 +00:00
|
|
|
import android.content.Context;
|
2014-02-16 15:32:15 +00:00
|
|
|
import android.content.DialogInterface;
|
2014-03-04 01:51:01 +00:00
|
|
|
import android.content.Intent;
|
2014-02-27 23:22:56 +00:00
|
|
|
import android.content.IntentSender.SendIntentException;
|
2014-01-24 01:04:05 +00:00
|
|
|
import android.os.Bundle;
|
2016-05-12 08:39:04 +00:00
|
|
|
import android.os.Handler;
|
2017-11-17 20:00:01 +00:00
|
|
|
import android.os.SystemClock;
|
2016-12-30 20:48:39 +00:00
|
|
|
import android.support.v13.view.inputmethod.InputConnectionCompat;
|
|
|
|
import android.support.v13.view.inputmethod.InputContentInfoCompat;
|
2016-11-25 14:06:43 +00:00
|
|
|
import android.text.Editable;
|
2015-01-14 20:28:27 +00:00
|
|
|
import android.text.InputType;
|
2016-09-12 19:18:56 +00:00
|
|
|
import android.util.Log;
|
|
|
|
import android.util.Pair;
|
2014-10-23 19:27:41 +00:00
|
|
|
import android.view.ContextMenu;
|
|
|
|
import android.view.ContextMenu.ContextMenuInfo;
|
2014-06-01 16:52:27 +00:00
|
|
|
import android.view.Gravity;
|
2014-07-31 11:26:05 +00:00
|
|
|
import android.view.KeyEvent;
|
2014-01-24 01:04:05 +00:00
|
|
|
import android.view.LayoutInflater;
|
2014-10-23 19:27:41 +00:00
|
|
|
import android.view.MenuItem;
|
2017-11-17 20:00:01 +00:00
|
|
|
import android.view.MotionEvent;
|
2014-01-24 01:04:05 +00:00
|
|
|
import android.view.View;
|
2014-01-26 02:27:55 +00:00
|
|
|
import android.view.View.OnClickListener;
|
2014-01-24 01:04:05 +00:00
|
|
|
import android.view.ViewGroup;
|
2014-07-31 11:26:05 +00:00
|
|
|
import android.view.inputmethod.EditorInfo;
|
|
|
|
import android.view.inputmethod.InputMethodManager;
|
2014-06-14 14:59:07 +00:00
|
|
|
import android.widget.AbsListView;
|
2014-11-04 17:52:29 +00:00
|
|
|
import android.widget.AbsListView.OnScrollListener;
|
2014-10-23 19:27:41 +00:00
|
|
|
import android.widget.AdapterView;
|
|
|
|
import android.widget.AdapterView.AdapterContextMenuInfo;
|
2014-01-26 02:27:55 +00:00
|
|
|
import android.widget.ImageButton;
|
2014-11-04 17:52:29 +00:00
|
|
|
import android.widget.ListView;
|
2017-03-20 11:55:48 +00:00
|
|
|
import android.widget.PopupMenu;
|
2014-07-09 19:45:03 +00:00
|
|
|
import android.widget.RelativeLayout;
|
2014-01-26 02:27:55 +00:00
|
|
|
import android.widget.TextView;
|
2014-11-04 17:52:29 +00:00
|
|
|
import android.widget.TextView.OnEditorActionListener;
|
2014-03-04 03:09:15 +00:00
|
|
|
import android.widget.Toast;
|
2014-01-24 01:04:05 +00:00
|
|
|
|
2014-11-04 17:52:29 +00:00
|
|
|
import net.java.otr4j.session.SessionStatus;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
2017-04-07 17:47:33 +00:00
|
|
|
import java.util.Arrays;
|
2015-09-27 17:17:44 +00:00
|
|
|
import java.util.Collections;
|
2017-11-19 00:53:04 +00:00
|
|
|
import java.util.HashSet;
|
2014-11-04 17:52:29 +00:00
|
|
|
import java.util.List;
|
2017-11-19 00:53:04 +00:00
|
|
|
import java.util.Set;
|
2016-02-15 22:15:04 +00:00
|
|
|
import java.util.UUID;
|
2017-03-03 10:56:08 +00:00
|
|
|
import java.util.concurrent.atomic.AtomicBoolean;
|
2014-11-04 17:52:29 +00:00
|
|
|
|
2015-02-21 10:06:52 +00:00
|
|
|
import eu.siacs.conversations.Config;
|
2014-11-04 17:52:29 +00:00
|
|
|
import eu.siacs.conversations.R;
|
|
|
|
import eu.siacs.conversations.entities.Account;
|
2017-03-20 11:55:48 +00:00
|
|
|
import eu.siacs.conversations.entities.Blockable;
|
2014-11-04 17:52:29 +00:00
|
|
|
import eu.siacs.conversations.entities.Contact;
|
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
2014-11-15 14:16:40 +00:00
|
|
|
import eu.siacs.conversations.entities.DownloadableFile;
|
2014-11-04 17:52:29 +00:00
|
|
|
import eu.siacs.conversations.entities.Message;
|
|
|
|
import eu.siacs.conversations.entities.MucOptions;
|
2016-01-17 21:28:38 +00:00
|
|
|
import eu.siacs.conversations.entities.Presence;
|
2017-11-19 00:53:04 +00:00
|
|
|
import eu.siacs.conversations.entities.ReadByMarker;
|
2015-07-20 12:26:29 +00:00
|
|
|
import eu.siacs.conversations.entities.Transferable;
|
|
|
|
import eu.siacs.conversations.entities.TransferablePlaceholder;
|
2016-03-04 10:24:40 +00:00
|
|
|
import eu.siacs.conversations.http.HttpDownloadConnection;
|
2017-01-09 16:00:08 +00:00
|
|
|
import eu.siacs.conversations.persistance.FileBackend;
|
2016-02-21 16:32:46 +00:00
|
|
|
import eu.siacs.conversations.services.MessageArchiveService;
|
2014-11-04 17:52:29 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
|
|
|
import eu.siacs.conversations.ui.XmppActivity.OnPresenceSelected;
|
|
|
|
import eu.siacs.conversations.ui.XmppActivity.OnValueEdited;
|
|
|
|
import eu.siacs.conversations.ui.adapter.MessageAdapter;
|
|
|
|
import eu.siacs.conversations.ui.adapter.MessageAdapter.OnContactPictureClicked;
|
|
|
|
import eu.siacs.conversations.ui.adapter.MessageAdapter.OnContactPictureLongClicked;
|
2017-09-29 17:44:30 +00:00
|
|
|
import eu.siacs.conversations.ui.widget.EditMessage;
|
2017-11-07 21:22:28 +00:00
|
|
|
import eu.siacs.conversations.utils.MessageUtils;
|
2017-04-07 17:47:33 +00:00
|
|
|
import eu.siacs.conversations.utils.NickValidityChecker;
|
2017-11-05 20:34:40 +00:00
|
|
|
import eu.siacs.conversations.utils.StylingHelper;
|
2015-05-13 14:23:20 +00:00
|
|
|
import eu.siacs.conversations.utils.UIHelper;
|
2016-02-14 22:53:17 +00:00
|
|
|
import eu.siacs.conversations.xmpp.XmppConnection;
|
2015-02-21 10:06:52 +00:00
|
|
|
import eu.siacs.conversations.xmpp.chatstate.ChatState;
|
2014-11-06 19:33:13 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jid.Jid;
|
2014-11-04 17:52:29 +00:00
|
|
|
|
2015-02-21 10:06:52 +00:00
|
|
|
public class ConversationFragment extends Fragment implements EditMessage.KeyboardListener {
|
2014-02-16 15:32:15 +00:00
|
|
|
|
2017-11-22 16:57:28 +00:00
|
|
|
final protected List<Message> messageList = new ArrayList<>();
|
2014-01-27 19:40:42 +00:00
|
|
|
protected Conversation conversation;
|
2017-11-22 16:57:28 +00:00
|
|
|
protected ListView messagesView;
|
|
|
|
protected MessageAdapter messageListAdapter;
|
|
|
|
private EditMessage mEditMessage;
|
|
|
|
private ImageButton mSendButton;
|
|
|
|
private RelativeLayout snackbar;
|
|
|
|
private TextView snackbarMessage;
|
|
|
|
private TextView snackbarAction;
|
|
|
|
private Toast messageLoaderToast;
|
|
|
|
private OnClickListener clickToMuc = new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
Intent intent = new Intent(getActivity(), ConferenceDetailsActivity.class);
|
|
|
|
intent.setAction(ConferenceDetailsActivity.ACTION_VIEW_MUC);
|
|
|
|
intent.putExtra("uuid", conversation.getUuid());
|
|
|
|
startActivity(intent);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
private ConversationActivity activity;
|
2014-07-18 10:44:33 +00:00
|
|
|
private OnClickListener leaveMuc = new OnClickListener() {
|
2014-07-18 17:36:29 +00:00
|
|
|
|
2014-07-18 10:44:33 +00:00
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
activity.endConversation(conversation);
|
|
|
|
}
|
|
|
|
};
|
2014-10-06 11:34:19 +00:00
|
|
|
private OnClickListener joinMuc = new OnClickListener() {
|
2014-10-07 13:18:09 +00:00
|
|
|
|
2014-10-06 11:34:19 +00:00
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
activity.xmppConnectionService.joinMuc(conversation);
|
|
|
|
}
|
|
|
|
};
|
2014-09-03 17:35:45 +00:00
|
|
|
private OnClickListener enterPassword = new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
MucOptions muc = conversation.getMucOptions();
|
|
|
|
String password = muc.getPassword();
|
2014-09-08 18:29:57 +00:00
|
|
|
if (password == null) {
|
2014-09-03 17:35:45 +00:00
|
|
|
password = "";
|
|
|
|
}
|
2014-09-04 09:46:13 +00:00
|
|
|
activity.quickPasswordEdit(password, new OnValueEdited() {
|
2014-09-08 18:29:57 +00:00
|
|
|
|
2014-09-03 17:35:45 +00:00
|
|
|
@Override
|
2017-12-09 17:46:21 +00:00
|
|
|
public String onValueEdited(String value) {
|
|
|
|
activity.xmppConnectionService.providePasswordForMuc(conversation, value);
|
|
|
|
return null;
|
2014-09-03 17:35:45 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
2014-06-14 14:59:07 +00:00
|
|
|
private OnScrollListener mOnScrollListener = new OnScrollListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onScrollStateChanged(AbsListView view, int scrollState) {
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2017-11-10 19:18:47 +00:00
|
|
|
public void onScroll(final AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
|
2014-11-18 13:43:15 +00:00
|
|
|
synchronized (ConversationFragment.this.messageList) {
|
2017-11-22 16:57:28 +00:00
|
|
|
if (firstVisibleItem < 5 && conversation != null && conversation.messagesLoaded.compareAndSet(true, false) && messageList.size() > 0) {
|
2016-02-04 15:29:17 +00:00
|
|
|
long timestamp;
|
|
|
|
if (messageList.get(0).getType() == Message.TYPE_STATUS && messageList.size() >= 2) {
|
|
|
|
timestamp = messageList.get(1).getTimeSent();
|
|
|
|
} else {
|
|
|
|
timestamp = messageList.get(0).getTimeSent();
|
|
|
|
}
|
2014-12-15 22:06:29 +00:00
|
|
|
activity.xmppConnectionService.loadMoreMessages(conversation, timestamp, new XmppConnectionService.OnMoreMessagesLoaded() {
|
|
|
|
@Override
|
2017-02-07 13:03:23 +00:00
|
|
|
public void onMoreMessagesLoaded(final int c, final Conversation conversation) {
|
2014-12-15 22:06:29 +00:00
|
|
|
if (ConversationFragment.this.conversation != conversation) {
|
2017-02-07 13:03:23 +00:00
|
|
|
conversation.messagesLoaded.set(true);
|
2014-12-15 22:06:29 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
activity.runOnUiThread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2014-12-17 09:50:51 +00:00
|
|
|
final int oldPosition = messagesView.getFirstVisiblePosition();
|
2017-07-04 09:01:20 +00:00
|
|
|
Message message = null;
|
|
|
|
int childPos;
|
2017-11-22 16:57:28 +00:00
|
|
|
for (childPos = 0; childPos + oldPosition < messageList.size(); ++childPos) {
|
|
|
|
message = messageList.get(oldPosition + childPos);
|
2017-07-04 09:01:20 +00:00
|
|
|
if (message.getType() != Message.TYPE_STATUS) {
|
|
|
|
break;
|
|
|
|
}
|
2016-03-03 10:14:59 +00:00
|
|
|
}
|
2017-07-04 09:01:20 +00:00
|
|
|
final String uuid = message != null ? message.getUuid() : null;
|
|
|
|
View v = messagesView.getChildAt(childPos);
|
2014-12-17 09:50:51 +00:00
|
|
|
final int pxOffset = (v == null) ? 0 : v.getTop();
|
2014-12-15 22:06:29 +00:00
|
|
|
ConversationFragment.this.conversation.populateWithMessages(ConversationFragment.this.messageList);
|
2016-09-12 19:18:56 +00:00
|
|
|
try {
|
|
|
|
updateStatusMessages();
|
|
|
|
} catch (IllegalStateException e) {
|
2017-11-22 16:57:28 +00:00
|
|
|
Log.d(Config.LOGTAG, "caught illegal state exception while updating status messages");
|
2016-09-12 19:18:56 +00:00
|
|
|
}
|
2014-12-15 22:06:29 +00:00
|
|
|
messageListAdapter.notifyDataSetChanged();
|
2017-11-22 16:57:28 +00:00
|
|
|
int pos = Math.max(getIndexOf(uuid, messageList), 0);
|
2015-05-11 05:57:52 +00:00
|
|
|
messagesView.setSelectionFromTop(pos, pxOffset);
|
|
|
|
if (messageLoaderToast != null) {
|
|
|
|
messageLoaderToast.cancel();
|
2014-12-15 22:06:29 +00:00
|
|
|
}
|
2017-02-07 13:03:23 +00:00
|
|
|
conversation.messagesLoaded.set(true);
|
2014-12-15 22:06:29 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2014-12-17 08:32:51 +00:00
|
|
|
|
|
|
|
@Override
|
2014-12-17 09:50:51 +00:00
|
|
|
public void informUser(final int resId) {
|
|
|
|
|
|
|
|
activity.runOnUiThread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
if (messageLoaderToast != null) {
|
|
|
|
messageLoaderToast.cancel();
|
|
|
|
}
|
|
|
|
if (ConversationFragment.this.conversation != conversation) {
|
|
|
|
return;
|
|
|
|
}
|
2017-11-10 19:18:47 +00:00
|
|
|
messageLoaderToast = Toast.makeText(view.getContext(), resId, Toast.LENGTH_LONG);
|
2014-12-17 09:50:51 +00:00
|
|
|
messageLoaderToast.show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-12-17 08:32:51 +00:00
|
|
|
}
|
2014-12-15 22:06:29 +00:00
|
|
|
});
|
|
|
|
|
2014-06-14 14:59:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2017-11-22 16:57:28 +00:00
|
|
|
protected OnClickListener clickToVerify = new OnClickListener() {
|
2016-05-22 15:52:27 +00:00
|
|
|
|
2017-11-22 16:57:28 +00:00
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
activity.verifyOtrSessionDialog(conversation, v);
|
2016-05-22 15:52:27 +00:00
|
|
|
}
|
2017-11-22 16:57:28 +00:00
|
|
|
};
|
|
|
|
private EditMessage.OnCommitContentListener mEditorContentListener = new EditMessage.OnCommitContentListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onCommitContent(InputContentInfoCompat inputContentInfo, int flags, Bundle opts, String[] contentMimeTypes) {
|
|
|
|
// try to get permission to read the image, if applicable
|
|
|
|
if ((flags & InputConnectionCompat.INPUT_CONTENT_GRANT_READ_URI_PERMISSION) != 0) {
|
|
|
|
try {
|
|
|
|
inputContentInfo.requestPermission();
|
|
|
|
} catch (Exception e) {
|
|
|
|
Log.e(Config.LOGTAG, "InputContentInfoCompat#requestPermission() failed.", e);
|
|
|
|
Toast.makeText(
|
|
|
|
activity,
|
|
|
|
activity.getString(R.string.no_permission_to_access_x, inputContentInfo.getDescription()),
|
|
|
|
Toast.LENGTH_LONG
|
|
|
|
).show();
|
|
|
|
return false;
|
2016-05-22 15:52:27 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-22 16:57:28 +00:00
|
|
|
if (activity.hasStoragePermission(ConversationActivity.REQUEST_ADD_EDITOR_CONTENT)) {
|
|
|
|
activity.attachImageToConversation(inputContentInfo.getContentUri());
|
|
|
|
} else {
|
|
|
|
activity.mPendingEditorContent = inputContentInfo.getContentUri();
|
|
|
|
}
|
|
|
|
return true;
|
2016-05-22 15:52:27 +00:00
|
|
|
}
|
2017-11-22 16:57:28 +00:00
|
|
|
};
|
|
|
|
private Message selectedMessage;
|
|
|
|
private OnClickListener mEnableAccountListener = new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
final Account account = conversation == null ? null : conversation.getAccount();
|
|
|
|
if (account != null) {
|
|
|
|
account.setOption(Account.OPTION_DISABLED, false);
|
|
|
|
activity.xmppConnectionService.updateAccount(account);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
private OnClickListener mUnblockClickListener = new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(final View v) {
|
|
|
|
v.post(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
v.setVisibility(View.INVISIBLE);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (conversation.isDomainBlocked()) {
|
|
|
|
BlockContactDialog.show(activity, conversation);
|
2016-09-12 19:18:56 +00:00
|
|
|
} else {
|
2017-11-22 16:57:28 +00:00
|
|
|
activity.unblockConversation(conversation);
|
2016-09-12 19:18:56 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-22 16:57:28 +00:00
|
|
|
};
|
|
|
|
private OnClickListener mBlockClickListener = new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(final View view) {
|
|
|
|
showBlockSubmenu(view);
|
2016-09-12 19:18:56 +00:00
|
|
|
}
|
2017-11-22 16:57:28 +00:00
|
|
|
};
|
|
|
|
private OnClickListener mAddBackClickListener = new OnClickListener() {
|
2016-09-12 19:18:56 +00:00
|
|
|
|
2017-11-22 16:57:28 +00:00
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
final Contact contact = conversation == null ? null : conversation.getContact();
|
|
|
|
if (contact != null) {
|
|
|
|
activity.xmppConnectionService.createContact(contact);
|
|
|
|
activity.switchToContactDetails(contact);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
private View.OnLongClickListener mLongPressBlockListener = new View.OnLongClickListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onLongClick(View v) {
|
|
|
|
showBlockSubmenu(v);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
private OnClickListener mAllowPresenceSubscription = new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
final Contact contact = conversation == null ? null : conversation.getContact();
|
|
|
|
if (contact != null) {
|
|
|
|
activity.xmppConnectionService.sendPresencePacket(contact.getAccount(),
|
|
|
|
activity.xmppConnectionService.getPresenceGenerator()
|
|
|
|
.sendPresenceUpdatesTo(contact));
|
|
|
|
hideSnackbar();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
private OnClickListener mAnswerSmpClickListener = new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
Intent intent = new Intent(activity, VerifyOTRActivity.class);
|
|
|
|
intent.setAction(VerifyOTRActivity.ACTION_VERIFY_CONTACT);
|
|
|
|
intent.putExtra("contact", conversation.getContact().getJid().toBareJid().toString());
|
|
|
|
intent.putExtra(VerifyOTRActivity.EXTRA_ACCOUNT, conversation.getAccount().getJid().toBareJid().toString());
|
|
|
|
intent.putExtra("mode", VerifyOTRActivity.MODE_ANSWER_QUESTION);
|
|
|
|
startActivity(intent);
|
|
|
|
}
|
|
|
|
};
|
2014-11-07 14:38:20 +00:00
|
|
|
protected OnClickListener clickToDecryptListener = new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
2016-06-13 11:32:14 +00:00
|
|
|
PendingIntent pendingIntent = conversation.getAccount().getPgpDecryptionService().getPendingIntent();
|
|
|
|
if (pendingIntent != null) {
|
|
|
|
try {
|
|
|
|
activity.startIntentSenderForResult(pendingIntent.getIntentSender(),
|
2017-11-22 16:57:28 +00:00
|
|
|
ConversationActivity.REQUEST_DECRYPT_PGP,
|
|
|
|
null,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0);
|
2016-06-13 11:32:14 +00:00
|
|
|
} catch (SendIntentException e) {
|
2017-11-22 16:57:28 +00:00
|
|
|
Toast.makeText(activity, R.string.unable_to_connect_to_keychain, Toast.LENGTH_SHORT).show();
|
2016-06-13 11:32:14 +00:00
|
|
|
conversation.getAccount().getPgpDecryptionService().continueDecryption(true);
|
2014-11-07 14:38:20 +00:00
|
|
|
}
|
|
|
|
}
|
2016-06-13 11:32:14 +00:00
|
|
|
updateSnackBar(conversation);
|
2014-11-07 14:38:20 +00:00
|
|
|
}
|
|
|
|
};
|
2017-11-22 16:57:28 +00:00
|
|
|
private AtomicBoolean mSendingPgpMessage = new AtomicBoolean(false);
|
2014-11-07 14:38:20 +00:00
|
|
|
private OnEditorActionListener mEditorActionListener = new OnEditorActionListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
|
|
|
|
if (actionId == EditorInfo.IME_ACTION_SEND) {
|
|
|
|
InputMethodManager imm = (InputMethodManager) v.getContext()
|
2015-05-02 09:38:56 +00:00
|
|
|
.getSystemService(Context.INPUT_METHOD_SERVICE);
|
2015-09-04 16:02:53 +00:00
|
|
|
if (imm.isFullscreenMode()) {
|
|
|
|
imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
|
|
|
|
}
|
2014-11-07 14:38:20 +00:00
|
|
|
sendMessage();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
private OnClickListener mSendButtonListener = new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
2015-05-02 09:38:56 +00:00
|
|
|
Object tag = v.getTag();
|
|
|
|
if (tag instanceof SendButtonAction) {
|
|
|
|
SendButtonAction action = (SendButtonAction) tag;
|
|
|
|
switch (action) {
|
|
|
|
case TAKE_PHOTO:
|
|
|
|
activity.attachFile(ConversationActivity.ATTACHMENT_CHOICE_TAKE_PHOTO);
|
|
|
|
break;
|
2017-09-18 09:51:47 +00:00
|
|
|
case RECORD_VIDEO:
|
|
|
|
activity.attachFile(ConversationActivity.ATTACHMENT_CHOICE_RECORD_VIDEO);
|
|
|
|
break;
|
2015-05-02 09:38:56 +00:00
|
|
|
case SEND_LOCATION:
|
|
|
|
activity.attachFile(ConversationActivity.ATTACHMENT_CHOICE_LOCATION);
|
|
|
|
break;
|
|
|
|
case RECORD_VOICE:
|
|
|
|
activity.attachFile(ConversationActivity.ATTACHMENT_CHOICE_RECORD_VOICE);
|
|
|
|
break;
|
2015-05-26 03:34:58 +00:00
|
|
|
case CHOOSE_PICTURE:
|
|
|
|
activity.attachFile(ConversationActivity.ATTACHMENT_CHOICE_CHOOSE_IMAGE);
|
|
|
|
break;
|
2015-05-03 07:30:30 +00:00
|
|
|
case CANCEL:
|
2016-02-15 22:15:04 +00:00
|
|
|
if (conversation != null) {
|
2017-11-22 16:57:28 +00:00
|
|
|
if (conversation.setCorrectingMessage(null)) {
|
2017-03-19 23:09:23 +00:00
|
|
|
mEditMessage.setText("");
|
|
|
|
mEditMessage.append(conversation.getDraftMessage());
|
2017-03-04 07:04:31 +00:00
|
|
|
conversation.setDraftMessage(null);
|
|
|
|
} else if (conversation.getMode() == Conversation.MODE_MULTI) {
|
2016-02-15 22:15:04 +00:00
|
|
|
conversation.setNextCounterpart(null);
|
|
|
|
}
|
2015-05-03 07:30:30 +00:00
|
|
|
updateChatMsgHint();
|
|
|
|
updateSendButton();
|
2017-07-03 21:58:34 +00:00
|
|
|
updateEditablity();
|
2015-05-03 07:30:30 +00:00
|
|
|
}
|
|
|
|
break;
|
2015-05-02 09:38:56 +00:00
|
|
|
default:
|
|
|
|
sendMessage();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
sendMessage();
|
|
|
|
}
|
2014-11-07 14:38:20 +00:00
|
|
|
}
|
|
|
|
};
|
2017-11-22 16:57:28 +00:00
|
|
|
private int completionIndex = 0;
|
|
|
|
private int lastCompletionLength = 0;
|
|
|
|
private String incomplete;
|
|
|
|
private int lastCompletionCursor;
|
|
|
|
private boolean firstWord = false;
|
2014-06-14 14:59:07 +00:00
|
|
|
|
2017-11-22 16:57:28 +00:00
|
|
|
private int getIndexOf(String uuid, List<Message> messages) {
|
|
|
|
if (uuid == null) {
|
|
|
|
return messages.size() - 1;
|
2014-11-07 14:38:20 +00:00
|
|
|
}
|
2017-11-22 16:57:28 +00:00
|
|
|
for (int i = 0; i < messages.size(); ++i) {
|
|
|
|
if (uuid.equals(messages.get(i).getUuid())) {
|
|
|
|
return i;
|
|
|
|
} else {
|
|
|
|
Message next = messages.get(i);
|
|
|
|
while (next != null && next.wasMergedIntoPrevious()) {
|
|
|
|
if (uuid.equals(next.getUuid())) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
next = next.next();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Pair<Integer, Integer> getScrollPosition() {
|
|
|
|
if (this.messagesView.getCount() == 0 ||
|
|
|
|
this.messagesView.getLastVisiblePosition() == this.messagesView.getCount() - 1) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
final int pos = messagesView.getFirstVisiblePosition();
|
|
|
|
final View view = messagesView.getChildAt(0);
|
|
|
|
if (view == null) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return new Pair<>(pos, view.getTop());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setScrollPosition(Pair<Integer, Integer> scrollPosition) {
|
|
|
|
if (scrollPosition != null) {
|
|
|
|
this.messagesView.setSelectionFromTop(scrollPosition.first, scrollPosition.second);
|
|
|
|
}
|
|
|
|
}
|
2014-08-25 13:43:50 +00:00
|
|
|
|
2014-07-31 11:26:05 +00:00
|
|
|
private void sendMessage() {
|
2015-05-20 06:25:00 +00:00
|
|
|
final String body = mEditMessage.getText().toString();
|
2017-04-26 10:43:52 +00:00
|
|
|
final Conversation conversation = this.conversation;
|
|
|
|
if (body.length() == 0 || conversation == null) {
|
2014-09-06 22:09:12 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-02-15 22:15:04 +00:00
|
|
|
final Message message;
|
|
|
|
if (conversation.getCorrectingMessage() == null) {
|
|
|
|
message = new Message(conversation, body, conversation.getNextEncryption());
|
|
|
|
if (conversation.getMode() == Conversation.MODE_MULTI) {
|
2018-01-27 19:55:43 +00:00
|
|
|
final Jid nextCounterpart = conversation.getNextCounterpart();
|
|
|
|
if (nextCounterpart != null) {
|
|
|
|
message.setCounterpart(nextCounterpart);
|
|
|
|
message.setTrueCounterpart(conversation.getMucOptions().getTrueCounterpart(nextCounterpart));
|
2016-02-15 22:15:04 +00:00
|
|
|
message.setType(Message.TYPE_PRIVATE);
|
|
|
|
}
|
2014-08-10 13:27:44 +00:00
|
|
|
}
|
2016-02-15 22:15:04 +00:00
|
|
|
} else {
|
|
|
|
message = conversation.getCorrectingMessage();
|
|
|
|
message.setBody(body);
|
|
|
|
message.setEdited(message.getUuid());
|
|
|
|
message.setUuid(UUID.randomUUID().toString());
|
2014-08-10 13:27:44 +00:00
|
|
|
}
|
2017-04-26 10:43:52 +00:00
|
|
|
switch (message.getConversation().getNextEncryption()) {
|
2015-07-30 22:52:46 +00:00
|
|
|
case Message.ENCRYPTION_OTR:
|
|
|
|
sendOtrMessage(message);
|
|
|
|
break;
|
|
|
|
case Message.ENCRYPTION_PGP:
|
|
|
|
sendPgpMessage(message);
|
|
|
|
break;
|
|
|
|
case Message.ENCRYPTION_AXOLOTL:
|
2017-11-22 16:57:28 +00:00
|
|
|
if (!activity.trustKeysIfNeeded(ConversationActivity.REQUEST_TRUST_KEYS_TEXT)) {
|
2015-07-30 22:52:46 +00:00
|
|
|
sendAxolotlMessage(message);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
sendPlainTextMessage(message);
|
2014-07-31 11:26:05 +00:00
|
|
|
}
|
|
|
|
}
|
2014-03-13 02:52:41 +00:00
|
|
|
|
2014-02-16 15:32:15 +00:00
|
|
|
public void updateChatMsgHint() {
|
2015-09-13 15:13:46 +00:00
|
|
|
final boolean multi = conversation.getMode() == Conversation.MODE_MULTI;
|
2016-02-15 22:15:04 +00:00
|
|
|
if (conversation.getCorrectingMessage() != null) {
|
|
|
|
this.mEditMessage.setHint(R.string.send_corrected_message);
|
|
|
|
} else if (multi && conversation.getNextCounterpart() != null) {
|
2014-08-25 13:43:50 +00:00
|
|
|
this.mEditMessage.setHint(getString(
|
2015-05-02 09:38:56 +00:00
|
|
|
R.string.send_private_message_to,
|
|
|
|
conversation.getNextCounterpart().getResourcepart()));
|
2015-09-13 15:13:46 +00:00
|
|
|
} else if (multi && !conversation.getMucOptions().participating()) {
|
|
|
|
this.mEditMessage.setHint(R.string.you_are_not_participating);
|
2014-08-22 11:22:07 +00:00
|
|
|
} else {
|
2017-11-22 16:57:28 +00:00
|
|
|
this.mEditMessage.setHint(UIHelper.getMessageHint(activity, conversation));
|
2015-01-25 12:07:31 +00:00
|
|
|
getActivity().invalidateOptionsMenu();
|
2014-02-16 15:32:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-04 12:48:00 +00:00
|
|
|
public void setupIme() {
|
2017-04-08 04:35:13 +00:00
|
|
|
if (activity != null) {
|
|
|
|
if (activity.usingEnterKey() && activity.enterIsSend()) {
|
|
|
|
mEditMessage.setInputType(mEditMessage.getInputType() & (~InputType.TYPE_TEXT_FLAG_MULTI_LINE));
|
|
|
|
mEditMessage.setInputType(mEditMessage.getInputType() & (~InputType.TYPE_TEXT_VARIATION_SHORT_MESSAGE));
|
|
|
|
} else if (activity.usingEnterKey()) {
|
|
|
|
mEditMessage.setInputType(mEditMessage.getInputType() | InputType.TYPE_TEXT_FLAG_MULTI_LINE);
|
|
|
|
mEditMessage.setInputType(mEditMessage.getInputType() & (~InputType.TYPE_TEXT_VARIATION_SHORT_MESSAGE));
|
|
|
|
} else {
|
|
|
|
mEditMessage.setInputType(mEditMessage.getInputType() | InputType.TYPE_TEXT_FLAG_MULTI_LINE);
|
|
|
|
mEditMessage.setInputType(mEditMessage.getInputType() | InputType.TYPE_TEXT_VARIATION_SHORT_MESSAGE);
|
|
|
|
}
|
2015-01-14 20:28:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-27 19:40:42 +00:00
|
|
|
@Override
|
2015-09-04 12:48:00 +00:00
|
|
|
public View onCreateView(final LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
2015-05-02 09:38:56 +00:00
|
|
|
final View view = inflater.inflate(R.layout.fragment_conversation, container, false);
|
2015-04-20 09:39:38 +00:00
|
|
|
view.setOnClickListener(null);
|
2016-12-30 20:48:39 +00:00
|
|
|
|
2014-07-31 11:26:05 +00:00
|
|
|
mEditMessage = (EditMessage) view.findViewById(R.id.textinput);
|
|
|
|
mEditMessage.setOnClickListener(new OnClickListener() {
|
2014-07-18 17:36:29 +00:00
|
|
|
|
2014-07-15 18:41:32 +00:00
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
2015-02-18 12:11:41 +00:00
|
|
|
if (activity != null) {
|
|
|
|
activity.hideConversationsOverview();
|
|
|
|
}
|
2014-07-15 18:41:32 +00:00
|
|
|
}
|
|
|
|
});
|
2017-08-22 14:51:42 +00:00
|
|
|
|
2017-11-05 20:34:40 +00:00
|
|
|
mEditMessage.addTextChangedListener(new StylingHelper.MessageEditorStyler(mEditMessage));
|
|
|
|
|
2014-07-31 11:26:05 +00:00
|
|
|
mEditMessage.setOnEditorActionListener(mEditorActionListener);
|
2017-08-22 14:51:42 +00:00
|
|
|
mEditMessage.setRichContentListener(new String[]{"image/*"}, mEditorContentListener);
|
2014-08-25 13:43:50 +00:00
|
|
|
|
2014-09-10 15:59:57 +00:00
|
|
|
mSendButton = (ImageButton) view.findViewById(R.id.textSendButton);
|
|
|
|
mSendButton.setOnClickListener(this.mSendButtonListener);
|
2014-03-13 02:52:41 +00:00
|
|
|
|
2014-07-09 19:45:03 +00:00
|
|
|
snackbar = (RelativeLayout) view.findViewById(R.id.snackbar);
|
|
|
|
snackbarMessage = (TextView) view.findViewById(R.id.snackbar_message);
|
|
|
|
snackbarAction = (TextView) view.findViewById(R.id.snackbar_action);
|
2014-03-13 02:52:41 +00:00
|
|
|
|
2014-02-27 23:22:56 +00:00
|
|
|
messagesView = (ListView) view.findViewById(R.id.messages_view);
|
2014-06-14 14:59:07 +00:00
|
|
|
messagesView.setOnScrollListener(mOnScrollListener);
|
2014-06-10 15:01:19 +00:00
|
|
|
messagesView.setTranscriptMode(ListView.TRANSCRIPT_MODE_NORMAL);
|
2014-11-18 13:43:15 +00:00
|
|
|
messageListAdapter = new MessageAdapter((ConversationActivity) getActivity(), this.messageList);
|
2018-01-27 20:34:32 +00:00
|
|
|
messageListAdapter.setOnContactPictureClicked(message -> {
|
|
|
|
final boolean received = message.getStatus() <= Message.STATUS_RECEIVED;
|
|
|
|
if (received) {
|
|
|
|
if (message.getConversation().getMode() == Conversation.MODE_MULTI) {
|
|
|
|
Jid user = message.getCounterpart();
|
|
|
|
if (user != null && !user.isBareJid()) {
|
|
|
|
if (!message.getConversation().getMucOptions().isUserInRoom(user)) {
|
|
|
|
Toast.makeText(activity, activity.getString(R.string.user_has_left_conference, user.getResourcepart()), Toast.LENGTH_SHORT).show();
|
2016-04-09 08:59:54 +00:00
|
|
|
}
|
2018-01-27 20:34:32 +00:00
|
|
|
highlightInConference(user.getResourcepart());
|
2014-08-10 13:27:44 +00:00
|
|
|
}
|
2018-01-27 20:34:32 +00:00
|
|
|
return;
|
2014-12-21 20:43:58 +00:00
|
|
|
} else {
|
2018-01-27 20:34:32 +00:00
|
|
|
if (!message.getContact().isSelf()) {
|
2016-06-16 10:12:24 +00:00
|
|
|
String fingerprint;
|
|
|
|
if (message.getEncryption() == Message.ENCRYPTION_PGP
|
|
|
|
|| message.getEncryption() == Message.ENCRYPTION_DECRYPTED) {
|
|
|
|
fingerprint = "pgp";
|
|
|
|
} else {
|
|
|
|
fingerprint = message.getFingerprint();
|
|
|
|
}
|
2018-01-27 20:34:32 +00:00
|
|
|
activity.switchToContactDetails(message.getContact(), fingerprint);
|
|
|
|
return;
|
2016-04-22 19:25:06 +00:00
|
|
|
}
|
2014-12-21 20:43:58 +00:00
|
|
|
}
|
|
|
|
}
|
2018-01-27 20:34:32 +00:00
|
|
|
Account account = message.getConversation().getAccount();
|
|
|
|
Intent intent;
|
|
|
|
if (activity.manuallyChangePresence() && !received) {
|
|
|
|
intent = new Intent(activity, SetPresenceActivity.class);
|
|
|
|
intent.putExtra(SetPresenceActivity.EXTRA_ACCOUNT, account.getJid().toBareJid().toString());
|
|
|
|
} else {
|
|
|
|
intent = new Intent(activity, EditAccountActivity.class);
|
|
|
|
intent.putExtra("jid", account.getJid().toBareJid().toString());
|
|
|
|
String fingerprint;
|
|
|
|
if (message.getEncryption() == Message.ENCRYPTION_PGP
|
|
|
|
|| message.getEncryption() == Message.ENCRYPTION_DECRYPTED) {
|
|
|
|
fingerprint = "pgp";
|
|
|
|
} else if (message.getEncryption() == Message.ENCRYPTION_OTR) {
|
|
|
|
fingerprint = "otr";
|
|
|
|
} else {
|
|
|
|
fingerprint = message.getFingerprint();
|
|
|
|
}
|
|
|
|
intent.putExtra("fingerprint", fingerprint);
|
|
|
|
}
|
|
|
|
startActivity(intent);
|
2014-12-21 20:43:58 +00:00
|
|
|
});
|
2018-01-18 16:35:42 +00:00
|
|
|
messageListAdapter.setOnContactPictureLongClicked(message -> {
|
|
|
|
if (message.getStatus() <= Message.STATUS_RECEIVED) {
|
|
|
|
if (message.getConversation().getMode() == Conversation.MODE_MULTI) {
|
|
|
|
final MucOptions mucOptions = conversation.getMucOptions();
|
|
|
|
if (!mucOptions.allowPm()) {
|
|
|
|
Toast.makeText(activity, R.string.private_messages_are_disabled, Toast.LENGTH_SHORT).show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Jid user = message.getCounterpart();
|
|
|
|
if (user != null && !user.isBareJid()) {
|
|
|
|
if (mucOptions.isUserInRoom(user)) {
|
|
|
|
privateMessageWith(user);
|
2015-05-02 09:38:56 +00:00
|
|
|
} else {
|
2018-01-18 16:35:42 +00:00
|
|
|
Toast.makeText(activity, activity.getString(R.string.user_has_left_conference, user.getResourcepart()), Toast.LENGTH_SHORT).show();
|
2014-08-25 13:43:50 +00:00
|
|
|
}
|
2014-08-10 13:27:44 +00:00
|
|
|
}
|
2018-01-18 16:35:42 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
activity.showQrCode();
|
2016-11-25 14:06:43 +00:00
|
|
|
}
|
|
|
|
});
|
2018-01-27 20:34:32 +00:00
|
|
|
messageListAdapter.setOnQuoteListener(this::quoteText);
|
2014-02-02 15:33:34 +00:00
|
|
|
messagesView.setAdapter(messageListAdapter);
|
2014-01-26 02:27:55 +00:00
|
|
|
|
2014-10-23 19:27:41 +00:00
|
|
|
registerForContextMenu(messagesView);
|
|
|
|
|
2014-01-26 02:27:55 +00:00
|
|
|
return view;
|
|
|
|
}
|
2014-08-25 13:43:50 +00:00
|
|
|
|
2017-11-07 14:58:27 +00:00
|
|
|
private void quoteText(String text) {
|
|
|
|
if (mEditMessage.isEnabled()) {
|
|
|
|
text = text.replaceAll("(\n *){2,}", "\n").replaceAll("(^|\n)", "$1> ").replaceAll("\n$", "");
|
|
|
|
Editable editable = mEditMessage.getEditableText();
|
|
|
|
int position = mEditMessage.getSelectionEnd();
|
|
|
|
if (position == -1) position = editable.length();
|
|
|
|
if (position > 0 && editable.charAt(position - 1) != '\n') {
|
|
|
|
editable.insert(position++, "\n");
|
|
|
|
}
|
|
|
|
editable.insert(position, text);
|
|
|
|
position += text.length();
|
|
|
|
editable.insert(position++, "\n");
|
|
|
|
if (position < editable.length() && editable.charAt(position) != '\n') {
|
|
|
|
editable.insert(position, "\n");
|
|
|
|
}
|
|
|
|
mEditMessage.setSelection(position);
|
|
|
|
mEditMessage.requestFocus();
|
|
|
|
InputMethodManager inputMethodManager = (InputMethodManager) getActivity()
|
|
|
|
.getSystemService(Context.INPUT_METHOD_SERVICE);
|
|
|
|
if (inputMethodManager != null) {
|
|
|
|
inputMethodManager.showSoftInput(mEditMessage, InputMethodManager.SHOW_IMPLICIT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void quoteMessage(Message message) {
|
2017-11-07 21:22:28 +00:00
|
|
|
quoteText(MessageUtils.prepareQuote(message));
|
2017-11-07 14:58:27 +00:00
|
|
|
}
|
|
|
|
|
2014-10-23 19:27:41 +00:00
|
|
|
@Override
|
2016-02-15 22:15:04 +00:00
|
|
|
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
|
2014-11-18 13:43:15 +00:00
|
|
|
synchronized (this.messageList) {
|
|
|
|
super.onCreateContextMenu(menu, v, menuInfo);
|
|
|
|
AdapterView.AdapterContextMenuInfo acmi = (AdapterContextMenuInfo) menuInfo;
|
|
|
|
this.selectedMessage = this.messageList.get(acmi.position);
|
|
|
|
populateContextMenu(menu);
|
|
|
|
}
|
2014-10-23 19:27:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void populateContextMenu(ContextMenu menu) {
|
2015-01-02 13:27:49 +00:00
|
|
|
final Message m = this.selectedMessage;
|
2016-03-04 10:24:40 +00:00
|
|
|
final Transferable t = m.getTransferable();
|
2016-02-17 15:51:36 +00:00
|
|
|
Message relevantForCorrection = m;
|
2017-11-22 16:57:28 +00:00
|
|
|
while (relevantForCorrection.mergeable(relevantForCorrection.next())) {
|
2016-02-17 15:51:36 +00:00
|
|
|
relevantForCorrection = relevantForCorrection.next();
|
|
|
|
}
|
2015-01-02 13:27:49 +00:00
|
|
|
if (m.getType() != Message.TYPE_STATUS) {
|
2016-03-23 18:23:22 +00:00
|
|
|
final boolean treatAsFile = m.getType() != Message.TYPE_TEXT
|
|
|
|
&& m.getType() != Message.TYPE_PRIVATE
|
|
|
|
&& t == null;
|
2017-11-07 14:58:27 +00:00
|
|
|
final boolean encrypted = m.getEncryption() == Message.ENCRYPTION_DECRYPTION_FAILED
|
|
|
|
|| m.getEncryption() == Message.ENCRYPTION_PGP;
|
2014-10-23 19:27:41 +00:00
|
|
|
activity.getMenuInflater().inflate(R.menu.message_context, menu);
|
|
|
|
menu.setHeaderTitle(R.string.message_options);
|
2017-11-07 14:58:27 +00:00
|
|
|
MenuItem copyMessage = menu.findItem(R.id.copy_message);
|
|
|
|
MenuItem quoteMessage = menu.findItem(R.id.quote_message);
|
2016-02-23 14:30:41 +00:00
|
|
|
MenuItem retryDecryption = menu.findItem(R.id.retry_decryption);
|
2016-02-15 22:15:04 +00:00
|
|
|
MenuItem correctMessage = menu.findItem(R.id.correct_message);
|
2015-01-12 15:42:20 +00:00
|
|
|
MenuItem shareWith = menu.findItem(R.id.share_with);
|
2014-10-23 19:27:41 +00:00
|
|
|
MenuItem sendAgain = menu.findItem(R.id.send_again);
|
|
|
|
MenuItem copyUrl = menu.findItem(R.id.copy_url);
|
2017-04-20 09:52:54 +00:00
|
|
|
MenuItem downloadFile = menu.findItem(R.id.download_file);
|
2014-11-15 11:37:09 +00:00
|
|
|
MenuItem cancelTransmission = menu.findItem(R.id.cancel_transmission);
|
2016-03-23 18:23:22 +00:00
|
|
|
MenuItem deleteFile = menu.findItem(R.id.delete_file);
|
2016-10-26 10:26:04 +00:00
|
|
|
MenuItem showErrorMessage = menu.findItem(R.id.show_error_message);
|
2017-11-07 14:58:27 +00:00
|
|
|
if (!treatAsFile && !encrypted && !m.isGeoUri() && !m.treatAsDownloadable()) {
|
|
|
|
copyMessage.setVisible(true);
|
2017-11-07 21:22:28 +00:00
|
|
|
quoteMessage.setVisible(MessageUtils.prepareQuote(m).length() > 0);
|
2017-05-02 08:42:50 +00:00
|
|
|
}
|
2016-02-23 14:30:41 +00:00
|
|
|
if (m.getEncryption() == Message.ENCRYPTION_DECRYPTION_FAILED) {
|
|
|
|
retryDecryption.setVisible(true);
|
|
|
|
}
|
2016-02-17 15:51:36 +00:00
|
|
|
if (relevantForCorrection.getType() == Message.TYPE_TEXT
|
2016-11-11 14:01:15 +00:00
|
|
|
&& relevantForCorrection.isLastCorrectableMessage()
|
2016-11-12 19:25:02 +00:00
|
|
|
&& (m.getConversation().getMucOptions().nonanonymous() || m.getConversation().getMode() == Conversation.MODE_SINGLE)) {
|
2016-02-15 22:15:04 +00:00
|
|
|
correctMessage.setVisible(true);
|
|
|
|
}
|
2017-04-30 19:03:44 +00:00
|
|
|
if (treatAsFile || (m.getType() == Message.TYPE_TEXT && !m.treatAsDownloadable())) {
|
2015-07-02 21:13:00 +00:00
|
|
|
shareWith.setVisible(true);
|
2015-03-11 14:48:43 +00:00
|
|
|
}
|
2015-07-02 21:13:00 +00:00
|
|
|
if (m.getStatus() == Message.STATUS_SEND_FAILED) {
|
|
|
|
sendAgain.setVisible(true);
|
2014-10-23 19:27:41 +00:00
|
|
|
}
|
2015-07-02 21:13:00 +00:00
|
|
|
if (m.hasFileOnRemoteHost()
|
2017-08-03 11:24:41 +00:00
|
|
|
|| m.isGeoUri()
|
2017-04-05 20:32:02 +00:00
|
|
|
|| m.treatAsDownloadable()
|
2016-03-04 10:24:40 +00:00
|
|
|
|| (t != null && t instanceof HttpDownloadConnection)) {
|
2015-07-02 21:13:00 +00:00
|
|
|
copyUrl.setVisible(true);
|
2015-05-02 09:38:56 +00:00
|
|
|
}
|
2017-04-20 09:52:54 +00:00
|
|
|
if ((m.isFileOrImage() && t instanceof TransferablePlaceholder && m.hasFileOnRemoteHost())) {
|
|
|
|
downloadFile.setVisible(true);
|
2017-11-22 16:57:28 +00:00
|
|
|
downloadFile.setTitle(activity.getString(R.string.download_x_file, UIHelper.getFileDescriptionString(activity, m)));
|
2017-04-20 09:52:54 +00:00
|
|
|
}
|
2016-09-20 18:02:25 +00:00
|
|
|
boolean waitingOfferedSending = m.getStatus() == Message.STATUS_WAITING
|
|
|
|
|| m.getStatus() == Message.STATUS_UNSEND
|
|
|
|
|| m.getStatus() == Message.STATUS_OFFERED;
|
|
|
|
if ((t != null && !(t instanceof TransferablePlaceholder)) || waitingOfferedSending && m.needsUploading()) {
|
2015-07-02 21:13:00 +00:00
|
|
|
cancelTransmission.setVisible(true);
|
2015-05-02 09:38:56 +00:00
|
|
|
}
|
2016-03-23 18:23:22 +00:00
|
|
|
if (treatAsFile) {
|
2016-09-16 10:29:12 +00:00
|
|
|
String path = m.getRelativeFilePath();
|
|
|
|
if (path == null || !path.startsWith("/")) {
|
|
|
|
deleteFile.setVisible(true);
|
|
|
|
deleteFile.setTitle(activity.getString(R.string.delete_x_file, UIHelper.getFileDescriptionString(activity, m)));
|
|
|
|
}
|
2016-03-23 18:23:22 +00:00
|
|
|
}
|
2016-10-26 10:26:04 +00:00
|
|
|
if (m.getStatus() == Message.STATUS_SEND_FAILED && m.getErrorMessage() != null) {
|
|
|
|
showErrorMessage.setVisible(true);
|
|
|
|
}
|
2014-10-23 19:27:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onContextItemSelected(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
2015-01-12 15:42:20 +00:00
|
|
|
case R.id.share_with:
|
|
|
|
shareWith(selectedMessage);
|
2014-11-04 17:52:29 +00:00
|
|
|
return true;
|
2016-02-15 22:15:04 +00:00
|
|
|
case R.id.correct_message:
|
|
|
|
correctMessage(selectedMessage);
|
|
|
|
return true;
|
2017-11-07 14:58:27 +00:00
|
|
|
case R.id.copy_message:
|
|
|
|
copyMessage(selectedMessage);
|
|
|
|
return true;
|
|
|
|
case R.id.quote_message:
|
|
|
|
quoteMessage(selectedMessage);
|
|
|
|
return true;
|
2014-11-04 17:52:29 +00:00
|
|
|
case R.id.send_again:
|
|
|
|
resendMessage(selectedMessage);
|
|
|
|
return true;
|
|
|
|
case R.id.copy_url:
|
|
|
|
copyUrl(selectedMessage);
|
|
|
|
return true;
|
2017-04-20 09:52:54 +00:00
|
|
|
case R.id.download_file:
|
|
|
|
downloadFile(selectedMessage);
|
|
|
|
return true;
|
2014-11-15 11:37:09 +00:00
|
|
|
case R.id.cancel_transmission:
|
|
|
|
cancelTransmission(selectedMessage);
|
|
|
|
return true;
|
2016-02-23 14:30:41 +00:00
|
|
|
case R.id.retry_decryption:
|
|
|
|
retryDecryption(selectedMessage);
|
|
|
|
return true;
|
2016-03-23 18:23:22 +00:00
|
|
|
case R.id.delete_file:
|
|
|
|
deleteFile(selectedMessage);
|
|
|
|
return true;
|
2016-10-26 10:26:04 +00:00
|
|
|
case R.id.show_error_message:
|
|
|
|
showErrorMessage(selectedMessage);
|
|
|
|
return true;
|
2014-11-04 17:52:29 +00:00
|
|
|
default:
|
|
|
|
return super.onContextItemSelected(item);
|
2014-10-23 19:27:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-26 10:26:04 +00:00
|
|
|
private void showErrorMessage(final Message message) {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(activity);
|
|
|
|
builder.setTitle(R.string.error_message);
|
|
|
|
builder.setMessage(message.getErrorMessage());
|
2017-11-22 16:57:28 +00:00
|
|
|
builder.setPositiveButton(R.string.confirm, null);
|
2016-10-26 10:26:04 +00:00
|
|
|
builder.create().show();
|
|
|
|
}
|
|
|
|
|
2015-01-12 15:42:20 +00:00
|
|
|
private void shareWith(Message message) {
|
2014-10-23 19:27:41 +00:00
|
|
|
Intent shareIntent = new Intent();
|
|
|
|
shareIntent.setAction(Intent.ACTION_SEND);
|
2017-08-03 11:24:41 +00:00
|
|
|
if (message.isGeoUri()) {
|
2015-03-11 14:48:43 +00:00
|
|
|
shareIntent.putExtra(Intent.EXTRA_TEXT, message.getBody());
|
|
|
|
shareIntent.setType("text/plain");
|
2017-04-30 19:03:44 +00:00
|
|
|
} else if (!message.isFileOrImage()) {
|
|
|
|
shareIntent.putExtra(Intent.EXTRA_TEXT, message.getMergedBody().toString());
|
|
|
|
shareIntent.setType("text/plain");
|
2015-03-11 14:48:43 +00:00
|
|
|
} else {
|
2017-01-09 16:00:08 +00:00
|
|
|
final DownloadableFile file = activity.xmppConnectionService.getFileBackend().getFile(message);
|
|
|
|
try {
|
|
|
|
shareIntent.putExtra(Intent.EXTRA_STREAM, FileBackend.getUriForFile(activity, file));
|
|
|
|
} catch (SecurityException e) {
|
|
|
|
Toast.makeText(activity, activity.getString(R.string.no_permission_to_access_x, file.getAbsolutePath()), Toast.LENGTH_SHORT).show();
|
|
|
|
return;
|
|
|
|
}
|
2018-01-23 21:02:28 +00:00
|
|
|
shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
|
2015-07-01 14:01:18 +00:00
|
|
|
String mime = message.getMimeType();
|
2015-03-11 14:48:43 +00:00
|
|
|
if (mime == null) {
|
2015-10-20 15:41:07 +00:00
|
|
|
mime = "*/*";
|
2015-03-11 14:48:43 +00:00
|
|
|
}
|
|
|
|
shareIntent.setType(mime);
|
2015-01-12 15:42:20 +00:00
|
|
|
}
|
2015-07-12 18:17:12 +00:00
|
|
|
try {
|
|
|
|
activity.startActivity(Intent.createChooser(shareIntent, getText(R.string.share_with)));
|
|
|
|
} catch (ActivityNotFoundException e) {
|
|
|
|
//This should happen only on faulty androids because normally chooser is always available
|
2017-11-22 16:57:28 +00:00
|
|
|
Toast.makeText(activity, R.string.no_application_found_to_open_file, Toast.LENGTH_SHORT).show();
|
2015-07-12 18:17:12 +00:00
|
|
|
}
|
2014-10-23 19:27:41 +00:00
|
|
|
}
|
|
|
|
|
2017-11-22 16:57:28 +00:00
|
|
|
private void copyMessage(Message message) {
|
2017-11-07 14:58:27 +00:00
|
|
|
if (activity.copyTextToClipboard(message.getMergedBody().toString(), R.string.message)) {
|
|
|
|
Toast.makeText(activity, R.string.message_copied_to_clipboard, Toast.LENGTH_SHORT).show();
|
2016-09-16 22:18:34 +00:00
|
|
|
}
|
2017-11-22 16:57:28 +00:00
|
|
|
}
|
2016-09-16 22:18:34 +00:00
|
|
|
|
2016-03-23 18:23:22 +00:00
|
|
|
private void deleteFile(Message message) {
|
|
|
|
if (activity.xmppConnectionService.getFileBackend().deleteFile(message)) {
|
|
|
|
message.setTransferable(new TransferablePlaceholder(Transferable.STATUS_DELETED));
|
|
|
|
activity.updateConversationList();
|
|
|
|
updateMessages();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-22 09:14:56 +00:00
|
|
|
private void resendMessage(final Message message) {
|
|
|
|
if (message.isFileOrImage()) {
|
2014-11-15 14:16:40 +00:00
|
|
|
DownloadableFile file = activity.xmppConnectionService.getFileBackend().getFile(message);
|
2017-09-22 09:14:56 +00:00
|
|
|
if (file.exists()) {
|
|
|
|
final Conversation conversation = message.getConversation();
|
|
|
|
final XmppConnection xmppConnection = conversation.getAccount().getXmppConnection();
|
|
|
|
if (!message.hasFileOnRemoteHost()
|
|
|
|
&& xmppConnection != null
|
|
|
|
&& !xmppConnection.getFeatures().httpUpload(message.getFileParams().size)) {
|
|
|
|
activity.selectPresence(conversation, new OnPresenceSelected() {
|
|
|
|
@Override
|
|
|
|
public void onPresenceSelected() {
|
|
|
|
message.setCounterpart(conversation.getNextCounterpart());
|
|
|
|
activity.xmppConnectionService.resendFailedMessages(message);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
2015-05-02 09:38:56 +00:00
|
|
|
Toast.makeText(activity, R.string.file_deleted, Toast.LENGTH_SHORT).show();
|
2015-07-10 13:11:03 +00:00
|
|
|
message.setTransferable(new TransferablePlaceholder(Transferable.STATUS_DELETED));
|
2016-03-23 18:23:22 +00:00
|
|
|
activity.updateConversationList();
|
|
|
|
updateMessages();
|
2014-11-15 14:16:40 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2014-10-23 19:27:41 +00:00
|
|
|
activity.xmppConnectionService.resendFailedMessages(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void copyUrl(Message message) {
|
2015-03-11 14:48:43 +00:00
|
|
|
final String url;
|
|
|
|
final int resId;
|
2017-08-03 11:24:41 +00:00
|
|
|
if (message.isGeoUri()) {
|
2015-03-11 14:48:43 +00:00
|
|
|
resId = R.string.location;
|
|
|
|
url = message.getBody();
|
2015-07-02 21:13:00 +00:00
|
|
|
} else if (message.hasFileOnRemoteHost()) {
|
|
|
|
resId = R.string.file_url;
|
2015-06-30 15:15:02 +00:00
|
|
|
url = message.getFileParams().url.toString();
|
2015-07-02 21:13:00 +00:00
|
|
|
} else {
|
|
|
|
url = message.getBody().trim();
|
|
|
|
resId = R.string.file_url;
|
2015-03-11 14:48:43 +00:00
|
|
|
}
|
|
|
|
if (activity.copyTextToClipboard(url, resId)) {
|
2014-10-23 19:27:41 +00:00
|
|
|
Toast.makeText(activity, R.string.url_copied_to_clipboard,
|
|
|
|
Toast.LENGTH_SHORT).show();
|
2015-05-02 09:38:56 +00:00
|
|
|
}
|
2014-10-23 19:27:41 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 09:52:54 +00:00
|
|
|
private void downloadFile(Message message) {
|
2017-11-22 16:57:28 +00:00
|
|
|
activity.xmppConnectionService.getHttpConnectionManager().createNewDownloadConnection(message, true);
|
2017-04-20 09:52:54 +00:00
|
|
|
}
|
|
|
|
|
2014-11-15 11:37:09 +00:00
|
|
|
private void cancelTransmission(Message message) {
|
2015-07-10 13:11:03 +00:00
|
|
|
Transferable transferable = message.getTransferable();
|
|
|
|
if (transferable != null) {
|
|
|
|
transferable.cancel();
|
2017-06-19 11:23:20 +00:00
|
|
|
} else if (message.getStatus() != Message.STATUS_RECEIVED) {
|
2017-11-22 16:57:28 +00:00
|
|
|
activity.xmppConnectionService.markMessage(message, Message.STATUS_SEND_FAILED);
|
2014-11-15 11:37:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-23 14:30:41 +00:00
|
|
|
private void retryDecryption(Message message) {
|
|
|
|
message.setEncryption(Message.ENCRYPTION_PGP);
|
2016-03-23 18:23:22 +00:00
|
|
|
activity.updateConversationList();
|
|
|
|
updateMessages();
|
2016-06-15 10:44:29 +00:00
|
|
|
conversation.getAccount().getPgpDecryptionService().decrypt(message, false);
|
2016-02-23 14:30:41 +00:00
|
|
|
}
|
|
|
|
|
2014-11-06 19:33:13 +00:00
|
|
|
protected void privateMessageWith(final Jid counterpart) {
|
2017-03-07 13:36:05 +00:00
|
|
|
if (conversation.setOutgoingChatState(Config.DEFAULT_CHATSTATE)) {
|
|
|
|
activity.xmppConnectionService.sendChatState(conversation);
|
|
|
|
}
|
2017-03-19 23:09:23 +00:00
|
|
|
this.mEditMessage.setText("");
|
2014-11-09 15:21:13 +00:00
|
|
|
this.conversation.setNextCounterpart(counterpart);
|
2014-08-22 11:22:07 +00:00
|
|
|
updateChatMsgHint();
|
2015-05-03 07:30:30 +00:00
|
|
|
updateSendButton();
|
2017-07-03 21:58:34 +00:00
|
|
|
updateEditablity();
|
2014-08-10 13:27:44 +00:00
|
|
|
}
|
2014-01-24 22:58:51 +00:00
|
|
|
|
2016-02-15 22:15:04 +00:00
|
|
|
private void correctMessage(Message message) {
|
2017-11-22 16:57:28 +00:00
|
|
|
while (message.mergeable(message.next())) {
|
2016-02-15 22:15:04 +00:00
|
|
|
message = message.next();
|
|
|
|
}
|
|
|
|
this.conversation.setCorrectingMessage(message);
|
2017-03-04 07:04:31 +00:00
|
|
|
final Editable editable = mEditMessage.getText();
|
|
|
|
this.conversation.setDraftMessage(editable.toString());
|
2017-03-19 23:09:23 +00:00
|
|
|
this.mEditMessage.setText("");
|
|
|
|
this.mEditMessage.append(message.getBody());
|
2016-02-15 22:15:04 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-05-20 09:44:43 +00:00
|
|
|
protected void highlightInConference(String nick) {
|
2017-01-20 12:45:09 +00:00
|
|
|
final Editable editable = mEditMessage.getText();
|
|
|
|
String oldString = editable.toString().trim();
|
|
|
|
final int pos = mEditMessage.getSelectionStart();
|
|
|
|
if (oldString.isEmpty() || pos == 0) {
|
2017-04-06 16:06:07 +00:00
|
|
|
editable.insert(0, nick + ": ");
|
2014-05-20 09:44:43 +00:00
|
|
|
} else {
|
2017-01-20 12:45:09 +00:00
|
|
|
final char before = editable.charAt(pos - 1);
|
|
|
|
final char after = editable.length() > pos ? editable.charAt(pos) : '\0';
|
|
|
|
if (before == '\n') {
|
|
|
|
editable.insert(pos, nick + ": ");
|
|
|
|
} else {
|
2017-11-22 16:57:28 +00:00
|
|
|
if (pos > 2 && editable.subSequence(pos - 2, pos).toString().equals(": ")) {
|
|
|
|
if (NickValidityChecker.check(conversation, Arrays.asList(editable.subSequence(0, pos - 2).toString().split(", ")))) {
|
2017-04-07 17:47:33 +00:00
|
|
|
editable.insert(pos - 2, ", " + nick);
|
|
|
|
return;
|
2017-04-06 16:06:07 +00:00
|
|
|
}
|
2017-01-20 12:45:09 +00:00
|
|
|
}
|
2017-04-07 17:47:33 +00:00
|
|
|
editable.insert(pos, (Character.isWhitespace(before) ? "" : " ") + nick + (Character.isWhitespace(after) ? "" : " "));
|
|
|
|
if (Character.isWhitespace(after)) {
|
|
|
|
mEditMessage.setSelection(mEditMessage.getSelectionStart() + 1);
|
|
|
|
}
|
2015-05-02 09:38:56 +00:00
|
|
|
}
|
2014-05-20 09:44:43 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-01 17:29:57 +00:00
|
|
|
|
2014-05-07 10:59:15 +00:00
|
|
|
@Override
|
|
|
|
public void onStop() {
|
|
|
|
super.onStop();
|
2017-09-20 13:35:35 +00:00
|
|
|
if (activity == null || !activity.isChangingConfigurations()) {
|
|
|
|
messageListAdapter.stopAudioPlayer();
|
|
|
|
}
|
2014-05-19 13:39:50 +00:00
|
|
|
if (this.conversation != null) {
|
2015-02-21 10:06:52 +00:00
|
|
|
final String msg = mEditMessage.getText().toString();
|
2017-10-01 20:52:21 +00:00
|
|
|
if (this.conversation.setNextMessage(msg)) {
|
|
|
|
activity.xmppConnectionService.updateConversation(this.conversation);
|
|
|
|
}
|
2015-05-02 09:38:56 +00:00
|
|
|
updateChatState(this.conversation, msg);
|
2015-02-21 10:06:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateChatState(final Conversation conversation, final String msg) {
|
|
|
|
ChatState state = msg.length() == 0 ? Config.DEFAULT_CHATSTATE : ChatState.PAUSED;
|
|
|
|
Account.State status = conversation.getAccount().getStatus();
|
|
|
|
if (status == Account.State.ONLINE && conversation.setOutgoingChatState(state)) {
|
|
|
|
activity.xmppConnectionService.sendChatState(conversation);
|
2014-05-09 18:46:43 +00:00
|
|
|
}
|
2014-05-07 10:59:15 +00:00
|
|
|
}
|
|
|
|
|
2016-09-12 19:18:56 +00:00
|
|
|
public boolean reInit(Conversation conversation) {
|
2014-11-17 19:02:46 +00:00
|
|
|
if (conversation == null) {
|
2016-09-12 19:18:56 +00:00
|
|
|
return false;
|
2014-11-17 19:02:46 +00:00
|
|
|
}
|
2015-02-21 10:06:52 +00:00
|
|
|
this.activity = (ConversationActivity) getActivity();
|
2015-09-04 12:48:00 +00:00
|
|
|
setupIme();
|
2014-11-07 14:38:20 +00:00
|
|
|
if (this.conversation != null) {
|
2015-02-21 10:06:52 +00:00
|
|
|
final String msg = mEditMessage.getText().toString();
|
2017-10-01 20:52:21 +00:00
|
|
|
if (this.conversation.setNextMessage(msg)) {
|
|
|
|
activity.xmppConnectionService.updateConversation(conversation);
|
|
|
|
}
|
2015-02-21 10:06:52 +00:00
|
|
|
if (this.conversation != conversation) {
|
2015-05-02 09:38:56 +00:00
|
|
|
updateChatState(this.conversation, msg);
|
2017-09-20 13:35:35 +00:00
|
|
|
messageListAdapter.stopAudioPlayer();
|
2015-02-21 10:06:52 +00:00
|
|
|
}
|
2014-12-17 20:05:47 +00:00
|
|
|
this.conversation.trim();
|
2017-04-25 12:11:45 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (activity != null) {
|
2017-11-22 16:57:28 +00:00
|
|
|
this.mSendButton.setContentDescription(activity.getString(R.string.send_message_to_x, conversation.getName()));
|
2014-01-28 18:21:54 +00:00
|
|
|
}
|
2015-02-21 10:06:52 +00:00
|
|
|
|
2014-11-07 14:38:20 +00:00
|
|
|
this.conversation = conversation;
|
2015-02-21 10:06:52 +00:00
|
|
|
this.mEditMessage.setKeyboardListener(null);
|
2014-11-07 14:38:20 +00:00
|
|
|
this.mEditMessage.setText("");
|
|
|
|
this.mEditMessage.append(this.conversation.getNextMessage());
|
2015-02-21 10:06:52 +00:00
|
|
|
this.mEditMessage.setKeyboardListener(this);
|
2015-08-24 18:56:25 +00:00
|
|
|
messageListAdapter.updatePreferences();
|
2015-02-17 08:53:16 +00:00
|
|
|
this.messagesView.setAdapter(messageListAdapter);
|
2014-08-22 11:22:07 +00:00
|
|
|
updateMessages();
|
2017-01-25 17:35:22 +00:00
|
|
|
this.conversation.messagesLoaded.set(true);
|
2016-05-22 15:52:27 +00:00
|
|
|
synchronized (this.messageList) {
|
|
|
|
final Message first = conversation.getFirstUnreadMessage();
|
2016-05-31 14:44:59 +00:00
|
|
|
final int bottom = Math.max(0, this.messageList.size() - 1);
|
2016-05-22 15:52:27 +00:00
|
|
|
final int pos;
|
|
|
|
if (first == null) {
|
2016-05-31 14:44:59 +00:00
|
|
|
pos = bottom;
|
2016-05-22 15:52:27 +00:00
|
|
|
} else {
|
2016-05-31 14:44:59 +00:00
|
|
|
int i = getIndexOf(first.getUuid(), this.messageList);
|
|
|
|
pos = i < 0 ? bottom : i;
|
2016-05-22 15:52:27 +00:00
|
|
|
}
|
|
|
|
messagesView.setSelection(pos);
|
2016-09-12 19:18:56 +00:00
|
|
|
return pos == bottom;
|
2014-12-17 09:50:51 +00:00
|
|
|
}
|
2014-01-24 22:58:51 +00:00
|
|
|
}
|
2014-05-07 10:59:15 +00:00
|
|
|
|
2017-11-22 16:57:28 +00:00
|
|
|
private void showBlockSubmenu(View view) {
|
|
|
|
final Jid jid = conversation.getJid();
|
|
|
|
if (jid.isDomainJid()) {
|
|
|
|
BlockContactDialog.show(activity, conversation);
|
|
|
|
} else {
|
|
|
|
PopupMenu popupMenu = new PopupMenu(activity, view);
|
|
|
|
popupMenu.inflate(R.menu.block);
|
|
|
|
popupMenu.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
|
2015-02-07 11:17:03 +00:00
|
|
|
@Override
|
2017-11-22 16:57:28 +00:00
|
|
|
public boolean onMenuItemClick(MenuItem menuItem) {
|
|
|
|
Blockable blockable;
|
|
|
|
switch (menuItem.getItemId()) {
|
|
|
|
case R.id.block_domain:
|
|
|
|
blockable = conversation.getAccount().getRoster().getContact(jid.toDomainJid());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
blockable = conversation;
|
|
|
|
}
|
|
|
|
BlockContactDialog.show(activity, blockable);
|
|
|
|
return true;
|
2015-02-07 11:17:03 +00:00
|
|
|
}
|
|
|
|
});
|
2017-11-22 16:57:28 +00:00
|
|
|
popupMenu.show();
|
2015-02-07 11:17:03 +00:00
|
|
|
}
|
2017-09-11 07:53:14 +00:00
|
|
|
}
|
|
|
|
|
2015-02-07 11:17:03 +00:00
|
|
|
private void updateSnackBar(final Conversation conversation) {
|
|
|
|
final Account account = conversation.getAccount();
|
2017-03-20 11:16:25 +00:00
|
|
|
final XmppConnection connection = account.getXmppConnection();
|
2015-02-07 11:17:03 +00:00
|
|
|
final int mode = conversation.getMode();
|
2016-12-01 11:50:40 +00:00
|
|
|
final Contact contact = mode == Conversation.MODE_SINGLE ? conversation.getContact() : null;
|
2016-03-06 11:16:29 +00:00
|
|
|
if (account.getStatus() == Account.State.DISABLED) {
|
|
|
|
showSnackbar(R.string.this_account_is_disabled, R.string.enable, this.mEnableAccountListener);
|
|
|
|
} else if (conversation.isBlocked()) {
|
2015-05-02 09:38:56 +00:00
|
|
|
showSnackbar(R.string.contact_blocked, R.string.unblock, this.mUnblockClickListener);
|
2016-12-01 11:50:40 +00:00
|
|
|
} else if (contact != null && !contact.showInRoster() && contact.getOption(Contact.Options.PENDING_SUBSCRIPTION_REQUEST)) {
|
2017-09-11 07:53:14 +00:00
|
|
|
showSnackbar(R.string.contact_added_you, R.string.add_back, this.mAddBackClickListener, this.mLongPressBlockListener);
|
2016-12-01 11:50:40 +00:00
|
|
|
} else if (contact != null && contact.getOption(Contact.Options.PENDING_SUBSCRIPTION_REQUEST)) {
|
2017-09-11 07:53:14 +00:00
|
|
|
showSnackbar(R.string.contact_asks_for_presence_subscription, R.string.allow, this.mAllowPresenceSubscription, this.mLongPressBlockListener);
|
2015-02-07 11:17:03 +00:00
|
|
|
} else if (mode == Conversation.MODE_MULTI
|
2015-05-02 09:38:56 +00:00
|
|
|
&& !conversation.getMucOptions().online()
|
2015-02-07 11:17:03 +00:00
|
|
|
&& account.getStatus() == Account.State.ONLINE) {
|
|
|
|
switch (conversation.getMucOptions().getError()) {
|
2016-02-22 19:19:58 +00:00
|
|
|
case NICK_IN_USE:
|
2015-02-07 11:17:03 +00:00
|
|
|
showSnackbar(R.string.nick_in_use, R.string.edit, clickToMuc);
|
|
|
|
break;
|
2016-02-22 19:19:58 +00:00
|
|
|
case NO_RESPONSE:
|
|
|
|
showSnackbar(R.string.joining_conference, 0, null);
|
2015-02-07 11:17:03 +00:00
|
|
|
break;
|
2016-09-09 09:04:05 +00:00
|
|
|
case SERVER_NOT_FOUND:
|
2017-04-15 15:18:15 +00:00
|
|
|
if (conversation.receivedMessagesCount() > 0) {
|
2017-11-22 16:57:28 +00:00
|
|
|
showSnackbar(R.string.remote_server_not_found, R.string.try_again, joinMuc);
|
2017-04-15 15:18:15 +00:00
|
|
|
} else {
|
|
|
|
showSnackbar(R.string.remote_server_not_found, R.string.leave, leaveMuc);
|
|
|
|
}
|
2016-09-06 10:15:08 +00:00
|
|
|
break;
|
2016-02-22 19:19:58 +00:00
|
|
|
case PASSWORD_REQUIRED:
|
2015-02-07 11:17:03 +00:00
|
|
|
showSnackbar(R.string.conference_requires_password, R.string.enter_password, enterPassword);
|
|
|
|
break;
|
2016-02-22 19:19:58 +00:00
|
|
|
case BANNED:
|
2015-02-07 11:17:03 +00:00
|
|
|
showSnackbar(R.string.conference_banned, R.string.leave, leaveMuc);
|
|
|
|
break;
|
2016-02-22 19:19:58 +00:00
|
|
|
case MEMBERS_ONLY:
|
2015-02-07 11:17:03 +00:00
|
|
|
showSnackbar(R.string.conference_members_only, R.string.leave, leaveMuc);
|
|
|
|
break;
|
2016-02-22 19:19:58 +00:00
|
|
|
case KICKED:
|
2015-02-07 11:17:03 +00:00
|
|
|
showSnackbar(R.string.conference_kicked, R.string.join, joinMuc);
|
|
|
|
break;
|
2016-02-22 19:19:58 +00:00
|
|
|
case UNKNOWN:
|
2017-11-30 12:21:03 +00:00
|
|
|
showSnackbar(R.string.conference_unknown_error, R.string.try_again, joinMuc);
|
2016-02-22 19:19:58 +00:00
|
|
|
break;
|
2017-12-11 14:55:10 +00:00
|
|
|
case INVALID_NICK:
|
|
|
|
showSnackbar(R.string.invalid_muc_nick, R.string.edit, clickToMuc);
|
2016-02-22 19:19:58 +00:00
|
|
|
case SHUTDOWN:
|
2017-11-30 12:21:03 +00:00
|
|
|
showSnackbar(R.string.conference_shutdown, R.string.try_again, joinMuc);
|
2016-02-01 11:11:40 +00:00
|
|
|
break;
|
2015-02-07 11:17:03 +00:00
|
|
|
default:
|
2017-04-15 15:18:15 +00:00
|
|
|
hideSnackbar();
|
2015-02-07 11:17:03 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-06-13 11:32:14 +00:00
|
|
|
} else if (account.hasPendingPgpIntent(conversation)) {
|
2015-05-02 09:38:56 +00:00
|
|
|
showSnackbar(R.string.openpgp_messages_found, R.string.decrypt, clickToDecryptListener);
|
2015-02-07 11:17:03 +00:00
|
|
|
} else if (mode == Conversation.MODE_SINGLE
|
|
|
|
&& conversation.smpRequested()) {
|
2015-05-02 09:38:56 +00:00
|
|
|
showSnackbar(R.string.smp_requested, R.string.verify, this.mAnswerSmpClickListener);
|
2015-02-07 11:17:03 +00:00
|
|
|
} else if (mode == Conversation.MODE_SINGLE
|
2015-05-02 09:38:56 +00:00
|
|
|
&& conversation.hasValidOtrSession()
|
2015-02-07 11:17:03 +00:00
|
|
|
&& (conversation.getOtrSession().getSessionStatus() == SessionStatus.ENCRYPTED)
|
|
|
|
&& (!conversation.isOtrFingerprintVerified())) {
|
|
|
|
showSnackbar(R.string.unknown_otr_fingerprint, R.string.verify, clickToVerify);
|
2017-03-20 11:16:25 +00:00
|
|
|
} else if (connection != null
|
|
|
|
&& connection.getFeatures().blocking()
|
|
|
|
&& conversation.countMessages() != 0
|
2017-03-08 10:54:52 +00:00
|
|
|
&& !conversation.isBlocked()
|
|
|
|
&& conversation.isWithStranger()) {
|
2017-11-22 16:57:28 +00:00
|
|
|
showSnackbar(R.string.received_message_from_stranger, R.string.block, mBlockClickListener);
|
2015-02-07 11:17:03 +00:00
|
|
|
} else {
|
|
|
|
hideSnackbar();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-02 15:33:34 +00:00
|
|
|
public void updateMessages() {
|
2014-11-18 13:43:15 +00:00
|
|
|
synchronized (this.messageList) {
|
|
|
|
if (getView() == null) {
|
|
|
|
return;
|
2014-07-21 14:16:09 +00:00
|
|
|
}
|
2014-11-18 13:43:15 +00:00
|
|
|
final ConversationActivity activity = (ConversationActivity) getActivity();
|
|
|
|
if (this.conversation != null) {
|
2014-12-14 17:10:46 +00:00
|
|
|
conversation.populateWithMessages(ConversationFragment.this.messageList);
|
2015-10-15 22:21:47 +00:00
|
|
|
updateSnackBar(conversation);
|
2014-12-14 17:10:46 +00:00
|
|
|
updateStatusMessages();
|
2014-11-18 13:43:15 +00:00
|
|
|
this.messageListAdapter.notifyDataSetChanged();
|
|
|
|
updateChatMsgHint();
|
|
|
|
if (!activity.isConversationsOverviewVisable() || !activity.isConversationsOverviewHideable()) {
|
2015-01-02 11:04:33 +00:00
|
|
|
activity.sendReadMarkerIfNecessary(conversation);
|
2014-11-18 13:43:15 +00:00
|
|
|
}
|
2017-07-03 17:55:21 +00:00
|
|
|
updateSendButton();
|
|
|
|
updateEditablity();
|
2014-03-03 04:01:02 +00:00
|
|
|
}
|
2014-02-10 22:12:11 +00:00
|
|
|
}
|
2014-02-02 15:33:34 +00:00
|
|
|
}
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2016-06-15 11:53:34 +00:00
|
|
|
protected void messageSent() {
|
2017-03-03 10:56:08 +00:00
|
|
|
mSendingPgpMessage.set(false);
|
2017-03-19 23:09:23 +00:00
|
|
|
mEditMessage.setText("");
|
2017-03-04 07:04:31 +00:00
|
|
|
if (conversation.setCorrectingMessage(null)) {
|
2017-03-19 23:09:23 +00:00
|
|
|
mEditMessage.append(conversation.getDraftMessage());
|
2017-03-04 07:04:31 +00:00
|
|
|
conversation.setDraftMessage(null);
|
|
|
|
}
|
2017-10-01 20:52:21 +00:00
|
|
|
if (conversation.setNextMessage(mEditMessage.getText().toString())) {
|
|
|
|
activity.xmppConnectionService.updateConversation(conversation);
|
|
|
|
}
|
2014-08-10 13:27:44 +00:00
|
|
|
updateChatMsgHint();
|
2016-05-12 08:39:04 +00:00
|
|
|
new Handler().post(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
int size = messageList.size();
|
|
|
|
messagesView.setSelection(size - 1);
|
|
|
|
}
|
|
|
|
});
|
2014-06-10 15:01:19 +00:00
|
|
|
}
|
2014-06-14 14:59:07 +00:00
|
|
|
|
2015-09-07 13:46:22 +00:00
|
|
|
public void setFocusOnInputField() {
|
|
|
|
mEditMessage.requestFocus();
|
|
|
|
}
|
|
|
|
|
2017-03-03 10:56:08 +00:00
|
|
|
public void doneSendingPgpMessage() {
|
|
|
|
mSendingPgpMessage.set(false);
|
|
|
|
}
|
|
|
|
|
2016-01-17 21:28:38 +00:00
|
|
|
private int getSendButtonImageResource(SendButtonAction action, Presence.Status status) {
|
2015-05-02 09:38:56 +00:00
|
|
|
switch (action) {
|
|
|
|
case TEXT:
|
|
|
|
switch (status) {
|
2016-01-17 21:28:38 +00:00
|
|
|
case CHAT:
|
|
|
|
case ONLINE:
|
2015-05-02 09:38:56 +00:00
|
|
|
return R.drawable.ic_send_text_online;
|
2016-01-17 21:28:38 +00:00
|
|
|
case AWAY:
|
2015-05-02 09:38:56 +00:00
|
|
|
return R.drawable.ic_send_text_away;
|
2016-01-17 21:28:38 +00:00
|
|
|
case XA:
|
|
|
|
case DND:
|
2015-05-02 09:38:56 +00:00
|
|
|
return R.drawable.ic_send_text_dnd;
|
|
|
|
default:
|
Dark theme, theme switch, icons, style, strings
added some white icons,
changed hardcoded icons to theme attributes,
changed icon_edit_dark to icon_edit_body to reflect icons position,
grey message bubbles in dark theme,
misc
purged ic_action_chat as it wasn't used
preference use_white_background changed to use_green_background, default true
grey chat bubbles darker, text white
replaced all grey600 with black icons and 0.54 alpha attribute
highlightColor in dark grey chat bubble now darker than background
2016-05-12 18:00:18 +00:00
|
|
|
return activity.getThemeResource(R.attr.ic_send_text_offline, R.drawable.ic_send_text_offline);
|
2015-05-02 09:38:56 +00:00
|
|
|
}
|
2017-09-18 09:51:47 +00:00
|
|
|
case RECORD_VIDEO:
|
|
|
|
switch (status) {
|
|
|
|
case CHAT:
|
|
|
|
case ONLINE:
|
|
|
|
return R.drawable.ic_send_videocam_online;
|
|
|
|
case AWAY:
|
|
|
|
return R.drawable.ic_send_videocam_away;
|
|
|
|
case XA:
|
|
|
|
case DND:
|
|
|
|
return R.drawable.ic_send_videocam_dnd;
|
|
|
|
default:
|
|
|
|
return activity.getThemeResource(R.attr.ic_send_videocam_offline, R.drawable.ic_send_videocam_offline);
|
|
|
|
}
|
2015-05-02 09:38:56 +00:00
|
|
|
case TAKE_PHOTO:
|
|
|
|
switch (status) {
|
2016-01-17 21:28:38 +00:00
|
|
|
case CHAT:
|
|
|
|
case ONLINE:
|
2015-05-02 09:38:56 +00:00
|
|
|
return R.drawable.ic_send_photo_online;
|
2016-01-17 21:28:38 +00:00
|
|
|
case AWAY:
|
2015-05-02 09:38:56 +00:00
|
|
|
return R.drawable.ic_send_photo_away;
|
2016-01-17 21:28:38 +00:00
|
|
|
case XA:
|
|
|
|
case DND:
|
2015-05-02 09:38:56 +00:00
|
|
|
return R.drawable.ic_send_photo_dnd;
|
|
|
|
default:
|
Dark theme, theme switch, icons, style, strings
added some white icons,
changed hardcoded icons to theme attributes,
changed icon_edit_dark to icon_edit_body to reflect icons position,
grey message bubbles in dark theme,
misc
purged ic_action_chat as it wasn't used
preference use_white_background changed to use_green_background, default true
grey chat bubbles darker, text white
replaced all grey600 with black icons and 0.54 alpha attribute
highlightColor in dark grey chat bubble now darker than background
2016-05-12 18:00:18 +00:00
|
|
|
return activity.getThemeResource(R.attr.ic_send_photo_offline, R.drawable.ic_send_photo_offline);
|
2015-05-02 09:38:56 +00:00
|
|
|
}
|
|
|
|
case RECORD_VOICE:
|
|
|
|
switch (status) {
|
2016-01-17 21:28:38 +00:00
|
|
|
case CHAT:
|
|
|
|
case ONLINE:
|
2015-05-02 09:38:56 +00:00
|
|
|
return R.drawable.ic_send_voice_online;
|
2016-01-17 21:28:38 +00:00
|
|
|
case AWAY:
|
2015-05-02 09:38:56 +00:00
|
|
|
return R.drawable.ic_send_voice_away;
|
2016-01-17 21:28:38 +00:00
|
|
|
case XA:
|
|
|
|
case DND:
|
2015-05-02 09:38:56 +00:00
|
|
|
return R.drawable.ic_send_voice_dnd;
|
|
|
|
default:
|
Dark theme, theme switch, icons, style, strings
added some white icons,
changed hardcoded icons to theme attributes,
changed icon_edit_dark to icon_edit_body to reflect icons position,
grey message bubbles in dark theme,
misc
purged ic_action_chat as it wasn't used
preference use_white_background changed to use_green_background, default true
grey chat bubbles darker, text white
replaced all grey600 with black icons and 0.54 alpha attribute
highlightColor in dark grey chat bubble now darker than background
2016-05-12 18:00:18 +00:00
|
|
|
return activity.getThemeResource(R.attr.ic_send_voice_offline, R.drawable.ic_send_voice_offline);
|
2015-05-02 09:38:56 +00:00
|
|
|
}
|
|
|
|
case SEND_LOCATION:
|
|
|
|
switch (status) {
|
2016-01-17 21:28:38 +00:00
|
|
|
case CHAT:
|
|
|
|
case ONLINE:
|
2015-05-02 09:38:56 +00:00
|
|
|
return R.drawable.ic_send_location_online;
|
2016-01-17 21:28:38 +00:00
|
|
|
case AWAY:
|
2015-05-02 09:38:56 +00:00
|
|
|
return R.drawable.ic_send_location_away;
|
2016-01-17 21:28:38 +00:00
|
|
|
case XA:
|
|
|
|
case DND:
|
2015-05-02 09:38:56 +00:00
|
|
|
return R.drawable.ic_send_location_dnd;
|
|
|
|
default:
|
Dark theme, theme switch, icons, style, strings
added some white icons,
changed hardcoded icons to theme attributes,
changed icon_edit_dark to icon_edit_body to reflect icons position,
grey message bubbles in dark theme,
misc
purged ic_action_chat as it wasn't used
preference use_white_background changed to use_green_background, default true
grey chat bubbles darker, text white
replaced all grey600 with black icons and 0.54 alpha attribute
highlightColor in dark grey chat bubble now darker than background
2016-05-12 18:00:18 +00:00
|
|
|
return activity.getThemeResource(R.attr.ic_send_location_offline, R.drawable.ic_send_location_offline);
|
2015-05-02 09:38:56 +00:00
|
|
|
}
|
2015-05-03 07:30:30 +00:00
|
|
|
case CANCEL:
|
|
|
|
switch (status) {
|
2016-01-17 21:28:38 +00:00
|
|
|
case CHAT:
|
|
|
|
case ONLINE:
|
2015-05-03 07:30:30 +00:00
|
|
|
return R.drawable.ic_send_cancel_online;
|
2016-01-17 21:28:38 +00:00
|
|
|
case AWAY:
|
2015-05-03 07:30:30 +00:00
|
|
|
return R.drawable.ic_send_cancel_away;
|
2016-01-17 21:28:38 +00:00
|
|
|
case XA:
|
|
|
|
case DND:
|
2015-05-03 07:30:30 +00:00
|
|
|
return R.drawable.ic_send_cancel_dnd;
|
|
|
|
default:
|
Dark theme, theme switch, icons, style, strings
added some white icons,
changed hardcoded icons to theme attributes,
changed icon_edit_dark to icon_edit_body to reflect icons position,
grey message bubbles in dark theme,
misc
purged ic_action_chat as it wasn't used
preference use_white_background changed to use_green_background, default true
grey chat bubbles darker, text white
replaced all grey600 with black icons and 0.54 alpha attribute
highlightColor in dark grey chat bubble now darker than background
2016-05-12 18:00:18 +00:00
|
|
|
return activity.getThemeResource(R.attr.ic_send_cancel_offline, R.drawable.ic_send_cancel_offline);
|
2015-05-03 07:30:30 +00:00
|
|
|
}
|
2015-05-26 03:34:58 +00:00
|
|
|
case CHOOSE_PICTURE:
|
|
|
|
switch (status) {
|
2016-01-17 21:28:38 +00:00
|
|
|
case CHAT:
|
|
|
|
case ONLINE:
|
2015-05-26 03:34:58 +00:00
|
|
|
return R.drawable.ic_send_picture_online;
|
2016-01-17 21:28:38 +00:00
|
|
|
case AWAY:
|
2015-05-26 03:34:58 +00:00
|
|
|
return R.drawable.ic_send_picture_away;
|
2016-01-17 21:28:38 +00:00
|
|
|
case XA:
|
|
|
|
case DND:
|
2015-05-26 03:34:58 +00:00
|
|
|
return R.drawable.ic_send_picture_dnd;
|
|
|
|
default:
|
Dark theme, theme switch, icons, style, strings
added some white icons,
changed hardcoded icons to theme attributes,
changed icon_edit_dark to icon_edit_body to reflect icons position,
grey message bubbles in dark theme,
misc
purged ic_action_chat as it wasn't used
preference use_white_background changed to use_green_background, default true
grey chat bubbles darker, text white
replaced all grey600 with black icons and 0.54 alpha attribute
highlightColor in dark grey chat bubble now darker than background
2016-05-12 18:00:18 +00:00
|
|
|
return activity.getThemeResource(R.attr.ic_send_picture_offline, R.drawable.ic_send_picture_offline);
|
2015-05-26 03:34:58 +00:00
|
|
|
}
|
2015-05-02 09:38:56 +00:00
|
|
|
}
|
Dark theme, theme switch, icons, style, strings
added some white icons,
changed hardcoded icons to theme attributes,
changed icon_edit_dark to icon_edit_body to reflect icons position,
grey message bubbles in dark theme,
misc
purged ic_action_chat as it wasn't used
preference use_white_background changed to use_green_background, default true
grey chat bubbles darker, text white
replaced all grey600 with black icons and 0.54 alpha attribute
highlightColor in dark grey chat bubble now darker than background
2016-05-12 18:00:18 +00:00
|
|
|
return activity.getThemeResource(R.attr.ic_send_text_offline, R.drawable.ic_send_text_offline);
|
2015-05-02 09:38:56 +00:00
|
|
|
}
|
|
|
|
|
2017-07-03 17:55:21 +00:00
|
|
|
private void updateEditablity() {
|
2017-07-03 21:58:34 +00:00
|
|
|
boolean canWrite = this.conversation.getMode() == Conversation.MODE_SINGLE || this.conversation.getMucOptions().participating() || this.conversation.getNextCounterpart() != null;
|
2017-07-03 17:55:21 +00:00
|
|
|
this.mEditMessage.setFocusable(canWrite);
|
|
|
|
this.mEditMessage.setFocusableInTouchMode(canWrite);
|
|
|
|
this.mSendButton.setEnabled(canWrite);
|
|
|
|
this.mEditMessage.setCursorVisible(canWrite);
|
|
|
|
}
|
|
|
|
|
2015-05-02 09:38:56 +00:00
|
|
|
public void updateSendButton() {
|
|
|
|
final Conversation c = this.conversation;
|
|
|
|
final SendButtonAction action;
|
2016-01-17 21:28:38 +00:00
|
|
|
final Presence.Status status;
|
2016-02-15 22:15:04 +00:00
|
|
|
final String text = this.mEditMessage == null ? "" : this.mEditMessage.getText().toString();
|
|
|
|
final boolean empty = text.length() == 0;
|
2015-06-28 22:14:37 +00:00
|
|
|
final boolean conference = c.getMode() == Conversation.MODE_MULTI;
|
2016-02-15 22:15:04 +00:00
|
|
|
if (c.getCorrectingMessage() != null && (empty || text.equals(c.getCorrectingMessage().getBody()))) {
|
|
|
|
action = SendButtonAction.CANCEL;
|
|
|
|
} else if (conference && !c.getAccount().httpUploadAvailable()) {
|
2015-05-03 07:30:30 +00:00
|
|
|
if (empty && c.getNextCounterpart() != null) {
|
|
|
|
action = SendButtonAction.CANCEL;
|
|
|
|
} else {
|
|
|
|
action = SendButtonAction.TEXT;
|
|
|
|
}
|
2015-05-02 09:38:56 +00:00
|
|
|
} else {
|
2015-05-03 07:30:30 +00:00
|
|
|
if (empty) {
|
2015-06-28 22:14:37 +00:00
|
|
|
if (conference && c.getNextCounterpart() != null) {
|
|
|
|
action = SendButtonAction.CANCEL;
|
|
|
|
} else {
|
2017-06-30 19:22:35 +00:00
|
|
|
String setting = activity.getPreferences().getString("quick_action", activity.getResources().getString(R.string.quick_action));
|
2015-06-28 22:14:37 +00:00
|
|
|
if (!setting.equals("none") && UIHelper.receivedLocationQuestion(conversation.getLatestMessage())) {
|
2017-09-18 09:51:47 +00:00
|
|
|
action = SendButtonAction.SEND_LOCATION;
|
|
|
|
} else {
|
|
|
|
if (setting.equals("recent")) {
|
|
|
|
setting = activity.getPreferences().getString(ConversationActivity.RECENTLY_USED_QUICK_ACTION, SendButtonAction.TEXT.toString());
|
2017-11-22 16:57:28 +00:00
|
|
|
action = SendButtonAction.valueOfOrDefault(setting, SendButtonAction.TEXT);
|
2017-09-18 09:51:47 +00:00
|
|
|
} else {
|
2017-11-22 16:57:28 +00:00
|
|
|
action = SendButtonAction.valueOfOrDefault(setting, SendButtonAction.TEXT);
|
2017-09-18 09:51:47 +00:00
|
|
|
}
|
2015-06-28 22:14:37 +00:00
|
|
|
}
|
2014-09-10 15:59:57 +00:00
|
|
|
}
|
|
|
|
} else {
|
2015-05-02 09:38:56 +00:00
|
|
|
action = SendButtonAction.TEXT;
|
|
|
|
}
|
|
|
|
}
|
2017-05-19 11:39:44 +00:00
|
|
|
if (activity.useSendButtonToIndicateStatus() && c.getAccount().getStatus() == Account.State.ONLINE) {
|
|
|
|
if (activity.xmppConnectionService != null && activity.xmppConnectionService.getMessageArchiveService().isCatchingUp(c)) {
|
|
|
|
status = Presence.Status.OFFLINE;
|
|
|
|
} else if (c.getMode() == Conversation.MODE_SINGLE) {
|
2016-06-30 21:08:55 +00:00
|
|
|
status = c.getContact().getShownStatus();
|
2015-05-02 09:38:56 +00:00
|
|
|
} else {
|
2016-01-17 21:28:38 +00:00
|
|
|
status = c.getMucOptions().online() ? Presence.Status.ONLINE : Presence.Status.OFFLINE;
|
2014-09-10 15:59:57 +00:00
|
|
|
}
|
|
|
|
} else {
|
2016-01-17 21:28:38 +00:00
|
|
|
status = Presence.Status.OFFLINE;
|
2014-09-10 15:59:57 +00:00
|
|
|
}
|
2015-05-02 09:38:56 +00:00
|
|
|
this.mSendButton.setTag(action);
|
|
|
|
this.mSendButton.setImageResource(getSendButtonImageResource(action, status));
|
2014-09-10 15:59:57 +00:00
|
|
|
}
|
|
|
|
|
2017-07-04 09:01:20 +00:00
|
|
|
protected void updateDateSeparators() {
|
|
|
|
synchronized (this.messageList) {
|
2017-11-22 16:57:28 +00:00
|
|
|
for (int i = 0; i < this.messageList.size(); ++i) {
|
2017-07-04 09:01:20 +00:00
|
|
|
final Message current = this.messageList.get(i);
|
2017-11-22 16:57:28 +00:00
|
|
|
if (i == 0 || !UIHelper.sameDay(this.messageList.get(i - 1).getTimeSent(), current.getTimeSent())) {
|
|
|
|
this.messageList.add(i, Message.createDateSeparator(current));
|
2017-07-04 09:01:20 +00:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-04 19:40:17 +00:00
|
|
|
protected void updateStatusMessages() {
|
2017-07-04 09:01:20 +00:00
|
|
|
updateDateSeparators();
|
2014-11-18 13:43:15 +00:00
|
|
|
synchronized (this.messageList) {
|
2016-02-21 16:32:46 +00:00
|
|
|
if (showLoadMoreMessages(conversation)) {
|
2016-02-04 13:39:16 +00:00
|
|
|
this.messageList.add(0, Message.createLoadMoreMessage(conversation));
|
|
|
|
}
|
2014-11-18 13:43:15 +00:00
|
|
|
if (conversation.getMode() == Conversation.MODE_SINGLE) {
|
2015-02-21 10:06:52 +00:00
|
|
|
ChatState state = conversation.getIncomingChatState();
|
|
|
|
if (state == ChatState.COMPOSING) {
|
|
|
|
this.messageList.add(Message.createStatusMessage(conversation, getString(R.string.contact_is_typing, conversation.getName())));
|
|
|
|
} else if (state == ChatState.PAUSED) {
|
|
|
|
this.messageList.add(Message.createStatusMessage(conversation, getString(R.string.contact_has_stopped_typing, conversation.getName())));
|
|
|
|
} else {
|
|
|
|
for (int i = this.messageList.size() - 1; i >= 0; --i) {
|
|
|
|
if (this.messageList.get(i).getStatus() == Message.STATUS_RECEIVED) {
|
2014-11-18 13:43:15 +00:00
|
|
|
return;
|
2015-02-21 10:06:52 +00:00
|
|
|
} else {
|
|
|
|
if (this.messageList.get(i).getStatus() == Message.STATUS_SEND_DISPLAYED) {
|
|
|
|
this.messageList.add(i + 1,
|
|
|
|
Message.createStatusMessage(conversation, getString(R.string.contact_has_read_up_to_this_point, conversation.getName())));
|
|
|
|
return;
|
|
|
|
}
|
2014-11-18 13:43:15 +00:00
|
|
|
}
|
2014-06-04 19:40:17 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-08 09:32:42 +00:00
|
|
|
} else {
|
2017-11-19 00:53:04 +00:00
|
|
|
final MucOptions mucOptions = conversation.getMucOptions();
|
|
|
|
final List<MucOptions.User> allUsers = mucOptions.getUsers();
|
|
|
|
final Set<ReadByMarker> addedMarkers = new HashSet<>();
|
2017-03-08 09:32:42 +00:00
|
|
|
ChatState state = ChatState.COMPOSING;
|
2017-11-22 16:57:28 +00:00
|
|
|
List<MucOptions.User> users = conversation.getMucOptions().getUsersWithChatState(state, 5);
|
2017-03-08 09:32:42 +00:00
|
|
|
if (users.size() == 0) {
|
|
|
|
state = ChatState.PAUSED;
|
|
|
|
users = conversation.getMucOptions().getUsersWithChatState(state, 5);
|
2017-11-19 00:53:04 +00:00
|
|
|
}
|
2018-01-22 22:21:24 +00:00
|
|
|
if (mucOptions.isPrivateAndNonAnonymous()) {
|
2017-11-19 00:53:04 +00:00
|
|
|
for (int i = this.messageList.size() - 1; i >= 0; --i) {
|
|
|
|
final Set<ReadByMarker> markersForMessage = messageList.get(i).getReadByMarkers();
|
|
|
|
final List<MucOptions.User> shownMarkers = new ArrayList<>();
|
|
|
|
for (ReadByMarker marker : markersForMessage) {
|
|
|
|
if (!ReadByMarker.contains(marker, addedMarkers)) {
|
|
|
|
addedMarkers.add(marker); //may be put outside this condition. set should do dedup anyway
|
|
|
|
MucOptions.User user = mucOptions.findUser(marker);
|
|
|
|
if (user != null && !users.contains(user)) {
|
|
|
|
shownMarkers.add(user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
final ReadByMarker markerForSender = ReadByMarker.from(messageList.get(i));
|
|
|
|
final Message statusMessage;
|
2017-11-22 16:57:28 +00:00
|
|
|
final int size = shownMarkers.size();
|
|
|
|
if (size > 1) {
|
|
|
|
final String body;
|
|
|
|
if (size <= 4) {
|
|
|
|
body = getString(R.string.contacts_have_read_up_to_this_point, UIHelper.concatNames(shownMarkers));
|
|
|
|
} else {
|
|
|
|
body = getString(R.string.contacts_and_n_more_have_read_up_to_this_point, UIHelper.concatNames(shownMarkers, 3), size - 3);
|
|
|
|
}
|
|
|
|
statusMessage = Message.createStatusMessage(conversation, body);
|
2017-11-19 00:53:04 +00:00
|
|
|
statusMessage.setCounterparts(shownMarkers);
|
2017-11-22 16:57:28 +00:00
|
|
|
} else if (size == 1) {
|
2017-11-19 00:53:04 +00:00
|
|
|
statusMessage = Message.createStatusMessage(conversation, getString(R.string.contact_has_read_up_to_this_point, UIHelper.getDisplayName(shownMarkers.get(0))));
|
|
|
|
statusMessage.setCounterpart(shownMarkers.get(0).getFullJid());
|
|
|
|
statusMessage.setTrueCounterpart(shownMarkers.get(0).getRealJid());
|
|
|
|
} else {
|
|
|
|
statusMessage = null;
|
|
|
|
}
|
|
|
|
if (statusMessage != null) {
|
|
|
|
this.messageList.add(i + 1, statusMessage);
|
|
|
|
}
|
|
|
|
addedMarkers.add(markerForSender);
|
|
|
|
if (ReadByMarker.allUsersRepresented(allUsers, addedMarkers)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-03-08 09:32:42 +00:00
|
|
|
}
|
|
|
|
if (users.size() > 0) {
|
|
|
|
Message statusMessage;
|
|
|
|
if (users.size() == 1) {
|
|
|
|
MucOptions.User user = users.get(0);
|
|
|
|
int id = state == ChatState.COMPOSING ? R.string.contact_is_typing : R.string.contact_has_stopped_typing;
|
|
|
|
statusMessage = Message.createStatusMessage(conversation, getString(id, UIHelper.getDisplayName(user)));
|
|
|
|
statusMessage.setTrueCounterpart(user.getRealJid());
|
|
|
|
statusMessage.setCounterpart(user.getFullJid());
|
|
|
|
} else {
|
|
|
|
int id = state == ChatState.COMPOSING ? R.string.contacts_are_typing : R.string.contacts_have_stopped_typing;
|
2017-11-19 00:53:04 +00:00
|
|
|
statusMessage = Message.createStatusMessage(conversation, getString(id, UIHelper.concatNames(users)));
|
|
|
|
statusMessage.setCounterparts(users);
|
2017-03-08 09:32:42 +00:00
|
|
|
}
|
|
|
|
this.messageList.add(statusMessage);
|
|
|
|
}
|
|
|
|
|
2014-06-04 19:40:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-02-16 15:32:15 +00:00
|
|
|
|
2017-11-17 20:00:01 +00:00
|
|
|
public void stopScrolling() {
|
|
|
|
long now = SystemClock.uptimeMillis();
|
|
|
|
MotionEvent cancel = MotionEvent.obtain(now, now, MotionEvent.ACTION_CANCEL, 0, 0, 0);
|
|
|
|
messagesView.dispatchTouchEvent(cancel);
|
|
|
|
}
|
|
|
|
|
2016-02-21 16:32:46 +00:00
|
|
|
private boolean showLoadMoreMessages(final Conversation c) {
|
2016-02-22 19:28:58 +00:00
|
|
|
final boolean mam = hasMamSupport(c);
|
2016-02-21 16:32:46 +00:00
|
|
|
final MessageArchiveService service = activity.xmppConnectionService.getMessageArchiveService();
|
2017-11-22 16:57:28 +00:00
|
|
|
return mam && (c.getLastClearHistory().getTimestamp() != 0 || (c.countMessages() == 0 && c.messagesLoaded.get() && c.hasMessagesLeftOnServer() && !service.queryInProgress(c)));
|
2016-02-21 16:32:46 +00:00
|
|
|
}
|
|
|
|
|
2016-02-22 19:28:58 +00:00
|
|
|
private boolean hasMamSupport(final Conversation c) {
|
|
|
|
if (c.getMode() == Conversation.MODE_SINGLE) {
|
|
|
|
final XmppConnection connection = c.getAccount().getXmppConnection();
|
|
|
|
return connection != null && connection.getFeatures().mam();
|
|
|
|
} else {
|
|
|
|
return c.getMucOptions().mamSupport();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-21 16:32:46 +00:00
|
|
|
protected void showSnackbar(final int message, final int action, final OnClickListener clickListener) {
|
2017-11-22 16:57:28 +00:00
|
|
|
showSnackbar(message, action, clickListener, null);
|
2017-09-11 07:53:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected void showSnackbar(final int message, final int action, final OnClickListener clickListener, final View.OnLongClickListener longClickListener) {
|
2014-07-09 19:45:03 +00:00
|
|
|
snackbar.setVisibility(View.VISIBLE);
|
2014-08-12 21:23:25 +00:00
|
|
|
snackbar.setOnClickListener(null);
|
2014-07-09 19:45:03 +00:00
|
|
|
snackbarMessage.setText(message);
|
2014-08-12 21:23:25 +00:00
|
|
|
snackbarMessage.setOnClickListener(null);
|
2016-02-22 19:19:58 +00:00
|
|
|
snackbarAction.setVisibility(clickListener == null ? View.GONE : View.VISIBLE);
|
|
|
|
if (action != 0) {
|
|
|
|
snackbarAction.setText(action);
|
|
|
|
}
|
2014-07-09 19:45:03 +00:00
|
|
|
snackbarAction.setOnClickListener(clickListener);
|
2017-09-11 07:53:14 +00:00
|
|
|
snackbarAction.setOnLongClickListener(longClickListener);
|
2014-07-09 19:45:03 +00:00
|
|
|
}
|
2014-07-18 17:36:29 +00:00
|
|
|
|
2014-07-09 19:45:03 +00:00
|
|
|
protected void hideSnackbar() {
|
|
|
|
snackbar.setVisibility(View.GONE);
|
|
|
|
}
|
2014-02-16 18:30:22 +00:00
|
|
|
|
|
|
|
protected void sendPlainTextMessage(Message message) {
|
|
|
|
ConversationActivity activity = (ConversationActivity) getActivity();
|
2014-06-11 19:53:25 +00:00
|
|
|
activity.xmppConnectionService.sendMessage(message);
|
2014-06-10 15:01:19 +00:00
|
|
|
messageSent();
|
2014-02-16 18:30:22 +00:00
|
|
|
}
|
2014-02-19 00:35:23 +00:00
|
|
|
|
2014-02-27 23:22:56 +00:00
|
|
|
protected void sendPgpMessage(final Message message) {
|
2014-05-06 19:34:30 +00:00
|
|
|
final ConversationActivity activity = (ConversationActivity) getActivity();
|
2014-02-27 23:22:56 +00:00
|
|
|
final XmppConnectionService xmppService = activity.xmppConnectionService;
|
2014-05-01 20:33:49 +00:00
|
|
|
final Contact contact = message.getConversation().getContact();
|
2015-12-02 15:43:55 +00:00
|
|
|
if (!activity.hasPgp()) {
|
|
|
|
activity.showInstallPgpDialog();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (conversation.getAccount().getPgpSignature() == null) {
|
2017-12-05 18:16:53 +00:00
|
|
|
activity.announcePgp(conversation.getAccount(), conversation, null, activity.onOpenPGPKeyPublished);
|
2015-12-02 15:43:55 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-11-22 16:57:28 +00:00
|
|
|
if (!mSendingPgpMessage.compareAndSet(false, true)) {
|
|
|
|
Log.d(Config.LOGTAG, "sending pgp message already in progress");
|
2017-03-03 10:56:08 +00:00
|
|
|
}
|
2015-12-02 15:43:55 +00:00
|
|
|
if (conversation.getMode() == Conversation.MODE_SINGLE) {
|
|
|
|
if (contact.getPgpKeyId() != 0) {
|
|
|
|
xmppService.getPgpEngine().hasKey(contact,
|
|
|
|
new UiCallback<Contact>() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void userInputRequried(PendingIntent pi,
|
2017-11-22 16:57:28 +00:00
|
|
|
Contact contact) {
|
2015-12-02 15:43:55 +00:00
|
|
|
activity.runIntent(
|
|
|
|
pi,
|
|
|
|
ConversationActivity.REQUEST_ENCRYPT_MESSAGE);
|
|
|
|
}
|
2014-06-01 17:29:57 +00:00
|
|
|
|
2015-12-02 15:43:55 +00:00
|
|
|
@Override
|
|
|
|
public void success(Contact contact) {
|
|
|
|
activity.encryptTextMessage(message);
|
|
|
|
}
|
2014-06-01 17:29:57 +00:00
|
|
|
|
2015-12-02 15:43:55 +00:00
|
|
|
@Override
|
|
|
|
public void error(int error, Contact contact) {
|
2016-06-16 18:37:32 +00:00
|
|
|
activity.runOnUiThread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
Toast.makeText(activity,
|
|
|
|
R.string.unable_to_connect_to_keychain,
|
|
|
|
Toast.LENGTH_SHORT
|
|
|
|
).show();
|
|
|
|
}
|
|
|
|
});
|
2017-03-03 10:56:08 +00:00
|
|
|
mSendingPgpMessage.set(false);
|
2015-12-02 15:43:55 +00:00
|
|
|
}
|
|
|
|
});
|
2014-06-01 17:29:57 +00:00
|
|
|
|
2014-03-03 15:39:19 +00:00
|
|
|
} else {
|
2015-12-02 15:43:55 +00:00
|
|
|
showNoPGPKeyDialog(false,
|
|
|
|
new DialogInterface.OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog,
|
2017-11-22 16:57:28 +00:00
|
|
|
int which) {
|
2015-12-02 15:43:55 +00:00
|
|
|
conversation
|
|
|
|
.setNextEncryption(Message.ENCRYPTION_NONE);
|
2016-10-18 11:06:24 +00:00
|
|
|
xmppService.updateConversation(conversation);
|
2015-12-02 15:43:55 +00:00
|
|
|
message.setEncryption(Message.ENCRYPTION_NONE);
|
|
|
|
xmppService.sendMessage(message);
|
|
|
|
messageSent();
|
|
|
|
}
|
|
|
|
});
|
2014-03-03 15:39:19 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
} else {
|
2015-12-02 15:43:55 +00:00
|
|
|
if (conversation.getMucOptions().pgpKeysInUse()) {
|
|
|
|
if (!conversation.getMucOptions().everybodyHasKeys()) {
|
|
|
|
Toast warning = Toast
|
|
|
|
.makeText(getActivity(),
|
|
|
|
R.string.missing_public_keys,
|
|
|
|
Toast.LENGTH_LONG);
|
|
|
|
warning.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
|
|
|
|
warning.show();
|
|
|
|
}
|
|
|
|
activity.encryptTextMessage(message);
|
|
|
|
} else {
|
|
|
|
showNoPGPKeyDialog(true,
|
|
|
|
new DialogInterface.OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog,
|
2017-11-22 16:57:28 +00:00
|
|
|
int which) {
|
2015-12-02 15:43:55 +00:00
|
|
|
conversation
|
|
|
|
.setNextEncryption(Message.ENCRYPTION_NONE);
|
|
|
|
message.setEncryption(Message.ENCRYPTION_NONE);
|
2016-10-18 11:06:24 +00:00
|
|
|
xmppService.updateConversation(conversation);
|
2015-12-02 15:43:55 +00:00
|
|
|
xmppService.sendMessage(message);
|
|
|
|
messageSent();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2014-02-27 23:22:56 +00:00
|
|
|
}
|
|
|
|
}
|
2014-05-19 13:39:50 +00:00
|
|
|
|
2014-06-01 17:29:57 +00:00
|
|
|
public void showNoPGPKeyDialog(boolean plural,
|
2017-11-22 16:57:28 +00:00
|
|
|
DialogInterface.OnClickListener listener) {
|
2014-05-19 13:39:50 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
|
2014-05-08 12:23:09 +00:00
|
|
|
builder.setIconAttribute(android.R.attr.alertDialogIcon);
|
2014-06-01 09:24:35 +00:00
|
|
|
if (plural) {
|
|
|
|
builder.setTitle(getString(R.string.no_pgp_keys));
|
|
|
|
builder.setMessage(getText(R.string.contacts_have_no_pgp_keys));
|
|
|
|
} else {
|
|
|
|
builder.setTitle(getString(R.string.no_pgp_key));
|
|
|
|
builder.setMessage(getText(R.string.contact_has_no_pgp_key));
|
|
|
|
}
|
2014-05-08 12:23:09 +00:00
|
|
|
builder.setNegativeButton(getString(R.string.cancel), null);
|
2014-05-19 13:39:50 +00:00
|
|
|
builder.setPositiveButton(getString(R.string.send_unencrypted),
|
|
|
|
listener);
|
2014-05-08 12:23:09 +00:00
|
|
|
builder.create().show();
|
|
|
|
}
|
2014-03-13 02:52:41 +00:00
|
|
|
|
2015-06-25 15:01:42 +00:00
|
|
|
protected void sendAxolotlMessage(final Message message) {
|
|
|
|
final ConversationActivity activity = (ConversationActivity) getActivity();
|
|
|
|
final XmppConnectionService xmppService = activity.xmppConnectionService;
|
|
|
|
xmppService.sendMessage(message);
|
|
|
|
messageSent();
|
|
|
|
}
|
|
|
|
|
2014-02-16 18:30:22 +00:00
|
|
|
protected void sendOtrMessage(final Message message) {
|
2014-06-12 21:04:28 +00:00
|
|
|
final ConversationActivity activity = (ConversationActivity) getActivity();
|
2014-02-16 18:30:22 +00:00
|
|
|
final XmppConnectionService xmppService = activity.xmppConnectionService;
|
2014-11-10 00:24:35 +00:00
|
|
|
activity.selectPresence(message.getConversation(),
|
2014-11-10 21:03:23 +00:00
|
|
|
new OnPresenceSelected() {
|
2014-02-19 00:35:23 +00:00
|
|
|
|
2014-11-10 21:03:23 +00:00
|
|
|
@Override
|
|
|
|
public void onPresenceSelected() {
|
|
|
|
message.setCounterpart(conversation.getNextCounterpart());
|
|
|
|
xmppService.sendMessage(message);
|
|
|
|
messageSent();
|
|
|
|
}
|
|
|
|
});
|
2014-02-16 18:30:22 +00:00
|
|
|
}
|
2014-02-19 00:35:23 +00:00
|
|
|
|
2014-11-07 14:38:20 +00:00
|
|
|
public void appendText(String text) {
|
2015-04-19 17:11:32 +00:00
|
|
|
if (text == null) {
|
|
|
|
return;
|
|
|
|
}
|
2014-11-07 14:38:20 +00:00
|
|
|
String previous = this.mEditMessage.getText().toString();
|
|
|
|
if (previous.length() != 0 && !previous.endsWith(" ")) {
|
|
|
|
text = " " + text;
|
|
|
|
}
|
|
|
|
this.mEditMessage.append(text);
|
2014-03-13 20:37:27 +00:00
|
|
|
}
|
2014-05-08 15:31:53 +00:00
|
|
|
|
2015-02-21 10:06:52 +00:00
|
|
|
@Override
|
2015-03-06 21:22:50 +00:00
|
|
|
public boolean onEnterPressed() {
|
|
|
|
if (activity.enterIsSend()) {
|
|
|
|
sendMessage();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2015-02-21 10:06:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTypingStarted() {
|
|
|
|
Account.State status = conversation.getAccount().getStatus();
|
|
|
|
if (status == Account.State.ONLINE && conversation.setOutgoingChatState(ChatState.COMPOSING)) {
|
|
|
|
activity.xmppConnectionService.sendChatState(conversation);
|
|
|
|
}
|
2015-09-09 21:28:37 +00:00
|
|
|
activity.hideConversationsOverview();
|
2015-05-02 09:38:56 +00:00
|
|
|
updateSendButton();
|
2015-02-21 10:06:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTypingStopped() {
|
|
|
|
Account.State status = conversation.getAccount().getStatus();
|
|
|
|
if (status == Account.State.ONLINE && conversation.setOutgoingChatState(ChatState.PAUSED)) {
|
|
|
|
activity.xmppConnectionService.sendChatState(conversation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTextDeleted() {
|
|
|
|
Account.State status = conversation.getAccount().getStatus();
|
|
|
|
if (status == Account.State.ONLINE && conversation.setOutgoingChatState(Config.DEFAULT_CHATSTATE)) {
|
|
|
|
activity.xmppConnectionService.sendChatState(conversation);
|
|
|
|
}
|
2015-05-02 09:38:56 +00:00
|
|
|
updateSendButton();
|
2015-02-21 10:06:52 +00:00
|
|
|
}
|
|
|
|
|
2016-02-15 22:15:04 +00:00
|
|
|
@Override
|
|
|
|
public void onTextChanged() {
|
|
|
|
if (conversation != null && conversation.getCorrectingMessage() != null) {
|
|
|
|
updateSendButton();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-27 17:17:44 +00:00
|
|
|
@Override
|
|
|
|
public boolean onTabPressed(boolean repeated) {
|
|
|
|
if (conversation == null || conversation.getMode() == Conversation.MODE_SINGLE) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (repeated) {
|
|
|
|
completionIndex++;
|
|
|
|
} else {
|
|
|
|
lastCompletionLength = 0;
|
|
|
|
completionIndex = 0;
|
|
|
|
final String content = mEditMessage.getText().toString();
|
|
|
|
lastCompletionCursor = mEditMessage.getSelectionEnd();
|
2017-11-22 16:57:28 +00:00
|
|
|
int start = lastCompletionCursor > 0 ? content.lastIndexOf(" ", lastCompletionCursor - 1) + 1 : 0;
|
2015-09-27 17:17:44 +00:00
|
|
|
firstWord = start == 0;
|
2017-11-22 16:57:28 +00:00
|
|
|
incomplete = content.substring(start, lastCompletionCursor);
|
2015-09-27 17:17:44 +00:00
|
|
|
}
|
|
|
|
List<String> completions = new ArrayList<>();
|
2017-11-22 16:57:28 +00:00
|
|
|
for (MucOptions.User user : conversation.getMucOptions().getUsers()) {
|
2016-07-08 11:24:14 +00:00
|
|
|
String name = user.getName();
|
|
|
|
if (name != null && name.startsWith(incomplete)) {
|
2017-11-22 16:57:28 +00:00
|
|
|
completions.add(name + (firstWord ? ": " : " "));
|
2015-09-27 17:17:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Collections.sort(completions);
|
|
|
|
if (completions.size() > completionIndex) {
|
|
|
|
String completion = completions.get(completionIndex).substring(incomplete.length());
|
2017-11-22 16:57:28 +00:00
|
|
|
mEditMessage.getEditableText().delete(lastCompletionCursor, lastCompletionCursor + lastCompletionLength);
|
2015-09-27 17:17:44 +00:00
|
|
|
mEditMessage.getEditableText().insert(lastCompletionCursor, completion);
|
|
|
|
lastCompletionLength = completion.length();
|
|
|
|
} else {
|
|
|
|
completionIndex = -1;
|
2017-11-22 16:57:28 +00:00
|
|
|
mEditMessage.getEditableText().delete(lastCompletionCursor, lastCompletionCursor + lastCompletionLength);
|
2015-09-27 17:17:44 +00:00
|
|
|
lastCompletionLength = 0;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-07-19 16:36:28 +00:00
|
|
|
@Override
|
|
|
|
public void onActivityResult(int requestCode, int resultCode,
|
2017-11-22 16:57:28 +00:00
|
|
|
final Intent data) {
|
2015-07-19 16:36:28 +00:00
|
|
|
if (resultCode == Activity.RESULT_OK) {
|
2015-10-15 22:21:47 +00:00
|
|
|
if (requestCode == ConversationActivity.REQUEST_DECRYPT_PGP) {
|
2017-11-22 12:36:00 +00:00
|
|
|
activity.getSelectedConversation().getAccount().getPgpDecryptionService().continueDecryption(data);
|
2015-10-15 22:21:47 +00:00
|
|
|
} else if (requestCode == ConversationActivity.REQUEST_TRUST_KEYS_TEXT) {
|
2015-07-19 16:36:28 +00:00
|
|
|
final String body = mEditMessage.getText().toString();
|
2015-07-30 22:52:46 +00:00
|
|
|
Message message = new Message(conversation, body, conversation.getNextEncryption());
|
2015-07-19 16:36:28 +00:00
|
|
|
sendAxolotlMessage(message);
|
|
|
|
} else if (requestCode == ConversationActivity.REQUEST_TRUST_KEYS_MENU) {
|
|
|
|
int choice = data.getIntExtra("choice", ConversationActivity.ATTACHMENT_CHOICE_INVALID);
|
2015-07-30 22:52:46 +00:00
|
|
|
activity.selectPresenceToAttachFile(choice, conversation.getNextEncryption());
|
2015-07-19 16:36:28 +00:00
|
|
|
}
|
2017-07-23 08:53:42 +00:00
|
|
|
} else if (resultCode == Activity.RESULT_CANCELED) {
|
|
|
|
if (requestCode == ConversationActivity.REQUEST_DECRYPT_PGP) {
|
|
|
|
// discard the message to prevent decryption being blocked
|
|
|
|
conversation.getAccount().getPgpDecryptionService().giveUpCurrentDecryption();
|
|
|
|
}
|
2015-07-19 16:36:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-22 16:57:28 +00:00
|
|
|
enum SendButtonAction {
|
|
|
|
TEXT, TAKE_PHOTO, SEND_LOCATION, RECORD_VOICE, CANCEL, CHOOSE_PICTURE, RECORD_VIDEO;
|
|
|
|
|
|
|
|
public static SendButtonAction valueOfOrDefault(String setting, SendButtonAction text) {
|
|
|
|
try {
|
|
|
|
return valueOf(setting);
|
|
|
|
} catch (IllegalArgumentException e) {
|
|
|
|
return TEXT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|