2014-02-28 17:46:01 +00:00
|
|
|
package eu.siacs.conversations.ui;
|
2014-01-24 01:04:05 +00:00
|
|
|
|
2014-04-25 14:24:56 +00:00
|
|
|
import java.io.FileNotFoundException;
|
|
|
|
import java.lang.ref.WeakReference;
|
2014-01-25 18:33:12 +00:00
|
|
|
import java.util.ArrayList;
|
2014-01-24 22:58:51 +00:00
|
|
|
import java.util.List;
|
2014-01-24 01:04:05 +00:00
|
|
|
|
2014-02-28 17:46:01 +00:00
|
|
|
import eu.siacs.conversations.R;
|
|
|
|
import eu.siacs.conversations.entities.Contact;
|
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
|
|
|
import eu.siacs.conversations.entities.Message;
|
2014-05-13 14:48:39 +00:00
|
|
|
import eu.siacs.conversations.services.ImageProvider;
|
2014-03-27 15:09:23 +00:00
|
|
|
import eu.siacs.conversations.utils.ExceptionHelper;
|
2014-02-28 17:46:01 +00:00
|
|
|
import eu.siacs.conversations.utils.UIHelper;
|
2014-05-08 14:52:19 +00:00
|
|
|
import android.net.Uri;
|
2014-04-25 14:24:56 +00:00
|
|
|
import android.os.AsyncTask;
|
2014-01-24 01:04:05 +00:00
|
|
|
import android.os.Bundle;
|
2014-03-14 21:40:56 +00:00
|
|
|
import android.preference.PreferenceManager;
|
2014-05-13 13:25:04 +00:00
|
|
|
import android.provider.MediaStore;
|
2014-02-20 16:00:50 +00:00
|
|
|
import android.app.AlertDialog;
|
2014-01-24 01:04:05 +00:00
|
|
|
import android.app.FragmentTransaction;
|
2014-05-06 19:34:30 +00:00
|
|
|
import android.app.PendingIntent;
|
2014-01-24 01:04:05 +00:00
|
|
|
import android.content.Context;
|
2014-02-20 16:00:50 +00:00
|
|
|
import android.content.DialogInterface;
|
2014-04-16 16:16:23 +00:00
|
|
|
import android.content.DialogInterface.OnClickListener;
|
2014-05-06 19:34:30 +00:00
|
|
|
import android.content.IntentSender.SendIntentException;
|
2014-01-24 01:04:05 +00:00
|
|
|
import android.content.Intent;
|
2014-03-14 21:40:56 +00:00
|
|
|
import android.content.SharedPreferences;
|
2014-04-25 14:24:56 +00:00
|
|
|
import android.content.res.Resources;
|
|
|
|
import android.graphics.Bitmap;
|
2014-03-07 17:13:19 +00:00
|
|
|
import android.graphics.Color;
|
2014-02-10 21:45:59 +00:00
|
|
|
import android.graphics.Typeface;
|
2014-04-25 14:24:56 +00:00
|
|
|
import android.graphics.drawable.BitmapDrawable;
|
|
|
|
import android.graphics.drawable.Drawable;
|
2014-01-24 01:04:05 +00:00
|
|
|
import android.support.v4.widget.SlidingPaneLayout;
|
|
|
|
import android.support.v4.widget.SlidingPaneLayout.PanelSlideListener;
|
2014-04-25 14:24:56 +00:00
|
|
|
import android.util.DisplayMetrics;
|
|
|
|
import android.util.Log;
|
2014-01-24 09:50:18 +00:00
|
|
|
import android.view.KeyEvent;
|
2014-01-24 22:58:51 +00:00
|
|
|
import android.view.LayoutInflater;
|
2014-01-24 01:04:05 +00:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuItem;
|
|
|
|
import android.view.View;
|
2014-01-24 22:58:51 +00:00
|
|
|
import android.view.ViewGroup;
|
2014-01-24 01:04:05 +00:00
|
|
|
import android.widget.AdapterView;
|
|
|
|
import android.widget.AdapterView.OnItemClickListener;
|
2014-01-24 22:58:51 +00:00
|
|
|
import android.widget.ArrayAdapter;
|
2014-04-20 18:48:16 +00:00
|
|
|
import android.widget.CheckBox;
|
2014-01-24 01:04:05 +00:00
|
|
|
import android.widget.ListView;
|
2014-02-16 15:32:15 +00:00
|
|
|
import android.widget.PopupMenu;
|
|
|
|
import android.widget.PopupMenu.OnMenuItemClickListener;
|
2014-01-24 22:58:51 +00:00
|
|
|
import android.widget.TextView;
|
|
|
|
import android.widget.ImageView;
|
2014-05-09 18:46:43 +00:00
|
|
|
import android.widget.Toast;
|
2014-01-24 01:04:05 +00:00
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
public class ConversationActivity extends XmppActivity {
|
2014-01-24 09:50:18 +00:00
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
public static final String VIEW_CONVERSATION = "viewConversation";
|
2014-02-03 17:38:47 +00:00
|
|
|
public static final String CONVERSATION = "conversationUuid";
|
2014-03-13 20:37:27 +00:00
|
|
|
public static final String TEXT = "text";
|
2014-04-10 12:12:08 +00:00
|
|
|
public static final String PRESENCE = "eu.siacs.conversations.presence";
|
|
|
|
|
2014-02-27 23:22:56 +00:00
|
|
|
public static final int REQUEST_SEND_MESSAGE = 0x75441;
|
|
|
|
public static final int REQUEST_DECRYPT_PGP = 0x76783;
|
2014-05-08 14:52:19 +00:00
|
|
|
private static final int REQUEST_ATTACH_FILE_DIALOG = 0x48502;
|
2014-05-13 13:25:04 +00:00
|
|
|
private static final int REQUEST_IMAGE_CAPTURE = 0x33788;
|
2014-05-17 17:21:16 +00:00
|
|
|
private static final int REQUEST_RECORD_AUDIO = 0x46189;
|
2014-05-06 19:34:30 +00:00
|
|
|
private static final int REQUEST_SEND_PGP_IMAGE = 0x53883;
|
2014-05-08 15:31:53 +00:00
|
|
|
public static final int REQUEST_ENCRYPT_MESSAGE = 0x378018;
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-05-14 09:49:43 +00:00
|
|
|
private static final int ATTACHMENT_CHOICE_CHOOSE_IMAGE = 0x92734;
|
|
|
|
private static final int ATTACHMENT_CHOICE_TAKE_PHOTO = 0x84123;
|
2014-05-17 17:21:16 +00:00
|
|
|
private static final int ATTACHMENT_CHOICE_RECORD_VOICE = 0x75291;
|
2014-01-24 01:04:05 +00:00
|
|
|
|
|
|
|
protected SlidingPaneLayout spl;
|
2014-01-24 09:50:18 +00:00
|
|
|
|
2014-01-27 19:40:42 +00:00
|
|
|
private List<Conversation> conversationList = new ArrayList<Conversation>();
|
2014-02-07 01:57:36 +00:00
|
|
|
private Conversation selectedConversation = null;
|
2014-01-27 19:40:42 +00:00
|
|
|
private ListView listView;
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-01-27 19:40:42 +00:00
|
|
|
private boolean paneShouldBeOpen = true;
|
2014-03-14 21:40:56 +00:00
|
|
|
private boolean useSubject = true;
|
2014-06-06 09:39:17 +00:00
|
|
|
private boolean showLastseen = false;
|
2014-02-01 14:07:20 +00:00
|
|
|
private ArrayAdapter<Conversation> listAdapter;
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-02-01 14:07:20 +00:00
|
|
|
private OnConversationListChangedListener onConvChanged = new OnConversationListChangedListener() {
|
2014-04-10 12:12:08 +00:00
|
|
|
|
2014-02-01 14:07:20 +00:00
|
|
|
@Override
|
|
|
|
public void onConversationListChanged() {
|
|
|
|
runOnUiThread(new Runnable() {
|
2014-04-10 12:12:08 +00:00
|
|
|
|
2014-02-01 14:07:20 +00:00
|
|
|
@Override
|
2014-04-10 12:12:08 +00:00
|
|
|
public void run() {
|
2014-02-02 15:05:15 +00:00
|
|
|
updateConversationList();
|
2014-04-10 12:12:08 +00:00
|
|
|
if (paneShouldBeOpen) {
|
2014-02-01 14:07:20 +00:00
|
|
|
if (conversationList.size() >= 1) {
|
|
|
|
swapConversationFragment();
|
|
|
|
} else {
|
2014-04-10 12:12:08 +00:00
|
|
|
startActivity(new Intent(getApplicationContext(),
|
|
|
|
ContactsActivity.class));
|
2014-02-01 14:07:20 +00:00
|
|
|
finish();
|
|
|
|
}
|
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager()
|
|
|
|
.findFragmentByTag("conversation");
|
|
|
|
if (selectedFragment != null) {
|
2014-02-02 15:33:34 +00:00
|
|
|
selectedFragment.updateMessages();
|
|
|
|
}
|
2014-02-01 14:07:20 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-03-13 02:52:41 +00:00
|
|
|
protected ConversationActivity activity = this;
|
2014-04-25 14:24:56 +00:00
|
|
|
private DisplayMetrics metrics;
|
2014-05-09 18:46:43 +00:00
|
|
|
private Toast prepareImageToast;
|
2014-04-10 12:12:08 +00:00
|
|
|
|
2014-01-27 19:40:42 +00:00
|
|
|
public List<Conversation> getConversationList() {
|
|
|
|
return this.conversationList;
|
|
|
|
}
|
2014-01-24 09:50:18 +00:00
|
|
|
|
2014-02-07 01:57:36 +00:00
|
|
|
public Conversation getSelectedConversation() {
|
2014-01-27 19:40:42 +00:00
|
|
|
return this.selectedConversation;
|
|
|
|
}
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-05-13 15:11:27 +00:00
|
|
|
public void setSelectedConversation(Conversation conversation) {
|
|
|
|
this.selectedConversation = conversation;
|
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
|
2014-01-27 19:40:42 +00:00
|
|
|
public ListView getConversationListView() {
|
|
|
|
return this.listView;
|
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
|
2014-01-27 19:40:42 +00:00
|
|
|
public SlidingPaneLayout getSlidingPaneLayout() {
|
|
|
|
return this.spl;
|
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
|
2014-01-27 19:40:42 +00:00
|
|
|
public boolean shouldPaneBeOpen() {
|
|
|
|
return paneShouldBeOpen;
|
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
|
2014-01-24 01:04:05 +00:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
2014-01-24 09:50:18 +00:00
|
|
|
|
2014-04-25 14:24:56 +00:00
|
|
|
metrics = getResources().getDisplayMetrics();
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
super.onCreate(savedInstanceState);
|
2014-01-24 09:50:18 +00:00
|
|
|
|
2014-01-24 22:58:51 +00:00
|
|
|
setContentView(R.layout.fragment_conversations_overview);
|
2014-01-24 09:50:18 +00:00
|
|
|
|
2014-01-27 19:40:42 +00:00
|
|
|
listView = (ListView) findViewById(R.id.list);
|
2014-01-25 18:33:12 +00:00
|
|
|
|
2014-02-01 14:07:20 +00:00
|
|
|
this.listAdapter = new ArrayAdapter<Conversation>(this,
|
2014-01-25 18:33:12 +00:00
|
|
|
R.layout.conversation_list_row, conversationList) {
|
2014-01-24 22:58:51 +00:00
|
|
|
@Override
|
2014-01-25 18:33:12 +00:00
|
|
|
public View getView(int position, View view, ViewGroup parent) {
|
2014-01-24 22:58:51 +00:00
|
|
|
if (view == null) {
|
2014-01-25 18:33:12 +00:00
|
|
|
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
view = (View) inflater.inflate(
|
|
|
|
R.layout.conversation_list_row, null);
|
2014-01-24 22:58:51 +00:00
|
|
|
}
|
2014-03-08 01:06:00 +00:00
|
|
|
Conversation conv;
|
|
|
|
if (conversationList.size() > position) {
|
|
|
|
conv = getItem(position);
|
|
|
|
} else {
|
|
|
|
return view;
|
|
|
|
}
|
2014-03-07 17:13:19 +00:00
|
|
|
if (!spl.isSlideable()) {
|
2014-04-10 12:12:08 +00:00
|
|
|
if (conv == getSelectedConversation()) {
|
2014-03-07 17:13:19 +00:00
|
|
|
view.setBackgroundColor(0xffdddddd);
|
|
|
|
} else {
|
|
|
|
view.setBackgroundColor(Color.TRANSPARENT);
|
|
|
|
}
|
2014-03-08 12:40:20 +00:00
|
|
|
} else {
|
|
|
|
view.setBackgroundColor(Color.TRANSPARENT);
|
2014-03-07 17:13:19 +00:00
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
TextView convName = (TextView) view
|
|
|
|
.findViewById(R.id.conversation_name);
|
2014-03-14 21:40:56 +00:00
|
|
|
convName.setText(conv.getName(useSubject));
|
2014-04-10 12:12:08 +00:00
|
|
|
TextView convLastMsg = (TextView) view
|
|
|
|
.findViewById(R.id.conversation_lastmsg);
|
2014-06-06 09:39:17 +00:00
|
|
|
ImageView imagePreview = (ImageView) view
|
|
|
|
.findViewById(R.id.conversation_lastimage);
|
|
|
|
|
2014-04-25 14:24:56 +00:00
|
|
|
Message latestMessage = conv.getLatestMessage();
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-04-25 14:24:56 +00:00
|
|
|
if (latestMessage.getType() == Message.TYPE_TEXT) {
|
2014-06-06 09:39:17 +00:00
|
|
|
if ((latestMessage.getEncryption() != Message.ENCRYPTION_PGP)
|
|
|
|
&& (latestMessage.getEncryption() != Message.ENCRYPTION_DECRYPTION_FAILED)) {
|
2014-05-09 18:46:43 +00:00
|
|
|
convLastMsg.setText(conv.getLatestMessage().getBody());
|
|
|
|
} else {
|
2014-06-06 09:39:17 +00:00
|
|
|
convLastMsg
|
|
|
|
.setText(getText(R.string.encrypted_message_received));
|
2014-05-09 18:46:43 +00:00
|
|
|
}
|
2014-04-25 14:24:56 +00:00
|
|
|
convLastMsg.setVisibility(View.VISIBLE);
|
|
|
|
imagePreview.setVisibility(View.GONE);
|
|
|
|
} else if (latestMessage.getType() == Message.TYPE_IMAGE) {
|
2014-05-08 09:53:00 +00:00
|
|
|
if (latestMessage.getStatus() >= Message.STATUS_RECIEVED) {
|
2014-04-25 14:24:56 +00:00
|
|
|
convLastMsg.setVisibility(View.GONE);
|
|
|
|
imagePreview.setVisibility(View.VISIBLE);
|
|
|
|
loadBitmap(latestMessage, imagePreview);
|
|
|
|
} else {
|
|
|
|
convLastMsg.setVisibility(View.VISIBLE);
|
|
|
|
imagePreview.setVisibility(View.GONE);
|
2014-05-08 09:53:00 +00:00
|
|
|
if (latestMessage.getStatus() == Message.STATUS_RECEIVED_OFFER) {
|
2014-06-06 09:39:17 +00:00
|
|
|
convLastMsg
|
|
|
|
.setText(getText(R.string.image_offered_for_download));
|
2014-04-25 14:24:56 +00:00
|
|
|
} else if (latestMessage.getStatus() == Message.STATUS_RECIEVING) {
|
2014-06-06 09:39:17 +00:00
|
|
|
convLastMsg
|
|
|
|
.setText(getText(R.string.receiving_image));
|
2014-04-25 14:24:56 +00:00
|
|
|
} else {
|
|
|
|
convLastMsg.setText("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
|
|
|
|
if (!conv.isRead()) {
|
|
|
|
convName.setTypeface(null, Typeface.BOLD);
|
|
|
|
convLastMsg.setTypeface(null, Typeface.BOLD);
|
2014-02-10 21:45:59 +00:00
|
|
|
} else {
|
2014-04-10 12:12:08 +00:00
|
|
|
convName.setTypeface(null, Typeface.NORMAL);
|
|
|
|
convLastMsg.setTypeface(null, Typeface.NORMAL);
|
2014-02-10 21:45:59 +00:00
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
|
2014-01-26 02:27:55 +00:00
|
|
|
((TextView) view.findViewById(R.id.conversation_lastupdate))
|
2014-06-06 09:39:17 +00:00
|
|
|
.setText(UIHelper.readableTimeDifference(getContext(),
|
|
|
|
conv.getLatestMessage().getTimeSent()));
|
2014-04-10 12:12:08 +00:00
|
|
|
|
2014-04-25 14:24:56 +00:00
|
|
|
ImageView profilePicture = (ImageView) view
|
2014-04-10 12:12:08 +00:00
|
|
|
.findViewById(R.id.conversation_image);
|
2014-06-06 09:39:17 +00:00
|
|
|
profilePicture.setImageBitmap(UIHelper.getContactPicture(conv,
|
|
|
|
56, activity.getApplicationContext(), false));
|
|
|
|
|
2014-01-24 22:58:51 +00:00
|
|
|
return view;
|
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
|
2014-02-01 14:07:20 +00:00
|
|
|
};
|
2014-04-10 12:12:08 +00:00
|
|
|
|
2014-02-01 14:07:20 +00:00
|
|
|
listView.setAdapter(this.listAdapter);
|
2014-01-25 18:33:12 +00:00
|
|
|
|
2014-01-24 01:04:05 +00:00
|
|
|
listView.setOnItemClickListener(new OnItemClickListener() {
|
|
|
|
|
|
|
|
@Override
|
2014-01-24 09:50:18 +00:00
|
|
|
public void onItemClick(AdapterView<?> arg0, View clickedView,
|
|
|
|
int position, long arg3) {
|
2014-01-27 19:40:42 +00:00
|
|
|
paneShouldBeOpen = false;
|
2014-05-13 15:11:27 +00:00
|
|
|
if (getSelectedConversation() != conversationList.get(position)) {
|
|
|
|
setSelectedConversation(conversationList.get(position));
|
2014-04-10 12:12:08 +00:00
|
|
|
swapConversationFragment(); // .onBackendConnected(conversationList.get(position));
|
2014-01-27 19:40:42 +00:00
|
|
|
} else {
|
|
|
|
spl.closePane();
|
|
|
|
}
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|
|
|
|
});
|
2014-02-28 17:46:01 +00:00
|
|
|
spl = (SlidingPaneLayout) findViewById(R.id.slidingpanelayout);
|
2014-01-24 01:04:05 +00:00
|
|
|
spl.setParallaxDistance(150);
|
|
|
|
spl.setShadowResource(R.drawable.es_slidingpane_shadow);
|
|
|
|
spl.setSliderFadeColor(0);
|
|
|
|
spl.setPanelSlideListener(new PanelSlideListener() {
|
2014-01-24 09:50:18 +00:00
|
|
|
|
2014-01-24 01:04:05 +00:00
|
|
|
@Override
|
|
|
|
public void onPanelOpened(View arg0) {
|
2014-01-27 19:40:42 +00:00
|
|
|
paneShouldBeOpen = true;
|
2014-01-24 01:04:05 +00:00
|
|
|
getActionBar().setDisplayHomeAsUpEnabled(false);
|
2014-05-31 03:18:50 +00:00
|
|
|
getActionBar().setHomeButtonEnabled(false);
|
2014-01-24 01:04:05 +00:00
|
|
|
getActionBar().setTitle(R.string.app_name);
|
|
|
|
invalidateOptionsMenu();
|
2014-03-03 04:01:02 +00:00
|
|
|
hideKeyboard();
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|
2014-01-24 09:50:18 +00:00
|
|
|
|
2014-01-24 01:04:05 +00:00
|
|
|
@Override
|
|
|
|
public void onPanelClosed(View arg0) {
|
2014-02-02 15:05:15 +00:00
|
|
|
paneShouldBeOpen = false;
|
2014-04-10 12:12:08 +00:00
|
|
|
if ((conversationList.size() > 0)
|
|
|
|
&& (getSelectedConversation() != null)) {
|
2014-01-24 09:50:18 +00:00
|
|
|
getActionBar().setDisplayHomeAsUpEnabled(true);
|
2014-05-31 03:18:50 +00:00
|
|
|
getActionBar().setHomeButtonEnabled(true);
|
2014-04-10 12:12:08 +00:00
|
|
|
getActionBar().setTitle(
|
|
|
|
getSelectedConversation().getName(useSubject));
|
2014-01-24 09:50:18 +00:00
|
|
|
invalidateOptionsMenu();
|
2014-02-10 21:45:59 +00:00
|
|
|
if (!getSelectedConversation().isRead()) {
|
2014-06-06 09:39:17 +00:00
|
|
|
xmppConnectionService
|
|
|
|
.markRead(getSelectedConversation());
|
2014-04-10 12:12:08 +00:00
|
|
|
UIHelper.updateNotification(getApplicationContext(),
|
|
|
|
getConversationList(), null, false);
|
2014-03-19 15:16:40 +00:00
|
|
|
listView.invalidateViews();
|
2014-02-10 21:45:59 +00:00
|
|
|
}
|
2014-01-24 09:50:18 +00:00
|
|
|
}
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPanelSlide(View arg0, float arg1) {
|
|
|
|
// TODO Auto-generated method stub
|
2014-01-24 09:50:18 +00:00
|
|
|
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2014-01-24 09:50:18 +00:00
|
|
|
|
2014-01-24 01:04:05 +00:00
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
|
|
|
getMenuInflater().inflate(R.menu.conversations, menu);
|
2014-02-13 22:40:08 +00:00
|
|
|
MenuItem menuSecure = (MenuItem) menu.findItem(R.id.action_security);
|
2014-02-28 17:46:01 +00:00
|
|
|
MenuItem menuArchive = (MenuItem) menu.findItem(R.id.action_archive);
|
2014-04-10 12:12:08 +00: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 10:49:43 +00:00
|
|
|
MenuItem menuAttach = (MenuItem) menu.findItem(R.id.action_attach_file);
|
2014-06-06 09:39:17 +00:00
|
|
|
MenuItem menuClearHistory = (MenuItem) menu
|
|
|
|
.findItem(R.id.action_clear_history);
|
2014-04-10 12:12:08 +00:00
|
|
|
|
|
|
|
if ((spl.isOpen() && (spl.isSlideable()))) {
|
2014-02-28 17:46:01 +00:00
|
|
|
menuArchive.setVisible(false);
|
|
|
|
menuMucDetails.setVisible(false);
|
|
|
|
menuContactDetails.setVisible(false);
|
2014-02-13 22:40:08 +00:00
|
|
|
menuSecure.setVisible(false);
|
2014-03-15 14:13:35 +00:00
|
|
|
menuInviteContacts.setVisible(false);
|
2014-04-05 10:49:43 +00:00
|
|
|
menuAttach.setVisible(false);
|
2014-04-16 16:16:23 +00:00
|
|
|
menuClearHistory.setVisible(false);
|
2014-01-24 01:04:05 +00:00
|
|
|
} else {
|
2014-04-10 12:12:08 +00:00
|
|
|
((MenuItem) menu.findItem(R.id.action_add)).setVisible(!spl
|
|
|
|
.isSlideable());
|
|
|
|
if (this.getSelectedConversation() != null) {
|
2014-06-01 17:08:42 +00:00
|
|
|
if (this.getSelectedConversation().getLatestMessage()
|
|
|
|
.getEncryption() != Message.ENCRYPTION_NONE) {
|
|
|
|
menuSecure.setIcon(R.drawable.ic_action_secure);
|
|
|
|
}
|
2014-02-07 01:57:36 +00:00
|
|
|
if (this.getSelectedConversation().getMode() == Conversation.MODE_MULTI) {
|
2014-02-28 17:46:01 +00:00
|
|
|
menuContactDetails.setVisible(false);
|
2014-04-05 10:49:43 +00:00
|
|
|
menuAttach.setVisible(false);
|
2014-02-13 22:40:08 +00:00
|
|
|
} else {
|
2014-02-28 17:46:01 +00:00
|
|
|
menuMucDetails.setVisible(false);
|
2014-03-15 14:13:35 +00:00
|
|
|
menuInviteContacts.setVisible(false);
|
2014-02-07 01:57:36 +00:00
|
|
|
}
|
|
|
|
}
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-05-14 09:49:43 +00:00
|
|
|
private void selectPresenceToAttachFile(final int attachmentChoice) {
|
2014-05-07 10:33:55 +00:00
|
|
|
selectPresence(getSelectedConversation(), new OnPresenceSelected() {
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-05-07 10:33:55 +00:00
|
|
|
@Override
|
2014-06-16 12:21:22 +00:00
|
|
|
public void onPresenceSelected() {
|
|
|
|
if (attachmentChoice == ATTACHMENT_CHOICE_TAKE_PHOTO) {
|
|
|
|
Intent takePictureIntent = new Intent(
|
|
|
|
MediaStore.ACTION_IMAGE_CAPTURE);
|
|
|
|
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT,
|
|
|
|
ImageProvider.getIncomingContentUri());
|
|
|
|
if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
|
|
|
|
startActivityForResult(takePictureIntent,
|
|
|
|
REQUEST_IMAGE_CAPTURE);
|
2014-05-13 15:42:23 +00:00
|
|
|
}
|
2014-06-16 12:21:22 +00:00
|
|
|
} else if (attachmentChoice == ATTACHMENT_CHOICE_CHOOSE_IMAGE) {
|
|
|
|
Intent attachFileIntent = new Intent();
|
|
|
|
attachFileIntent.setType("image/*");
|
|
|
|
attachFileIntent.setAction(Intent.ACTION_GET_CONTENT);
|
|
|
|
Intent chooser = Intent.createChooser(attachFileIntent,
|
|
|
|
getString(R.string.attach_file));
|
|
|
|
startActivityForResult(chooser, REQUEST_ATTACH_FILE_DIALOG);
|
|
|
|
} else if (attachmentChoice == ATTACHMENT_CHOICE_RECORD_VOICE) {
|
|
|
|
Intent intent = new Intent(
|
|
|
|
MediaStore.Audio.Media.RECORD_SOUND_ACTION);
|
|
|
|
startActivityForResult(intent, REQUEST_RECORD_AUDIO);
|
2014-05-13 15:42:23 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-12 21:04:28 +00:00
|
|
|
});
|
2014-05-13 13:25:04 +00:00
|
|
|
}
|
2014-01-24 09:50:18 +00:00
|
|
|
|
2014-05-14 09:49:43 +00:00
|
|
|
private void attachFile(final int attachmentChoice) {
|
2014-05-08 12:23:09 +00:00
|
|
|
final Conversation conversation = getSelectedConversation();
|
|
|
|
if (conversation.getNextEncryption() == Message.ENCRYPTION_PGP) {
|
2014-05-07 10:33:55 +00:00
|
|
|
if (hasPgp()) {
|
2014-06-06 09:39:17 +00:00
|
|
|
if (conversation.getContact().getPgpKeyId() != 0) {
|
|
|
|
xmppConnectionService.getPgpEngine().hasKey(
|
2014-06-07 11:25:27 +00:00
|
|
|
conversation.getContact(),
|
|
|
|
new UiCallback<Contact>() {
|
2014-06-06 09:39:17 +00:00
|
|
|
|
|
|
|
@Override
|
2014-06-07 11:25:27 +00:00
|
|
|
public void userInputRequried(PendingIntent pi,
|
|
|
|
Contact contact) {
|
2014-06-06 09:39:17 +00:00
|
|
|
ConversationActivity.this.runIntent(pi,
|
|
|
|
attachmentChoice);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-07 11:25:27 +00:00
|
|
|
public void success(Contact contact) {
|
2014-06-06 09:39:17 +00:00
|
|
|
selectPresenceToAttachFile(attachmentChoice);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-07 11:25:27 +00:00
|
|
|
public void error(int error, Contact contact) {
|
2014-06-06 09:39:17 +00:00
|
|
|
displayErrorDialog(error);
|
|
|
|
}
|
|
|
|
});
|
2014-05-08 12:23:09 +00:00
|
|
|
} else {
|
|
|
|
final ConversationFragment fragment = (ConversationFragment) getFragmentManager()
|
|
|
|
.findFragmentByTag("conversation");
|
|
|
|
if (fragment != null) {
|
2014-06-06 09:39:17 +00:00
|
|
|
fragment.showNoPGPKeyDialog(false,
|
|
|
|
new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog,
|
|
|
|
int which) {
|
|
|
|
conversation
|
|
|
|
.setNextEncryption(Message.ENCRYPTION_NONE);
|
|
|
|
selectPresenceToAttachFile(attachmentChoice);
|
|
|
|
}
|
|
|
|
});
|
2014-05-07 10:33:55 +00:00
|
|
|
}
|
2014-05-08 12:23:09 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
} else {
|
|
|
|
showInstallPgpDialog();
|
2014-05-07 10:33:55 +00:00
|
|
|
}
|
|
|
|
} else if (getSelectedConversation().getNextEncryption() == Message.ENCRYPTION_NONE) {
|
2014-05-14 09:49:43 +00:00
|
|
|
selectPresenceToAttachFile(attachmentChoice);
|
2014-05-09 19:20:34 +00:00
|
|
|
} else {
|
2014-06-20 15:30:19 +00:00
|
|
|
selectPresenceToAttachFile(attachmentChoice);
|
|
|
|
/*AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
2014-05-09 19:20:34 +00:00
|
|
|
builder.setTitle(getString(R.string.otr_file_transfer));
|
|
|
|
builder.setMessage(getString(R.string.otr_file_transfer_msg));
|
|
|
|
builder.setNegativeButton(getString(R.string.cancel), null);
|
2014-06-06 09:39:17 +00:00
|
|
|
if (conversation.getContact().getPgpKeyId() == 0) {
|
|
|
|
builder.setPositiveButton(getString(R.string.send_unencrypted),
|
|
|
|
new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog,
|
|
|
|
int which) {
|
|
|
|
conversation
|
|
|
|
.setNextEncryption(Message.ENCRYPTION_NONE);
|
|
|
|
attachFile(attachmentChoice);
|
|
|
|
}
|
|
|
|
});
|
2014-05-09 19:20:34 +00:00
|
|
|
} else {
|
2014-06-06 09:39:17 +00:00
|
|
|
builder.setPositiveButton(
|
|
|
|
getString(R.string.use_pgp_encryption),
|
|
|
|
new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog,
|
|
|
|
int which) {
|
|
|
|
conversation
|
|
|
|
.setNextEncryption(Message.ENCRYPTION_PGP);
|
|
|
|
attachFile(attachmentChoice);
|
|
|
|
}
|
|
|
|
});
|
2014-05-09 19:20:34 +00:00
|
|
|
}
|
2014-06-20 15:30:19 +00:00
|
|
|
builder.create().show();*/
|
2014-05-07 10:33:55 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-01-24 01:04:05 +00:00
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
2014-01-24 09:50:18 +00:00
|
|
|
switch (item.getItemId()) {
|
2014-01-24 01:04:05 +00:00
|
|
|
case android.R.id.home:
|
|
|
|
spl.openPane();
|
|
|
|
break;
|
2014-04-05 19:06:10 +00:00
|
|
|
case R.id.action_attach_file:
|
2014-05-13 13:25:04 +00:00
|
|
|
View menuAttachFile = findViewById(R.id.action_attach_file);
|
|
|
|
PopupMenu attachFilePopup = new PopupMenu(this, menuAttachFile);
|
|
|
|
attachFilePopup.inflate(R.menu.attachment_choices);
|
2014-06-06 09:39:17 +00:00
|
|
|
attachFilePopup
|
|
|
|
.setOnMenuItemClickListener(new OnMenuItemClickListener() {
|
|
|
|
|
|
|
|
@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_RECORD_VOICE);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
2014-05-13 13:25:04 +00:00
|
|
|
attachFilePopup.show();
|
2014-04-05 19:06:10 +00:00
|
|
|
break;
|
2014-01-24 01:04:05 +00:00
|
|
|
case R.id.action_add:
|
2014-03-15 14:13:35 +00:00
|
|
|
startActivity(new Intent(this, ContactsActivity.class));
|
2014-01-27 19:40:42 +00:00
|
|
|
break;
|
2014-01-24 22:58:51 +00:00
|
|
|
case R.id.action_archive:
|
2014-04-20 18:48:16 +00:00
|
|
|
this.endConversation(getSelectedConversation());
|
2014-01-25 18:33:12 +00:00
|
|
|
break;
|
2014-02-28 17:46:01 +00:00
|
|
|
case R.id.action_contact_details:
|
2014-02-10 14:24:34 +00:00
|
|
|
Contact contact = this.getSelectedConversation().getContact();
|
2014-05-22 12:33:17 +00:00
|
|
|
if (contact.showInRoster()) {
|
2014-04-10 12:12:08 +00:00
|
|
|
Intent intent = new Intent(this, ContactDetailsActivity.class);
|
2014-03-05 14:41:14 +00:00
|
|
|
intent.setAction(ContactDetailsActivity.ACTION_VIEW_CONTACT);
|
2014-06-06 09:39:17 +00:00
|
|
|
intent.putExtra("account", this.getSelectedConversation()
|
|
|
|
.getAccount().getJid());
|
|
|
|
intent.putExtra("contact", contact.getJid());
|
2014-03-05 14:41:14 +00:00
|
|
|
startActivity(intent);
|
2014-02-10 14:24:34 +00:00
|
|
|
} else {
|
2014-04-10 12:12:08 +00:00
|
|
|
showAddToRosterDialog(getSelectedConversation());
|
2014-02-10 14:24:34 +00:00
|
|
|
}
|
2014-02-16 15:32:15 +00:00
|
|
|
break;
|
2014-03-03 04:01:02 +00:00
|
|
|
case R.id.action_muc_details:
|
2014-04-10 12:12:08 +00:00
|
|
|
Intent intent = new Intent(this, MucDetailsActivity.class);
|
2014-03-05 14:41:14 +00:00
|
|
|
intent.setAction(MucDetailsActivity.ACTION_VIEW_MUC);
|
2014-03-04 01:51:01 +00:00
|
|
|
intent.putExtra("uuid", getSelectedConversation().getUuid());
|
|
|
|
startActivity(intent);
|
2014-03-03 04:01:02 +00:00
|
|
|
break;
|
2014-03-15 14:13:35 +00:00
|
|
|
case R.id.action_invite:
|
|
|
|
Intent inviteIntent = new Intent(getApplicationContext(),
|
|
|
|
ContactsActivity.class);
|
|
|
|
inviteIntent.setAction("invite");
|
2014-05-13 15:11:27 +00:00
|
|
|
inviteIntent.putExtra("uuid", getSelectedConversation().getUuid());
|
2014-03-15 14:13:35 +00:00
|
|
|
startActivity(inviteIntent);
|
|
|
|
break;
|
2014-02-16 15:32:15 +00:00
|
|
|
case R.id.action_security:
|
2014-05-08 12:35:21 +00:00
|
|
|
final Conversation conversation = getSelectedConversation();
|
2014-02-16 15:32:15 +00:00
|
|
|
View menuItemView = findViewById(R.id.action_security);
|
|
|
|
PopupMenu popup = new PopupMenu(this, menuItemView);
|
2014-04-10 12:12:08 +00:00
|
|
|
final ConversationFragment fragment = (ConversationFragment) getFragmentManager()
|
|
|
|
.findFragmentByTag("conversation");
|
|
|
|
if (fragment != null) {
|
2014-02-16 15:32:15 +00:00
|
|
|
popup.setOnMenuItemClickListener(new OnMenuItemClickListener() {
|
2014-04-10 12:12:08 +00:00
|
|
|
|
2014-02-16 15:32:15 +00:00
|
|
|
@Override
|
|
|
|
public boolean onMenuItemClick(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case R.id.encryption_choice_none:
|
2014-06-06 09:39:17 +00:00
|
|
|
conversation
|
|
|
|
.setNextEncryption(Message.ENCRYPTION_NONE);
|
2014-02-16 15:32:15 +00:00
|
|
|
item.setChecked(true);
|
|
|
|
break;
|
|
|
|
case R.id.encryption_choice_otr:
|
2014-06-06 09:39:17 +00:00
|
|
|
conversation
|
|
|
|
.setNextEncryption(Message.ENCRYPTION_OTR);
|
2014-02-16 15:32:15 +00:00
|
|
|
item.setChecked(true);
|
|
|
|
break;
|
|
|
|
case R.id.encryption_choice_pgp:
|
2014-05-08 12:35:21 +00:00
|
|
|
if (hasPgp()) {
|
2014-06-06 09:39:17 +00:00
|
|
|
if (conversation.getAccount().getKeys()
|
|
|
|
.has("pgp_signature")) {
|
|
|
|
conversation
|
|
|
|
.setNextEncryption(Message.ENCRYPTION_PGP);
|
2014-05-08 12:35:21 +00:00
|
|
|
item.setChecked(true);
|
|
|
|
} else {
|
2014-06-06 09:39:17 +00:00
|
|
|
announcePgp(conversation.getAccount(),
|
|
|
|
conversation);
|
2014-05-08 12:35:21 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
} else {
|
|
|
|
showInstallPgpDialog();
|
2014-05-08 12:35:21 +00:00
|
|
|
}
|
2014-02-16 15:32:15 +00:00
|
|
|
break;
|
|
|
|
default:
|
2014-06-06 09:39:17 +00:00
|
|
|
conversation
|
|
|
|
.setNextEncryption(Message.ENCRYPTION_NONE);
|
2014-02-16 15:32:15 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
fragment.updateChatMsgHint();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
2014-04-10 12:12:08 +00:00
|
|
|
popup.inflate(R.menu.encryption_choices);
|
2014-06-06 09:39:17 +00:00
|
|
|
MenuItem otr = popup.getMenu().findItem(
|
|
|
|
R.id.encryption_choice_otr);
|
2014-05-22 13:36:41 +00:00
|
|
|
if (conversation.getMode() == Conversation.MODE_MULTI) {
|
2014-06-01 17:08:42 +00:00
|
|
|
otr.setEnabled(false);
|
2014-05-22 13:36:41 +00:00
|
|
|
}
|
2014-05-08 12:35:21 +00:00
|
|
|
switch (conversation.getNextEncryption()) {
|
2014-02-16 15:32:15 +00:00
|
|
|
case Message.ENCRYPTION_NONE:
|
2014-04-10 12:12:08 +00:00
|
|
|
popup.getMenu().findItem(R.id.encryption_choice_none)
|
|
|
|
.setChecked(true);
|
2014-02-16 15:32:15 +00:00
|
|
|
break;
|
|
|
|
case Message.ENCRYPTION_OTR:
|
2014-05-22 13:36:41 +00:00
|
|
|
otr.setChecked(true);
|
2014-02-16 15:32:15 +00:00
|
|
|
break;
|
|
|
|
case Message.ENCRYPTION_PGP:
|
2014-04-10 12:12:08 +00:00
|
|
|
popup.getMenu().findItem(R.id.encryption_choice_pgp)
|
|
|
|
.setChecked(true);
|
2014-02-16 15:32:15 +00:00
|
|
|
break;
|
|
|
|
default:
|
2014-04-10 12:12:08 +00:00
|
|
|
popup.getMenu().findItem(R.id.encryption_choice_none)
|
|
|
|
.setChecked(true);
|
2014-02-16 15:32:15 +00:00
|
|
|
break;
|
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
popup.show();
|
|
|
|
}
|
2014-02-16 15:32:15 +00:00
|
|
|
|
2014-04-16 16:16:23 +00:00
|
|
|
break;
|
|
|
|
case R.id.action_clear_history:
|
|
|
|
clearHistoryDialog(getSelectedConversation());
|
2014-02-08 23:47:11 +00:00
|
|
|
break;
|
2014-01-24 01:04:05 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2014-01-24 09:50:18 +00:00
|
|
|
return super.onOptionsItemSelected(item);
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-04-20 18:48:16 +00:00
|
|
|
private void endConversation(Conversation conversation) {
|
|
|
|
conversation.setStatus(Conversation.STATUS_ARCHIVED);
|
|
|
|
paneShouldBeOpen = true;
|
|
|
|
spl.openPane();
|
|
|
|
xmppConnectionService.archiveConversation(conversation);
|
|
|
|
if (conversationList.size() > 0) {
|
2014-05-13 15:11:27 +00:00
|
|
|
setSelectedConversation(conversationList.get(0));
|
2014-04-20 18:48:16 +00:00
|
|
|
} else {
|
2014-05-13 15:11:27 +00:00
|
|
|
setSelectedConversation(null);
|
2014-04-20 18:48:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void clearHistoryDialog(final Conversation conversation) {
|
2014-04-16 16:16:23 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setTitle(getString(R.string.clear_conversation_history));
|
2014-06-06 09:39:17 +00:00
|
|
|
View dialogView = getLayoutInflater().inflate(
|
|
|
|
R.layout.dialog_clear_history, null);
|
|
|
|
final CheckBox endConversationCheckBox = (CheckBox) dialogView
|
|
|
|
.findViewById(R.id.end_conversation_checkbox);
|
2014-04-16 16:16:23 +00:00
|
|
|
builder.setView(dialogView);
|
|
|
|
builder.setNegativeButton(getString(R.string.cancel), null);
|
2014-06-06 09:39:17 +00:00
|
|
|
builder.setPositiveButton(getString(R.string.delete_messages),
|
|
|
|
new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
activity.xmppConnectionService
|
|
|
|
.clearConversationHistory(conversation);
|
|
|
|
if (endConversationCheckBox.isChecked()) {
|
|
|
|
endConversation(conversation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-04-16 16:16:23 +00:00
|
|
|
builder.create().show();
|
|
|
|
}
|
2014-01-24 01:04:05 +00:00
|
|
|
|
2014-01-27 19:40:42 +00:00
|
|
|
protected ConversationFragment swapConversationFragment() {
|
2014-01-25 18:33:12 +00:00
|
|
|
ConversationFragment selectedFragment = new ConversationFragment();
|
2014-04-10 12:12:08 +00:00
|
|
|
|
2014-01-24 09:50:18 +00:00
|
|
|
FragmentTransaction transaction = getFragmentManager()
|
|
|
|
.beginTransaction();
|
2014-04-10 12:12:08 +00:00
|
|
|
transaction.replace(R.id.selected_conversation, selectedFragment,
|
|
|
|
"conversation");
|
2014-01-24 01:04:05 +00:00
|
|
|
transaction.commit();
|
2014-01-27 19:40:42 +00:00
|
|
|
return selectedFragment;
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|
|
|
|
|
2014-01-24 09:50:18 +00: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 12:12:08 +00:00
|
|
|
|
2014-05-21 14:43:19 +00:00
|
|
|
@Override
|
2014-06-06 09:39:17 +00:00
|
|
|
protected void onNewIntent(Intent intent) {
|
|
|
|
if ((Intent.ACTION_VIEW.equals(intent.getAction()) && (VIEW_CONVERSATION
|
|
|
|
.equals(intent.getType())))) {
|
|
|
|
String convToView = (String) intent.getExtras().get(CONVERSATION);
|
2014-06-04 17:25:53 +00:00
|
|
|
updateConversationList();
|
2014-05-21 14:43:19 +00:00
|
|
|
for (int i = 0; i < conversationList.size(); ++i) {
|
|
|
|
if (conversationList.get(i).getUuid().equals(convToView)) {
|
|
|
|
setSelectedConversation(conversationList.get(i));
|
2014-06-04 17:25:53 +00:00
|
|
|
break;
|
2014-05-21 14:43:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
paneShouldBeOpen = false;
|
|
|
|
String text = intent.getExtras().getString(TEXT, null);
|
|
|
|
swapConversationFragment().setText(text);
|
|
|
|
}
|
|
|
|
}
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-03-28 11:22:09 +00:00
|
|
|
@Override
|
2014-02-04 21:26:46 +00:00
|
|
|
public void onStart() {
|
|
|
|
super.onStart();
|
2014-04-10 12:12:08 +00:00
|
|
|
SharedPreferences preferences = PreferenceManager
|
|
|
|
.getDefaultSharedPreferences(this);
|
2014-03-14 21:40:56 +00:00
|
|
|
this.useSubject = preferences.getBoolean("use_subject_in_muc", true);
|
2014-06-06 09:39:17 +00:00
|
|
|
this.showLastseen = preferences.getBoolean("show_last_seen", false);
|
2014-03-28 11:22:09 +00:00
|
|
|
if (this.xmppConnectionServiceBound) {
|
|
|
|
this.onBackendConnected();
|
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
if (conversationList.size() >= 1) {
|
2014-02-05 21:33:39 +00:00
|
|
|
onConvChanged.onConversationListChanged();
|
|
|
|
}
|
2014-02-04 21:26:46 +00:00
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
|
2014-02-05 21:33:39 +00:00
|
|
|
@Override
|
|
|
|
protected void onStop() {
|
|
|
|
if (xmppConnectionServiceBound) {
|
2014-04-10 12:12:08 +00:00
|
|
|
xmppConnectionService.removeOnConversationListChangedListener();
|
2014-02-05 21:33:39 +00:00
|
|
|
}
|
|
|
|
super.onStop();
|
2014-02-02 15:05:15 +00:00
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
|
|
|
|
@Override
|
2014-01-27 19:40:42 +00:00
|
|
|
void onBackendConnected() {
|
2014-03-10 20:52:58 +00:00
|
|
|
this.registerListener();
|
2014-04-10 12:12:08 +00:00
|
|
|
if (conversationList.size() == 0) {
|
2014-03-19 15:16:40 +00:00
|
|
|
updateConversationList();
|
2014-01-27 19:40:42 +00:00
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
|
2014-04-10 12:12:08 +00:00
|
|
|
if ((getIntent().getAction() != null)
|
|
|
|
&& (getIntent().getAction().equals(Intent.ACTION_VIEW) && (!handledViewIntent))) {
|
2014-01-25 18:33:12 +00:00
|
|
|
if (getIntent().getType().equals(
|
|
|
|
ConversationActivity.VIEW_CONVERSATION)) {
|
|
|
|
handledViewIntent = true;
|
|
|
|
|
2014-04-10 12:12:08 +00:00
|
|
|
String convToView = (String) getIntent().getExtras().get(
|
|
|
|
CONVERSATION);
|
2014-01-25 18:33:12 +00:00
|
|
|
|
2014-04-10 12:12:08 +00:00
|
|
|
for (int i = 0; i < conversationList.size(); ++i) {
|
2014-01-27 19:40:42 +00:00
|
|
|
if (conversationList.get(i).getUuid().equals(convToView)) {
|
2014-05-13 15:11:27 +00:00
|
|
|
setSelectedConversation(conversationList.get(i));
|
2014-01-27 19:40:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
paneShouldBeOpen = false;
|
2014-03-13 20:37:27 +00:00
|
|
|
String text = getIntent().getExtras().getString(TEXT, null);
|
|
|
|
swapConversationFragment().setText(text);
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|
|
|
|
} else {
|
2014-01-28 22:15:30 +00:00
|
|
|
if (xmppConnectionService.getAccounts().size() == 0) {
|
|
|
|
startActivity(new Intent(this, ManageAccountActivity.class));
|
|
|
|
finish();
|
|
|
|
} else if (conversationList.size() <= 0) {
|
2014-04-10 12:12:08 +00:00
|
|
|
// add no history
|
2014-03-15 14:13:35 +00:00
|
|
|
startActivity(new Intent(this, ContactsActivity.class));
|
2014-01-25 18:33:12 +00:00
|
|
|
finish();
|
|
|
|
} else {
|
2014-01-28 21:21:08 +00:00
|
|
|
spl.openPane();
|
2014-04-10 12:12:08 +00:00
|
|
|
// find currently loaded fragment
|
|
|
|
ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager()
|
|
|
|
.findFragmentByTag("conversation");
|
|
|
|
if (selectedFragment != null) {
|
2014-01-27 19:40:42 +00:00
|
|
|
selectedFragment.onBackendConnected();
|
|
|
|
} else {
|
2014-05-13 15:11:27 +00:00
|
|
|
setSelectedConversation(conversationList.get(0));
|
2014-01-27 19:40:42 +00:00
|
|
|
swapConversationFragment();
|
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
ExceptionHelper.checkForCrash(this, this.xmppConnectionService);
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
|
2014-03-10 20:52:58 +00:00
|
|
|
public void registerListener() {
|
2014-04-10 12:12:08 +00:00
|
|
|
if (xmppConnectionServiceBound) {
|
|
|
|
xmppConnectionService
|
|
|
|
.setOnConversationListChangedListener(this.onConvChanged);
|
|
|
|
}
|
2014-03-10 20:52:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-06 09:39:17 +00:00
|
|
|
protected void onActivityResult(int requestCode, int resultCode,
|
|
|
|
final Intent data) {
|
2014-04-10 12:12:08 +00:00
|
|
|
super.onActivityResult(requestCode, resultCode, data);
|
|
|
|
if (resultCode == RESULT_OK) {
|
2014-02-28 01:58:15 +00:00
|
|
|
if (requestCode == REQUEST_DECRYPT_PGP) {
|
2014-04-10 12:12:08 +00:00
|
|
|
ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager()
|
|
|
|
.findFragmentByTag("conversation");
|
|
|
|
if (selectedFragment != null) {
|
2014-02-28 01:58:15 +00:00
|
|
|
selectedFragment.hidePgpPassphraseBox();
|
|
|
|
}
|
2014-05-08 14:52:19 +00:00
|
|
|
} else if (requestCode == REQUEST_ATTACH_FILE_DIALOG) {
|
2014-06-06 09:39:17 +00:00
|
|
|
attachImageToConversation(getSelectedConversation(),
|
|
|
|
data.getData());
|
2014-05-08 14:52:19 +00:00
|
|
|
} else if (requestCode == REQUEST_SEND_PGP_IMAGE) {
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-05-14 09:49:43 +00: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 14:52:19 +00:00
|
|
|
} else if (requestCode == REQUEST_ANNOUNCE_PGP) {
|
2014-06-06 09:39:17 +00:00
|
|
|
announcePgp(getSelectedConversation().getAccount(),
|
|
|
|
getSelectedConversation());
|
2014-05-08 15:31:53 +00:00
|
|
|
} else if (requestCode == REQUEST_ENCRYPT_MESSAGE) {
|
2014-06-07 11:25:27 +00:00
|
|
|
// encryptTextMessage();
|
2014-05-13 14:48:39 +00:00
|
|
|
} else if (requestCode == REQUEST_IMAGE_CAPTURE) {
|
2014-05-14 09:49:43 +00:00
|
|
|
attachImageToConversation(getSelectedConversation(), null);
|
2014-05-18 15:32:20 +00:00
|
|
|
} else if (requestCode == REQUEST_RECORD_AUDIO) {
|
2014-06-06 09:39:17 +00:00
|
|
|
Log.d("xmppService", data.getData().toString());
|
|
|
|
attachAudioToConversation(getSelectedConversation(),
|
|
|
|
data.getData());
|
2014-05-08 15:31:53 +00:00
|
|
|
} else {
|
2014-06-06 09:39:17 +00:00
|
|
|
Log.d(LOGTAG, "unknown result code:" + requestCode);
|
2014-02-28 01:58:15 +00:00
|
|
|
}
|
2014-04-10 12:12:08 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-05-18 15:32:20 +00:00
|
|
|
private void attachAudioToConversation(Conversation conversation, Uri uri) {
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-05-18 15:32:20 +00:00
|
|
|
}
|
|
|
|
|
2014-05-14 09:49:43 +00:00
|
|
|
private void attachImageToConversation(Conversation conversation, Uri uri) {
|
2014-06-06 09:39:17 +00:00
|
|
|
prepareImageToast = Toast.makeText(getApplicationContext(),
|
|
|
|
getText(R.string.preparing_image), Toast.LENGTH_LONG);
|
2014-05-14 09:49:43 +00:00
|
|
|
prepareImageToast.show();
|
2014-06-07 11:25:27 +00:00
|
|
|
xmppConnectionService.attachImageToConversation(conversation, uri,
|
|
|
|
new UiCallback<Message>() {
|
2014-06-06 09:39:17 +00:00
|
|
|
|
|
|
|
@Override
|
2014-06-07 11:25:27 +00:00
|
|
|
public void userInputRequried(PendingIntent pi,
|
|
|
|
Message object) {
|
2014-06-06 09:39:17 +00:00
|
|
|
hidePrepareImageToast();
|
|
|
|
ConversationActivity.this.runIntent(pi,
|
|
|
|
ConversationActivity.REQUEST_SEND_PGP_IMAGE);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-07 11:25:27 +00:00
|
|
|
public void success(Message message) {
|
2014-06-11 19:53:25 +00:00
|
|
|
xmppConnectionService.sendMessage(message);
|
2014-06-06 09:39:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-07 11:25:27 +00:00
|
|
|
public void error(int error, Message message) {
|
2014-06-06 09:39:17 +00:00
|
|
|
hidePrepareImageToast();
|
|
|
|
displayErrorDialog(error);
|
|
|
|
}
|
|
|
|
});
|
2014-05-08 14:52:19 +00:00
|
|
|
}
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-05-14 16:43:58 +00:00
|
|
|
private void hidePrepareImageToast() {
|
2014-06-06 09:39:17 +00:00
|
|
|
if (prepareImageToast != null) {
|
2014-05-14 16:43:58 +00:00
|
|
|
runOnUiThread(new Runnable() {
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-05-14 16:43:58 +00:00
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
prepareImageToast.cancel();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2014-03-19 15:16:40 +00:00
|
|
|
|
|
|
|
public void updateConversationList() {
|
|
|
|
conversationList.clear();
|
2014-04-10 12:12:08 +00:00
|
|
|
conversationList.addAll(xmppConnectionService.getConversations());
|
2014-03-19 15:16:40 +00:00
|
|
|
listView.invalidateViews();
|
|
|
|
}
|
2014-06-06 09:39:17 +00:00
|
|
|
|
|
|
|
public boolean showLastseen() {
|
|
|
|
if (getSelectedConversation() == null) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return this.showLastseen
|
|
|
|
&& getSelectedConversation().getMode() == Conversation.MODE_SINGLE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-07 10:33:55 +00:00
|
|
|
public void runIntent(PendingIntent pi, int requestCode) {
|
|
|
|
try {
|
2014-06-06 09:39:17 +00:00
|
|
|
this.startIntentSenderForResult(pi.getIntentSender(), requestCode,
|
|
|
|
null, 0, 0, 0);
|
2014-05-07 10:33:55 +00:00
|
|
|
} catch (SendIntentException e1) {
|
2014-06-06 09:39:17 +00:00
|
|
|
Log.d("xmppService", "failed to start intent to send message");
|
2014-05-07 10:33:55 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-04-25 14:24:56 +00:00
|
|
|
class BitmapWorkerTask extends AsyncTask<Message, Void, Bitmap> {
|
2014-06-06 09:39:17 +00:00
|
|
|
private final WeakReference<ImageView> imageViewReference;
|
|
|
|
private Message message = null;
|
|
|
|
|
|
|
|
public BitmapWorkerTask(ImageView imageView) {
|
|
|
|
imageViewReference = new WeakReference<ImageView>(imageView);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected Bitmap doInBackground(Message... params) {
|
|
|
|
message = params[0];
|
|
|
|
try {
|
|
|
|
return xmppConnectionService.getFileBackend().getThumbnail(
|
|
|
|
message, (int) (metrics.density * 288), false);
|
2014-04-25 14:24:56 +00:00
|
|
|
} catch (FileNotFoundException e) {
|
2014-06-06 09:39:17 +00:00
|
|
|
Log.d("xmppService", "file not found!");
|
2014-04-25 14:24:56 +00:00
|
|
|
return null;
|
|
|
|
}
|
2014-06-06 09:39:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(Bitmap bitmap) {
|
|
|
|
if (imageViewReference != null && bitmap != null) {
|
|
|
|
final ImageView imageView = imageViewReference.get();
|
|
|
|
if (imageView != null) {
|
|
|
|
imageView.setImageBitmap(bitmap);
|
|
|
|
imageView.setBackgroundColor(0x00000000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-25 14:24:56 +00:00
|
|
|
}
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-04-25 14:24:56 +00:00
|
|
|
public void loadBitmap(Message message, ImageView imageView) {
|
2014-04-25 21:06:20 +00:00
|
|
|
Bitmap bm;
|
|
|
|
try {
|
2014-06-06 09:39:17 +00:00
|
|
|
bm = xmppConnectionService.getFileBackend().getThumbnail(message,
|
|
|
|
(int) (metrics.density * 288), true);
|
2014-04-25 21:06:20 +00:00
|
|
|
} catch (FileNotFoundException e) {
|
|
|
|
bm = null;
|
|
|
|
}
|
2014-06-06 09:39:17 +00:00
|
|
|
if (bm != null) {
|
2014-04-25 21:06:20 +00:00
|
|
|
imageView.setImageBitmap(bm);
|
2014-04-25 21:09:15 +00:00
|
|
|
imageView.setBackgroundColor(0x00000000);
|
2014-04-25 21:06:20 +00:00
|
|
|
} else {
|
2014-06-06 09:39:17 +00:00
|
|
|
if (cancelPotentialWork(message, imageView)) {
|
|
|
|
imageView.setBackgroundColor(0xff333333);
|
|
|
|
final BitmapWorkerTask task = new BitmapWorkerTask(imageView);
|
|
|
|
final AsyncDrawable asyncDrawable = new AsyncDrawable(
|
|
|
|
getResources(), null, task);
|
|
|
|
imageView.setImageDrawable(asyncDrawable);
|
|
|
|
task.execute(message);
|
|
|
|
}
|
2014-04-25 21:06:20 +00:00
|
|
|
}
|
2014-04-25 14:24:56 +00:00
|
|
|
}
|
2014-06-06 09:39:17 +00:00
|
|
|
|
|
|
|
public static boolean cancelPotentialWork(Message message,
|
|
|
|
ImageView imageView) {
|
|
|
|
final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
|
|
|
|
|
|
|
|
if (bitmapWorkerTask != null) {
|
|
|
|
final Message oldMessage = bitmapWorkerTask.message;
|
|
|
|
if (oldMessage == null || message != oldMessage) {
|
|
|
|
bitmapWorkerTask.cancel(true);
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2014-04-25 14:24:56 +00:00
|
|
|
}
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-04-25 14:24:56 +00:00
|
|
|
private static BitmapWorkerTask getBitmapWorkerTask(ImageView imageView) {
|
2014-06-06 09:39:17 +00:00
|
|
|
if (imageView != null) {
|
|
|
|
final Drawable drawable = imageView.getDrawable();
|
|
|
|
if (drawable instanceof AsyncDrawable) {
|
|
|
|
final AsyncDrawable asyncDrawable = (AsyncDrawable) drawable;
|
|
|
|
return asyncDrawable.getBitmapWorkerTask();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
2014-04-25 14:24:56 +00:00
|
|
|
}
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-04-25 14:24:56 +00:00
|
|
|
static class AsyncDrawable extends BitmapDrawable {
|
2014-06-06 09:39:17 +00:00
|
|
|
private final WeakReference<BitmapWorkerTask> bitmapWorkerTaskReference;
|
|
|
|
|
|
|
|
public AsyncDrawable(Resources res, Bitmap bitmap,
|
|
|
|
BitmapWorkerTask bitmapWorkerTask) {
|
|
|
|
super(res, bitmap);
|
|
|
|
bitmapWorkerTaskReference = new WeakReference<BitmapWorkerTask>(
|
|
|
|
bitmapWorkerTask);
|
|
|
|
}
|
|
|
|
|
|
|
|
public BitmapWorkerTask getBitmapWorkerTask() {
|
|
|
|
return bitmapWorkerTaskReference.get();
|
|
|
|
}
|
2014-04-25 14:24:56 +00:00
|
|
|
}
|
2014-05-08 15:31:53 +00:00
|
|
|
|
2014-06-07 11:25:27 +00:00
|
|
|
public void encryptTextMessage(Message message) {
|
|
|
|
xmppConnectionService.getPgpEngine().encrypt(message,
|
|
|
|
new UiCallback<Message>() {
|
2014-05-08 15:31:53 +00:00
|
|
|
|
|
|
|
@Override
|
2014-06-07 11:25:27 +00:00
|
|
|
public void userInputRequried(PendingIntent pi,
|
|
|
|
Message message) {
|
2014-06-06 09:39:17 +00:00
|
|
|
activity.runIntent(pi,
|
2014-05-08 15:31:53 +00:00
|
|
|
ConversationActivity.REQUEST_SEND_MESSAGE);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-07 11:25:27 +00:00
|
|
|
public void success(Message message) {
|
2014-06-11 19:53:25 +00:00
|
|
|
xmppConnectionService.sendMessage(message);
|
2014-05-08 15:31:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-07 11:25:27 +00:00
|
|
|
public void error(int error, Message message) {
|
2014-05-08 15:31:53 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2014-01-24 01:04:05 +00:00
|
|
|
}
|