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-03-13 20:37:27 +00:00
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
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;
|
|
|
|
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-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-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
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
public void switchToConversation(Conversation conversation, String text) {
|
|
|
|
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);
|
|
|
|
viewConversationIntent.setFlags(viewConversationIntent.getFlags()
|
|
|
|
| Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
|
|
|
startActivity(viewConversationIntent);
|
|
|
|
}
|
2014-01-25 18:33:12 +00:00
|
|
|
}
|