Search in sources :

Example 6 with StorageEditor

use of com.fsck.k9.preferences.StorageEditor in project k-9 by k9mail.

the class Account method delete.

protected synchronized void delete(Preferences preferences) {
    deleteCertificates();
    // Get the list of account UUIDs
    String[] uuids = preferences.getStorage().getString("accountUuids", "").split(",");
    // Create a list of all account UUIDs excluding this account
    List<String> newUuids = new ArrayList<>(uuids.length);
    for (String uuid : uuids) {
        if (!uuid.equals(mUuid)) {
            newUuids.add(uuid);
        }
    }
    StorageEditor editor = preferences.getStorage().edit();
    // Only change the 'accountUuids' value if this account's UUID was listed before
    if (newUuids.size() < uuids.length) {
        String accountUuids = Utility.combine(newUuids.toArray(), ',');
        editor.putString("accountUuids", accountUuids);
    }
    editor.remove(mUuid + ".storeUri");
    editor.remove(mUuid + ".transportUri");
    editor.remove(mUuid + ".description");
    editor.remove(mUuid + ".name");
    editor.remove(mUuid + ".email");
    editor.remove(mUuid + ".alwaysBcc");
    editor.remove(mUuid + ".automaticCheckIntervalMinutes");
    editor.remove(mUuid + ".pushPollOnConnect");
    editor.remove(mUuid + ".idleRefreshMinutes");
    editor.remove(mUuid + ".lastAutomaticCheckTime");
    editor.remove(mUuid + ".latestOldMessageSeenTime");
    editor.remove(mUuid + ".notifyNewMail");
    editor.remove(mUuid + ".notifySelfNewMail");
    editor.remove(mUuid + ".deletePolicy");
    editor.remove(mUuid + ".draftsFolderName");
    editor.remove(mUuid + ".sentFolderName");
    editor.remove(mUuid + ".trashFolderName");
    editor.remove(mUuid + ".archiveFolderName");
    editor.remove(mUuid + ".spamFolderName");
    editor.remove(mUuid + ".autoExpandFolderName");
    editor.remove(mUuid + ".accountNumber");
    editor.remove(mUuid + ".vibrate");
    editor.remove(mUuid + ".vibratePattern");
    editor.remove(mUuid + ".vibrateTimes");
    editor.remove(mUuid + ".ring");
    editor.remove(mUuid + ".ringtone");
    editor.remove(mUuid + ".folderDisplayMode");
    editor.remove(mUuid + ".folderSyncMode");
    editor.remove(mUuid + ".folderPushMode");
    editor.remove(mUuid + ".folderTargetMode");
    editor.remove(mUuid + ".signatureBeforeQuotedText");
    editor.remove(mUuid + ".expungePolicy");
    editor.remove(mUuid + ".syncRemoteDeletions");
    editor.remove(mUuid + ".maxPushFolders");
    editor.remove(mUuid + ".searchableFolders");
    editor.remove(mUuid + ".chipColor");
    editor.remove(mUuid + ".led");
    editor.remove(mUuid + ".ledColor");
    editor.remove(mUuid + ".goToUnreadMessageSearch");
    editor.remove(mUuid + ".subscribedFoldersOnly");
    editor.remove(mUuid + ".maximumPolledMessageAge");
    editor.remove(mUuid + ".maximumAutoDownloadMessageSize");
    editor.remove(mUuid + ".messageFormatAuto");
    editor.remove(mUuid + ".quoteStyle");
    editor.remove(mUuid + ".quotePrefix");
    editor.remove(mUuid + ".sortTypeEnum");
    editor.remove(mUuid + ".sortAscending");
    editor.remove(mUuid + ".showPicturesEnum");
    editor.remove(mUuid + ".replyAfterQuote");
    editor.remove(mUuid + ".stripSignature");
    // this is no longer set, but cleans up legacy values
    editor.remove(mUuid + ".cryptoApp");
    editor.remove(mUuid + ".cryptoAutoSignature");
    editor.remove(mUuid + ".cryptoAutoEncrypt");
    editor.remove(mUuid + ".cryptoApp");
    editor.remove(mUuid + ".cryptoKey");
    editor.remove(mUuid + ".cryptoSupportSignOnly");
    editor.remove(mUuid + ".enabled");
    editor.remove(mUuid + ".markMessageAsReadOnView");
    editor.remove(mUuid + ".alwaysShowCcBcc");
    editor.remove(mUuid + ".allowRemoteSearch");
    editor.remove(mUuid + ".remoteSearchFullText");
    editor.remove(mUuid + ".remoteSearchNumResults");
    editor.remove(mUuid + ".defaultQuotedTextShown");
    editor.remove(mUuid + ".displayCount");
    editor.remove(mUuid + ".inboxFolderName");
    editor.remove(mUuid + ".localStorageProvider");
    editor.remove(mUuid + ".messageFormat");
    editor.remove(mUuid + ".messageReadReceipt");
    editor.remove(mUuid + ".notifyMailCheck");
    for (NetworkType type : NetworkType.values()) {
        editor.remove(mUuid + ".useCompression." + type.name());
    }
    deleteIdentities(preferences.getStorage(), editor);
    // TODO: Remove preference settings that may exist for individual
    // folders in the account.
    editor.commit();
}
Also used : NetworkType(com.fsck.k9.mail.NetworkType) ArrayList(java.util.ArrayList) StorageEditor(com.fsck.k9.preferences.StorageEditor)

Example 7 with StorageEditor

use of com.fsck.k9.preferences.StorageEditor in project k-9 by k9mail.

the class Account method save.

public synchronized void save(Preferences preferences) {
    StorageEditor editor = preferences.getStorage().edit();
    if (!preferences.getStorage().getString("accountUuids", "").contains(mUuid)) {
        /*
             * When the account is first created we assign it a unique account number. The
             * account number will be unique to that account for the lifetime of the account.
             * So, we get all the existing account numbers, sort them ascending, loop through
             * the list and check if the number is greater than 1 + the previous number. If so
             * we use the previous number + 1 as the account number. This refills gaps.
             * mAccountNumber starts as -1 on a newly created account. It must be -1 for this
             * algorithm to work.
             *
             * I bet there is a much smarter way to do this. Anyone like to suggest it?
             */
        List<Account> accounts = preferences.getAccounts();
        int[] accountNumbers = new int[accounts.size()];
        for (int i = 0; i < accounts.size(); i++) {
            accountNumbers[i] = accounts.get(i).getAccountNumber();
        }
        Arrays.sort(accountNumbers);
        for (int accountNumber : accountNumbers) {
            if (accountNumber > mAccountNumber + 1) {
                break;
            }
            mAccountNumber = accountNumber;
        }
        mAccountNumber++;
        String accountUuids = preferences.getStorage().getString("accountUuids", "");
        accountUuids += (accountUuids.length() != 0 ? "," : "") + mUuid;
        editor.putString("accountUuids", accountUuids);
    }
    editor.putString(mUuid + ".storeUri", Base64.encode(mStoreUri));
    editor.putString(mUuid + ".localStorageProvider", mLocalStorageProviderId);
    editor.putString(mUuid + ".transportUri", Base64.encode(mTransportUri));
    editor.putString(mUuid + ".description", mDescription);
    editor.putString(mUuid + ".alwaysBcc", mAlwaysBcc);
    editor.putInt(mUuid + ".automaticCheckIntervalMinutes", mAutomaticCheckIntervalMinutes);
    editor.putInt(mUuid + ".idleRefreshMinutes", mIdleRefreshMinutes);
    editor.putBoolean(mUuid + ".pushPollOnConnect", mPushPollOnConnect);
    editor.putInt(mUuid + ".displayCount", mDisplayCount);
    editor.putLong(mUuid + ".latestOldMessageSeenTime", mLatestOldMessageSeenTime);
    editor.putBoolean(mUuid + ".notifyNewMail", mNotifyNewMail);
    editor.putString(mUuid + ".folderNotifyNewMailMode", mFolderNotifyNewMailMode.name());
    editor.putBoolean(mUuid + ".notifySelfNewMail", mNotifySelfNewMail);
    editor.putBoolean(mUuid + ".notifyContactsMailOnly", mNotifyContactsMailOnly);
    editor.putBoolean(mUuid + ".notifyMailCheck", mNotifySync);
    editor.putInt(mUuid + ".deletePolicy", mDeletePolicy.setting);
    editor.putString(mUuid + ".inboxFolderName", mInboxFolderName);
    editor.putString(mUuid + ".draftsFolderName", mDraftsFolderName);
    editor.putString(mUuid + ".sentFolderName", mSentFolderName);
    editor.putString(mUuid + ".trashFolderName", mTrashFolderName);
    editor.putString(mUuid + ".archiveFolderName", mArchiveFolderName);
    editor.putString(mUuid + ".spamFolderName", mSpamFolderName);
    editor.putString(mUuid + ".autoExpandFolderName", mAutoExpandFolderName);
    editor.putInt(mUuid + ".accountNumber", mAccountNumber);
    editor.putString(mUuid + ".sortTypeEnum", mSortType.name());
    editor.putBoolean(mUuid + ".sortAscending", mSortAscending.get(mSortType));
    editor.putString(mUuid + ".showPicturesEnum", mShowPictures.name());
    editor.putString(mUuid + ".folderDisplayMode", mFolderDisplayMode.name());
    editor.putString(mUuid + ".folderSyncMode", mFolderSyncMode.name());
    editor.putString(mUuid + ".folderPushMode", mFolderPushMode.name());
    editor.putString(mUuid + ".folderTargetMode", mFolderTargetMode.name());
    editor.putBoolean(mUuid + ".signatureBeforeQuotedText", this.mIsSignatureBeforeQuotedText);
    editor.putString(mUuid + ".expungePolicy", mExpungePolicy.name());
    editor.putBoolean(mUuid + ".syncRemoteDeletions", mSyncRemoteDeletions);
    editor.putInt(mUuid + ".maxPushFolders", mMaxPushFolders);
    editor.putString(mUuid + ".searchableFolders", searchableFolders.name());
    editor.putInt(mUuid + ".chipColor", mChipColor);
    editor.putBoolean(mUuid + ".goToUnreadMessageSearch", goToUnreadMessageSearch);
    editor.putBoolean(mUuid + ".subscribedFoldersOnly", subscribedFoldersOnly);
    editor.putInt(mUuid + ".maximumPolledMessageAge", maximumPolledMessageAge);
    editor.putInt(mUuid + ".maximumAutoDownloadMessageSize", maximumAutoDownloadMessageSize);
    if (MessageFormat.AUTO.equals(mMessageFormat)) {
        // saving MessageFormat.AUTO as is to the database will cause downgrades to crash on
        // startup, so we save as MessageFormat.TEXT instead with a separate flag for auto.
        editor.putString(mUuid + ".messageFormat", Account.MessageFormat.TEXT.name());
        mMessageFormatAuto = true;
    } else {
        editor.putString(mUuid + ".messageFormat", mMessageFormat.name());
        mMessageFormatAuto = false;
    }
    editor.putBoolean(mUuid + ".messageFormatAuto", mMessageFormatAuto);
    editor.putBoolean(mUuid + ".messageReadReceipt", mMessageReadReceipt);
    editor.putString(mUuid + ".quoteStyle", mQuoteStyle.name());
    editor.putString(mUuid + ".quotePrefix", mQuotePrefix);
    editor.putBoolean(mUuid + ".defaultQuotedTextShown", mDefaultQuotedTextShown);
    editor.putBoolean(mUuid + ".replyAfterQuote", mReplyAfterQuote);
    editor.putBoolean(mUuid + ".stripSignature", mStripSignature);
    editor.putLong(mUuid + ".cryptoKey", mCryptoKey);
    editor.putBoolean(mUuid + ".allowRemoteSearch", mAllowRemoteSearch);
    editor.putBoolean(mUuid + ".remoteSearchFullText", mRemoteSearchFullText);
    editor.putInt(mUuid + ".remoteSearchNumResults", mRemoteSearchNumResults);
    editor.putBoolean(mUuid + ".enabled", mEnabled);
    editor.putBoolean(mUuid + ".markMessageAsReadOnView", mMarkMessageAsReadOnView);
    editor.putBoolean(mUuid + ".alwaysShowCcBcc", mAlwaysShowCcBcc);
    editor.putBoolean(mUuid + ".vibrate", mNotificationSetting.shouldVibrate());
    editor.putInt(mUuid + ".vibratePattern", mNotificationSetting.getVibratePattern());
    editor.putInt(mUuid + ".vibrateTimes", mNotificationSetting.getVibrateTimes());
    editor.putBoolean(mUuid + ".ring", mNotificationSetting.shouldRing());
    editor.putString(mUuid + ".ringtone", mNotificationSetting.getRingtone());
    editor.putBoolean(mUuid + ".led", mNotificationSetting.isLed());
    editor.putInt(mUuid + ".ledColor", mNotificationSetting.getLedColor());
    for (NetworkType type : NetworkType.values()) {
        Boolean useCompression = compressionMap.get(type);
        if (useCompression != null) {
            editor.putBoolean(mUuid + ".useCompression." + type, useCompression);
        }
    }
    saveIdentities(preferences.getStorage(), editor);
    editor.commit();
}
Also used : NetworkType(com.fsck.k9.mail.NetworkType) StorageEditor(com.fsck.k9.preferences.StorageEditor)

Example 8 with StorageEditor

use of com.fsck.k9.preferences.StorageEditor in project k-9 by k9mail.

the class MigrationTo42 method from41MoveFolderPreferences.

public static void from41MoveFolderPreferences(MigrationsHelper migrationsHelper) {
    try {
        LocalStore localStore = migrationsHelper.getLocalStore();
        Storage storage = migrationsHelper.getStorage();
        long startTime = System.currentTimeMillis();
        StorageEditor editor = storage.edit();
        List<? extends Folder> folders = localStore.getPersonalNamespaces(true);
        for (Folder folder : folders) {
            if (folder instanceof LocalFolder) {
                LocalFolder lFolder = (LocalFolder) folder;
                lFolder.save(editor);
            }
        }
        editor.commit();
        long endTime = System.currentTimeMillis();
        Timber.i("Putting folder preferences for %d folders back into Preferences took %d ms", folders.size(), endTime - startTime);
    } catch (Exception e) {
        Timber.e(e, "Could not replace Preferences in upgrade from DB_VERSION 41");
    }
}
Also used : LocalFolder(com.fsck.k9.mailstore.LocalFolder) Storage(com.fsck.k9.preferences.Storage) LocalStore(com.fsck.k9.mailstore.LocalStore) Folder(com.fsck.k9.mail.Folder) LocalFolder(com.fsck.k9.mailstore.LocalFolder) StorageEditor(com.fsck.k9.preferences.StorageEditor)

Example 9 with StorageEditor

use of com.fsck.k9.preferences.StorageEditor in project k-9 by k9mail.

the class LocalFolder method save.

public void save() throws MessagingException {
    StorageEditor editor = this.localStore.getStorage().edit();
    save(editor);
    editor.commit();
}
Also used : StorageEditor(com.fsck.k9.preferences.StorageEditor)

Example 10 with StorageEditor

use of com.fsck.k9.preferences.StorageEditor in project k-9 by k9mail.

the class LocalFolder method delete.

public void delete() throws MessagingException {
    String id = getPrefId();
    StorageEditor editor = this.localStore.getStorage().edit();
    editor.remove(id + ".displayMode");
    editor.remove(id + ".syncMode");
    editor.remove(id + ".pushMode");
    editor.remove(id + ".inTopGroup");
    editor.remove(id + ".integrate");
    editor.commit();
}
Also used : StorageEditor(com.fsck.k9.preferences.StorageEditor)

Aggregations

StorageEditor (com.fsck.k9.preferences.StorageEditor)14 Preferences (com.fsck.k9.Preferences)6 Storage (com.fsck.k9.preferences.Storage)6 Account (com.fsck.k9.Account)4 Intent (android.content.Intent)2 SharedPreferences (android.content.SharedPreferences)2 NetworkType (com.fsck.k9.mail.NetworkType)2 InvalidSettingValueException (com.fsck.k9.preferences.Settings.InvalidSettingValueException)2 ArrayList (java.util.ArrayList)2 Context (android.content.Context)1 Toast (android.widget.Toast)1 BACKGROUND_OPS (com.fsck.k9.K9.BACKGROUND_OPS)1 Folder (com.fsck.k9.mail.Folder)1 ServerSettings (com.fsck.k9.mail.ServerSettings)1 LocalFolder (com.fsck.k9.mailstore.LocalFolder)1 LocalStore (com.fsck.k9.mailstore.LocalStore)1 IOException (java.io.IOException)1 HashMap (java.util.HashMap)1 Map (java.util.Map)1 XmlPullParserException (org.xmlpull.v1.XmlPullParserException)1