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

488 lines
15 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
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
2014-01-23 20:04:05 -05:00
2014-02-28 12:46:01 -05: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;
import eu.siacs.conversations.utils.UIHelper;
import android.net.Uri;
2014-01-23 20:04:05 -05:00
import android.os.Bundle;
import android.app.AlertDialog;
2014-01-23 20:04:05 -05:00
import android.app.FragmentTransaction;
import android.app.NotificationManager;
2014-01-23 20:04:05 -05:00
import android.content.Context;
import android.content.DialogInterface;
2014-01-23 20:04:05 -05:00
import android.content.Intent;
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-01-23 20:04:05 -05:00
import android.support.v4.widget.SlidingPaneLayout;
import android.support.v4.widget.SlidingPaneLayout.PanelSlideListener;
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-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-02-09 21:34:00 -05:00
2014-02-27 18:22:56 -05:00
public static final int REQUEST_SEND_MESSAGE = 0x75441;
public static final int REQUEST_DECRYPT_PGP = 0x76783;
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;
private boolean paneShouldBeOpen = true;
2014-02-01 09:07:20 -05:00
private ArrayAdapter<Conversation> listAdapter;
private OnConversationListChangedListener onConvChanged = new OnConversationListChangedListener() {
@Override
public void onConversationListChanged() {
conversationList.clear();
conversationList.addAll(xmppConnectionService
.getConversations());
runOnUiThread(new Runnable() {
@Override
public void run() {
updateConversationList();
2014-02-01 09:07:20 -05:00
if(paneShouldBeOpen) {
if (conversationList.size() >= 1) {
swapConversationFragment();
} else {
startActivity(new Intent(getApplicationContext(), NewConversationActivity.class));
finish();
}
}
ConversationFragment selectedFragment = (ConversationFragment) getFragmentManager().findFragmentByTag("conversation");
if (selectedFragment!=null) {
selectedFragment.updateMessages();
}
2014-02-01 09:07:20 -05:00
}
});
}
};
private DialogInterface.OnClickListener addToRoster = new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
String jid = getSelectedConversation().getContactJid();
Account account = getSelectedConversation().getAccount();
String name = jid.split("@")[0];
Contact contact = new Contact(account, name, jid, null);
xmppConnectionService.createContact(contact);
}
};
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;
}
public void updateConversationList() {
if (conversationList.size() >= 1) {
Collections.sort(this.conversationList, new Comparator<Conversation>() {
@Override
public int compare(Conversation lhs, Conversation rhs) {
2014-02-13 17:40:08 -05:00
return (int) (rhs.getLatestMessage().getTimeSent() - lhs.getLatestMessage().getTimeSent());
}
});
}
this.listView.invalidateViews();
}
2014-01-23 20:04:05 -05:00
@Override
protected void onCreate(Bundle savedInstanceState) {
2014-01-24 04:50:18 -05:00
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()) {
view.setBackgroundColor(0xffdddddd);
} else {
view.setBackgroundColor(Color.TRANSPARENT);
}
} else {
view.setBackgroundColor(Color.TRANSPARENT);
2014-03-07 12:13:19 -05:00
}
2014-02-10 16:45:59 -05:00
TextView convName = (TextView) view.findViewById(R.id.conversation_name);
convName.setText(conv.getName());
TextView convLastMsg = (TextView) view.findViewById(R.id.conversation_lastmsg);
2014-02-13 17:40:08 -05:00
convLastMsg.setText(conv.getLatestMessage().getBody());
2014-02-10 16:45:59 -05:00
if(!conv.isRead()) {
convName.setTypeface(null,Typeface.BOLD);
convLastMsg.setTypeface(null,Typeface.BOLD);
} else {
convName.setTypeface(null,Typeface.NORMAL);
convLastMsg.setTypeface(null,Typeface.NORMAL);
}
2014-01-25 21:27:55 -05:00
((TextView) view.findViewById(R.id.conversation_lastupdate))
2014-03-05 09:41:14 -05:00
.setText(UIHelper.readableTimeDifference(conv.getLatestMessage().getTimeSent()));
2014-03-05 09:41:14 -05:00
Uri profilePhoto = conv.getProfilePhotoUri();
ImageView imageView = (ImageView) view.findViewById(R.id.conversation_image);
if (profilePhoto!=null) {
imageView.setImageURI(profilePhoto);
} else {
2014-02-03 12:38:47 -05:00
imageView.setImageBitmap(UIHelper.getUnknownContactPicture(getItem(position).getName(),200));
}
((ImageView) view.findViewById(R.id.conversation_image))
2014-03-07 20:06:00 -05:00
.setImageURI(conv.getProfilePhotoUri());
return view;
}
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;
2014-01-24 04:50:18 -05:00
if (conversationList.size() > 0) {
getActionBar().setDisplayHomeAsUpEnabled(true);
2014-02-06 20:57:36 -05:00
getActionBar().setTitle(getSelectedConversation().getName());
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(), false);
2014-02-10 16:45:59 -05:00
updateConversationList();
}
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);
2014-02-13 17:40:08 -05:00
2014-03-07 12:13:19 -05:00
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);
2014-01-23 20:04:05 -05:00
} else {
2014-03-07 12:13:19 -05:00
((MenuItem) menu.findItem(R.id.action_add)).setVisible(!spl.isSlideable());
2014-02-06 20:57:36 -05:00
if (this.getSelectedConversation()!=null) {
if (this.getSelectedConversation().getMode() == Conversation.MODE_MULTI) {
2014-02-28 12:46:01 -05:00
menuMucDetails.setVisible(true);
menuContactDetails.setVisible(false);
2014-02-13 17:40:08 -05:00
menuSecure.setVisible(false);
2014-02-28 12:46:01 -05:00
menuArchive.setTitle("Leave conference");
2014-02-13 17:40:08 -05:00
} else {
2014-02-28 12:46:01 -05:00
menuContactDetails.setVisible(true);
menuMucDetails.setVisible(false);
2014-02-13 17:40:08 -05:00
if (this.getSelectedConversation().getLatestMessage().getEncryption() != Message.ENCRYPTION_NONE) {
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-01-24 04:50:18 -05:00
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;
case R.id.action_add:
startActivity(new Intent(this, NewConversationActivity.class));
break;
case R.id.action_archive:
2014-02-06 20:57:36 -05:00
Conversation conv = getSelectedConversation();
conv.setStatus(Conversation.STATUS_ARCHIVED);
2014-02-01 09:07:20 -05:00
paneShouldBeOpen = true;
spl.openPane();
xmppConnectionService.archiveConversation(conv);
if (conversationList.size() > 0) {
selectedConversation = conversationList.get(0);
} else {
selectedConversation = null;
}
break;
2014-02-28 12:46:01 -05:00
case R.id.action_contact_details:
Contact contact = this.getSelectedConversation().getContact();
if (contact != null) {
2014-03-05 09:41:14 -05:00
Intent intent = new Intent(this,ContactDetailsActivity.class);
intent.setAction(ContactDetailsActivity.ACTION_VIEW_CONTACT);
intent.putExtra("uuid", contact.getUuid());
startActivity(intent);
} else {
String jid = getSelectedConversation().getContactJid();
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle(jid);
builder.setMessage("The contact is not in your roster. Would you like to add it.");
builder.setNegativeButton("Cancel", null);
builder.setPositiveButton("Add",addToRoster);
builder.create().show();
}
2014-02-16 10:32:15 -05:00
break;
2014-03-02 23:01:02 -05:00
case R.id.action_muc_details:
2014-03-05 09:41:14 -05:00
Intent intent = new Intent(this,MucDetailsActivity.class);
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;
2014-02-16 10:32:15 -05:00
case R.id.action_security:
final Conversation selConv = getSelectedConversation();
View menuItemView = findViewById(R.id.action_security);
PopupMenu popup = new PopupMenu(this, menuItemView);
final ConversationFragment fragment = (ConversationFragment) getFragmentManager().findFragmentByTag("conversation");
if (fragment!=null) {
popup.setOnMenuItemClickListener(new OnMenuItemClickListener() {
@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;
}
});
popup.inflate(R.menu.encryption_choices);
switch (selConv.nextMessageEncryption) {
case Message.ENCRYPTION_NONE:
popup.getMenu().findItem(R.id.encryption_choice_none).setChecked(true);
break;
case Message.ENCRYPTION_OTR:
popup.getMenu().findItem(R.id.encryption_choice_otr).setChecked(true);
break;
case Message.ENCRYPTION_PGP:
popup.getMenu().findItem(R.id.encryption_choice_pgp).setChecked(true);
break;
2014-02-27 18:22:56 -05:00
case Message.ENCRYPTION_DECRYPTED:
popup.getMenu().findItem(R.id.encryption_choice_pgp).setChecked(true);
break;
2014-02-16 10:32:15 -05:00
default:
popup.getMenu().findItem(R.id.encryption_choice_none).setChecked(true);
break;
}
popup.show();
}
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
}
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);
}
2014-02-01 09:07:20 -05:00
public void onStart() {
super.onStart();
2014-03-08 15:22:54 -05:00
if (xmppConnectionServiceBound) {
xmppConnectionService.setOnConversationListChangedListener(this.onConvChanged);
}
if (conversationList.size()>=1) {
onConvChanged.onConversationListChanged();
}
}
@Override
protected void onStop() {
Log.d("gultsch","called on stop in conversation activity");
if (xmppConnectionServiceBound) {
xmppConnectionService.removeOnConversationListChangedListener();
}
super.onStop();
}
@Override
void onBackendConnected() {
2014-02-01 09:07:20 -05:00
xmppConnectionService.setOnConversationListChangedListener(this.onConvChanged);
if (conversationList.size()==0) {
conversationList.addAll(xmppConnectionService
.getConversations());
this.updateConversationList();
}
2014-03-05 15:04:11 -05:00
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;
swapConversationFragment();
}
} 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, NewConversationActivity.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();
}
}
}
}
@Override
protected void onActivityResult(int requestCode, int resultCode, 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();
}
}
}
}
2014-01-23 20:04:05 -05:00
}