mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
70 lines
3.1 KiB
Java
70 lines
3.1 KiB
Java
#filter substitution
|
|
/* 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.gecko.fxa;
|
|
|
|
import org.mozilla.gecko.background.common.GlobalConstants;
|
|
import org.mozilla.gecko.background.common.log.Logger;
|
|
|
|
public class FxAccountConstants {
|
|
public static final String GLOBAL_LOG_TAG = "FxAccounts";
|
|
public static final String ACCOUNT_TYPE = "@MOZ_ANDROID_SHARED_FXACCOUNT_TYPE@";
|
|
|
|
public static final String DEFAULT_AUTH_SERVER_ENDPOINT = "https://api.accounts.firefox.com/v1";
|
|
public static final String DEFAULT_TOKEN_SERVER_ENDPOINT = "https://token.services.mozilla.com/1.0/sync/1.5";
|
|
|
|
public static final String STAGE_TOKEN_SERVER_ENDPOINT = "https://token.stage.mozaws.net/1.0/sync/1.5";
|
|
|
|
// For extra debugging. Not final so it can be changed from Fennec, or from
|
|
// an add-on.
|
|
public static boolean LOG_PERSONAL_INFORMATION = false;
|
|
|
|
public static void pii(String tag, String message) {
|
|
if (LOG_PERSONAL_INFORMATION) {
|
|
Logger.info(tag, "$$FxA PII$$: " + message);
|
|
}
|
|
}
|
|
|
|
// You must be at least 14 years old to create a Firefox Account.
|
|
public static final int MINIMUM_AGE_TO_CREATE_AN_ACCOUNT = 14;
|
|
|
|
// You must wait 15 minutes after failing an age check before trying to create a different account.
|
|
public static final long MINIMUM_TIME_TO_WAIT_AFTER_AGE_CHECK_FAILED_IN_MILLISECONDS = 15 * 60 * 1000;
|
|
|
|
public static final String USER_AGENT = "Firefox-Android-FxAccounts/" + GlobalConstants.MOZ_APP_VERSION + " (" + GlobalConstants.MOZ_APP_DISPLAYNAME + ")";
|
|
|
|
public static final String ACCOUNT_PICKLE_FILENAME = "fxa.account.json";
|
|
|
|
/**
|
|
* This action is broadcast when an Android Firefox Account is deleted.
|
|
* This allows each installed Firefox to delete any Firefox Account pickle
|
|
* file.
|
|
* <p>
|
|
* It is protected by signing-level permission PER_ACCOUNT_TYPE_PERMISSION and
|
|
* can be received only by Firefox channels sharing the same Android Firefox
|
|
* Account type.
|
|
* <p>
|
|
* See {@link org.mozilla.gecko.fxa.AndroidFxAccount#makeDeletedAccountIntent(android.content.Context, android.accounts.Account)}
|
|
* for contents of the intent.
|
|
*
|
|
* See bug 790931 for additional information in the context of Sync.
|
|
*/
|
|
public static final String ACCOUNT_DELETED_ACTION = "@MOZ_ANDROID_SHARED_FXACCOUNT_TYPE@.accounts.ACCOUNT_DELETED_ACTION";
|
|
|
|
/**
|
|
* Version number of contents of SYNC_ACCOUNT_DELETED_ACTION intent.
|
|
*/
|
|
public static final long ACCOUNT_DELETED_INTENT_VERSION = 1;
|
|
|
|
public static final String ACCOUNT_DELETED_INTENT_VERSION_KEY = "account_deleted_intent_version";
|
|
public static final String ACCOUNT_DELETED_INTENT_ACCOUNT_KEY = "account_deleted_intent_account";
|
|
|
|
/**
|
|
* This signing-level permission protects broadcast intents that should be
|
|
* received only by Firefox channels sharing the same Android Firefox Account type.
|
|
*/
|
|
public static final String PER_ACCOUNT_TYPE_PERMISSION = "@MOZ_ANDROID_SHARED_FXACCOUNT_TYPE@.permission.PER_ACCOUNT_TYPE";
|
|
}
|