Files
FairEmail/app/src/main/java/eu/faircode/email/FragmentIdentity.java

830 lines
37 KiB
Java
Raw Normal View History

2018-08-02 13:33:06 +00:00
package eu.faircode.email;
/*
2018-08-14 05:53:24 +00:00
This file is part of FairEmail.
2018-08-02 13:33:06 +00:00
2018-08-14 05:53:24 +00:00
FairEmail is free software: you can redistribute it and/or modify
2018-08-02 13:33:06 +00:00
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
2018-10-29 10:46:49 +00:00
FairEmail is distributed in the hope that it will be useful,
2018-08-02 13:33:06 +00:00
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
2018-10-29 10:46:49 +00:00
along with FairEmail. If not, see <http://www.gnu.org/licenses/>.
2018-08-02 13:33:06 +00:00
Copyright 2018 by Marcel Bokhorst (M66B)
*/
import android.content.Context;
2018-08-07 19:35:21 +00:00
import android.content.DialogInterface;
2018-10-23 07:52:20 +00:00
import android.content.SharedPreferences;
2018-11-10 16:47:11 +00:00
import android.graphics.Color;
import android.graphics.drawable.GradientDrawable;
2018-08-02 13:33:06 +00:00
import android.os.Bundle;
2018-09-22 07:55:32 +00:00
import android.os.Handler;
2018-10-23 07:52:20 +00:00
import android.preference.PreferenceManager;
2018-11-14 14:51:50 +01:00
import android.text.Html;
2018-08-02 13:33:06 +00:00
import android.text.TextUtils;
2018-09-18 14:22:10 +00:00
import android.util.Log;
2018-08-02 13:33:06 +00:00
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.EditText;
2018-08-07 19:35:21 +00:00
import android.widget.ImageButton;
2018-11-10 16:47:11 +00:00
import android.widget.ImageView;
import android.widget.ProgressBar;
2018-09-22 07:55:32 +00:00
import android.widget.ScrollView;
2018-08-02 13:33:06 +00:00
import android.widget.Spinner;
2018-09-22 07:55:32 +00:00
import android.widget.TextView;
2018-08-02 13:33:06 +00:00
2018-11-10 16:47:11 +00:00
import com.android.colorpicker.ColorPickerDialog;
import com.android.colorpicker.ColorPickerSwatch;
2018-09-18 14:22:10 +00:00
import com.google.android.material.snackbar.Snackbar;
2018-08-08 06:55:47 +00:00
import com.google.android.material.textfield.TextInputLayout;
2018-09-18 14:22:10 +00:00
import org.xbill.DNS.Lookup;
import org.xbill.DNS.Record;
import org.xbill.DNS.SRVRecord;
import org.xbill.DNS.Type;
2018-11-13 19:32:50 +01:00
import java.text.Collator;
2018-08-13 18:31:42 +00:00
import java.util.ArrayList;
2018-11-13 19:32:50 +01:00
import java.util.Collections;
import java.util.Comparator;
2018-08-02 13:33:06 +00:00
import java.util.List;
2018-11-13 19:32:50 +01:00
import java.util.Locale;
2018-08-02 13:33:06 +00:00
import java.util.Properties;
2018-09-21 13:09:22 +00:00
import javax.mail.AuthenticationFailedException;
2018-08-02 13:33:06 +00:00
import javax.mail.Session;
import javax.mail.Transport;
2018-08-08 06:55:47 +00:00
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
2018-08-24 16:41:22 +00:00
import androidx.constraintlayout.widget.Group;
2018-11-10 16:47:11 +00:00
import androidx.fragment.app.FragmentTransaction;
2018-08-08 06:55:47 +00:00
public class FragmentIdentity extends FragmentEx {
private ViewGroup view;
2018-08-02 13:33:06 +00:00
private EditText etName;
2018-09-05 20:04:23 +00:00
private Spinner spAccount;
private Button btnAdvanced;
2018-09-22 07:55:32 +00:00
private TextView tvEmail;
2018-08-02 13:33:06 +00:00
private EditText etEmail;
private EditText etReplyTo;
2018-08-15 09:50:39 +00:00
private Spinner spProvider;
2018-09-18 14:22:10 +00:00
private EditText etDomain;
private Button btnAutoConfig;
2018-08-02 13:33:06 +00:00
private EditText etHost;
private CheckBox cbStartTls;
2018-10-23 07:52:20 +00:00
private CheckBox cbInsecure;
2018-08-02 13:33:06 +00:00
private EditText etPort;
private EditText etUser;
private TextInputLayout tilPassword;
2018-11-14 14:51:50 +01:00
2018-11-10 16:47:11 +00:00
private Button btnColor;
private View vwColor;
private ImageView ibColorDefault;
2018-11-14 14:51:50 +01:00
private EditText etSignature;
private ImageButton ibPro;
2018-08-02 13:33:06 +00:00
private CheckBox cbSynchronize;
2018-08-06 10:02:47 +00:00
private CheckBox cbPrimary;
2018-11-13 19:32:50 +01:00
private Spinner spSent;
2018-11-14 14:51:50 +01:00
2018-08-06 10:27:21 +00:00
private Button btnSave;
private ProgressBar pbSave;
2018-08-07 19:35:21 +00:00
private ImageButton ibDelete;
private ProgressBar pbWait;
2018-09-05 20:04:23 +00:00
private Group grpAdvanced;
2018-08-02 13:33:06 +00:00
2018-08-27 14:31:45 +00:00
private long id = -1;
2018-11-10 16:47:11 +00:00
private int color = Color.TRANSPARENT;
2018-11-13 19:32:50 +01:00
private ArrayAdapter<EntityFolder> adapter;
2018-08-27 14:31:45 +00:00
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Get arguments
Bundle args = getArguments();
id = (args == null ? -1 : args.getLong("id", -1));
}
2018-08-02 13:33:06 +00:00
@Override
@Nullable
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
setSubtitle(R.string.title_edit_identity);
2018-10-23 07:52:20 +00:00
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
final boolean insecure = prefs.getBoolean("insecure", false);
view = (ViewGroup) inflater.inflate(R.layout.fragment_identity, container, false);
2018-08-02 13:33:06 +00:00
// Get controls
etName = view.findViewById(R.id.etName);
2018-09-05 20:04:23 +00:00
spAccount = view.findViewById(R.id.spAccount);
2018-09-18 14:22:10 +00:00
2018-09-05 20:04:23 +00:00
btnAdvanced = view.findViewById(R.id.btnAdvanced);
2018-09-22 07:55:32 +00:00
tvEmail = view.findViewById(R.id.tvEmail);
2018-08-02 13:33:06 +00:00
etEmail = view.findViewById(R.id.etEmail);
etReplyTo = view.findViewById(R.id.etReplyTo);
2018-09-18 14:22:10 +00:00
2018-08-15 09:50:39 +00:00
spProvider = view.findViewById(R.id.spProvider);
2018-09-18 14:22:10 +00:00
etDomain = view.findViewById(R.id.etDomain);
btnAutoConfig = view.findViewById(R.id.btnAutoConfig);
2018-08-02 13:33:06 +00:00
etHost = view.findViewById(R.id.etHost);
cbStartTls = view.findViewById(R.id.cbStartTls);
2018-10-23 07:52:20 +00:00
cbInsecure = view.findViewById(R.id.cbInsecure);
2018-08-02 13:33:06 +00:00
etPort = view.findViewById(R.id.etPort);
etUser = view.findViewById(R.id.etUser);
tilPassword = view.findViewById(R.id.tilPassword);
2018-09-18 14:22:10 +00:00
2018-11-10 16:47:11 +00:00
btnColor = view.findViewById(R.id.btnColor);
vwColor = view.findViewById(R.id.vwColor);
ibColorDefault = view.findViewById(R.id.ibColorDefault);
2018-11-14 14:51:50 +01:00
etSignature = view.findViewById(R.id.etSignature);
ibPro = view.findViewById(R.id.ibPro);
2018-11-10 16:47:11 +00:00
2018-08-02 13:33:06 +00:00
cbSynchronize = view.findViewById(R.id.cbSynchronize);
2018-08-06 10:02:47 +00:00
cbPrimary = view.findViewById(R.id.cbPrimary);
2018-11-13 19:32:50 +01:00
spSent = view.findViewById(R.id.spSent);
2018-09-18 14:22:10 +00:00
2018-08-06 10:27:21 +00:00
btnSave = view.findViewById(R.id.btnSave);
pbSave = view.findViewById(R.id.pbSave);
2018-08-07 19:35:21 +00:00
ibDelete = view.findViewById(R.id.ibDelete);
pbWait = view.findViewById(R.id.pbWait);
2018-09-05 20:04:23 +00:00
grpAdvanced = view.findViewById(R.id.grpAdvanced);
2018-08-02 13:33:06 +00:00
// Wire controls
spAccount.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> adapterView, View view, int position, long id) {
2018-09-05 20:04:23 +00:00
btnAdvanced.setVisibility(position > 0 ? View.VISIBLE : View.GONE);
2018-09-06 07:29:30 +00:00
if (position == 0)
grpAdvanced.setVisibility(View.GONE);
2018-09-05 20:04:23 +00:00
tilPassword.setPasswordVisibilityToggleEnabled(position == 0);
btnSave.setVisibility(position > 0 ? View.VISIBLE : View.GONE);
2018-08-15 09:50:39 +00:00
Integer tag = (Integer) adapterView.getTag();
if (tag != null && tag.equals(position))
return;
adapterView.setTag(position);
EntityAccount account = (EntityAccount) adapterView.getAdapter().getItem(position);
2018-08-14 07:56:17 +00:00
// Select associated provider
2018-09-06 07:29:30 +00:00
if (position == 0)
spProvider.setSelection(0);
else {
boolean found = false;
for (int pos = 1; pos < spProvider.getAdapter().getCount(); pos++) {
Provider provider = (Provider) spProvider.getItemAtPosition(pos);
if (provider.imap_host.equals(account.host) &&
provider.imap_port == account.port) {
found = true;
spProvider.setSelection(pos);
// This is needed because the spinner might be invisible
etHost.setText(provider.smtp_host);
etPort.setText(Integer.toString(provider.smtp_port));
2018-11-09 14:48:21 +00:00
cbStartTls.setChecked(provider.smtp_starttls);
2018-09-06 07:29:30 +00:00
break;
}
2018-08-14 07:56:17 +00:00
}
2018-09-06 07:29:30 +00:00
if (!found)
grpAdvanced.setVisibility(View.VISIBLE);
2018-08-15 09:50:39 +00:00
}
2018-08-14 07:56:17 +00:00
// Copy account user name
2018-09-05 20:04:23 +00:00
etEmail.setText(account.user);
etUser.setText(account.user);
2018-08-14 07:56:17 +00:00
// Copy account password
tilPassword.getEditText().setText(account.password);
2018-11-13 19:32:50 +01:00
setFolders(account.id);
}
@Override
public void onNothingSelected(AdapterView<?> adapterView) {
2018-11-13 19:32:50 +01:00
adapter.clear();
}
});
2018-08-15 09:50:39 +00:00
spProvider.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
2018-08-02 13:33:06 +00:00
@Override
2018-08-15 09:50:39 +00:00
public void onItemSelected(AdapterView<?> adapterView, View view, int position, long id) {
Integer tag = (Integer) adapterView.getTag();
if (tag != null && tag.equals(position))
return;
adapterView.setTag(position);
Provider provider = (Provider) adapterView.getSelectedItem();
2018-08-24 16:41:22 +00:00
// Set associated host/port/starttls
etHost.setText(provider.smtp_host);
etPort.setText(position == 0 ? null : Integer.toString(provider.smtp_port));
2018-11-09 14:48:21 +00:00
cbStartTls.setChecked(provider.smtp_starttls);
2018-08-02 13:33:06 +00:00
}
@Override
public void onNothingSelected(AdapterView<?> adapterView) {
}
});
2018-09-18 14:22:10 +00:00
btnAutoConfig.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
2018-09-20 14:22:13 +00:00
etDomain.setEnabled(false);
2018-09-18 14:22:10 +00:00
btnAutoConfig.setEnabled(false);
Bundle args = new Bundle();
args.putString("domain", etDomain.getText().toString());
new SimpleTask<SRVRecord>() {
@Override
protected SRVRecord onLoad(Context context, Bundle args) throws Throwable {
String domain = args.getString("domain");
Record[] records = new Lookup("_submission._tcp." + domain, Type.SRV).run();
if (records != null)
for (int i = 0; i < records.length; i++) {
SRVRecord srv = (SRVRecord) records[i];
Log.i(Helper.TAG, "SRV=" + srv);
return srv;
}
throw new IllegalArgumentException(getString(R.string.title_no_settings));
}
@Override
protected void onLoaded(Bundle args, SRVRecord srv) {
2018-09-20 14:22:13 +00:00
etDomain.setEnabled(true);
2018-09-18 14:22:10 +00:00
btnAutoConfig.setEnabled(true);
if (srv != null) {
etHost.setText(srv.getTarget().toString(true));
etPort.setText(Integer.toString(srv.getPort()));
cbStartTls.setChecked(srv.getPort() == 587);
}
}
@Override
protected void onException(Bundle args, Throwable ex) {
2018-09-20 14:22:13 +00:00
etDomain.setEnabled(true);
2018-09-18 14:22:10 +00:00
btnAutoConfig.setEnabled(true);
if (ex instanceof IllegalArgumentException)
Snackbar.make(view, ex.getMessage(), Snackbar.LENGTH_LONG).show();
else
Helper.unexpectedError(getContext(), ex);
}
}.load(FragmentIdentity.this, args);
}
});
2018-10-23 07:52:20 +00:00
btnAdvanced.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
int visibility = (grpAdvanced.getVisibility() == View.VISIBLE ? View.GONE : View.VISIBLE);
grpAdvanced.setVisibility(visibility);
cbInsecure.setVisibility(insecure ? visibility : View.GONE);
if (visibility == View.VISIBLE)
new Handler().post(new Runnable() {
@Override
public void run() {
((ScrollView) view).smoothScrollTo(0, tvEmail.getTop());
}
});
}
});
2018-08-08 10:22:12 +00:00
cbStartTls.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
etPort.setHint(checked ? "587" : "465");
}
});
2018-08-02 13:33:06 +00:00
2018-11-10 16:47:11 +00:00
vwColor.setBackgroundColor(color);
btnColor.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (Helper.isPro(getContext())) {
int[] colors = getContext().getResources().getIntArray(R.array.colorPicker);
ColorPickerDialog colorPickerDialog = new ColorPickerDialog();
colorPickerDialog.initialize(R.string.title_account_color, colors, color, 4, colors.length);
colorPickerDialog.setOnColorSelectedListener(new ColorPickerSwatch.OnColorSelectedListener() {
@Override
public void onColorSelected(int color) {
setColor(color);
}
});
colorPickerDialog.show(getFragmentManager(), "colorpicker");
} else {
FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
fragmentTransaction.hide(FragmentIdentity.this);
fragmentTransaction.add(R.id.content_frame, new FragmentPro()).addToBackStack("pro");
fragmentTransaction.commit();
}
}
});
ibColorDefault.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
setColor(Color.TRANSPARENT);
}
});
2018-11-14 14:51:50 +01:00
ibPro.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
fragmentTransaction.hide(FragmentIdentity.this);
fragmentTransaction.add(R.id.content_frame, new FragmentPro()).addToBackStack("pro");
fragmentTransaction.commit();
}
});
2018-08-06 10:02:47 +00:00
cbSynchronize.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
cbPrimary.setEnabled(checked);
}
});
2018-08-06 10:27:21 +00:00
btnSave.setOnClickListener(new View.OnClickListener() {
2018-08-02 13:33:06 +00:00
@Override
public void onClick(View v) {
Helper.setViewsEnabled(view, false);
2018-08-06 10:27:21 +00:00
btnSave.setEnabled(false);
pbSave.setVisibility(View.VISIBLE);
2018-08-02 13:33:06 +00:00
2018-08-08 10:22:12 +00:00
EntityAccount account = (EntityAccount) spAccount.getSelectedItem();
2018-08-02 13:33:06 +00:00
Bundle args = new Bundle();
args.putLong("id", id);
args.putString("name", etName.getText().toString());
args.putString("email", etEmail.getText().toString());
args.putString("replyto", etReplyTo.getText().toString());
2018-08-08 10:22:12 +00:00
args.putLong("account", account == null ? -1 : account.id);
2018-08-28 19:37:44 +00:00
args.putInt("auth_type", account == null || account.auth_type == null ? Helper.AUTH_TYPE_PASSWORD : account.auth_type);
args.putString("host", etHost.getText().toString());
args.putBoolean("starttls", cbStartTls.isChecked());
2018-10-23 07:52:20 +00:00
args.putBoolean("insecure", cbInsecure.isChecked());
args.putString("port", etPort.getText().toString());
args.putString("user", etUser.getText().toString());
args.putString("password", tilPassword.getEditText().getText().toString());
2018-11-10 16:47:11 +00:00
args.putInt("color", color);
2018-11-14 14:51:50 +01:00
args.putString("signature", Html.toHtml(etSignature.getText()));
args.putBoolean("synchronize", cbSynchronize.isChecked());
args.putBoolean("primary", cbPrimary.isChecked());
2018-11-13 19:32:50 +01:00
args.putSerializable("sent", (EntityFolder) spSent.getSelectedItem());
2018-08-02 13:33:06 +00:00
new SimpleTask<Void>() {
@Override
protected Void onLoad(Context context, Bundle args) throws Throwable {
2018-08-12 15:31:43 +00:00
long id = args.getLong("id");
String name = args.getString("name");
2018-09-05 20:04:23 +00:00
long account = args.getLong("account");
2018-08-12 15:31:43 +00:00
String email = args.getString("email");
String replyto = args.getString("replyto");
String host = args.getString("host");
boolean starttls = args.getBoolean("starttls");
2018-10-23 07:52:20 +00:00
boolean insecure = args.getBoolean("insecure");
2018-08-12 15:31:43 +00:00
String port = args.getString("port");
String user = args.getString("user");
String password = args.getString("password");
2018-11-10 16:47:11 +00:00
Integer color = args.getInt("color");
2018-11-14 14:51:50 +01:00
String signature = args.getString("signature");
2018-08-27 14:31:45 +00:00
int auth_type = args.getInt("auth_type");
2018-08-12 15:31:43 +00:00
boolean synchronize = args.getBoolean("synchronize");
2018-08-25 14:24:26 +00:00
boolean primary = args.getBoolean("primary");
2018-11-13 19:32:50 +01:00
EntityFolder sent = (EntityFolder) args.getSerializable("sent");
2018-08-12 15:31:43 +00:00
if (TextUtils.isEmpty(name))
throw new IllegalArgumentException(getContext().getString(R.string.title_no_name));
if (TextUtils.isEmpty(email))
throw new IllegalArgumentException(getContext().getString(R.string.title_no_email));
if (TextUtils.isEmpty(host))
throw new IllegalArgumentException(getContext().getString(R.string.title_no_host));
if (TextUtils.isEmpty(port))
2018-10-23 07:52:20 +00:00
port = (starttls ? "587" : "465");
2018-08-12 15:31:43 +00:00
if (TextUtils.isEmpty(user))
throw new IllegalArgumentException(getContext().getString(R.string.title_no_user));
2018-10-23 07:52:20 +00:00
if (TextUtils.isEmpty(password) && !insecure)
2018-08-12 15:31:43 +00:00
throw new IllegalArgumentException(getContext().getString(R.string.title_no_password));
email = email.toLowerCase();
2018-08-12 15:31:43 +00:00
if (TextUtils.isEmpty(replyto))
replyto = null;
else
replyto = replyto.toLowerCase();
2018-11-10 16:47:11 +00:00
if (Color.TRANSPARENT == color)
color = null;
2018-08-12 15:31:43 +00:00
2018-11-10 17:58:09 +00:00
DB db = DB.getInstance(context);
EntityIdentity identity = db.identity().getIdentity(id);
2018-11-11 07:20:32 +00:00
boolean check = (synchronize && (identity == null ||
!host.equals(identity.host) || Integer.parseInt(port) != identity.port ||
2018-11-10 17:58:09 +00:00
!user.equals(identity.user) || !password.equals(identity.password)));
2018-08-12 15:31:43 +00:00
// Check SMTP server
2018-11-10 17:58:09 +00:00
if (check) {
2018-10-23 07:52:20 +00:00
Properties props = MessageHelper.getSessionProperties(auth_type, insecure);
2018-08-12 15:31:43 +00:00
Session isession = Session.getInstance(props, null);
2018-08-27 15:08:23 +00:00
isession.setDebug(true);
2018-08-12 15:31:43 +00:00
Transport itransport = isession.getTransport(starttls ? "smtp" : "smtps");
try {
2018-09-21 13:09:22 +00:00
try {
itransport.connect(host, Integer.parseInt(port), user, password);
} catch (AuthenticationFailedException ex) {
if (auth_type == Helper.AUTH_TYPE_GMAIL) {
password = Helper.refreshToken(context, "com.google", user, password);
itransport.connect(host, Integer.parseInt(port), user, password);
} else
throw ex;
}
2018-08-12 15:31:43 +00:00
} finally {
itransport.close();
}
2018-08-12 15:31:43 +00:00
}
try {
2018-08-22 12:30:27 +00:00
db.beginTransaction();
boolean update = (identity != null);
if (identity == null)
identity = new EntityIdentity();
identity.name = name;
2018-09-05 20:04:23 +00:00
identity.account = account;
2018-08-22 12:30:27 +00:00
identity.email = email;
identity.replyto = replyto;
identity.host = host;
identity.starttls = starttls;
2018-10-23 07:52:20 +00:00
identity.insecure = insecure;
identity.port = Integer.parseInt(port);
2018-08-22 12:30:27 +00:00
identity.user = user;
identity.password = password;
2018-11-10 16:47:11 +00:00
identity.color = color;
2018-11-14 14:51:50 +01:00
identity.signature = signature;
2018-08-27 14:31:45 +00:00
identity.auth_type = auth_type;
2018-08-22 12:30:27 +00:00
identity.synchronize = synchronize;
2018-08-25 14:24:26 +00:00
identity.primary = (identity.synchronize && primary);
2018-11-13 19:32:50 +01:00
identity.store_sent = false;
identity.sent_folder = (sent == null ? null : sent.id);
2018-08-22 12:30:27 +00:00
if (!identity.synchronize)
identity.error = null;
if (identity.primary)
db.identity().resetPrimary();
if (update)
db.identity().updateIdentity(identity);
else
identity.id = db.identity().insertIdentity(identity);
db.setTransactionSuccessful();
} finally {
2018-08-22 12:30:27 +00:00
db.endTransaction();
}
2018-08-22 12:30:27 +00:00
2018-11-10 17:58:09 +00:00
if (check)
ServiceSynchronize.reload(getContext(), "save identity");
2018-08-22 12:30:27 +00:00
return null;
}
@Override
protected void onLoaded(Bundle args, Void data) {
getFragmentManager().popBackStack();
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.setViewsEnabled(view, true);
btnSave.setEnabled(true);
pbSave.setVisibility(View.GONE);
2018-09-20 16:47:28 +00:00
new DialogBuilderLifecycle(getContext(), getViewLifecycleOwner())
.setMessage(Helper.formatThrowable(ex))
2018-09-15 05:49:54 +00:00
.setPositiveButton(android.R.string.cancel, null)
.create()
.show();
}
}.load(FragmentIdentity.this, args);
2018-08-02 13:33:06 +00:00
}
});
2018-08-07 19:35:21 +00:00
ibDelete.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
2018-09-20 16:47:28 +00:00
new DialogBuilderLifecycle(getContext(), getViewLifecycleOwner())
2018-08-07 19:35:21 +00:00
.setMessage(R.string.title_identity_delete)
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
Helper.setViewsEnabled(view, false);
btnSave.setEnabled(false);
pbWait.setVisibility(View.VISIBLE);
Bundle args = new Bundle();
args.putLong("id", id);
new SimpleTask<Void>() {
2018-08-11 18:16:35 +00:00
@Override
protected Void onLoad(Context context, Bundle args) {
2018-08-22 12:30:27 +00:00
long id = args.getLong("id");
2018-11-13 10:27:25 +01:00
DB db = DB.getInstance(context);
EntityIdentity identity = db.identity().getIdentity(id);
db.identity().deleteIdentity(id);
if (identity.synchronize)
ServiceSynchronize.reload(getContext(), "delete identity");
2018-08-22 12:30:27 +00:00
return null;
2018-08-11 18:16:35 +00:00
}
@Override
protected void onLoaded(Bundle args, Void data) {
getFragmentManager().popBackStack();
}
2018-08-07 19:35:21 +00:00
@Override
protected void onException(Bundle args, Throwable ex) {
2018-09-15 05:49:54 +00:00
Helper.unexpectedError(getContext(), ex);
2018-08-07 19:35:21 +00:00
}
}.load(FragmentIdentity.this, args);
2018-08-07 19:35:21 +00:00
}
})
.setNegativeButton(android.R.string.cancel, null)
.show();
2018-08-07 19:35:21 +00:00
}
});
2018-11-13 19:32:50 +01:00
adapter = new ArrayAdapter<>(getContext(), R.layout.spinner_item1, android.R.id.text1, new ArrayList<EntityFolder>());
adapter.setDropDownViewResource(R.layout.spinner_item1_dropdown);
spSent.setAdapter(adapter);
// Initialize
Helper.setViewsEnabled(view, false);
2018-10-23 07:52:20 +00:00
cbInsecure.setVisibility(View.GONE);
tilPassword.setPasswordVisibilityToggleEnabled(id < 0);
2018-09-05 20:04:23 +00:00
btnSave.setVisibility(View.GONE);
btnAdvanced.setVisibility(View.GONE);
grpAdvanced.setVisibility(View.GONE);
pbSave.setVisibility(View.GONE);
ibDelete.setVisibility(View.GONE);
return view;
}
@Override
2018-08-15 09:50:39 +00:00
public void onSaveInstanceState(Bundle outState) {
2018-08-21 18:00:06 +00:00
super.onSaveInstanceState(outState);
2018-08-15 09:50:39 +00:00
outState.putInt("account", spAccount.getSelectedItemPosition());
outState.putInt("provider", spProvider.getSelectedItemPosition());
outState.putString("password", tilPassword.getEditText().getText().toString());
2018-09-05 20:04:23 +00:00
outState.putInt("advanced", grpAdvanced.getVisibility());
2018-11-10 16:47:11 +00:00
outState.putInt("color", color);
2018-08-15 09:50:39 +00:00
}
@Override
public void onActivityCreated(@Nullable final Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
2018-08-08 10:22:12 +00:00
final DB db = DB.getInstance(getContext());
2018-11-14 17:21:53 +01:00
Bundle args = new Bundle();
args.putLong("id", id);
2018-11-14 17:21:53 +01:00
new SimpleTask<EntityIdentity>() {
2018-08-02 13:33:06 +00:00
@Override
2018-11-14 17:21:53 +01:00
protected EntityIdentity onLoad(Context context, Bundle args) throws Throwable {
long id = args.getLong("id");
return DB.getInstance(context).identity().getIdentity(id);
}
2018-08-16 11:26:53 +00:00
2018-11-14 17:21:53 +01:00
@Override
protected void onLoaded(Bundle args, final EntityIdentity identity) {
2018-09-05 20:39:47 +00:00
if (savedInstanceState == null) {
2018-08-16 11:26:53 +00:00
etName.setText(identity == null ? null : identity.name);
etEmail.setText(identity == null ? null : identity.email);
etReplyTo.setText(identity == null ? null : identity.replyto);
etHost.setText(identity == null ? null : identity.host);
cbStartTls.setChecked(identity == null ? false : identity.starttls);
etPort.setText(identity == null ? null : Long.toString(identity.port));
etUser.setText(identity == null ? null : identity.user);
tilPassword.getEditText().setText(identity == null ? null : identity.password);
2018-11-14 14:51:50 +01:00
etSignature.setText(identity == null || identity.signature == null ? null : Html.fromHtml(identity.signature));
2018-08-16 11:26:53 +00:00
cbSynchronize.setChecked(identity == null ? true : identity.synchronize);
cbPrimary.setChecked(identity == null ? true : identity.primary);
2018-11-10 16:47:11 +00:00
color = (identity == null || identity.color == null ? Color.TRANSPARENT : identity.color);
2018-08-16 11:26:53 +00:00
etName.requestFocus();
if (identity == null)
new SimpleTask<Integer>() {
@Override
protected Integer onLoad(Context context, Bundle args) {
return DB.getInstance(context).identity().getSynchronizingIdentityCount();
}
@Override
protected void onLoaded(Bundle args, Integer count) {
cbPrimary.setChecked(count == 0);
}
}.load(FragmentIdentity.this, new Bundle());
2018-09-05 20:04:23 +00:00
} else {
2018-08-15 09:50:39 +00:00
tilPassword.getEditText().setText(savedInstanceState.getString("password"));
2018-09-05 20:04:23 +00:00
grpAdvanced.setVisibility(savedInstanceState.getInt("advanced"));
2018-11-10 16:47:11 +00:00
color = savedInstanceState.getInt("color");
2018-09-05 20:04:23 +00:00
}
2018-08-15 09:50:39 +00:00
Helper.setViewsEnabled(view, true);
2018-11-10 16:47:11 +00:00
setColor(color);
2018-11-14 14:51:50 +01:00
boolean pro = Helper.isPro(getContext());
etSignature.setHint(pro ? R.string.title_optional : R.string.title_pro_feature);
etSignature.setEnabled(pro);
if (pro) {
ViewGroup.LayoutParams lp = ibPro.getLayoutParams();
lp.height = 0;
lp.width = 0;
ibPro.setLayoutParams(lp);
}
2018-08-15 09:50:39 +00:00
cbPrimary.setEnabled(cbSynchronize.isChecked());
2018-08-16 11:26:53 +00:00
// Consider previous save/delete as cancelled
ibDelete.setVisibility(identity == null ? View.GONE : View.VISIBLE);
pbWait.setVisibility(View.GONE);
2018-08-08 10:22:12 +00:00
2018-11-14 17:21:53 +01:00
new SimpleTask<List<EntityAccount>>() {
2018-08-08 10:22:12 +00:00
@Override
2018-11-14 17:21:53 +01:00
protected List<EntityAccount> onLoad(Context context, Bundle args) throws Throwable {
return DB.getInstance(context).account().getAccounts();
}
2018-09-05 20:39:47 +00:00
2018-11-14 17:21:53 +01:00
@Override
protected void onLoaded(Bundle args, List<EntityAccount> accounts) {
2018-08-12 15:31:43 +00:00
if (accounts == null)
2018-08-13 18:31:42 +00:00
accounts = new ArrayList<>();
2018-08-12 15:31:43 +00:00
2018-08-08 10:22:12 +00:00
EntityAccount unselected = new EntityAccount();
unselected.id = -1L;
2018-08-27 14:31:45 +00:00
unselected.name = getString(R.string.title_select);
2018-08-08 10:22:12 +00:00
unselected.primary = false;
accounts.add(0, unselected);
2018-11-11 14:09:46 +00:00
ArrayAdapter<EntityAccount> aaAccount =
new ArrayAdapter<>(getContext(), R.layout.spinner_item1, android.R.id.text1, accounts);
aaAccount.setDropDownViewResource(R.layout.spinner_item1_dropdown);
spAccount.setAdapter(aaAccount);
2018-08-15 09:50:39 +00:00
// Get providers
List<Provider> providers = Provider.loadProfiles(getContext());
providers.add(0, new Provider(getString(R.string.title_custom)));
2018-11-11 14:09:46 +00:00
ArrayAdapter<Provider> aaProfile =
new ArrayAdapter<>(getContext(), R.layout.spinner_item1, android.R.id.text1, providers);
aaProfile.setDropDownViewResource(R.layout.spinner_item1_dropdown);
spProvider.setAdapter(aaProfile);
2018-08-15 09:50:39 +00:00
if (savedInstanceState == null) {
2018-08-27 15:08:23 +00:00
spProvider.setTag(0);
spProvider.setSelection(0);
if (identity != null)
for (int pos = 1; pos < providers.size(); pos++)
if (providers.get(pos).smtp_host.equals(identity.host)) {
spProvider.setTag(pos);
spProvider.setSelection(pos);
break;
}
spAccount.setTag(0);
spAccount.setSelection(0);
2018-11-13 19:32:50 +01:00
for (int pos = 0; pos < accounts.size(); pos++) {
EntityAccount account = accounts.get(pos);
if (account.id.equals((identity == null ? -1 : identity.account))) {
2018-08-27 15:08:23 +00:00
spAccount.setTag(pos);
2018-08-15 09:50:39 +00:00
spAccount.setSelection(pos);
2018-08-27 15:08:23 +00:00
// OAuth token could be updated
if (pos > 0 && accounts.get(pos).auth_type != Helper.AUTH_TYPE_PASSWORD)
2018-08-27 15:08:23 +00:00
tilPassword.getEditText().setText(accounts.get(pos).password);
2018-11-13 19:32:50 +01:00
setFolders(account.id);
2018-08-15 09:50:39 +00:00
break;
}
2018-11-13 19:32:50 +01:00
}
2018-08-15 09:50:39 +00:00
} else {
int provider = savedInstanceState.getInt("provider");
spProvider.setTag(provider);
spProvider.setSelection(provider);
int account = savedInstanceState.getInt("account");
spAccount.setTag(account);
spAccount.setSelection(account);
}
2018-08-08 10:22:12 +00:00
}
2018-11-14 17:21:53 +01:00
}.load(FragmentIdentity.this, args);
2018-08-02 13:33:06 +00:00
}
2018-11-14 17:21:53 +01:00
}.load(this, args);
2018-08-02 13:33:06 +00:00
}
2018-11-10 16:47:11 +00:00
private void setColor(int color) {
FragmentIdentity.this.color = color;
GradientDrawable border = new GradientDrawable();
border.setColor(color);
border.setStroke(1, Helper.resolveColor(getContext(), R.attr.colorSeparator));
vwColor.setBackground(border);
}
2018-11-13 19:32:50 +01:00
private void setFolders(long account) {
Bundle args = new Bundle();
args.putLong("account", account);
args.putLong("identity", id);
new SimpleTask<IdentityFolders>() {
@Override
protected IdentityFolders onLoad(Context context, Bundle args) {
long aid = args.getLong("account");
long iid = args.getLong("identity");
DB db = DB.getInstance(context);
IdentityFolders result = new IdentityFolders();
result.identity = db.identity().getIdentity(iid);
result.folders = db.folder().getFolders(aid);
final Collator collator = Collator.getInstance(Locale.getDefault());
collator.setStrength(Collator.SECONDARY); // Case insensitive, process accents etc
Collections.sort(result.folders, new Comparator<EntityFolder>() {
@Override
public int compare(EntityFolder f1, EntityFolder f2) {
int s = Integer.compare(
EntityFolder.FOLDER_SORT_ORDER.indexOf(f1.type),
EntityFolder.FOLDER_SORT_ORDER.indexOf(f2.type));
if (s != 0)
return s;
int c = -f1.synchronize.compareTo(f2.synchronize);
if (c != 0)
return c;
return collator.compare(
f1.name == null ? "" : f1.name,
f2.name == null ? "" : f2.name);
}
});
return result;
}
@Override
protected void onLoaded(Bundle args, IdentityFolders result) {
EntityFolder none = new EntityFolder();
none.name = "";
result.folders.add(0, none);
adapter.clear();
adapter.addAll(result.folders);
if (result.identity != null)
for (int pos = 0; pos < result.folders.size(); pos++) {
EntityFolder folder = result.folders.get(pos);
if (result.identity.store_sent) {
if (EntityFolder.SENT.equals(folder.type)) {
spSent.setSelection(pos);
break;
}
} else if (result.identity.sent_folder != null) {
if (result.identity.sent_folder.equals(folder.id)) {
spSent.setSelection(pos);
break;
}
}
}
}
}.load(this, args);
}
class IdentityFolders {
EntityIdentity identity;
List<EntityFolder> folders;
}
2018-08-02 13:33:06 +00:00
}