2014-02-28 18:46:01 +01:00
|
|
|
package eu.siacs.conversations.ui;
|
2014-01-24 02:04:05 +01:00
|
|
|
|
2014-01-25 19:33:12 +01:00
|
|
|
import java.util.ArrayList;
|
2014-04-10 14:12:08 +02:00
|
|
|
import java.util.Hashtable;
|
2014-01-24 23:58:51 +01:00
|
|
|
import java.util.List;
|
2014-01-24 02:04:05 +01:00
|
|
|
|
2014-02-28 18:46:01 +01:00
|
|
|
import eu.siacs.conversations.R;
|
|
|
|
import eu.siacs.conversations.entities.Account;
|
|
|
|
import eu.siacs.conversations.entities.Contact;
|
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
|
|
|
import eu.siacs.conversations.entities.Message;
|
2014-03-27 16:09:23 +01:00
|
|
|
import eu.siacs.conversations.utils.ExceptionHelper;
|
2014-02-28 18:46:01 +01:00
|
|
|
import eu.siacs.conversations.utils.UIHelper;
|
2014-01-24 02:04:05 +01:00
|
|
|
import android.os.Bundle;
|
2014-03-14 22:40:56 +01:00
|
|
|
import android.preference.PreferenceManager;
|
2014-02-20 17:00:50 +01:00
|
|
|
import android.app.AlertDialog;
|
2014-01-24 02:04:05 +01:00
|
|
|
import android.app.FragmentTransaction;
|
|
|
|
import android.content.Context;
|
2014-02-20 17:00:50 +01:00
|
|
|
import android.content.DialogInterface;
|
2014-01-24 02:04:05 +01:00
|
|
|
import android.content.Intent;
|
2014-03-14 22:40:56 +01:00
|
|
|
import android.content.SharedPreferences;
|
2014-03-07 18:13:19 +01:00
|
|
|
import android.graphics.Color;
|
2014-02-10 22:45:59 +01:00
|
|
|
import android.graphics.Typeface;
|
2014-01-24 02:04:05 +01:00
|
|
|
import android.support.v4.widget.SlidingPaneLayout;
|
|
|
|
import android.support.v4.widget.SlidingPaneLayout.PanelSlideListener;
|
2014-01-24 10:50:18 +01:00
|
|
|
import android.view.KeyEvent;
|
2014-01-24 23:58:51 +01:00
|
|
|
import android.view.LayoutInflater;
|
2014-01-24 02:04:05 +01:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuItem;
|
|
|
|
import android.view.View;
|
2014-01-24 23:58:51 +01:00
|
|
|
import android.view.ViewGroup;
|
2014-01-24 02:04:05 +01:00
|
|
|
import android.widget.AdapterView;
|
|
|
|
import android.widget.AdapterView.OnItemClickListener;
|
2014-01-24 23:58:51 +01:00
|
|
|
import android.widget.ArrayAdapter;
|
2014-01-24 02:04:05 +01:00
|
|
|
import android.widget.ListView;
|
2014-02-16 16:32:15 +01:00
|
|
|
import android.widget.PopupMenu;
|
|
|
|
import android.widget.PopupMenu.OnMenuItemClickListener;
|
2014-01-24 23:58:51 +01:00
|
|
|
import android.widget.TextView;
|
|
|
|
import android.widget.ImageView;
|
2014-01-24 02:04:05 +01:00
|
|
|
|
2014-01-25 19:33:12 +01:00
|
|
|
public class ConversationActivity extends XmppActivity {
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-25 19:33:12 +01:00
|
|
|
public static final String VIEW_CONVERSATION = "viewConversation";
|
2014-02-03 18:38:47 +01:00
|
|
|
public static final String CONVERSATION = "conversationUuid";
|
2014-03-13 21:37:27 +01:00
|
|
|
public static final String TEXT = "text";
|
2014-04-10 14:12:08 +02:00
|
|
|
public static final String PRESENCE = "eu.siacs.conversations.presence";
|
|
|
|
|
2014-02-28 00:22:56 +01:00
|
|
|
public static final int REQUEST_SEND_MESSAGE = 0x75441;
|
|
|
|
public static final int REQUEST_DECRYPT_PGP = 0x76783;
|
2014-04-05 21:06:10 +02:00
|
|
|
private static final int ATTACH_FILE = 0x48502;
|
2014-01-24 02:04:05 +01:00
|
|
|
|
|
|
|
protected SlidingPaneLayout spl;
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-27 20:40:42 +01:00
|
|
|
private List<Conversation> conversationList = new ArrayList<Conversation>();
|
2014-02-07 02:57:36 +01:00
|
|
|
private Conversation selectedConversation = null;
|
2014-01-27 20:40:42 +01:00
|
|
|
private ListView listView;
|
2014-04-10 14:12:08 +02:00
|
|
|
|
2014-01-27 20:40:42 +01:00
|
|
|
private boolean paneShouldBeOpen = true;
|
2014-03-14 22:40:56 +01:00
|
|
|
private boolean useSubject = true;
|
2014-02-01 15:07:20 +01:00
|
|
|
private ArrayAdapter<Conversation> listAdapter;
|
2014-04-10 14:12:08 +02:00
|
|
|
|
2014-02-01 15:07:20 +01:00
|
|
|
private OnConversationListChangedListener onConvChanged = new OnConversationListChangedListener() {
|
2014-04-10 14:12:08 +02:00
|
|
|
|
2014-02-01 15:07:20 +01:00
|
|
|
@Override
|
|
|
|
public void onConversationListChanged() {
|
|
|
|
runOnUiThread(new Runnable() {
|
2014-04-10 14:12:08 +02:00
|
|
|
|
2014-02-01 15:07:20 +01:00
|
|
|
@Override
|
2014-04-10 14:12:08 +02:00
|
|
|
public void run() {
|
2014-02-02 16:05:15 +01:00
|
|
|
updateConversationList();
|
2014-04-10 14:12:08 +02:00
|
|
|
if (paneShouldBeOpen) {
|
2014-02-01 15:07:20 +01:00
|
|
|
if (conversationList.size() >= 1) {
|
|
|
|
swapConversationFragment();
|
|
|
|
} else {
|
2014-04-10 14:12:08 +02:00
|
|
|
startActivity(new Intent(getApplicationContext(),
|
|
|
|
ContactsActivity.class));
|
2014-02-01 15:07:20 +01:00
|
|
|
finish();
|
|
|
|
}
|
|
|
|
}
|
2014-04-10 14:12:08 +02:00
|
|
|
ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager()
|
|
|
|
.findFragmentByTag("conversation");
|
|
|
|
if (selectedFragment != null) {
|
2014-02-02 16:33:34 +01:00
|
|
|
selectedFragment.updateMessages();
|
|
|
|
}
|
2014-02-01 15:07:20 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
2014-02-20 17:00:50 +01:00
|
|
|
|
2014-03-13 03:52:41 +01:00
|
|
|
protected ConversationActivity activity = this;
|
2014-04-10 14:12:08 +02:00
|
|
|
|
2014-01-27 20:40:42 +01:00
|
|
|
public List<Conversation> getConversationList() {
|
|
|
|
return this.conversationList;
|
|
|
|
}
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-02-07 02:57:36 +01:00
|
|
|
public Conversation getSelectedConversation() {
|
2014-01-27 20:40:42 +01:00
|
|
|
return this.selectedConversation;
|
|
|
|
}
|
2014-04-10 14:12:08 +02:00
|
|
|
|
2014-01-27 20:40:42 +01:00
|
|
|
public ListView getConversationListView() {
|
|
|
|
return this.listView;
|
|
|
|
}
|
2014-04-10 14:12:08 +02:00
|
|
|
|
2014-01-27 20:40:42 +01:00
|
|
|
public SlidingPaneLayout getSlidingPaneLayout() {
|
|
|
|
return this.spl;
|
|
|
|
}
|
2014-04-10 14:12:08 +02:00
|
|
|
|
2014-01-27 20:40:42 +01:00
|
|
|
public boolean shouldPaneBeOpen() {
|
|
|
|
return paneShouldBeOpen;
|
|
|
|
}
|
2014-04-10 14:12:08 +02:00
|
|
|
|
2014-01-24 02:04:05 +01:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-25 19:33:12 +01:00
|
|
|
super.onCreate(savedInstanceState);
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-24 23:58:51 +01:00
|
|
|
setContentView(R.layout.fragment_conversations_overview);
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-27 20:40:42 +01:00
|
|
|
listView = (ListView) findViewById(R.id.list);
|
2014-01-25 19:33:12 +01:00
|
|
|
|
2014-02-01 15:07:20 +01:00
|
|
|
this.listAdapter = new ArrayAdapter<Conversation>(this,
|
2014-01-25 19:33:12 +01:00
|
|
|
R.layout.conversation_list_row, conversationList) {
|
2014-01-24 23:58:51 +01:00
|
|
|
@Override
|
2014-01-25 19:33:12 +01:00
|
|
|
public View getView(int position, View view, ViewGroup parent) {
|
2014-01-24 23:58:51 +01:00
|
|
|
if (view == null) {
|
2014-01-25 19:33:12 +01:00
|
|
|
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
view = (View) inflater.inflate(
|
|
|
|
R.layout.conversation_list_row, null);
|
2014-01-24 23:58:51 +01:00
|
|
|
}
|
2014-03-08 02:06:00 +01:00
|
|
|
Conversation conv;
|
|
|
|
if (conversationList.size() > position) {
|
|
|
|
conv = getItem(position);
|
|
|
|
} else {
|
|
|
|
return view;
|
|
|
|
}
|
2014-03-07 18:13:19 +01:00
|
|
|
if (!spl.isSlideable()) {
|
2014-04-10 14:12:08 +02:00
|
|
|
if (conv == getSelectedConversation()) {
|
2014-03-07 18:13:19 +01:00
|
|
|
view.setBackgroundColor(0xffdddddd);
|
|
|
|
} else {
|
|
|
|
view.setBackgroundColor(Color.TRANSPARENT);
|
|
|
|
}
|
2014-03-08 13:40:20 +01:00
|
|
|
} else {
|
|
|
|
view.setBackgroundColor(Color.TRANSPARENT);
|
2014-03-07 18:13:19 +01:00
|
|
|
}
|
2014-04-10 14:12:08 +02:00
|
|
|
TextView convName = (TextView) view
|
|
|
|
.findViewById(R.id.conversation_name);
|
2014-03-14 22:40:56 +01:00
|
|
|
convName.setText(conv.getName(useSubject));
|
2014-04-10 14:12:08 +02:00
|
|
|
TextView convLastMsg = (TextView) view
|
|
|
|
.findViewById(R.id.conversation_lastmsg);
|
2014-02-13 23:40:08 +01:00
|
|
|
convLastMsg.setText(conv.getLatestMessage().getBody());
|
2014-04-10 14:12:08 +02:00
|
|
|
|
|
|
|
if (!conv.isRead()) {
|
|
|
|
convName.setTypeface(null, Typeface.BOLD);
|
|
|
|
convLastMsg.setTypeface(null, Typeface.BOLD);
|
2014-02-10 22:45:59 +01:00
|
|
|
} else {
|
2014-04-10 14:12:08 +02:00
|
|
|
convName.setTypeface(null, Typeface.NORMAL);
|
|
|
|
convLastMsg.setTypeface(null, Typeface.NORMAL);
|
2014-02-10 22:45:59 +01:00
|
|
|
}
|
2014-04-10 14:12:08 +02:00
|
|
|
|
2014-01-26 03:27:55 +01:00
|
|
|
((TextView) view.findViewById(R.id.conversation_lastupdate))
|
2014-04-10 14:12:08 +02:00
|
|
|
.setText(UIHelper.readableTimeDifference(conv
|
|
|
|
.getLatestMessage().getTimeSent()));
|
|
|
|
|
|
|
|
ImageView imageView = (ImageView) view
|
|
|
|
.findViewById(R.id.conversation_image);
|
|
|
|
imageView.setImageBitmap(UIHelper.getContactPicture(
|
|
|
|
conv.getContact(), conv.getName(useSubject), 200,
|
|
|
|
activity.getApplicationContext()));
|
2014-01-24 23:58:51 +01:00
|
|
|
return view;
|
|
|
|
}
|
2014-01-25 19:33:12 +01:00
|
|
|
|
2014-02-01 15:07:20 +01:00
|
|
|
};
|
2014-04-10 14:12:08 +02:00
|
|
|
|
2014-02-01 15:07:20 +01:00
|
|
|
listView.setAdapter(this.listAdapter);
|
2014-01-25 19:33:12 +01:00
|
|
|
|
2014-01-24 02:04:05 +01:00
|
|
|
listView.setOnItemClickListener(new OnItemClickListener() {
|
|
|
|
|
|
|
|
@Override
|
2014-01-24 10:50:18 +01:00
|
|
|
public void onItemClick(AdapterView<?> arg0, View clickedView,
|
|
|
|
int position, long arg3) {
|
2014-01-27 20:40:42 +01:00
|
|
|
paneShouldBeOpen = false;
|
2014-02-07 02:57:36 +01:00
|
|
|
if (selectedConversation != conversationList.get(position)) {
|
|
|
|
selectedConversation = conversationList.get(position);
|
2014-04-10 14:12:08 +02:00
|
|
|
swapConversationFragment(); // .onBackendConnected(conversationList.get(position));
|
2014-01-27 20:40:42 +01:00
|
|
|
} else {
|
|
|
|
spl.closePane();
|
|
|
|
}
|
2014-01-24 02:04:05 +01:00
|
|
|
}
|
|
|
|
});
|
2014-02-28 18:46:01 +01:00
|
|
|
spl = (SlidingPaneLayout) findViewById(R.id.slidingpanelayout);
|
2014-01-24 02:04:05 +01:00
|
|
|
spl.setParallaxDistance(150);
|
|
|
|
spl.setShadowResource(R.drawable.es_slidingpane_shadow);
|
|
|
|
spl.setSliderFadeColor(0);
|
|
|
|
spl.setPanelSlideListener(new PanelSlideListener() {
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-24 02:04:05 +01:00
|
|
|
@Override
|
|
|
|
public void onPanelOpened(View arg0) {
|
2014-01-27 20:40:42 +01:00
|
|
|
paneShouldBeOpen = true;
|
2014-01-24 02:04:05 +01:00
|
|
|
getActionBar().setDisplayHomeAsUpEnabled(false);
|
|
|
|
getActionBar().setTitle(R.string.app_name);
|
|
|
|
invalidateOptionsMenu();
|
2014-03-03 05:01:02 +01:00
|
|
|
hideKeyboard();
|
2014-01-24 02:04:05 +01:00
|
|
|
}
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-24 02:04:05 +01:00
|
|
|
@Override
|
|
|
|
public void onPanelClosed(View arg0) {
|
2014-02-02 16:05:15 +01:00
|
|
|
paneShouldBeOpen = false;
|
2014-04-10 14:12:08 +02:00
|
|
|
if ((conversationList.size() > 0)
|
|
|
|
&& (getSelectedConversation() != null)) {
|
2014-01-24 10:50:18 +01:00
|
|
|
getActionBar().setDisplayHomeAsUpEnabled(true);
|
2014-04-10 14:12:08 +02:00
|
|
|
getActionBar().setTitle(
|
|
|
|
getSelectedConversation().getName(useSubject));
|
2014-01-24 10:50:18 +01:00
|
|
|
invalidateOptionsMenu();
|
2014-02-10 22:45:59 +01:00
|
|
|
if (!getSelectedConversation().isRead()) {
|
|
|
|
getSelectedConversation().markRead();
|
2014-04-10 14:12:08 +02:00
|
|
|
UIHelper.updateNotification(getApplicationContext(),
|
|
|
|
getConversationList(), null, false);
|
2014-03-19 16:16:40 +01:00
|
|
|
listView.invalidateViews();
|
2014-02-10 22:45:59 +01:00
|
|
|
}
|
2014-01-24 10:50:18 +01:00
|
|
|
}
|
2014-01-24 02:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPanelSlide(View arg0, float arg1) {
|
|
|
|
// TODO Auto-generated method stub
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-24 02:04:05 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-24 02:04:05 +01:00
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
|
|
|
getMenuInflater().inflate(R.menu.conversations, menu);
|
2014-02-13 23:40:08 +01:00
|
|
|
MenuItem menuSecure = (MenuItem) menu.findItem(R.id.action_security);
|
2014-02-28 18:46:01 +01:00
|
|
|
MenuItem menuArchive = (MenuItem) menu.findItem(R.id.action_archive);
|
2014-04-10 14:12:08 +02:00
|
|
|
MenuItem menuMucDetails = (MenuItem) menu
|
|
|
|
.findItem(R.id.action_muc_details);
|
|
|
|
MenuItem menuContactDetails = (MenuItem) menu
|
|
|
|
.findItem(R.id.action_contact_details);
|
|
|
|
MenuItem menuInviteContacts = (MenuItem) menu
|
|
|
|
.findItem(R.id.action_invite);
|
2014-04-05 12:49:43 +02:00
|
|
|
MenuItem menuAttach = (MenuItem) menu.findItem(R.id.action_attach_file);
|
2014-04-10 14:12:08 +02:00
|
|
|
|
|
|
|
if ((spl.isOpen() && (spl.isSlideable()))) {
|
2014-02-28 18:46:01 +01:00
|
|
|
menuArchive.setVisible(false);
|
|
|
|
menuMucDetails.setVisible(false);
|
|
|
|
menuContactDetails.setVisible(false);
|
2014-02-13 23:40:08 +01:00
|
|
|
menuSecure.setVisible(false);
|
2014-03-15 15:13:35 +01:00
|
|
|
menuInviteContacts.setVisible(false);
|
2014-04-05 12:49:43 +02:00
|
|
|
menuAttach.setVisible(false);
|
2014-01-24 02:04:05 +01:00
|
|
|
} else {
|
2014-04-10 14:12:08 +02:00
|
|
|
((MenuItem) menu.findItem(R.id.action_add)).setVisible(!spl
|
|
|
|
.isSlideable());
|
|
|
|
if (this.getSelectedConversation() != null) {
|
2014-02-07 02:57:36 +01:00
|
|
|
if (this.getSelectedConversation().getMode() == Conversation.MODE_MULTI) {
|
2014-02-28 18:46:01 +01:00
|
|
|
menuMucDetails.setVisible(true);
|
|
|
|
menuContactDetails.setVisible(false);
|
2014-02-13 23:40:08 +01:00
|
|
|
menuSecure.setVisible(false);
|
2014-03-15 15:13:35 +01:00
|
|
|
menuInviteContacts.setVisible(true);
|
2014-04-05 12:49:43 +02:00
|
|
|
menuAttach.setVisible(false);
|
2014-02-13 23:40:08 +01:00
|
|
|
} else {
|
2014-02-28 18:46:01 +01:00
|
|
|
menuContactDetails.setVisible(true);
|
|
|
|
menuMucDetails.setVisible(false);
|
2014-03-15 15:13:35 +01:00
|
|
|
menuInviteContacts.setVisible(false);
|
2014-04-05 12:49:43 +02:00
|
|
|
menuAttach.setVisible(true);
|
2014-04-10 14:12:08 +02:00
|
|
|
if (this.getSelectedConversation().getLatestMessage()
|
|
|
|
.getEncryption() != Message.ENCRYPTION_NONE) {
|
2014-02-13 23:40:08 +01:00
|
|
|
menuSecure.setIcon(R.drawable.ic_action_secure);
|
|
|
|
}
|
2014-02-07 02:57:36 +01:00
|
|
|
}
|
|
|
|
}
|
2014-01-24 02:04:05 +01:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2014-01-24 10:50:18 +01:00
|
|
|
|
2014-01-24 02:04:05 +01:00
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
2014-01-24 10:50:18 +01:00
|
|
|
switch (item.getItemId()) {
|
2014-01-24 02:04:05 +01:00
|
|
|
case android.R.id.home:
|
|
|
|
spl.openPane();
|
|
|
|
break;
|
2014-04-05 21:06:10 +02:00
|
|
|
case R.id.action_attach_file:
|
2014-04-10 14:12:08 +02:00
|
|
|
selectPresence(getSelectedConversation(), new OnPresenceSelected() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPresenceSelected(boolean success, String presence) {
|
|
|
|
if (success) {
|
|
|
|
Intent attachFileIntent = new Intent();
|
|
|
|
attachFileIntent.setType("image/*");
|
|
|
|
attachFileIntent.setAction(Intent.ACTION_GET_CONTENT);
|
|
|
|
Intent chooser = Intent.createChooser(attachFileIntent, "Attach File");
|
|
|
|
startActivityForResult(chooser, ATTACH_FILE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-04-05 21:06:10 +02:00
|
|
|
break;
|
2014-01-24 02:04:05 +01:00
|
|
|
case R.id.action_add:
|
2014-03-15 15:13:35 +01:00
|
|
|
startActivity(new Intent(this, ContactsActivity.class));
|
2014-01-27 20:40:42 +01:00
|
|
|
break;
|
2014-01-24 23:58:51 +01:00
|
|
|
case R.id.action_archive:
|
2014-02-07 02:57:36 +01:00
|
|
|
Conversation conv = getSelectedConversation();
|
2014-01-27 20:40:42 +01:00
|
|
|
conv.setStatus(Conversation.STATUS_ARCHIVED);
|
2014-02-01 15:07:20 +01:00
|
|
|
paneShouldBeOpen = true;
|
|
|
|
spl.openPane();
|
|
|
|
xmppConnectionService.archiveConversation(conv);
|
2014-03-08 13:40:20 +01:00
|
|
|
if (conversationList.size() > 0) {
|
|
|
|
selectedConversation = conversationList.get(0);
|
|
|
|
} else {
|
|
|
|
selectedConversation = null;
|
|
|
|
}
|
2014-01-25 19:33:12 +01:00
|
|
|
break;
|
2014-02-28 18:46:01 +01:00
|
|
|
case R.id.action_contact_details:
|
2014-02-10 15:24:34 +01:00
|
|
|
Contact contact = this.getSelectedConversation().getContact();
|
|
|
|
if (contact != null) {
|
2014-04-10 14:12:08 +02:00
|
|
|
Intent intent = new Intent(this, ContactDetailsActivity.class);
|
2014-03-05 15:41:14 +01:00
|
|
|
intent.setAction(ContactDetailsActivity.ACTION_VIEW_CONTACT);
|
|
|
|
intent.putExtra("uuid", contact.getUuid());
|
|
|
|
startActivity(intent);
|
2014-02-10 15:24:34 +01:00
|
|
|
} else {
|
2014-04-10 14:12:08 +02:00
|
|
|
showAddToRosterDialog(getSelectedConversation());
|
2014-02-10 15:24:34 +01:00
|
|
|
}
|
2014-02-16 16:32:15 +01:00
|
|
|
break;
|
2014-03-03 05:01:02 +01:00
|
|
|
case R.id.action_muc_details:
|
2014-04-10 14:12:08 +02:00
|
|
|
Intent intent = new Intent(this, MucDetailsActivity.class);
|
2014-03-05 15:41:14 +01:00
|
|
|
intent.setAction(MucDetailsActivity.ACTION_VIEW_MUC);
|
2014-03-04 02:51:01 +01:00
|
|
|
intent.putExtra("uuid", getSelectedConversation().getUuid());
|
|
|
|
startActivity(intent);
|
2014-03-03 05:01:02 +01:00
|
|
|
break;
|
2014-03-15 15:13:35 +01:00
|
|
|
case R.id.action_invite:
|
|
|
|
Intent inviteIntent = new Intent(getApplicationContext(),
|
|
|
|
ContactsActivity.class);
|
|
|
|
inviteIntent.setAction("invite");
|
2014-04-10 14:12:08 +02:00
|
|
|
inviteIntent.putExtra("uuid", selectedConversation.getUuid());
|
2014-03-15 15:13:35 +01:00
|
|
|
startActivity(inviteIntent);
|
|
|
|
break;
|
2014-02-16 16:32:15 +01:00
|
|
|
case R.id.action_security:
|
|
|
|
final Conversation selConv = getSelectedConversation();
|
|
|
|
View menuItemView = findViewById(R.id.action_security);
|
|
|
|
PopupMenu popup = new PopupMenu(this, menuItemView);
|
2014-04-10 14:12:08 +02:00
|
|
|
final ConversationFragment fragment = (ConversationFragment) getFragmentManager()
|
|
|
|
.findFragmentByTag("conversation");
|
|
|
|
if (fragment != null) {
|
2014-02-16 16:32:15 +01:00
|
|
|
popup.setOnMenuItemClickListener(new OnMenuItemClickListener() {
|
2014-04-10 14:12:08 +02:00
|
|
|
|
2014-02-16 16:32:15 +01:00
|
|
|
@Override
|
|
|
|
public boolean onMenuItemClick(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case R.id.encryption_choice_none:
|
|
|
|
selConv.nextMessageEncryption = Message.ENCRYPTION_NONE;
|
|
|
|
item.setChecked(true);
|
|
|
|
break;
|
|
|
|
case R.id.encryption_choice_otr:
|
|
|
|
selConv.nextMessageEncryption = Message.ENCRYPTION_OTR;
|
|
|
|
item.setChecked(true);
|
|
|
|
break;
|
|
|
|
case R.id.encryption_choice_pgp:
|
|
|
|
selConv.nextMessageEncryption = Message.ENCRYPTION_PGP;
|
|
|
|
item.setChecked(true);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
selConv.nextMessageEncryption = Message.ENCRYPTION_NONE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
fragment.updateChatMsgHint();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
2014-04-10 14:12:08 +02:00
|
|
|
popup.inflate(R.menu.encryption_choices);
|
|
|
|
switch (selConv.nextMessageEncryption) {
|
2014-02-16 16:32:15 +01:00
|
|
|
case Message.ENCRYPTION_NONE:
|
2014-04-10 14:12:08 +02:00
|
|
|
popup.getMenu().findItem(R.id.encryption_choice_none)
|
|
|
|
.setChecked(true);
|
2014-02-16 16:32:15 +01:00
|
|
|
break;
|
|
|
|
case Message.ENCRYPTION_OTR:
|
2014-04-10 14:12:08 +02:00
|
|
|
popup.getMenu().findItem(R.id.encryption_choice_otr)
|
|
|
|
.setChecked(true);
|
2014-02-16 16:32:15 +01:00
|
|
|
break;
|
|
|
|
case Message.ENCRYPTION_PGP:
|
2014-04-10 14:12:08 +02:00
|
|
|
popup.getMenu().findItem(R.id.encryption_choice_pgp)
|
|
|
|
.setChecked(true);
|
2014-02-16 16:32:15 +01:00
|
|
|
break;
|
2014-02-28 00:22:56 +01:00
|
|
|
case Message.ENCRYPTION_DECRYPTED:
|
2014-04-10 14:12:08 +02:00
|
|
|
popup.getMenu().findItem(R.id.encryption_choice_pgp)
|
|
|
|
.setChecked(true);
|
2014-02-28 00:22:56 +01:00
|
|
|
break;
|
2014-02-16 16:32:15 +01:00
|
|
|
default:
|
2014-04-10 14:12:08 +02:00
|
|
|
popup.getMenu().findItem(R.id.encryption_choice_none)
|
|
|
|
.setChecked(true);
|
2014-02-16 16:32:15 +01:00
|
|
|
break;
|
|
|
|
}
|
2014-04-10 14:12:08 +02:00
|
|
|
popup.show();
|
|
|
|
}
|
2014-02-16 16:32:15 +01:00
|
|
|
|
2014-02-09 00:47:11 +01:00
|
|
|
break;
|
2014-01-24 02:04:05 +01:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2014-01-24 10:50:18 +01:00
|
|
|
return super.onOptionsItemSelected(item);
|
2014-01-24 02:04:05 +01:00
|
|
|
}
|
|
|
|
|
2014-01-27 20:40:42 +01:00
|
|
|
protected ConversationFragment swapConversationFragment() {
|
2014-01-25 19:33:12 +01:00
|
|
|
ConversationFragment selectedFragment = new ConversationFragment();
|
2014-04-10 14:12:08 +02:00
|
|
|
|
2014-01-24 10:50:18 +01:00
|
|
|
FragmentTransaction transaction = getFragmentManager()
|
|
|
|
.beginTransaction();
|
2014-04-10 14:12:08 +02:00
|
|
|
transaction.replace(R.id.selected_conversation, selectedFragment,
|
|
|
|
"conversation");
|
2014-01-24 02:04:05 +01:00
|
|
|
transaction.commit();
|
2014-01-27 20:40:42 +01:00
|
|
|
return selectedFragment;
|
2014-01-24 02:04:05 +01:00
|
|
|
}
|
|
|
|
|
2014-01-24 10:50:18 +01:00
|
|
|
@Override
|
|
|
|
public boolean onKeyDown(int keyCode, KeyEvent event) {
|
|
|
|
if (keyCode == KeyEvent.KEYCODE_BACK) {
|
|
|
|
if (!spl.isOpen()) {
|
|
|
|
spl.openPane();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return super.onKeyDown(keyCode, event);
|
|
|
|
}
|
2014-04-10 14:12:08 +02:00
|
|
|
|
2014-03-28 12:22:09 +01:00
|
|
|
@Override
|
2014-02-04 22:26:46 +01:00
|
|
|
public void onStart() {
|
|
|
|
super.onStart();
|
2014-04-10 14:12:08 +02:00
|
|
|
SharedPreferences preferences = PreferenceManager
|
|
|
|
.getDefaultSharedPreferences(this);
|
2014-03-14 22:40:56 +01:00
|
|
|
this.useSubject = preferences.getBoolean("use_subject_in_muc", true);
|
2014-03-28 12:22:09 +01:00
|
|
|
if (this.xmppConnectionServiceBound) {
|
|
|
|
this.onBackendConnected();
|
|
|
|
}
|
2014-04-10 14:12:08 +02:00
|
|
|
if (conversationList.size() >= 1) {
|
2014-02-05 22:33:39 +01:00
|
|
|
onConvChanged.onConversationListChanged();
|
|
|
|
}
|
2014-02-04 22:26:46 +01:00
|
|
|
}
|
2014-04-10 14:12:08 +02:00
|
|
|
|
2014-02-05 22:33:39 +01:00
|
|
|
@Override
|
|
|
|
protected void onStop() {
|
|
|
|
if (xmppConnectionServiceBound) {
|
2014-04-10 14:12:08 +02:00
|
|
|
xmppConnectionService.removeOnConversationListChangedListener();
|
2014-02-05 22:33:39 +01:00
|
|
|
}
|
|
|
|
super.onStop();
|
2014-02-02 16:05:15 +01:00
|
|
|
}
|
2014-01-25 19:33:12 +01:00
|
|
|
|
|
|
|
@Override
|
2014-01-27 20:40:42 +01:00
|
|
|
void onBackendConnected() {
|
2014-03-10 21:52:58 +01:00
|
|
|
this.registerListener();
|
2014-04-10 14:12:08 +02:00
|
|
|
if (conversationList.size() == 0) {
|
2014-03-19 16:16:40 +01:00
|
|
|
updateConversationList();
|
2014-01-27 20:40:42 +01:00
|
|
|
}
|
2014-01-25 19:33:12 +01:00
|
|
|
|
2014-04-10 14:12:08 +02:00
|
|
|
if ((getIntent().getAction() != null)
|
|
|
|
&& (getIntent().getAction().equals(Intent.ACTION_VIEW) && (!handledViewIntent))) {
|
2014-01-25 19:33:12 +01:00
|
|
|
if (getIntent().getType().equals(
|
|
|
|
ConversationActivity.VIEW_CONVERSATION)) {
|
|
|
|
handledViewIntent = true;
|
|
|
|
|
2014-04-10 14:12:08 +02:00
|
|
|
String convToView = (String) getIntent().getExtras().get(
|
|
|
|
CONVERSATION);
|
2014-01-25 19:33:12 +01:00
|
|
|
|
2014-04-10 14:12:08 +02:00
|
|
|
for (int i = 0; i < conversationList.size(); ++i) {
|
2014-01-27 20:40:42 +01:00
|
|
|
if (conversationList.get(i).getUuid().equals(convToView)) {
|
2014-02-07 02:57:36 +01:00
|
|
|
selectedConversation = conversationList.get(i);
|
2014-01-27 20:40:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
paneShouldBeOpen = false;
|
2014-03-13 21:37:27 +01:00
|
|
|
String text = getIntent().getExtras().getString(TEXT, null);
|
|
|
|
swapConversationFragment().setText(text);
|
2014-01-25 19:33:12 +01:00
|
|
|
}
|
|
|
|
} else {
|
2014-01-28 23:15:30 +01:00
|
|
|
if (xmppConnectionService.getAccounts().size() == 0) {
|
|
|
|
startActivity(new Intent(this, ManageAccountActivity.class));
|
|
|
|
finish();
|
|
|
|
} else if (conversationList.size() <= 0) {
|
2014-04-10 14:12:08 +02:00
|
|
|
// add no history
|
2014-03-15 15:13:35 +01:00
|
|
|
startActivity(new Intent(this, ContactsActivity.class));
|
2014-01-25 19:33:12 +01:00
|
|
|
finish();
|
|
|
|
} else {
|
2014-01-28 22:21:08 +01:00
|
|
|
spl.openPane();
|
2014-04-10 14:12:08 +02:00
|
|
|
// find currently loaded fragment
|
|
|
|
ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager()
|
|
|
|
.findFragmentByTag("conversation");
|
|
|
|
if (selectedFragment != null) {
|
2014-01-27 20:40:42 +01:00
|
|
|
selectedFragment.onBackendConnected();
|
|
|
|
} else {
|
2014-02-07 02:57:36 +01:00
|
|
|
selectedConversation = conversationList.get(0);
|
2014-01-27 20:40:42 +01:00
|
|
|
swapConversationFragment();
|
|
|
|
}
|
2014-04-10 14:12:08 +02:00
|
|
|
ExceptionHelper.checkForCrash(this, this.xmppConnectionService);
|
2014-01-25 19:33:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-10 14:12:08 +02:00
|
|
|
|
2014-03-10 21:52:58 +01:00
|
|
|
public void registerListener() {
|
2014-04-10 14:12:08 +02:00
|
|
|
if (xmppConnectionServiceBound) {
|
|
|
|
xmppConnectionService
|
|
|
|
.setOnConversationListChangedListener(this.onConvChanged);
|
|
|
|
}
|
2014-03-10 21:52:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-04-10 14:12:08 +02:00
|
|
|
protected void onActivityResult(int requestCode, int resultCode, final Intent data) {
|
|
|
|
super.onActivityResult(requestCode, resultCode, data);
|
|
|
|
if (resultCode == RESULT_OK) {
|
2014-02-28 02:58:15 +01:00
|
|
|
if (requestCode == REQUEST_DECRYPT_PGP) {
|
2014-04-10 14:12:08 +02:00
|
|
|
ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager()
|
|
|
|
.findFragmentByTag("conversation");
|
|
|
|
if (selectedFragment != null) {
|
2014-02-28 02:58:15 +01:00
|
|
|
selectedFragment.hidePgpPassphraseBox();
|
|
|
|
}
|
2014-04-05 21:06:10 +02:00
|
|
|
} else if (requestCode == ATTACH_FILE) {
|
2014-04-10 14:12:08 +02:00
|
|
|
Conversation conversation = getSelectedConversation();
|
|
|
|
String presence = conversation.getNextPresence();
|
|
|
|
xmppConnectionService.attachImageToConversation(conversation, presence, data.getData());
|
|
|
|
|
2014-02-28 02:58:15 +01:00
|
|
|
}
|
2014-04-10 14:12:08 +02:00
|
|
|
}
|
|
|
|
}
|
2014-03-19 16:16:40 +01:00
|
|
|
|
|
|
|
public void updateConversationList() {
|
|
|
|
conversationList.clear();
|
2014-04-10 14:12:08 +02:00
|
|
|
conversationList.addAll(xmppConnectionService.getConversations());
|
2014-03-19 16:16:40 +01:00
|
|
|
listView.invalidateViews();
|
|
|
|
}
|
2014-04-10 14:12:08 +02:00
|
|
|
|
|
|
|
public void selectPresence(final Conversation conversation, final OnPresenceSelected listener) {
|
|
|
|
Contact contact = conversation.getContact();
|
|
|
|
if (contact==null) {
|
|
|
|
showAddToRosterDialog(conversation);
|
|
|
|
listener.onPresenceSelected(false,null);
|
|
|
|
} else {
|
|
|
|
Hashtable<String, Integer> presences = contact.getPresences();
|
|
|
|
if (presences.size() == 0) {
|
|
|
|
listener.onPresenceSelected(false, null);
|
|
|
|
} else if (presences.size() == 1) {
|
|
|
|
String presence = (String) presences.keySet().toArray()[0];
|
|
|
|
conversation.setNextPresence(presence);
|
|
|
|
listener.onPresenceSelected(true, presence);
|
|
|
|
} else {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setTitle("Choose Presence");
|
|
|
|
final String[] presencesArray = new String[presences.size()];
|
|
|
|
presences.keySet().toArray(presencesArray);
|
|
|
|
builder.setItems(presencesArray,
|
|
|
|
new DialogInterface.OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog,
|
|
|
|
int which) {
|
|
|
|
String presence = presencesArray[which];
|
|
|
|
conversation.setNextPresence(presence);
|
|
|
|
listener.onPresenceSelected(true,presence);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void showAddToRosterDialog(final Conversation conversation) {
|
|
|
|
String jid = conversation.getContactJid();
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setTitle(jid);
|
|
|
|
builder.setMessage(getString(R.string.not_in_roster));
|
|
|
|
builder.setNegativeButton(getString(R.string.cancel), null);
|
|
|
|
builder.setPositiveButton(getString(R.string.add_contact), new DialogInterface.OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
String jid = conversation.getContactJid();
|
|
|
|
Account account = getSelectedConversation().getAccount();
|
|
|
|
String name = jid.split("@")[0];
|
|
|
|
Contact contact = new Contact(account, name, jid, null);
|
|
|
|
xmppConnectionService.createContact(contact);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
}
|
2014-01-24 02:04:05 +01:00
|
|
|
}
|