michael@0: #filter substitution michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: package org.mozilla.gecko.fxa; michael@0: michael@0: import org.mozilla.gecko.background.common.GlobalConstants; michael@0: import org.mozilla.gecko.background.common.log.Logger; michael@0: michael@0: public class FxAccountConstants { michael@0: public static final String GLOBAL_LOG_TAG = "FxAccounts"; michael@0: public static final String ACCOUNT_TYPE = "@MOZ_ANDROID_SHARED_FXACCOUNT_TYPE@"; michael@0: michael@0: public static final String DEFAULT_AUTH_SERVER_ENDPOINT = "https://api.accounts.firefox.com/v1"; michael@0: public static final String DEFAULT_TOKEN_SERVER_ENDPOINT = "https://token.services.mozilla.com/1.0/sync/1.5"; michael@0: michael@0: public static final String STAGE_TOKEN_SERVER_ENDPOINT = "https://token.stage.mozaws.net/1.0/sync/1.5"; michael@0: michael@0: // For extra debugging. Not final so it can be changed from Fennec, or from michael@0: // an add-on. michael@0: public static boolean LOG_PERSONAL_INFORMATION = false; michael@0: michael@0: public static void pii(String tag, String message) { michael@0: if (LOG_PERSONAL_INFORMATION) { michael@0: Logger.info(tag, "$$FxA PII$$: " + message); michael@0: } michael@0: } michael@0: michael@0: // You must be at least 14 years old to create a Firefox Account. michael@0: public static final int MINIMUM_AGE_TO_CREATE_AN_ACCOUNT = 14; michael@0: michael@0: // You must wait 15 minutes after failing an age check before trying to create a different account. michael@0: public static final long MINIMUM_TIME_TO_WAIT_AFTER_AGE_CHECK_FAILED_IN_MILLISECONDS = 15 * 60 * 1000; michael@0: michael@0: public static final String USER_AGENT = "Firefox-Android-FxAccounts/" + GlobalConstants.MOZ_APP_VERSION + " (" + GlobalConstants.MOZ_APP_DISPLAYNAME + ")"; michael@0: michael@0: public static final String ACCOUNT_PICKLE_FILENAME = "fxa.account.json"; michael@0: michael@0: /** michael@0: * This action is broadcast when an Android Firefox Account is deleted. michael@0: * This allows each installed Firefox to delete any Firefox Account pickle michael@0: * file. michael@0: *
michael@0: * It is protected by signing-level permission PER_ACCOUNT_TYPE_PERMISSION and michael@0: * can be received only by Firefox channels sharing the same Android Firefox michael@0: * Account type. michael@0: *
michael@0: * See {@link org.mozilla.gecko.fxa.AndroidFxAccount#makeDeletedAccountIntent(android.content.Context, android.accounts.Account)} michael@0: * for contents of the intent. michael@0: * michael@0: * See bug 790931 for additional information in the context of Sync. michael@0: */ michael@0: public static final String ACCOUNT_DELETED_ACTION = "@MOZ_ANDROID_SHARED_FXACCOUNT_TYPE@.accounts.ACCOUNT_DELETED_ACTION"; michael@0: michael@0: /** michael@0: * Version number of contents of SYNC_ACCOUNT_DELETED_ACTION intent. michael@0: */ michael@0: public static final long ACCOUNT_DELETED_INTENT_VERSION = 1; michael@0: michael@0: public static final String ACCOUNT_DELETED_INTENT_VERSION_KEY = "account_deleted_intent_version"; michael@0: public static final String ACCOUNT_DELETED_INTENT_ACCOUNT_KEY = "account_deleted_intent_account"; michael@0: michael@0: /** michael@0: * This signing-level permission protects broadcast intents that should be michael@0: * received only by Firefox channels sharing the same Android Firefox Account type. michael@0: */ michael@0: public static final String PER_ACCOUNT_TYPE_PERMISSION = "@MOZ_ANDROID_SHARED_FXACCOUNT_TYPE@.permission.PER_ACCOUNT_TYPE"; michael@0: }