You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iceraven-browser/app/src/main/java/org/mozilla/fenix/settings/quicksettings/QuickSettingsFragmentState.kt

289 lines
11 KiB
Kotlin

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package org.mozilla.fenix.settings.quicksettings
import android.content.Context
import androidx.annotation.DrawableRes
import androidx.annotation.StringRes
import mozilla.components.concept.engine.permission.SitePermissions
import mozilla.components.concept.engine.permission.SitePermissions.AutoplayStatus
import mozilla.components.feature.sitepermissions.SitePermissionsRules
import mozilla.components.feature.sitepermissions.SitePermissionsRules.AutoplayAction
import mozilla.components.lib.state.State
import org.mozilla.fenix.R
import org.mozilla.fenix.settings.PhoneFeature
import org.mozilla.fenix.trackingprotection.TrackingProtectionState
import org.mozilla.fenix.utils.Settings
/**
* [State] containing all data displayed to the user by this Fragment.
*
* Partitioned further to contain mutiple states for each standalone View this Fragment holds.
*/
data class QuickSettingsFragmentState(
val webInfoState: WebsiteInfoState,
val websitePermissionsState: WebsitePermissionsState,
val trackingProtectionState: TrackingProtectionState
) : State
/**
* [State] to be rendered by [WebsiteInfoView] indicating whether the connection is secure or not.
*
* @param websiteUrl [String] the URL of the current web page.
* @param websiteTitle [String] the title of the current web page.
* @param websiteSecurityUiValues UI values to represent the security of the website.
*/
data class WebsiteInfoState(
val websiteUrl: String,
val websiteTitle: String,
val websiteSecurityUiValues: WebsiteSecurityUiValues,
val certificateName: String
) : State {
companion object {
/**
* Construct an initial [WebsiteInfoState]
* based on the current website's status and connection.
* While being displayed users have no way of modifying it.
*
* @param websiteUrl [String] the URL of the current web page.
* @param websiteTitle [String] the title of the current web page.
* @param isSecured [Boolean] whether the connection is secured (TLS) or not.
* @param certificateName [String] the certificate name of the current web page.
*/
fun createWebsiteInfoState(
websiteUrl: String,
websiteTitle: String,
isSecured: Boolean,
certificateName: String
): WebsiteInfoState {
val uiValues =
if (isSecured) WebsiteSecurityUiValues.SECURE else WebsiteSecurityUiValues.INSECURE
return WebsiteInfoState(websiteUrl, websiteTitle, uiValues, certificateName)
}
}
}
enum class WebsiteSecurityUiValues(
@StringRes val securityInfoRes: Int,
@DrawableRes val iconRes: Int
) {
SECURE(
R.string.quick_settings_sheet_secure_connection_2,
For #23350 - Revert changes from removing duplicate icons that already exists in ui-icons (#23527) * Revert "For #23121 - Override @color/mozac_ui_icons_fill with ?primaryText attribute" This reverts commit 12347c99999c340e7f7072ab2749cb13c5fd86c9. * Revert "For #23121 - Replace @drawble/ic_share with @drawable/mozac_ic_share" This reverts commit bbf6ce3f0c52e58493423ce2e2c62e3fb08f21b2. * Revert "For #23121 - Replace @drawble/ic_storage_enabled with @drawable/mozac_ic_storage" This reverts commit 930c7bf3b3076cf6b56be85fd733dd9f5cf2d1bb. * Revert "For #23121 - Replace @drawble/ic_notifications_enabled with @drawable/mozac_ic_notification" This reverts commit 9069b57c2440b517357a180e7c74b70ab86501a8. * Revert "For #23121 - Replace @drawble/ic_microphone_enabled with @drawable/mozac_ic_microphone" This reverts commit 53216f3f4a1fc6982aee8ab111cb6e92ef54f92a. * Revert "For #23121 - Replace @drawble/ic_location_enabled with @drawable/mozac_ic_location" This reverts commit 9ee9aafd879a884814f1d4b826db75f24ebdacec. * Revert "For #23121 - Replace @drawble/ic_autoplay_disabled with @drawable/mozac_ic_autoplay_blocked" This reverts commit b045a5e20317516bac422ed44549d5871a2cb96a. * Revert "For #23121 - Replace @drawble/ic_camera_enabled with @drawable/mozac_ic_video" This reverts commit 62842db131fee3aa0646c586f075f85105d32cb7. * Revert "For #23121 - Replace @drawble/mozac_ic_extensions_black with @drawable/mozac_ic_extensions" This reverts commit c020a9da10e6a49ce097b48fe2d40b7b21c578fe. * Revert "For #23121 - Replace @drawble/ic_top_sites with @drawable/mozac_ic_pin" This reverts commit ca67b0a752f9582a85ef5d22ff9cfba5f95fd1a0. * Revert "For #23121 - Replace @drawble/ic_search with @drawable/mozac_ic_search" This reverts commit 02d9197945ca9305cf3d2017954a48dd762a8a09. * Revert "For #23121 - Replace @drawble/ic_readermode with @drawable/mozac_ic_reader_mode" This reverts commit cf8592c709d26cf34a187175a2a0b4275a53a576. * Revert "For #23121 - Replace @drawble/ic_menu with @drawable/mozac_ic_menu" This reverts commit a1ac0190242ae416472442e3838318d210a6e419. * Revert "For #23121 - Replace @drawble/ic_login with @drawable/mozac_ic_login" This reverts commit 541c56b5894436c4384c7fdcb6ad3a57a566833a. * Revert "For #23121 - Replace @drawble/ic_internet with @drawable/mozac_ic_globe" This reverts commit 4d8adce85e07edce1969bd188698963c7452cac7. * Revert "For #23121 - Replace @drawble/ic_download with @drawable/mozac_ic_download" This reverts commit ef026d3ec290614053001a0709b800480ac59bf5. * Revert "For #23121 - Replace @drawble/ic_lock with @drawable/mozac_ic_lock" This reverts commit 18591d5dd848af6a11f1ebf4d37efc602a0f36e7. * Revert "For #23121 - Replace @drawble/ic_desktop with @drawable/mozac_ic_device_desktop" This reverts commit ad33e3c1e148bf20264a4cc08c524814da15409a. * Revert "For #23121 - Replace @drawble/ic_close with @drawable/mozac_ic_close" This reverts commit a9f0fefac21e63260a7e8547431a9a5af780faf1. * Revert "For #23121 - Replace @drawble/ic_delete with @drawable/mozac_ic_delete" This reverts commit 33dc752ef2864e8662eebe63756ea37360c4cf61. * Revert "For #23121 - Replace @drawble/ic_chevron_up with @drawable/mozac_ic_arrowhead_up" This reverts commit 5bf937cfd37e2fec2258d8e03e3f31d35952d9cc. * Revert "For #23121 - Replace @drawble/ic_chevron_down with @drawable/mozac_ic_arrowhead_down" This reverts commit 0fadd68112fc313f20be14c13ee75bb9ce67c472. * Revert "For #23121 - Replace @drawble/ic_back_button with @drawable/mozac_ic_back" This reverts commit bea766e7858e6a0bf38a8d1a74d79c8da68d204a. * Revert "For #23121 - Replace @drawable/ic_arrowhead_right with @drawable/mozac_ic_arrowhead_right" This reverts commit 5a6f349ea857cd2a5fdeb3b6001dcf52e8463025. * Revert "For #23121 - Replace @drawable/ic_new with @drawable/mozac_ic_new" This reverts commit ae38410106d7ed0eb65f3eda43ef45ecb7fecc73. * Revert "For #23121 - Replace @drawable/ic_addons_extensions with @drawable/mozac_ic_extensions" This reverts commit 9352946afce4d7be135bfe9b1ffc83895eb20b40.
2 years ago
R.drawable.ic_lock
),
INSECURE(
R.string.quick_settings_sheet_insecure_connection_2,
R.drawable.mozac_ic_broken_lock
)
}
/**
* [State] to be rendered by [WebsitePermissionsView] displaying all explicitly allowed or blocked
* website permissions.
*/
typealias WebsitePermissionsState = Map<PhoneFeature, WebsitePermission>
/**
* Wrapper over a website permission encompassing all it's needed state to be rendered on the screen.
*
* Contains a limited number of implementations because there is a known, finite number of permissions
* we need to display to the user.
*
* @property status The *allowed* / *blocked* permission status to be shown to the user.
* @property isVisible Whether this permission should be shown to the user.
* @property isEnabled Visual indication about whether this permission is *enabled* / *disabled*
* @property isBlockedByAndroid Whether the corresponding *dangerous* Android permission is granted
* for the app by the user or not.
*/
sealed class WebsitePermission(
open val phoneFeature: PhoneFeature,
open val status: String,
open val isVisible: Boolean,
open val isEnabled: Boolean,
open val isBlockedByAndroid: Boolean
) {
data class Autoplay(
val autoplayValue: AutoplayValue,
val options: List<AutoplayValue>,
override val isVisible: Boolean
) : WebsitePermission(
PhoneFeature.AUTOPLAY,
autoplayValue.label,
isVisible,
autoplayValue.isEnabled,
isBlockedByAndroid = false
)
data class Toggleable(
override val phoneFeature: PhoneFeature,
override val status: String,
override val isVisible: Boolean,
override val isEnabled: Boolean,
override val isBlockedByAndroid: Boolean
) : WebsitePermission(
phoneFeature,
status,
isVisible,
isEnabled,
isBlockedByAndroid
)
}
sealed class AutoplayValue(
open val label: String,
open val rules: SitePermissionsRules,
open val sitePermission: SitePermissions?
) {
override fun toString() = label
abstract fun isSelected(): Boolean
abstract fun createSitePermissionsFromCustomRules(origin: String, settings: Settings): SitePermissions
abstract fun updateSitePermissions(sitePermissions: SitePermissions): SitePermissions
abstract val isEnabled: Boolean
val isVisible: Boolean get() = isSelected()
data class AllowAll(
override val label: String,
override val rules: SitePermissionsRules,
override val sitePermission: SitePermissions?
) : AutoplayValue(label, rules, sitePermission) {
override val isEnabled: Boolean = true
override fun toString() = super.toString()
override fun isSelected(): Boolean {
val actions = if (sitePermission !== null) {
listOf(
sitePermission.autoplayAudible,
sitePermission.autoplayInaudible
)
} else {
listOf(rules.autoplayAudible.toAutoplayStatus(), rules.autoplayInaudible.toAutoplayStatus())
}
return actions.all { it == AutoplayStatus.ALLOWED }
}
override fun createSitePermissionsFromCustomRules(origin: String, settings: Settings): SitePermissions {
val rules = settings.getSitePermissionsCustomSettingsRules()
return rules.copy(
autoplayAudible = AutoplayAction.ALLOWED,
autoplayInaudible = AutoplayAction.ALLOWED
).toSitePermissions(origin)
}
override fun updateSitePermissions(sitePermissions: SitePermissions): SitePermissions {
return sitePermissions.copy(
autoplayAudible = AutoplayStatus.ALLOWED,
autoplayInaudible = AutoplayStatus.ALLOWED
)
}
}
data class BlockAll(
override val label: String,
override val rules: SitePermissionsRules,
override val sitePermission: SitePermissions?
) : AutoplayValue(label, rules, sitePermission) {
override val isEnabled: Boolean = false
override fun toString() = super.toString()
override fun isSelected(): Boolean {
val actions = if (sitePermission !== null) {
listOf(
sitePermission.autoplayAudible,
sitePermission.autoplayInaudible
)
} else {
listOf(rules.autoplayAudible.toAutoplayStatus(), rules.autoplayInaudible.toAutoplayStatus())
}
return actions.all { it == AutoplayStatus.BLOCKED }
}
override fun createSitePermissionsFromCustomRules(origin: String, settings: Settings): SitePermissions {
val rules = settings.getSitePermissionsCustomSettingsRules()
return rules.copy(
autoplayAudible = AutoplayAction.BLOCKED,
autoplayInaudible = AutoplayAction.BLOCKED
).toSitePermissions(origin)
}
override fun updateSitePermissions(sitePermissions: SitePermissions): SitePermissions {
return sitePermissions.copy(
autoplayAudible = AutoplayStatus.BLOCKED,
autoplayInaudible = AutoplayStatus.BLOCKED
)
}
}
data class BlockAudible(
override val label: String,
override val rules: SitePermissionsRules,
override val sitePermission: SitePermissions?
) : AutoplayValue(label, rules, sitePermission) {
override val isEnabled: Boolean = false
override fun toString() = super.toString()
override fun isSelected(): Boolean {
val (audible, inaudible) = if (sitePermission !== null) {
sitePermission.autoplayAudible to sitePermission.autoplayInaudible
} else {
rules.autoplayAudible.toAutoplayStatus() to rules.autoplayInaudible.toAutoplayStatus()
}
return audible == AutoplayStatus.BLOCKED && inaudible == AutoplayStatus.ALLOWED
}
override fun createSitePermissionsFromCustomRules(origin: String, settings: Settings): SitePermissions {
val rules = settings.getSitePermissionsCustomSettingsRules()
return rules.copy(autoplayAudible = AutoplayAction.BLOCKED, autoplayInaudible = AutoplayAction.ALLOWED)
.toSitePermissions(origin)
}
override fun updateSitePermissions(sitePermissions: SitePermissions): SitePermissions {
return sitePermissions.copy(
autoplayInaudible = AutoplayStatus.ALLOWED,
autoplayAudible = AutoplayStatus.BLOCKED
)
}
}
companion object {
fun values(
context: Context,
settings: Settings,
sitePermission: SitePermissions?
): List<AutoplayValue> {
val rules = settings.getSitePermissionsCustomSettingsRules()
return listOf(
AllowAll(
context.getString(R.string.quick_setting_option_autoplay_allowed),
rules,
sitePermission
),
BlockAll(
context.getString(R.string.quick_setting_option_autoplay_blocked),
rules,
sitePermission
),
BlockAudible(
context.getString(R.string.quick_setting_option_autoplay_block_audio),
rules,
sitePermission
)
)
}
fun getFallbackValue(
context: Context,
settings: Settings,
sitePermission: SitePermissions?
): AutoplayValue {
val rules = settings.getSitePermissionsCustomSettingsRules()
return BlockAudible(
context.getString(R.string.preference_option_autoplay_block_audio2),
rules,
sitePermission
)
}
}
}