2014-02-28 17:46:01 +00:00
|
|
|
package eu.siacs.conversations.ui;
|
2014-01-25 18:33:12 +00:00
|
|
|
|
2014-03-05 14:41:14 +00:00
|
|
|
import eu.siacs.conversations.R;
|
2014-05-08 12:35:21 +00:00
|
|
|
import eu.siacs.conversations.entities.Account;
|
2014-06-16 12:21:22 +00:00
|
|
|
import eu.siacs.conversations.entities.Contact;
|
2014-03-13 20:37:27 +00:00
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
2014-05-08 14:52:19 +00:00
|
|
|
import eu.siacs.conversations.entities.Message;
|
2014-06-16 12:21:22 +00:00
|
|
|
import eu.siacs.conversations.entities.Presences;
|
2014-02-28 17:46:01 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
|
|
|
import eu.siacs.conversations.services.XmppConnectionService.XmppConnectionBinder;
|
2014-03-09 12:21:28 +00:00
|
|
|
import eu.siacs.conversations.utils.ExceptionHelper;
|
2014-01-25 18:33:12 +00:00
|
|
|
import android.app.Activity;
|
2014-03-03 15:39:19 +00:00
|
|
|
import android.app.AlertDialog;
|
2014-05-08 12:35:21 +00:00
|
|
|
import android.app.PendingIntent;
|
2014-03-03 15:39:19 +00:00
|
|
|
import android.app.AlertDialog.Builder;
|
2014-01-25 18:33:12 +00:00
|
|
|
import android.content.ComponentName;
|
|
|
|
import android.content.Context;
|
2014-05-02 10:02:18 +00:00
|
|
|
import android.content.DialogInterface;
|
|
|
|
import android.content.DialogInterface.OnClickListener;
|
2014-05-08 12:35:21 +00:00
|
|
|
import android.content.IntentSender.SendIntentException;
|
2014-01-25 18:33:12 +00:00
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.ServiceConnection;
|
2014-05-02 10:02:18 +00:00
|
|
|
import android.net.Uri;
|
2014-03-09 12:21:28 +00:00
|
|
|
import android.os.Bundle;
|
2014-01-25 18:33:12 +00:00
|
|
|
import android.os.IBinder;
|
2014-07-16 22:03:37 +00:00
|
|
|
import android.util.Log;
|
2014-03-05 14:41:14 +00:00
|
|
|
import android.view.MenuItem;
|
2014-03-03 04:01:02 +00:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.inputmethod.InputMethodManager;
|
2014-07-16 10:34:09 +00:00
|
|
|
import android.widget.EditText;
|
2014-01-25 18:33:12 +00:00
|
|
|
|
|
|
|
public abstract class XmppActivity extends Activity {
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-05-08 12:35:21 +00:00
|
|
|
public static final int REQUEST_ANNOUNCE_PGP = 0x73731;
|
2014-07-16 22:03:37 +00:00
|
|
|
protected static final int REQUEST_INVITE_TO_CONVERSATION = 0x341830;
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-03-28 11:22:09 +00:00
|
|
|
protected final static String LOGTAG = "xmppService";
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-01-26 02:27:55 +00:00
|
|
|
public XmppConnectionService xmppConnectionService;
|
|
|
|
public boolean xmppConnectionServiceBound = false;
|
2014-01-25 18:33:12 +00:00
|
|
|
protected boolean handledViewIntent = false;
|
2014-07-16 10:34:09 +00:00
|
|
|
|
|
|
|
protected interface OnValueEdited {
|
|
|
|
public void onValueEdited(String value);
|
|
|
|
}
|
2014-07-16 22:03:37 +00:00
|
|
|
|
|
|
|
public interface OnPresenceSelected {
|
|
|
|
public void onPresenceSelected();
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
protected ServiceConnection mConnection = new ServiceConnection() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onServiceConnected(ComponentName className, IBinder service) {
|
|
|
|
XmppConnectionBinder binder = (XmppConnectionBinder) service;
|
|
|
|
xmppConnectionService = binder.getService();
|
|
|
|
xmppConnectionServiceBound = true;
|
2014-01-27 19:40:42 +00:00
|
|
|
onBackendConnected();
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onServiceDisconnected(ComponentName arg0) {
|
|
|
|
xmppConnectionServiceBound = false;
|
|
|
|
}
|
|
|
|
};
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
@Override
|
|
|
|
protected void onStart() {
|
|
|
|
super.onStart();
|
|
|
|
if (!xmppConnectionServiceBound) {
|
2014-03-19 14:05:01 +00:00
|
|
|
connectToBackend();
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-03-19 14:05:01 +00:00
|
|
|
public void connectToBackend() {
|
|
|
|
Intent intent = new Intent(this, XmppConnectionService.class);
|
|
|
|
intent.setAction("ui");
|
|
|
|
startService(intent);
|
|
|
|
bindService(intent, mConnection, Context.BIND_AUTO_CREATE);
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-01-25 18:33:12 +00:00
|
|
|
@Override
|
|
|
|
protected void onStop() {
|
|
|
|
super.onStop();
|
|
|
|
if (xmppConnectionServiceBound) {
|
|
|
|
unbindService(mConnection);
|
|
|
|
xmppConnectionServiceBound = false;
|
|
|
|
}
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-03-03 04:01:02 +00:00
|
|
|
protected void hideKeyboard() {
|
|
|
|
InputMethodManager inputManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
|
|
|
|
|
|
|
|
View focus = getCurrentFocus();
|
|
|
|
|
|
|
|
if (focus != null) {
|
|
|
|
|
2014-06-09 19:25:01 +00:00
|
|
|
inputManager.hideSoftInputFromWindow(focus.getWindowToken(),
|
2014-03-03 04:01:02 +00:00
|
|
|
InputMethodManager.HIDE_NOT_ALWAYS);
|
|
|
|
}
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-03-03 15:39:19 +00:00
|
|
|
public boolean hasPgp() {
|
2014-06-09 19:25:01 +00:00
|
|
|
return xmppConnectionService.getPgpEngine() != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void showInstallPgpDialog() {
|
|
|
|
Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setTitle(getString(R.string.openkeychain_required));
|
|
|
|
builder.setIconAttribute(android.R.attr.alertDialogIcon);
|
|
|
|
builder.setMessage(getText(R.string.openkeychain_required_long));
|
|
|
|
builder.setNegativeButton(getString(R.string.cancel), null);
|
|
|
|
builder.setNeutralButton(getString(R.string.restart),
|
|
|
|
new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
if (xmppConnectionServiceBound) {
|
|
|
|
unbindService(mConnection);
|
|
|
|
xmppConnectionServiceBound = false;
|
|
|
|
}
|
|
|
|
stopService(new Intent(XmppActivity.this,
|
|
|
|
XmppConnectionService.class));
|
|
|
|
finish();
|
2014-05-03 13:24:19 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
});
|
|
|
|
builder.setPositiveButton(getString(R.string.install),
|
|
|
|
new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
Uri uri = Uri
|
|
|
|
.parse("market://details?id=org.sufficientlysecure.keychain");
|
|
|
|
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
|
|
|
|
startActivity(intent);
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
2014-03-03 15:39:19 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-01-27 19:40:42 +00:00
|
|
|
abstract void onBackendConnected();
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-03-05 14:41:14 +00:00
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case R.id.action_settings:
|
|
|
|
startActivity(new Intent(this, SettingsActivity.class));
|
|
|
|
break;
|
|
|
|
case R.id.action_accounts:
|
|
|
|
startActivity(new Intent(this, ManageAccountActivity.class));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return super.onOptionsItemSelected(item);
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-03-09 12:21:28 +00:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
ExceptionHelper.init(getApplicationContext());
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-07-11 17:48:41 +00:00
|
|
|
public void switchToConversation(Conversation conversation) {
|
|
|
|
switchToConversation(conversation, null, false);
|
|
|
|
}
|
2014-07-12 01:44:23 +00:00
|
|
|
|
2014-06-09 19:25:01 +00:00
|
|
|
public void switchToConversation(Conversation conversation, String text,
|
|
|
|
boolean newTask) {
|
2014-03-13 20:37:27 +00:00
|
|
|
Intent viewConversationIntent = new Intent(this,
|
|
|
|
ConversationActivity.class);
|
|
|
|
viewConversationIntent.setAction(Intent.ACTION_VIEW);
|
|
|
|
viewConversationIntent.putExtra(ConversationActivity.CONVERSATION,
|
|
|
|
conversation.getUuid());
|
2014-06-09 19:25:01 +00:00
|
|
|
if (text != null) {
|
2014-03-13 20:37:27 +00:00
|
|
|
viewConversationIntent.putExtra(ConversationActivity.TEXT, text);
|
|
|
|
}
|
|
|
|
viewConversationIntent.setType(ConversationActivity.VIEW_CONVERSATION);
|
2014-05-21 14:43:19 +00:00
|
|
|
if (newTask) {
|
2014-05-31 17:33:46 +00:00
|
|
|
viewConversationIntent.setFlags(viewConversationIntent.getFlags()
|
2014-06-09 19:25:01 +00:00
|
|
|
| Intent.FLAG_ACTIVITY_NEW_TASK
|
|
|
|
| Intent.FLAG_ACTIVITY_SINGLE_TOP);
|
2014-05-21 14:43:19 +00:00
|
|
|
} else {
|
|
|
|
viewConversationIntent.setFlags(viewConversationIntent.getFlags()
|
2014-06-09 19:25:01 +00:00
|
|
|
| Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
2014-05-21 14:43:19 +00:00
|
|
|
}
|
2014-03-13 20:37:27 +00:00
|
|
|
startActivity(viewConversationIntent);
|
|
|
|
}
|
2014-07-12 01:44:23 +00:00
|
|
|
|
2014-07-09 23:55:19 +00:00
|
|
|
public void switchToContactDetails(Contact contact) {
|
|
|
|
Intent intent = new Intent(this, ContactDetailsActivity.class);
|
|
|
|
intent.setAction(ContactDetailsActivity.ACTION_VIEW_CONTACT);
|
|
|
|
intent.putExtra("account", contact.getAccount().getJid());
|
|
|
|
intent.putExtra("contact", contact.getJid());
|
|
|
|
startActivity(intent);
|
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-07-16 22:03:37 +00:00
|
|
|
protected void inviteToConversation(Conversation conversation) {
|
|
|
|
Intent intent = new Intent(getApplicationContext(), ChooseContactActivity.class);
|
|
|
|
intent.putExtra("conversation",conversation.getUuid());
|
|
|
|
startActivityForResult(intent, REQUEST_INVITE_TO_CONVERSATION);
|
|
|
|
}
|
|
|
|
|
2014-06-07 11:25:27 +00:00
|
|
|
protected void announcePgp(Account account, final Conversation conversation) {
|
2014-06-09 19:25:01 +00:00
|
|
|
xmppConnectionService.getPgpEngine().generateSignature(account,
|
|
|
|
"online", new UiCallback<Account>() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void userInputRequried(PendingIntent pi,
|
|
|
|
Account account) {
|
|
|
|
try {
|
|
|
|
startIntentSenderForResult(pi.getIntentSender(),
|
|
|
|
REQUEST_ANNOUNCE_PGP, null, 0, 0, 0);
|
2014-07-16 10:34:09 +00:00
|
|
|
} catch (SendIntentException e) {}
|
2014-06-09 19:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void success(Account account) {
|
|
|
|
xmppConnectionService.databaseBackend
|
|
|
|
.updateAccount(account);
|
2014-07-12 01:44:23 +00:00
|
|
|
xmppConnectionService.sendPresencePacket(account,
|
|
|
|
xmppConnectionService.getPresenceGenerator()
|
|
|
|
.sendPresence(account));
|
2014-06-09 19:25:01 +00:00
|
|
|
if (conversation != null) {
|
|
|
|
conversation
|
|
|
|
.setNextEncryption(Message.ENCRYPTION_PGP);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void error(int error, Account account) {
|
|
|
|
displayErrorDialog(error);
|
|
|
|
}
|
|
|
|
});
|
2014-05-12 12:59:46 +00:00
|
|
|
}
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-05-12 12:59:46 +00:00
|
|
|
protected void displayErrorDialog(final int errorCode) {
|
|
|
|
runOnUiThread(new Runnable() {
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-05-12 12:59:46 +00:00
|
|
|
@Override
|
|
|
|
public void run() {
|
2014-06-09 19:25:01 +00:00
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(
|
|
|
|
XmppActivity.this);
|
2014-05-12 12:59:46 +00:00
|
|
|
builder.setIconAttribute(android.R.attr.alertDialogIcon);
|
|
|
|
builder.setTitle(getString(R.string.error));
|
|
|
|
builder.setMessage(errorCode);
|
|
|
|
builder.setNeutralButton(R.string.accept, null);
|
|
|
|
builder.create().show();
|
2014-05-08 12:35:21 +00:00
|
|
|
}
|
|
|
|
});
|
2014-06-09 19:25:01 +00:00
|
|
|
|
2014-05-08 12:35:21 +00:00
|
|
|
}
|
2014-07-12 01:44:23 +00:00
|
|
|
|
2014-06-16 12:21:22 +00:00
|
|
|
protected 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 = conversation.getAccount();
|
|
|
|
Contact contact = account.getRoster().getContact(jid);
|
|
|
|
xmppConnectionService.createContact(contact);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
}
|
2014-07-12 01:44:23 +00:00
|
|
|
|
2014-07-16 10:34:09 +00:00
|
|
|
protected void quickEdit(final String previousValue, final OnValueEdited callback) {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
View view = (View) getLayoutInflater().inflate(R.layout.quickedit, null);
|
|
|
|
final EditText editor = (EditText) view.findViewById(R.id.editor);
|
|
|
|
editor.setText(previousValue);
|
|
|
|
builder.setView(view);
|
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
|
|
|
builder.setPositiveButton(R.string.edit, new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
String value = editor.getText().toString();
|
|
|
|
if (!previousValue.equals(value) && value.trim().length() > 0) {
|
|
|
|
callback.onValueEdited(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
}
|
|
|
|
|
2014-06-16 12:21:22 +00:00
|
|
|
public void selectPresence(final Conversation conversation,
|
|
|
|
final OnPresenceSelected listener) {
|
|
|
|
Contact contact = conversation.getContact();
|
|
|
|
if (contact == null) {
|
|
|
|
showAddToRosterDialog(conversation);
|
|
|
|
} else {
|
|
|
|
Presences presences = contact.getPresences();
|
|
|
|
if (presences.size() == 0) {
|
|
|
|
conversation.setNextPresence(null);
|
|
|
|
listener.onPresenceSelected();
|
|
|
|
} else if (presences.size() == 1) {
|
|
|
|
String presence = (String) presences.asStringArray()[0];
|
|
|
|
conversation.setNextPresence(presence);
|
|
|
|
listener.onPresenceSelected();
|
|
|
|
} else {
|
|
|
|
final StringBuilder presence = new StringBuilder();
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setTitle(getString(R.string.choose_presence));
|
|
|
|
final String[] presencesArray = presences.asStringArray();
|
|
|
|
int preselectedPresence = 0;
|
|
|
|
for (int i = 0; i < presencesArray.length; ++i) {
|
|
|
|
if (presencesArray[i].equals(contact.lastseen.presence)) {
|
|
|
|
preselectedPresence = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
presence.append(presencesArray[preselectedPresence]);
|
|
|
|
builder.setSingleChoiceItems(presencesArray,
|
|
|
|
preselectedPresence,
|
|
|
|
new DialogInterface.OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog,
|
|
|
|
int which) {
|
|
|
|
presence.delete(0, presence.length());
|
|
|
|
presence.append(presencesArray[which]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.setNegativeButton(R.string.cancel, null);
|
|
|
|
builder.setPositiveButton(R.string.ok, new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
conversation.setNextPresence(presence.toString());
|
|
|
|
listener.onPresenceSelected();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-16 22:03:37 +00:00
|
|
|
|
|
|
|
protected void onActivityResult(int requestCode, int resultCode,
|
|
|
|
final Intent data) {
|
|
|
|
super.onActivityResult(requestCode, resultCode, data);
|
|
|
|
if (requestCode == REQUEST_INVITE_TO_CONVERSATION && resultCode == RESULT_OK) {
|
|
|
|
String contactJid = data.getStringExtra("contact");
|
|
|
|
String conversationUuid = data.getStringExtra("conversation");
|
|
|
|
Conversation conversation = xmppConnectionService.findConversationByUuid(conversationUuid);
|
|
|
|
if (conversation.getMode() == Conversation.MODE_MULTI) {
|
|
|
|
xmppConnectionService.inviteToConference(conversation, contactJid);
|
|
|
|
}
|
|
|
|
Log.d("xmppService","inviting "+contactJid+" to "+conversation.getName(true));
|
|
|
|
}
|
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|