Conversations/src/main/java/eu/siacs/conversations/ui/ContactDetailsActivity.java

444 lines
14 KiB
Java
Raw Normal View History

2014-03-05 09:41:14 -05:00
package eu.siacs.conversations.ui;
2014-03-06 14:00:46 -05:00
import java.util.Iterator;
import org.openintents.openpgp.util.OpenPgpUtils;
2014-03-05 09:41:14 -05:00
import android.app.AlertDialog;
import android.app.PendingIntent;
2014-03-06 14:00:46 -05:00
import android.content.Context;
2014-03-05 09:41:14 -05:00
import android.content.DialogInterface;
import android.content.Intent;
import android.content.IntentSender.SendIntentException;
2014-03-05 09:41:14 -05:00
import android.net.Uri;
import android.os.Bundle;
import android.provider.ContactsContract.CommonDataKinds;
import android.provider.ContactsContract.Contacts;
import android.provider.ContactsContract.Intents;
2014-03-06 14:00:46 -05:00
import android.view.LayoutInflater;
2014-03-05 09:41:14 -05:00
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.CheckBox;
import android.widget.CompoundButton.OnCheckedChangeListener;
import android.widget.CompoundButton;
2014-09-07 17:08:40 -04:00
import android.widget.ImageButton;
2014-03-06 14:00:46 -05:00
import android.widget.LinearLayout;
2014-03-05 09:41:14 -05:00
import android.widget.QuickContactBadge;
import android.widget.TextView;
import eu.siacs.conversations.R;
import eu.siacs.conversations.crypto.PgpEngine;
import eu.siacs.conversations.entities.Account;
2014-03-05 09:41:14 -05:00
import eu.siacs.conversations.entities.Contact;
import eu.siacs.conversations.entities.Presences;
import eu.siacs.conversations.services.XmppConnectionService.OnAccountUpdate;
2014-07-18 09:35:31 -04:00
import eu.siacs.conversations.services.XmppConnectionService.OnRosterUpdate;
2014-03-05 09:41:14 -05:00
import eu.siacs.conversations.utils.UIHelper;
public class ContactDetailsActivity extends XmppActivity {
public static final String ACTION_VIEW_CONTACT = "view_contact";
private Contact contact;
private String accountJid;
private String contactJid;
private TextView contactJidTv;
private TextView accountJidTv;
2014-03-05 09:41:14 -05:00
private TextView status;
2014-06-13 05:50:47 -04:00
private TextView lastseen;
2014-03-05 09:41:14 -05:00
private CheckBox send;
private CheckBox receive;
private QuickContactBadge badge;
private DialogInterface.OnClickListener removeFromRoster = new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
ContactDetailsActivity.this.xmppConnectionService
.deleteContactOnServer(contact);
2014-10-08 10:37:43 -04:00
ContactDetailsActivity.this.finish();
2014-03-05 09:41:14 -05:00
}
};
private DialogInterface.OnClickListener addToPhonebook = new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
Intent intent = new Intent(Intent.ACTION_INSERT_OR_EDIT);
intent.setType(Contacts.CONTENT_ITEM_TYPE);
intent.putExtra(Intents.Insert.IM_HANDLE, contact.getJid());
intent.putExtra(Intents.Insert.IM_PROTOCOL,
CommonDataKinds.Im.PROTOCOL_JABBER);
intent.putExtra("finishActivityOnSaveCompleted", true);
2014-10-08 10:37:43 -04:00
ContactDetailsActivity.this.startActivityForResult(intent, 0);
2014-03-05 09:41:14 -05:00
}
};
private OnClickListener onBadgeClick = new OnClickListener() {
@Override
public void onClick(View v) {
AlertDialog.Builder builder = new AlertDialog.Builder(
ContactDetailsActivity.this);
builder.setTitle(getString(R.string.action_add_phone_book));
builder.setMessage(getString(R.string.add_phone_book_text,
contact.getJid()));
builder.setNegativeButton(getString(R.string.cancel), null);
builder.setPositiveButton(getString(R.string.add), addToPhonebook);
2014-03-05 09:41:14 -05:00
builder.create().show();
}
};
2014-03-06 14:00:46 -05:00
private LinearLayout keys;
2014-07-18 09:35:31 -04:00
private OnRosterUpdate rosterUpdate = new OnRosterUpdate() {
2014-07-18 09:35:31 -04:00
@Override
public void onRosterUpdate() {
runOnUiThread(new Runnable() {
2014-07-18 09:35:31 -04:00
@Override
public void run() {
populateView();
}
});
}
};
private OnCheckedChangeListener mOnSendCheckedChange = new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView,
boolean isChecked) {
if (isChecked) {
2014-08-31 10:28:21 -04:00
if (contact
.getOption(Contact.Options.PENDING_SUBSCRIPTION_REQUEST)) {
xmppConnectionService.sendPresencePacket(contact
.getAccount(),
xmppConnectionService.getPresenceGenerator()
.sendPresenceUpdatesTo(contact));
} else {
contact.setOption(Contact.Options.PREEMPTIVE_GRANT);
}
} else {
contact.resetOption(Contact.Options.PREEMPTIVE_GRANT);
xmppConnectionService.sendPresencePacket(contact.getAccount(),
xmppConnectionService.getPresenceGenerator()
.stopPresenceUpdatesTo(contact));
}
}
};
private OnCheckedChangeListener mOnReceiveCheckedChange = new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView,
boolean isChecked) {
if (isChecked) {
xmppConnectionService.sendPresencePacket(contact.getAccount(),
xmppConnectionService.getPresenceGenerator()
.requestPresenceUpdatesFrom(contact));
} else {
xmppConnectionService.sendPresencePacket(contact.getAccount(),
xmppConnectionService.getPresenceGenerator()
.stopPresenceUpdatesFrom(contact));
}
}
};
private OnAccountUpdate accountUpdate = new OnAccountUpdate() {
2014-08-31 10:28:21 -04:00
@Override
public void onAccountUpdate() {
runOnUiThread(new Runnable() {
@Override
public void run() {
populateView();
}
});
}
};
@Override
protected String getShareableUri() {
if (contact!=null) {
return "xmpp:"+contact.getJid();
} else {
return super.getShareableUri();
}
}
2014-03-05 09:41:14 -05:00
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (getIntent().getAction().equals(ACTION_VIEW_CONTACT)) {
this.accountJid = getIntent().getExtras().getString("account");
this.contactJid = getIntent().getExtras().getString("contact");
2014-03-05 09:41:14 -05:00
}
setContentView(R.layout.activity_contact_details);
contactJidTv = (TextView) findViewById(R.id.details_contactjid);
accountJidTv = (TextView) findViewById(R.id.details_account);
2014-03-05 09:41:14 -05:00
status = (TextView) findViewById(R.id.details_contactstatus);
2014-06-13 05:50:47 -04:00
lastseen = (TextView) findViewById(R.id.details_lastseen);
2014-03-05 09:41:14 -05:00
send = (CheckBox) findViewById(R.id.details_send_presence);
receive = (CheckBox) findViewById(R.id.details_receive_presence);
badge = (QuickContactBadge) findViewById(R.id.details_contact_badge);
2014-03-06 14:00:46 -05:00
keys = (LinearLayout) findViewById(R.id.details_contact_keys);
2014-03-05 09:41:14 -05:00
getActionBar().setHomeButtonEnabled(true);
getActionBar().setDisplayHomeAsUpEnabled(true);
}
@Override
public boolean onOptionsItemSelected(MenuItem menuItem) {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setNegativeButton(getString(R.string.cancel), null);
2014-03-05 09:41:14 -05:00
switch (menuItem.getItemId()) {
case android.R.id.home:
finish();
break;
case R.id.action_delete_contact:
builder.setTitle(getString(R.string.action_delete_contact))
.setMessage(
getString(R.string.remove_contact_text,
contact.getJid()))
.setPositiveButton(getString(R.string.delete),
removeFromRoster).create().show();
2014-03-05 09:41:14 -05:00
break;
case R.id.action_edit_contact:
if (contact.getSystemAccount() == null) {
2014-07-16 06:34:09 -04:00
quickEdit(contact.getDisplayName(), new OnValueEdited() {
2014-07-16 06:34:09 -04:00
@Override
public void onValueEdited(String value) {
contact.setServerName(value);
2014-10-08 10:37:43 -04:00
ContactDetailsActivity.this.xmppConnectionService
.pushContactToServer(contact);
2014-07-16 06:34:09 -04:00
populateView();
}
});
2014-03-05 09:41:14 -05:00
} else {
Intent intent = new Intent(Intent.ACTION_EDIT);
String[] systemAccount = contact.getSystemAccount().split("#");
long id = Long.parseLong(systemAccount[0]);
Uri uri = Contacts.getLookupUri(id, systemAccount[1]);
intent.setDataAndType(uri, Contacts.CONTENT_ITEM_TYPE);
2014-03-05 09:41:14 -05:00
intent.putExtra("finishActivityOnSaveCompleted", true);
startActivity(intent);
2014-03-05 09:41:14 -05:00
}
break;
}
return super.onOptionsItemSelected(menuItem);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.contact_details, menu);
return true;
}
2014-03-05 09:41:14 -05:00
private void populateView() {
send.setOnCheckedChangeListener(null);
receive.setOnCheckedChangeListener(null);
2014-03-05 09:41:14 -05:00
setTitle(contact.getDisplayName());
if (contact.getOption(Contact.Options.FROM)) {
send.setText(R.string.send_presence_updates);
2014-03-05 09:41:14 -05:00
send.setChecked(true);
} else if (contact
.getOption(Contact.Options.PENDING_SUBSCRIPTION_REQUEST)) {
send.setChecked(false);
send.setText(R.string.send_presence_updates);
2014-03-05 09:41:14 -05:00
} else {
2014-05-13 05:23:11 -04:00
send.setText(R.string.preemptively_grant);
if (contact.getOption(Contact.Options.PREEMPTIVE_GRANT)) {
2014-03-05 09:41:14 -05:00
send.setChecked(true);
} else {
send.setChecked(false);
}
}
if (contact.getOption(Contact.Options.TO)) {
receive.setText(R.string.receive_presence_updates);
2014-03-05 09:41:14 -05:00
receive.setChecked(true);
} else {
2014-05-13 05:23:11 -04:00
receive.setText(R.string.ask_for_presence_updates);
if (contact.getOption(Contact.Options.ASKING)) {
2014-03-05 09:41:14 -05:00
receive.setChecked(true);
} else {
receive.setChecked(false);
}
}
if (contact.getAccount().getStatus() == Account.STATUS_ONLINE) {
receive.setEnabled(true);
send.setEnabled(true);
} else {
receive.setEnabled(false);
send.setEnabled(false);
}
send.setOnCheckedChangeListener(this.mOnSendCheckedChange);
receive.setOnCheckedChangeListener(this.mOnReceiveCheckedChange);
2014-08-31 10:28:21 -04:00
lastseen.setText(UIHelper.lastseen(getApplicationContext(),
contact.lastseen.time));
2014-03-05 09:41:14 -05:00
switch (contact.getMostAvailableStatus()) {
case Presences.CHAT:
status.setText(R.string.contact_status_free_to_chat);
status.setTextColor(mColorGreen);
2014-03-05 09:41:14 -05:00
break;
case Presences.ONLINE:
status.setText(R.string.contact_status_online);
status.setTextColor(mColorGreen);
2014-03-05 09:41:14 -05:00
break;
case Presences.AWAY:
status.setText(R.string.contact_status_away);
status.setTextColor(mColorOrange);
2014-03-05 09:41:14 -05:00
break;
case Presences.XA:
status.setText(R.string.contact_status_extended_away);
status.setTextColor(mColorOrange);
2014-03-05 09:41:14 -05:00
break;
case Presences.DND:
status.setText(R.string.contact_status_do_not_disturb);
status.setTextColor(mColorRed);
2014-03-05 09:41:14 -05:00
break;
case Presences.OFFLINE:
status.setText(R.string.contact_status_offline);
status.setTextColor(mSecondaryTextColor);
2014-03-05 09:41:14 -05:00
break;
default:
status.setText(R.string.contact_status_offline);
status.setTextColor(mSecondaryTextColor);
2014-03-05 09:41:14 -05:00
break;
}
if (contact.getPresences().size() > 1) {
contactJidTv.setText(contact.getJid() + " ("
+ contact.getPresences().size() + ")");
} else {
contactJidTv.setText(contact.getJid());
}
accountJidTv.setText(getString(R.string.using_account, contact
.getAccount().getJid()));
prepareContactBadge(badge, contact);
2014-03-05 09:41:14 -05:00
if (contact.getSystemAccount() == null) {
badge.setOnClickListener(onBadgeClick);
}
2014-03-06 14:00:46 -05:00
keys.removeAllViews();
2014-10-13 06:36:41 -04:00
boolean hasKeys = false;
2014-03-06 14:00:46 -05:00
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
for (Iterator<String> iterator = contact.getOtrFingerprints()
.iterator(); iterator.hasNext();) {
2014-10-13 06:36:41 -04:00
hasKeys = true;
2014-09-07 17:08:40 -04:00
final String otrFingerprint = iterator.next();
2014-10-26 13:54:10 -04:00
View view = inflater.inflate(R.layout.contact_key, keys, false);
2014-03-06 14:00:46 -05:00
TextView key = (TextView) view.findViewById(R.id.key);
TextView keyType = (TextView) view.findViewById(R.id.key_type);
ImageButton remove = (ImageButton) view
.findViewById(R.id.button_remove);
2014-09-07 17:08:40 -04:00
remove.setVisibility(View.VISIBLE);
2014-03-06 14:00:46 -05:00
keyType.setText("OTR Fingerprint");
key.setText(otrFingerprint);
keys.addView(view);
2014-09-07 17:08:40 -04:00
remove.setOnClickListener(new OnClickListener() {
2014-09-07 17:08:40 -04:00
@Override
public void onClick(View v) {
confirmToDeleteFingerprint(otrFingerprint);
}
});
2014-03-06 14:00:46 -05:00
}
if (contact.getPgpKeyId() != 0) {
2014-10-13 06:36:41 -04:00
hasKeys = true;
2014-10-26 13:54:10 -04:00
View view = inflater.inflate(R.layout.contact_key, keys, false);
2014-03-06 14:00:46 -05:00
TextView key = (TextView) view.findViewById(R.id.key);
TextView keyType = (TextView) view.findViewById(R.id.key_type);
2014-03-06 14:00:46 -05:00
keyType.setText("PGP Key ID");
key.setText(OpenPgpUtils.convertKeyIdToHex(contact.getPgpKeyId()));
view.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
2014-10-08 10:37:43 -04:00
PgpEngine pgp = ContactDetailsActivity.this.xmppConnectionService
.getPgpEngine();
if (pgp != null) {
PendingIntent intent = pgp.getIntentForKey(contact);
if (intent != null) {
try {
startIntentSenderForResult(
intent.getIntentSender(), 0, null, 0,
0, 0);
} catch (SendIntentException e) {
}
}
}
}
});
2014-03-06 14:00:46 -05:00
keys.addView(view);
}
2014-10-13 06:36:41 -04:00
if (hasKeys) {
keys.setVisibility(View.VISIBLE);
} else {
keys.setVisibility(View.GONE);
}
2014-03-05 09:41:14 -05:00
}
private void prepareContactBadge(QuickContactBadge badge, Contact contact) {
if (contact.getSystemAccount() != null) {
String[] systemAccount = contact.getSystemAccount().split("#");
long id = Long.parseLong(systemAccount[0]);
badge.assignContactUri(Contacts.getLookupUri(id, systemAccount[1]));
}
2014-10-21 08:57:16 -04:00
badge.setImageBitmap(avatarService().get(contact, getPixel(72)));
}
2014-09-07 17:08:40 -04:00
protected void confirmToDeleteFingerprint(final String fingerprint) {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle(R.string.delete_fingerprint);
builder.setMessage(R.string.sure_delete_fingerprint);
builder.setNegativeButton(R.string.cancel, null);
builder.setPositiveButton(R.string.delete,
new android.content.DialogInterface.OnClickListener() {
2014-09-07 17:08:40 -04:00
@Override
public void onClick(DialogInterface dialog, int which) {
if (contact.deleteOtrFingerprint(fingerprint)) {
populateView();
xmppConnectionService.syncRosterToDisk(contact
.getAccount());
}
}
});
2014-09-07 17:08:40 -04:00
builder.create().show();
}
2014-03-05 09:41:14 -05:00
@Override
public void onBackendConnected() {
xmppConnectionService.setOnRosterUpdateListener(this.rosterUpdate);
2014-08-31 10:28:21 -04:00
xmppConnectionService
.setOnAccountListChangedListener(this.accountUpdate);
if ((accountJid != null) && (contactJid != null)) {
Account account = xmppConnectionService
.findAccountByJid(accountJid);
if (account == null) {
return;
2014-03-05 09:41:14 -05:00
}
this.contact = account.getRoster().getContact(contactJid);
populateView();
2014-03-05 09:41:14 -05:00
}
}
@Override
protected void onStop() {
super.onStop();
2014-07-18 09:35:31 -04:00
xmppConnectionService.removeOnRosterUpdateListener();
xmppConnectionService.removeOnAccountListChangedListener();
}
2014-03-05 09:41:14 -05:00
}