package com.kabouzeid.gramophone.util; import android.annotation.SuppressLint; import android.content.Context; import android.content.SharedPreferences; import android.preference.PreferenceManager; import android.support.annotation.NonNull; import android.support.annotation.StyleRes; import com.kabouzeid.gramophone.R; import com.kabouzeid.gramophone.helper.SortOrder; import com.kabouzeid.gramophone.ui.fragments.mainactivity.folders.FoldersFragment; import com.kabouzeid.gramophone.ui.fragments.player.NowPlayingScreen; import java.io.File; public final class PreferenceUtil { public static final String GENERAL_THEME = "general_theme"; public static final String DEFAULT_START_PAGE = "default_start_page"; public static final String LAST_PAGE = "last_start_page"; public static final String LAST_MUSIC_CHOOSER = "last_music_chooser"; public static final String NOW_PLAYING_SCREEN_ID = "now_playing_screen_id"; public static final String ARTIST_SORT_ORDER = "artist_sort_order"; public static final String ARTIST_SONG_SORT_ORDER = "artist_song_sort_order"; public static final String ARTIST_ALBUM_SORT_ORDER = "artist_album_sort_order"; public static final String ALBUM_SORT_ORDER = "album_sort_order"; public static final String ALBUM_SONG_SORT_ORDER = "album_song_sort_order"; public static final String SONG_SORT_ORDER = "song_sort_order"; public static final String ALBUM_GRID_SIZE = "album_grid_size"; public static final String ALBUM_GRID_SIZE_LAND = "album_grid_size_land"; public static final String SONG_GRID_SIZE = "song_grid_size"; public static final String SONG_GRID_SIZE_LAND = "song_grid_size_land"; public static final String ARTIST_GRID_SIZE = "artist_grid_size"; public static final String ARTIST_GRID_SIZE_LAND = "artist_grid_size_land"; public static final String ALBUM_COLORED_FOOTERS = "album_colored_footers"; public static final String SONG_COLORED_FOOTERS = "song_colored_footers"; public static final String ARTIST_COLORED_FOOTERS = "artist_colored_footers"; public static final String FORCE_SQUARE_ALBUM_COVER = "force_square_album_art"; public static final String COLORED_NOTIFICATION = "colored_notification"; public static final String COLORED_APP_SHORTCUTS = "colored_app_shortcuts"; public static final String AUDIO_DUCKING = "audio_ducking"; public static final String GAPLESS_PLAYBACK = "gapless_playback"; public static final String LAST_ADDED_CUTOFF_TIMESTAMP = "last_added_cutoff_timestamp"; public static final String ALBUM_ART_ON_LOCKSCREEN = "album_art_on_lockscreen"; public static final String BLURRED_ALBUM_ART = "blurred_album_art"; public static final String LAST_SLEEP_TIMER_VALUE = "last_sleep_timer_value"; public static final String NEXT_SLEEP_TIMER_ELAPSED_REALTIME = "next_sleep_timer_elapsed_real_time"; public static final String IGNORE_MEDIA_STORE_ARTWORK = "ignore_media_store_artwork"; public static final String LAST_CHANGELOG_VERSION = "last_changelog_version"; public static final String INTRO_SHOWN = "intro_shown"; public static final String AUTO_DOWNLOAD_IMAGES_POLICY = "auto_download_images_policy"; public static final String START_DIRECTORY = "start_directory"; private static PreferenceUtil sInstance; private final SharedPreferences mPreferences; private PreferenceUtil(@NonNull final Context context) { mPreferences = PreferenceManager.getDefaultSharedPreferences(context); } public static PreferenceUtil getInstance(@NonNull final Context context) { if (sInstance == null) { sInstance = new PreferenceUtil(context.getApplicationContext()); } return sInstance; } public void registerOnSharedPreferenceChangedListener(SharedPreferences.OnSharedPreferenceChangeListener sharedPreferenceChangeListener) { mPreferences.registerOnSharedPreferenceChangeListener(sharedPreferenceChangeListener); } public void unregisterOnSharedPreferenceChangedListener(SharedPreferences.OnSharedPreferenceChangeListener sharedPreferenceChangeListener) { mPreferences.unregisterOnSharedPreferenceChangeListener(sharedPreferenceChangeListener); } public int getGeneralTheme() { return getThemeResFromPrefValue(mPreferences.getString(GENERAL_THEME, "")); } @StyleRes public static int getThemeResFromPrefValue(String themePrefValue) { switch (themePrefValue) { case "dark": return R.style.Theme_Phonograph; case "black": return R.style.Theme_Phonograph_Black; case "light": default: return R.style.Theme_Phonograph_Light; } } public final int getDefaultStartPage() { return Integer.parseInt(mPreferences.getString(DEFAULT_START_PAGE, "-1")); } public void setLastPage(final int value) { final SharedPreferences.Editor editor = mPreferences.edit(); editor.putInt(LAST_PAGE, value); editor.apply(); } public final int getLastPage() { return mPreferences.getInt(LAST_PAGE, 0); } public void setLastMusicChooser(final int value) { final SharedPreferences.Editor editor = mPreferences.edit(); editor.putInt(LAST_MUSIC_CHOOSER, value); editor.apply(); } public final int getLastMusicChooser() { return mPreferences.getInt(LAST_MUSIC_CHOOSER, 0); } public final NowPlayingScreen getNowPlayingScreen() { int id = mPreferences.getInt(NOW_PLAYING_SCREEN_ID, 0); for (NowPlayingScreen nowPlayingScreen : NowPlayingScreen.values()) { if (nowPlayingScreen.id == id) return nowPlayingScreen; } return NowPlayingScreen.CARD; } @SuppressLint("CommitPrefEdits") public void setNowPlayingScreen(NowPlayingScreen nowPlayingScreen) { final SharedPreferences.Editor editor = mPreferences.edit(); editor.putInt(NOW_PLAYING_SCREEN_ID, nowPlayingScreen.id); editor.commit(); } public final boolean coloredNotification() { return mPreferences.getBoolean(COLORED_NOTIFICATION, true); } public void setColoredAppShortcuts(final boolean value) { final SharedPreferences.Editor editor = mPreferences.edit(); editor.putBoolean(COLORED_APP_SHORTCUTS, value); editor.apply(); } public final boolean coloredAppShortcuts() { return mPreferences.getBoolean(COLORED_APP_SHORTCUTS, true); } public final boolean gaplessPlayback() { return mPreferences.getBoolean(GAPLESS_PLAYBACK, false); } public final boolean audioDucking() { return mPreferences.getBoolean(AUDIO_DUCKING, true); } public final boolean albumArtOnLockscreen() { return mPreferences.getBoolean(ALBUM_ART_ON_LOCKSCREEN, true); } public final boolean blurredAlbumArt() { return mPreferences.getBoolean(BLURRED_ALBUM_ART, false); } public final boolean ignoreMediaStoreArtwork() { return mPreferences.getBoolean(IGNORE_MEDIA_STORE_ARTWORK, false); } public final String getArtistSortOrder() { return mPreferences.getString(ARTIST_SORT_ORDER, SortOrder.ArtistSortOrder.ARTIST_A_Z); } public final String getArtistSongSortOrder() { return mPreferences.getString(ARTIST_SONG_SORT_ORDER, SortOrder.ArtistSongSortOrder.SONG_A_Z); } public final String getArtistAlbumSortOrder() { return mPreferences.getString(ARTIST_ALBUM_SORT_ORDER, SortOrder.ArtistAlbumSortOrder.ALBUM_YEAR); } public final String getAlbumSortOrder() { return mPreferences.getString(ALBUM_SORT_ORDER, SortOrder.AlbumSortOrder.ALBUM_A_Z); } public final String getAlbumSongSortOrder() { return mPreferences.getString(ALBUM_SONG_SORT_ORDER, SortOrder.AlbumSongSortOrder.SONG_TRACK_LIST); } public final String getSongSortOrder() { return mPreferences.getString(SONG_SORT_ORDER, SortOrder.SongSortOrder.SONG_A_Z); } public long getLastAddedCutOffTimestamp() { return mPreferences.getLong(LAST_ADDED_CUTOFF_TIMESTAMP, 0L); } @SuppressLint("CommitPrefEdits") public void setLastAddedCutoffTimestamp(final long timestamp) { final SharedPreferences.Editor editor = mPreferences.edit(); editor.putLong(LAST_ADDED_CUTOFF_TIMESTAMP, timestamp); editor.commit(); } public int getLastSleepTimerValue() { return mPreferences.getInt(LAST_SLEEP_TIMER_VALUE, 30); } public void setLastSleepTimerValue(final int value) { final SharedPreferences.Editor editor = mPreferences.edit(); editor.putInt(LAST_SLEEP_TIMER_VALUE, value); editor.apply(); } public long getNextSleepTimerElapsedRealTime() { return mPreferences.getLong(NEXT_SLEEP_TIMER_ELAPSED_REALTIME, -1); } public void setNextSleepTimerElapsedRealtime(final long value) { final SharedPreferences.Editor editor = mPreferences.edit(); editor.putLong(NEXT_SLEEP_TIMER_ELAPSED_REALTIME, value); editor.apply(); } public void setAlbumGridSize(final int gridSize) { final SharedPreferences.Editor editor = mPreferences.edit(); editor.putInt(ALBUM_GRID_SIZE, gridSize); editor.apply(); } public final int getAlbumGridSize(Context context) { return mPreferences.getInt(ALBUM_GRID_SIZE, context.getResources().getInteger(R.integer.default_grid_columns)); } public void setSongGridSize(final int gridSize) { final SharedPreferences.Editor editor = mPreferences.edit(); editor.putInt(SONG_GRID_SIZE, gridSize); editor.apply(); } public final int getSongGridSize(Context context) { return mPreferences.getInt(SONG_GRID_SIZE, context.getResources().getInteger(R.integer.default_list_columns)); } public void setArtistGridSize(final int gridSize) { final SharedPreferences.Editor editor = mPreferences.edit(); editor.putInt(ARTIST_GRID_SIZE, gridSize); editor.apply(); } public final int getArtistGridSize(Context context) { return mPreferences.getInt(ARTIST_GRID_SIZE, context.getResources().getInteger(R.integer.default_list_columns)); } public void setAlbumGridSizeLand(final int gridSize) { final SharedPreferences.Editor editor = mPreferences.edit(); editor.putInt(ALBUM_GRID_SIZE_LAND, gridSize); editor.apply(); } public final int getAlbumGridSizeLand(Context context) { return mPreferences.getInt(ALBUM_GRID_SIZE_LAND, context.getResources().getInteger(R.integer.default_grid_columns_land)); } public void setSongGridSizeLand(final int gridSize) { final SharedPreferences.Editor editor = mPreferences.edit(); editor.putInt(SONG_GRID_SIZE_LAND, gridSize); editor.apply(); } public final int getSongGridSizeLand(Context context) { return mPreferences.getInt(SONG_GRID_SIZE_LAND, context.getResources().getInteger(R.integer.default_list_columns_land)); } public void setArtistGridSizeLand(final int gridSize) { final SharedPreferences.Editor editor = mPreferences.edit(); editor.putInt(ARTIST_GRID_SIZE_LAND, gridSize); editor.apply(); } public final int getArtistGridSizeLand(Context context) { return mPreferences.getInt(ARTIST_GRID_SIZE_LAND, context.getResources().getInteger(R.integer.default_list_columns_land)); } public void setAlbumColoredFooters(final boolean value) { final SharedPreferences.Editor editor = mPreferences.edit(); editor.putBoolean(ALBUM_COLORED_FOOTERS, value); editor.apply(); } public final boolean albumColoredFooters() { return mPreferences.getBoolean(ALBUM_COLORED_FOOTERS, true); } public void setSongColoredFooters(final boolean value) { final SharedPreferences.Editor editor = mPreferences.edit(); editor.putBoolean(SONG_COLORED_FOOTERS, value); editor.apply(); } public final boolean songColoredFooters() { return mPreferences.getBoolean(SONG_COLORED_FOOTERS, true); } public void setArtistColoredFooters(final boolean value) { final SharedPreferences.Editor editor = mPreferences.edit(); editor.putBoolean(ARTIST_COLORED_FOOTERS, value); editor.apply(); } public final boolean artistColoredFooters() { return mPreferences.getBoolean(ARTIST_COLORED_FOOTERS, true); } public void setLastChangeLogVersion(int version) { mPreferences.edit().putInt(LAST_CHANGELOG_VERSION, version).apply(); } public final int getLastChangelogVersion() { return mPreferences.getInt(LAST_CHANGELOG_VERSION, -1); } @SuppressLint("CommitPrefEdits") public void setIntroShown() { // don't use apply here mPreferences.edit().putBoolean(INTRO_SHOWN, true).commit(); } public final boolean introShown() { return mPreferences.getBoolean(INTRO_SHOWN, false); } public final String autoDownloadImagesPolicy() { return mPreferences.getString(AUTO_DOWNLOAD_IMAGES_POLICY, "only_wifi"); } public final File getStartDirectory() { return new File(mPreferences.getString(START_DIRECTORY, FoldersFragment.getDefaultStartDirectory().getPath())); } public void setStartDirectory(File file) { final SharedPreferences.Editor editor = mPreferences.edit(); editor.putString(START_DIRECTORY, file.getPath()); editor.apply(); } }