/* * Copyright (c) 2015. Jonas Kalderstam * * This program 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. * * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. */ package com.nononsenseapps.notepad.util; import android.content.Context; import android.content.SharedPreferences; import android.preference.PreferenceManager; import android.support.annotation.NonNull; import android.support.annotation.StringRes; import com.nononsenseapps.notepad.R; import com.nononsenseapps.notepad.ui.common.DialogPasswordSettings; import com.nononsenseapps.notepad.data.remote.orgmodedropbox.DropboxSyncHelper; import com.nononsenseapps.notepad.data.remote.orgmodedropbox.DropboxSynchronizer; import com.nononsenseapps.notepad.data.local.orgmode.SDSynchronizer; /** * Helper class to save common options to shared preferences. */ public class SharedPreferencesHelper { private static SharedPreferences Prefs(@NonNull Context context) { return PreferenceManager.getDefaultSharedPreferences(context); } private static String S(@NonNull Context context, @StringRes int id) { return context.getString(id); } public static boolean isSdSyncEnabled(@NonNull Context context) { return Prefs(context).getBoolean(S(context, R.string.const_preference_sdcard_enabled_key) , false); } public static void disableSdCardSync(@NonNull Context context) { Prefs(context).edit().putBoolean(S(context, R.string.const_preference_sdcard_enabled_key) , false).apply(); } public static String getSdDir(@NonNull Context context) { return Prefs(context).getString(S(context, R.string.const_preference_sdcard_dir_key), SDSynchronizer.DEFAULT_ORG_DIR); } public static boolean isDropboxSyncEnabled(@NonNull Context context) { return Prefs(context).getBoolean(S(context, R.string .const_preference_dropbox_enabled_key), false); } public static void disableDropboxSync(@NonNull Context context) { Prefs(context).edit().putBoolean(S(context, R.string .const_preference_dropbox_enabled_key), false) .remove(S(context, R.string.const_preference_dropbox_account_key)) .apply(); DropboxSyncHelper dropboxSyncHelper = new DropboxSyncHelper(context); dropboxSyncHelper.unlinkAccount(); } public static String getDropboxAccount(@NonNull Context context) { return Prefs(context).getString(S(context, R.string.const_preference_dropbox_account_key), ""); } public static String getDropboxDir(@NonNull Context context) { return Prefs(context).getString(S(context, R.string.const_preference_dropbox_dir_key), DropboxSynchronizer.DEFAULT_DIR); } public static boolean isCurrentThemeLight(@NonNull Context context) { final String selectedTheme = getCurrentTheme(context, ""); final String dark = S(context, R.string.const_preference_theme_dark); final String black = S(context, R.string.const_preference_theme_black); return !dark.equals(selectedTheme) && !black.equals(selectedTheme); } public static @NonNull String getCurrentTheme(@NonNull Context context, @NonNull String defaultValue) { final String key = S(context, R.string.const_preference_theme_key); return Prefs(context).getString(key, defaultValue); } public static void setSortingDue(@NonNull Context context) { putString(context, R.string.pref_sorttype, R.string.const_duedate); } public static void setSortingManual(@NonNull Context context) { putString(context, R.string.pref_sorttype, R.string.const_possubsort); } public static void setSortingAlphabetic(Context context) { putString(context, R.string.pref_sorttype, R.string.const_alphabetic); } public static void putString(@NonNull Context context, @StringRes int key, @StringRes int value) { put(context, S(context, key), S(context, value)); } public static void put(@NonNull Context context, @NonNull String key, @NonNull String value) { Prefs(context).edit().putString(key, value).apply(); } public static void put(@NonNull Context context, @NonNull String key, boolean value) { Prefs(context).edit().putBoolean(key, value).apply(); } public static void put(@NonNull Context context, @StringRes int key, boolean value) { put(context, S(context, key), value); } public static @NonNull String getGoogleAccount(@NonNull Context context) { return Prefs(context).getString(S(context, R.string.const_preference_gtask_account_key), ""); } public static boolean isPasswordSet(@NonNull Context context) { return !Prefs(context).getString(DialogPasswordSettings.KEY_PASSWORD, "").isEmpty(); } public static void setDropboxAccount(@NonNull Context context, @NonNull String account) { put(context, S(context, R.string.const_preference_dropbox_account_key), account); } }