aboutsummaryrefslogtreecommitdiffstats
path: root/src/eu/siacs/conversations/ui/ContactDetailsActivity.java
blob: eaa9b8eec4dac84a570fd217f43b9e0af7dff901 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
package eu.siacs.conversations.ui;

import java.math.BigInteger;
import java.util.Iterator;
import java.util.Locale;

import org.openintents.openpgp.util.OpenPgpUtils;

import android.app.AlertDialog;
import android.app.PendingIntent;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.IntentSender.SendIntentException;
import android.net.Uri;
import android.os.Bundle;
import android.provider.ContactsContract.CommonDataKinds;
import android.provider.ContactsContract.Contacts;
import android.provider.ContactsContract.Intents;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.LinearLayout;
import android.widget.QuickContactBadge;
import android.widget.TextView;
import android.widget.Toast;
import eu.siacs.conversations.R;
import eu.siacs.conversations.crypto.PgpEngine;
import eu.siacs.conversations.entities.Contact;
import eu.siacs.conversations.entities.Presences;
import eu.siacs.conversations.utils.UIHelper;

public class ContactDetailsActivity extends XmppActivity {
	public static final String ACTION_VIEW_CONTACT = "view_contact";

	protected ContactDetailsActivity activity = this;

	private String uuid;
	private Contact contact;

	private EditText name;
	private TextView contactJid;
	private TextView accountJid;
	private TextView status;
	private TextView askAgain;
	private CheckBox send;
	private CheckBox receive;
	private QuickContactBadge badge;

	private DialogInterface.OnClickListener removeFromRoster = new DialogInterface.OnClickListener() {

		@Override
		public void onClick(DialogInterface dialog, int which) {
			activity.xmppConnectionService.deleteContact(contact);
			activity.finish();
		}
	};

	private DialogInterface.OnClickListener editContactNameListener = new DialogInterface.OnClickListener() {

		@Override
		public void onClick(DialogInterface dialog, int which) {
			contact.setDisplayName(name.getText().toString());
			activity.xmppConnectionService.updateContact(contact);
			populateView();
		}
	};

	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);
			activity.startActivityForResult(intent, 0);
		}
	};
	private OnClickListener onBadgeClick = new OnClickListener() {

		@Override
		public void onClick(View v) {
			AlertDialog.Builder builder = new AlertDialog.Builder(activity);
			builder.setTitle("Add to phone book");
			builder.setMessage("Do you want to add " + contact.getJid()
					+ " to your phones contact list?");
			builder.setNegativeButton("Cancel", null);
			builder.setPositiveButton("Add", addToPhonebook);
			builder.create().show();
		}
	};

	private LinearLayout keys;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		if (getIntent().getAction().equals(ACTION_VIEW_CONTACT)) {
			this.uuid = getIntent().getExtras().getString("uuid");
		}
		setContentView(R.layout.activity_contact_details);

		contactJid = (TextView) findViewById(R.id.details_contactjid);
		accountJid = (TextView) findViewById(R.id.details_account);
		status = (TextView) findViewById(R.id.details_contactstatus);
		send = (CheckBox) findViewById(R.id.details_send_presence);
		receive = (CheckBox) findViewById(R.id.details_receive_presence);
		askAgain = (TextView) findViewById(R.id.ask_again);
		badge = (QuickContactBadge) findViewById(R.id.details_contact_badge);
		keys = (LinearLayout) findViewById(R.id.details_contact_keys);
		getActionBar().setHomeButtonEnabled(true);
		getActionBar().setDisplayHomeAsUpEnabled(true);

	}

	@Override
	public boolean onOptionsItemSelected(MenuItem menuItem) {
		AlertDialog.Builder builder = new AlertDialog.Builder(this);
		builder.setNegativeButton("Cancel", null);
		switch (menuItem.getItemId()) {
		case android.R.id.home:
			finish();
			break;
		case R.id.action_delete_contact:
			builder.setTitle("Delete from roster")
					.setMessage(
							getString(R.string.remove_contact_text,
									contact.getJid()))
					.setPositiveButton("Delete", removeFromRoster).create()
					.show();
			break;
		case R.id.action_edit_contact:
			if (contact.getSystemAccount() == null) {

				View view = (View) getLayoutInflater().inflate(
						R.layout.edit_contact_name, null);
				name = (EditText) view.findViewById(R.id.editText1);
				name.setText(contact.getDisplayName());
				builder.setView(view).setTitle(contact.getJid())
						.setPositiveButton("Edit", editContactNameListener)
						.create().show();

			} 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);
				intent.putExtra("finishActivityOnSaveCompleted", true);
				startActivity(intent);
			}
			break;
		}
		return super.onOptionsItemSelected(menuItem);
	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		getMenuInflater().inflate(R.menu.contact_details, menu);
		return true;
	}

	private void populateView() {
		setTitle(contact.getDisplayName());
		if (contact.getSubscriptionOption(Contact.Subscription.FROM)) {
			send.setChecked(true);
		} else {
			send.setText("Preemptively grant subscription request");
			if (contact
					.getSubscriptionOption(Contact.Subscription.PREEMPTIVE_GRANT)) {
				send.setChecked(true);
			} else {
				send.setChecked(false);
			}
		}
		if (contact.getSubscriptionOption(Contact.Subscription.TO)) {
			receive.setChecked(true);
		} else {
			receive.setText("Ask for presence updates");
			askAgain.setVisibility(View.VISIBLE);
			askAgain.setOnClickListener(new OnClickListener() {
				
				@Override
				public void onClick(View v) {
					Toast.makeText(getApplicationContext(), "Asked for presence updates",Toast.LENGTH_SHORT).show();
					xmppConnectionService.requestPresenceUpdatesFrom(contact);
					
				}
			});
			if (contact.getSubscriptionOption(Contact.Subscription.ASKING)) {
				receive.setChecked(true);
			} else {
				receive.setChecked(false);
			}
		}

		switch (contact.getMostAvailableStatus()) {
		case Presences.CHAT:
			status.setText("free to chat");
			status.setTextColor(0xFF83b600);
			break;
		case Presences.ONLINE:
			status.setText("online");
			status.setTextColor(0xFF83b600);
			break;
		case Presences.AWAY:
			status.setText("away");
			status.setTextColor(0xFFffa713);
			break;
		case Presences.XA:
			status.setText("extended away");
			status.setTextColor(0xFFffa713);
			break;
		case Presences.DND:
			status.setText("do not disturb");
			status.setTextColor(0xFFe92727);
			break;
		case Presences.OFFLINE:
			status.setText("offline");
			status.setTextColor(0xFFe92727);
			break;
		default:
			status.setText("offline");
			status.setTextColor(0xFFe92727);
			break;
		}
		if (contact.getPresences().size() > 1) {
			contactJid.setText(contact.getJid()+" ("+contact.getPresences().size()+")");
		} else {
			contactJid.setText(contact.getJid());
		}
		accountJid.setText(contact.getAccount().getJid());

		UIHelper.prepareContactBadge(this, badge, contact, getApplicationContext());

		if (contact.getSystemAccount() == null) {
			badge.setOnClickListener(onBadgeClick);
		}

		keys.removeAllViews();
		LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
		for (Iterator<String> iterator = contact.getOtrFingerprints()
				.iterator(); iterator.hasNext();) {
			String otrFingerprint = iterator.next();
			View view = (View) inflater.inflate(R.layout.contact_key, null);
			TextView key = (TextView) view.findViewById(R.id.key);
			TextView keyType = (TextView) view.findViewById(R.id.key_type);
			keyType.setText("OTR Fingerprint");
			key.setText(otrFingerprint);
			keys.addView(view);
		}
		if (contact.getPgpKeyId() != 0) {
			View view = (View) inflater.inflate(R.layout.contact_key, null);
			TextView key = (TextView) view.findViewById(R.id.key);
			TextView keyType = (TextView) view.findViewById(R.id.key_type);
			keyType.setText("PGP Key ID");
			key.setText(OpenPgpUtils.convertKeyIdToHex(contact.getPgpKeyId()));
			view.setOnClickListener(new OnClickListener() {
				
				@Override
				public void onClick(View v) {
					PgpEngine pgp = activity.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) {
								
							}
						}
					}
				}
			});
			keys.addView(view);
		}
	}

	@Override
	public void onBackendConnected() {
		if (uuid != null) {
			this.contact = xmppConnectionService.findContact(uuid);
			if (this.contact != null) {
				populateView();
			}
		}
	}

	@Override
	protected void onStop() {
		super.onStop();
		boolean needsUpdating = false;
		if (contact.getSubscriptionOption(Contact.Subscription.FROM)) {
			if (!send.isChecked()) {
				contact.resetSubscriptionOption(Contact.Subscription.FROM);
				contact.resetSubscriptionOption(Contact.Subscription.PREEMPTIVE_GRANT);
				activity.xmppConnectionService.stopPresenceUpdatesTo(contact);
				needsUpdating = true;
			}
		} else {
			if (contact
					.getSubscriptionOption(Contact.Subscription.PREEMPTIVE_GRANT)) {
				if (!send.isChecked()) {
					contact.resetSubscriptionOption(Contact.Subscription.PREEMPTIVE_GRANT);
					needsUpdating = true;
				}
			} else {
				if (send.isChecked()) {
					contact.setSubscriptionOption(Contact.Subscription.PREEMPTIVE_GRANT);
					needsUpdating = true;
				}
			}
		}
		if (contact.getSubscriptionOption(Contact.Subscription.TO)) {
			if (!receive.isChecked()) {
				contact.resetSubscriptionOption(Contact.Subscription.TO);
				activity.xmppConnectionService.stopPresenceUpdatesFrom(contact);
				needsUpdating = true;
			}
		} else {
			if (contact.getSubscriptionOption(Contact.Subscription.ASKING)) {
				if (!receive.isChecked()) {
					contact.resetSubscriptionOption(Contact.Subscription.ASKING);
					activity.xmppConnectionService
							.stopPresenceUpdatesFrom(contact);
					needsUpdating = true;
				}
			} else {
				if (receive.isChecked()) {
					contact.setSubscriptionOption(Contact.Subscription.ASKING);
					activity.xmppConnectionService
							.requestPresenceUpdatesFrom(contact);
					needsUpdating = true;
				}
			}
		}
		if (needsUpdating) {
			Toast.makeText(getApplicationContext(), "Subscription updated", Toast.LENGTH_SHORT).show();
			activity.xmppConnectionService.updateContact(contact);
		}
	}

}