1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-02-17 07:30:16 -05:00

reduce duplication

This commit is contained in:
Art O Cathain 2015-02-18 19:40:43 +00:00
parent ebef8eccb9
commit 492d65feed
2 changed files with 43 additions and 68 deletions

View File

@ -14,6 +14,7 @@ import com.fsck.k9.Preferences;
import com.fsck.k9.R; import com.fsck.k9.R;
import com.fsck.k9.activity.K9Activity; import com.fsck.k9.activity.K9Activity;
import java.net.URI; import java.net.URI;
import java.net.URISyntaxException;
/** /**
* Prompts the user to select an account type. The account type, along with the * Prompts the user to select an account type. The account type, along with the
@ -49,83 +50,57 @@ public class AccountSetupAccountType extends K9Activity implements OnClickListen
mMakeDefault = getIntent().getBooleanExtra(EXTRA_MAKE_DEFAULT, false); mMakeDefault = getIntent().getBooleanExtra(EXTRA_MAKE_DEFAULT, false);
} }
private void onPop() { private void setupStoreAndSmtpTransport(String schemePrefix) throws URISyntaxException {
try { URI uri = new URI(mAccount.getStoreUri());
URI uri = new URI(mAccount.getStoreUri()); uri = new URI(schemePrefix, uri.getUserInfo(), uri.getHost(), uri.getPort(), null, null, null);
uri = new URI("pop3+ssl+", uri.getUserInfo(), uri.getHost(), uri.getPort(), null, null, null); mAccount.setStoreUri(uri.toString());
mAccount.setStoreUri(uri.toString());
uri = new URI(mAccount.getTransportUri());
uri = new URI("smtp+tls+", uri.getUserInfo(), uri.getHost(), uri.getPort(), null, null, null);
mAccount.setTransportUri(uri.toString());
AccountSetupIncoming.actionIncomingSettings(this, mAccount, mMakeDefault);
finish();
} catch (Exception use) {
failure(use);
}
uri = new URI(mAccount.getTransportUri());
uri = new URI("smtp+tls+", uri.getUserInfo(), uri.getHost(), uri.getPort(), null, null, null);
mAccount.setTransportUri(uri.toString());
} }
private void onImap() { private void setupDav() throws URISyntaxException {
try { URI uri = new URI(mAccount.getStoreUri());
URI uri = new URI(mAccount.getStoreUri());
uri = new URI("imap+ssl+", uri.getUserInfo(), uri.getHost(), uri.getPort(), null, null, null);
mAccount.setStoreUri(uri.toString());
uri = new URI(mAccount.getTransportUri()); /*
uri = new URI("smtp+tls+", uri.getUserInfo(), uri.getHost(), uri.getPort(), null, null, null); * The user info we have been given from
mAccount.setTransportUri(uri.toString()); * AccountSetupBasics.onManualSetup() is encoded as an IMAP store
* URI: AuthType:UserName:Password (no fields should be empty).
AccountSetupIncoming.actionIncomingSettings(this, mAccount, mMakeDefault); * However, AuthType is not applicable to WebDAV nor to its store
finish(); * URI. Re-encode without it, using just the UserName and Password.
} catch (Exception use) { */
failure(use); String userPass = "";
String[] userInfo = uri.getUserInfo().split(":");
if (userInfo.length > 1) {
userPass = userInfo[1];
} }
if (userInfo.length > 2) {
} userPass = userPass + ":" + userInfo[2];
private void onWebDav() {
try {
URI uri = new URI(mAccount.getStoreUri());
/*
* The user info we have been given from
* AccountSetupBasics.onManualSetup() is encoded as an IMAP store
* URI: AuthType:UserName:Password (no fields should be empty).
* However, AuthType is not applicable to WebDAV nor to its store
* URI. Re-encode without it, using just the UserName and Password.
*/
String userPass = "";
String[] userInfo = uri.getUserInfo().split(":");
if (userInfo.length > 1) {
userPass = userInfo[1];
}
if (userInfo.length > 2) {
userPass = userPass + ":" + userInfo[2];
}
uri = new URI("webdav+ssl+", userPass, uri.getHost(), uri.getPort(), null, null, null);
mAccount.setStoreUri(uri.toString());
AccountSetupIncoming.actionIncomingSettings(this, mAccount, mMakeDefault);
finish();
} catch (Exception use) {
failure(use);
} }
uri = new URI("webdav+ssl+", userPass, uri.getHost(), uri.getPort(), null, null, null);
mAccount.setStoreUri(uri.toString());
} }
public void onClick(View v) { public void onClick(View v) {
switch (v.getId()) { try {
case R.id.pop: switch (v.getId()) {
onPop(); case R.id.pop:
break; setupStoreAndSmtpTransport("pop3+ssl+");
case R.id.imap: break;
onImap(); case R.id.imap:
break; setupStoreAndSmtpTransport("imap+ssl+");
case R.id.webdav: break;
onWebDav(); case R.id.webdav:
break; setupDav();
break;
}
} catch (Exception ex) {
failure(ex);
} }
AccountSetupIncoming.actionIncomingSettings(this, mAccount, mMakeDefault);
finish();
} }
private void failure(Exception use) { private void failure(Exception use) {

View File

@ -347,7 +347,7 @@ public class AccountSetupBasics extends K9Activity
} }
} }
protected void onNext() { private void onNext() {
if (mClientCertificateCheckBox.isChecked()) { if (mClientCertificateCheckBox.isChecked()) {
// Auto-setup doesn't support client certificates. // Auto-setup doesn't support client certificates.