aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/utils
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2020-07-18 19:22:02 -0700
committerAllan Wang <me@allanwang.ca>2020-07-18 19:22:02 -0700
commit0fc1e0c9c13c6cf551f985c3617f1bcaf8f62aa6 (patch)
tree2108dbc732579b58458ca7e63010daaf6fff435e /app/src/main/kotlin/com/pitchedapps/frost/utils
parent1b26bce26cc675d23e500eee4edbc675a818fc61 (diff)
downloadfrost-0fc1e0c9c13c6cf551f985c3617f1bcaf8f62aa6.tar.gz
frost-0fc1e0c9c13c6cf551f985c3617f1bcaf8f62aa6.tar.bz2
frost-0fc1e0c9c13c6cf551f985c3617f1bcaf8f62aa6.zip
Create prefs package
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/utils')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/utils/BiometricUtils.kt1
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt212
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/utils/Utils.kt1
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/utils/WebContextMenu.kt1
4 files changed, 3 insertions, 212 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/utils/BiometricUtils.kt b/app/src/main/kotlin/com/pitchedapps/frost/utils/BiometricUtils.kt
index 21be4168..80f83c8d 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/utils/BiometricUtils.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/utils/BiometricUtils.kt
@@ -26,6 +26,7 @@ import androidx.lifecycle.LifecycleObserver
import androidx.lifecycle.OnLifecycleEvent
import ca.allanwang.kau.utils.string
import com.pitchedapps.frost.R
+import com.pitchedapps.frost.prefs.Prefs
import java.util.concurrent.Executor
import java.util.concurrent.ExecutorService
import java.util.concurrent.Executors
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt b/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
deleted file mode 100644
index bfd0d2c0..00000000
--- a/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
+++ /dev/null
@@ -1,212 +0,0 @@
-/*
- * Copyright 2018 Allan Wang
- *
- * 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.pitchedapps.frost.utils
-
-import android.graphics.Color
-import ca.allanwang.kau.kotlin.lazyResettable
-import ca.allanwang.kau.kpref.KPref
-import ca.allanwang.kau.kpref.KPrefFactory
-import ca.allanwang.kau.utils.colorToForeground
-import ca.allanwang.kau.utils.isColorVisibleOn
-import ca.allanwang.kau.utils.withAlpha
-import com.pitchedapps.frost.BuildConfig
-import com.pitchedapps.frost.enums.FACEBOOK_BLUE
-import com.pitchedapps.frost.enums.FeedSort
-import com.pitchedapps.frost.enums.MainActivityLayout
-import com.pitchedapps.frost.enums.Theme
-import com.pitchedapps.frost.injectors.InjectorContract
-import org.koin.core.context.KoinContextHandler
-import org.koin.dsl.module
-
-/**
- * Created by Allan Wang on 2017-05-28.
- *
- * Shared Preference object with lazy cached retrievals
- */
-class Prefs(factory: KPrefFactory) : KPref("${BuildConfig.APPLICATION_ID}.prefs", factory) {
-
- var lastLaunch: Long by kpref("last_launch", -1L)
-
- var userId: Long by kpref("user_id", -1L)
-
- var prevId: Long by kpref("prev_id", -1L)
-
- var theme: Int by kpref("theme", 0) { _: Int ->
- loader.invalidate()
- }
-
- var customTextColor: Int by kpref("color_text", 0xffeceff1.toInt())
-
- var customAccentColor: Int by kpref("color_accent", 0xff0288d1.toInt())
-
- var customBackgroundColor: Int by kpref("color_bg", 0xff212121.toInt())
-
- var customHeaderColor: Int by kpref("color_header", 0xff01579b.toInt())
-
- var customIconColor: Int by kpref("color_icons", 0xffeceff1.toInt())
-
- var exitConfirmation: Boolean by kpref("exit_confirmation", true)
-
- var notificationFreq: Long by kpref("notification_freq", 15L)
-
- var versionCode: Int by kpref("version_code", -1)
-
- var prevVersionCode: Int by kpref("prev_version_code", -1)
-
- var installDate: Long by kpref("install_date", -1L)
-
- var identifier: Int by kpref("identifier", -1)
-
- private val loader = lazyResettable { Theme.values[theme] }
-
- val t: Theme by loader
-
- val textColor: Int
- get() = t.textColorGetter(this)
-
- val accentColor: Int
- get() = t.accentColorGetter(this)
-
- inline val accentColorForWhite: Int
- get() = when {
- accentColor.isColorVisibleOn(Color.WHITE) -> accentColor
- textColor.isColorVisibleOn(Color.WHITE) -> textColor
- else -> FACEBOOK_BLUE
- }
-
- inline val nativeBgColor: Int
- get() = bgColor.withAlpha(30)
-
- fun nativeBgColor(unread: Boolean) = bgColor
- .colorToForeground(if (unread) 0.7f else 0.0f)
- .withAlpha(30)
-
- val bgColor: Int
- get() = t.backgroundColorGetter(this)
-
- val headerColor: Int
- get() = t.headerColorGetter(this)
-
- val iconColor: Int
- get() = t.iconColorGetter(this)
-
- val themeInjector: InjectorContract
- get() = t.injector
-
- val isCustomTheme: Boolean
- get() = t == Theme.CUSTOM
-
- inline val frostId: String
- get() = "$installDate-$identifier"
-
- var tintNavBar: Boolean by kpref("tint_nav_bar", true)
-
- var webTextScaling: Int by kpref("web_text_scaling", 100)
-
- var feedSort: Int by kpref("feed_sort", FeedSort.DEFAULT.ordinal)
-
- var aggressiveRecents: Boolean by kpref("aggressive_recents", false)
-
- var showComposer: Boolean by kpref("status_composer_feed", true)
-
- var showSuggestedFriends: Boolean by kpref("suggested_friends_feed", true)
-
- var showSuggestedGroups: Boolean by kpref("suggested_groups_feed", true)
-
- var showFacebookAds: Boolean by kpref("facebook_ads", false)
-
- var showStories: Boolean by kpref("show_stories", true)
-
- var animate: Boolean by kpref("fancy_animations", true)
-
- var notificationKeywords: Set<String> by kpref("notification_keywords", mutableSetOf())
-
- var notificationsGeneral: Boolean by kpref("notification_general", true)
-
- var notificationAllAccounts: Boolean by kpref("notification_all_accounts", true)
-
- var notificationsInstantMessages: Boolean by kpref("notification_im", true)
-
- var notificationsImAllAccounts: Boolean by kpref("notification_im_all_accounts", false)
-
- var notificationVibrate: Boolean by kpref("notification_vibrate", true)
-
- var notificationSound: Boolean by kpref("notification_sound", true)
-
- var notificationRingtone: String by kpref("notification_ringtone", "")
-
- var messageRingtone: String by kpref("message_ringtone", "")
-
- var notificationLights: Boolean by kpref("notification_lights", true)
-
- var messageScrollToBottom: Boolean by kpref("message_scroll_to_bottom", false)
-
- var enablePip: Boolean by kpref("enable_pip", true)
-
- /**
- * Despite the naming, this toggle currently only enables debug logging.
- * Verbose is never logged in release builds.
- */
- var verboseLogging: Boolean by kpref("verbose_logging", false)
-
- var analytics: Boolean by kpref("analytics", false) {
-// if (!BuildConfig.DEBUG) {
-// if (it) {
-// Bugsnag.setAutoCaptureSessions(true)
-// Bugsnag.enableExceptionHandler()
-// } else {
-// Bugsnag.setAutoCaptureSessions(false)
-// Bugsnag.disableExceptionHandler()
-// }
-// }
- }
-
- var biometricsEnabled: Boolean by kpref("biometrics_enabled", false)
-
- var overlayEnabled: Boolean by kpref("overlay_enabled", true)
-
- var overlayFullScreenSwipe: Boolean by kpref("overlay_full_screen_swipe", true)
-
- var viewpagerSwipe: Boolean by kpref("viewpager_swipe", true)
-
- var loadMediaOnMeteredNetwork: Boolean by kpref("media_on_metered_network", true)
-
- var debugSettings: Boolean by kpref("debug_settings", false)
-
- var linksInDefaultApp: Boolean by kpref("link_in_default_app", false)
-
- var mainActivityLayoutType: Int by kpref("main_activity_layout_type", 0)
-
- var blackMediaBg: Boolean by kpref("black_media_bg", false)
-
- var autoRefreshFeed: Boolean by kpref("auto_refresh_feed", false)
-
- var showCreateFab: Boolean by kpref("show_create_fab", true)
-
- var fullSizeImage: Boolean by kpref("full_size_image", false)
-
- inline val mainActivityLayout: MainActivityLayout
- get() = MainActivityLayout(mainActivityLayoutType)
-
- companion object {
- fun get(): Prefs = KoinContextHandler.get().get()
-
- fun module() = module {
- single { Prefs(get()) }
- }
- }
-}
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/utils/Utils.kt b/app/src/main/kotlin/com/pitchedapps/frost/utils/Utils.kt
index 2368a992..b36ba83f 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/utils/Utils.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/utils/Utils.kt
@@ -69,6 +69,7 @@ import com.pitchedapps.frost.facebook.formattedFbUri
import com.pitchedapps.frost.facebook.formattedFbUrl
import com.pitchedapps.frost.injectors.CssAssets
import com.pitchedapps.frost.injectors.JsAssets
+import com.pitchedapps.frost.prefs.Prefs
import java.io.File
import java.io.IOException
import java.net.URLEncoder
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/utils/WebContextMenu.kt b/app/src/main/kotlin/com/pitchedapps/frost/utils/WebContextMenu.kt
index 2e5d2fce..3ab924e2 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/utils/WebContextMenu.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/utils/WebContextMenu.kt
@@ -27,6 +27,7 @@ import com.pitchedapps.frost.R
import com.pitchedapps.frost.activities.MainActivity
import com.pitchedapps.frost.facebook.FbCookie
import com.pitchedapps.frost.facebook.formattedFbUrl
+import com.pitchedapps.frost.prefs.Prefs
/**
* Created by Allan Wang on 2017-07-07.