PreferencesHelper.kt 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. package eu.kanade.tachiyomi.data.preference
  2. import android.content.Context
  3. import android.os.Environment
  4. import androidx.core.content.edit
  5. import androidx.core.net.toUri
  6. import androidx.preference.PreferenceManager
  7. import com.tfcporciuncula.flow.FlowSharedPreferences
  8. import com.tfcporciuncula.flow.Preference
  9. import eu.kanade.tachiyomi.R
  10. import eu.kanade.tachiyomi.data.database.models.Manga
  11. import eu.kanade.tachiyomi.data.preference.PreferenceValues.DisplayMode
  12. import eu.kanade.tachiyomi.data.track.TrackService
  13. import eu.kanade.tachiyomi.data.track.anilist.Anilist
  14. import eu.kanade.tachiyomi.widget.ExtendedNavigationView
  15. import kotlinx.coroutines.flow.Flow
  16. import kotlinx.coroutines.flow.onEach
  17. import java.io.File
  18. import java.text.DateFormat
  19. import java.text.SimpleDateFormat
  20. import java.util.Locale
  21. import eu.kanade.tachiyomi.data.preference.PreferenceKeys as Keys
  22. import eu.kanade.tachiyomi.data.preference.PreferenceValues as Values
  23. fun <T> Preference<T>.asImmediateFlow(block: (T) -> Unit): Flow<T> {
  24. block(get())
  25. return asFlow()
  26. .onEach { block(it) }
  27. }
  28. operator fun <T> Preference<Set<T>>.plusAssign(item: T) {
  29. set(get() + item)
  30. }
  31. operator fun <T> Preference<Set<T>>.minusAssign(item: T) {
  32. set(get() - item)
  33. }
  34. fun Preference<Boolean>.toggle() {
  35. set(!get())
  36. }
  37. class PreferencesHelper(val context: Context) {
  38. private val prefs = PreferenceManager.getDefaultSharedPreferences(context)
  39. private val flowPrefs = FlowSharedPreferences(prefs)
  40. private val defaultDownloadsDir = File(
  41. Environment.getExternalStorageDirectory().absolutePath + File.separator +
  42. context.getString(R.string.app_name),
  43. "downloads"
  44. ).toUri()
  45. private val defaultBackupDir = File(
  46. Environment.getExternalStorageDirectory().absolutePath + File.separator +
  47. context.getString(R.string.app_name),
  48. "backup"
  49. ).toUri()
  50. fun startScreen() = prefs.getInt(Keys.startScreen, 1)
  51. fun confirmExit() = prefs.getBoolean(Keys.confirmExit, false)
  52. fun hideBottomBar() = flowPrefs.getBoolean(Keys.hideBottomBar, true)
  53. fun useBiometricLock() = flowPrefs.getBoolean(Keys.useBiometricLock, false)
  54. fun lockAppAfter() = flowPrefs.getInt(Keys.lockAppAfter, 0)
  55. fun lastAppUnlock() = flowPrefs.getLong(Keys.lastAppUnlock, 0)
  56. fun secureScreen() = flowPrefs.getBoolean(Keys.secureScreen, false)
  57. fun hideNotificationContent() = prefs.getBoolean(Keys.hideNotificationContent, false)
  58. fun autoUpdateMetadata() = prefs.getBoolean(Keys.autoUpdateMetadata, false)
  59. fun showLibraryUpdateErrors() = prefs.getBoolean(Keys.showLibraryUpdateErrors, false)
  60. fun clear() = prefs.edit { clear() }
  61. fun themeMode() = flowPrefs.getEnum(Keys.themeMode, Values.ThemeMode.system)
  62. fun themeLight() = flowPrefs.getEnum(Keys.themeLight, Values.LightThemeVariant.default)
  63. fun themeDark() = flowPrefs.getEnum(Keys.themeDark, Values.DarkThemeVariant.default)
  64. fun rotation() = flowPrefs.getInt(Keys.rotation, 1)
  65. fun pageTransitions() = flowPrefs.getBoolean(Keys.enableTransitions, true)
  66. fun doubleTapAnimSpeed() = flowPrefs.getInt(Keys.doubleTapAnimationSpeed, 500)
  67. fun showPageNumber() = flowPrefs.getBoolean(Keys.showPageNumber, true)
  68. fun dualPageSplitPaged() = flowPrefs.getBoolean(Keys.dualPageSplitPaged, false)
  69. fun dualPageSplitWebtoon() = flowPrefs.getBoolean(Keys.dualPageSplitWebtoon, false)
  70. fun dualPageInvertPaged() = flowPrefs.getBoolean(Keys.dualPageInvertPaged, false)
  71. fun dualPageInvertWebtoon() = flowPrefs.getBoolean(Keys.dualPageInvertWebtoon, false)
  72. fun showReadingMode() = prefs.getBoolean(Keys.showReadingMode, true)
  73. fun trueColor() = flowPrefs.getBoolean(Keys.trueColor, false)
  74. fun fullscreen() = flowPrefs.getBoolean(Keys.fullscreen, true)
  75. fun cutoutShort() = flowPrefs.getBoolean(Keys.cutoutShort, true)
  76. fun keepScreenOn() = flowPrefs.getBoolean(Keys.keepScreenOn, true)
  77. fun customBrightness() = flowPrefs.getBoolean(Keys.customBrightness, false)
  78. fun customBrightnessValue() = flowPrefs.getInt(Keys.customBrightnessValue, 0)
  79. fun colorFilter() = flowPrefs.getBoolean(Keys.colorFilter, false)
  80. fun colorFilterValue() = flowPrefs.getInt(Keys.colorFilterValue, 0)
  81. fun colorFilterMode() = flowPrefs.getInt(Keys.colorFilterMode, 0)
  82. fun defaultViewer() = prefs.getInt(Keys.defaultViewer, 2)
  83. fun imageScaleType() = flowPrefs.getInt(Keys.imageScaleType, 1)
  84. fun zoomStart() = flowPrefs.getInt(Keys.zoomStart, 1)
  85. fun readerTheme() = flowPrefs.getInt(Keys.readerTheme, 1)
  86. fun alwaysShowChapterTransition() = flowPrefs.getBoolean(Keys.alwaysShowChapterTransition, true)
  87. fun cropBorders() = flowPrefs.getBoolean(Keys.cropBorders, false)
  88. fun cropBordersWebtoon() = flowPrefs.getBoolean(Keys.cropBordersWebtoon, false)
  89. fun webtoonSidePadding() = flowPrefs.getInt(Keys.webtoonSidePadding, 0)
  90. fun readWithTapping() = flowPrefs.getBoolean(Keys.readWithTapping, true)
  91. fun pagerNavInverted() = flowPrefs.getEnum(Keys.pagerNavInverted, Values.TappingInvertMode.NONE)
  92. fun webtoonNavInverted() = flowPrefs.getEnum(Keys.webtoonNavInverted, Values.TappingInvertMode.NONE)
  93. fun readWithLongTap() = flowPrefs.getBoolean(Keys.readWithLongTap, true)
  94. fun readWithVolumeKeys() = flowPrefs.getBoolean(Keys.readWithVolumeKeys, false)
  95. fun readWithVolumeKeysInverted() = flowPrefs.getBoolean(Keys.readWithVolumeKeysInverted, false)
  96. fun navigationModePager() = flowPrefs.getInt(Keys.navigationModePager, 0)
  97. fun navigationModeWebtoon() = flowPrefs.getInt(Keys.navigationModeWebtoon, 0)
  98. fun showNavigationOverlayNewUser() = flowPrefs.getBoolean(Keys.showNavigationOverlayNewUser, true)
  99. fun showNavigationOverlayOnStart() = flowPrefs.getBoolean(Keys.showNavigationOverlayOnStart, false)
  100. fun portraitColumns() = flowPrefs.getInt(Keys.portraitColumns, 0)
  101. fun landscapeColumns() = flowPrefs.getInt(Keys.landscapeColumns, 0)
  102. fun jumpToChapters() = prefs.getBoolean(Keys.jumpToChapters, false)
  103. fun updateOnlyNonCompleted() = prefs.getBoolean(Keys.updateOnlyNonCompleted, false)
  104. fun autoUpdateTrack() = prefs.getBoolean(Keys.autoUpdateTrack, true)
  105. fun lastUsedSource() = flowPrefs.getLong(Keys.lastUsedSource, -1)
  106. fun lastUsedCategory() = flowPrefs.getInt(Keys.lastUsedCategory, 0)
  107. fun lastVersionCode() = flowPrefs.getInt("last_version_code", 0)
  108. fun sourceDisplayMode() = flowPrefs.getEnum(Keys.sourceDisplayMode, DisplayMode.COMPACT_GRID)
  109. fun enabledLanguages() = flowPrefs.getStringSet(Keys.enabledLanguages, setOf("en", Locale.getDefault().language))
  110. fun trackUsername(sync: TrackService) = prefs.getString(Keys.trackUsername(sync.id), "")
  111. fun trackPassword(sync: TrackService) = prefs.getString(Keys.trackPassword(sync.id), "")
  112. fun setTrackCredentials(sync: TrackService, username: String, password: String) {
  113. prefs.edit {
  114. putString(Keys.trackUsername(sync.id), username)
  115. putString(Keys.trackPassword(sync.id), password)
  116. }
  117. }
  118. fun trackToken(sync: TrackService) = flowPrefs.getString(Keys.trackToken(sync.id), "")
  119. fun anilistScoreType() = flowPrefs.getString("anilist_score_type", Anilist.POINT_10)
  120. fun backupsDirectory() = flowPrefs.getString(Keys.backupDirectory, defaultBackupDir.toString())
  121. fun dateFormat(format: String = flowPrefs.getString(Keys.dateFormat, "").get()): DateFormat = when (format) {
  122. "" -> DateFormat.getDateInstance(DateFormat.SHORT)
  123. else -> SimpleDateFormat(format, Locale.getDefault())
  124. }
  125. fun downloadsDirectory() = flowPrefs.getString(Keys.downloadsDirectory, defaultDownloadsDir.toString())
  126. fun downloadOnlyOverWifi() = prefs.getBoolean(Keys.downloadOnlyOverWifi, true)
  127. fun numberOfBackups() = flowPrefs.getInt(Keys.numberOfBackups, 1)
  128. fun backupInterval() = flowPrefs.getInt(Keys.backupInterval, 0)
  129. fun removeAfterReadSlots() = prefs.getInt(Keys.removeAfterReadSlots, -1)
  130. fun removeAfterMarkedAsRead() = prefs.getBoolean(Keys.removeAfterMarkedAsRead, false)
  131. fun removeBookmarkedChapters() = prefs.getBoolean(Keys.removeBookmarkedChapters, false)
  132. fun libraryUpdateInterval() = flowPrefs.getInt(Keys.libraryUpdateInterval, 24)
  133. fun libraryUpdateRestriction() = prefs.getStringSet(Keys.libraryUpdateRestriction, setOf("wifi"))
  134. fun libraryUpdateCategories() = flowPrefs.getStringSet(Keys.libraryUpdateCategories, emptySet())
  135. fun libraryUpdateCategoriesExclude() = flowPrefs.getStringSet(Keys.libraryUpdateCategoriesExclude, emptySet())
  136. fun libraryUpdatePrioritization() = flowPrefs.getInt(Keys.libraryUpdatePrioritization, 0)
  137. fun libraryDisplayMode() = flowPrefs.getEnum(Keys.libraryDisplayMode, DisplayMode.COMPACT_GRID)
  138. fun downloadBadge() = flowPrefs.getBoolean(Keys.downloadBadge, false)
  139. fun downloadedOnly() = flowPrefs.getBoolean(Keys.downloadedOnly, false)
  140. fun unreadBadge() = flowPrefs.getBoolean(Keys.unreadBadge, true)
  141. fun categoryTabs() = flowPrefs.getBoolean(Keys.categoryTabs, true)
  142. fun categoryNumberOfItems() = flowPrefs.getBoolean(Keys.categoryNumberOfItems, false)
  143. fun filterDownloaded() = flowPrefs.getInt(Keys.filterDownloaded, ExtendedNavigationView.Item.TriStateGroup.State.IGNORE.value)
  144. fun filterUnread() = flowPrefs.getInt(Keys.filterUnread, ExtendedNavigationView.Item.TriStateGroup.State.IGNORE.value)
  145. fun filterCompleted() = flowPrefs.getInt(Keys.filterCompleted, ExtendedNavigationView.Item.TriStateGroup.State.IGNORE.value)
  146. fun filterTracking(name: Int) = flowPrefs.getInt("${Keys.filterTracked}_$name", ExtendedNavigationView.Item.TriStateGroup.State.IGNORE.value)
  147. fun librarySortingMode() = flowPrefs.getInt(Keys.librarySortingMode, 0)
  148. fun librarySortingAscending() = flowPrefs.getBoolean("library_sorting_ascending", true)
  149. fun automaticExtUpdates() = flowPrefs.getBoolean(Keys.automaticExtUpdates, true)
  150. fun showNsfwSource() = flowPrefs.getBoolean(Keys.showNsfwSource, true)
  151. fun showNsfwExtension() = flowPrefs.getBoolean(Keys.showNsfwExtension, true)
  152. fun labelNsfwExtension() = prefs.getBoolean(Keys.labelNsfwExtension, true)
  153. fun extensionUpdatesCount() = flowPrefs.getInt("ext_updates_count", 0)
  154. fun lastExtCheck() = flowPrefs.getLong("last_ext_check", 0)
  155. fun searchPinnedSourcesOnly() = prefs.getBoolean(Keys.searchPinnedSourcesOnly, false)
  156. fun disabledSources() = flowPrefs.getStringSet("hidden_catalogues", emptySet())
  157. fun pinnedSources() = flowPrefs.getStringSet("pinned_catalogues", emptySet())
  158. fun downloadNew() = flowPrefs.getBoolean(Keys.downloadNew, false)
  159. fun downloadNewCategories() = flowPrefs.getStringSet(Keys.downloadNewCategories, emptySet())
  160. fun lang() = prefs.getString(Keys.lang, "")
  161. fun defaultCategory() = prefs.getInt(Keys.defaultCategory, -1)
  162. fun skipRead() = prefs.getBoolean(Keys.skipRead, false)
  163. fun skipFiltered() = prefs.getBoolean(Keys.skipFiltered, true)
  164. fun migrateFlags() = flowPrefs.getInt("migrate_flags", Int.MAX_VALUE)
  165. fun trustedSignatures() = flowPrefs.getStringSet("trusted_signatures", emptySet())
  166. fun enableDoh() = prefs.getBoolean(Keys.enableDoh, false)
  167. fun lastSearchQuerySearchSettings() = flowPrefs.getString("last_search_query", "")
  168. fun filterChapterByRead() = prefs.getInt(Keys.defaultChapterFilterByRead, Manga.SHOW_ALL)
  169. fun filterChapterByDownloaded() = prefs.getInt(Keys.defaultChapterFilterByDownloaded, Manga.SHOW_ALL)
  170. fun filterChapterByBookmarked() = prefs.getInt(Keys.defaultChapterFilterByBookmarked, Manga.SHOW_ALL)
  171. fun sortChapterBySourceOrNumber() = prefs.getInt(Keys.defaultChapterSortBySourceOrNumber, Manga.SORTING_SOURCE)
  172. fun displayChapterByNameOrNumber() = prefs.getInt(Keys.defaultChapterDisplayByNameOrNumber, Manga.DISPLAY_NAME)
  173. fun sortChapterByAscendingOrDescending() = prefs.getInt(Keys.defaultChapterSortByAscendingOrDescending, Manga.SORT_DESC)
  174. fun incognitoMode() = flowPrefs.getBoolean(Keys.incognitoMode, false)
  175. fun createLegacyBackup() = flowPrefs.getBoolean(Keys.createLegacyBackup, true)
  176. fun setChapterSettingsDefault(manga: Manga) {
  177. prefs.edit {
  178. putInt(Keys.defaultChapterFilterByRead, manga.readFilter)
  179. putInt(Keys.defaultChapterFilterByDownloaded, manga.downloadedFilter)
  180. putInt(Keys.defaultChapterFilterByBookmarked, manga.bookmarkedFilter)
  181. putInt(Keys.defaultChapterSortBySourceOrNumber, manga.sorting)
  182. putInt(Keys.defaultChapterDisplayByNameOrNumber, manga.displayMode)
  183. putInt(Keys.defaultChapterSortByAscendingOrDescending, if (manga.sortDescending()) Manga.SORT_DESC else Manga.SORT_ASC)
  184. }
  185. }
  186. }