| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | package eu.siacs.conversations.ui;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import android.app.PendingIntent;
 | 
					
						
							|  |  |  | import android.content.Intent;
 | 
					
						
							|  |  |  | import android.os.Bundle;
 | 
					
						
							| 
									
										
										
										
											2014-10-05 12:05:27 +02:00
										 |  |  | import android.text.Editable;
 | 
					
						
							|  |  |  | import android.text.TextWatcher;
 | 
					
						
							| 
									
										
										
										
											2014-11-03 22:47:07 +01:00
										 |  |  | import android.view.Menu;
 | 
					
						
							|  |  |  | import android.view.MenuItem;
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02: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 22:47:07 +01:00
										 |  |  | import android.widget.CompoundButton.OnCheckedChangeListener;
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | import android.widget.EditText;
 | 
					
						
							| 
									
										
										
										
											2014-10-03 15:55:06 +02:00
										 |  |  | import android.widget.ImageButton;
 | 
					
						
							| 
									
										
										
										
											2014-11-03 22:47:07 +01:00
										 |  |  | import android.widget.ImageView;
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | import android.widget.LinearLayout;
 | 
					
						
							| 
									
										
										
										
											2014-10-13 14:36:19 +02:00
										 |  |  | import android.widget.RelativeLayout;
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | import android.widget.TextView;
 | 
					
						
							| 
									
										
										
										
											2014-10-03 15:55:06 +02:00
										 |  |  | import android.widget.Toast;
 | 
					
						
							| 
									
										
										
										
											2014-11-03 22:47:07 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | import eu.siacs.conversations.R;
 | 
					
						
							|  |  |  | import eu.siacs.conversations.entities.Account;
 | 
					
						
							|  |  |  | import eu.siacs.conversations.services.XmppConnectionService.OnAccountUpdate;
 | 
					
						
							|  |  |  | import eu.siacs.conversations.ui.adapter.KnownHostsAdapter;
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | import eu.siacs.conversations.utils.UIHelper;
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | import eu.siacs.conversations.utils.Validator;
 | 
					
						
							| 
									
										
										
										
											2014-08-23 15:56:30 +02:00
										 |  |  | import eu.siacs.conversations.xmpp.XmppConnection.Features;
 | 
					
						
							| 
									
										
										
										
											2014-11-06 20:33:13 +01:00
										 |  |  | import eu.siacs.conversations.xmpp.jid.InvalidJidException;
 | 
					
						
							|  |  |  | import eu.siacs.conversations.xmpp.jid.Jid;
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | import eu.siacs.conversations.xmpp.pep.Avatar;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 17:39:28 +01:00
										 |  |  | public class EditAccountActivity extends XmppActivity implements OnAccountUpdate {
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	private AutoCompleteTextView mAccountJid;
 | 
					
						
							|  |  |  | 	private EditText mPassword;
 | 
					
						
							|  |  |  | 	private EditText mPasswordConfirm;
 | 
					
						
							|  |  |  | 	private CheckBox mRegisterNew;
 | 
					
						
							|  |  |  | 	private Button mCancelButton;
 | 
					
						
							|  |  |  | 	private Button mSaveButton;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | 	private LinearLayout mStats;
 | 
					
						
							| 
									
										
										
										
											2014-08-23 15:56:30 +02:00
										 |  |  | 	private TextView mServerInfoSm;
 | 
					
						
							|  |  |  | 	private TextView mServerInfoCarbons;
 | 
					
						
							|  |  |  | 	private TextView mServerInfoPep;
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | 	private TextView mSessionEst;
 | 
					
						
							| 
									
										
										
										
											2014-08-20 11:32:49 +02:00
										 |  |  | 	private TextView mOtrFingerprint;
 | 
					
						
							| 
									
										
										
										
											2014-11-04 17:38:41 +01:00
										 |  |  | 	private ImageView mAvatar;
 | 
					
						
							| 
									
										
										
										
											2014-10-13 14:36:19 +02:00
										 |  |  | 	private RelativeLayout mOtrFingerprintBox;
 | 
					
						
							| 
									
										
										
										
											2014-10-03 15:55:06 +02:00
										 |  |  | 	private ImageButton mOtrFingerprintToClipboardButton;
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-06 20:33:13 +01:00
										 |  |  | 	private Jid jidToEdit;
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 	private Account mAccount;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	private boolean mFetchingAvatar = false;
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 	private OnClickListener mSaveButtonClickListener = new OnClickListener() {
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		@Override
 | 
					
						
							|  |  |  | 		public void onClick(View v) {
 | 
					
						
							| 
									
										
										
										
											2014-10-05 12:05:27 +02:00
										 |  |  | 			if (mAccount != null
 | 
					
						
							|  |  |  | 					&& mAccount.getStatus() == Account.STATUS_DISABLED) {
 | 
					
						
							|  |  |  | 				mAccount.setOption(Account.OPTION_DISABLED, false);
 | 
					
						
							|  |  |  | 				xmppConnectionService.updateAccount(mAccount);
 | 
					
						
							|  |  |  | 				return;
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							| 
									
										
										
										
											2014-08-20 11:32:49 +02:00
										 |  |  | 			if (!Validator.isValidJid(mAccountJid.getText().toString())) {
 | 
					
						
							|  |  |  | 				mAccountJid.setError(getString(R.string.invalid_jid));
 | 
					
						
							|  |  |  | 				mAccountJid.requestFocus();
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 				return;
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 			boolean registerNewAccount = mRegisterNew.isChecked();
 | 
					
						
							| 
									
										
										
										
											2014-11-06 20:33:13 +01: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 17:31:24 +02:00
										 |  |  | 			String passwordConfirm = mPasswordConfirm.getText().toString();
 | 
					
						
							|  |  |  | 			if (registerNewAccount) {
 | 
					
						
							|  |  |  | 				if (!password.equals(passwordConfirm)) {
 | 
					
						
							|  |  |  | 					mPasswordConfirm
 | 
					
						
							|  |  |  | 							.setError(getString(R.string.passwords_do_not_match));
 | 
					
						
							| 
									
										
										
										
											2014-08-20 11:32:49 +02:00
										 |  |  | 					mPasswordConfirm.requestFocus();
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 					return;
 | 
					
						
							|  |  |  | 				}
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 			if (mAccount != null) {
 | 
					
						
							|  |  |  | 				mAccount.setPassword(password);
 | 
					
						
							| 
									
										
										
										
											2014-11-06 20:33:13 +01:00
										 |  |  |                 try {
 | 
					
						
							| 
									
										
										
										
											2014-11-08 04:34:54 +01:00
										 |  |  |                     mAccount.setUsername(jid.hasLocalpart() ? jid.getLocalpart() : "");
 | 
					
						
							| 
									
										
										
										
											2014-11-06 20:33:13 +01:00
										 |  |  |                     mAccount.setServer(jid.getDomainpart());
 | 
					
						
							|  |  |  |                 } catch (final InvalidJidException ignored) {
 | 
					
						
							|  |  |  |                 }
 | 
					
						
							| 
									
										
										
										
											2014-08-23 21:31:27 +02:00
										 |  |  | 				mAccount.setOption(Account.OPTION_REGISTER, registerNewAccount);
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 				xmppConnectionService.updateAccount(mAccount);
 | 
					
						
							|  |  |  | 			} else {
 | 
					
						
							| 
									
										
										
										
											2014-11-06 20:33:13 +01: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 17:31:24 +02:00
										 |  |  | 				mAccount.setOption(Account.OPTION_USETLS, true);
 | 
					
						
							|  |  |  | 				mAccount.setOption(Account.OPTION_USECOMPRESSION, true);
 | 
					
						
							| 
									
										
										
										
											2014-08-20 11:32:49 +02:00
										 |  |  | 				mAccount.setOption(Account.OPTION_REGISTER, registerNewAccount);
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 				xmppConnectionService.createAccount(mAccount);
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 			if (jidToEdit != null) {
 | 
					
						
							|  |  |  | 				finish();
 | 
					
						
							|  |  |  | 			} else {
 | 
					
						
							|  |  |  | 				updateSaveButton();
 | 
					
						
							|  |  |  | 				updateAccountInformation();
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	};
 | 
					
						
							|  |  |  | 	private OnClickListener mCancelButtonClickListener = new OnClickListener() {
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		@Override
 | 
					
						
							|  |  |  | 		public void onClick(View v) {
 | 
					
						
							|  |  |  | 			finish();
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	};
 | 
					
						
							|  |  |  | 		@Override
 | 
					
						
							|  |  |  | 		public void onAccountUpdate() {
 | 
					
						
							|  |  |  | 			runOnUiThread(new Runnable() {
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				@Override
 | 
					
						
							|  |  |  | 				public void run() {
 | 
					
						
							| 
									
										
										
										
											2014-08-23 21:31:27 +02: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 15:06:50 +02:00
										 |  |  | 							&& mAccount.getStatus() == Account.STATUS_ONLINE) {
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 						if (!mFetchingAvatar) {
 | 
					
						
							|  |  |  | 							mFetchingAvatar = true;
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | 							xmppConnectionService.checkForAvatar(mAccount,
 | 
					
						
							|  |  |  | 									mAvatarFetchCallback);
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 						}
 | 
					
						
							|  |  |  | 					} else {
 | 
					
						
							|  |  |  | 						updateSaveButton();
 | 
					
						
							|  |  |  | 					}
 | 
					
						
							| 
									
										
										
										
											2014-08-20 11:32:49 +02:00
										 |  |  | 					if (mAccount != null) {
 | 
					
						
							|  |  |  | 						updateAccountInformation();
 | 
					
						
							|  |  |  | 					}
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 				}
 | 
					
						
							|  |  |  | 			});
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	private UiCallback<Avatar> mAvatarFetchCallback = new UiCallback<Avatar>() {
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 		@Override
 | 
					
						
							|  |  |  | 		public void userInputRequried(PendingIntent pi, Avatar avatar) {
 | 
					
						
							|  |  |  | 			finishInitialSetup(avatar);
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 		@Override
 | 
					
						
							|  |  |  | 		public void success(Avatar avatar) {
 | 
					
						
							|  |  |  | 			finishInitialSetup(avatar);
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 		@Override
 | 
					
						
							|  |  |  | 		public void error(int errorCode, Avatar avatar) {
 | 
					
						
							|  |  |  | 			finishInitialSetup(avatar);
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	};
 | 
					
						
							| 
									
										
										
										
											2014-11-06 20:33:13 +01:00
										 |  |  |     private TextWatcher mTextWatcher = new TextWatcher() {
 | 
					
						
							| 
									
										
										
										
											2014-10-05 12:05:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		@Override
 | 
					
						
							|  |  |  | 		public void onTextChanged(CharSequence s, int start, int before,
 | 
					
						
							| 
									
										
										
										
											2014-11-03 22:47:07 +01:00
										 |  |  | 								  int count) {
 | 
					
						
							| 
									
										
										
										
											2014-10-05 12:05:27 +02:00
										 |  |  | 			updateSaveButton();
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		@Override
 | 
					
						
							|  |  |  | 		public void beforeTextChanged(CharSequence s, int start, int count,
 | 
					
						
							| 
									
										
										
										
											2014-11-03 22:47:07 +01:00
										 |  |  | 									  int after) {
 | 
					
						
							| 
									
										
										
										
											2014-10-05 12:05:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		@Override
 | 
					
						
							|  |  |  | 		public void afterTextChanged(Editable s) {
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	};
 | 
					
						
							| 
									
										
										
										
											2014-11-04 17:38:41 +01:00
										 |  |  | 	private OnClickListener mAvatarClickListener = new OnClickListener() {
 | 
					
						
							|  |  |  | 		@Override
 | 
					
						
							|  |  |  | 		public void onClick(View view) {
 | 
					
						
							|  |  |  | 			if (mAccount!=null) {
 | 
					
						
							|  |  |  | 				Intent intent = new Intent(getApplicationContext(),
 | 
					
						
							|  |  |  | 						PublishProfilePictureActivity.class);
 | 
					
						
							| 
									
										
										
										
											2014-11-09 16:57:22 +01:00
										 |  |  | 				intent.putExtra("account", mAccount.getJid().toBareJid().toString());
 | 
					
						
							| 
									
										
										
										
											2014-11-04 17:38:41 +01:00
										 |  |  | 				startActivity(intent);
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	};
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-16 09:44:37 +02:00
										 |  |  | 	protected void finishInitialSetup(final Avatar avatar) {
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 		runOnUiThread(new Runnable() {
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 			@Override
 | 
					
						
							|  |  |  | 			public void run() {
 | 
					
						
							| 
									
										
										
										
											2014-08-16 09:44:37 +02:00
										 |  |  | 				Intent intent;
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | 				if (avatar != null) {
 | 
					
						
							|  |  |  | 					intent = new Intent(getApplicationContext(),
 | 
					
						
							|  |  |  | 							StartConversationActivity.class);
 | 
					
						
							| 
									
										
										
										
											2014-08-16 09:44:37 +02:00
										 |  |  | 				} else {
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | 					intent = new Intent(getApplicationContext(),
 | 
					
						
							|  |  |  | 							PublishProfilePictureActivity.class);
 | 
					
						
							| 
									
										
										
										
											2014-11-09 16:57:22 +01:00
										 |  |  | 					intent.putExtra("account", mAccount.getJid().toBareJid().toString());
 | 
					
						
							| 
									
										
										
										
											2014-08-23 20:00:05 +02:00
										 |  |  | 					intent.putExtra("setup", true);
 | 
					
						
							| 
									
										
										
										
											2014-08-16 09:44:37 +02:00
										 |  |  | 				}
 | 
					
						
							|  |  |  | 				startActivity(intent);
 | 
					
						
							|  |  |  | 				finish();
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 			}
 | 
					
						
							|  |  |  | 		});
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 	protected void updateSaveButton() {
 | 
					
						
							| 
									
										
										
										
											2014-08-16 09:44:37 +02:00
										 |  |  | 		if (mAccount != null
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | 				&& mAccount.getStatus() == Account.STATUS_CONNECTING) {
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 			this.mSaveButton.setEnabled(false);
 | 
					
						
							|  |  |  | 			this.mSaveButton.setTextColor(getSecondaryTextColor());
 | 
					
						
							|  |  |  | 			this.mSaveButton.setText(R.string.account_status_connecting);
 | 
					
						
							| 
									
										
										
										
											2014-10-05 12:05:27 +02: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 15:06:50 +02:00
										 |  |  | 		} else {
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 			this.mSaveButton.setEnabled(true);
 | 
					
						
							|  |  |  | 			this.mSaveButton.setTextColor(getPrimaryTextColor());
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | 			if (jidToEdit != null) {
 | 
					
						
							| 
									
										
										
										
											2014-08-31 16:28:21 +02:00
										 |  |  | 				if (mAccount != null
 | 
					
						
							|  |  |  | 						&& mAccount.getStatus() == Account.STATUS_ONLINE) {
 | 
					
						
							| 
									
										
										
										
											2014-08-29 10:24:25 +02:00
										 |  |  | 					this.mSaveButton.setText(R.string.save);
 | 
					
						
							| 
									
										
										
										
											2014-10-05 12:05:27 +02:00
										 |  |  | 					if (!accountInfoEdited()) {
 | 
					
						
							|  |  |  | 						this.mSaveButton.setEnabled(false);
 | 
					
						
							|  |  |  | 						this.mSaveButton.setTextColor(getSecondaryTextColor());
 | 
					
						
							|  |  |  | 					}
 | 
					
						
							| 
									
										
										
										
											2014-08-29 10:24:25 +02:00
										 |  |  | 				} else {
 | 
					
						
							|  |  |  | 					this.mSaveButton.setText(R.string.connect);
 | 
					
						
							|  |  |  | 				}
 | 
					
						
							| 
									
										
										
										
											2014-08-16 09:44:37 +02:00
										 |  |  | 			} else {
 | 
					
						
							|  |  |  | 				this.mSaveButton.setText(R.string.next);
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-05 12:05:27 +02:00
										 |  |  | 	protected boolean accountInfoEdited() {
 | 
					
						
							| 
									
										
										
										
											2014-11-09 16:57:22 +01:00
										 |  |  | 		return (!this.mAccount.getJid().toBareJid().equals(
 | 
					
						
							| 
									
										
										
										
											2014-10-05 12:05:27 +02:00
										 |  |  | 				this.mAccountJid.getText().toString()))
 | 
					
						
							|  |  |  | 				|| (!this.mAccount.getPassword().equals(
 | 
					
						
							| 
									
										
										
										
											2014-11-03 22:47:07 +01:00
										 |  |  | 				this.mPassword.getText().toString()));
 | 
					
						
							| 
									
										
										
										
											2014-10-05 12:05:27 +02:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-04 12:15:14 +01:00
										 |  |  | 	@Override
 | 
					
						
							|  |  |  | 	protected String getShareableUri() {
 | 
					
						
							|  |  |  | 		if (mAccount!=null) {
 | 
					
						
							| 
									
										
										
										
											2014-11-09 16:57:22 +01:00
										 |  |  | 			return "xmpp:"+mAccount.getJid().toBareJid();
 | 
					
						
							| 
									
										
										
										
											2014-11-04 12:15:14 +01:00
										 |  |  | 		} else {
 | 
					
						
							| 
									
										
										
										
											2014-11-04 17:10:35 +01:00
										 |  |  | 			return "";
 | 
					
						
							| 
									
										
										
										
											2014-11-04 12:15:14 +01:00
										 |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02: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 12:05:27 +02:00
										 |  |  | 		this.mAccountJid.addTextChangedListener(this.mTextWatcher);
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 		this.mPassword = (EditText) findViewById(R.id.account_password);
 | 
					
						
							| 
									
										
										
										
											2014-10-05 12:05:27 +02:00
										 |  |  | 		this.mPassword.addTextChangedListener(this.mTextWatcher);
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 		this.mPasswordConfirm = (EditText) findViewById(R.id.account_password_confirm);
 | 
					
						
							| 
									
										
										
										
											2014-11-04 17:38:41 +01:00
										 |  |  | 		this.mAvatar = (ImageView) findViewById(R.id.avater);
 | 
					
						
							|  |  |  | 		this.mAvatar.setOnClickListener(this.mAvatarClickListener);
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 		this.mRegisterNew = (CheckBox) findViewById(R.id.account_register_new);
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | 		this.mStats = (LinearLayout) findViewById(R.id.stats);
 | 
					
						
							|  |  |  | 		this.mSessionEst = (TextView) findViewById(R.id.session_est);
 | 
					
						
							| 
									
										
										
										
											2014-08-23 15:56:30 +02: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 11:32:49 +02:00
										 |  |  | 		this.mOtrFingerprint = (TextView) findViewById(R.id.otr_fingerprint);
 | 
					
						
							| 
									
										
										
										
											2014-10-13 14:36:19 +02:00
										 |  |  | 		this.mOtrFingerprintBox = (RelativeLayout) findViewById(R.id.otr_fingerprint_box);
 | 
					
						
							| 
									
										
										
										
											2014-10-03 15:55:06 +02:00
										 |  |  | 		this.mOtrFingerprintToClipboardButton = (ImageButton) findViewById(R.id.action_copy_to_clipboard);
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02: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 22:47:07 +01:00
										 |  |  | 												 boolean isChecked) {
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 						if (isChecked) {
 | 
					
						
							|  |  |  | 							mPasswordConfirm.setVisibility(View.VISIBLE);
 | 
					
						
							|  |  |  | 						} else {
 | 
					
						
							|  |  |  | 							mPasswordConfirm.setVisibility(View.GONE);
 | 
					
						
							|  |  |  | 						}
 | 
					
						
							|  |  |  | 						updateSaveButton();
 | 
					
						
							|  |  |  | 					}
 | 
					
						
							|  |  |  | 				});
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 22:47:07 +01: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 17:31:24 +02:00
										 |  |  | 	@Override
 | 
					
						
							|  |  |  | 	protected void onStart() {
 | 
					
						
							|  |  |  | 		super.onStart();
 | 
					
						
							|  |  |  | 		if (getIntent() != null) {
 | 
					
						
							| 
									
										
										
										
											2014-11-06 20:33:13 +01:00
										 |  |  |             try {
 | 
					
						
							|  |  |  |                 this.jidToEdit = Jid.fromString(getIntent().getStringExtra("jid"));
 | 
					
						
							| 
									
										
										
										
											2014-11-08 04:48:17 +01:00
										 |  |  |             } catch (final InvalidJidException | NullPointerException ignored) {
 | 
					
						
							|  |  |  |                 this.jidToEdit = null;
 | 
					
						
							| 
									
										
										
										
											2014-11-06 20:33:13 +01:00
										 |  |  |             }
 | 
					
						
							|  |  |  |             if (this.jidToEdit != null) {
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 				this.mRegisterNew.setVisibility(View.GONE);
 | 
					
						
							| 
									
										
										
										
											2014-11-04 17:38:41 +01:00
										 |  |  | 				getActionBar().setTitle(getString(R.string.account_details));
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 			} else {
 | 
					
						
							| 
									
										
										
										
											2014-11-04 17:38:41 +01:00
										 |  |  | 				this.mAvatar.setVisibility(View.GONE);
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 				getActionBar().setTitle(R.string.action_add_account);
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2014-08-23 21:31:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 	@Override
 | 
					
						
							|  |  |  | 	protected void onBackendConnected() {
 | 
					
						
							| 
									
										
										
										
											2014-11-06 20:33:13 +01:00
										 |  |  |         KnownHostsAdapter mKnownHostsAdapter = new KnownHostsAdapter(this,
 | 
					
						
							|  |  |  |                 android.R.layout.simple_list_item_1,
 | 
					
						
							|  |  |  |                 xmppConnectionService.getKnownHosts());
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 		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 21:31:27 +02:00
										 |  |  | 			this.mCancelButton.setTextColor(getSecondaryTextColor());
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2014-11-06 20:33:13 +01:00
										 |  |  | 		this.mAccountJid.setAdapter(mKnownHostsAdapter);
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 		updateSaveButton();
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	private void updateAccountInformation() {
 | 
					
						
							| 
									
										
										
										
											2014-11-09 16:57:22 +01:00
										 |  |  | 		this.mAccountJid.setText(this.mAccount.getJid().toBareJid().toString());
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 		this.mPassword.setText(this.mAccount.getPassword());
 | 
					
						
							| 
									
										
										
										
											2014-11-06 16:51:50 +01:00
										 |  |  | 		if (this.jidToEdit != null) {
 | 
					
						
							|  |  |  | 			this.mAvatar.setVisibility(View.VISIBLE);
 | 
					
						
							|  |  |  | 			this.mAvatar.setImageBitmap(avatarService().get(this.mAccount, getPixel(72)));
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02: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 21:31:27 +02:00
										 |  |  | 		if (this.mAccount.getStatus() == Account.STATUS_ONLINE
 | 
					
						
							|  |  |  | 				&& !this.mFetchingAvatar) {
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | 			this.mStats.setVisibility(View.VISIBLE);
 | 
					
						
							|  |  |  | 			this.mSessionEst.setText(UIHelper.readableTimeDifference(
 | 
					
						
							|  |  |  | 					getApplicationContext(), this.mAccount.getXmppConnection()
 | 
					
						
							|  |  |  | 							.getLastSessionEstablished()));
 | 
					
						
							| 
									
										
										
										
											2014-08-23 15:56:30 +02:00
										 |  |  | 			Features features = this.mAccount.getXmppConnection().getFeatures();
 | 
					
						
							|  |  |  | 			if (features.carbons()) {
 | 
					
						
							|  |  |  | 				this.mServerInfoCarbons.setText(R.string.server_info_available);
 | 
					
						
							|  |  |  | 			} else {
 | 
					
						
							| 
									
										
										
										
											2014-08-23 21:31:27 +02:00
										 |  |  | 				this.mServerInfoCarbons
 | 
					
						
							|  |  |  | 						.setText(R.string.server_info_unavailable);
 | 
					
						
							| 
									
										
										
										
											2014-08-23 15:56:30 +02: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 15:55:06 +02:00
										 |  |  | 			final String fingerprint = this.mAccount
 | 
					
						
							| 
									
										
										
										
											2014-09-06 18:21:31 +02:00
										 |  |  | 					.getOtrFingerprint(xmppConnectionService);
 | 
					
						
							| 
									
										
										
										
											2014-08-23 21:31:27 +02:00
										 |  |  | 			if (fingerprint != null) {
 | 
					
						
							| 
									
										
										
										
											2014-10-13 14:36:19 +02:00
										 |  |  | 				this.mOtrFingerprintBox.setVisibility(View.VISIBLE);
 | 
					
						
							| 
									
										
										
										
											2014-08-20 11:32:49 +02:00
										 |  |  | 				this.mOtrFingerprint.setText(fingerprint);
 | 
					
						
							| 
									
										
										
										
											2014-10-05 12:05:27 +02:00
										 |  |  | 				this.mOtrFingerprintToClipboardButton
 | 
					
						
							|  |  |  | 						.setVisibility(View.VISIBLE);
 | 
					
						
							| 
									
										
										
										
											2014-10-03 15:55:06 +02:00
										 |  |  | 				this.mOtrFingerprintToClipboardButton
 | 
					
						
							|  |  |  | 						.setOnClickListener(new View.OnClickListener() {
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							@Override
 | 
					
						
							|  |  |  | 							public void onClick(View v) {
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 22:47:07 +01:00
										 |  |  | 								if (copyTextToClipboard(fingerprint, R.string.otr_fingerprint)) {
 | 
					
						
							| 
									
										
										
										
											2014-10-03 15:55:06 +02:00
										 |  |  | 									Toast.makeText(
 | 
					
						
							|  |  |  | 											EditAccountActivity.this,
 | 
					
						
							|  |  |  | 											R.string.toast_message_otr_fingerprint,
 | 
					
						
							|  |  |  | 											Toast.LENGTH_SHORT).show();
 | 
					
						
							|  |  |  | 								}
 | 
					
						
							|  |  |  | 							}
 | 
					
						
							|  |  |  | 						});
 | 
					
						
							| 
									
										
										
										
											2014-08-20 11:32:49 +02:00
										 |  |  | 			} else {
 | 
					
						
							| 
									
										
										
										
											2014-10-13 14:36:19 +02:00
										 |  |  | 				this.mOtrFingerprintBox.setVisibility(View.GONE);
 | 
					
						
							| 
									
										
										
										
											2014-08-20 11:32:49 +02:00
										 |  |  | 			}
 | 
					
						
							| 
									
										
										
										
											2014-08-19 15:06:50 +02:00
										 |  |  | 		} else {
 | 
					
						
							|  |  |  | 			if (this.mAccount.errorStatus()) {
 | 
					
						
							|  |  |  | 				this.mAccountJid.setError(getString(this.mAccount
 | 
					
						
							|  |  |  | 						.getReadableStatusId()));
 | 
					
						
							|  |  |  | 				this.mAccountJid.requestFocus();
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 			this.mStats.setVisibility(View.GONE);
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2014-08-15 17:31:24 +02:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | }
 |