123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311 |
- package eu.kanade.tachiyomi.data.preference
- import android.content.Context
- import android.os.Environment
- import androidx.core.content.edit
- import androidx.core.net.toUri
- import androidx.preference.PreferenceManager
- import com.tfcporciuncula.flow.FlowSharedPreferences
- import com.tfcporciuncula.flow.Preference
- import eu.kanade.tachiyomi.R
- import eu.kanade.tachiyomi.data.database.models.Manga
- import eu.kanade.tachiyomi.data.preference.PreferenceValues.DisplayMode
- import eu.kanade.tachiyomi.data.track.TrackService
- import eu.kanade.tachiyomi.data.track.anilist.Anilist
- import eu.kanade.tachiyomi.widget.ExtendedNavigationView
- import kotlinx.coroutines.flow.Flow
- import kotlinx.coroutines.flow.onEach
- import java.io.File
- import java.text.DateFormat
- import java.text.SimpleDateFormat
- import java.util.Locale
- import eu.kanade.tachiyomi.data.preference.PreferenceKeys as Keys
- import eu.kanade.tachiyomi.data.preference.PreferenceValues as Values
- fun <T> Preference<T>.asImmediateFlow(block: (T) -> Unit): Flow<T> {
- block(get())
- return asFlow()
- .onEach { block(it) }
- }
- operator fun <T> Preference<Set<T>>.plusAssign(item: T) {
- set(get() + item)
- }
- operator fun <T> Preference<Set<T>>.minusAssign(item: T) {
- set(get() - item)
- }
- fun Preference<Boolean>.toggle() {
- set(!get())
- }
- class PreferencesHelper(val context: Context) {
- private val prefs = PreferenceManager.getDefaultSharedPreferences(context)
- private val flowPrefs = FlowSharedPreferences(prefs)
- private val defaultDownloadsDir = File(
- Environment.getExternalStorageDirectory().absolutePath + File.separator +
- context.getString(R.string.app_name),
- "downloads"
- ).toUri()
- private val defaultBackupDir = File(
- Environment.getExternalStorageDirectory().absolutePath + File.separator +
- context.getString(R.string.app_name),
- "backup"
- ).toUri()
- fun startScreen() = prefs.getInt(Keys.startScreen, 1)
- fun confirmExit() = prefs.getBoolean(Keys.confirmExit, false)
- fun hideBottomBar() = flowPrefs.getBoolean(Keys.hideBottomBar, true)
- fun useBiometricLock() = flowPrefs.getBoolean(Keys.useBiometricLock, false)
- fun lockAppAfter() = flowPrefs.getInt(Keys.lockAppAfter, 0)
- fun lastAppUnlock() = flowPrefs.getLong(Keys.lastAppUnlock, 0)
- fun secureScreen() = flowPrefs.getBoolean(Keys.secureScreen, false)
- fun hideNotificationContent() = prefs.getBoolean(Keys.hideNotificationContent, false)
- fun autoUpdateMetadata() = prefs.getBoolean(Keys.autoUpdateMetadata, false)
- fun showLibraryUpdateErrors() = prefs.getBoolean(Keys.showLibraryUpdateErrors, false)
- fun clear() = prefs.edit { clear() }
- fun themeMode() = flowPrefs.getEnum(Keys.themeMode, Values.ThemeMode.system)
- fun themeLight() = flowPrefs.getEnum(Keys.themeLight, Values.LightThemeVariant.default)
- fun themeDark() = flowPrefs.getEnum(Keys.themeDark, Values.DarkThemeVariant.default)
- fun rotation() = flowPrefs.getInt(Keys.rotation, 1)
- fun pageTransitions() = flowPrefs.getBoolean(Keys.enableTransitions, true)
- fun doubleTapAnimSpeed() = flowPrefs.getInt(Keys.doubleTapAnimationSpeed, 500)
- fun showPageNumber() = flowPrefs.getBoolean(Keys.showPageNumber, true)
- fun dualPageSplitPaged() = flowPrefs.getBoolean(Keys.dualPageSplitPaged, false)
- fun dualPageSplitWebtoon() = flowPrefs.getBoolean(Keys.dualPageSplitWebtoon, false)
- fun dualPageInvertPaged() = flowPrefs.getBoolean(Keys.dualPageInvertPaged, false)
- fun dualPageInvertWebtoon() = flowPrefs.getBoolean(Keys.dualPageInvertWebtoon, false)
- fun showReadingMode() = prefs.getBoolean(Keys.showReadingMode, true)
- fun trueColor() = flowPrefs.getBoolean(Keys.trueColor, false)
- fun fullscreen() = flowPrefs.getBoolean(Keys.fullscreen, true)
- fun cutoutShort() = flowPrefs.getBoolean(Keys.cutoutShort, true)
- fun keepScreenOn() = flowPrefs.getBoolean(Keys.keepScreenOn, true)
- fun customBrightness() = flowPrefs.getBoolean(Keys.customBrightness, false)
- fun customBrightnessValue() = flowPrefs.getInt(Keys.customBrightnessValue, 0)
- fun colorFilter() = flowPrefs.getBoolean(Keys.colorFilter, false)
- fun colorFilterValue() = flowPrefs.getInt(Keys.colorFilterValue, 0)
- fun colorFilterMode() = flowPrefs.getInt(Keys.colorFilterMode, 0)
- fun defaultViewer() = prefs.getInt(Keys.defaultViewer, 2)
- fun imageScaleType() = flowPrefs.getInt(Keys.imageScaleType, 1)
- fun zoomStart() = flowPrefs.getInt(Keys.zoomStart, 1)
- fun readerTheme() = flowPrefs.getInt(Keys.readerTheme, 1)
- fun alwaysShowChapterTransition() = flowPrefs.getBoolean(Keys.alwaysShowChapterTransition, true)
- fun cropBorders() = flowPrefs.getBoolean(Keys.cropBorders, false)
- fun cropBordersWebtoon() = flowPrefs.getBoolean(Keys.cropBordersWebtoon, false)
- fun webtoonSidePadding() = flowPrefs.getInt(Keys.webtoonSidePadding, 0)
- fun readWithTapping() = flowPrefs.getBoolean(Keys.readWithTapping, true)
- fun pagerNavInverted() = flowPrefs.getEnum(Keys.pagerNavInverted, Values.TappingInvertMode.NONE)
- fun webtoonNavInverted() = flowPrefs.getEnum(Keys.webtoonNavInverted, Values.TappingInvertMode.NONE)
- fun readWithLongTap() = flowPrefs.getBoolean(Keys.readWithLongTap, true)
- fun readWithVolumeKeys() = flowPrefs.getBoolean(Keys.readWithVolumeKeys, false)
- fun readWithVolumeKeysInverted() = flowPrefs.getBoolean(Keys.readWithVolumeKeysInverted, false)
- fun navigationModePager() = flowPrefs.getInt(Keys.navigationModePager, 0)
- fun navigationModeWebtoon() = flowPrefs.getInt(Keys.navigationModeWebtoon, 0)
- fun showNavigationOverlayNewUser() = flowPrefs.getBoolean(Keys.showNavigationOverlayNewUser, true)
- fun showNavigationOverlayOnStart() = flowPrefs.getBoolean(Keys.showNavigationOverlayOnStart, false)
- fun portraitColumns() = flowPrefs.getInt(Keys.portraitColumns, 0)
- fun landscapeColumns() = flowPrefs.getInt(Keys.landscapeColumns, 0)
- fun jumpToChapters() = prefs.getBoolean(Keys.jumpToChapters, false)
- fun updateOnlyNonCompleted() = prefs.getBoolean(Keys.updateOnlyNonCompleted, false)
- fun autoUpdateTrack() = prefs.getBoolean(Keys.autoUpdateTrack, true)
- fun lastUsedSource() = flowPrefs.getLong(Keys.lastUsedSource, -1)
- fun lastUsedCategory() = flowPrefs.getInt(Keys.lastUsedCategory, 0)
- fun lastVersionCode() = flowPrefs.getInt("last_version_code", 0)
- fun sourceDisplayMode() = flowPrefs.getEnum(Keys.sourceDisplayMode, DisplayMode.COMPACT_GRID)
- fun enabledLanguages() = flowPrefs.getStringSet(Keys.enabledLanguages, setOf("en", Locale.getDefault().language))
- fun trackUsername(sync: TrackService) = prefs.getString(Keys.trackUsername(sync.id), "")
- fun trackPassword(sync: TrackService) = prefs.getString(Keys.trackPassword(sync.id), "")
- fun setTrackCredentials(sync: TrackService, username: String, password: String) {
- prefs.edit {
- putString(Keys.trackUsername(sync.id), username)
- putString(Keys.trackPassword(sync.id), password)
- }
- }
- fun trackToken(sync: TrackService) = flowPrefs.getString(Keys.trackToken(sync.id), "")
- fun anilistScoreType() = flowPrefs.getString("anilist_score_type", Anilist.POINT_10)
- fun backupsDirectory() = flowPrefs.getString(Keys.backupDirectory, defaultBackupDir.toString())
- fun dateFormat(format: String = flowPrefs.getString(Keys.dateFormat, "").get()): DateFormat = when (format) {
- "" -> DateFormat.getDateInstance(DateFormat.SHORT)
- else -> SimpleDateFormat(format, Locale.getDefault())
- }
- fun downloadsDirectory() = flowPrefs.getString(Keys.downloadsDirectory, defaultDownloadsDir.toString())
- fun downloadOnlyOverWifi() = prefs.getBoolean(Keys.downloadOnlyOverWifi, true)
- fun numberOfBackups() = flowPrefs.getInt(Keys.numberOfBackups, 1)
- fun backupInterval() = flowPrefs.getInt(Keys.backupInterval, 0)
- fun removeAfterReadSlots() = prefs.getInt(Keys.removeAfterReadSlots, -1)
- fun removeAfterMarkedAsRead() = prefs.getBoolean(Keys.removeAfterMarkedAsRead, false)
- fun removeBookmarkedChapters() = prefs.getBoolean(Keys.removeBookmarkedChapters, false)
- fun libraryUpdateInterval() = flowPrefs.getInt(Keys.libraryUpdateInterval, 24)
- fun libraryUpdateRestriction() = prefs.getStringSet(Keys.libraryUpdateRestriction, setOf("wifi"))
- fun libraryUpdateCategories() = flowPrefs.getStringSet(Keys.libraryUpdateCategories, emptySet())
- fun libraryUpdateCategoriesExclude() = flowPrefs.getStringSet(Keys.libraryUpdateCategoriesExclude, emptySet())
- fun libraryUpdatePrioritization() = flowPrefs.getInt(Keys.libraryUpdatePrioritization, 0)
- fun libraryDisplayMode() = flowPrefs.getEnum(Keys.libraryDisplayMode, DisplayMode.COMPACT_GRID)
- fun downloadBadge() = flowPrefs.getBoolean(Keys.downloadBadge, false)
- fun downloadedOnly() = flowPrefs.getBoolean(Keys.downloadedOnly, false)
- fun unreadBadge() = flowPrefs.getBoolean(Keys.unreadBadge, true)
- fun categoryTabs() = flowPrefs.getBoolean(Keys.categoryTabs, true)
- fun categoryNumberOfItems() = flowPrefs.getBoolean(Keys.categoryNumberOfItems, false)
- fun filterDownloaded() = flowPrefs.getInt(Keys.filterDownloaded, ExtendedNavigationView.Item.TriStateGroup.State.IGNORE.value)
- fun filterUnread() = flowPrefs.getInt(Keys.filterUnread, ExtendedNavigationView.Item.TriStateGroup.State.IGNORE.value)
- fun filterCompleted() = flowPrefs.getInt(Keys.filterCompleted, ExtendedNavigationView.Item.TriStateGroup.State.IGNORE.value)
- fun filterTracking(name: Int) = flowPrefs.getInt("${Keys.filterTracked}_$name", ExtendedNavigationView.Item.TriStateGroup.State.IGNORE.value)
- fun librarySortingMode() = flowPrefs.getInt(Keys.librarySortingMode, 0)
- fun librarySortingAscending() = flowPrefs.getBoolean("library_sorting_ascending", true)
- fun automaticExtUpdates() = flowPrefs.getBoolean(Keys.automaticExtUpdates, true)
- fun showNsfwSource() = flowPrefs.getBoolean(Keys.showNsfwSource, true)
- fun showNsfwExtension() = flowPrefs.getBoolean(Keys.showNsfwExtension, true)
- fun labelNsfwExtension() = prefs.getBoolean(Keys.labelNsfwExtension, true)
- fun extensionUpdatesCount() = flowPrefs.getInt("ext_updates_count", 0)
- fun lastExtCheck() = flowPrefs.getLong("last_ext_check", 0)
- fun searchPinnedSourcesOnly() = prefs.getBoolean(Keys.searchPinnedSourcesOnly, false)
- fun disabledSources() = flowPrefs.getStringSet("hidden_catalogues", emptySet())
- fun pinnedSources() = flowPrefs.getStringSet("pinned_catalogues", emptySet())
- fun downloadNew() = flowPrefs.getBoolean(Keys.downloadNew, false)
- fun downloadNewCategories() = flowPrefs.getStringSet(Keys.downloadNewCategories, emptySet())
- fun lang() = prefs.getString(Keys.lang, "")
- fun defaultCategory() = prefs.getInt(Keys.defaultCategory, -1)
- fun skipRead() = prefs.getBoolean(Keys.skipRead, false)
- fun skipFiltered() = prefs.getBoolean(Keys.skipFiltered, true)
- fun migrateFlags() = flowPrefs.getInt("migrate_flags", Int.MAX_VALUE)
- fun trustedSignatures() = flowPrefs.getStringSet("trusted_signatures", emptySet())
- fun enableDoh() = prefs.getBoolean(Keys.enableDoh, false)
- fun lastSearchQuerySearchSettings() = flowPrefs.getString("last_search_query", "")
- fun filterChapterByRead() = prefs.getInt(Keys.defaultChapterFilterByRead, Manga.SHOW_ALL)
- fun filterChapterByDownloaded() = prefs.getInt(Keys.defaultChapterFilterByDownloaded, Manga.SHOW_ALL)
- fun filterChapterByBookmarked() = prefs.getInt(Keys.defaultChapterFilterByBookmarked, Manga.SHOW_ALL)
- fun sortChapterBySourceOrNumber() = prefs.getInt(Keys.defaultChapterSortBySourceOrNumber, Manga.SORTING_SOURCE)
- fun displayChapterByNameOrNumber() = prefs.getInt(Keys.defaultChapterDisplayByNameOrNumber, Manga.DISPLAY_NAME)
- fun sortChapterByAscendingOrDescending() = prefs.getInt(Keys.defaultChapterSortByAscendingOrDescending, Manga.SORT_DESC)
- fun incognitoMode() = flowPrefs.getBoolean(Keys.incognitoMode, false)
- fun createLegacyBackup() = flowPrefs.getBoolean(Keys.createLegacyBackup, true)
- fun setChapterSettingsDefault(manga: Manga) {
- prefs.edit {
- putInt(Keys.defaultChapterFilterByRead, manga.readFilter)
- putInt(Keys.defaultChapterFilterByDownloaded, manga.downloadedFilter)
- putInt(Keys.defaultChapterFilterByBookmarked, manga.bookmarkedFilter)
- putInt(Keys.defaultChapterSortBySourceOrNumber, manga.sorting)
- putInt(Keys.defaultChapterDisplayByNameOrNumber, manga.displayMode)
- putInt(Keys.defaultChapterSortByAscendingOrDescending, if (manga.sortDescending()) Manga.SORT_DESC else Manga.SORT_ASC)
- }
- }
- }
|