2014-01-28 18:21:54 +00:00
|
|
|
package de.gultsch.chat.ui;
|
|
|
|
|
|
|
|
import de.gultsch.chat.R;
|
|
|
|
import de.gultsch.chat.entities.Account;
|
|
|
|
import de.gultsch.chat.utils.Validator;
|
|
|
|
import android.app.AlertDialog;
|
|
|
|
import android.app.Dialog;
|
|
|
|
import android.app.DialogFragment;
|
|
|
|
import android.content.DialogInterface;
|
|
|
|
import android.content.DialogInterface.OnClickListener;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.widget.Button;
|
|
|
|
import android.widget.CheckBox;
|
|
|
|
import android.widget.CompoundButton;
|
|
|
|
import android.widget.CompoundButton.OnCheckedChangeListener;
|
|
|
|
import android.widget.EditText;
|
|
|
|
import android.widget.RelativeLayout;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
|
|
public class EditAccount extends DialogFragment {
|
|
|
|
|
|
|
|
protected Account account;
|
|
|
|
|
|
|
|
public void setAccount(Account account) {
|
|
|
|
this.account = account;
|
|
|
|
}
|
|
|
|
|
|
|
|
public interface EditAccountListener {
|
|
|
|
public void onAccountEdited(Account account);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected EditAccountListener listener = null;
|
|
|
|
|
|
|
|
public void setEditAccountListener(EditAccountListener listener) {
|
|
|
|
this.listener = listener;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Dialog onCreateDialog(Bundle savedInstanceState) {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
|
|
|
|
LayoutInflater inflater = getActivity().getLayoutInflater();
|
|
|
|
View view = inflater.inflate(R.layout.edit_account_dialog, null);
|
|
|
|
final EditText jidText = (EditText) view.findViewById(R.id.account_jid);
|
2014-02-04 21:58:29 +00:00
|
|
|
final TextView confirmPwDesc = (TextView) view
|
|
|
|
.findViewById(R.id.account_confirm_password_desc);
|
|
|
|
CheckBox useTLS = (CheckBox) view.findViewById(R.id.account_usetls);
|
2014-01-28 18:21:54 +00:00
|
|
|
|
|
|
|
final EditText password = (EditText) view
|
|
|
|
.findViewById(R.id.account_password);
|
|
|
|
final EditText passwordConfirm = (EditText) view
|
|
|
|
.findViewById(R.id.account_password_confirm2);
|
|
|
|
final CheckBox registerAccount = (CheckBox) view
|
|
|
|
.findViewById(R.id.edit_account_register_new);
|
|
|
|
|
|
|
|
final String okButtonDesc;
|
|
|
|
|
|
|
|
if (account != null) {
|
|
|
|
builder.setTitle("Edit account");
|
|
|
|
registerAccount.setVisibility(View.GONE);
|
|
|
|
jidText.setText(account.getJid());
|
|
|
|
password.setText(account.getPassword());
|
|
|
|
okButtonDesc = "Edit";
|
2014-02-04 21:58:29 +00:00
|
|
|
if (account.isOptionSet(Account.OPTION_USETLS)) {
|
|
|
|
useTLS.setChecked(true);
|
|
|
|
} else {
|
|
|
|
useTLS.setChecked(false);
|
|
|
|
}
|
2014-01-28 18:21:54 +00:00
|
|
|
} else {
|
|
|
|
builder.setTitle("Add account");
|
|
|
|
okButtonDesc = "Add";
|
|
|
|
}
|
|
|
|
|
|
|
|
registerAccount
|
|
|
|
.setOnCheckedChangeListener(new OnCheckedChangeListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCheckedChanged(CompoundButton buttonView,
|
|
|
|
boolean isChecked) {
|
|
|
|
AlertDialog d = (AlertDialog) getDialog();
|
2014-02-04 21:58:29 +00:00
|
|
|
Button positiveButton = (Button) d
|
|
|
|
.getButton(Dialog.BUTTON_POSITIVE);
|
2014-01-28 18:21:54 +00:00
|
|
|
if (isChecked) {
|
|
|
|
positiveButton.setText("Register");
|
|
|
|
passwordConfirm.setVisibility(View.VISIBLE);
|
|
|
|
confirmPwDesc.setVisibility(View.VISIBLE);
|
|
|
|
} else {
|
|
|
|
passwordConfirm.setVisibility(View.GONE);
|
|
|
|
positiveButton.setText("Add");
|
|
|
|
confirmPwDesc.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
builder.setView(view);
|
|
|
|
builder.setNeutralButton("Cancel", null);
|
|
|
|
builder.setPositiveButton(okButtonDesc, null);
|
|
|
|
return builder.create();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onStart() {
|
|
|
|
super.onStart();
|
|
|
|
final AlertDialog d = (AlertDialog) getDialog();
|
|
|
|
Button positiveButton = (Button) d.getButton(Dialog.BUTTON_POSITIVE);
|
|
|
|
positiveButton.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
EditText jidEdit = (EditText) d.findViewById(R.id.account_jid);
|
|
|
|
String jid = jidEdit.getText().toString();
|
2014-02-04 21:58:29 +00:00
|
|
|
EditText passwordEdit = (EditText) d
|
|
|
|
.findViewById(R.id.account_password);
|
2014-01-28 18:21:54 +00:00
|
|
|
String password = passwordEdit.getText().toString();
|
2014-02-04 21:58:29 +00:00
|
|
|
CheckBox useTLS = (CheckBox) d.findViewById(R.id.account_usetls);
|
|
|
|
String username;
|
|
|
|
String server;
|
|
|
|
if (Validator.isValidJid(jid)) {
|
|
|
|
String[] parts = jid.split("@");
|
|
|
|
username = parts[0];
|
|
|
|
server = parts[1];
|
2014-01-28 18:21:54 +00:00
|
|
|
} else {
|
2014-02-04 21:58:29 +00:00
|
|
|
jidEdit.setError("Invalid Jabber ID");
|
|
|
|
return;
|
2014-01-28 18:21:54 +00:00
|
|
|
}
|
2014-02-04 21:58:29 +00:00
|
|
|
if (account != null) {
|
2014-01-28 18:21:54 +00:00
|
|
|
account.setPassword(password);
|
|
|
|
account.setUsername(username);
|
|
|
|
account.setServer(server);
|
|
|
|
} else {
|
|
|
|
account = new Account(username, server, password);
|
|
|
|
}
|
2014-02-04 21:58:29 +00:00
|
|
|
account.setOption(Account.OPTION_USETLS, useTLS.isChecked());
|
|
|
|
if (listener != null) {
|
2014-01-28 18:21:54 +00:00
|
|
|
listener.onAccountEdited(account);
|
|
|
|
d.dismiss();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|