2011-02-26 12:31:56 -05:00
|
|
|
package com.fsck.k9.preferences;
|
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
import java.io.IOException;
|
2011-02-26 12:31:56 -05:00
|
|
|
import java.io.InputStream;
|
2011-04-12 21:37:44 -04:00
|
|
|
import java.io.InputStreamReader;
|
|
|
|
import java.util.ArrayList;
|
2011-06-08 23:50:43 -04:00
|
|
|
import java.util.Collections;
|
2011-02-26 12:31:56 -05:00
|
|
|
import java.util.HashMap;
|
2011-03-30 15:00:34 -04:00
|
|
|
import java.util.List;
|
2011-02-26 12:31:56 -05:00
|
|
|
import java.util.Map;
|
2011-03-30 15:00:34 -04:00
|
|
|
import java.util.UUID;
|
2011-02-26 12:31:56 -05:00
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
import org.xmlpull.v1.XmlPullParser;
|
|
|
|
import org.xmlpull.v1.XmlPullParserException;
|
|
|
|
import org.xmlpull.v1.XmlPullParserFactory;
|
2011-02-26 12:31:56 -05:00
|
|
|
|
2011-03-30 15:00:34 -04:00
|
|
|
import android.content.Context;
|
2011-02-26 12:31:56 -05:00
|
|
|
import android.content.SharedPreferences;
|
|
|
|
import android.util.Log;
|
|
|
|
|
2011-03-30 15:00:34 -04:00
|
|
|
import com.fsck.k9.Account;
|
2011-04-12 21:37:44 -04:00
|
|
|
import com.fsck.k9.Identity;
|
2011-02-26 12:31:56 -05:00
|
|
|
import com.fsck.k9.K9;
|
|
|
|
import com.fsck.k9.Preferences;
|
2011-02-26 20:28:47 -05:00
|
|
|
import com.fsck.k9.helper.DateFormatter;
|
2011-04-12 21:37:44 -04:00
|
|
|
import com.fsck.k9.helper.Utility;
|
2011-06-08 23:50:43 -04:00
|
|
|
import com.fsck.k9.mail.ConnectionSecurity;
|
|
|
|
import com.fsck.k9.mail.ServerSettings;
|
|
|
|
import com.fsck.k9.mail.Store;
|
|
|
|
import com.fsck.k9.mail.Transport;
|
2011-10-08 11:58:57 -04:00
|
|
|
import com.fsck.k9.preferences.Settings.InvalidSettingValueException;
|
2011-02-26 12:31:56 -05:00
|
|
|
|
2011-02-26 19:39:06 -05:00
|
|
|
public class StorageImporter {
|
2011-03-03 11:14:19 -05:00
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
/**
|
|
|
|
* Class to list the contents of an import file/stream.
|
|
|
|
*
|
|
|
|
* @see StorageImporter#getImportStreamContents(Context,InputStream,String)
|
|
|
|
*/
|
|
|
|
public static class ImportContents {
|
|
|
|
/**
|
|
|
|
* True, if the import file contains global settings.
|
|
|
|
*/
|
|
|
|
public final boolean globalSettings;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The list of accounts found in the import file. Never {@code null}.
|
|
|
|
*/
|
|
|
|
public final List<AccountDescription> accounts;
|
|
|
|
|
|
|
|
private ImportContents(boolean globalSettings, List<AccountDescription> accounts) {
|
|
|
|
this.globalSettings = globalSettings;
|
|
|
|
this.accounts = accounts;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class to describe an account (name, UUID).
|
|
|
|
*
|
|
|
|
* @see ImportContents
|
|
|
|
*/
|
|
|
|
public static class AccountDescription {
|
|
|
|
/**
|
|
|
|
* The name of the account.
|
|
|
|
*/
|
|
|
|
public final String name;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The UUID of the account.
|
|
|
|
*/
|
|
|
|
public final String uuid;
|
|
|
|
|
|
|
|
private AccountDescription(String name, String uuid) {
|
|
|
|
this.name = name;
|
|
|
|
this.uuid = uuid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-06 13:44:01 -04:00
|
|
|
private static class AccountDescriptionPair {
|
2011-04-28 22:29:16 -04:00
|
|
|
public final AccountDescription original;
|
|
|
|
public final AccountDescription imported;
|
|
|
|
|
|
|
|
private AccountDescriptionPair(AccountDescription original, AccountDescription imported) {
|
|
|
|
this.original = original;
|
|
|
|
this.imported = imported;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class ImportResults {
|
|
|
|
public final boolean globalSettings;
|
|
|
|
public final List<AccountDescriptionPair> importedAccounts;
|
|
|
|
public final List<AccountDescription> errorneousAccounts;
|
|
|
|
|
|
|
|
private ImportResults(boolean globalSettings,
|
|
|
|
List<AccountDescriptionPair> importedAccounts,
|
|
|
|
List<AccountDescription> errorneousAccounts) {
|
|
|
|
this.globalSettings = globalSettings;
|
|
|
|
this.importedAccounts = importedAccounts;
|
|
|
|
this.errorneousAccounts = errorneousAccounts;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
public static boolean isImportStreamEncrypted(Context context, InputStream inputStream) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parses an import {@link InputStream} and returns information on whether it contains global
|
|
|
|
* settings and/or account settings. For all account configurations found, the name of the
|
|
|
|
* account along with the account UUID is returned.
|
|
|
|
*
|
|
|
|
* @param context
|
|
|
|
* @param inputStream
|
|
|
|
* @param encryptionKey
|
|
|
|
* @return
|
|
|
|
* @throws StorageImportExportException
|
|
|
|
*/
|
|
|
|
public static ImportContents getImportStreamContents(Context context, InputStream inputStream,
|
|
|
|
String encryptionKey) throws StorageImportExportException {
|
2011-03-30 15:00:34 -04:00
|
|
|
|
2011-03-03 11:14:19 -05:00
|
|
|
try {
|
2011-04-12 21:37:44 -04:00
|
|
|
// Parse the import stream but don't save individual settings (overview=true)
|
|
|
|
Imported imported = parseSettings(inputStream, false, null, false, true);
|
|
|
|
|
|
|
|
// If the stream contains global settings the "globalSettings" member will not be null
|
|
|
|
boolean globalSettings = (imported.globalSettings != null);
|
|
|
|
|
|
|
|
final List<AccountDescription> accounts = new ArrayList<AccountDescription>();
|
|
|
|
// If the stream contains at least one account configuration the "accounts" member
|
|
|
|
// will not be null.
|
|
|
|
if (imported.accounts != null) {
|
|
|
|
for (ImportedAccount account : imported.accounts.values()) {
|
|
|
|
accounts.add(new AccountDescription(account.name, account.uuid));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-19 17:04:43 -04:00
|
|
|
//TODO: throw exception if neither global settings nor account settings could be found
|
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
return new ImportContents(globalSettings, accounts);
|
2011-02-26 19:39:06 -05:00
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
} catch (StorageImportExportException e) {
|
|
|
|
throw e;
|
|
|
|
} catch (Exception e) {
|
|
|
|
throw new StorageImportExportException(e);
|
|
|
|
}
|
|
|
|
}
|
2011-02-26 19:39:06 -05:00
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
/**
|
|
|
|
* Reads an import {@link InputStream} and imports the global settings and/or account
|
|
|
|
* configurations specified by the arguments.
|
|
|
|
*
|
|
|
|
* @param context
|
|
|
|
* @param inputStream
|
|
|
|
* @param encryptionKey
|
|
|
|
* @param globalSettings
|
|
|
|
* @param accountUuids
|
|
|
|
* @param overwrite
|
|
|
|
* @throws StorageImportExportException
|
|
|
|
*/
|
2011-04-28 22:29:16 -04:00
|
|
|
public static ImportResults importSettings(Context context, InputStream inputStream, String encryptionKey,
|
2011-04-19 17:04:43 -04:00
|
|
|
boolean globalSettings, List<String> accountUuids, boolean overwrite)
|
2011-04-12 21:37:44 -04:00
|
|
|
throws StorageImportExportException {
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2011-04-28 22:29:16 -04:00
|
|
|
boolean globalSettingsImported = false;
|
|
|
|
List<AccountDescriptionPair> importedAccounts = new ArrayList<AccountDescriptionPair>();
|
|
|
|
List<AccountDescription> errorneousAccounts = new ArrayList<AccountDescription>();
|
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
Imported imported = parseSettings(inputStream, globalSettings, accountUuids, overwrite, false);
|
2011-02-26 19:39:06 -05:00
|
|
|
|
2011-03-30 15:00:34 -04:00
|
|
|
Preferences preferences = Preferences.getPreferences(context);
|
|
|
|
SharedPreferences storage = preferences.getPreferences();
|
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
if (globalSettings) {
|
2011-04-28 22:29:16 -04:00
|
|
|
try {
|
|
|
|
SharedPreferences.Editor editor = storage.edit();
|
|
|
|
if (imported.globalSettings != null) {
|
2011-05-01 22:06:22 -04:00
|
|
|
importGlobalSettings(storage, editor, imported.globalSettings);
|
2011-04-28 22:29:16 -04:00
|
|
|
} else {
|
|
|
|
Log.w(K9.LOG_TAG, "Was asked to import global settings but none found.");
|
|
|
|
}
|
|
|
|
if (editor.commit()) {
|
|
|
|
globalSettingsImported = true;
|
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
|
|
Log.e(K9.LOG_TAG, "Exception while importing global settings", e);
|
2011-04-12 21:37:44 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (accountUuids != null && accountUuids.size() > 0) {
|
|
|
|
if (imported.accounts != null) {
|
|
|
|
List<String> newUuids = new ArrayList<String>();
|
|
|
|
for (String accountUuid : accountUuids) {
|
|
|
|
if (imported.accounts.containsKey(accountUuid)) {
|
2011-04-28 22:29:16 -04:00
|
|
|
ImportedAccount account = imported.accounts.get(accountUuid);
|
|
|
|
try {
|
|
|
|
SharedPreferences.Editor editor = storage.edit();
|
|
|
|
|
|
|
|
AccountDescriptionPair importResult = importAccount(context,
|
|
|
|
editor, account, overwrite);
|
|
|
|
|
|
|
|
String newUuid = importResult.imported.uuid;
|
|
|
|
if (!newUuid.equals(importResult.original.uuid)) {
|
|
|
|
newUuids.add(newUuid);
|
|
|
|
}
|
|
|
|
if (editor.commit()) {
|
|
|
|
importedAccounts.add(importResult);
|
|
|
|
} else {
|
|
|
|
errorneousAccounts.add(importResult.original);
|
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
2011-06-08 23:50:43 -04:00
|
|
|
Log.e(K9.LOG_TAG, "Exception while importing account", e); //XXX
|
2011-04-28 22:29:16 -04:00
|
|
|
errorneousAccounts.add(new AccountDescription(account.name, account.uuid));
|
2011-03-20 12:52:13 -04:00
|
|
|
}
|
2011-04-12 21:37:44 -04:00
|
|
|
} else {
|
|
|
|
Log.w(K9.LOG_TAG, "Was asked to import account with UUID " +
|
|
|
|
accountUuid + ". But this account wasn't found.");
|
|
|
|
}
|
|
|
|
}
|
2011-04-19 17:04:43 -04:00
|
|
|
|
2011-04-28 22:29:16 -04:00
|
|
|
SharedPreferences.Editor editor = storage.edit();
|
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
if (newUuids.size() > 0) {
|
|
|
|
String oldAccountUuids = storage.getString("accountUuids", "");
|
|
|
|
String appendUuids = Utility.combine(newUuids.toArray(new String[0]), ',');
|
|
|
|
String prefix = "";
|
|
|
|
if (oldAccountUuids.length() > 0) {
|
|
|
|
prefix = oldAccountUuids + ",";
|
2011-03-20 16:21:24 -04:00
|
|
|
}
|
2011-04-12 21:37:44 -04:00
|
|
|
editor.putString("accountUuids", prefix + appendUuids);
|
2011-03-20 16:21:24 -04:00
|
|
|
}
|
2011-04-19 17:04:43 -04:00
|
|
|
|
|
|
|
String defaultAccountUuid = storage.getString("defaultAccountUuid", null);
|
|
|
|
if (defaultAccountUuid == null) {
|
|
|
|
editor.putString("defaultAccountUuid", accountUuids.get(0));
|
|
|
|
}
|
|
|
|
|
2011-04-28 22:29:16 -04:00
|
|
|
if (!editor.commit()) {
|
|
|
|
throw new StorageImportExportException("Failed to set default account");
|
|
|
|
}
|
2011-04-12 21:37:44 -04:00
|
|
|
} else {
|
|
|
|
Log.w(K9.LOG_TAG, "Was asked to import at least one account but none found.");
|
2011-03-30 15:00:34 -04:00
|
|
|
}
|
2011-04-12 21:37:44 -04:00
|
|
|
}
|
2011-03-30 15:00:34 -04:00
|
|
|
|
2011-04-12 21:44:43 -04:00
|
|
|
preferences.loadAccounts();
|
2011-03-30 15:00:34 -04:00
|
|
|
DateFormatter.clearChosenFormat();
|
2011-04-12 21:37:44 -04:00
|
|
|
K9.loadPrefs(preferences);
|
2011-03-30 15:00:34 -04:00
|
|
|
K9.setServicesEnabled(context);
|
|
|
|
|
2011-04-28 22:29:16 -04:00
|
|
|
return new ImportResults(globalSettingsImported, importedAccounts, errorneousAccounts);
|
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
} catch (StorageImportExportException e) {
|
|
|
|
throw e;
|
|
|
|
} catch (Exception e) {
|
|
|
|
throw new StorageImportExportException(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-01 22:06:22 -04:00
|
|
|
private static void importGlobalSettings(SharedPreferences storage,
|
|
|
|
SharedPreferences.Editor editor, ImportedSettings settings) {
|
2011-04-12 21:37:44 -04:00
|
|
|
|
2011-05-01 22:06:22 -04:00
|
|
|
Map<String, String> validatedSettings = GlobalSettings.validate(settings.settings);
|
2011-04-20 15:37:48 -04:00
|
|
|
|
2011-05-01 22:06:22 -04:00
|
|
|
// Use current global settings as base and overwrite with validated settings read from the
|
|
|
|
// import file.
|
|
|
|
Map<String, String> mergedSettings =
|
|
|
|
new HashMap<String, String>(GlobalSettings.getGlobalSettings(storage));
|
|
|
|
mergedSettings.putAll(validatedSettings);
|
|
|
|
|
|
|
|
for (Map.Entry<String, String> setting : mergedSettings.entrySet()) {
|
2011-04-12 21:37:44 -04:00
|
|
|
String key = setting.getKey();
|
|
|
|
String value = setting.getValue();
|
2011-04-20 15:37:48 -04:00
|
|
|
Log.v(K9.LOG_TAG, "Write " + key + "=" + value);
|
2011-04-12 21:37:44 -04:00
|
|
|
editor.putString(key, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-28 22:29:16 -04:00
|
|
|
private static AccountDescriptionPair importAccount(Context context,
|
2011-10-08 11:58:57 -04:00
|
|
|
SharedPreferences.Editor editor, ImportedAccount account, boolean overwrite)
|
|
|
|
throws InvalidSettingValueException {
|
2011-04-28 22:29:16 -04:00
|
|
|
|
|
|
|
AccountDescription original = new AccountDescription(account.name, account.uuid);
|
2011-04-12 21:37:44 -04:00
|
|
|
|
|
|
|
Preferences prefs = Preferences.getPreferences(context);
|
|
|
|
Account[] accounts = prefs.getAccounts();
|
|
|
|
|
|
|
|
String uuid = account.uuid;
|
|
|
|
Account existingAccount = prefs.getAccount(uuid);
|
2011-06-06 13:44:01 -04:00
|
|
|
boolean mergeImportedAccount = (overwrite && existingAccount != null);
|
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
if (!overwrite && existingAccount != null) {
|
|
|
|
// An account with this UUID already exists, but we're not allowed to overwrite it.
|
|
|
|
// So generate a new UUID.
|
|
|
|
uuid = UUID.randomUUID().toString();
|
|
|
|
}
|
|
|
|
|
2011-06-06 13:44:01 -04:00
|
|
|
Map<String, String> validatedSettings =
|
|
|
|
AccountSettings.validate(account.settings.settings, !mergeImportedAccount);
|
|
|
|
|
|
|
|
Map<String, String> writeSettings;
|
|
|
|
if (mergeImportedAccount) {
|
|
|
|
writeSettings = new HashMap<String, String>(
|
|
|
|
AccountSettings.getAccountSettings(prefs.getPreferences(), uuid));
|
|
|
|
writeSettings.putAll(validatedSettings);
|
|
|
|
} else {
|
|
|
|
writeSettings = new HashMap<String, String>(validatedSettings);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//TODO: validate account name
|
2011-06-08 23:50:43 -04:00
|
|
|
//TODO: validate server settings
|
2011-06-06 13:44:01 -04:00
|
|
|
//TODO: validate identity settings
|
|
|
|
//TODO: validate folder settings
|
|
|
|
|
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
String accountName = account.name;
|
|
|
|
if (isAccountNameUsed(accountName, accounts)) {
|
|
|
|
// Account name is already in use. So generate a new one by appending " (x)", where x
|
|
|
|
// is the first number >= 1 that results in an unused account name.
|
|
|
|
for (int i = 1; i <= accounts.length; i++) {
|
|
|
|
accountName = account.name + " (" + i + ")";
|
|
|
|
if (!isAccountNameUsed(accountName, accounts)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
String accountKeyPrefix = uuid + ".";
|
|
|
|
editor.putString(accountKeyPrefix + Account.ACCOUNT_DESCRIPTION_KEY, accountName);
|
|
|
|
|
2011-06-08 23:50:43 -04:00
|
|
|
// Write incoming server settings (storeUri)
|
|
|
|
ServerSettings incoming = new ImportedServerSettings(account.incoming);
|
|
|
|
String storeUri = Store.createStoreUri(incoming);
|
|
|
|
editor.putString(accountKeyPrefix + Account.STORE_URI_KEY, Utility.base64Encode(storeUri));
|
|
|
|
|
|
|
|
// Write outgoing server settings (transportUri)
|
|
|
|
ServerSettings outgoing = new ImportedServerSettings(account.outgoing);
|
|
|
|
String transportUri = Transport.createTransportUri(outgoing);
|
|
|
|
editor.putString(accountKeyPrefix + Account.TRANSPORT_URI_KEY, Utility.base64Encode(transportUri));
|
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
// Write account settings
|
2011-06-06 13:44:01 -04:00
|
|
|
for (Map.Entry<String, String> setting : writeSettings.entrySet()) {
|
2011-04-12 21:37:44 -04:00
|
|
|
String key = accountKeyPrefix + setting.getKey();
|
|
|
|
String value = setting.getValue();
|
|
|
|
editor.putString(key, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If it's a new account generate and write a new "accountNumber"
|
2011-06-06 13:44:01 -04:00
|
|
|
if (!mergeImportedAccount) {
|
2011-04-12 21:37:44 -04:00
|
|
|
int newAccountNumber = Account.generateAccountNumber(prefs);
|
|
|
|
editor.putString(accountKeyPrefix + "accountNumber", Integer.toString(newAccountNumber));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (account.identities != null) {
|
2011-10-08 11:58:57 -04:00
|
|
|
importIdentities(editor, uuid, account, overwrite, existingAccount, prefs);
|
2011-04-12 21:37:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Write folder settings
|
|
|
|
if (account.folders != null) {
|
|
|
|
for (ImportedFolder folder : account.folders) {
|
|
|
|
String folderKeyPrefix = uuid + "." + folder.name + ".";
|
|
|
|
for (Map.Entry<String, String> setting : folder.settings.settings.entrySet()) {
|
|
|
|
String key = folderKeyPrefix + setting.getKey();
|
|
|
|
String value = setting.getValue();
|
|
|
|
editor.putString(key, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO: sync folder settings with localstore?
|
|
|
|
|
2011-04-28 22:29:16 -04:00
|
|
|
AccountDescription imported = new AccountDescription(accountName, uuid);
|
|
|
|
return new AccountDescriptionPair(original, imported);
|
2011-04-12 21:37:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private static void importIdentities(SharedPreferences.Editor editor, String uuid,
|
2011-10-08 11:58:57 -04:00
|
|
|
ImportedAccount account, boolean overwrite, Account existingAccount,
|
|
|
|
Preferences prefs) throws InvalidSettingValueException {
|
2011-04-12 21:37:44 -04:00
|
|
|
|
|
|
|
String accountKeyPrefix = uuid + ".";
|
|
|
|
|
|
|
|
// Gather information about existing identities for this account (if any)
|
|
|
|
int nextIdentityIndex = 0;
|
|
|
|
final List<Identity> existingIdentities;
|
|
|
|
if (overwrite && existingAccount != null) {
|
|
|
|
existingIdentities = existingAccount.getIdentities();
|
|
|
|
nextIdentityIndex = existingIdentities.size();
|
|
|
|
} else {
|
|
|
|
existingIdentities = new ArrayList<Identity>();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write identities
|
|
|
|
for (ImportedIdentity identity : account.identities) {
|
|
|
|
int writeIdentityIndex = nextIdentityIndex;
|
2011-10-08 11:58:57 -04:00
|
|
|
boolean mergeSettings = false;
|
|
|
|
if (overwrite && existingIdentities.size() > 0) {
|
2011-04-12 21:37:44 -04:00
|
|
|
int identityIndex = findIdentity(identity, existingIdentities);
|
2011-10-08 11:58:57 -04:00
|
|
|
if (identityIndex != -1) {
|
2011-04-12 21:37:44 -04:00
|
|
|
writeIdentityIndex = identityIndex;
|
2011-10-08 11:58:57 -04:00
|
|
|
mergeSettings = true;
|
2011-04-12 21:37:44 -04:00
|
|
|
}
|
|
|
|
}
|
2011-10-08 11:58:57 -04:00
|
|
|
if (!mergeSettings) {
|
2011-04-12 21:37:44 -04:00
|
|
|
nextIdentityIndex++;
|
|
|
|
}
|
|
|
|
|
2011-10-08 11:58:57 -04:00
|
|
|
String identityDescription = (identity.description == null) ?
|
|
|
|
"Imported" : identity.description;
|
2011-04-12 21:37:44 -04:00
|
|
|
if (isIdentityDescriptionUsed(identityDescription, existingIdentities)) {
|
|
|
|
// Identity description is already in use. So generate a new one by appending
|
|
|
|
// " (x)", where x is the first number >= 1 that results in an unused identity
|
|
|
|
// description.
|
|
|
|
for (int i = 1; i <= existingIdentities.size(); i++) {
|
|
|
|
identityDescription = identity.description + " (" + i + ")";
|
|
|
|
if (!isIdentityDescriptionUsed(identityDescription, existingIdentities)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-08 11:58:57 -04:00
|
|
|
String identitySuffix = "." + writeIdentityIndex;
|
|
|
|
|
|
|
|
// Write name used in identity
|
|
|
|
String identityName = (identity.name == null) ? "" : identity.name;
|
|
|
|
editor.putString(accountKeyPrefix + Account.IDENTITY_NAME_KEY + identitySuffix,
|
|
|
|
identityName);
|
|
|
|
|
|
|
|
// Validate email address
|
|
|
|
if (!IdentitySettings.isEmailAddressValid(identity.email)) {
|
|
|
|
throw new InvalidSettingValueException();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write email address
|
|
|
|
editor.putString(accountKeyPrefix + Account.IDENTITY_EMAIL_KEY + identitySuffix,
|
|
|
|
identity.email);
|
|
|
|
|
|
|
|
// Write identity description
|
|
|
|
editor.putString(accountKeyPrefix + Account.IDENTITY_DESCRIPTION_KEY + identitySuffix,
|
|
|
|
identityDescription);
|
|
|
|
|
|
|
|
// Validate identity settings
|
|
|
|
Map<String, String> validatedSettings = IdentitySettings.validate(
|
|
|
|
identity.settings.settings, !mergeSettings);
|
|
|
|
|
|
|
|
// Merge identity settings if necessary
|
|
|
|
Map<String, String> writeSettings;
|
|
|
|
if (mergeSettings) {
|
|
|
|
writeSettings = new HashMap<String, String>(IdentitySettings.getIdentitySettings(
|
|
|
|
prefs.getPreferences(), uuid, writeIdentityIndex));
|
|
|
|
writeSettings.putAll(validatedSettings);
|
|
|
|
} else {
|
|
|
|
writeSettings = new HashMap<String, String>(validatedSettings);
|
|
|
|
}
|
2011-04-12 21:37:44 -04:00
|
|
|
|
|
|
|
// Write identity settings
|
2011-10-08 11:58:57 -04:00
|
|
|
for (Map.Entry<String, String> setting : writeSettings.entrySet()) {
|
|
|
|
String key = accountKeyPrefix + setting.getKey() + identitySuffix;
|
2011-04-12 21:37:44 -04:00
|
|
|
String value = setting.getValue();
|
2011-10-08 11:58:57 -04:00
|
|
|
editor.putString(key, value);
|
2011-04-12 21:37:44 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean isAccountNameUsed(String name, Account[] accounts) {
|
|
|
|
for (Account account : accounts) {
|
|
|
|
if (account.getDescription().equals(name)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean isIdentityDescriptionUsed(String description, List<Identity> identities) {
|
|
|
|
for (Identity identitiy : identities) {
|
|
|
|
if (identitiy.getDescription().equals(description)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static int findIdentity(ImportedIdentity identity,
|
|
|
|
List<Identity> identities) {
|
|
|
|
for (int i = 0; i < identities.size(); i++) {
|
|
|
|
Identity existingIdentity = identities.get(i);
|
|
|
|
if (existingIdentity.getName().equals(identity.name) &&
|
|
|
|
existingIdentity.getEmail().equals(identity.email)) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static Imported parseSettings(InputStream inputStream, boolean globalSettings,
|
2011-04-19 17:04:43 -04:00
|
|
|
List<String> accountUuids, boolean overwrite, boolean overview)
|
2011-04-12 21:37:44 -04:00
|
|
|
throws StorageImportExportException {
|
|
|
|
|
|
|
|
if (!overview && accountUuids == null) {
|
|
|
|
throw new IllegalArgumentException("Argument 'accountUuids' must not be null.");
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
XmlPullParserFactory factory = XmlPullParserFactory.newInstance();
|
|
|
|
//factory.setNamespaceAware(true);
|
|
|
|
XmlPullParser xpp = factory.newPullParser();
|
|
|
|
|
|
|
|
InputStreamReader reader = new InputStreamReader(inputStream);
|
|
|
|
xpp.setInput(reader);
|
|
|
|
|
|
|
|
Imported imported = null;
|
|
|
|
int eventType = xpp.getEventType();
|
|
|
|
while (eventType != XmlPullParser.END_DOCUMENT) {
|
|
|
|
if(eventType == XmlPullParser.START_TAG) {
|
|
|
|
if (StorageExporter.ROOT_ELEMENT.equals(xpp.getName())) {
|
|
|
|
imported = parseRoot(xpp, globalSettings, accountUuids, overview);
|
|
|
|
} else {
|
|
|
|
Log.w(K9.LOG_TAG, "Unexpected start tag: " + xpp.getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
eventType = xpp.next();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (imported == null || (overview && imported.globalSettings == null &&
|
|
|
|
imported.accounts == null)) {
|
|
|
|
throw new StorageImportExportException("Invalid import data");
|
|
|
|
}
|
|
|
|
|
|
|
|
return imported;
|
2011-03-30 15:00:34 -04:00
|
|
|
} catch (Exception e) {
|
2011-04-12 21:37:44 -04:00
|
|
|
throw new StorageImportExportException(e);
|
2011-03-30 15:00:34 -04:00
|
|
|
}
|
|
|
|
}
|
2011-03-20 16:21:24 -04:00
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
private static void skipToEndTag(XmlPullParser xpp, String endTag)
|
|
|
|
throws XmlPullParserException, IOException {
|
2011-02-26 19:39:06 -05:00
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
int eventType = xpp.next();
|
|
|
|
while (!(eventType == XmlPullParser.END_TAG && endTag.equals(xpp.getName()))) {
|
|
|
|
eventType = xpp.next();
|
|
|
|
}
|
2011-02-26 12:31:56 -05:00
|
|
|
}
|
2011-02-26 19:39:06 -05:00
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
private static String getText(XmlPullParser xpp)
|
|
|
|
throws XmlPullParserException, IOException {
|
2011-02-26 12:31:56 -05:00
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
int eventType = xpp.next();
|
|
|
|
if (eventType != XmlPullParser.TEXT) {
|
2011-04-20 15:37:48 -04:00
|
|
|
return "";
|
2011-02-26 12:31:56 -05:00
|
|
|
}
|
2011-04-12 21:37:44 -04:00
|
|
|
return xpp.getText();
|
|
|
|
}
|
|
|
|
|
|
|
|
private static Imported parseRoot(XmlPullParser xpp, boolean globalSettings,
|
2011-04-19 17:04:43 -04:00
|
|
|
List<String> accountUuids, boolean overview)
|
2011-04-12 21:37:44 -04:00
|
|
|
throws XmlPullParserException, IOException {
|
|
|
|
|
|
|
|
Imported result = new Imported();
|
2011-02-26 12:31:56 -05:00
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
//TODO: check version attribute
|
|
|
|
|
|
|
|
int eventType = xpp.next();
|
|
|
|
while (!(eventType == XmlPullParser.END_TAG &&
|
|
|
|
StorageExporter.ROOT_ELEMENT.equals(xpp.getName()))) {
|
|
|
|
|
|
|
|
if(eventType == XmlPullParser.START_TAG) {
|
|
|
|
String element = xpp.getName();
|
|
|
|
if (StorageExporter.GLOBAL_ELEMENT.equals(element)) {
|
|
|
|
if (overview || globalSettings) {
|
|
|
|
if (result.globalSettings == null) {
|
|
|
|
if (overview) {
|
|
|
|
result.globalSettings = new ImportedSettings();
|
|
|
|
skipToEndTag(xpp, StorageExporter.GLOBAL_ELEMENT);
|
|
|
|
} else {
|
|
|
|
result.globalSettings = parseSettings(xpp, StorageExporter.GLOBAL_ELEMENT);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
skipToEndTag(xpp, StorageExporter.GLOBAL_ELEMENT);
|
|
|
|
Log.w(K9.LOG_TAG, "More than one global settings element. Only using the first one!");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
skipToEndTag(xpp, StorageExporter.GLOBAL_ELEMENT);
|
|
|
|
Log.i(K9.LOG_TAG, "Skipping global settings");
|
|
|
|
}
|
|
|
|
} else if (StorageExporter.ACCOUNTS_ELEMENT.equals(element)) {
|
|
|
|
if (result.accounts == null) {
|
|
|
|
result.accounts = parseAccounts(xpp, accountUuids, overview);
|
|
|
|
} else {
|
|
|
|
Log.w(K9.LOG_TAG, "More than one accounts element. Only using the first one!");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Log.w(K9.LOG_TAG, "Unexpected start tag: " + xpp.getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
eventType = xpp.next();
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static ImportedSettings parseSettings(XmlPullParser xpp, String endTag)
|
|
|
|
throws XmlPullParserException, IOException {
|
|
|
|
|
|
|
|
ImportedSettings result = null;
|
|
|
|
|
|
|
|
int eventType = xpp.next();
|
|
|
|
while (!(eventType == XmlPullParser.END_TAG && endTag.equals(xpp.getName()))) {
|
|
|
|
|
|
|
|
if(eventType == XmlPullParser.START_TAG) {
|
|
|
|
String element = xpp.getName();
|
|
|
|
if (StorageExporter.VALUE_ELEMENT.equals(element)) {
|
|
|
|
String key = xpp.getAttributeValue(null, StorageExporter.KEY_ATTRIBUTE);
|
|
|
|
String value = getText(xpp);
|
|
|
|
|
|
|
|
if (result == null) {
|
|
|
|
result = new ImportedSettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result.settings.containsKey(key)) {
|
|
|
|
Log.w(K9.LOG_TAG, "Already read key \"" + key + "\". Ignoring value \"" + value + "\"");
|
|
|
|
} else {
|
|
|
|
result.settings.put(key, value);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Log.w(K9.LOG_TAG, "Unexpected start tag: " + xpp.getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
eventType = xpp.next();
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static Map<String, ImportedAccount> parseAccounts(XmlPullParser xpp,
|
2011-04-19 17:04:43 -04:00
|
|
|
List<String> accountUuids, boolean overview)
|
2011-04-12 21:37:44 -04:00
|
|
|
throws XmlPullParserException, IOException {
|
|
|
|
|
|
|
|
Map<String, ImportedAccount> accounts = null;
|
|
|
|
|
|
|
|
int eventType = xpp.next();
|
|
|
|
while (!(eventType == XmlPullParser.END_TAG &&
|
|
|
|
StorageExporter.ACCOUNTS_ELEMENT.equals(xpp.getName()))) {
|
|
|
|
|
|
|
|
if(eventType == XmlPullParser.START_TAG) {
|
|
|
|
String element = xpp.getName();
|
|
|
|
if (StorageExporter.ACCOUNT_ELEMENT.equals(element)) {
|
|
|
|
if (accounts == null) {
|
|
|
|
accounts = new HashMap<String, ImportedAccount>();
|
|
|
|
}
|
|
|
|
|
|
|
|
ImportedAccount account = parseAccount(xpp, accountUuids, overview);
|
|
|
|
|
|
|
|
if (!accounts.containsKey(account.uuid)) {
|
|
|
|
accounts.put(account.uuid, account);
|
|
|
|
} else {
|
|
|
|
Log.w(K9.LOG_TAG, "Duplicate account entries with UUID " + account.uuid +
|
|
|
|
". Ignoring!");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Log.w(K9.LOG_TAG, "Unexpected start tag: " + xpp.getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
eventType = xpp.next();
|
2011-02-26 12:31:56 -05:00
|
|
|
}
|
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
return accounts;
|
|
|
|
}
|
|
|
|
|
2011-04-19 17:04:43 -04:00
|
|
|
private static ImportedAccount parseAccount(XmlPullParser xpp, List<String> accountUuids,
|
2011-04-12 21:37:44 -04:00
|
|
|
boolean overview)
|
|
|
|
throws XmlPullParserException, IOException {
|
|
|
|
|
|
|
|
ImportedAccount account = new ImportedAccount();
|
|
|
|
|
|
|
|
String uuid = xpp.getAttributeValue(null, StorageExporter.UUID_ATTRIBUTE);
|
|
|
|
account.uuid = uuid;
|
|
|
|
|
|
|
|
if (overview || accountUuids.contains(uuid)) {
|
|
|
|
int eventType = xpp.next();
|
|
|
|
while (!(eventType == XmlPullParser.END_TAG &&
|
|
|
|
StorageExporter.ACCOUNT_ELEMENT.equals(xpp.getName()))) {
|
|
|
|
|
|
|
|
if(eventType == XmlPullParser.START_TAG) {
|
|
|
|
String element = xpp.getName();
|
|
|
|
if (StorageExporter.NAME_ELEMENT.equals(element)) {
|
|
|
|
account.name = getText(xpp);
|
2011-06-08 23:50:43 -04:00
|
|
|
} else if (StorageExporter.INCOMING_SERVER_ELEMENT.equals(element)) {
|
|
|
|
if (overview) {
|
|
|
|
skipToEndTag(xpp, StorageExporter.INCOMING_SERVER_ELEMENT);
|
|
|
|
} else {
|
|
|
|
account.incoming = parseServerSettings(xpp, StorageExporter.INCOMING_SERVER_ELEMENT);
|
|
|
|
}
|
|
|
|
} else if (StorageExporter.OUTGOING_SERVER_ELEMENT.equals(element)) {
|
|
|
|
if (overview) {
|
|
|
|
skipToEndTag(xpp, StorageExporter.OUTGOING_SERVER_ELEMENT);
|
|
|
|
} else {
|
|
|
|
account.outgoing = parseServerSettings(xpp, StorageExporter.OUTGOING_SERVER_ELEMENT);
|
|
|
|
}
|
2011-04-12 21:37:44 -04:00
|
|
|
} else if (StorageExporter.SETTINGS_ELEMENT.equals(element)) {
|
|
|
|
if (overview) {
|
|
|
|
skipToEndTag(xpp, StorageExporter.SETTINGS_ELEMENT);
|
|
|
|
} else {
|
|
|
|
account.settings = parseSettings(xpp, StorageExporter.SETTINGS_ELEMENT);
|
|
|
|
}
|
|
|
|
} else if (StorageExporter.IDENTITIES_ELEMENT.equals(element)) {
|
|
|
|
if (overview) {
|
|
|
|
skipToEndTag(xpp, StorageExporter.IDENTITIES_ELEMENT);
|
|
|
|
} else {
|
|
|
|
account.identities = parseIdentities(xpp);
|
|
|
|
}
|
|
|
|
} else if (StorageExporter.FOLDERS_ELEMENT.equals(element)) {
|
|
|
|
if (overview) {
|
|
|
|
skipToEndTag(xpp, StorageExporter.FOLDERS_ELEMENT);
|
|
|
|
} else {
|
|
|
|
account.folders = parseFolders(xpp);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Log.w(K9.LOG_TAG, "Unexpected start tag: " + xpp.getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
eventType = xpp.next();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
skipToEndTag(xpp, StorageExporter.ACCOUNT_ELEMENT);
|
|
|
|
Log.i(K9.LOG_TAG, "Skipping account with UUID " + uuid);
|
2011-02-26 12:31:56 -05:00
|
|
|
}
|
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
return account;
|
|
|
|
}
|
|
|
|
|
2011-06-08 23:50:43 -04:00
|
|
|
private static ImportedServer parseServerSettings(XmlPullParser xpp, String endTag)
|
|
|
|
throws XmlPullParserException, IOException {
|
|
|
|
ImportedServer server = new ImportedServer();
|
|
|
|
|
|
|
|
server.type = xpp.getAttributeValue(null, StorageExporter.TYPE_ATTRIBUTE);
|
|
|
|
|
|
|
|
int eventType = xpp.next();
|
|
|
|
while (!(eventType == XmlPullParser.END_TAG && endTag.equals(xpp.getName()))) {
|
|
|
|
if(eventType == XmlPullParser.START_TAG) {
|
|
|
|
String element = xpp.getName();
|
|
|
|
if (StorageExporter.HOST_ELEMENT.equals(element)) {
|
|
|
|
server.host = getText(xpp);
|
|
|
|
} else if (StorageExporter.PORT_ELEMENT.equals(element)) {
|
|
|
|
server.port = getText(xpp);
|
|
|
|
} else if (StorageExporter.CONNECTION_SECURITY_ELEMENT.equals(element)) {
|
|
|
|
server.connectionSecurity = getText(xpp);
|
|
|
|
} else if (StorageExporter.AUTHENTICATION_TYPE_ELEMENT.equals(element)) {
|
|
|
|
server.authenticationType = getText(xpp);
|
|
|
|
} else if (StorageExporter.USERNAME_ELEMENT.equals(element)) {
|
|
|
|
server.username = getText(xpp);
|
|
|
|
} else if (StorageExporter.PASSWORD_ELEMENT.equals(element)) {
|
|
|
|
server.password = getText(xpp);
|
|
|
|
} else if (StorageExporter.EXTRA_ELEMENT.equals(element)) {
|
|
|
|
server.extras = parseSettings(xpp, StorageExporter.EXTRA_ELEMENT);
|
|
|
|
} else {
|
|
|
|
Log.w(K9.LOG_TAG, "Unexpected start tag: " + xpp.getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
eventType = xpp.next();
|
|
|
|
}
|
|
|
|
|
|
|
|
return server;
|
|
|
|
}
|
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
private static List<ImportedIdentity> parseIdentities(XmlPullParser xpp)
|
|
|
|
throws XmlPullParserException, IOException {
|
|
|
|
List<ImportedIdentity> identities = null;
|
|
|
|
|
|
|
|
int eventType = xpp.next();
|
|
|
|
while (!(eventType == XmlPullParser.END_TAG &&
|
|
|
|
StorageExporter.IDENTITIES_ELEMENT.equals(xpp.getName()))) {
|
|
|
|
|
|
|
|
if(eventType == XmlPullParser.START_TAG) {
|
|
|
|
String element = xpp.getName();
|
|
|
|
if (StorageExporter.IDENTITY_ELEMENT.equals(element)) {
|
|
|
|
if (identities == null) {
|
|
|
|
identities = new ArrayList<ImportedIdentity>();
|
|
|
|
}
|
|
|
|
|
|
|
|
ImportedIdentity identity = parseIdentity(xpp);
|
|
|
|
identities.add(identity);
|
|
|
|
} else {
|
|
|
|
Log.w(K9.LOG_TAG, "Unexpected start tag: " + xpp.getName());
|
|
|
|
}
|
2011-02-26 12:31:56 -05:00
|
|
|
}
|
2011-04-12 21:37:44 -04:00
|
|
|
eventType = xpp.next();
|
2011-02-26 12:31:56 -05:00
|
|
|
}
|
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
return identities;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static ImportedIdentity parseIdentity(XmlPullParser xpp)
|
|
|
|
throws XmlPullParserException, IOException {
|
|
|
|
ImportedIdentity identity = new ImportedIdentity();
|
|
|
|
|
|
|
|
int eventType = xpp.next();
|
|
|
|
while (!(eventType == XmlPullParser.END_TAG &&
|
|
|
|
StorageExporter.IDENTITY_ELEMENT.equals(xpp.getName()))) {
|
|
|
|
|
|
|
|
if(eventType == XmlPullParser.START_TAG) {
|
|
|
|
String element = xpp.getName();
|
|
|
|
if (StorageExporter.NAME_ELEMENT.equals(element)) {
|
|
|
|
identity.name = getText(xpp);
|
|
|
|
} else if (StorageExporter.EMAIL_ELEMENT.equals(element)) {
|
|
|
|
identity.email = getText(xpp);
|
|
|
|
} else if (StorageExporter.DESCRIPTION_ELEMENT.equals(element)) {
|
|
|
|
identity.description = getText(xpp);
|
|
|
|
} else if (StorageExporter.SETTINGS_ELEMENT.equals(element)) {
|
|
|
|
identity.settings = parseSettings(xpp, StorageExporter.SETTINGS_ELEMENT);
|
|
|
|
} else {
|
|
|
|
Log.w(K9.LOG_TAG, "Unexpected start tag: " + xpp.getName());
|
|
|
|
}
|
2011-02-26 12:31:56 -05:00
|
|
|
}
|
2011-04-12 21:37:44 -04:00
|
|
|
eventType = xpp.next();
|
2011-02-26 12:31:56 -05:00
|
|
|
}
|
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
return identity;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static List<ImportedFolder> parseFolders(XmlPullParser xpp)
|
|
|
|
throws XmlPullParserException, IOException {
|
|
|
|
List<ImportedFolder> folders = null;
|
|
|
|
|
|
|
|
int eventType = xpp.next();
|
|
|
|
while (!(eventType == XmlPullParser.END_TAG &&
|
|
|
|
StorageExporter.FOLDERS_ELEMENT.equals(xpp.getName()))) {
|
|
|
|
|
|
|
|
if(eventType == XmlPullParser.START_TAG) {
|
|
|
|
String element = xpp.getName();
|
|
|
|
if (StorageExporter.FOLDER_ELEMENT.equals(element)) {
|
|
|
|
if (folders == null) {
|
|
|
|
folders = new ArrayList<ImportedFolder>();
|
|
|
|
}
|
|
|
|
|
|
|
|
ImportedFolder folder = parseFolder(xpp);
|
|
|
|
folders.add(folder);
|
|
|
|
} else {
|
|
|
|
Log.w(K9.LOG_TAG, "Unexpected start tag: " + xpp.getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
eventType = xpp.next();
|
2011-02-26 12:31:56 -05:00
|
|
|
}
|
2011-04-12 21:37:44 -04:00
|
|
|
|
|
|
|
return folders;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static ImportedFolder parseFolder(XmlPullParser xpp)
|
|
|
|
throws XmlPullParserException, IOException {
|
|
|
|
ImportedFolder folder = new ImportedFolder();
|
|
|
|
|
|
|
|
String name = xpp.getAttributeValue(null, StorageExporter.NAME_ATTRIBUTE);
|
|
|
|
folder.name = name;
|
|
|
|
|
|
|
|
folder.settings = parseSettings(xpp, StorageExporter.FOLDER_ELEMENT);
|
|
|
|
|
|
|
|
return folder;
|
|
|
|
}
|
|
|
|
|
2011-06-08 23:50:43 -04:00
|
|
|
private static class ImportedServerSettings extends ServerSettings {
|
|
|
|
private final ImportedServer mImportedServer;
|
|
|
|
|
|
|
|
public ImportedServerSettings(ImportedServer server) {
|
|
|
|
super(server.type, server.host, convertPort(server.port),
|
|
|
|
convertConnectionSecurity(server.connectionSecurity),
|
|
|
|
server.authenticationType, server.username, server.password);
|
|
|
|
mImportedServer = server;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Map<String, String> getExtra() {
|
|
|
|
return (mImportedServer.extras != null) ?
|
|
|
|
Collections.unmodifiableMap(mImportedServer.extras.settings) : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static int convertPort(String port) {
|
|
|
|
try {
|
|
|
|
return Integer.parseInt(port);
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static ConnectionSecurity convertConnectionSecurity(String connectionSecurity) {
|
|
|
|
try {
|
|
|
|
return ConnectionSecurity.valueOf(connectionSecurity);
|
|
|
|
} catch (Exception e) {
|
|
|
|
return ConnectionSecurity.NONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
private static class Imported {
|
|
|
|
public ImportedSettings globalSettings;
|
|
|
|
public Map<String, ImportedAccount> accounts;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static class ImportedSettings {
|
|
|
|
public Map<String, String> settings = new HashMap<String, String>();
|
|
|
|
}
|
|
|
|
|
|
|
|
private static class ImportedAccount {
|
|
|
|
public String uuid;
|
|
|
|
public String name;
|
2011-06-08 23:50:43 -04:00
|
|
|
public ImportedServer incoming;
|
|
|
|
public ImportedServer outgoing;
|
2011-04-12 21:37:44 -04:00
|
|
|
public ImportedSettings settings;
|
|
|
|
public List<ImportedIdentity> identities;
|
|
|
|
public List<ImportedFolder> folders;
|
|
|
|
}
|
|
|
|
|
2011-06-08 23:50:43 -04:00
|
|
|
private static class ImportedServer {
|
|
|
|
public String type;
|
|
|
|
public String host;
|
|
|
|
public String port;
|
|
|
|
public String connectionSecurity;
|
|
|
|
public String authenticationType;
|
|
|
|
public String username;
|
|
|
|
public String password;
|
|
|
|
public ImportedSettings extras;
|
|
|
|
}
|
|
|
|
|
2011-04-12 21:37:44 -04:00
|
|
|
private static class ImportedIdentity {
|
|
|
|
public String name;
|
|
|
|
public String email;
|
|
|
|
public String description;
|
|
|
|
public ImportedSettings settings;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static class ImportedFolder {
|
|
|
|
public String name;
|
|
|
|
public ImportedSettings settings;
|
2011-02-26 12:31:56 -05:00
|
|
|
}
|
|
|
|
}
|