Conversations/src/eu/siacs/conversations/ui/ConversationActivity.java

926 lines
30 KiB
Java
Raw Normal View History

2014-02-28 12:46:01 -05:00
package eu.siacs.conversations.ui;
2014-01-23 20:04:05 -05:00
2014-04-25 10:24:56 -04:00
import java.io.FileNotFoundException;
import java.lang.ref.WeakReference;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.Hashtable;
import java.util.List;
2014-01-23 20:04:05 -05:00
2014-05-06 15:34:30 -04:00
import org.openintents.openpgp.OpenPgpError;
2014-02-28 12:46:01 -05:00
import eu.siacs.conversations.R;
2014-05-06 15:34:30 -04:00
import eu.siacs.conversations.crypto.OnPgpEngineResult;
2014-02-28 12:46:01 -05:00
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 11:09:23 -04:00
import eu.siacs.conversations.utils.ExceptionHelper;
2014-02-28 12:46:01 -05:00
import eu.siacs.conversations.utils.UIHelper;
import android.net.Uri;
2014-04-25 10:24:56 -04:00
import android.os.AsyncTask;
2014-01-23 20:04:05 -05:00
import android.os.Bundle;
2014-03-14 17:40:56 -04:00
import android.preference.PreferenceManager;
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-01-23 20:04:05 -05:00
import android.content.Context;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
2014-05-06 15:34:30 -04:00
import android.content.IntentSender.SendIntentException;
2014-01-23 20:04:05 -05:00
import android.content.Intent;
2014-03-14 17:40:56 -04:00
import android.content.SharedPreferences;
2014-04-25 10:24:56 -04:00
import android.content.res.Resources;
import android.graphics.Bitmap;
2014-03-07 12:13:19 -05:00
import android.graphics.Color;
2014-02-10 16:45:59 -05:00
import android.graphics.Typeface;
2014-04-25 10:24:56 -04:00
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
2014-01-23 20:04:05 -05:00
import android.support.v4.widget.SlidingPaneLayout;
import android.support.v4.widget.SlidingPaneLayout.PanelSlideListener;
2014-04-25 10:24:56 -04:00
import android.util.DisplayMetrics;
import android.util.Log;
2014-01-24 04:50:18 -05:00
import android.view.KeyEvent;
import android.view.LayoutInflater;
2014-01-23 20:04:05 -05:00
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
2014-01-23 20:04:05 -05:00
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
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;
import android.widget.TextView;
import android.widget.ImageView;
2014-01-23 20:04:05 -05:00
public class ConversationActivity extends XmppActivity {
2014-01-24 04:50:18 -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";
public static final String PRESENCE = "eu.siacs.conversations.presence";
2014-02-27 18:22:56 -05:00
public static final int REQUEST_SEND_MESSAGE = 0x75441;
public static final int REQUEST_DECRYPT_PGP = 0x76783;
private static final int REQUEST_ATTACH_FILE_DIALOG = 0x48502;
2014-05-06 15:34:30 -04:00
private static final int REQUEST_SEND_PGP_IMAGE = 0x53883;
private static final int REQUEST_ATTACH_FILE = 0x73824;
public static final int REQUEST_ENCRYPT_MESSAGE = 0x378018;
2014-01-23 20:04:05 -05:00
protected SlidingPaneLayout spl;
2014-01-24 04:50:18 -05:00
private List<Conversation> conversationList = new ArrayList<Conversation>();
2014-02-06 20:57:36 -05:00
private Conversation selectedConversation = null;
private ListView listView;
2014-04-25 10:24:56 -04:00
private boolean paneShouldBeOpen = true;
2014-03-14 17:40:56 -04:00
private boolean useSubject = true;
2014-02-01 09:07:20 -05:00
private ArrayAdapter<Conversation> listAdapter;
2014-05-06 15:34:30 -04:00
public Message pendingMessage = null;
2014-02-01 09:07:20 -05:00
private OnConversationListChangedListener onConvChanged = new OnConversationListChangedListener() {
2014-02-01 09:07:20 -05:00
@Override
public void onConversationListChanged() {
runOnUiThread(new Runnable() {
2014-02-01 09:07:20 -05:00
@Override
public void run() {
updateConversationList();
if (paneShouldBeOpen) {
2014-02-01 09:07:20 -05:00
if (conversationList.size() >= 1) {
swapConversationFragment();
} else {
startActivity(new Intent(getApplicationContext(),
ContactsActivity.class));
2014-02-01 09:07:20 -05:00
finish();
}
}
ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager()
.findFragmentByTag("conversation");
if (selectedFragment != null) {
selectedFragment.updateMessages();
}
2014-02-01 09:07:20 -05:00
}
});
}
};
protected ConversationActivity activity = this;
2014-04-25 10:24:56 -04:00
private DisplayMetrics metrics;
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() {
return this.selectedConversation;
}
public ListView getConversationListView() {
return this.listView;
}
public SlidingPaneLayout getSlidingPaneLayout() {
return this.spl;
}
public boolean shouldPaneBeOpen() {
return paneShouldBeOpen;
}
2014-01-23 20:04:05 -05:00
@Override
protected void onCreate(Bundle savedInstanceState) {
2014-01-24 04:50:18 -05:00
2014-04-25 10:24:56 -04:00
metrics = getResources().getDisplayMetrics();
super.onCreate(savedInstanceState);
2014-01-24 04:50:18 -05:00
setContentView(R.layout.fragment_conversations_overview);
2014-01-24 04:50:18 -05:00
listView = (ListView) findViewById(R.id.list);
2014-02-01 09:07:20 -05:00
this.listAdapter = new ArrayAdapter<Conversation>(this,
R.layout.conversation_list_row, conversationList) {
@Override
public View getView(int position, View view, ViewGroup parent) {
if (view == null) {
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
view = (View) inflater.inflate(
R.layout.conversation_list_row, null);
}
2014-03-07 20:06:00 -05:00
Conversation conv;
if (conversationList.size() > position) {
conv = getItem(position);
} else {
return view;
}
2014-03-07 12:13:19 -05:00
if (!spl.isSlideable()) {
if (conv == getSelectedConversation()) {
2014-03-07 12:13:19 -05:00
view.setBackgroundColor(0xffdddddd);
} else {
view.setBackgroundColor(Color.TRANSPARENT);
}
} else {
view.setBackgroundColor(Color.TRANSPARENT);
2014-03-07 12:13:19 -05:00
}
TextView convName = (TextView) view
.findViewById(R.id.conversation_name);
2014-03-14 17:40:56 -04:00
convName.setText(conv.getName(useSubject));
TextView convLastMsg = (TextView) view
.findViewById(R.id.conversation_lastmsg);
2014-04-25 10:24:56 -04:00
ImageView imagePreview = (ImageView) view.findViewById(R.id.conversation_lastimage);
Message latestMessage = conv.getLatestMessage();
if (latestMessage.getType() == Message.TYPE_TEXT) {
convLastMsg.setText(conv.getLatestMessage().getBody());
convLastMsg.setVisibility(View.VISIBLE);
imagePreview.setVisibility(View.GONE);
} else if (latestMessage.getType() == Message.TYPE_IMAGE) {
2014-05-08 05:53:00 -04:00
if (latestMessage.getStatus() >= Message.STATUS_RECIEVED) {
2014-04-25 10:24:56 -04:00
convLastMsg.setVisibility(View.GONE);
imagePreview.setVisibility(View.VISIBLE);
loadBitmap(latestMessage, imagePreview);
} else {
convLastMsg.setVisibility(View.VISIBLE);
imagePreview.setVisibility(View.GONE);
2014-05-08 05:53:00 -04:00
if (latestMessage.getStatus() == Message.STATUS_RECEIVED_OFFER) {
2014-04-25 10:24:56 -04:00
convLastMsg.setText(getText(R.string.image_offered_for_download));
} else if (latestMessage.getStatus() == Message.STATUS_RECIEVING) {
convLastMsg.setText(getText(R.string.receiving_image));
} else {
convLastMsg.setText("");
}
}
}
if (!conv.isRead()) {
convName.setTypeface(null, Typeface.BOLD);
convLastMsg.setTypeface(null, Typeface.BOLD);
2014-02-10 16:45:59 -05:00
} else {
convName.setTypeface(null, Typeface.NORMAL);
convLastMsg.setTypeface(null, Typeface.NORMAL);
2014-02-10 16:45:59 -05:00
}
2014-01-25 21:27:55 -05:00
((TextView) view.findViewById(R.id.conversation_lastupdate))
.setText(UIHelper.readableTimeDifference(conv
.getLatestMessage().getTimeSent()));
2014-04-25 10:24:56 -04:00
ImageView profilePicture = (ImageView) view
.findViewById(R.id.conversation_image);
2014-04-25 10:24:56 -04:00
profilePicture.setImageBitmap(UIHelper.getContactPicture(
conv, 56, activity.getApplicationContext(), false));
2014-04-25 10:24:56 -04:00
return view;
}
2014-02-01 09:07:20 -05:00
};
2014-02-01 09:07:20 -05:00
listView.setAdapter(this.listAdapter);
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,
int position, long arg3) {
paneShouldBeOpen = false;
2014-02-06 20:57:36 -05:00
if (selectedConversation != conversationList.get(position)) {
selectedConversation = conversationList.get(position);
swapConversationFragment(); // .onBackendConnected(conversationList.get(position));
} else {
spl.closePane();
}
2014-01-23 20:04:05 -05:00
}
});
2014-02-28 12:46:01 -05:00
spl = (SlidingPaneLayout) findViewById(R.id.slidingpanelayout);
2014-01-23 20:04:05 -05:00
spl.setParallaxDistance(150);
spl.setShadowResource(R.drawable.es_slidingpane_shadow);
spl.setSliderFadeColor(0);
spl.setPanelSlideListener(new PanelSlideListener() {
2014-01-24 04:50:18 -05:00
2014-01-23 20:04:05 -05:00
@Override
public void onPanelOpened(View arg0) {
paneShouldBeOpen = true;
2014-01-23 20:04:05 -05:00
getActionBar().setDisplayHomeAsUpEnabled(false);
getActionBar().setTitle(R.string.app_name);
invalidateOptionsMenu();
2014-03-02 23:01:02 -05:00
hideKeyboard();
2014-01-23 20:04:05 -05:00
}
2014-01-24 04:50:18 -05:00
2014-01-23 20:04:05 -05:00
@Override
public void onPanelClosed(View arg0) {
paneShouldBeOpen = false;
if ((conversationList.size() > 0)
&& (getSelectedConversation() != null)) {
2014-01-24 04:50:18 -05:00
getActionBar().setDisplayHomeAsUpEnabled(true);
getActionBar().setTitle(
getSelectedConversation().getName(useSubject));
2014-01-24 04:50:18 -05:00
invalidateOptionsMenu();
2014-02-10 16:45:59 -05:00
if (!getSelectedConversation().isRead()) {
getSelectedConversation().markRead();
UIHelper.updateNotification(getApplicationContext(),
getConversationList(), null, false);
listView.invalidateViews();
2014-02-10 16:45:59 -05:00
}
2014-01-24 04:50:18 -05:00
}
2014-01-23 20:04:05 -05:00
}
@Override
public void onPanelSlide(View arg0, float arg1) {
// TODO Auto-generated method stub
2014-01-24 04:50:18 -05:00
2014-01-23 20:04:05 -05: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-02-13 17:40:08 -05:00
MenuItem menuSecure = (MenuItem) menu.findItem(R.id.action_security);
2014-02-28 12:46:01 -05:00
MenuItem menuArchive = (MenuItem) menu.findItem(R.id.action_archive);
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 06:49:43 -04:00
MenuItem menuAttach = (MenuItem) menu.findItem(R.id.action_attach_file);
MenuItem menuClearHistory = (MenuItem) menu.findItem(R.id.action_clear_history);
if ((spl.isOpen() && (spl.isSlideable()))) {
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);
menuInviteContacts.setVisible(false);
2014-04-05 06:49:43 -04:00
menuAttach.setVisible(false);
menuClearHistory.setVisible(false);
2014-01-23 20:04:05 -05:00
} else {
((MenuItem) menu.findItem(R.id.action_add)).setVisible(!spl
.isSlideable());
if (this.getSelectedConversation() != null) {
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-02-13 17:40:08 -05:00
menuSecure.setVisible(false);
2014-04-05 06:49:43 -04:00
menuAttach.setVisible(false);
2014-02-13 17:40:08 -05:00
} else {
2014-02-28 12:46:01 -05:00
menuMucDetails.setVisible(false);
menuInviteContacts.setVisible(false);
if (this.getSelectedConversation().getLatestMessage()
.getEncryption() != Message.ENCRYPTION_NONE) {
2014-02-13 17:40:08 -05:00
menuSecure.setIcon(R.drawable.ic_action_secure);
}
2014-02-06 20:57:36 -05:00
}
}
2014-01-23 20:04:05 -05:00
}
return true;
}
2014-05-07 06:33:55 -04:00
private void attachFileDialog() {
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, getString(R.string.attach_file));
startActivityForResult(chooser, REQUEST_ATTACH_FILE_DIALOG);
2014-05-07 06:33:55 -04:00
}
}
@Override
public void onSendPlainTextInstead() {
}
},"file");
}
2014-01-24 04:50:18 -05:00
2014-05-07 06:33:55 -04:00
private void attachFile() {
final Conversation conversation = getSelectedConversation();
if (conversation.getNextEncryption() == Message.ENCRYPTION_PGP) {
2014-05-07 06:33:55 -04:00
if (hasPgp()) {
if (conversation.getContact().getPgpKeyId()!=0) {
xmppConnectionService.getPgpEngine().hasKey(conversation.getContact(), new OnPgpEngineResult() {
@Override
public void userInputRequried(PendingIntent pi) {
ConversationActivity.this.runIntent(pi, REQUEST_ATTACH_FILE);
}
@Override
public void success() {
attachFileDialog();
}
2014-05-07 06:33:55 -04:00
@Override
public void error(OpenPgpError openPgpError) {
// TODO Auto-generated method stub
}
});
} else {
final ConversationFragment fragment = (ConversationFragment) getFragmentManager()
.findFragmentByTag("conversation");
if (fragment != null) {
fragment.showNoPGPKeyDialog(new OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
conversation.setNextEncryption(Message.ENCRYPTION_NONE);
attachFileDialog();
}
});
2014-05-07 06:33:55 -04:00
}
}
2014-05-07 06:33:55 -04:00
}
} else if (getSelectedConversation().getNextEncryption() == Message.ENCRYPTION_NONE) {
attachFileDialog();
}
}
2014-01-23 20:04:05 -05:00
@Override
public boolean onOptionsItemSelected(MenuItem item) {
2014-01-24 04:50:18 -05:00
switch (item.getItemId()) {
2014-01-23 20:04:05 -05:00
case android.R.id.home:
spl.openPane();
break;
2014-04-05 15:06:10 -04:00
case R.id.action_attach_file:
2014-05-07 06:33:55 -04:00
attachFile();
2014-04-05 15:06:10 -04:00
break;
2014-01-23 20:04:05 -05:00
case R.id.action_add:
startActivity(new Intent(this, ContactsActivity.class));
break;
case R.id.action_archive:
2014-04-20 14:48:16 -04:00
this.endConversation(getSelectedConversation());
break;
2014-02-28 12:46:01 -05:00
case R.id.action_contact_details:
Contact contact = this.getSelectedConversation().getContact();
if (contact != null) {
Intent intent = new Intent(this, ContactDetailsActivity.class);
2014-03-05 09:41:14 -05:00
intent.setAction(ContactDetailsActivity.ACTION_VIEW_CONTACT);
intent.putExtra("uuid", contact.getUuid());
startActivity(intent);
} else {
showAddToRosterDialog(getSelectedConversation());
}
2014-02-16 10:32:15 -05:00
break;
2014-03-02 23:01:02 -05:00
case R.id.action_muc_details:
Intent intent = new Intent(this, MucDetailsActivity.class);
2014-03-05 09:41:14 -05:00
intent.setAction(MucDetailsActivity.ACTION_VIEW_MUC);
2014-03-03 20:51:01 -05:00
intent.putExtra("uuid", getSelectedConversation().getUuid());
startActivity(intent);
2014-03-02 23:01:02 -05:00
break;
case R.id.action_invite:
Intent inviteIntent = new Intent(getApplicationContext(),
ContactsActivity.class);
inviteIntent.setAction("invite");
inviteIntent.putExtra("uuid", selectedConversation.getUuid());
startActivity(inviteIntent);
break;
2014-02-16 10:32:15 -05:00
case R.id.action_security:
final Conversation conversation = getSelectedConversation();
2014-02-16 10:32:15 -05:00
View menuItemView = findViewById(R.id.action_security);
PopupMenu popup = new PopupMenu(this, menuItemView);
final ConversationFragment fragment = (ConversationFragment) getFragmentManager()
.findFragmentByTag("conversation");
if (fragment != null) {
2014-02-16 10:32:15 -05:00
popup.setOnMenuItemClickListener(new OnMenuItemClickListener() {
2014-02-16 10:32:15 -05:00
@Override
public boolean onMenuItemClick(MenuItem item) {
switch (item.getItemId()) {
case R.id.encryption_choice_none:
conversation.setNextEncryption(Message.ENCRYPTION_NONE);
2014-02-16 10:32:15 -05:00
item.setChecked(true);
break;
case R.id.encryption_choice_otr:
conversation.setNextEncryption(Message.ENCRYPTION_OTR);
2014-02-16 10:32:15 -05:00
item.setChecked(true);
break;
case R.id.encryption_choice_pgp:
if (hasPgp()) {
if (conversation.getAccount().getKeys().has("pgp_signature")) {
conversation.setNextEncryption(Message.ENCRYPTION_PGP);
item.setChecked(true);
} else {
announcePgp(conversation.getAccount(),conversation);
}
}
2014-02-16 10:32:15 -05:00
break;
default:
conversation.setNextEncryption(Message.ENCRYPTION_NONE);
2014-02-16 10:32:15 -05:00
break;
}
fragment.updateChatMsgHint();
return true;
}
});
popup.inflate(R.menu.encryption_choices);
switch (conversation.getNextEncryption()) {
2014-02-16 10:32:15 -05:00
case Message.ENCRYPTION_NONE:
popup.getMenu().findItem(R.id.encryption_choice_none)
.setChecked(true);
2014-02-16 10:32:15 -05:00
break;
case Message.ENCRYPTION_OTR:
popup.getMenu().findItem(R.id.encryption_choice_otr)
.setChecked(true);
2014-02-16 10:32:15 -05:00
break;
case Message.ENCRYPTION_PGP:
popup.getMenu().findItem(R.id.encryption_choice_pgp)
.setChecked(true);
2014-02-16 10:32:15 -05:00
break;
default:
popup.getMenu().findItem(R.id.encryption_choice_none)
.setChecked(true);
2014-02-16 10:32:15 -05:00
break;
}
popup.show();
}
2014-02-16 10:32:15 -05:00
break;
case R.id.action_clear_history:
clearHistoryDialog(getSelectedConversation());
break;
2014-01-23 20:04:05 -05:00
default:
break;
}
2014-01-24 04:50:18 -05:00
return super.onOptionsItemSelected(item);
2014-01-23 20:04:05 -05:00
}
2014-04-20 14:48:16 -04:00
private void endConversation(Conversation conversation) {
conversation.setStatus(Conversation.STATUS_ARCHIVED);
paneShouldBeOpen = true;
spl.openPane();
xmppConnectionService.archiveConversation(conversation);
if (conversationList.size() > 0) {
selectedConversation = conversationList.get(0);
} else {
selectedConversation = null;
}
}
protected void clearHistoryDialog(final Conversation conversation) {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle(getString(R.string.clear_conversation_history));
View dialogView = getLayoutInflater().inflate(R.layout.dialog_clear_history, null);
2014-04-20 14:48:16 -04:00
final CheckBox endConversationCheckBox = (CheckBox) dialogView.findViewById(R.id.end_conversation_checkbox);
builder.setView(dialogView);
builder.setNegativeButton(getString(R.string.cancel), null);
builder.setPositiveButton(getString(R.string.delete_messages), new OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
2014-04-20 14:48:16 -04:00
activity.xmppConnectionService.clearConversationHistory(conversation);
if (endConversationCheckBox.isChecked()) {
endConversation(conversation);
}
}
});
builder.create().show();
}
2014-01-23 20:04:05 -05:00
protected ConversationFragment swapConversationFragment() {
ConversationFragment selectedFragment = new ConversationFragment();
2014-01-24 04:50:18 -05:00
FragmentTransaction transaction = getFragmentManager()
.beginTransaction();
transaction.replace(R.id.selected_conversation, selectedFragment,
"conversation");
2014-01-23 20:04:05 -05:00
transaction.commit();
return selectedFragment;
2014-01-23 20:04:05 -05:00
}
2014-01-24 04:50:18 -05: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);
}
@Override
public void onStart() {
super.onStart();
SharedPreferences preferences = PreferenceManager
.getDefaultSharedPreferences(this);
2014-03-14 17:40:56 -04:00
this.useSubject = preferences.getBoolean("use_subject_in_muc", true);
if (this.xmppConnectionServiceBound) {
this.onBackendConnected();
}
if (conversationList.size() >= 1) {
onConvChanged.onConversationListChanged();
}
}
@Override
protected void onStop() {
if (xmppConnectionServiceBound) {
xmppConnectionService.removeOnConversationListChangedListener();
}
super.onStop();
}
@Override
void onBackendConnected() {
this.registerListener();
if (conversationList.size() == 0) {
updateConversationList();
}
if ((getIntent().getAction() != null)
&& (getIntent().getAction().equals(Intent.ACTION_VIEW) && (!handledViewIntent))) {
if (getIntent().getType().equals(
ConversationActivity.VIEW_CONVERSATION)) {
handledViewIntent = true;
String convToView = (String) getIntent().getExtras().get(
CONVERSATION);
for (int i = 0; i < conversationList.size(); ++i) {
if (conversationList.get(i).getUuid().equals(convToView)) {
2014-02-06 20:57:36 -05:00
selectedConversation = conversationList.get(i);
}
}
paneShouldBeOpen = false;
2014-03-13 16:37:27 -04:00
String text = getIntent().getExtras().getString(TEXT, null);
swapConversationFragment().setText(text);
}
} else {
if (xmppConnectionService.getAccounts().size() == 0) {
startActivity(new Intent(this, ManageAccountActivity.class));
finish();
} else if (conversationList.size() <= 0) {
// add no history
startActivity(new Intent(this, ContactsActivity.class));
finish();
} else {
spl.openPane();
// find currently loaded fragment
ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager()
.findFragmentByTag("conversation");
if (selectedFragment != null) {
selectedFragment.onBackendConnected();
} else {
2014-02-06 20:57:36 -05:00
selectedConversation = conversationList.get(0);
swapConversationFragment();
}
ExceptionHelper.checkForCrash(this, this.xmppConnectionService);
}
}
}
public void registerListener() {
if (xmppConnectionServiceBound) {
xmppConnectionService
.setOnConversationListChangedListener(this.onConvChanged);
}
}
@Override
protected void onActivityResult(int requestCode, int resultCode, final Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == RESULT_OK) {
if (requestCode == REQUEST_DECRYPT_PGP) {
ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager()
.findFragmentByTag("conversation");
if (selectedFragment != null) {
selectedFragment.hidePgpPassphraseBox();
}
} else if (requestCode == REQUEST_ATTACH_FILE_DIALOG) {
2014-05-06 15:34:30 -04:00
final Conversation conversation = getSelectedConversation();
String presence = conversation.getNextPresence();
2014-05-07 06:33:55 -04:00
if (conversation.getNextEncryption() == Message.ENCRYPTION_NONE) {
2014-05-06 15:34:30 -04:00
xmppConnectionService.attachImageToConversation(conversation, presence, data.getData());
2014-05-07 06:33:55 -04:00
} else if (conversation.getNextEncryption() == Message.ENCRYPTION_PGP) {
attachPgpFile(conversation,data.getData());
2014-05-06 15:34:30 -04:00
} else {
2014-05-07 06:33:55 -04:00
Log.d(LOGTAG,"unknown next message encryption: "+conversation.getNextEncryption());
2014-05-06 15:34:30 -04:00
}
} else if (requestCode == REQUEST_SEND_PGP_IMAGE) {
} else if (requestCode == REQUEST_ATTACH_FILE) {
attachFile();
} else if (requestCode == REQUEST_ANNOUNCE_PGP) {
announcePgp(getSelectedConversation().getAccount(),getSelectedConversation());
} else if (requestCode == REQUEST_ENCRYPT_MESSAGE) {
encryptTextMessage();
} else {
Log.d(LOGTAG,"unknown result code:"+requestCode);
}
}
}
private void attachPgpFile(Conversation conversation, Uri uri) {
String presence = conversation.getNextPresence();
pendingMessage = xmppConnectionService.attachEncryptedImageToConversation(conversation, presence, uri, new OnPgpEngineResult() {
@Override
public void userInputRequried(PendingIntent pi) {
ConversationActivity.this.runIntent(pi, ConversationActivity.REQUEST_SEND_PGP_IMAGE);
}
@Override
public void success() {
pendingMessage.getConversation().getMessages().add(pendingMessage);
xmppConnectionService.databaseBackend.createMessage(pendingMessage);
xmppConnectionService.sendMessage(pendingMessage, null);
xmppConnectionService.updateUi(pendingMessage.getConversation(), false);
pendingMessage = null;
}
@Override
public void error(OpenPgpError openPgpError) {
Log.d(LOGTAG,"pgp error"+openPgpError.getMessage());
}
});
}
public void updateConversationList() {
conversationList.clear();
conversationList.addAll(xmppConnectionService.getConversations());
listView.invalidateViews();
}
public void selectPresence(final Conversation conversation, final OnPresenceSelected listener, String reason) {
Account account = conversation.getAccount();
if (account.getStatus() != Account.STATUS_ONLINE) {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle(getString(R.string.not_connected));
builder.setIconAttribute(android.R.attr.alertDialogIcon);
if ("otr".equals(reason)) {
builder.setMessage(getString(R.string.you_are_offline,getString(R.string.otr_messages)));
} else if ("file".equals(reason)) {
builder.setMessage(getString(R.string.you_are_offline,getString(R.string.files)));
} else {
builder.setMessage(getString(R.string.you_are_offline_blank));
}
builder.setNegativeButton(getString(R.string.cancel), null);
builder.setPositiveButton(getString(R.string.manage_account), new OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
startActivity(new Intent(activity, ManageAccountActivity.class));
}
});
builder.create().show();
listener.onPresenceSelected(false, null);
} else {
Contact contact = conversation.getContact();
if (contact==null) {
showAddToRosterDialog(conversation);
listener.onPresenceSelected(false,null);
} else {
Hashtable<String, Integer> presences = contact.getPresences();
if (presences.size() == 0) {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle(getString(R.string.contact_offline));
if ("otr".equals(reason)) {
builder.setMessage(getString(R.string.contact_offline_otr));
builder.setPositiveButton(getString(R.string.send_unencrypted), new OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
listener.onSendPlainTextInstead();
}
});
} else if ("file".equals(reason)) {
builder.setMessage(getString(R.string.contact_offline_file));
}
builder.setIconAttribute(android.R.attr.alertDialogIcon);
builder.setNegativeButton(getString(R.string.cancel), null);
builder.create().show();
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(getString(R.string.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-04-25 10:24:56 -04:00
2014-05-07 06:33:55 -04:00
public void runIntent(PendingIntent pi, int requestCode) {
try {
this.startIntentSenderForResult(pi.getIntentSender(),requestCode, null, 0,
0, 0);
} catch (SendIntentException e1) {
Log.d("xmppService","failed to start intent to send message");
}
}
2014-04-25 10:24:56 -04:00
class BitmapWorkerTask extends AsyncTask<Message, Void, Bitmap> {
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 10:24:56 -04:00
} catch (FileNotFoundException e) {
Log.d("xmppService","file not found!");
return null;
}
}
@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 10:24:56 -04:00
}
}
}
}
public void loadBitmap(Message message, ImageView imageView) {
Bitmap bm;
try {
bm = xmppConnectionService.getFileBackend().getThumbnail(message, (int) (metrics.density * 288), true);
} catch (FileNotFoundException e) {
bm = null;
}
if (bm!=null) {
imageView.setImageBitmap(bm);
imageView.setBackgroundColor(0x00000000);
} else {
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 10:24:56 -04: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;
}
private static BitmapWorkerTask getBitmapWorkerTask(ImageView imageView) {
if (imageView != null) {
final Drawable drawable = imageView.getDrawable();
if (drawable instanceof AsyncDrawable) {
final AsyncDrawable asyncDrawable = (AsyncDrawable) drawable;
return asyncDrawable.getBitmapWorkerTask();
}
}
return null;
}
static class AsyncDrawable extends BitmapDrawable {
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();
}
}
public void encryptTextMessage() {
xmppConnectionService.getPgpEngine().encrypt(this.pendingMessage, new OnPgpEngineResult() {
@Override
public void userInputRequried(
PendingIntent pi) {
activity.runIntent(
pi,
ConversationActivity.REQUEST_SEND_MESSAGE);
}
@Override
public void success() {
xmppConnectionService.sendMessage(pendingMessage, null);
pendingMessage = null;
ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager()
.findFragmentByTag("conversation");
if (selectedFragment != null) {
selectedFragment.clearInputField();
}
}
@Override
public void error(
OpenPgpError openPgpError) {
// TODO Auto-generated method
// stub
}
});
}
2014-01-23 20:04:05 -05:00
}