2014-02-28 12:46:01 -05:00
|
|
|
package eu.siacs.conversations.ui;
|
2014-01-23 20:04:05 -05:00
|
|
|
|
2014-09-27 05:46:56 -04:00
|
|
|
import android.annotation.SuppressLint;
|
2014-07-30 15:30:55 -04:00
|
|
|
import android.app.ActionBar;
|
2014-02-20 11:00:50 -05:00
|
|
|
import android.app.AlertDialog;
|
2014-01-23 20:04:05 -05:00
|
|
|
import android.app.FragmentTransaction;
|
2014-05-06 15:34:30 -04:00
|
|
|
import android.app.PendingIntent;
|
2014-02-20 11:00:50 -05:00
|
|
|
import android.content.DialogInterface;
|
2014-04-16 12:16:23 -04:00
|
|
|
import android.content.DialogInterface.OnClickListener;
|
2014-01-23 20:04:05 -05:00
|
|
|
import android.content.Intent;
|
2014-11-03 14:00:20 -05:00
|
|
|
import android.content.IntentSender.SendIntentException;
|
|
|
|
import android.net.Uri;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.os.SystemClock;
|
|
|
|
import android.provider.MediaStore;
|
2014-01-23 20:04:05 -05:00
|
|
|
import android.support.v4.widget.SlidingPaneLayout;
|
|
|
|
import android.support.v4.widget.SlidingPaneLayout.PanelSlideListener;
|
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuItem;
|
|
|
|
import android.view.View;
|
|
|
|
import android.widget.AdapterView;
|
|
|
|
import android.widget.AdapterView.OnItemClickListener;
|
2014-01-24 17:58:51 -05:00
|
|
|
import android.widget.ArrayAdapter;
|
2014-04-20 14:48:16 -04:00
|
|
|
import android.widget.CheckBox;
|
2014-01-23 20:04:05 -05:00
|
|
|
import android.widget.ListView;
|
2014-02-16 10:32:15 -05:00
|
|
|
import android.widget.PopupMenu;
|
|
|
|
import android.widget.PopupMenu.OnMenuItemClickListener;
|
2014-05-09 14:46:43 -04:00
|
|
|
import android.widget.Toast;
|
2014-01-23 20:04:05 -05:00
|
|
|
|
2015-01-01 19:21:14 -05:00
|
|
|
import net.java.otr4j.session.SessionStatus;
|
|
|
|
|
2014-11-03 14:00:20 -05:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.R;
|
2014-12-22 10:50:29 -05:00
|
|
|
import eu.siacs.conversations.entities.Account;
|
2014-12-21 15:43:58 -05:00
|
|
|
import eu.siacs.conversations.entities.Blockable;
|
2014-11-03 14:00:20 -05:00
|
|
|
import eu.siacs.conversations.entities.Contact;
|
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
|
|
|
import eu.siacs.conversations.entities.Message;
|
|
|
|
import eu.siacs.conversations.services.XmppConnectionService.OnAccountUpdate;
|
|
|
|
import eu.siacs.conversations.services.XmppConnectionService.OnConversationUpdate;
|
|
|
|
import eu.siacs.conversations.services.XmppConnectionService.OnRosterUpdate;
|
|
|
|
import eu.siacs.conversations.ui.adapter.ConversationAdapter;
|
|
|
|
import eu.siacs.conversations.utils.ExceptionHelper;
|
2014-12-21 15:43:58 -05:00
|
|
|
import eu.siacs.conversations.xmpp.OnUpdateBlocklist;
|
2014-11-03 14:00:20 -05:00
|
|
|
|
2014-12-21 15:43:58 -05:00
|
|
|
public class ConversationActivity extends XmppActivity
|
|
|
|
implements OnAccountUpdate, OnConversationUpdate, OnRosterUpdate, OnUpdateBlocklist {
|
2014-01-24 04:50:18 -05:00
|
|
|
|
2014-01-25 13:33:12 -05:00
|
|
|
public static final String VIEW_CONVERSATION = "viewConversation";
|
2014-02-03 12:38:47 -05:00
|
|
|
public static final String CONVERSATION = "conversationUuid";
|
2014-03-13 16:37:27 -04:00
|
|
|
public static final String TEXT = "text";
|
2014-11-16 19:54:01 -05:00
|
|
|
public static final String NICK = "nick";
|
2014-04-10 08:12:08 -04:00
|
|
|
public static final String PRESENCE = "eu.siacs.conversations.presence";
|
|
|
|
|
2014-08-13 05:22:32 -04:00
|
|
|
public static final int REQUEST_SEND_MESSAGE = 0x0201;
|
|
|
|
public static final int REQUEST_DECRYPT_PGP = 0x0202;
|
2014-11-06 11:25:14 -05:00
|
|
|
public static final int REQUEST_ENCRYPT_MESSAGE = 0x0207;
|
2014-11-13 15:04:05 -05:00
|
|
|
private static final int REQUEST_ATTACH_IMAGE_DIALOG = 0x0203;
|
2014-08-13 05:22:32 -04:00
|
|
|
private static final int REQUEST_IMAGE_CAPTURE = 0x0204;
|
|
|
|
private static final int REQUEST_RECORD_AUDIO = 0x0205;
|
|
|
|
private static final int REQUEST_SEND_PGP_IMAGE = 0x0206;
|
2014-11-13 15:04:05 -05:00
|
|
|
private static final int REQUEST_ATTACH_FILE_DIALOG = 0x0208;
|
2014-08-13 05:22:32 -04:00
|
|
|
private static final int ATTACHMENT_CHOICE_CHOOSE_IMAGE = 0x0301;
|
|
|
|
private static final int ATTACHMENT_CHOICE_TAKE_PHOTO = 0x0302;
|
2014-11-13 15:04:05 -05:00
|
|
|
private static final int ATTACHMENT_CHOICE_CHOOSE_FILE = 0x0303;
|
2014-10-03 09:00:29 -04:00
|
|
|
private static final String STATE_OPEN_CONVERSATION = "state_open_conversation";
|
|
|
|
private static final String STATE_PANEL_OPEN = "state_panel_open";
|
2014-11-06 11:25:14 -05:00
|
|
|
private static final String STATE_PENDING_URI = "state_pending_uri";
|
2014-01-23 20:04:05 -05:00
|
|
|
|
2014-10-03 09:00:29 -04:00
|
|
|
private String mOpenConverstaion = null;
|
|
|
|
private boolean mPanelOpen = true;
|
2014-11-06 11:25:14 -05:00
|
|
|
private Uri mPendingImageUri = null;
|
2014-11-13 15:04:05 -05:00
|
|
|
private Uri mPendingFileUri = null;
|
2014-10-03 09:00:29 -04:00
|
|
|
|
|
|
|
private View mContentView;
|
2014-01-24 04:50:18 -05:00
|
|
|
|
2014-11-07 09:09:28 -05:00
|
|
|
private List<Conversation> conversationList = new ArrayList<>();
|
2014-11-17 18:07:27 -05:00
|
|
|
private Conversation mSelectedConversation = null;
|
2014-01-27 14:40:42 -05:00
|
|
|
private ListView listView;
|
2014-11-07 09:38:20 -05:00
|
|
|
private ConversationFragment mConversationFragment;
|
2014-06-06 05:39:17 -04:00
|
|
|
|
2014-02-01 09:07:20 -05:00
|
|
|
private ArrayAdapter<Conversation> listAdapter;
|
2014-06-06 05:39:17 -04:00
|
|
|
|
2014-11-14 06:31:57 -05:00
|
|
|
private Toast prepareFileToast;
|
2014-08-31 10:28:21 -04:00
|
|
|
|
2015-01-02 06:04:33 -05:00
|
|
|
private boolean mActivityPaused = false;
|
|
|
|
|
2014-04-10 08:12:08 -04:00
|
|
|
|
2014-01-27 14:40:42 -05:00
|
|
|
public List<Conversation> getConversationList() {
|
|
|
|
return this.conversationList;
|
|
|
|
}
|
2014-01-24 04:50:18 -05:00
|
|
|
|
2014-02-06 20:57:36 -05:00
|
|
|
public Conversation getSelectedConversation() {
|
2014-11-17 18:07:27 -05:00
|
|
|
return this.mSelectedConversation;
|
2014-01-27 14:40:42 -05:00
|
|
|
}
|
2014-06-06 05:39:17 -04:00
|
|
|
|
2014-05-13 11:11:27 -04:00
|
|
|
public void setSelectedConversation(Conversation conversation) {
|
2014-11-17 18:07:27 -05:00
|
|
|
this.mSelectedConversation = conversation;
|
2014-05-13 11:11:27 -04:00
|
|
|
}
|
2014-04-10 08:12:08 -04:00
|
|
|
|
2014-01-27 14:40:42 -05:00
|
|
|
public ListView getConversationListView() {
|
|
|
|
return this.listView;
|
|
|
|
}
|
2014-04-10 08:12:08 -04:00
|
|
|
|
2014-10-03 09:00:29 -04:00
|
|
|
public void showConversationsOverview() {
|
|
|
|
if (mContentView instanceof SlidingPaneLayout) {
|
|
|
|
SlidingPaneLayout mSlidingPaneLayout = (SlidingPaneLayout) mContentView;
|
|
|
|
mSlidingPaneLayout.openPane();
|
|
|
|
}
|
|
|
|
}
|
2014-10-05 18:33:52 -04:00
|
|
|
|
2014-11-04 06:15:14 -05:00
|
|
|
@Override
|
|
|
|
protected String getShareableUri() {
|
|
|
|
Conversation conversation = getSelectedConversation();
|
2014-11-06 11:25:14 -05:00
|
|
|
if (conversation != null) {
|
2014-11-15 18:20:20 -05:00
|
|
|
return conversation.getAccount().getShareableUri();
|
2014-11-04 06:15:14 -05:00
|
|
|
} else {
|
2014-11-04 11:10:35 -05:00
|
|
|
return "";
|
2014-11-04 06:15:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-03 09:00:29 -04:00
|
|
|
public void hideConversationsOverview() {
|
|
|
|
if (mContentView instanceof SlidingPaneLayout) {
|
|
|
|
SlidingPaneLayout mSlidingPaneLayout = (SlidingPaneLayout) mContentView;
|
|
|
|
mSlidingPaneLayout.closePane();
|
|
|
|
}
|
|
|
|
}
|
2014-10-05 18:33:52 -04:00
|
|
|
|
2014-10-03 09:00:29 -04:00
|
|
|
public boolean isConversationsOverviewHideable() {
|
|
|
|
if (mContentView instanceof SlidingPaneLayout) {
|
|
|
|
SlidingPaneLayout mSlidingPaneLayout = (SlidingPaneLayout) mContentView;
|
|
|
|
return mSlidingPaneLayout.isSlideable();
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2014-10-05 18:33:52 -04:00
|
|
|
|
2014-10-03 09:00:29 -04:00
|
|
|
public boolean isConversationsOverviewVisable() {
|
|
|
|
if (mContentView instanceof SlidingPaneLayout) {
|
|
|
|
SlidingPaneLayout mSlidingPaneLayout = (SlidingPaneLayout) mContentView;
|
|
|
|
return mSlidingPaneLayout.isOpen();
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2014-04-10 08:12:08 -04:00
|
|
|
|
2014-01-23 20:04:05 -05:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
2014-01-25 13:33:12 -05:00
|
|
|
super.onCreate(savedInstanceState);
|
2014-11-07 15:49:31 -05:00
|
|
|
if (savedInstanceState != null) {mOpenConverstaion = savedInstanceState.getString(
|
2014-12-21 15:43:58 -05:00
|
|
|
STATE_OPEN_CONVERSATION, null);
|
|
|
|
mPanelOpen = savedInstanceState.getBoolean(STATE_PANEL_OPEN, true);
|
|
|
|
String pending = savedInstanceState.getString(STATE_PENDING_URI, null);
|
|
|
|
if (pending != null) {
|
|
|
|
mPendingImageUri = Uri.parse(pending);
|
|
|
|
}
|
2014-10-03 09:00:29 -04:00
|
|
|
}
|
|
|
|
|
2014-01-24 17:58:51 -05:00
|
|
|
setContentView(R.layout.fragment_conversations_overview);
|
2014-01-24 04:50:18 -05:00
|
|
|
|
2014-11-07 09:38:20 -05:00
|
|
|
this.mConversationFragment = new ConversationFragment();
|
|
|
|
FragmentTransaction transaction = getFragmentManager().beginTransaction();
|
|
|
|
transaction.replace(R.id.selected_conversation, this.mConversationFragment, "conversation");
|
|
|
|
transaction.commit();
|
|
|
|
|
2014-01-27 14:40:42 -05:00
|
|
|
listView = (ListView) findViewById(R.id.list);
|
2014-11-07 15:49:31 -05:00
|
|
|
this.listAdapter = new ConversationAdapter(this, conversationList);
|
|
|
|
listView.setAdapter(this.listAdapter);
|
2014-08-31 10:28:21 -04:00
|
|
|
|
2014-11-07 09:09:28 -05:00
|
|
|
if (getActionBar() != null) {
|
|
|
|
getActionBar().setDisplayHomeAsUpEnabled(false);
|
|
|
|
getActionBar().setHomeButtonEnabled(false);
|
|
|
|
}
|
2014-01-25 13:33:12 -05:00
|
|
|
|
2014-01-23 20:04:05 -05:00
|
|
|
listView.setOnItemClickListener(new OnItemClickListener() {
|
|
|
|
|
|
|
|
@Override
|
2014-01-24 04:50:18 -05:00
|
|
|
public void onItemClick(AdapterView<?> arg0, View clickedView,
|
2014-12-21 15:43:58 -05:00
|
|
|
int position, long arg3) {
|
2014-05-13 11:11:27 -04:00
|
|
|
if (getSelectedConversation() != conversationList.get(position)) {
|
|
|
|
setSelectedConversation(conversationList.get(position));
|
2014-11-07 09:38:20 -05:00
|
|
|
ConversationActivity.this.mConversationFragment.reInit(getSelectedConversation());
|
2014-01-27 14:40:42 -05:00
|
|
|
}
|
2014-11-07 09:38:20 -05:00
|
|
|
hideConversationsOverview();
|
2014-01-23 20:04:05 -05:00
|
|
|
}
|
|
|
|
});
|
2014-10-03 09:00:29 -04:00
|
|
|
mContentView = findViewById(R.id.content_view_spl);
|
2014-10-05 18:33:52 -04:00
|
|
|
if (mContentView == null) {
|
2014-10-03 09:00:29 -04:00
|
|
|
mContentView = findViewById(R.id.content_view_ll);
|
|
|
|
}
|
|
|
|
if (mContentView instanceof SlidingPaneLayout) {
|
|
|
|
SlidingPaneLayout mSlidingPaneLayout = (SlidingPaneLayout) mContentView;
|
|
|
|
mSlidingPaneLayout.setParallaxDistance(150);
|
2014-10-05 18:33:52 -04:00
|
|
|
mSlidingPaneLayout
|
2014-12-21 15:43:58 -05:00
|
|
|
.setShadowResource(R.drawable.es_slidingpane_shadow);
|
2014-10-03 09:00:29 -04:00
|
|
|
mSlidingPaneLayout.setSliderFadeColor(0);
|
|
|
|
mSlidingPaneLayout.setPanelSlideListener(new PanelSlideListener() {
|
2014-01-24 04:50:18 -05:00
|
|
|
|
2014-10-03 09:00:29 -04:00
|
|
|
@Override
|
|
|
|
public void onPanelOpened(View arg0) {
|
2014-11-21 14:02:13 -05:00
|
|
|
updateActionBarTitle();
|
2014-10-03 09:00:29 -04:00
|
|
|
invalidateOptionsMenu();
|
|
|
|
hideKeyboard();
|
|
|
|
if (xmppConnectionServiceBound) {
|
|
|
|
xmppConnectionService.getNotificationService()
|
2014-12-21 15:43:58 -05:00
|
|
|
.setOpenConversation(null);
|
2014-10-03 09:00:29 -04:00
|
|
|
}
|
2014-10-23 15:27:41 -04:00
|
|
|
closeContextMenu();
|
2014-09-29 12:28:13 -04:00
|
|
|
}
|
2014-01-24 04:50:18 -05:00
|
|
|
|
2014-10-03 09:00:29 -04:00
|
|
|
@Override
|
|
|
|
public void onPanelClosed(View arg0) {
|
2014-11-07 15:49:31 -05:00
|
|
|
openConversation();
|
2014-01-24 04:50:18 -05:00
|
|
|
}
|
2014-01-23 20:04:05 -05:00
|
|
|
|
2014-10-03 09:00:29 -04:00
|
|
|
@Override
|
|
|
|
public void onPanelSlide(View arg0, float arg1) {
|
|
|
|
// TODO Auto-generated method stub
|
2014-01-24 04:50:18 -05:00
|
|
|
|
2014-10-03 09:00:29 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2014-01-23 20:04:05 -05:00
|
|
|
}
|
2014-10-03 09:00:29 -04:00
|
|
|
|
2014-11-20 12:20:42 -05:00
|
|
|
@Override
|
|
|
|
public void switchToConversation(Conversation conversation) {
|
|
|
|
setSelectedConversation(conversation);
|
|
|
|
runOnUiThread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
ConversationActivity.this.mConversationFragment.reInit(getSelectedConversation());
|
|
|
|
openConversation();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-11-21 14:02:13 -05:00
|
|
|
private void updateActionBarTitle() {
|
|
|
|
updateActionBarTitle(isConversationsOverviewHideable() && !isConversationsOverviewVisable());
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateActionBarTitle(boolean titleShouldBeName) {
|
2014-11-27 04:30:06 -05:00
|
|
|
final ActionBar ab = getActionBar();
|
|
|
|
final Conversation conversation = getSelectedConversation();
|
2014-09-29 12:28:13 -04:00
|
|
|
if (ab != null) {
|
2014-11-27 04:30:06 -05:00
|
|
|
if (titleShouldBeName && conversation != null) {
|
2014-11-21 14:02:13 -05:00
|
|
|
ab.setDisplayHomeAsUpEnabled(true);
|
|
|
|
ab.setHomeButtonEnabled(true);
|
2014-11-27 04:30:06 -05:00
|
|
|
if (conversation.getMode() == Conversation.MODE_SINGLE || useSubjectToIdentifyConference()) {
|
|
|
|
ab.setTitle(conversation.getName());
|
2014-11-21 14:02:13 -05:00
|
|
|
} else {
|
2014-12-21 15:43:58 -05:00
|
|
|
ab.setTitle(conversation.getJid().toBareJid().toString());
|
2014-11-21 14:02:13 -05:00
|
|
|
}
|
2014-09-29 12:28:13 -04:00
|
|
|
} else {
|
2014-11-21 14:02:13 -05:00
|
|
|
ab.setDisplayHomeAsUpEnabled(false);
|
|
|
|
ab.setHomeButtonEnabled(false);
|
|
|
|
ab.setTitle(R.string.app_name);
|
2014-09-29 12:28:13 -04:00
|
|
|
}
|
|
|
|
}
|
2014-11-21 14:02:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
private void openConversation() {
|
|
|
|
this.updateActionBarTitle();
|
|
|
|
this.invalidateOptionsMenu();
|
2014-09-29 12:28:13 -04:00
|
|
|
if (xmppConnectionServiceBound) {
|
2015-01-02 06:04:33 -05:00
|
|
|
final Conversation conversation = getSelectedConversation();
|
|
|
|
xmppConnectionService.getNotificationService().setOpenConversation(conversation);
|
|
|
|
sendReadMarkerIfNecessary(conversation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void sendReadMarkerIfNecessary(final Conversation conversation) {
|
|
|
|
if (!mActivityPaused && !conversation.isRead()) {
|
|
|
|
xmppConnectionService.sendReadMarker(conversation);
|
2014-09-29 12:28:13 -04:00
|
|
|
}
|
|
|
|
}
|
2014-01-24 04:50:18 -05:00
|
|
|
|
2014-01-23 20:04:05 -05:00
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
|
|
|
getMenuInflater().inflate(R.menu.conversations, menu);
|
2014-12-21 15:43:58 -05:00
|
|
|
final MenuItem menuSecure = menu.findItem(R.id.action_security);
|
|
|
|
final MenuItem menuArchive = menu.findItem(R.id.action_archive);
|
|
|
|
final MenuItem menuMucDetails = menu.findItem(R.id.action_muc_details);
|
|
|
|
final MenuItem menuContactDetails = menu.findItem(R.id.action_contact_details);
|
|
|
|
final MenuItem menuAttach = menu.findItem(R.id.action_attach_file);
|
|
|
|
final MenuItem menuClearHistory = menu.findItem(R.id.action_clear_history);
|
|
|
|
final MenuItem menuAdd = menu.findItem(R.id.action_add);
|
|
|
|
final MenuItem menuInviteContact = menu.findItem(R.id.action_invite);
|
|
|
|
final MenuItem menuMute = menu.findItem(R.id.action_mute);
|
|
|
|
final MenuItem menuUnmute = menu.findItem(R.id.action_unmute);
|
|
|
|
final MenuItem menuBlock = menu.findItem(R.id.action_block);
|
|
|
|
final MenuItem menuUnblock = menu.findItem(R.id.action_unblock);
|
2014-04-10 08:12:08 -04:00
|
|
|
|
2014-10-05 18:33:52 -04:00
|
|
|
if (isConversationsOverviewVisable()
|
|
|
|
&& isConversationsOverviewHideable()) {
|
2014-02-28 12:46:01 -05:00
|
|
|
menuArchive.setVisible(false);
|
|
|
|
menuMucDetails.setVisible(false);
|
|
|
|
menuContactDetails.setVisible(false);
|
2014-02-13 17:40:08 -05:00
|
|
|
menuSecure.setVisible(false);
|
2014-07-16 18:03:37 -04:00
|
|
|
menuInviteContact.setVisible(false);
|
2014-04-05 06:49:43 -04:00
|
|
|
menuAttach.setVisible(false);
|
2014-04-16 12:16:23 -04:00
|
|
|
menuClearHistory.setVisible(false);
|
2014-09-03 06:36:54 -04:00
|
|
|
menuMute.setVisible(false);
|
2014-11-18 07:51:04 -05:00
|
|
|
menuUnmute.setVisible(false);
|
2014-12-21 15:43:58 -05:00
|
|
|
menuBlock.setVisible(false);
|
|
|
|
menuUnblock.setVisible(false);
|
2014-01-23 20:04:05 -05:00
|
|
|
} else {
|
2014-10-03 09:00:29 -04:00
|
|
|
menuAdd.setVisible(!isConversationsOverviewHideable());
|
2014-04-10 08:12:08 -04:00
|
|
|
if (this.getSelectedConversation() != null) {
|
2014-06-01 13:08:42 -04:00
|
|
|
if (this.getSelectedConversation().getLatestMessage()
|
|
|
|
.getEncryption() != Message.ENCRYPTION_NONE) {
|
|
|
|
menuSecure.setIcon(R.drawable.ic_action_secure);
|
2014-12-21 15:43:58 -05:00
|
|
|
}
|
2014-02-06 20:57:36 -05:00
|
|
|
if (this.getSelectedConversation().getMode() == Conversation.MODE_MULTI) {
|
2014-02-28 12:46:01 -05:00
|
|
|
menuContactDetails.setVisible(false);
|
2014-04-05 06:49:43 -04:00
|
|
|
menuAttach.setVisible(false);
|
2014-12-21 15:43:58 -05:00
|
|
|
menuBlock.setVisible(false);
|
|
|
|
menuUnblock.setVisible(false);
|
2014-02-13 17:40:08 -05:00
|
|
|
} else {
|
2014-02-28 12:46:01 -05:00
|
|
|
menuMucDetails.setVisible(false);
|
2014-11-20 12:20:42 -05:00
|
|
|
menuInviteContact.setTitle(R.string.conference_with);
|
2014-12-21 15:43:58 -05:00
|
|
|
if (this.getSelectedConversation().isBlocked()) {
|
|
|
|
menuBlock.setVisible(false);
|
|
|
|
} else {
|
|
|
|
menuUnblock.setVisible(false);
|
|
|
|
}
|
2014-12-22 10:50:29 -05:00
|
|
|
final Account account = this.getSelectedConversation().getAccount();
|
2014-12-29 19:16:33 -05:00
|
|
|
if (!(account.isOnlineAndConnected() && account.getXmppConnection().getFeatures().blocking())) {
|
2014-12-21 15:43:58 -05:00
|
|
|
menuBlock.setVisible(false);
|
|
|
|
menuUnblock.setVisible(false);
|
|
|
|
}
|
2014-02-06 20:57:36 -05:00
|
|
|
}
|
2014-11-18 07:51:04 -05:00
|
|
|
if (this.getSelectedConversation().isMuted()) {
|
|
|
|
menuMute.setVisible(false);
|
|
|
|
} else {
|
|
|
|
menuUnmute.setVisible(false);
|
|
|
|
}
|
2014-02-06 20:57:36 -05:00
|
|
|
}
|
2014-01-23 20:04:05 -05:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2014-06-06 05:39:17 -04:00
|
|
|
|
2014-05-14 05:49:43 -04:00
|
|
|
private void selectPresenceToAttachFile(final int attachmentChoice) {
|
2014-05-07 06:33:55 -04:00
|
|
|
selectPresence(getSelectedConversation(), new OnPresenceSelected() {
|
2014-06-06 05:39:17 -04:00
|
|
|
|
2014-05-07 06:33:55 -04:00
|
|
|
@Override
|
2014-06-16 08:21:22 -04:00
|
|
|
public void onPresenceSelected() {
|
|
|
|
if (attachmentChoice == ATTACHMENT_CHOICE_TAKE_PHOTO) {
|
2014-11-06 11:25:14 -05:00
|
|
|
mPendingImageUri = xmppConnectionService.getFileBackend()
|
2014-12-21 15:43:58 -05:00
|
|
|
.getTakePhotoUri();
|
2014-06-16 08:21:22 -04:00
|
|
|
Intent takePictureIntent = new Intent(
|
|
|
|
MediaStore.ACTION_IMAGE_CAPTURE);
|
2014-08-31 10:28:21 -04:00
|
|
|
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT,
|
2014-11-06 11:25:14 -05:00
|
|
|
mPendingImageUri);
|
2014-06-16 08:21:22 -04:00
|
|
|
if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
|
|
|
|
startActivityForResult(takePictureIntent,
|
|
|
|
REQUEST_IMAGE_CAPTURE);
|
2014-05-13 11:42:23 -04:00
|
|
|
}
|
2014-06-16 08:21:22 -04:00
|
|
|
} else if (attachmentChoice == ATTACHMENT_CHOICE_CHOOSE_IMAGE) {
|
|
|
|
Intent attachFileIntent = new Intent();
|
|
|
|
attachFileIntent.setType("image/*");
|
|
|
|
attachFileIntent.setAction(Intent.ACTION_GET_CONTENT);
|
2014-11-13 15:04:05 -05:00
|
|
|
Intent chooser = Intent.createChooser(attachFileIntent,
|
|
|
|
getString(R.string.attach_file));
|
|
|
|
startActivityForResult(chooser, REQUEST_ATTACH_IMAGE_DIALOG);
|
|
|
|
} else if (attachmentChoice == ATTACHMENT_CHOICE_CHOOSE_FILE) {
|
|
|
|
Intent attachFileIntent = new Intent();
|
2014-11-13 18:28:39 -05:00
|
|
|
//attachFileIntent.setType("file/*");
|
|
|
|
attachFileIntent.setType("*/*");
|
|
|
|
attachFileIntent.addCategory(Intent.CATEGORY_OPENABLE);
|
2014-11-13 15:04:05 -05:00
|
|
|
attachFileIntent.setAction(Intent.ACTION_GET_CONTENT);
|
2014-06-16 08:21:22 -04:00
|
|
|
Intent chooser = Intent.createChooser(attachFileIntent,
|
|
|
|
getString(R.string.attach_file));
|
|
|
|
startActivityForResult(chooser, REQUEST_ATTACH_FILE_DIALOG);
|
2014-05-13 11:42:23 -04:00
|
|
|
}
|
|
|
|
}
|
2014-06-12 17:04:28 -04:00
|
|
|
});
|
2014-05-13 09:25:04 -04:00
|
|
|
}
|
2014-01-24 04:50:18 -05:00
|
|
|
|
2014-05-14 05:49:43 -04:00
|
|
|
private void attachFile(final int attachmentChoice) {
|
2014-05-08 08:23:09 -04:00
|
|
|
final Conversation conversation = getSelectedConversation();
|
2014-09-08 07:37:22 -04:00
|
|
|
if (conversation.getNextEncryption(forceEncryption()) == Message.ENCRYPTION_PGP) {
|
2014-05-07 06:33:55 -04:00
|
|
|
if (hasPgp()) {
|
2014-06-06 05:39:17 -04:00
|
|
|
if (conversation.getContact().getPgpKeyId() != 0) {
|
|
|
|
xmppConnectionService.getPgpEngine().hasKey(
|
2014-06-07 07:25:27 -04:00
|
|
|
conversation.getContact(),
|
|
|
|
new UiCallback<Contact>() {
|
2014-06-06 05:39:17 -04:00
|
|
|
|
|
|
|
@Override
|
2014-06-07 07:25:27 -04:00
|
|
|
public void userInputRequried(PendingIntent pi,
|
2014-12-21 15:43:58 -05:00
|
|
|
Contact contact) {
|
2014-06-06 05:39:17 -04:00
|
|
|
ConversationActivity.this.runIntent(pi,
|
|
|
|
attachmentChoice);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-07 07:25:27 -04:00
|
|
|
public void success(Contact contact) {
|
2014-06-06 05:39:17 -04:00
|
|
|
selectPresenceToAttachFile(attachmentChoice);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-07 07:25:27 -04:00
|
|
|
public void error(int error, Contact contact) {
|
2014-06-06 05:39:17 -04:00
|
|
|
displayErrorDialog(error);
|
|
|
|
}
|
|
|
|
});
|
2014-05-08 08:23:09 -04:00
|
|
|
} else {
|
|
|
|
final ConversationFragment fragment = (ConversationFragment) getFragmentManager()
|
2014-12-21 15:43:58 -05:00
|
|
|
.findFragmentByTag("conversation");
|
2014-05-08 08:23:09 -04:00
|
|
|
if (fragment != null) {
|
2014-06-06 05:39:17 -04:00
|
|
|
fragment.showNoPGPKeyDialog(false,
|
|
|
|
new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog,
|
2014-12-21 15:43:58 -05:00
|
|
|
int which) {
|
2014-06-06 05:39:17 -04:00
|
|
|
conversation
|
2014-12-21 15:43:58 -05:00
|
|
|
.setNextEncryption(Message.ENCRYPTION_NONE);
|
2014-09-28 09:21:56 -04:00
|
|
|
xmppConnectionService.databaseBackend
|
2014-12-21 15:43:58 -05:00
|
|
|
.updateConversation(conversation);
|
2014-06-06 05:39:17 -04:00
|
|
|
selectPresenceToAttachFile(attachmentChoice);
|
|
|
|
}
|
|
|
|
});
|
2014-05-07 06:33:55 -04:00
|
|
|
}
|
2014-05-08 08:23:09 -04:00
|
|
|
}
|
2014-06-09 15:25:01 -04:00
|
|
|
} else {
|
|
|
|
showInstallPgpDialog();
|
2014-05-07 06:33:55 -04:00
|
|
|
}
|
2014-09-08 17:58:37 -04:00
|
|
|
} else if (getSelectedConversation().getNextEncryption(
|
2014-12-21 15:43:58 -05:00
|
|
|
forceEncryption()) == Message.ENCRYPTION_NONE) {
|
2014-05-14 05:49:43 -04:00
|
|
|
selectPresenceToAttachFile(attachmentChoice);
|
2014-05-09 15:20:34 -04:00
|
|
|
} else {
|
2014-06-20 11:30:19 -04:00
|
|
|
selectPresenceToAttachFile(attachmentChoice);
|
2014-05-07 06:33:55 -04:00
|
|
|
}
|
|
|
|
}
|
2014-06-06 05:39:17 -04:00
|
|
|
|
2014-01-23 20:04:05 -05:00
|
|
|
@Override
|
2014-12-21 15:43:58 -05:00
|
|
|
public boolean onOptionsItemSelected(final MenuItem item) {
|
2014-09-23 09:06:49 -04:00
|
|
|
if (item.getItemId() == android.R.id.home) {
|
2014-10-03 09:00:29 -04:00
|
|
|
showConversationsOverview();
|
2014-08-15 07:18:15 -04:00
|
|
|
return true;
|
2014-09-23 09:06:49 -04:00
|
|
|
} else if (item.getItemId() == R.id.action_add) {
|
2014-07-16 18:03:37 -04:00
|
|
|
startActivity(new Intent(this, StartConversationActivity.class));
|
2014-09-23 09:06:49 -04:00
|
|
|
return true;
|
|
|
|
} else if (getSelectedConversation() != null) {
|
|
|
|
switch (item.getItemId()) {
|
2014-11-03 14:00:20 -05:00
|
|
|
case R.id.action_attach_file:
|
|
|
|
attachFileDialog();
|
|
|
|
break;
|
|
|
|
case R.id.action_archive:
|
|
|
|
this.endConversation(getSelectedConversation());
|
|
|
|
break;
|
|
|
|
case R.id.action_contact_details:
|
|
|
|
Contact contact = this.getSelectedConversation().getContact();
|
|
|
|
if (contact.showInRoster()) {
|
|
|
|
switchToContactDetails(contact);
|
|
|
|
} else {
|
|
|
|
showAddToRosterDialog(getSelectedConversation());
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case R.id.action_muc_details:
|
|
|
|
Intent intent = new Intent(this,
|
|
|
|
ConferenceDetailsActivity.class);
|
|
|
|
intent.setAction(ConferenceDetailsActivity.ACTION_VIEW_MUC);
|
|
|
|
intent.putExtra("uuid", getSelectedConversation().getUuid());
|
|
|
|
startActivity(intent);
|
|
|
|
break;
|
|
|
|
case R.id.action_invite:
|
|
|
|
inviteToConversation(getSelectedConversation());
|
|
|
|
break;
|
|
|
|
case R.id.action_security:
|
|
|
|
selectEncryptionDialog(getSelectedConversation());
|
|
|
|
break;
|
|
|
|
case R.id.action_clear_history:
|
|
|
|
clearHistoryDialog(getSelectedConversation());
|
|
|
|
break;
|
|
|
|
case R.id.action_mute:
|
|
|
|
muteConversationDialog(getSelectedConversation());
|
|
|
|
break;
|
2014-11-18 07:51:04 -05:00
|
|
|
case R.id.action_unmute:
|
|
|
|
unmuteConversation(getSelectedConversation());
|
|
|
|
break;
|
2014-12-21 15:43:58 -05:00
|
|
|
case R.id.action_block:
|
|
|
|
BlockContactDialog.show(this, xmppConnectionService, getSelectedConversation());
|
|
|
|
break;
|
|
|
|
case R.id.action_unblock:
|
|
|
|
BlockContactDialog.show(this, xmppConnectionService, getSelectedConversation());
|
|
|
|
break;
|
2014-11-03 14:00:20 -05:00
|
|
|
default:
|
|
|
|
break;
|
2014-04-10 08:12:08 -04:00
|
|
|
}
|
2014-09-23 09:06:49 -04:00
|
|
|
return super.onOptionsItemSelected(item);
|
|
|
|
} else {
|
|
|
|
return super.onOptionsItemSelected(item);
|
2014-01-23 20:04:05 -05:00
|
|
|
}
|
|
|
|
}
|
2014-06-06 05:39:17 -04:00
|
|
|
|
2014-07-18 06:44:33 -04:00
|
|
|
public void endConversation(Conversation conversation) {
|
2014-04-20 14:48:16 -04:00
|
|
|
conversation.setStatus(Conversation.STATUS_ARCHIVED);
|
2014-10-03 09:00:29 -04:00
|
|
|
showConversationsOverview();
|
2014-04-20 14:48:16 -04:00
|
|
|
xmppConnectionService.archiveConversation(conversation);
|
|
|
|
if (conversationList.size() > 0) {
|
2014-05-13 11:11:27 -04:00
|
|
|
setSelectedConversation(conversationList.get(0));
|
2014-11-07 15:49:31 -05:00
|
|
|
this.mConversationFragment.reInit(getSelectedConversation());
|
2014-04-20 14:48:16 -04:00
|
|
|
} else {
|
2014-05-13 11:11:27 -04:00
|
|
|
setSelectedConversation(null);
|
2014-04-20 14:48:16 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-27 05:46:56 -04:00
|
|
|
@SuppressLint("InflateParams")
|
2014-04-20 14:48:16 -04:00
|
|
|
protected void clearHistoryDialog(final Conversation conversation) {
|
2014-04-16 12:16:23 -04:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setTitle(getString(R.string.clear_conversation_history));
|
2014-06-06 05:39:17 -04:00
|
|
|
View dialogView = getLayoutInflater().inflate(
|
|
|
|
R.layout.dialog_clear_history, null);
|
|
|
|
final CheckBox endConversationCheckBox = (CheckBox) dialogView
|
2014-12-21 15:43:58 -05:00
|
|
|
.findViewById(R.id.end_conversation_checkbox);
|
2014-04-16 12:16:23 -04:00
|
|
|
builder.setView(dialogView);
|
|
|
|
builder.setNegativeButton(getString(R.string.cancel), null);
|
2014-06-06 05:39:17 -04:00
|
|
|
builder.setPositiveButton(getString(R.string.delete_messages),
|
|
|
|
new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
2014-12-15 11:14:27 -05:00
|
|
|
ConversationActivity.this.xmppConnectionService.clearConversationHistory(conversation);
|
2014-06-06 05:39:17 -04:00
|
|
|
if (endConversationCheckBox.isChecked()) {
|
|
|
|
endConversation(conversation);
|
2014-12-14 12:10:46 -05:00
|
|
|
} else {
|
|
|
|
updateConversationList();
|
|
|
|
ConversationActivity.this.mConversationFragment.updateMessages();
|
2014-06-06 05:39:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-04-16 12:16:23 -04:00
|
|
|
builder.create().show();
|
|
|
|
}
|
2014-09-28 09:21:56 -04:00
|
|
|
|
2014-09-23 09:06:49 -04:00
|
|
|
protected void attachFileDialog() {
|
|
|
|
View menuAttachFile = findViewById(R.id.action_attach_file);
|
|
|
|
if (menuAttachFile == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
PopupMenu attachFilePopup = new PopupMenu(this, menuAttachFile);
|
|
|
|
attachFilePopup.inflate(R.menu.attachment_choices);
|
|
|
|
attachFilePopup
|
2014-12-21 15:43:58 -05:00
|
|
|
.setOnMenuItemClickListener(new OnMenuItemClickListener() {
|
2014-09-23 09:06:49 -04:00
|
|
|
|
2014-12-21 15:43:58 -05:00
|
|
|
@Override
|
|
|
|
public boolean onMenuItemClick(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case R.id.attach_choose_picture:
|
|
|
|
attachFile(ATTACHMENT_CHOICE_CHOOSE_IMAGE);
|
|
|
|
break;
|
|
|
|
case R.id.attach_take_picture:
|
|
|
|
attachFile(ATTACHMENT_CHOICE_TAKE_PHOTO);
|
|
|
|
break;
|
|
|
|
case R.id.attach_record_voice:
|
|
|
|
attachFile(ATTACHMENT_CHOICE_CHOOSE_FILE);
|
|
|
|
break;
|
2014-09-23 09:06:49 -04:00
|
|
|
}
|
2014-12-21 15:43:58 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
2014-09-23 09:06:49 -04:00
|
|
|
attachFilePopup.show();
|
|
|
|
}
|
|
|
|
|
2015-01-01 19:21:14 -05:00
|
|
|
public void verifyOtrSessionDialog(final Conversation conversation, View view) {
|
|
|
|
if (!conversation.hasValidOtrSession() || conversation.getOtrSession().getSessionStatus() != SessionStatus.ENCRYPTED) {
|
|
|
|
Toast.makeText(this, R.string.otr_session_not_started, Toast.LENGTH_LONG).show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (view == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
PopupMenu popup = new PopupMenu(this, view);
|
|
|
|
popup.inflate(R.menu.verification_choices);
|
|
|
|
popup.setOnMenuItemClickListener(new OnMenuItemClickListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onMenuItemClick(MenuItem menuItem) {
|
|
|
|
Intent intent = new Intent(ConversationActivity.this, VerifyOTRActivity.class);
|
|
|
|
intent.setAction(VerifyOTRActivity.ACTION_VERIFY_CONTACT);
|
|
|
|
intent.putExtra("contact", conversation.getContact().getJid().toBareJid().toString());
|
|
|
|
intent.putExtra("account", conversation.getAccount().getJid().toBareJid().toString());
|
|
|
|
switch (menuItem.getItemId()) {
|
|
|
|
case R.id.scan_fingerprint:
|
|
|
|
intent.putExtra("mode",VerifyOTRActivity.MODE_SCAN_FINGERPRINT);
|
|
|
|
break;
|
|
|
|
case R.id.ask_question:
|
|
|
|
intent.putExtra("mode",VerifyOTRActivity.MODE_ASK_QUESTION);
|
|
|
|
break;
|
|
|
|
case R.id.manual_verification:
|
|
|
|
intent.putExtra("mode",VerifyOTRActivity.MODE_MANUAL_VERIFICATION);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
startActivity(intent);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
popup.show();
|
|
|
|
}
|
|
|
|
|
2014-09-23 09:06:49 -04:00
|
|
|
protected void selectEncryptionDialog(final Conversation conversation) {
|
|
|
|
View menuItemView = findViewById(R.id.action_security);
|
|
|
|
if (menuItemView == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
PopupMenu popup = new PopupMenu(this, menuItemView);
|
|
|
|
final ConversationFragment fragment = (ConversationFragment) getFragmentManager()
|
2014-12-21 15:43:58 -05:00
|
|
|
.findFragmentByTag("conversation");
|
2014-09-23 09:06:49 -04:00
|
|
|
if (fragment != null) {
|
|
|
|
popup.setOnMenuItemClickListener(new OnMenuItemClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onMenuItemClick(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
2014-11-03 14:00:20 -05:00
|
|
|
case R.id.encryption_choice_none:
|
|
|
|
conversation.setNextEncryption(Message.ENCRYPTION_NONE);
|
|
|
|
item.setChecked(true);
|
|
|
|
break;
|
|
|
|
case R.id.encryption_choice_otr:
|
|
|
|
conversation.setNextEncryption(Message.ENCRYPTION_OTR);
|
|
|
|
item.setChecked(true);
|
|
|
|
break;
|
|
|
|
case R.id.encryption_choice_pgp:
|
|
|
|
if (hasPgp()) {
|
|
|
|
if (conversation.getAccount().getKeys()
|
|
|
|
.has("pgp_signature")) {
|
|
|
|
conversation
|
2014-12-21 15:43:58 -05:00
|
|
|
.setNextEncryption(Message.ENCRYPTION_PGP);
|
2014-11-03 14:00:20 -05:00
|
|
|
item.setChecked(true);
|
|
|
|
} else {
|
|
|
|
announcePgp(conversation.getAccount(),
|
|
|
|
conversation);
|
|
|
|
}
|
2014-09-23 09:06:49 -04:00
|
|
|
} else {
|
2014-11-03 14:00:20 -05:00
|
|
|
showInstallPgpDialog();
|
2014-09-23 09:06:49 -04:00
|
|
|
}
|
2014-11-03 14:00:20 -05:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
conversation.setNextEncryption(Message.ENCRYPTION_NONE);
|
|
|
|
break;
|
2014-09-23 09:06:49 -04:00
|
|
|
}
|
2014-09-28 09:21:56 -04:00
|
|
|
xmppConnectionService.databaseBackend
|
2014-12-21 15:43:58 -05:00
|
|
|
.updateConversation(conversation);
|
2014-09-23 09:06:49 -04:00
|
|
|
fragment.updateChatMsgHint();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
popup.inflate(R.menu.encryption_choices);
|
|
|
|
MenuItem otr = popup.getMenu().findItem(R.id.encryption_choice_otr);
|
|
|
|
MenuItem none = popup.getMenu().findItem(
|
|
|
|
R.id.encryption_choice_none);
|
|
|
|
if (conversation.getMode() == Conversation.MODE_MULTI) {
|
|
|
|
otr.setEnabled(false);
|
|
|
|
} else {
|
|
|
|
if (forceEncryption()) {
|
|
|
|
none.setVisible(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
switch (conversation.getNextEncryption(forceEncryption())) {
|
2014-11-03 14:00:20 -05:00
|
|
|
case Message.ENCRYPTION_NONE:
|
|
|
|
none.setChecked(true);
|
|
|
|
break;
|
|
|
|
case Message.ENCRYPTION_OTR:
|
|
|
|
otr.setChecked(true);
|
|
|
|
break;
|
|
|
|
case Message.ENCRYPTION_PGP:
|
|
|
|
popup.getMenu().findItem(R.id.encryption_choice_pgp)
|
2014-12-21 15:43:58 -05:00
|
|
|
.setChecked(true);
|
2014-11-03 14:00:20 -05:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
popup.getMenu().findItem(R.id.encryption_choice_none)
|
2014-12-21 15:43:58 -05:00
|
|
|
.setChecked(true);
|
2014-11-03 14:00:20 -05:00
|
|
|
break;
|
2014-09-23 09:06:49 -04:00
|
|
|
}
|
|
|
|
popup.show();
|
|
|
|
}
|
|
|
|
}
|
2014-09-08 07:37:22 -04:00
|
|
|
|
2014-09-03 06:36:54 -04:00
|
|
|
protected void muteConversationDialog(final Conversation conversation) {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2014-11-17 18:07:27 -05:00
|
|
|
builder.setTitle(R.string.disable_notifications);
|
2014-09-08 07:37:22 -04:00
|
|
|
final int[] durations = getResources().getIntArray(
|
|
|
|
R.array.mute_options_durations);
|
|
|
|
builder.setItems(R.array.mute_options_descriptions,
|
|
|
|
new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
2014-12-21 15:43:58 -05:00
|
|
|
public void onClick(final DialogInterface dialog, final int which) {
|
|
|
|
final long till;
|
2014-09-08 07:37:22 -04:00
|
|
|
if (durations[which] == -1) {
|
|
|
|
till = Long.MAX_VALUE;
|
|
|
|
} else {
|
|
|
|
till = SystemClock.elapsedRealtime()
|
2014-12-21 15:43:58 -05:00
|
|
|
+ (durations[which] * 1000);
|
2014-09-08 07:37:22 -04:00
|
|
|
}
|
|
|
|
conversation.setMutedTill(till);
|
2014-10-08 10:37:43 -04:00
|
|
|
ConversationActivity.this.xmppConnectionService.databaseBackend
|
2014-12-21 15:43:58 -05:00
|
|
|
.updateConversation(conversation);
|
2014-11-17 18:07:27 -05:00
|
|
|
updateConversationList();
|
|
|
|
ConversationActivity.this.mConversationFragment.updateMessages();
|
2014-11-18 07:51:04 -05:00
|
|
|
invalidateOptionsMenu();
|
2014-09-08 07:37:22 -04:00
|
|
|
}
|
|
|
|
});
|
2014-09-03 06:36:54 -04:00
|
|
|
builder.create().show();
|
|
|
|
}
|
2014-01-23 20:04:05 -05:00
|
|
|
|
2014-11-18 07:51:04 -05:00
|
|
|
public void unmuteConversation(final Conversation conversation) {
|
|
|
|
conversation.setMutedTill(0);
|
|
|
|
this.xmppConnectionService.databaseBackend.updateConversation(conversation);
|
|
|
|
updateConversationList();
|
|
|
|
ConversationActivity.this.mConversationFragment.updateMessages();
|
|
|
|
invalidateOptionsMenu();
|
|
|
|
}
|
|
|
|
|
2014-01-24 04:50:18 -05:00
|
|
|
@Override
|
2014-11-21 12:57:27 -05:00
|
|
|
public void onBackPressed() {
|
|
|
|
if (!isConversationsOverviewVisable()) {
|
|
|
|
showConversationsOverview();
|
|
|
|
} else {
|
|
|
|
moveTaskToBack(true);
|
2014-01-24 04:50:18 -05:00
|
|
|
}
|
|
|
|
}
|
2014-04-10 08:12:08 -04:00
|
|
|
|
2014-05-21 10:43:19 -04:00
|
|
|
@Override
|
2014-11-07 09:09:28 -05:00
|
|
|
protected void onNewIntent(final Intent intent) {
|
2014-07-27 13:05:39 -04:00
|
|
|
if (xmppConnectionServiceBound) {
|
2014-10-29 04:57:03 -04:00
|
|
|
if (intent != null && VIEW_CONVERSATION.equals(intent.getType())) {
|
2014-10-24 08:34:46 -04:00
|
|
|
handleViewConversationIntent(intent);
|
2014-05-21 10:43:19 -04:00
|
|
|
}
|
2014-07-27 13:05:39 -04:00
|
|
|
} else {
|
|
|
|
setIntent(intent);
|
2014-05-21 10:43:19 -04:00
|
|
|
}
|
|
|
|
}
|
2014-06-06 05:39:17 -04:00
|
|
|
|
2014-03-28 07:22:09 -04:00
|
|
|
@Override
|
2014-02-04 16:26:46 -05:00
|
|
|
public void onStart() {
|
|
|
|
super.onStart();
|
2014-03-28 07:22:09 -04:00
|
|
|
if (this.xmppConnectionServiceBound) {
|
|
|
|
this.onBackendConnected();
|
|
|
|
}
|
2014-04-10 08:12:08 -04:00
|
|
|
if (conversationList.size() >= 1) {
|
2014-09-10 11:59:57 -04:00
|
|
|
this.onConversationUpdate();
|
2014-02-05 16:33:39 -05:00
|
|
|
}
|
2014-02-04 16:26:46 -05:00
|
|
|
}
|
2014-04-10 08:12:08 -04:00
|
|
|
|
2015-01-02 06:04:33 -05:00
|
|
|
@Override
|
|
|
|
public void onPause() {
|
|
|
|
super.onPause();
|
|
|
|
this.mActivityPaused = true;
|
|
|
|
if (this.xmppConnectionServiceBound) {
|
|
|
|
this.xmppConnectionService.getNotificationService().setIsInForeground(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-09 14:22:21 -05:00
|
|
|
@Override
|
|
|
|
public void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
int theme = findTheme();
|
|
|
|
if (this.mTheme != theme) {
|
|
|
|
recreate();
|
|
|
|
}
|
2015-01-02 06:04:33 -05:00
|
|
|
this.mActivityPaused = false;
|
|
|
|
if (this.xmppConnectionServiceBound) {
|
|
|
|
this.xmppConnectionService.getNotificationService().setIsInForeground(true);
|
|
|
|
}
|
2014-12-09 14:22:21 -05:00
|
|
|
}
|
|
|
|
|
2014-10-03 09:00:29 -04:00
|
|
|
@Override
|
2014-11-07 09:09:28 -05:00
|
|
|
public void onSaveInstanceState(final Bundle savedInstanceState) {
|
2014-10-06 13:27:58 -04:00
|
|
|
Conversation conversation = getSelectedConversation();
|
2014-10-06 16:03:01 -04:00
|
|
|
if (conversation != null) {
|
2014-10-06 13:27:58 -04:00
|
|
|
savedInstanceState.putString(STATE_OPEN_CONVERSATION,
|
|
|
|
conversation.getUuid());
|
|
|
|
}
|
2014-10-05 18:33:52 -04:00
|
|
|
savedInstanceState.putBoolean(STATE_PANEL_OPEN,
|
|
|
|
isConversationsOverviewVisable());
|
2014-11-06 11:25:14 -05:00
|
|
|
if (this.mPendingImageUri != null) {
|
|
|
|
savedInstanceState.putString(STATE_PENDING_URI, this.mPendingImageUri.toString());
|
|
|
|
}
|
2014-10-03 09:00:29 -04:00
|
|
|
super.onSaveInstanceState(savedInstanceState);
|
|
|
|
}
|
|
|
|
|
2014-01-25 13:33:12 -05:00
|
|
|
@Override
|
2014-01-27 14:40:42 -05:00
|
|
|
void onBackendConnected() {
|
2015-01-02 06:04:33 -05:00
|
|
|
this.xmppConnectionService.getNotificationService().setIsInForeground(true);
|
2014-10-03 09:00:29 -04:00
|
|
|
updateConversationList();
|
|
|
|
if (xmppConnectionService.getAccounts().size() == 0) {
|
|
|
|
startActivity(new Intent(this, EditAccountActivity.class));
|
|
|
|
} else if (conversationList.size() <= 0) {
|
|
|
|
startActivity(new Intent(this, StartConversationActivity.class));
|
|
|
|
finish();
|
2014-10-29 04:57:03 -04:00
|
|
|
} else if (getIntent() != null
|
|
|
|
&& VIEW_CONVERSATION.equals(getIntent().getType())) {
|
|
|
|
handleViewConversationIntent(getIntent());
|
2014-10-03 09:00:29 -04:00
|
|
|
} else if (mOpenConverstaion != null) {
|
|
|
|
selectConversationByUuid(mOpenConverstaion);
|
2014-11-07 09:38:20 -05:00
|
|
|
if (mPanelOpen) {
|
2014-10-03 09:00:29 -04:00
|
|
|
showConversationsOverview();
|
2014-11-07 15:49:31 -05:00
|
|
|
} else {
|
|
|
|
if (isConversationsOverviewHideable()) {
|
|
|
|
openConversation();
|
|
|
|
}
|
2014-10-03 09:00:29 -04:00
|
|
|
}
|
2014-11-07 09:38:20 -05:00
|
|
|
this.mConversationFragment.reInit(getSelectedConversation());
|
2014-10-03 09:00:29 -04:00
|
|
|
mOpenConverstaion = null;
|
2014-11-08 14:51:27 -05:00
|
|
|
} else if (getSelectedConversation() != null) {
|
|
|
|
this.mConversationFragment.updateMessages();
|
|
|
|
} else {
|
2014-10-03 09:00:29 -04:00
|
|
|
showConversationsOverview();
|
2014-11-07 09:38:20 -05:00
|
|
|
mPendingImageUri = null;
|
2014-11-13 15:04:05 -05:00
|
|
|
mPendingFileUri = null;
|
2014-11-07 09:38:20 -05:00
|
|
|
setSelectedConversation(conversationList.get(0));
|
|
|
|
this.mConversationFragment.reInit(getSelectedConversation());
|
2014-01-27 14:40:42 -05:00
|
|
|
}
|
2014-08-31 10:28:21 -04:00
|
|
|
|
2014-11-06 11:25:14 -05:00
|
|
|
if (mPendingImageUri != null) {
|
2014-11-13 15:04:05 -05:00
|
|
|
attachImageToConversation(getSelectedConversation(),mPendingImageUri);
|
2014-11-06 11:25:14 -05:00
|
|
|
mPendingImageUri = null;
|
2014-11-13 15:04:05 -05:00
|
|
|
} else if (mPendingFileUri != null) {
|
|
|
|
attachFileToConversation(getSelectedConversation(),mPendingFileUri);
|
|
|
|
mPendingFileUri = null;
|
2014-08-21 03:19:18 -04:00
|
|
|
}
|
2014-10-03 09:00:29 -04:00
|
|
|
ExceptionHelper.checkForCrash(this, this.xmppConnectionService);
|
2014-11-07 15:49:31 -05:00
|
|
|
setIntent(new Intent());
|
2014-10-03 09:00:29 -04:00
|
|
|
}
|
2014-10-29 04:57:03 -04:00
|
|
|
|
2014-10-24 08:34:46 -04:00
|
|
|
private void handleViewConversationIntent(Intent intent) {
|
|
|
|
String uuid = (String) intent.getExtras().get(CONVERSATION);
|
2014-11-07 09:38:20 -05:00
|
|
|
String text = intent.getExtras().getString(TEXT, "");
|
2014-11-16 19:54:01 -05:00
|
|
|
String nick = intent.getExtras().getString(NICK,null);
|
2014-10-24 08:34:46 -04:00
|
|
|
selectConversationByUuid(uuid);
|
2014-11-07 09:38:20 -05:00
|
|
|
this.mConversationFragment.reInit(getSelectedConversation());
|
2014-11-16 19:54:01 -05:00
|
|
|
if (nick!=null) {
|
|
|
|
this.mConversationFragment.highlightInConference(nick);
|
|
|
|
} else {
|
|
|
|
this.mConversationFragment.appendText(text);
|
|
|
|
}
|
2014-11-07 09:38:20 -05:00
|
|
|
hideConversationsOverview();
|
2014-11-21 14:02:13 -05:00
|
|
|
openConversation();
|
2014-11-07 15:49:31 -05:00
|
|
|
if (mContentView instanceof SlidingPaneLayout) {
|
2014-11-21 14:02:13 -05:00
|
|
|
updateActionBarTitle(true); //fixes bug where slp isn't properly closed yet
|
2014-11-07 15:49:31 -05:00
|
|
|
}
|
2014-10-24 08:34:46 -04:00
|
|
|
}
|
2014-01-25 13:33:12 -05:00
|
|
|
|
2014-10-03 09:00:29 -04:00
|
|
|
private void selectConversationByUuid(String uuid) {
|
2014-12-21 15:43:58 -05:00
|
|
|
for (Conversation aConversationList : conversationList) {
|
|
|
|
if (aConversationList.getUuid().equals(uuid)) {
|
|
|
|
setSelectedConversation(aConversationList);
|
|
|
|
}
|
|
|
|
}
|
2014-01-25 13:33:12 -05:00
|
|
|
}
|
2014-04-10 08:12:08 -04:00
|
|
|
|
2014-11-11 11:39:28 -05:00
|
|
|
@Override
|
|
|
|
protected void unregisterListeners() {
|
|
|
|
super.unregisterListeners();
|
|
|
|
xmppConnectionService.getNotificationService().setOpenConversation(null);
|
2014-03-10 16:52:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-06 05:39:17 -04:00
|
|
|
protected void onActivityResult(int requestCode, int resultCode,
|
2014-12-21 15:43:58 -05:00
|
|
|
final Intent data) {
|
2014-04-10 08:12:08 -04:00
|
|
|
super.onActivityResult(requestCode, resultCode, data);
|
|
|
|
if (resultCode == RESULT_OK) {
|
2014-02-27 20:58:15 -05:00
|
|
|
if (requestCode == REQUEST_DECRYPT_PGP) {
|
2014-11-30 16:27:11 -05:00
|
|
|
mConversationFragment.hideSnackbar();
|
|
|
|
mConversationFragment.updateMessages();
|
2014-11-13 15:04:05 -05:00
|
|
|
} else if (requestCode == REQUEST_ATTACH_IMAGE_DIALOG) {
|
2014-11-06 11:25:14 -05:00
|
|
|
mPendingImageUri = data.getData();
|
2014-08-21 03:19:18 -04:00
|
|
|
if (xmppConnectionServiceBound) {
|
2014-08-31 10:28:21 -04:00
|
|
|
attachImageToConversation(getSelectedConversation(),
|
2014-11-06 11:25:14 -05:00
|
|
|
mPendingImageUri);
|
|
|
|
mPendingImageUri = null;
|
2014-08-21 03:19:18 -04:00
|
|
|
}
|
2014-11-13 15:04:05 -05:00
|
|
|
} else if (requestCode == REQUEST_ATTACH_FILE_DIALOG) {
|
|
|
|
mPendingFileUri = data.getData();
|
|
|
|
if (xmppConnectionServiceBound) {
|
|
|
|
attachFileToConversation(getSelectedConversation(),
|
|
|
|
mPendingFileUri);
|
|
|
|
mPendingFileUri = null;
|
|
|
|
}
|
2014-05-08 10:52:19 -04:00
|
|
|
} else if (requestCode == REQUEST_SEND_PGP_IMAGE) {
|
2014-06-06 05:39:17 -04:00
|
|
|
|
2014-05-14 05:49:43 -04:00
|
|
|
} else if (requestCode == ATTACHMENT_CHOICE_CHOOSE_IMAGE) {
|
|
|
|
attachFile(ATTACHMENT_CHOICE_CHOOSE_IMAGE);
|
|
|
|
} else if (requestCode == ATTACHMENT_CHOICE_TAKE_PHOTO) {
|
|
|
|
attachFile(ATTACHMENT_CHOICE_TAKE_PHOTO);
|
2014-05-08 10:52:19 -04:00
|
|
|
} else if (requestCode == REQUEST_ANNOUNCE_PGP) {
|
2014-06-06 05:39:17 -04:00
|
|
|
announcePgp(getSelectedConversation().getAccount(),
|
|
|
|
getSelectedConversation());
|
2014-05-08 11:31:53 -04:00
|
|
|
} else if (requestCode == REQUEST_ENCRYPT_MESSAGE) {
|
2014-06-07 07:25:27 -04:00
|
|
|
// encryptTextMessage();
|
2014-11-06 11:25:14 -05:00
|
|
|
} else if (requestCode == REQUEST_IMAGE_CAPTURE && mPendingImageUri != null) {
|
2014-08-21 03:19:18 -04:00
|
|
|
if (xmppConnectionServiceBound) {
|
2014-08-31 10:28:21 -04:00
|
|
|
attachImageToConversation(getSelectedConversation(),
|
2014-11-06 11:25:14 -05:00
|
|
|
mPendingImageUri);
|
|
|
|
mPendingImageUri = null;
|
2014-08-21 03:19:18 -04:00
|
|
|
}
|
2014-08-31 10:28:21 -04:00
|
|
|
Intent intent = new Intent(
|
|
|
|
Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
|
2014-11-06 11:25:14 -05:00
|
|
|
intent.setData(mPendingImageUri);
|
2014-08-21 03:19:18 -04:00
|
|
|
sendBroadcast(intent);
|
2014-02-27 20:58:15 -05:00
|
|
|
}
|
2014-10-22 11:32:59 -04:00
|
|
|
} else {
|
|
|
|
if (requestCode == REQUEST_IMAGE_CAPTURE) {
|
2014-11-06 11:25:14 -05:00
|
|
|
mPendingImageUri = null;
|
2014-10-22 11:32:59 -04:00
|
|
|
}
|
2014-04-10 08:12:08 -04:00
|
|
|
}
|
|
|
|
}
|
2014-06-06 05:39:17 -04:00
|
|
|
|
2014-11-13 15:04:05 -05:00
|
|
|
private void attachFileToConversation(Conversation conversation, Uri uri) {
|
2014-11-14 06:31:57 -05:00
|
|
|
prepareFileToast = Toast.makeText(getApplicationContext(),
|
|
|
|
getText(R.string.preparing_file), Toast.LENGTH_LONG);
|
|
|
|
prepareFileToast.show();
|
2014-11-13 18:28:39 -05:00
|
|
|
xmppConnectionService.attachFileToConversation(conversation,uri, new UiCallback<Message>() {
|
|
|
|
@Override
|
|
|
|
public void success(Message message) {
|
2014-11-14 06:31:57 -05:00
|
|
|
hidePrepareFileToast();
|
2014-11-13 18:28:39 -05:00
|
|
|
xmppConnectionService.sendMessage(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void error(int errorCode, Message message) {
|
2014-11-14 06:31:57 -05:00
|
|
|
displayErrorDialog(errorCode);
|
2014-11-13 18:28:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void userInputRequried(PendingIntent pi, Message message) {
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
2014-05-18 11:32:20 -04:00
|
|
|
}
|
|
|
|
|
2014-05-14 05:49:43 -04:00
|
|
|
private void attachImageToConversation(Conversation conversation, Uri uri) {
|
2014-11-14 06:31:57 -05:00
|
|
|
prepareFileToast = Toast.makeText(getApplicationContext(),
|
2014-06-06 05:39:17 -04:00
|
|
|
getText(R.string.preparing_image), Toast.LENGTH_LONG);
|
2014-11-14 06:31:57 -05:00
|
|
|
prepareFileToast.show();
|
2014-06-07 07:25:27 -04:00
|
|
|
xmppConnectionService.attachImageToConversation(conversation, uri,
|
|
|
|
new UiCallback<Message>() {
|
2014-06-06 05:39:17 -04:00
|
|
|
|
|
|
|
@Override
|
2014-06-07 07:25:27 -04:00
|
|
|
public void userInputRequried(PendingIntent pi,
|
2014-12-21 15:43:58 -05:00
|
|
|
Message object) {
|
2014-11-14 06:31:57 -05:00
|
|
|
hidePrepareFileToast();
|
2014-06-06 05:39:17 -04:00
|
|
|
ConversationActivity.this.runIntent(pi,
|
|
|
|
ConversationActivity.REQUEST_SEND_PGP_IMAGE);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-07 07:25:27 -04:00
|
|
|
public void success(Message message) {
|
2014-06-11 15:53:25 -04:00
|
|
|
xmppConnectionService.sendMessage(message);
|
2014-06-06 05:39:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-07 07:25:27 -04:00
|
|
|
public void error(int error, Message message) {
|
2014-11-14 06:31:57 -05:00
|
|
|
hidePrepareFileToast();
|
2014-06-06 05:39:17 -04:00
|
|
|
displayErrorDialog(error);
|
|
|
|
}
|
|
|
|
});
|
2014-05-08 10:52:19 -04:00
|
|
|
}
|
2014-06-06 05:39:17 -04:00
|
|
|
|
2014-11-14 06:31:57 -05:00
|
|
|
private void hidePrepareFileToast() {
|
|
|
|
if (prepareFileToast != null) {
|
2014-05-14 12:43:58 -04:00
|
|
|
runOnUiThread(new Runnable() {
|
2014-06-06 05:39:17 -04:00
|
|
|
|
2014-05-14 12:43:58 -04:00
|
|
|
@Override
|
|
|
|
public void run() {
|
2014-11-14 06:31:57 -05:00
|
|
|
prepareFileToast.cancel();
|
2014-05-14 12:43:58 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2014-03-19 11:16:40 -04:00
|
|
|
|
|
|
|
public void updateConversationList() {
|
2014-08-31 10:28:21 -04:00
|
|
|
xmppConnectionService
|
2014-12-21 15:43:58 -05:00
|
|
|
.populateWithOrderedConversations(conversationList);
|
2014-09-08 06:46:48 -04:00
|
|
|
listAdapter.notifyDataSetChanged();
|
2014-03-19 11:16:40 -04:00
|
|
|
}
|
2014-06-06 05:39:17 -04:00
|
|
|
|
2014-05-07 06:33:55 -04:00
|
|
|
public void runIntent(PendingIntent pi, int requestCode) {
|
|
|
|
try {
|
2014-06-06 05:39:17 -04:00
|
|
|
this.startIntentSenderForResult(pi.getIntentSender(), requestCode,
|
|
|
|
null, 0, 0, 0);
|
2014-11-07 09:09:28 -05:00
|
|
|
} catch (final SendIntentException ignored) {
|
2014-08-31 10:28:21 -04:00
|
|
|
}
|
2014-05-07 06:33:55 -04:00
|
|
|
}
|
2014-06-06 05:39:17 -04:00
|
|
|
|
2014-06-07 07:25:27 -04:00
|
|
|
public void encryptTextMessage(Message message) {
|
|
|
|
xmppConnectionService.getPgpEngine().encrypt(message,
|
|
|
|
new UiCallback<Message>() {
|
2014-05-08 11:31:53 -04:00
|
|
|
|
|
|
|
@Override
|
2014-06-07 07:25:27 -04:00
|
|
|
public void userInputRequried(PendingIntent pi,
|
2014-12-21 15:43:58 -05:00
|
|
|
Message message) {
|
2014-10-08 10:37:43 -04:00
|
|
|
ConversationActivity.this.runIntent(pi,
|
2014-05-08 11:31:53 -04:00
|
|
|
ConversationActivity.REQUEST_SEND_MESSAGE);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-07 07:25:27 -04:00
|
|
|
public void success(Message message) {
|
2014-06-22 11:24:47 -04:00
|
|
|
message.setEncryption(Message.ENCRYPTION_DECRYPTED);
|
2014-06-11 15:53:25 -04:00
|
|
|
xmppConnectionService.sendMessage(message);
|
2014-05-08 11:31:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-07 07:25:27 -04:00
|
|
|
public void error(int error, Message message) {
|
2014-05-08 11:31:53 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2014-09-08 07:37:22 -04:00
|
|
|
|
|
|
|
public boolean forceEncryption() {
|
2014-09-10 11:59:57 -04:00
|
|
|
return getPreferences().getBoolean("force_encryption", false);
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean useSendButtonToIndicateStatus() {
|
|
|
|
return getPreferences().getBoolean("send_button_status", false);
|
|
|
|
}
|
|
|
|
|
2014-09-20 09:49:25 -04:00
|
|
|
public boolean indicateReceived() {
|
|
|
|
return getPreferences().getBoolean("indicate_received", false);
|
|
|
|
}
|
|
|
|
|
2014-09-10 11:59:57 -04:00
|
|
|
@Override
|
|
|
|
public void onAccountUpdate() {
|
2014-11-21 14:02:13 -05:00
|
|
|
runOnUiThread(new Runnable() {
|
2014-09-10 11:59:57 -04:00
|
|
|
|
2014-11-21 14:02:13 -05:00
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
updateConversationList();
|
|
|
|
ConversationActivity.this.mConversationFragment.updateMessages();
|
|
|
|
updateActionBarTitle();
|
|
|
|
}
|
|
|
|
});
|
2014-09-10 11:59:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onConversationUpdate() {
|
|
|
|
runOnUiThread(new Runnable() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
updateConversationList();
|
2014-11-07 09:38:20 -05:00
|
|
|
if (conversationList.size() == 0) {
|
2014-11-10 18:16:43 -05:00
|
|
|
startActivity(new Intent(getApplicationContext(),
|
2014-12-21 15:43:58 -05:00
|
|
|
StartConversationActivity.class));
|
2014-11-10 18:16:43 -05:00
|
|
|
finish();
|
2014-09-10 11:59:57 -04:00
|
|
|
}
|
2014-11-10 18:16:43 -05:00
|
|
|
ConversationActivity.this.mConversationFragment.updateMessages();
|
2014-11-21 14:02:13 -05:00
|
|
|
updateActionBarTitle();
|
2014-09-10 11:59:57 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onRosterUpdate() {
|
2014-11-07 09:38:20 -05:00
|
|
|
runOnUiThread(new Runnable() {
|
2014-09-10 11:59:57 -04:00
|
|
|
|
2014-12-21 15:43:58 -05:00
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
updateConversationList();
|
|
|
|
ConversationActivity.this.mConversationFragment.updateMessages();
|
|
|
|
updateActionBarTitle();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void OnUpdateBlocklist(Status status) {
|
|
|
|
invalidateOptionsMenu();
|
|
|
|
runOnUiThread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
ConversationActivity.this.mConversationFragment.updateMessages();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public void unblockConversation(final Blockable conversation) {
|
|
|
|
xmppConnectionService.sendUnblockRequest(conversation);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void blockConversation(final Blockable conversation) {
|
|
|
|
xmppConnectionService.sendBlockRequest(conversation);
|
2014-09-08 07:37:22 -04:00
|
|
|
}
|
2014-01-23 20:04:05 -05:00
|
|
|
}
|