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/components/accounts/FenixAccountManager.kt

70 lines
2.0 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.components.accounts
import android.content.Context
import org.mozilla.fenix.ext.components
/**
* Contains helper methods for querying Firefox Account state and its properties.
*/
class FenixAccountManager(context: Context) {
private val accountManager = context.components.backgroundServices.accountManager
/**
* Returns the Firefox Account email if authenticated in the app, `null` otherwise.
*/
val accountProfileEmail: String?
get() = if (accountState == AccountState.AUTHENTICATED) {
accountManager.accountProfile()?.email
} else {
null
}
/**
* Returns the Firefox Account displayName if authenticated in the app, `null` otherwise.
*/
val accountProfileDisplayName: String?
get() = if (accountState == AccountState.AUTHENTICATED) {
accountManager.accountProfile()?.displayName
} else {
null
}
/**
* The current state of the Firefox Account. See [AccountState].
*/
val accountState: AccountState
get() = if (accountManager.authenticatedAccount() == null) {
AccountState.NO_ACCOUNT
} else {
if (accountManager.accountNeedsReauth()) {
AccountState.NEEDS_REAUTHENTICATION
} else {
AccountState.AUTHENTICATED
}
}
}
/**
* General states as an overview of the current Firefox Account.
*/
enum class AccountState {
/**
* There is no known Firefox Account.
*/
NO_ACCOUNT,
/**
* A Firefox Account exists but needs to be re-authenticated.
*/
NEEDS_REAUTHENTICATION,
/**
* A Firefox Account exists and the user is currently signed into it.
*/
AUTHENTICATED,
}