FairEmail/app/src/main/java/eu/faircode/email/FragmentQuickSetup.java

467 lines
18 KiB
Java
Raw Normal View History

2019-01-14 11:11:03 +00:00
package eu.faircode.email;
/*
This file is part of FairEmail.
FairEmail is free software: you can redistribute it and/or modify
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.
FairEmail is distributed in the hope that it will be useful,
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
along with FairEmail. If not, see <http://www.gnu.org/licenses/>.
Copyright 2018-2019 by Marcel Bokhorst (M66B)
*/
import android.app.Dialog;
2019-01-14 11:11:03 +00:00
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
2019-01-14 11:11:03 +00:00
import android.content.pm.PackageManager;
2019-07-06 14:24:03 +00:00
import android.net.Uri;
2019-01-14 11:11:03 +00:00
import android.os.Bundle;
2019-07-06 14:24:03 +00:00
import android.os.Handler;
2019-07-12 19:20:06 +00:00
import android.text.Spanned;
2019-01-14 11:11:03 +00:00
import android.text.TextUtils;
import android.text.method.LinkMovementMethod;
import android.util.Patterns;
2019-03-03 11:16:00 +00:00
import android.view.KeyEvent;
2019-01-14 11:11:03 +00:00
import android.view.LayoutInflater;
2019-02-18 17:00:58 +00:00
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
2019-01-14 11:11:03 +00:00
import android.view.View;
import android.view.ViewGroup;
2019-03-03 11:16:00 +00:00
import android.view.inputmethod.EditorInfo;
2019-01-14 11:11:03 +00:00
import android.widget.Button;
import android.widget.EditText;
2019-07-06 14:24:03 +00:00
import android.widget.ScrollView;
2019-01-14 11:11:03 +00:00
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AlertDialog;
import androidx.constraintlayout.widget.Group;
2019-01-14 11:11:03 +00:00
import com.google.android.material.snackbar.Snackbar;
import com.google.android.material.textfield.TextInputLayout;
import com.sun.mail.imap.IMAPFolder;
import com.sun.mail.imap.IMAPStore;
import java.net.UnknownHostException;
2019-01-14 11:11:03 +00:00
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Properties;
import javax.mail.Folder;
import javax.mail.Session;
import javax.mail.Transport;
import static android.app.Activity.RESULT_OK;
2019-01-15 17:41:55 +00:00
public class FragmentQuickSetup extends FragmentBase {
2019-01-14 11:11:03 +00:00
private ViewGroup view;
2019-07-06 14:24:03 +00:00
private ScrollView scroll;
2019-01-14 11:11:03 +00:00
private EditText etName;
private EditText etEmail;
private TextInputLayout tilPassword;
private Button btnCheck;
2019-02-18 11:39:43 +00:00
2019-01-14 11:11:03 +00:00
private TextView tvError;
2019-07-06 14:24:03 +00:00
private Button btnHelp;
2019-01-14 11:11:03 +00:00
private TextView tvInstructions;
2019-02-18 11:39:43 +00:00
private TextView tvImap;
private TextView tvSmtp;
private Button btnSave;
private Group grpSetup;
private static final int REQUEST_DONE = 1;
2019-01-14 11:11:03 +00:00
@Override
@Nullable
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
2019-05-21 12:15:43 +00:00
setSubtitle(R.string.title_setup_quick);
2019-02-18 17:00:58 +00:00
setHasOptionsMenu(true);
2019-01-14 11:11:03 +00:00
view = (ViewGroup) inflater.inflate(R.layout.fragment_quick_setup, container, false);
2019-07-06 14:24:03 +00:00
scroll = view.findViewById(R.id.scroll);
2019-01-14 11:11:03 +00:00
// Get controls
etName = view.findViewById(R.id.etName);
etEmail = view.findViewById(R.id.etEmail);
tilPassword = view.findViewById(R.id.tilPassword);
btnCheck = view.findViewById(R.id.btnCheck);
2019-02-18 11:39:43 +00:00
2019-01-14 11:11:03 +00:00
tvError = view.findViewById(R.id.tvError);
2019-07-06 14:24:03 +00:00
btnHelp = view.findViewById(R.id.btnHelp);
2019-01-14 11:11:03 +00:00
tvInstructions = view.findViewById(R.id.tvInstructions);
2019-02-18 11:39:43 +00:00
tvImap = view.findViewById(R.id.tvImap);
tvSmtp = view.findViewById(R.id.tvSmtp);
btnSave = view.findViewById(R.id.btnSave);
grpSetup = view.findViewById(R.id.grpSetup);
2019-01-14 11:11:03 +00:00
// Wire controls
tilPassword.setHintEnabled(false);
2019-03-03 11:16:00 +00:00
tilPassword.getEditText().setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_GO) {
onSave(true);
return true;
}
return false;
}
});
2019-01-14 11:11:03 +00:00
btnCheck.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
2019-02-18 11:39:43 +00:00
onSave(true);
}
});
btnSave.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onSave(false);
2019-01-17 09:57:01 +00:00
}
});
2019-01-14 11:11:03 +00:00
2019-07-06 14:24:03 +00:00
btnHelp.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(Intent.ACTION_VIEW, (Uri) btnHelp.getTag());
Helper.view(getContext(), intent);
}
});
2019-01-17 09:57:01 +00:00
// Initialize
tvError.setVisibility(View.GONE);
2019-07-06 14:24:03 +00:00
btnHelp.setVisibility(View.GONE);
2019-01-17 09:57:01 +00:00
tvInstructions.setVisibility(View.GONE);
tvInstructions.setMovementMethod(LinkMovementMethod.getInstance());
2019-02-18 11:39:43 +00:00
grpSetup.setVisibility(View.GONE);
2019-01-14 11:11:03 +00:00
2019-01-17 09:57:01 +00:00
return view;
}
2019-01-14 11:11:03 +00:00
2019-02-18 17:00:58 +00:00
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
inflater.inflate(R.menu.menu_quick_setup, menu);
super.onCreateOptionsMenu(menu, inflater);
}
@Override
public void onPrepareOptionsMenu(Menu menu) {
PackageManager pm = getContext().getPackageManager();
menu.findItem(R.id.menu_help).setVisible(Helper.getIntentSetupHelp().resolveActivity(pm) != null);
super.onPrepareOptionsMenu(menu);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.menu_help:
onMenuHelp();
return true;
default:
return super.onOptionsItemSelected(item);
}
}
private void onMenuHelp() {
startActivity(Helper.getIntentSetupHelp());
}
2019-02-18 11:39:43 +00:00
private void onSave(boolean check) {
2019-01-17 09:57:01 +00:00
Bundle args = new Bundle();
args.putString("name", etName.getText().toString());
args.putString("email", etEmail.getText().toString().trim());
args.putString("password", tilPassword.getEditText().getText().toString());
2019-02-18 11:39:43 +00:00
args.putBoolean("check", check);
2019-01-14 11:11:03 +00:00
2019-02-18 11:39:43 +00:00
new SimpleTask<EmailProvider>() {
2019-01-17 09:57:01 +00:00
@Override
protected void onPreExecute(Bundle args) {
2019-02-18 11:39:43 +00:00
boolean check = args.getBoolean("check");
Helper.setViewsEnabled(view, false);
2019-01-17 09:57:01 +00:00
tvError.setVisibility(View.GONE);
2019-07-06 14:24:03 +00:00
btnHelp.setVisibility(View.GONE);
2019-01-17 09:57:01 +00:00
tvInstructions.setVisibility(View.GONE);
2019-02-18 11:39:43 +00:00
grpSetup.setVisibility(check ? View.GONE : View.VISIBLE);
2019-01-17 09:57:01 +00:00
}
2019-01-14 11:11:03 +00:00
2019-01-17 09:57:01 +00:00
@Override
protected void onPostExecute(Bundle args) {
2019-02-18 11:39:43 +00:00
Helper.setViewsEnabled(view, true);
2019-01-17 09:57:01 +00:00
}
2019-01-14 11:11:03 +00:00
2019-01-17 09:57:01 +00:00
@Override
2019-02-18 11:39:43 +00:00
protected EmailProvider onExecute(Context context, Bundle args) throws Throwable {
2019-01-17 09:57:01 +00:00
String name = args.getString("name");
2019-06-21 17:46:46 +00:00
String email = args.getString("email").trim();
2019-01-17 09:57:01 +00:00
String password = args.getString("password");
2019-02-18 11:39:43 +00:00
boolean check = args.getBoolean("check");
2019-01-17 09:57:01 +00:00
if (TextUtils.isEmpty(name))
throw new IllegalArgumentException(context.getString(R.string.title_no_name));
if (TextUtils.isEmpty(email))
throw new IllegalArgumentException(context.getString(R.string.title_no_email));
if (!Patterns.EMAIL_ADDRESS.matcher(email).matches())
throw new IllegalArgumentException(context.getString(R.string.title_email_invalid));
String[] dparts = email.split("@");
EmailProvider provider = EmailProvider.fromDomain(context, dparts[1]);
2019-07-06 14:24:03 +00:00
if (provider.helpUrl != null)
args.putString("help", provider.helpUrl);
2019-01-17 09:57:01 +00:00
if (provider.documentation != null)
args.putString("documentation", provider.documentation.toString());
String user = (provider.user == EmailProvider.UserType.EMAIL ? email : dparts[0]);
List<EntityFolder> folders = new ArrayList<>();
2019-02-18 11:39:43 +00:00
long now = new Date().getTime();
2019-01-17 09:57:01 +00:00
{
2019-06-19 12:51:19 +00:00
Properties props = MessageHelper.getSessionProperties(null, false);
2019-01-17 09:57:01 +00:00
Session isession = Session.getInstance(props, null);
isession.setDebug(true);
2019-02-22 15:59:23 +00:00
try (IMAPStore istore = (IMAPStore) isession.getStore(provider.imap_starttls ? "imap" : "imaps")) {
2019-01-17 09:57:01 +00:00
istore.connect(provider.imap_host, provider.imap_port, user, password);
2019-02-02 07:28:14 +00:00
boolean inbox = false;
2019-01-17 09:57:01 +00:00
boolean drafts = false;
for (Folder ifolder : istore.getDefaultFolder().list("*")) {
2019-02-01 21:06:14 +00:00
String fullName = ifolder.getFullName();
2019-01-17 09:57:01 +00:00
String[] attrs = ((IMAPFolder) ifolder).getAttributes();
2019-07-07 06:17:27 +00:00
String type = EntityFolder.getType(attrs, fullName, true);
2019-02-01 21:06:14 +00:00
Log.i(fullName + " attrs=" + TextUtils.join(" ", attrs) + " type=" + type);
2019-01-14 11:11:03 +00:00
2019-02-02 07:28:14 +00:00
if (type != null && !EntityFolder.USER.equals(type)) {
2019-01-17 09:57:01 +00:00
int sync = EntityFolder.SYSTEM_FOLDER_SYNC.indexOf(type);
EntityFolder folder = new EntityFolder();
2019-02-01 21:06:14 +00:00
folder.name = fullName;
2019-01-17 09:57:01 +00:00
folder.type = type;
folder.synchronize = (sync >= 0);
folder.download = (sync < 0 ? true : EntityFolder.SYSTEM_FOLDER_DOWNLOAD.get(sync));
folder.sync_days = EntityFolder.DEFAULT_SYNC;
folder.keep_days = EntityFolder.DEFAULT_KEEP;
folders.add(folder);
if (EntityFolder.INBOX.equals(type)) {
folder.unified = true;
2019-03-06 14:54:32 +00:00
folder.notify = true;
2019-02-02 07:28:14 +00:00
inbox = true;
}
2019-01-17 09:57:01 +00:00
if (EntityFolder.DRAFTS.equals(type))
drafts = true;
}
2019-01-14 11:11:03 +00:00
}
2019-02-02 07:28:14 +00:00
if (!inbox || !drafts)
2019-01-17 09:57:01 +00:00
throw new IllegalArgumentException(
context.getString(R.string.title_setup_no_settings, dparts[1]));
2019-01-14 11:11:03 +00:00
}
2019-01-17 09:57:01 +00:00
}
{
2019-06-19 12:51:19 +00:00
Properties props = MessageHelper.getSessionProperties(null, false);
2019-01-17 09:57:01 +00:00
Session isession = Session.getInstance(props, null);
isession.setDebug(true);
2019-02-22 15:59:23 +00:00
try (Transport itransport = isession.getTransport(provider.smtp_starttls ? "smtp" : "smtps")) {
2019-01-17 09:57:01 +00:00
itransport.connect(provider.smtp_host, provider.smtp_port, user, password);
2019-01-14 11:11:03 +00:00
}
2019-01-17 09:57:01 +00:00
}
2019-02-18 11:39:43 +00:00
if (check)
return provider;
2019-01-17 09:57:01 +00:00
DB db = DB.getInstance(context);
try {
db.beginTransaction();
EntityAccount primary = db.account().getPrimaryAccount();
// Create account
EntityAccount account = new EntityAccount();
2019-06-19 12:51:19 +00:00
account.auth_type = ConnectionHelper.AUTH_TYPE_PASSWORD;
2019-01-17 09:57:01 +00:00
account.host = provider.imap_host;
account.starttls = provider.imap_starttls;
account.insecure = false;
account.port = provider.imap_port;
account.user = user;
account.password = password;
2019-01-17 09:57:01 +00:00
account.name = provider.name;
account.color = null;
account.synchronize = true;
account.primary = (primary == null);
account.notify = false;
account.browse = true;
account.poll_interval = EntityAccount.DEFAULT_KEEP_ALIVE_INTERVAL;
2019-01-17 09:57:01 +00:00
account.created = now;
account.error = null;
account.last_connected = now;
account.id = db.account().insertAccount(account);
2019-02-02 07:28:14 +00:00
EntityLog.log(context, "Quick added account=" + account.name);
2019-01-17 09:57:01 +00:00
// Create folders
for (EntityFolder folder : folders) {
folder.account = account.id;
folder.id = db.folder().insertFolder(folder);
2019-02-02 07:28:14 +00:00
EntityLog.log(context, "Quick added folder=" + folder.name + " type=" + folder.type);
2019-01-14 11:11:03 +00:00
}
2019-01-17 09:57:01 +00:00
// Set swipe left/right folder
for (EntityFolder folder : folders)
if (EntityFolder.TRASH.equals(folder.type))
account.swipe_left = folder.id;
else if (EntityFolder.ARCHIVE.equals(folder.type))
account.swipe_right = folder.id;
if (account.swipe_right == null && account.swipe_left != null)
account.swipe_right = account.swipe_left;
db.account().updateAccount(account);
2019-01-17 09:57:01 +00:00
// Create identity
EntityIdentity identity = new EntityIdentity();
identity.name = name;
identity.email = email;
identity.account = account.id;
identity.display = null;
identity.color = null;
2019-07-12 19:20:06 +00:00
CharSequence promote = getText(R.string.app_promote);
if (promote instanceof Spanned)
identity.signature = HtmlHelper.toHtml((Spanned) promote);
else
identity.signature = null;
2019-01-17 09:57:01 +00:00
2019-06-19 12:51:19 +00:00
identity.auth_type = ConnectionHelper.AUTH_TYPE_PASSWORD;
2019-01-17 09:57:01 +00:00
identity.host = provider.smtp_host;
identity.starttls = provider.smtp_starttls;
identity.insecure = false;
identity.port = provider.smtp_port;
identity.user = user;
identity.password = password;
2019-01-17 09:57:01 +00:00
identity.synchronize = true;
identity.primary = true;
identity.replyto = null;
identity.bcc = null;
identity.delivery_receipt = false;
identity.read_receipt = false;
identity.error = null;
identity.id = db.identity().insertIdentity(identity);
2019-02-02 07:28:14 +00:00
EntityLog.log(context, "Quick added identity=" + identity.name + " email=" + identity.email);
2019-01-17 09:57:01 +00:00
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
ServiceSynchronize.reload(context, "quick setup");
return null;
2019-01-14 11:11:03 +00:00
}
2019-01-17 09:57:01 +00:00
@Override
2019-02-18 11:39:43 +00:00
protected void onExecuted(Bundle args, EmailProvider result) {
boolean check = args.getBoolean("check");
if (check) {
2019-02-18 12:57:56 +00:00
tvImap.setText(result == null ? null
: result.imap_host + ":" + result.imap_port + (result.imap_starttls ? " starttls" : " ssl"));
tvSmtp.setText(result == null ? null
: result.smtp_host + ":" + result.smtp_port + (result.smtp_starttls ? " starttls" : " ssl"));
2019-02-18 11:39:43 +00:00
grpSetup.setVisibility(result == null ? View.GONE : View.VISIBLE);
} else {
FragmentDialogDone fragment = new FragmentDialogDone();
fragment.setTargetFragment(FragmentQuickSetup.this, REQUEST_DONE);
fragment.show(getFragmentManager(), "quick:done");
}
2019-01-17 09:57:01 +00:00
}
2019-01-14 11:11:03 +00:00
2019-01-17 09:57:01 +00:00
@Override
2019-07-06 14:24:03 +00:00
protected void onException(final Bundle args, Throwable ex) {
if (ex instanceof IllegalArgumentException || ex instanceof UnknownHostException)
2019-01-17 09:57:01 +00:00
Snackbar.make(view, ex.getMessage(), Snackbar.LENGTH_LONG).show();
else {
2019-06-26 14:51:29 +00:00
tvError.setText(Helper.formatThrowable(ex, false));
2019-01-17 09:57:01 +00:00
tvError.setVisibility(View.VISIBLE);
}
2019-07-06 14:24:03 +00:00
if (args.containsKey("help")) {
Uri uri = Uri.parse(args.getString("help"));
btnHelp.setTag(uri);
btnHelp.setVisibility(View.VISIBLE);
}
if (args.containsKey("documentation")) {
tvInstructions.setText(HtmlHelper.fromHtml(args.getString("documentation")));
tvInstructions.setVisibility(View.VISIBLE);
}
new Handler().post(new Runnable() {
@Override
public void run() {
if (args.containsKey("documentation"))
scroll.smoothScrollTo(0, tvInstructions.getBottom());
else if (args.containsKey("help"))
scroll.smoothScrollTo(0, btnHelp.getBottom());
else if (tvError.getVisibility() == View.VISIBLE)
scroll.smoothScrollTo(0, tvError.getBottom());
}
});
2019-01-17 09:57:01 +00:00
}
}.execute(FragmentQuickSetup.this, args, "setup:quick");
2019-01-14 11:11:03 +00:00
}
@Override
public void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
super.onActivityResult(requestCode, resultCode, data);
switch (requestCode) {
case REQUEST_DONE:
finish();
break;
}
}
public static class FragmentDialogDone extends DialogFragmentEx {
@NonNull
@Override
public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
return new AlertDialog.Builder(getContext())
.setMessage(R.string.title_setup_quick_success)
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
sendResult(RESULT_OK);
}
})
.create();
}
}
2019-01-14 11:11:03 +00:00
}