2014-08-15 15:31:24 +00:00
|
|
|
package eu.siacs.conversations.ui;
|
|
|
|
|
2014-11-03 21:47:07 +00:00
|
|
|
import android.app.AlertDialog;
|
2014-08-15 15:31:24 +00:00
|
|
|
import android.app.PendingIntent;
|
|
|
|
import android.content.Intent;
|
2014-11-03 21:47:07 +00:00
|
|
|
import android.graphics.Bitmap;
|
|
|
|
import android.graphics.Color;
|
|
|
|
import android.graphics.Point;
|
2014-08-15 15:31:24 +00:00
|
|
|
import android.os.Bundle;
|
2014-10-05 10:05:27 +00:00
|
|
|
import android.text.Editable;
|
|
|
|
import android.text.TextWatcher;
|
2014-11-03 21:47:07 +00:00
|
|
|
import android.util.Log;
|
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuItem;
|
2014-08-15 15:31:24 +00:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.View.OnClickListener;
|
|
|
|
import android.widget.AutoCompleteTextView;
|
|
|
|
import android.widget.Button;
|
|
|
|
import android.widget.CheckBox;
|
|
|
|
import android.widget.CompoundButton;
|
2014-11-03 21:47:07 +00:00
|
|
|
import android.widget.CompoundButton.OnCheckedChangeListener;
|
2014-08-15 15:31:24 +00:00
|
|
|
import android.widget.EditText;
|
2014-10-03 13:55:06 +00:00
|
|
|
import android.widget.ImageButton;
|
2014-11-03 21:47:07 +00:00
|
|
|
import android.widget.ImageView;
|
2014-08-19 13:06:50 +00:00
|
|
|
import android.widget.LinearLayout;
|
2014-10-13 12:36:19 +00:00
|
|
|
import android.widget.RelativeLayout;
|
2014-08-19 13:06:50 +00:00
|
|
|
import android.widget.TextView;
|
2014-10-03 13:55:06 +00:00
|
|
|
import android.widget.Toast;
|
2014-11-03 21:47:07 +00:00
|
|
|
|
|
|
|
import com.google.zxing.BarcodeFormat;
|
|
|
|
import com.google.zxing.EncodeHintType;
|
|
|
|
import com.google.zxing.WriterException;
|
|
|
|
import com.google.zxing.common.BitMatrix;
|
|
|
|
import com.google.zxing.integration.android.IntentIntegrator;
|
|
|
|
import com.google.zxing.integration.android.IntentResult;
|
|
|
|
import com.google.zxing.qrcode.QRCodeWriter;
|
|
|
|
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
|
|
|
|
|
|
|
|
import java.util.Hashtable;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.Config;
|
2014-08-15 15:31:24 +00:00
|
|
|
import eu.siacs.conversations.R;
|
|
|
|
import eu.siacs.conversations.entities.Account;
|
2014-11-04 11:15:14 +00:00
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
2014-08-15 15:31:24 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService.OnAccountUpdate;
|
|
|
|
import eu.siacs.conversations.ui.adapter.KnownHostsAdapter;
|
2014-08-19 13:06:50 +00:00
|
|
|
import eu.siacs.conversations.utils.UIHelper;
|
2014-08-15 15:31:24 +00:00
|
|
|
import eu.siacs.conversations.utils.Validator;
|
2014-08-23 13:56:30 +00:00
|
|
|
import eu.siacs.conversations.xmpp.XmppConnection.Features;
|
2014-11-06 19:33:13 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jid.InvalidJidException;
|
|
|
|
import eu.siacs.conversations.xmpp.jid.Jid;
|
2014-08-15 15:31:24 +00:00
|
|
|
import eu.siacs.conversations.xmpp.pep.Avatar;
|
|
|
|
|
|
|
|
public class EditAccountActivity extends XmppActivity {
|
|
|
|
|
|
|
|
private AutoCompleteTextView mAccountJid;
|
|
|
|
private EditText mPassword;
|
|
|
|
private EditText mPasswordConfirm;
|
|
|
|
private CheckBox mRegisterNew;
|
|
|
|
private Button mCancelButton;
|
|
|
|
private Button mSaveButton;
|
|
|
|
|
2014-08-19 13:06:50 +00:00
|
|
|
private LinearLayout mStats;
|
2014-08-23 13:56:30 +00:00
|
|
|
private TextView mServerInfoSm;
|
|
|
|
private TextView mServerInfoCarbons;
|
|
|
|
private TextView mServerInfoPep;
|
2014-08-19 13:06:50 +00:00
|
|
|
private TextView mSessionEst;
|
2014-08-20 09:32:49 +00:00
|
|
|
private TextView mOtrFingerprint;
|
2014-11-04 16:38:41 +00:00
|
|
|
private ImageView mAvatar;
|
2014-10-13 12:36:19 +00:00
|
|
|
private RelativeLayout mOtrFingerprintBox;
|
2014-10-03 13:55:06 +00:00
|
|
|
private ImageButton mOtrFingerprintToClipboardButton;
|
2014-08-19 13:06:50 +00:00
|
|
|
|
2014-11-06 19:33:13 +00:00
|
|
|
private Jid jidToEdit;
|
2014-08-15 15:31:24 +00:00
|
|
|
private Account mAccount;
|
|
|
|
|
|
|
|
private boolean mFetchingAvatar = false;
|
2014-08-19 13:06:50 +00:00
|
|
|
|
2014-08-15 15:31:24 +00:00
|
|
|
private OnClickListener mSaveButtonClickListener = new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
2014-10-05 10:05:27 +00:00
|
|
|
if (mAccount != null
|
|
|
|
&& mAccount.getStatus() == Account.STATUS_DISABLED) {
|
|
|
|
mAccount.setOption(Account.OPTION_DISABLED, false);
|
|
|
|
xmppConnectionService.updateAccount(mAccount);
|
|
|
|
return;
|
|
|
|
}
|
2014-08-20 09:32:49 +00:00
|
|
|
if (!Validator.isValidJid(mAccountJid.getText().toString())) {
|
|
|
|
mAccountJid.setError(getString(R.string.invalid_jid));
|
|
|
|
mAccountJid.requestFocus();
|
2014-08-15 15:31:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
boolean registerNewAccount = mRegisterNew.isChecked();
|
2014-11-06 19:33:13 +00:00
|
|
|
final Jid jid;
|
|
|
|
try {
|
|
|
|
jid = Jid.fromString(mAccountJid.getText().toString());
|
|
|
|
} catch (final InvalidJidException e) {
|
|
|
|
// TODO: Handle this error?
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
String password = mPassword.getText().toString();
|
2014-08-15 15:31:24 +00:00
|
|
|
String passwordConfirm = mPasswordConfirm.getText().toString();
|
|
|
|
if (registerNewAccount) {
|
|
|
|
if (!password.equals(passwordConfirm)) {
|
|
|
|
mPasswordConfirm
|
|
|
|
.setError(getString(R.string.passwords_do_not_match));
|
2014-08-20 09:32:49 +00:00
|
|
|
mPasswordConfirm.requestFocus();
|
2014-08-15 15:31:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mAccount != null) {
|
|
|
|
mAccount.setPassword(password);
|
2014-11-06 19:33:13 +00:00
|
|
|
try {
|
|
|
|
mAccount.setUsername(jid.hasLocalPart() ? jid.getLocalpart() : "");
|
|
|
|
mAccount.setServer(jid.getDomainpart());
|
|
|
|
} catch (final InvalidJidException ignored) {
|
|
|
|
}
|
2014-08-23 19:31:27 +00:00
|
|
|
mAccount.setOption(Account.OPTION_REGISTER, registerNewAccount);
|
2014-08-15 15:31:24 +00:00
|
|
|
xmppConnectionService.updateAccount(mAccount);
|
|
|
|
} else {
|
2014-11-06 19:33:13 +00:00
|
|
|
try {
|
|
|
|
if (xmppConnectionService.findAccountByJid(Jid.fromString(mAccountJid.getText().toString())) != null) {
|
|
|
|
mAccountJid
|
|
|
|
.setError(getString(R.string.account_already_exists));
|
|
|
|
mAccountJid.requestFocus();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} catch (InvalidJidException e) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mAccount = new Account(jid.toBareJid(), password);
|
2014-08-15 15:31:24 +00:00
|
|
|
mAccount.setOption(Account.OPTION_USETLS, true);
|
|
|
|
mAccount.setOption(Account.OPTION_USECOMPRESSION, true);
|
2014-08-20 09:32:49 +00:00
|
|
|
mAccount.setOption(Account.OPTION_REGISTER, registerNewAccount);
|
2014-08-15 15:31:24 +00:00
|
|
|
xmppConnectionService.createAccount(mAccount);
|
|
|
|
}
|
|
|
|
if (jidToEdit != null) {
|
|
|
|
finish();
|
|
|
|
} else {
|
|
|
|
updateSaveButton();
|
|
|
|
updateAccountInformation();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|
|
|
|
private OnClickListener mCancelButtonClickListener = new OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
private OnAccountUpdate mOnAccountUpdateListener = new OnAccountUpdate() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAccountUpdate() {
|
|
|
|
runOnUiThread(new Runnable() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2014-08-23 19:31:27 +00:00
|
|
|
if (mAccount != null
|
|
|
|
&& mAccount.getStatus() != Account.STATUS_ONLINE
|
|
|
|
&& mFetchingAvatar) {
|
|
|
|
startActivity(new Intent(getApplicationContext(),
|
|
|
|
ManageAccountActivity.class));
|
|
|
|
finish();
|
|
|
|
} else if (jidToEdit == null && mAccount != null
|
2014-08-19 13:06:50 +00:00
|
|
|
&& mAccount.getStatus() == Account.STATUS_ONLINE) {
|
2014-08-15 15:31:24 +00:00
|
|
|
if (!mFetchingAvatar) {
|
|
|
|
mFetchingAvatar = true;
|
2014-08-19 13:06:50 +00:00
|
|
|
xmppConnectionService.checkForAvatar(mAccount,
|
|
|
|
mAvatarFetchCallback);
|
2014-08-15 15:31:24 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
updateSaveButton();
|
|
|
|
}
|
2014-08-20 09:32:49 +00:00
|
|
|
if (mAccount != null) {
|
|
|
|
updateAccountInformation();
|
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
private UiCallback<Avatar> mAvatarFetchCallback = new UiCallback<Avatar>() {
|
2014-08-19 13:06:50 +00:00
|
|
|
|
2014-08-15 15:31:24 +00:00
|
|
|
@Override
|
|
|
|
public void userInputRequried(PendingIntent pi, Avatar avatar) {
|
|
|
|
finishInitialSetup(avatar);
|
|
|
|
}
|
2014-08-19 13:06:50 +00:00
|
|
|
|
2014-08-15 15:31:24 +00:00
|
|
|
@Override
|
|
|
|
public void success(Avatar avatar) {
|
|
|
|
finishInitialSetup(avatar);
|
|
|
|
}
|
2014-08-19 13:06:50 +00:00
|
|
|
|
2014-08-15 15:31:24 +00:00
|
|
|
@Override
|
|
|
|
public void error(int errorCode, Avatar avatar) {
|
|
|
|
finishInitialSetup(avatar);
|
|
|
|
}
|
|
|
|
};
|
2014-11-06 19:33:13 +00:00
|
|
|
private TextWatcher mTextWatcher = new TextWatcher() {
|
2014-10-05 10:05:27 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTextChanged(CharSequence s, int start, int before,
|
2014-11-03 21:47:07 +00:00
|
|
|
int count) {
|
2014-10-05 10:05:27 +00:00
|
|
|
updateSaveButton();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void beforeTextChanged(CharSequence s, int start, int count,
|
2014-11-03 21:47:07 +00:00
|
|
|
int after) {
|
2014-10-05 10:05:27 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void afterTextChanged(Editable s) {
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|
2014-11-04 16:38:41 +00:00
|
|
|
private OnClickListener mAvatarClickListener = new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
if (mAccount!=null) {
|
|
|
|
Intent intent = new Intent(getApplicationContext(),
|
|
|
|
PublishProfilePictureActivity.class);
|
2014-11-06 19:33:13 +00:00
|
|
|
intent.putExtra("account", mAccount.getJid().toString());
|
2014-11-04 16:38:41 +00:00
|
|
|
startActivity(intent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2014-08-15 15:31:24 +00:00
|
|
|
|
2014-08-16 07:44:37 +00:00
|
|
|
protected void finishInitialSetup(final Avatar avatar) {
|
2014-08-15 15:31:24 +00:00
|
|
|
runOnUiThread(new Runnable() {
|
2014-08-19 13:06:50 +00:00
|
|
|
|
2014-08-15 15:31:24 +00:00
|
|
|
@Override
|
|
|
|
public void run() {
|
2014-08-16 07:44:37 +00:00
|
|
|
Intent intent;
|
2014-08-19 13:06:50 +00:00
|
|
|
if (avatar != null) {
|
|
|
|
intent = new Intent(getApplicationContext(),
|
|
|
|
StartConversationActivity.class);
|
2014-08-16 07:44:37 +00:00
|
|
|
} else {
|
2014-08-19 13:06:50 +00:00
|
|
|
intent = new Intent(getApplicationContext(),
|
|
|
|
PublishProfilePictureActivity.class);
|
2014-11-06 19:33:13 +00:00
|
|
|
intent.putExtra("account", mAccount.getJid().toString());
|
2014-08-23 18:00:05 +00:00
|
|
|
intent.putExtra("setup", true);
|
2014-08-16 07:44:37 +00:00
|
|
|
}
|
|
|
|
startActivity(intent);
|
|
|
|
finish();
|
2014-08-15 15:31:24 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2014-08-19 13:06:50 +00:00
|
|
|
|
2014-08-15 15:31:24 +00:00
|
|
|
protected boolean inputDataDiffersFromAccount() {
|
|
|
|
if (mAccount == null) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return (!mAccount.getJid().equals(mAccountJid.getText().toString()))
|
|
|
|
|| (!mAccount.getPassword().equals(
|
2014-11-03 21:47:07 +00:00
|
|
|
mPassword.getText().toString()) || mAccount
|
|
|
|
.isOptionSet(Account.OPTION_REGISTER) != mRegisterNew
|
|
|
|
.isChecked());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-15 15:31:24 +00:00
|
|
|
protected void updateSaveButton() {
|
2014-08-16 07:44:37 +00:00
|
|
|
if (mAccount != null
|
2014-08-19 13:06:50 +00:00
|
|
|
&& mAccount.getStatus() == Account.STATUS_CONNECTING) {
|
2014-08-15 15:31:24 +00:00
|
|
|
this.mSaveButton.setEnabled(false);
|
|
|
|
this.mSaveButton.setTextColor(getSecondaryTextColor());
|
|
|
|
this.mSaveButton.setText(R.string.account_status_connecting);
|
2014-10-05 10:05:27 +00:00
|
|
|
} else if (mAccount != null
|
|
|
|
&& mAccount.getStatus() == Account.STATUS_DISABLED) {
|
|
|
|
this.mSaveButton.setEnabled(true);
|
|
|
|
this.mSaveButton.setTextColor(getPrimaryTextColor());
|
|
|
|
this.mSaveButton.setText(R.string.enable);
|
2014-08-19 13:06:50 +00:00
|
|
|
} else {
|
2014-08-15 15:31:24 +00:00
|
|
|
this.mSaveButton.setEnabled(true);
|
|
|
|
this.mSaveButton.setTextColor(getPrimaryTextColor());
|
2014-08-19 13:06:50 +00:00
|
|
|
if (jidToEdit != null) {
|
2014-08-31 14:28:21 +00:00
|
|
|
if (mAccount != null
|
|
|
|
&& mAccount.getStatus() == Account.STATUS_ONLINE) {
|
2014-08-29 08:24:25 +00:00
|
|
|
this.mSaveButton.setText(R.string.save);
|
2014-10-05 10:05:27 +00:00
|
|
|
if (!accountInfoEdited()) {
|
|
|
|
this.mSaveButton.setEnabled(false);
|
|
|
|
this.mSaveButton.setTextColor(getSecondaryTextColor());
|
|
|
|
}
|
2014-08-29 08:24:25 +00:00
|
|
|
} else {
|
|
|
|
this.mSaveButton.setText(R.string.connect);
|
|
|
|
}
|
2014-08-16 07:44:37 +00:00
|
|
|
} else {
|
|
|
|
this.mSaveButton.setText(R.string.next);
|
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-05 10:05:27 +00:00
|
|
|
protected boolean accountInfoEdited() {
|
|
|
|
return (!this.mAccount.getJid().equals(
|
|
|
|
this.mAccountJid.getText().toString()))
|
|
|
|
|| (!this.mAccount.getPassword().equals(
|
2014-11-03 21:47:07 +00:00
|
|
|
this.mPassword.getText().toString()));
|
2014-10-05 10:05:27 +00:00
|
|
|
}
|
|
|
|
|
2014-11-04 11:15:14 +00:00
|
|
|
@Override
|
|
|
|
protected String getShareableUri() {
|
|
|
|
if (mAccount!=null) {
|
|
|
|
return "xmpp:"+mAccount.getJid();
|
|
|
|
} else {
|
2014-11-04 16:10:35 +00:00
|
|
|
return "";
|
2014-11-04 11:15:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-15 15:31:24 +00:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
setContentView(R.layout.activity_edit_account);
|
|
|
|
this.mAccountJid = (AutoCompleteTextView) findViewById(R.id.account_jid);
|
2014-10-05 10:05:27 +00:00
|
|
|
this.mAccountJid.addTextChangedListener(this.mTextWatcher);
|
2014-08-15 15:31:24 +00:00
|
|
|
this.mPassword = (EditText) findViewById(R.id.account_password);
|
2014-10-05 10:05:27 +00:00
|
|
|
this.mPassword.addTextChangedListener(this.mTextWatcher);
|
2014-08-15 15:31:24 +00:00
|
|
|
this.mPasswordConfirm = (EditText) findViewById(R.id.account_password_confirm);
|
2014-11-04 16:38:41 +00:00
|
|
|
this.mAvatar = (ImageView) findViewById(R.id.avater);
|
|
|
|
this.mAvatar.setOnClickListener(this.mAvatarClickListener);
|
2014-08-15 15:31:24 +00:00
|
|
|
this.mRegisterNew = (CheckBox) findViewById(R.id.account_register_new);
|
2014-08-19 13:06:50 +00:00
|
|
|
this.mStats = (LinearLayout) findViewById(R.id.stats);
|
|
|
|
this.mSessionEst = (TextView) findViewById(R.id.session_est);
|
2014-08-23 13:56:30 +00:00
|
|
|
this.mServerInfoCarbons = (TextView) findViewById(R.id.server_info_carbons);
|
|
|
|
this.mServerInfoSm = (TextView) findViewById(R.id.server_info_sm);
|
|
|
|
this.mServerInfoPep = (TextView) findViewById(R.id.server_info_pep);
|
2014-08-20 09:32:49 +00:00
|
|
|
this.mOtrFingerprint = (TextView) findViewById(R.id.otr_fingerprint);
|
2014-10-13 12:36:19 +00:00
|
|
|
this.mOtrFingerprintBox = (RelativeLayout) findViewById(R.id.otr_fingerprint_box);
|
2014-10-03 13:55:06 +00:00
|
|
|
this.mOtrFingerprintToClipboardButton = (ImageButton) findViewById(R.id.action_copy_to_clipboard);
|
2014-08-15 15:31:24 +00:00
|
|
|
this.mSaveButton = (Button) findViewById(R.id.save_button);
|
|
|
|
this.mCancelButton = (Button) findViewById(R.id.cancel_button);
|
|
|
|
this.mSaveButton.setOnClickListener(this.mSaveButtonClickListener);
|
|
|
|
this.mCancelButton.setOnClickListener(this.mCancelButtonClickListener);
|
|
|
|
this.mRegisterNew
|
|
|
|
.setOnCheckedChangeListener(new OnCheckedChangeListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCheckedChanged(CompoundButton buttonView,
|
2014-11-03 21:47:07 +00:00
|
|
|
boolean isChecked) {
|
2014-08-15 15:31:24 +00:00
|
|
|
if (isChecked) {
|
|
|
|
mPasswordConfirm.setVisibility(View.VISIBLE);
|
|
|
|
} else {
|
|
|
|
mPasswordConfirm.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
updateSaveButton();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-11-03 21:47:07 +00:00
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
|
|
|
super.onCreateOptionsMenu(menu);
|
|
|
|
getMenuInflater().inflate(R.menu.editaccount, menu);
|
|
|
|
MenuItem showQrCode = menu.findItem(R.id.action_show_qr_code);
|
|
|
|
if (mAccount == null) {
|
|
|
|
showQrCode.setVisible(false);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-08-15 15:31:24 +00:00
|
|
|
@Override
|
|
|
|
protected void onStart() {
|
|
|
|
super.onStart();
|
|
|
|
if (getIntent() != null) {
|
2014-11-06 19:33:13 +00:00
|
|
|
try {
|
|
|
|
this.jidToEdit = Jid.fromString(getIntent().getStringExtra("jid"));
|
|
|
|
} catch (final InvalidJidException ignored) {
|
|
|
|
}
|
|
|
|
if (this.jidToEdit != null) {
|
2014-08-15 15:31:24 +00:00
|
|
|
this.mRegisterNew.setVisibility(View.GONE);
|
2014-11-04 16:38:41 +00:00
|
|
|
getActionBar().setTitle(getString(R.string.account_details));
|
2014-08-15 15:31:24 +00:00
|
|
|
} else {
|
2014-11-04 16:38:41 +00:00
|
|
|
this.mAvatar.setVisibility(View.GONE);
|
2014-08-15 15:31:24 +00:00
|
|
|
getActionBar().setTitle(R.string.action_add_account);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-23 19:31:27 +00:00
|
|
|
|
2014-08-21 05:38:44 +00:00
|
|
|
@Override
|
|
|
|
protected void onStop() {
|
|
|
|
if (xmppConnectionServiceBound) {
|
|
|
|
xmppConnectionService.removeOnAccountListChangedListener();
|
|
|
|
}
|
|
|
|
super.onStop();
|
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onBackendConnected() {
|
2014-11-06 19:33:13 +00:00
|
|
|
KnownHostsAdapter mKnownHostsAdapter = new KnownHostsAdapter(this,
|
|
|
|
android.R.layout.simple_list_item_1,
|
|
|
|
xmppConnectionService.getKnownHosts());
|
2014-08-15 15:31:24 +00:00
|
|
|
this.xmppConnectionService
|
|
|
|
.setOnAccountListChangedListener(this.mOnAccountUpdateListener);
|
|
|
|
if (this.jidToEdit != null) {
|
|
|
|
this.mAccount = xmppConnectionService.findAccountByJid(jidToEdit);
|
|
|
|
updateAccountInformation();
|
|
|
|
} else if (this.xmppConnectionService.getAccounts().size() == 0) {
|
|
|
|
getActionBar().setDisplayHomeAsUpEnabled(false);
|
|
|
|
getActionBar().setDisplayShowHomeEnabled(false);
|
|
|
|
this.mCancelButton.setEnabled(false);
|
2014-08-23 19:31:27 +00:00
|
|
|
this.mCancelButton.setTextColor(getSecondaryTextColor());
|
2014-08-15 15:31:24 +00:00
|
|
|
}
|
2014-11-06 19:33:13 +00:00
|
|
|
this.mAccountJid.setAdapter(mKnownHostsAdapter);
|
2014-08-15 15:31:24 +00:00
|
|
|
updateSaveButton();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateAccountInformation() {
|
2014-11-06 19:33:13 +00:00
|
|
|
this.mAccountJid.setText(this.mAccount.getJid().toString());
|
2014-08-15 15:31:24 +00:00
|
|
|
this.mPassword.setText(this.mAccount.getPassword());
|
2014-11-06 15:51:50 +00:00
|
|
|
if (this.jidToEdit != null) {
|
|
|
|
this.mAvatar.setVisibility(View.VISIBLE);
|
|
|
|
this.mAvatar.setImageBitmap(avatarService().get(this.mAccount, getPixel(72)));
|
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
if (this.mAccount.isOptionSet(Account.OPTION_REGISTER)) {
|
|
|
|
this.mRegisterNew.setVisibility(View.VISIBLE);
|
|
|
|
this.mRegisterNew.setChecked(true);
|
|
|
|
this.mPasswordConfirm.setText(this.mAccount.getPassword());
|
|
|
|
} else {
|
|
|
|
this.mRegisterNew.setVisibility(View.GONE);
|
|
|
|
this.mRegisterNew.setChecked(false);
|
|
|
|
}
|
2014-08-23 19:31:27 +00:00
|
|
|
if (this.mAccount.getStatus() == Account.STATUS_ONLINE
|
|
|
|
&& !this.mFetchingAvatar) {
|
2014-08-19 13:06:50 +00:00
|
|
|
this.mStats.setVisibility(View.VISIBLE);
|
|
|
|
this.mSessionEst.setText(UIHelper.readableTimeDifference(
|
|
|
|
getApplicationContext(), this.mAccount.getXmppConnection()
|
|
|
|
.getLastSessionEstablished()));
|
2014-08-23 13:56:30 +00:00
|
|
|
Features features = this.mAccount.getXmppConnection().getFeatures();
|
|
|
|
if (features.carbons()) {
|
|
|
|
this.mServerInfoCarbons.setText(R.string.server_info_available);
|
|
|
|
} else {
|
2014-08-23 19:31:27 +00:00
|
|
|
this.mServerInfoCarbons
|
|
|
|
.setText(R.string.server_info_unavailable);
|
2014-08-23 13:56:30 +00:00
|
|
|
}
|
|
|
|
if (features.sm()) {
|
|
|
|
this.mServerInfoSm.setText(R.string.server_info_available);
|
|
|
|
} else {
|
|
|
|
this.mServerInfoSm.setText(R.string.server_info_unavailable);
|
|
|
|
}
|
|
|
|
if (features.pubsub()) {
|
|
|
|
this.mServerInfoPep.setText(R.string.server_info_available);
|
|
|
|
} else {
|
|
|
|
this.mServerInfoPep.setText(R.string.server_info_unavailable);
|
|
|
|
}
|
2014-10-03 13:55:06 +00:00
|
|
|
final String fingerprint = this.mAccount
|
2014-09-06 16:21:31 +00:00
|
|
|
.getOtrFingerprint(xmppConnectionService);
|
2014-08-23 19:31:27 +00:00
|
|
|
if (fingerprint != null) {
|
2014-10-13 12:36:19 +00:00
|
|
|
this.mOtrFingerprintBox.setVisibility(View.VISIBLE);
|
2014-08-20 09:32:49 +00:00
|
|
|
this.mOtrFingerprint.setText(fingerprint);
|
2014-10-05 10:05:27 +00:00
|
|
|
this.mOtrFingerprintToClipboardButton
|
|
|
|
.setVisibility(View.VISIBLE);
|
2014-10-03 13:55:06 +00:00
|
|
|
this.mOtrFingerprintToClipboardButton
|
|
|
|
.setOnClickListener(new View.OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
|
2014-11-03 21:47:07 +00:00
|
|
|
if (copyTextToClipboard(fingerprint, R.string.otr_fingerprint)) {
|
2014-10-03 13:55:06 +00:00
|
|
|
Toast.makeText(
|
|
|
|
EditAccountActivity.this,
|
|
|
|
R.string.toast_message_otr_fingerprint,
|
|
|
|
Toast.LENGTH_SHORT).show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-08-20 09:32:49 +00:00
|
|
|
} else {
|
2014-10-13 12:36:19 +00:00
|
|
|
this.mOtrFingerprintBox.setVisibility(View.GONE);
|
2014-08-20 09:32:49 +00:00
|
|
|
}
|
2014-08-19 13:06:50 +00:00
|
|
|
} else {
|
|
|
|
if (this.mAccount.errorStatus()) {
|
|
|
|
this.mAccountJid.setError(getString(this.mAccount
|
|
|
|
.getReadableStatusId()));
|
|
|
|
this.mAccountJid.requestFocus();
|
|
|
|
}
|
|
|
|
this.mStats.setVisibility(View.GONE);
|
|
|
|
}
|
2014-08-15 15:31:24 +00:00
|
|
|
}
|
|
|
|
}
|