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-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-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-05-08 12:35:21 +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-01-25 18:33:12 +00:00
|
|
|
|
|
|
|
public abstract class XmppActivity extends Activity {
|
2014-03-28 11:22:09 +00:00
|
|
|
|
2014-05-08 12:35:21 +00:00
|
|
|
public static final int REQUEST_ANNOUNCE_PGP = 0x73731;
|
|
|
|
|
2014-03-28 11:22:09 +00:00
|
|
|
protected final static String LOGTAG = "xmppService";
|
|
|
|
|
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-03-09 12:21:28 +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;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
@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-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-01-25 18:33:12 +00:00
|
|
|
@Override
|
|
|
|
protected void onStop() {
|
|
|
|
super.onStop();
|
|
|
|
if (xmppConnectionServiceBound) {
|
|
|
|
unbindService(mConnection);
|
|
|
|
xmppConnectionServiceBound = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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) {
|
|
|
|
|
|
|
|
inputManager.hideSoftInputFromWindow(
|
|
|
|
focus.getWindowToken(),
|
|
|
|
InputMethodManager.HIDE_NOT_ALWAYS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-03 15:39:19 +00:00
|
|
|
public boolean hasPgp() {
|
|
|
|
if (xmppConnectionService.getPgpEngine()!=null) {
|
|
|
|
return true;
|
|
|
|
} else {
|
2014-03-07 23:31:29 +00:00
|
|
|
Builder builder = new AlertDialog.Builder(this);
|
2014-05-02 10:02:18 +00:00
|
|
|
builder.setTitle(getString(R.string.openkeychain_required));
|
2014-03-03 15:39:19 +00:00
|
|
|
builder.setIconAttribute(android.R.attr.alertDialogIcon);
|
2014-05-02 10:02:18 +00:00
|
|
|
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) {
|
2014-05-03 13:24:19 +00:00
|
|
|
if (xmppConnectionServiceBound) {
|
|
|
|
unbindService(mConnection);
|
|
|
|
xmppConnectionServiceBound = false;
|
|
|
|
}
|
|
|
|
stopService(new Intent(XmppActivity.this, XmppConnectionService.class));
|
|
|
|
finish();
|
2014-05-02 10:02:18 +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);
|
2014-05-03 13:24:19 +00:00
|
|
|
finish();
|
2014-05-02 10:02:18 +00:00
|
|
|
}
|
|
|
|
});
|
2014-03-03 15:39:19 +00:00
|
|
|
builder.create().show();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-27 19:40:42 +00:00
|
|
|
abstract void onBackendConnected();
|
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-03-09 12:21:28 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
ExceptionHelper.init(getApplicationContext());
|
|
|
|
}
|
2014-03-13 20:37:27 +00:00
|
|
|
|
2014-05-21 14:43:19 +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());
|
|
|
|
if (text!=null) {
|
|
|
|
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()
|
|
|
|
| Intent.FLAG_ACTIVITY_NEW_TASK
|
|
|
|
| Intent.FLAG_ACTIVITY_SINGLE_TOP);
|
2014-05-21 14:43:19 +00:00
|
|
|
} else {
|
|
|
|
viewConversationIntent.setFlags(viewConversationIntent.getFlags()
|
2014-03-13 20:37:27 +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-05-08 12:35:21 +00:00
|
|
|
|
2014-06-07 11:25:27 +00:00
|
|
|
protected void announcePgp(Account account, final Conversation conversation) {
|
|
|
|
xmppConnectionService.getPgpEngine().generateSignature(account, "online", new UiCallback<Account>() {
|
2014-05-08 12:35:21 +00:00
|
|
|
|
|
|
|
@Override
|
2014-06-07 11:25:27 +00:00
|
|
|
public void userInputRequried(PendingIntent pi, Account account) {
|
2014-05-08 12:35:21 +00:00
|
|
|
try {
|
|
|
|
startIntentSenderForResult(pi.getIntentSender(), REQUEST_ANNOUNCE_PGP, null, 0, 0, 0);
|
|
|
|
} catch (SendIntentException e) {
|
|
|
|
Log.d("xmppService","coulnd start intent for pgp anncouncment");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-07 11:25:27 +00:00
|
|
|
public void success(Account account) {
|
2014-05-08 12:35:21 +00:00
|
|
|
xmppConnectionService.databaseBackend.updateAccount(account);
|
2014-05-18 11:23:26 +00:00
|
|
|
xmppConnectionService.sendPresence(account);
|
2014-05-08 14:52:19 +00:00
|
|
|
if (conversation!=null) {
|
|
|
|
conversation.setNextEncryption(Message.ENCRYPTION_PGP);
|
|
|
|
}
|
2014-05-08 12:35:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-07 11:25:27 +00:00
|
|
|
public void error(int error, Account account) {
|
2014-05-12 12:59:46 +00:00
|
|
|
displayErrorDialog(error);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void displayErrorDialog(final int errorCode) {
|
|
|
|
runOnUiThread(new Runnable() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(XmppActivity.this);
|
|
|
|
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-05-12 12:59:46 +00:00
|
|
|
|
2014-05-08 12:35:21 +00:00
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|