2014-02-28 17:46:01 +00:00
|
|
|
package eu.siacs.conversations.ui;
|
2014-01-24 01:04:05 +00:00
|
|
|
|
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;
|
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;
|
|
|
|
import android.content.IntentSender.SendIntentException;
|
2014-01-24 01:04:05 +00:00
|
|
|
import android.os.Bundle;
|
2015-01-14 20:28:27 +00:00
|
|
|
import android.text.InputType;
|
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;
|
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;
|
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;
|
|
|
|
|
2015-01-12 15:42:20 +00:00
|
|
|
import java.net.URLConnection;
|
2014-11-04 17:52:29 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
2014-12-01 10:18:55 +00:00
|
|
|
import java.util.NoSuchElementException;
|
2014-11-04 17:52:29 +00:00
|
|
|
import java.util.concurrent.ConcurrentLinkedQueue;
|
|
|
|
|
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.crypto.PgpEngine;
|
|
|
|
import eu.siacs.conversations.entities.Account;
|
|
|
|
import eu.siacs.conversations.entities.Contact;
|
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
2014-11-15 11:37:09 +00:00
|
|
|
import eu.siacs.conversations.entities.Downloadable;
|
2014-11-15 14:16:40 +00:00
|
|
|
import eu.siacs.conversations.entities.DownloadableFile;
|
2014-11-15 13:40:43 +00:00
|
|
|
import eu.siacs.conversations.entities.DownloadablePlaceholder;
|
2014-11-04 17:52:29 +00:00
|
|
|
import eu.siacs.conversations.entities.Message;
|
|
|
|
import eu.siacs.conversations.entities.MucOptions;
|
|
|
|
import eu.siacs.conversations.entities.Presences;
|
|
|
|
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;
|
2015-03-11 14:48:43 +00:00
|
|
|
import eu.siacs.conversations.utils.GeoHelper;
|
2015-05-13 14:23:20 +00:00
|
|
|
import eu.siacs.conversations.utils.UIHelper;
|
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
|
|
|
|
2014-01-27 19:40:42 +00:00
|
|
|
protected Conversation conversation;
|
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
|
|
|
|
public void onValueEdited(String value) {
|
2014-09-08 18:29:57 +00:00
|
|
|
activity.xmppConnectionService.providePasswordForMuc(
|
|
|
|
conversation, value);
|
2014-09-03 17:35:45 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
2014-11-07 14:38:20 +00:00
|
|
|
protected ListView messagesView;
|
2014-11-18 02:10:59 +00:00
|
|
|
final protected List<Message> messageList = new ArrayList<>();
|
2014-11-07 14:38:20 +00:00
|
|
|
protected MessageAdapter messageListAdapter;
|
|
|
|
private EditMessage mEditMessage;
|
|
|
|
private ImageButton mSendButton;
|
|
|
|
private RelativeLayout snackbar;
|
|
|
|
private TextView snackbarMessage;
|
|
|
|
private TextView snackbarAction;
|
2014-12-17 09:50:51 +00:00
|
|
|
private boolean messagesLoaded = true;
|
2014-12-17 08:32:51 +00:00
|
|
|
private Toast messageLoaderToast;
|
2014-12-15 22:06:29 +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
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-05-11 05:57:52 +00:00
|
|
|
private int getIndexOf(String uuid, List<Message> messages) {
|
|
|
|
if (uuid == null) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
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 0;
|
|
|
|
}
|
|
|
|
|
2014-06-14 14:59:07 +00:00
|
|
|
@Override
|
|
|
|
public void onScroll(AbsListView view, int firstVisibleItem,
|
2015-05-02 09:38:56 +00:00
|
|
|
int visibleItemCount, int totalItemCount) {
|
2014-11-18 13:43:15 +00:00
|
|
|
synchronized (ConversationFragment.this.messageList) {
|
2014-12-17 09:50:51 +00:00
|
|
|
if (firstVisibleItem < 5 && messagesLoaded && messageList.size() > 0) {
|
2014-11-18 13:43:15 +00:00
|
|
|
long timestamp = ConversationFragment.this.messageList.get(0).getTimeSent();
|
|
|
|
messagesLoaded = false;
|
2014-12-15 22:06:29 +00:00
|
|
|
activity.xmppConnectionService.loadMoreMessages(conversation, timestamp, new XmppConnectionService.OnMoreMessagesLoaded() {
|
|
|
|
@Override
|
2015-05-11 05:57:52 +00:00
|
|
|
public void onMoreMessagesLoaded(final int c, Conversation conversation) {
|
2014-12-15 22:06:29 +00:00
|
|
|
if (ConversationFragment.this.conversation != conversation) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
activity.runOnUiThread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2014-12-17 09:50:51 +00:00
|
|
|
final int oldPosition = messagesView.getFirstVisiblePosition();
|
2015-05-11 05:57:52 +00:00
|
|
|
Message message = messageList.get(oldPosition);
|
|
|
|
String uuid = message != null ? message.getUuid() : null;
|
2014-12-17 09:50:51 +00:00
|
|
|
View v = messagesView.getChildAt(0);
|
|
|
|
final int pxOffset = (v == null) ? 0 : v.getTop();
|
2014-12-15 22:06:29 +00:00
|
|
|
ConversationFragment.this.conversation.populateWithMessages(ConversationFragment.this.messageList);
|
|
|
|
updateStatusMessages();
|
|
|
|
messageListAdapter.notifyDataSetChanged();
|
2015-05-11 05:57:52 +00:00
|
|
|
int pos = getIndexOf(uuid,messageList);
|
|
|
|
messagesView.setSelectionFromTop(pos, pxOffset);
|
|
|
|
messagesLoaded = true;
|
|
|
|
if (messageLoaderToast != null) {
|
|
|
|
messageLoaderToast.cancel();
|
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;
|
|
|
|
}
|
2015-05-02 09:38:56 +00:00
|
|
|
messageLoaderToast = Toast.makeText(activity, 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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2014-11-07 14:38:20 +00:00
|
|
|
private IntentSender askForPassphraseIntent = null;
|
|
|
|
protected OnClickListener clickToDecryptListener = new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
if (activity.hasPgp() && askForPassphraseIntent != null) {
|
|
|
|
try {
|
|
|
|
getActivity().startIntentSenderForResult(
|
|
|
|
askForPassphraseIntent,
|
|
|
|
ConversationActivity.REQUEST_DECRYPT_PGP, null, 0,
|
|
|
|
0, 0);
|
2015-02-07 11:17:03 +00:00
|
|
|
askForPassphraseIntent = null;
|
2014-11-07 14:38:20 +00:00
|
|
|
} catch (SendIntentException e) {
|
|
|
|
//
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2014-11-10 21:03:23 +00:00
|
|
|
protected OnClickListener clickToVerify = new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
2015-05-02 09:38:56 +00:00
|
|
|
activity.verifyOtrSessionDialog(conversation, v);
|
2014-11-10 21:03:23 +00:00
|
|
|
}
|
|
|
|
};
|
2014-11-06 19:33:13 +00:00
|
|
|
private ConcurrentLinkedQueue<Message> mEncryptedMessages = new ConcurrentLinkedQueue<>();
|
2014-11-07 14:38:20 +00:00
|
|
|
private boolean mDecryptJobRunning = false;
|
|
|
|
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);
|
2014-11-07 14:38:20 +00:00
|
|
|
imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
|
|
|
|
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;
|
|
|
|
case SEND_LOCATION:
|
|
|
|
activity.attachFile(ConversationActivity.ATTACHMENT_CHOICE_LOCATION);
|
|
|
|
break;
|
|
|
|
case RECORD_VOICE:
|
|
|
|
activity.attachFile(ConversationActivity.ATTACHMENT_CHOICE_RECORD_VOICE);
|
|
|
|
break;
|
2015-05-03 07:30:30 +00:00
|
|
|
case CANCEL:
|
|
|
|
if (conversation != null && conversation.getMode() == Conversation.MODE_MULTI) {
|
|
|
|
conversation.setNextCounterpart(null);
|
|
|
|
updateChatMsgHint();
|
|
|
|
updateSendButton();
|
|
|
|
}
|
|
|
|
break;
|
2015-05-02 09:38:56 +00:00
|
|
|
default:
|
|
|
|
sendMessage();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
sendMessage();
|
|
|
|
}
|
2014-11-07 14:38:20 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
private OnClickListener clickToMuc = new OnClickListener() {
|
2014-06-14 14:59:07 +00:00
|
|
|
|
2014-11-07 14:38:20 +00:00
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
2015-05-03 07:30:30 +00:00
|
|
|
Intent intent = new Intent(getActivity(), ConferenceDetailsActivity.class);
|
2014-11-07 14:38:20 +00:00
|
|
|
intent.setAction(ConferenceDetailsActivity.ACTION_VIEW_MUC);
|
|
|
|
intent.putExtra("uuid", conversation.getUuid());
|
|
|
|
startActivity(intent);
|
|
|
|
}
|
|
|
|
};
|
2014-03-28 11:22:09 +00:00
|
|
|
private ConversationActivity activity;
|
2014-10-23 19:27:41 +00:00
|
|
|
private Message selectedMessage;
|
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();
|
|
|
|
if (body.length() == 0 || this.conversation == null) {
|
2014-09-06 22:09:12 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-05-20 06:25:00 +00:00
|
|
|
Message message = new Message(conversation, body, conversation.getNextEncryption(activity.forceEncryption()));
|
2014-08-10 13:27:44 +00:00
|
|
|
if (conversation.getMode() == Conversation.MODE_MULTI) {
|
2014-11-09 15:21:13 +00:00
|
|
|
if (conversation.getNextCounterpart() != null) {
|
|
|
|
message.setCounterpart(conversation.getNextCounterpart());
|
2014-08-10 13:27:44 +00:00
|
|
|
message.setType(Message.TYPE_PRIVATE);
|
|
|
|
}
|
|
|
|
}
|
2014-09-08 11:37:22 +00:00
|
|
|
if (conversation.getNextEncryption(activity.forceEncryption()) == Message.ENCRYPTION_OTR) {
|
2014-07-31 11:26:05 +00:00
|
|
|
sendOtrMessage(message);
|
2014-09-08 11:37:22 +00:00
|
|
|
} else if (conversation.getNextEncryption(activity.forceEncryption()) == Message.ENCRYPTION_PGP) {
|
2014-07-31 11:26:05 +00:00
|
|
|
sendPgpMessage(message);
|
|
|
|
} else {
|
|
|
|
sendPlainTextMessage(message);
|
|
|
|
}
|
|
|
|
}
|
2014-03-13 02:52:41 +00:00
|
|
|
|
2014-02-16 15:32:15 +00:00
|
|
|
public void updateChatMsgHint() {
|
2014-08-25 13:43:50 +00:00
|
|
|
if (conversation.getMode() == Conversation.MODE_MULTI
|
2014-11-09 15:21:13 +00:00
|
|
|
&& 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()));
|
2014-08-22 11:22:07 +00:00
|
|
|
} else {
|
2014-09-08 11:37:22 +00:00
|
|
|
switch (conversation.getNextEncryption(activity.forceEncryption())) {
|
2014-11-04 17:52:29 +00:00
|
|
|
case Message.ENCRYPTION_NONE:
|
|
|
|
mEditMessage
|
2015-05-02 09:38:56 +00:00
|
|
|
.setHint(getString(R.string.send_plain_text_message));
|
2014-11-04 17:52:29 +00:00
|
|
|
break;
|
|
|
|
case Message.ENCRYPTION_OTR:
|
|
|
|
mEditMessage.setHint(getString(R.string.send_otr_message));
|
|
|
|
break;
|
|
|
|
case Message.ENCRYPTION_PGP:
|
|
|
|
mEditMessage.setHint(getString(R.string.send_pgp_message));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2014-08-22 11:22:07 +00:00
|
|
|
}
|
2015-01-25 12:07:31 +00:00
|
|
|
getActivity().invalidateOptionsMenu();
|
2014-02-16 15:32:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-14 20:28:27 +00:00
|
|
|
private void setupIme() {
|
2015-05-02 09:38:56 +00:00
|
|
|
if (((ConversationActivity) getActivity()).usingEnterKey()) {
|
2015-01-14 20:28:27 +00:00
|
|
|
mEditMessage.setInputType(mEditMessage.getInputType() & (~InputType.TYPE_TEXT_VARIATION_SHORT_MESSAGE));
|
|
|
|
} else {
|
|
|
|
mEditMessage.setInputType(mEditMessage.getInputType() | InputType.TYPE_TEXT_VARIATION_SHORT_MESSAGE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-27 19:40:42 +00:00
|
|
|
@Override
|
|
|
|
public View onCreateView(final LayoutInflater inflater,
|
2015-05-02 09:38:56 +00:00
|
|
|
ViewGroup container, Bundle savedInstanceState) {
|
|
|
|
final View view = inflater.inflate(R.layout.fragment_conversation, container, false);
|
2015-04-20 09:39:38 +00:00
|
|
|
view.setOnClickListener(null);
|
2014-07-31 11:26:05 +00:00
|
|
|
mEditMessage = (EditMessage) view.findViewById(R.id.textinput);
|
2015-01-14 20:28:27 +00:00
|
|
|
setupIme();
|
2014-07-31 11:26:05 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
});
|
2014-07-31 11:26:05 +00:00
|
|
|
mEditMessage.setOnEditorActionListener(mEditorActionListener);
|
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);
|
|
|
|
messageListAdapter.setOnContactPictureClicked(new OnContactPictureClicked() {
|
2014-08-25 13:43:50 +00:00
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
@Override
|
|
|
|
public void onContactPictureClicked(Message message) {
|
|
|
|
if (message.getStatus() <= Message.STATUS_RECEIVED) {
|
|
|
|
if (message.getConversation().getMode() == Conversation.MODE_MULTI) {
|
|
|
|
if (message.getCounterpart() != null) {
|
|
|
|
if (!message.getCounterpart().isBareJid()) {
|
|
|
|
highlightInConference(message.getCounterpart().getResourcepart());
|
2014-08-25 13:43:50 +00:00
|
|
|
} else {
|
2014-12-21 20:43:58 +00:00
|
|
|
highlightInConference(message.getCounterpart().toString());
|
2014-08-25 13:43:50 +00:00
|
|
|
}
|
2014-12-21 20:43:58 +00:00
|
|
|
}
|
|
|
|
} else {
|
2015-01-21 14:31:40 +00:00
|
|
|
activity.switchToContactDetails(message.getContact());
|
2014-08-10 13:27:44 +00:00
|
|
|
}
|
2014-12-21 20:43:58 +00:00
|
|
|
} else {
|
|
|
|
Account account = message.getConversation().getAccount();
|
|
|
|
Intent intent = new Intent(activity, EditAccountActivity.class);
|
|
|
|
intent.putExtra("jid", account.getJid().toBareJid().toString());
|
|
|
|
startActivity(intent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-08-25 13:43:50 +00:00
|
|
|
messageListAdapter
|
2015-05-02 09:38:56 +00:00
|
|
|
.setOnContactPictureLongClicked(new OnContactPictureLongClicked() {
|
2014-12-21 20:43:58 +00:00
|
|
|
|
2015-05-02 09:38:56 +00:00
|
|
|
@Override
|
|
|
|
public void onContactPictureLongClicked(Message message) {
|
|
|
|
if (message.getStatus() <= Message.STATUS_RECEIVED) {
|
|
|
|
if (message.getConversation().getMode() == Conversation.MODE_MULTI) {
|
|
|
|
if (message.getCounterpart() != null) {
|
|
|
|
privateMessageWith(message.getCounterpart());
|
|
|
|
}
|
2014-08-25 13:43:50 +00:00
|
|
|
}
|
2015-05-02 09:38:56 +00:00
|
|
|
} else {
|
|
|
|
activity.showQrCode();
|
2014-08-25 13:43:50 +00:00
|
|
|
}
|
2014-08-10 13:27:44 +00:00
|
|
|
}
|
2015-05-02 09:38:56 +00:00
|
|
|
});
|
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
|
|
|
|
2014-10-23 19:27:41 +00:00
|
|
|
@Override
|
|
|
|
public void onCreateContextMenu(ContextMenu menu, View v,
|
2015-05-02 09:38:56 +00:00
|
|
|
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;
|
|
|
|
if (m.getType() != Message.TYPE_STATUS) {
|
2014-10-23 19:27:41 +00:00
|
|
|
activity.getMenuInflater().inflate(R.menu.message_context, menu);
|
|
|
|
menu.setHeaderTitle(R.string.message_options);
|
|
|
|
MenuItem copyText = menu.findItem(R.id.copy_text);
|
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);
|
2014-10-24 17:30:03 +00:00
|
|
|
MenuItem downloadImage = menu.findItem(R.id.download_image);
|
2014-11-15 11:37:09 +00:00
|
|
|
MenuItem cancelTransmission = menu.findItem(R.id.cancel_transmission);
|
2015-02-19 13:36:52 +00:00
|
|
|
if ((m.getType() != Message.TYPE_TEXT && m.getType() != Message.TYPE_PRIVATE)
|
2015-03-11 14:48:43 +00:00
|
|
|
|| m.getDownloadable() != null || GeoHelper.isGeoUri(m.getBody())) {
|
2014-10-23 19:27:41 +00:00
|
|
|
copyText.setVisible(false);
|
2015-01-02 13:27:49 +00:00
|
|
|
}
|
2015-03-11 14:48:43 +00:00
|
|
|
if ((m.getType() == Message.TYPE_TEXT
|
2015-01-12 15:42:20 +00:00
|
|
|
|| m.getType() == Message.TYPE_PRIVATE
|
2015-03-11 14:48:43 +00:00
|
|
|
|| m.getDownloadable() != null)
|
2015-05-02 09:38:56 +00:00
|
|
|
&& (!GeoHelper.isGeoUri(m.getBody()))) {
|
2015-01-12 15:42:20 +00:00
|
|
|
shareWith.setVisible(false);
|
2015-03-11 14:48:43 +00:00
|
|
|
}
|
2015-01-02 13:27:49 +00:00
|
|
|
if (m.getStatus() != Message.STATUS_SEND_FAILED) {
|
2014-10-23 19:27:41 +00:00
|
|
|
sendAgain.setVisible(false);
|
|
|
|
}
|
2015-03-11 14:48:43 +00:00
|
|
|
if (((m.getType() != Message.TYPE_IMAGE && m.getDownloadable() == null)
|
|
|
|
|| m.getImageParams().url == null) && !GeoHelper.isGeoUri(m.getBody())) {
|
2014-10-23 19:27:41 +00:00
|
|
|
copyUrl.setVisible(false);
|
2015-05-02 09:38:56 +00:00
|
|
|
}
|
2015-01-02 13:27:49 +00:00
|
|
|
if (m.getType() != Message.TYPE_TEXT
|
|
|
|
|| m.getDownloadable() != null
|
|
|
|
|| !m.bodyContainsDownloadable()) {
|
2014-10-24 17:30:03 +00:00
|
|
|
downloadImage.setVisible(false);
|
2015-05-02 09:38:56 +00:00
|
|
|
}
|
2015-01-02 13:27:49 +00:00
|
|
|
if (!((m.getDownloadable() != null && !(m.getDownloadable() instanceof DownloadablePlaceholder))
|
2015-05-02 09:38:56 +00:00
|
|
|
|| (m.isFileOrImage() && (m.getStatus() == Message.STATUS_WAITING
|
|
|
|
|| m.getStatus() == Message.STATUS_OFFERED)))) {
|
2014-11-15 11:37:09 +00:00
|
|
|
cancelTransmission.setVisible(false);
|
2015-05-02 09:38:56 +00:00
|
|
|
}
|
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;
|
|
|
|
case R.id.copy_text:
|
|
|
|
copyText(selectedMessage);
|
|
|
|
return true;
|
|
|
|
case R.id.send_again:
|
|
|
|
resendMessage(selectedMessage);
|
|
|
|
return true;
|
|
|
|
case R.id.copy_url:
|
|
|
|
copyUrl(selectedMessage);
|
|
|
|
return true;
|
|
|
|
case R.id.download_image:
|
|
|
|
downloadImage(selectedMessage);
|
|
|
|
return true;
|
2014-11-15 11:37:09 +00:00
|
|
|
case R.id.cancel_transmission:
|
|
|
|
cancelTransmission(selectedMessage);
|
|
|
|
return true;
|
2014-11-04 17:52:29 +00:00
|
|
|
default:
|
|
|
|
return super.onContextItemSelected(item);
|
2014-10-23 19:27:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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);
|
2015-03-11 14:48:43 +00:00
|
|
|
if (GeoHelper.isGeoUri(message.getBody())) {
|
|
|
|
shareIntent.putExtra(Intent.EXTRA_TEXT, message.getBody());
|
|
|
|
shareIntent.setType("text/plain");
|
|
|
|
} else {
|
|
|
|
shareIntent.putExtra(Intent.EXTRA_STREAM,
|
|
|
|
activity.xmppConnectionService.getFileBackend()
|
|
|
|
.getJingleFileUri(message));
|
|
|
|
shareIntent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
|
|
|
|
String path = message.getRelativeFilePath();
|
|
|
|
String mime = path == null ? null : URLConnection.guessContentTypeFromName(path);
|
|
|
|
if (mime == null) {
|
|
|
|
mime = "image/webp";
|
|
|
|
}
|
|
|
|
shareIntent.setType(mime);
|
2015-01-12 15:42:20 +00:00
|
|
|
}
|
2015-05-02 09:38:56 +00:00
|
|
|
activity.startActivity(Intent.createChooser(shareIntent, getText(R.string.share_with)));
|
2014-10-23 19:27:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void copyText(Message message) {
|
|
|
|
if (activity.copyTextToClipboard(message.getMergedBody(),
|
2015-05-02 09:38:56 +00:00
|
|
|
R.string.message_text)) {
|
2014-10-23 19:27:41 +00:00
|
|
|
Toast.makeText(activity, R.string.message_copied_to_clipboard,
|
|
|
|
Toast.LENGTH_SHORT).show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void resendMessage(Message message) {
|
2014-11-15 14:16:40 +00:00
|
|
|
if (message.getType() == Message.TYPE_FILE || message.getType() == Message.TYPE_IMAGE) {
|
|
|
|
DownloadableFile file = activity.xmppConnectionService.getFileBackend().getFile(message);
|
|
|
|
if (!file.exists()) {
|
2015-05-02 09:38:56 +00:00
|
|
|
Toast.makeText(activity, R.string.file_deleted, Toast.LENGTH_SHORT).show();
|
2014-11-15 14:16:40 +00:00
|
|
|
message.setDownloadable(new DownloadablePlaceholder(Downloadable.STATUS_DELETED));
|
|
|
|
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;
|
|
|
|
if (GeoHelper.isGeoUri(message.getBody())) {
|
|
|
|
resId = R.string.location;
|
|
|
|
url = message.getBody();
|
|
|
|
} else {
|
|
|
|
resId = R.string.image_url;
|
|
|
|
url = message.getImageParams().url.toString();
|
|
|
|
}
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-10-24 17:30:03 +00:00
|
|
|
private void downloadImage(Message message) {
|
|
|
|
activity.xmppConnectionService.getHttpConnectionManager()
|
2015-05-02 09:38:56 +00:00
|
|
|
.createNewConnection(message);
|
2014-10-24 17:30:03 +00:00
|
|
|
}
|
|
|
|
|
2014-11-15 11:37:09 +00:00
|
|
|
private void cancelTransmission(Message message) {
|
|
|
|
Downloadable downloadable = message.getDownloadable();
|
2015-05-02 09:38:56 +00:00
|
|
|
if (downloadable != null) {
|
2014-11-15 11:37:09 +00:00
|
|
|
downloadable.cancel();
|
2015-01-02 13:27:49 +00:00
|
|
|
} else {
|
2015-05-02 09:38:56 +00:00
|
|
|
activity.xmppConnectionService.markMessage(message, Message.STATUS_SEND_FAILED);
|
2014-11-15 11:37:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-06 19:33:13 +00:00
|
|
|
protected void privateMessageWith(final Jid counterpart) {
|
2014-08-10 13:27:44 +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();
|
2014-08-10 13:27:44 +00:00
|
|
|
}
|
2014-01-24 22:58:51 +00:00
|
|
|
|
2014-05-20 09:44:43 +00:00
|
|
|
protected void highlightInConference(String nick) {
|
2014-07-31 11:26:05 +00:00
|
|
|
String oldString = mEditMessage.getText().toString().trim();
|
2014-08-31 15:24:52 +00:00
|
|
|
if (oldString.isEmpty() || mEditMessage.getSelectionStart() == 0) {
|
|
|
|
mEditMessage.getText().insert(0, nick + ": ");
|
2014-05-20 09:44:43 +00:00
|
|
|
} else {
|
2014-09-03 17:35:45 +00:00
|
|
|
if (mEditMessage.getText().charAt(
|
2015-05-02 09:38:56 +00:00
|
|
|
mEditMessage.getSelectionStart() - 1) != ' ') {
|
2014-09-03 17:35:45 +00:00
|
|
|
nick = " " + nick;
|
2015-05-02 09:38:56 +00:00
|
|
|
}
|
2014-09-03 17:35:45 +00:00
|
|
|
mEditMessage.getText().insert(mEditMessage.getSelectionStart(),
|
|
|
|
nick + " ");
|
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() {
|
2014-10-15 00:09:20 +00:00
|
|
|
mDecryptJobRunning = false;
|
2014-05-07 10:59:15 +00:00
|
|
|
super.onStop();
|
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();
|
|
|
|
this.conversation.setNextMessage(msg);
|
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
|
|
|
}
|
|
|
|
|
2014-11-07 14:38:20 +00:00
|
|
|
public void reInit(Conversation conversation) {
|
2014-11-17 19:02:46 +00:00
|
|
|
if (conversation == null) {
|
|
|
|
return;
|
|
|
|
}
|
2015-02-21 10:06:52 +00:00
|
|
|
|
|
|
|
this.activity = (ConversationActivity) getActivity();
|
|
|
|
|
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();
|
|
|
|
this.conversation.setNextMessage(msg);
|
|
|
|
if (this.conversation != conversation) {
|
2015-05-02 09:38:56 +00:00
|
|
|
updateChatState(this.conversation, msg);
|
2015-02-21 10:06:52 +00:00
|
|
|
}
|
2014-12-17 20:05:47 +00:00
|
|
|
this.conversation.trim();
|
2014-01-28 18:21:54 +00:00
|
|
|
}
|
2015-02-21 10:06:52 +00:00
|
|
|
|
2015-02-09 15:01:30 +00:00
|
|
|
this.askForPassphraseIntent = null;
|
2014-11-07 14:38:20 +00:00
|
|
|
this.conversation = conversation;
|
2014-12-01 10:18:55 +00:00
|
|
|
this.mDecryptJobRunning = false;
|
|
|
|
this.mEncryptedMessages.clear();
|
2014-08-10 13:27:44 +00:00
|
|
|
if (this.conversation.getMode() == Conversation.MODE_MULTI) {
|
2014-11-09 15:21:13 +00:00
|
|
|
this.conversation.setNextCounterpart(null);
|
2014-08-10 13:27:44 +00:00
|
|
|
}
|
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-02-17 08:53:16 +00:00
|
|
|
this.messagesView.setAdapter(messageListAdapter);
|
2014-08-22 11:22:07 +00:00
|
|
|
updateMessages();
|
2014-12-17 09:50:51 +00:00
|
|
|
this.messagesLoaded = true;
|
|
|
|
int size = this.messageList.size();
|
|
|
|
if (size > 0) {
|
|
|
|
messagesView.setSelection(size - 1);
|
|
|
|
}
|
2014-01-24 22:58:51 +00:00
|
|
|
}
|
2014-05-07 10:59:15 +00:00
|
|
|
|
2015-02-07 11:17:03 +00:00
|
|
|
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, activity.xmppConnectionService, conversation);
|
|
|
|
} else {
|
|
|
|
activity.unblockConversation(conversation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private OnClickListener mAddBackClickListener = new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
2015-05-02 09:38:56 +00:00
|
|
|
final Contact contact = conversation == null ? null : conversation.getContact();
|
2015-02-07 11:17:03 +00:00
|
|
|
if (contact != null) {
|
|
|
|
activity.xmppConnectionService.createContact(contact);
|
|
|
|
activity.switchToContactDetails(contact);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private OnClickListener mUnmuteClickListener = new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(final View v) {
|
|
|
|
activity.unmuteConversation(conversation);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
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("account", conversation.getAccount().getJid().toBareJid().toString());
|
2015-05-02 09:38:56 +00:00
|
|
|
intent.putExtra("mode", VerifyOTRActivity.MODE_ANSWER_QUESTION);
|
2015-02-07 11:17:03 +00:00
|
|
|
startActivity(intent);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private void updateSnackBar(final Conversation conversation) {
|
|
|
|
final Account account = conversation.getAccount();
|
|
|
|
final Contact contact = conversation.getContact();
|
|
|
|
final int mode = conversation.getMode();
|
|
|
|
if (conversation.isBlocked()) {
|
2015-05-02 09:38:56 +00:00
|
|
|
showSnackbar(R.string.contact_blocked, R.string.unblock, this.mUnblockClickListener);
|
2015-02-07 11:17:03 +00:00
|
|
|
} else if (!contact.showInRoster() && contact.getOption(Contact.Options.PENDING_SUBSCRIPTION_REQUEST)) {
|
2015-05-02 09:38:56 +00:00
|
|
|
showSnackbar(R.string.contact_added_you, R.string.add_back, this.mAddBackClickListener);
|
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()) {
|
|
|
|
case MucOptions.ERROR_NICK_IN_USE:
|
|
|
|
showSnackbar(R.string.nick_in_use, R.string.edit, clickToMuc);
|
|
|
|
break;
|
|
|
|
case MucOptions.ERROR_UNKNOWN:
|
|
|
|
showSnackbar(R.string.conference_not_found, R.string.leave, leaveMuc);
|
|
|
|
break;
|
|
|
|
case MucOptions.ERROR_PASSWORD_REQUIRED:
|
|
|
|
showSnackbar(R.string.conference_requires_password, R.string.enter_password, enterPassword);
|
|
|
|
break;
|
|
|
|
case MucOptions.ERROR_BANNED:
|
|
|
|
showSnackbar(R.string.conference_banned, R.string.leave, leaveMuc);
|
|
|
|
break;
|
|
|
|
case MucOptions.ERROR_MEMBERS_ONLY:
|
|
|
|
showSnackbar(R.string.conference_members_only, R.string.leave, leaveMuc);
|
|
|
|
break;
|
|
|
|
case MucOptions.KICKED_FROM_ROOM:
|
|
|
|
showSnackbar(R.string.conference_kicked, R.string.join, joinMuc);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2015-05-02 09:38:56 +00:00
|
|
|
} else if (askForPassphraseIntent != null) {
|
|
|
|
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);
|
|
|
|
} else if (conversation.isMuted()) {
|
2015-05-02 09:38:56 +00:00
|
|
|
showSnackbar(R.string.notifications_disabled, R.string.enable, this.mUnmuteClickListener);
|
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) {
|
2015-02-07 11:17:03 +00:00
|
|
|
updateSnackBar(this.conversation);
|
2014-12-14 17:10:46 +00:00
|
|
|
conversation.populateWithMessages(ConversationFragment.this.messageList);
|
2015-01-11 15:22:29 +00:00
|
|
|
for (final Message message : this.messageList) {
|
2014-12-14 17:10:46 +00:00
|
|
|
if (message.getEncryption() == Message.ENCRYPTION_PGP
|
|
|
|
&& (message.getStatus() == Message.STATUS_RECEIVED || message
|
2015-05-02 09:38:56 +00:00
|
|
|
.getStatus() >= Message.STATUS_SEND)
|
2014-12-14 17:10:46 +00:00
|
|
|
&& message.getDownloadable() == null) {
|
|
|
|
if (!mEncryptedMessages.contains(message)) {
|
|
|
|
mEncryptedMessages.add(message);
|
2014-12-02 23:54:07 +00:00
|
|
|
}
|
2015-05-02 09:38:56 +00:00
|
|
|
}
|
2014-11-18 13:43:15 +00:00
|
|
|
}
|
2014-12-14 17:10:46 +00:00
|
|
|
decryptNext();
|
|
|
|
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
|
|
|
}
|
|
|
|
this.updateSendButton();
|
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
|
|
|
|
2014-10-15 00:09:20 +00:00
|
|
|
private void decryptNext() {
|
|
|
|
Message next = this.mEncryptedMessages.peek();
|
|
|
|
PgpEngine engine = activity.xmppConnectionService.getPgpEngine();
|
2014-10-15 17:32:12 +00:00
|
|
|
|
|
|
|
if (next != null && engine != null && !mDecryptJobRunning) {
|
2014-10-15 00:09:20 +00:00
|
|
|
mDecryptJobRunning = true;
|
|
|
|
engine.decrypt(next, new UiCallback<Message>() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void userInputRequried(PendingIntent pi, Message message) {
|
|
|
|
mDecryptJobRunning = false;
|
|
|
|
askForPassphraseIntent = pi.getIntentSender();
|
2015-02-07 11:17:03 +00:00
|
|
|
updateSnackBar(conversation);
|
2014-10-15 00:09:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void success(Message message) {
|
|
|
|
mDecryptJobRunning = false;
|
2014-12-01 10:18:55 +00:00
|
|
|
try {
|
|
|
|
mEncryptedMessages.remove();
|
|
|
|
} catch (final NoSuchElementException ignored) {
|
|
|
|
|
|
|
|
}
|
2015-04-20 10:13:47 +00:00
|
|
|
askForPassphraseIntent = null;
|
2014-10-15 00:09:20 +00:00
|
|
|
activity.xmppConnectionService.updateMessage(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void error(int error, Message message) {
|
|
|
|
message.setEncryption(Message.ENCRYPTION_DECRYPTION_FAILED);
|
|
|
|
mDecryptJobRunning = false;
|
2014-12-01 10:18:55 +00:00
|
|
|
try {
|
|
|
|
mEncryptedMessages.remove();
|
|
|
|
} catch (final NoSuchElementException ignored) {
|
|
|
|
|
|
|
|
}
|
2014-10-15 00:09:20 +00:00
|
|
|
activity.xmppConnectionService.updateConversationUi();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2014-10-15 17:32:12 +00:00
|
|
|
|
2014-06-10 15:01:19 +00:00
|
|
|
private void messageSent() {
|
|
|
|
int size = this.messageList.size();
|
2014-10-06 20:03:01 +00:00
|
|
|
messagesView.setSelection(size - 1);
|
2014-07-31 11:26:05 +00:00
|
|
|
mEditMessage.setText("");
|
2014-08-10 13:27:44 +00:00
|
|
|
updateChatMsgHint();
|
2014-06-10 15:01:19 +00:00
|
|
|
}
|
2014-06-14 14:59:07 +00:00
|
|
|
|
2015-05-03 07:30:30 +00:00
|
|
|
enum SendButtonAction {TEXT, TAKE_PHOTO, SEND_LOCATION, RECORD_VOICE, CANCEL}
|
2015-05-02 09:38:56 +00:00
|
|
|
|
|
|
|
private int getSendButtonImageResource(SendButtonAction action, int status) {
|
|
|
|
switch (action) {
|
|
|
|
case TEXT:
|
|
|
|
switch (status) {
|
2014-11-04 17:52:29 +00:00
|
|
|
case Presences.CHAT:
|
|
|
|
case Presences.ONLINE:
|
2015-05-02 09:38:56 +00:00
|
|
|
return R.drawable.ic_send_text_online;
|
2014-11-04 17:52:29 +00:00
|
|
|
case Presences.AWAY:
|
2015-05-02 09:38:56 +00:00
|
|
|
return R.drawable.ic_send_text_away;
|
2014-11-04 17:52:29 +00:00
|
|
|
case Presences.XA:
|
|
|
|
case Presences.DND:
|
2015-05-02 09:38:56 +00:00
|
|
|
return R.drawable.ic_send_text_dnd;
|
|
|
|
default:
|
|
|
|
return R.drawable.ic_send_text_offline;
|
|
|
|
}
|
|
|
|
case TAKE_PHOTO:
|
|
|
|
switch (status) {
|
|
|
|
case Presences.CHAT:
|
|
|
|
case Presences.ONLINE:
|
|
|
|
return R.drawable.ic_send_photo_online;
|
|
|
|
case Presences.AWAY:
|
|
|
|
return R.drawable.ic_send_photo_away;
|
|
|
|
case Presences.XA:
|
|
|
|
case Presences.DND:
|
|
|
|
return R.drawable.ic_send_photo_dnd;
|
|
|
|
default:
|
|
|
|
return R.drawable.ic_send_photo_offline;
|
|
|
|
}
|
|
|
|
case RECORD_VOICE:
|
|
|
|
switch (status) {
|
|
|
|
case Presences.CHAT:
|
|
|
|
case Presences.ONLINE:
|
|
|
|
return R.drawable.ic_send_voice_online;
|
|
|
|
case Presences.AWAY:
|
|
|
|
return R.drawable.ic_send_voice_away;
|
|
|
|
case Presences.XA:
|
|
|
|
case Presences.DND:
|
|
|
|
return R.drawable.ic_send_voice_dnd;
|
|
|
|
default:
|
|
|
|
return R.drawable.ic_send_voice_offline;
|
|
|
|
}
|
|
|
|
case SEND_LOCATION:
|
|
|
|
switch (status) {
|
|
|
|
case Presences.CHAT:
|
|
|
|
case Presences.ONLINE:
|
|
|
|
return R.drawable.ic_send_location_online;
|
|
|
|
case Presences.AWAY:
|
|
|
|
return R.drawable.ic_send_location_away;
|
|
|
|
case Presences.XA:
|
|
|
|
case Presences.DND:
|
|
|
|
return R.drawable.ic_send_location_dnd;
|
|
|
|
default:
|
|
|
|
return R.drawable.ic_send_location_offline;
|
|
|
|
}
|
2015-05-03 07:30:30 +00:00
|
|
|
case CANCEL:
|
|
|
|
switch (status) {
|
|
|
|
case Presences.CHAT:
|
|
|
|
case Presences.ONLINE:
|
|
|
|
return R.drawable.ic_send_cancel_online;
|
|
|
|
case Presences.AWAY:
|
|
|
|
return R.drawable.ic_send_cancel_away;
|
|
|
|
case Presences.XA:
|
|
|
|
case Presences.DND:
|
|
|
|
return R.drawable.ic_send_cancel_dnd;
|
|
|
|
default:
|
|
|
|
return R.drawable.ic_send_cancel_offline;
|
|
|
|
}
|
2015-05-02 09:38:56 +00:00
|
|
|
}
|
|
|
|
return R.drawable.ic_send_text_offline;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void updateSendButton() {
|
|
|
|
final Conversation c = this.conversation;
|
|
|
|
final SendButtonAction action;
|
|
|
|
final int status;
|
2015-05-03 07:30:30 +00:00
|
|
|
final boolean empty = this.mEditMessage == null || this.mEditMessage.getText().length() == 0;
|
2015-05-02 09:38:56 +00:00
|
|
|
if (c.getMode() == Conversation.MODE_MULTI) {
|
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-05-02 09:38:56 +00:00
|
|
|
String setting = activity.getPreferences().getString("quick_action","recent");
|
2015-05-13 14:23:20 +00:00
|
|
|
if (!setting.equals("none") && UIHelper.receivedLocationQuestion(conversation.getLatestMessage())) {
|
|
|
|
setting = "location";
|
|
|
|
} else if (setting.equals("recent")) {
|
2015-05-02 09:38:56 +00:00
|
|
|
setting = activity.getPreferences().getString("recently_used_quick_action","text");
|
|
|
|
}
|
|
|
|
switch (setting) {
|
|
|
|
case "photo":
|
|
|
|
action = SendButtonAction.TAKE_PHOTO;
|
|
|
|
break;
|
|
|
|
case "location":
|
|
|
|
action = SendButtonAction.SEND_LOCATION;
|
|
|
|
break;
|
|
|
|
case "voice":
|
|
|
|
action = SendButtonAction.RECORD_VOICE;
|
2014-11-04 17:52:29 +00:00
|
|
|
break;
|
|
|
|
default:
|
2015-05-02 09:38:56 +00:00
|
|
|
action = SendButtonAction.TEXT;
|
2014-11-04 17:52:29 +00:00
|
|
|
break;
|
2014-09-10 15:59:57 +00:00
|
|
|
}
|
|
|
|
} else {
|
2015-05-02 09:38:56 +00:00
|
|
|
action = SendButtonAction.TEXT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (activity.useSendButtonToIndicateStatus() && c != null
|
|
|
|
&& c.getAccount().getStatus() == Account.State.ONLINE) {
|
|
|
|
if (c.getMode() == Conversation.MODE_SINGLE) {
|
|
|
|
status = c.getContact().getMostAvailableStatus();
|
|
|
|
} else {
|
|
|
|
status = c.getMucOptions().online() ? Presences.ONLINE : Presences.OFFLINE;
|
2014-09-10 15:59:57 +00:00
|
|
|
}
|
|
|
|
} else {
|
2015-05-02 09:38:56 +00:00
|
|
|
status = Presences.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
|
|
|
}
|
|
|
|
|
2014-06-04 19:40:17 +00:00
|
|
|
protected void updateStatusMessages() {
|
2014-11-18 13:43:15 +00:00
|
|
|
synchronized (this.messageList) {
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-02-16 15:32:15 +00:00
|
|
|
|
2014-12-21 20:43:58 +00:00
|
|
|
protected void showSnackbar(final int message, final int action,
|
2015-05-02 09:38:56 +00:00
|
|
|
final OnClickListener clickListener) {
|
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);
|
2014-12-21 20:43:58 +00:00
|
|
|
snackbarAction.setVisibility(View.VISIBLE);
|
2014-07-09 19:45:03 +00:00
|
|
|
snackbarAction.setText(action);
|
|
|
|
snackbarAction.setOnClickListener(clickListener);
|
|
|
|
}
|
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();
|
2014-03-03 15:39:19 +00:00
|
|
|
if (activity.hasPgp()) {
|
2014-05-22 13:36:41 +00:00
|
|
|
if (conversation.getMode() == Conversation.MODE_SINGLE) {
|
|
|
|
if (contact.getPgpKeyId() != 0) {
|
2014-06-01 17:29:57 +00:00
|
|
|
xmppService.getPgpEngine().hasKey(contact,
|
2014-06-07 11:25:27 +00:00
|
|
|
new UiCallback<Contact>() {
|
2014-06-01 17:29:57 +00:00
|
|
|
|
|
|
|
@Override
|
2014-06-09 19:25:01 +00:00
|
|
|
public void userInputRequried(PendingIntent pi,
|
2015-05-02 09:38:56 +00:00
|
|
|
Contact contact) {
|
2014-06-01 17:29:57 +00:00
|
|
|
activity.runIntent(
|
|
|
|
pi,
|
|
|
|
ConversationActivity.REQUEST_ENCRYPT_MESSAGE);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-07 11:25:27 +00:00
|
|
|
public void success(Contact contact) {
|
2014-06-10 15:01:19 +00:00
|
|
|
messageSent();
|
2014-06-07 11:25:27 +00:00
|
|
|
activity.encryptTextMessage(message);
|
2014-06-01 17:29:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-07 11:25:27 +00:00
|
|
|
public void error(int error, Contact contact) {
|
2014-06-01 17:29:57 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-05-22 13:36:41 +00:00
|
|
|
} else {
|
2014-06-01 17:29:57 +00:00
|
|
|
showNoPGPKeyDialog(false,
|
|
|
|
new DialogInterface.OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog,
|
2015-05-02 09:38:56 +00:00
|
|
|
int which) {
|
2014-06-01 17:29:57 +00:00
|
|
|
conversation
|
2015-05-02 09:38:56 +00:00
|
|
|
.setNextEncryption(Message.ENCRYPTION_NONE);
|
2014-09-28 13:21:56 +00:00
|
|
|
xmppService.databaseBackend
|
2015-05-02 09:38:56 +00:00
|
|
|
.updateConversation(conversation);
|
2014-06-01 17:29:57 +00:00
|
|
|
message.setEncryption(Message.ENCRYPTION_NONE);
|
2014-06-11 19:53:25 +00:00
|
|
|
xmppService.sendMessage(message);
|
2014-06-10 15:01:19 +00:00
|
|
|
messageSent();
|
2014-06-01 17:29:57 +00:00
|
|
|
}
|
|
|
|
});
|
2014-05-22 13:36:41 +00:00
|
|
|
}
|
2014-03-03 15:39:19 +00:00
|
|
|
} else {
|
2014-06-01 09:24:35 +00:00
|
|
|
if (conversation.getMucOptions().pgpKeysInUse()) {
|
2014-06-01 16:52:27 +00:00
|
|
|
if (!conversation.getMucOptions().everybodyHasKeys()) {
|
2014-06-01 17:29:57 +00:00
|
|
|
Toast warning = Toast
|
2015-05-02 09:38:56 +00:00
|
|
|
.makeText(getActivity(),
|
|
|
|
R.string.missing_public_keys,
|
|
|
|
Toast.LENGTH_LONG);
|
2014-06-01 16:52:27 +00:00
|
|
|
warning.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
|
|
|
|
warning.show();
|
|
|
|
}
|
2014-06-07 11:25:27 +00:00
|
|
|
activity.encryptTextMessage(message);
|
2014-06-16 21:43:45 +00:00
|
|
|
messageSent();
|
2014-06-01 09:24:35 +00:00
|
|
|
} else {
|
2014-06-01 17:29:57 +00:00
|
|
|
showNoPGPKeyDialog(true,
|
|
|
|
new DialogInterface.OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog,
|
2015-05-02 09:38:56 +00:00
|
|
|
int which) {
|
2014-06-01 17:29:57 +00:00
|
|
|
conversation
|
2015-05-02 09:38:56 +00:00
|
|
|
.setNextEncryption(Message.ENCRYPTION_NONE);
|
2014-06-01 17:29:57 +00:00
|
|
|
message.setEncryption(Message.ENCRYPTION_NONE);
|
2014-09-28 13:21:56 +00:00
|
|
|
xmppService.databaseBackend
|
2015-05-02 09:38:56 +00:00
|
|
|
.updateConversation(conversation);
|
2014-06-11 19:53:25 +00:00
|
|
|
xmppService.sendMessage(message);
|
2014-06-10 15:01:19 +00:00
|
|
|
messageSent();
|
2014-06-01 17:29:57 +00:00
|
|
|
}
|
|
|
|
});
|
2014-06-01 09:24:35 +00:00
|
|
|
}
|
2014-03-03 15:39:19 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
} else {
|
|
|
|
activity.showInstallPgpDialog();
|
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,
|
2015-05-02 09:38:56 +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
|
|
|
|
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-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
|
|
|
}
|
|
|
|
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|