├── .circleci └── config.yml ├── .dockerignore ├── .eslintrc ├── .gitignore ├── .nsprc ├── .travis.yml ├── AUTHORS ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile-build ├── Dockerfile-oauth-build ├── Dockerfile-oauth-test ├── Dockerfile-test ├── Gruntfile.js ├── LICENSE ├── README.md ├── bin ├── email_notifications.js ├── key_server.js └── profile_server_messaging.js ├── config ├── dev.json ├── index.js ├── popular-email-domains.js └── supportedLanguages.js ├── docs ├── CHANGELOG-mailer.md ├── api.md ├── bulk-mail.md ├── device_registration.md ├── endpoint_data.md ├── metrics-events.md ├── onepw.graffle ├── overview.md ├── pushpayloads.schema.json ├── recovery_keys.md ├── schema.md ├── self-host.docker └── service_notifications.md ├── fxa-oauth-server ├── .eslintrc ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── README.md ├── bin │ ├── purge_expired_tokens.js │ └── server.js ├── config │ ├── dev.json │ └── test.json ├── docs │ ├── api.md │ ├── clients.md │ ├── pkce.md │ └── scopes.md ├── lib │ ├── assertion.js │ ├── auth_bearer.js │ ├── auth_client_management.js │ ├── config.js │ ├── db │ │ ├── helpers.js │ │ ├── index.js │ │ ├── memory.js │ │ └── mysql │ │ │ ├── index.js │ │ │ ├── patch.js │ │ │ ├── patches │ │ │ ├── patch-000-001.sql │ │ │ ├── patch-001-000.sql │ │ │ ├── patch-001-002.sql │ │ │ ├── patch-002-001.sql │ │ │ ├── patch-002-003.sql │ │ │ ├── patch-003-002.sql │ │ │ ├── patch-003-004.sql │ │ │ ├── patch-004-003.sql │ │ │ ├── patch-004-005.sql │ │ │ ├── patch-005-004.sql │ │ │ ├── patch-005-006.sql │ │ │ ├── patch-006-005.sql │ │ │ ├── patch-006-007.sql │ │ │ ├── patch-007-006.sql │ │ │ ├── patch-007-008.sql │ │ │ ├── patch-008-007.sql │ │ │ ├── patch-008-009.sql │ │ │ ├── patch-009-008.sql │ │ │ ├── patch-009-010.sql │ │ │ ├── patch-010-009.sql │ │ │ ├── patch-010-011.sql │ │ │ ├── patch-011-010.sql │ │ │ ├── patch-011-012.sql │ │ │ ├── patch-012-011.sql │ │ │ ├── patch-012-013.sql │ │ │ ├── patch-013-012.sql │ │ │ ├── patch-013-014.sql │ │ │ ├── patch-014-013.sql │ │ │ ├── patch-014-015.sql │ │ │ ├── patch-015-014.sql │ │ │ ├── patch-015-016.sql │ │ │ ├── patch-016-015.sql │ │ │ ├── patch-016-017.sql │ │ │ ├── patch-017-016.sql │ │ │ ├── patch-017-018.sql │ │ │ ├── patch-018-017.sql │ │ │ ├── patch-018-019.sql │ │ │ ├── patch-019-018.sql │ │ │ ├── patch-019-020.sql │ │ │ ├── patch-020-019.sql │ │ │ ├── patch-020-021.sql │ │ │ ├── patch-021-020.sql │ │ │ ├── patch-021-022.sql │ │ │ ├── patch-022-021.sql │ │ │ ├── patch-022-023.sql │ │ │ ├── patch-023-022.sql │ │ │ ├── patch-023-024.sql │ │ │ ├── patch-024-023.sql │ │ │ ├── patch-024-025.sql │ │ │ ├── patch-025-024.sql │ │ │ ├── patch-025-026.sql │ │ │ └── patch-026-025.sql │ │ │ └── schema.sql │ ├── encrypt.js │ ├── env.js │ ├── error.js │ ├── events.js │ ├── grant.js │ ├── logging │ │ ├── index.js │ │ └── summary.js │ ├── metrics │ │ └── amplitude.js │ ├── promise.js │ ├── routes │ │ ├── authorization.js │ │ ├── client-tokens │ │ │ ├── delete.js │ │ │ └── list.js │ │ ├── client │ │ │ ├── delete.js │ │ │ ├── get.js │ │ │ ├── list.js │ │ │ ├── register.js │ │ │ └── update.js │ │ ├── config.js │ │ ├── destroy.js │ │ ├── developer │ │ │ └── activate.js │ │ ├── heartbeat.js │ │ ├── introspect.js │ │ ├── jwks.js │ │ ├── key_data.js │ │ ├── redirect.js │ │ ├── root.js │ │ ├── token.js │ │ └── verify.js │ ├── routing.js │ ├── server │ │ ├── config.js │ │ ├── configureSentry.js │ │ └── index.js │ ├── token.js │ ├── unique.js │ ├── util.js │ └── validators.js ├── scripts │ ├── .eslintrc │ ├── create-token-test-rows.js │ ├── gen_keys.js │ ├── generate-client-for-ops.js │ ├── mocha-coverage.js │ ├── rpm-version.js │ ├── show-db-encoding.js │ └── test-local.sh └── test │ ├── .eslintrc │ ├── api.js │ ├── assertion.js │ ├── auth_bearer.js │ ├── db │ ├── helpers.js │ ├── index.js │ ├── mysql.js │ └── purgeExpiredTokens.js │ ├── events.js │ ├── grant.js │ ├── lib │ ├── mocks.js │ ├── privkey.json │ ├── pubkey.json │ ├── server.js │ └── util.js │ ├── metrics │ └── amplitude.js │ ├── routes │ ├── authorization.js │ ├── token.js │ └── verify.js │ ├── sentry.js │ ├── server.js │ └── util.js ├── grunttasks ├── bump.js ├── changelog.js ├── copyright.js ├── eslint.js ├── l10n-extract.js ├── templates.js └── version.js ├── lib ├── authMethods.js ├── backendService.js ├── bounces.js ├── cache.js ├── crypto │ ├── butil.js │ ├── hkdf.js │ ├── password.js │ ├── pbkdf2.js │ ├── random.js │ └── scrypt.js ├── customs.js ├── db.js ├── devices.js ├── email │ ├── bounces.js │ ├── delivery.js │ ├── notifications.js │ └── utils │ │ └── helpers.js ├── error.js ├── features.js ├── geodb.js ├── log.js ├── metrics │ ├── amplitude.js │ ├── context.js │ └── events.js ├── newrelic.js ├── notifier.js ├── oauthdb │ ├── check-access-token.js │ ├── check-refresh-token.js │ ├── client-info.js │ ├── create-authorization-code.js │ ├── grant-tokens-from-authorization-code.js │ ├── grant-tokens-from-credentials.js │ ├── grant-tokens-from-refresh-token.js │ ├── index.js │ ├── revoke-refresh-token-by-id.js │ ├── scoped-key-data.js │ └── utils.js ├── pool.js ├── profile │ └── updates.js ├── promise.js ├── push.js ├── pushbox.js ├── redis.js ├── routes │ ├── account.js │ ├── defaults.js │ ├── devices-and-sessions.js │ ├── emails.js │ ├── idp.js │ ├── index.js │ ├── oauth.js │ ├── password.js │ ├── recovery-codes.js │ ├── recovery-key.js │ ├── session.js │ ├── sign.js │ ├── signin-codes.js │ ├── sms.js │ ├── token-codes.js │ ├── totp.js │ ├── unblock-codes.js │ ├── util.js │ ├── utils │ │ ├── email.js │ │ ├── oauth.js │ │ ├── request_helper.js │ │ ├── signin.js │ │ └── totp.js │ └── validators.js ├── safe-url.js ├── scheme-refresh-token.js ├── senders │ ├── email.js │ ├── email_service.js │ ├── index.js │ ├── oauth_client_info.js │ ├── partials │ │ ├── base │ │ │ ├── base.html │ │ │ └── base_text_only.html │ │ ├── location │ │ │ └── location.html │ │ ├── low_recovery_codes.html │ │ ├── new_device_login.html │ │ ├── password_changed.html │ │ ├── password_reset.html │ │ ├── password_reset_account_recovery.html │ │ ├── post_add_account_recovery.html │ │ ├── post_add_two_step_authentication.html │ │ ├── post_change_primary.html │ │ ├── post_consume_recovery_code.html │ │ ├── post_new_recovery_codes.html │ │ ├── post_remove_account_recovery.html │ │ ├── post_remove_secondary.html │ │ ├── post_remove_two_step_authentication.html │ │ ├── post_verify.html │ │ ├── post_verify_secondary.html │ │ ├── recovery.html │ │ ├── unblock_code.html │ │ ├── verify.html │ │ ├── verify_login.html │ │ ├── verify_login_code.html │ │ ├── verify_primary.html │ │ ├── verify_secondary.html │ │ └── verify_sync.html │ ├── sms.js │ ├── templates │ │ ├── README.md │ │ ├── _pending.txt │ │ ├── _versions.json │ │ ├── index.js │ │ ├── low_recovery_codes.html │ │ ├── low_recovery_codes.txt │ │ ├── new_device_login.html │ │ ├── new_device_login.txt │ │ ├── password_changed.html │ │ ├── password_changed.txt │ │ ├── password_reset.html │ │ ├── password_reset.txt │ │ ├── password_reset_account_recovery.html │ │ ├── password_reset_account_recovery.txt │ │ ├── password_reset_required.html │ │ ├── password_reset_required.txt │ │ ├── post_add_account_recovery.html │ │ ├── post_add_account_recovery.txt │ │ ├── post_add_two_step_authentication.html │ │ ├── post_add_two_step_authentication.txt │ │ ├── post_change_primary.html │ │ ├── post_change_primary.txt │ │ ├── post_consume_recovery_code.html │ │ ├── post_consume_recovery_code.txt │ │ ├── post_new_recovery_codes.html │ │ ├── post_new_recovery_codes.txt │ │ ├── post_remove_account_recovery.html │ │ ├── post_remove_account_recovery.txt │ │ ├── post_remove_secondary.html │ │ ├── post_remove_secondary.txt │ │ ├── post_remove_two_step_authentication.html │ │ ├── post_remove_two_step_authentication.txt │ │ ├── post_verify.html │ │ ├── post_verify.txt │ │ ├── post_verify_secondary.html │ │ ├── post_verify_secondary.txt │ │ ├── recovery.html │ │ ├── recovery.txt │ │ ├── sms.installFirefox.html │ │ ├── sms.installFirefox.txt │ │ ├── unblock_code.html │ │ ├── unblock_code.txt │ │ ├── verification_reminder_first.html │ │ ├── verification_reminder_first.txt │ │ ├── verification_reminder_second.html │ │ ├── verification_reminder_second.txt │ │ ├── verify.html │ │ ├── verify.txt │ │ ├── verify_login.html │ │ ├── verify_login.txt │ │ ├── verify_login_code.html │ │ ├── verify_login_code.txt │ │ ├── verify_primary.html │ │ ├── verify_primary.txt │ │ ├── verify_secondary.html │ │ ├── verify_secondary.txt │ │ ├── verify_sync.html │ │ └── verify_sync.txt │ └── translator.js ├── server.js ├── signer.js ├── sqs.js ├── time.js ├── tokens │ ├── account_reset_token.js │ ├── bundle.js │ ├── index.js │ ├── key_fetch_token.js │ ├── password_change_token.js │ ├── password_forgot_token.js │ ├── session_token.js │ └── token.js ├── userAgent │ ├── index.js │ └── safe.js └── verification-reminders.js ├── npm-shrinkwrap.json ├── package.json ├── scripts ├── .eslintrc ├── api-docs.handlebars ├── bulk-mailer.js ├── bulk-mailer │ ├── index.js │ ├── nodemailer-mocks │ │ ├── nodemailer-mock.js │ │ ├── stream-output-mock.js │ │ └── write-to-disk-mock.js │ ├── normalize-user-records.js │ ├── read-user-records.js │ ├── send-email-batch.js │ └── send-email-batches.js ├── delete-account.js ├── download_l10n.sh ├── dump-users.js ├── dump-users │ └── index.js ├── e2e-email │ ├── index.js │ ├── localeQuirks.js │ └── validate-email.js ├── email-config.js ├── gen_keys.js ├── gen_vapid_keys.js ├── mocha-coverage.js ├── must-reset.js ├── rpm-version.js ├── sms │ └── send.js ├── start-local-mysql.sh ├── start-local.sh ├── start-server.sh ├── start-travis-auth-db-mysql.sh ├── template-version-bump.js ├── test-local.sh ├── test-remote-quick.js ├── verification-reminders.js └── write-emails-to-disk.js └── test ├── .eslintrc ├── bench ├── bot.js └── index.js ├── client ├── api.js └── index.js ├── config ├── mock-vapid-keys.json └── mock_oauth.json ├── e2e ├── README.txt └── push_tests.js ├── key_server_stub.js ├── known-ip-location.js ├── lib └── util.js ├── load ├── Makefile ├── README.txt ├── config │ ├── bench.ini │ ├── megabench.ini │ └── test.ini └── loadtests.py ├── local ├── authMethods.js ├── backendService.js ├── bounces.js ├── cache.js ├── config │ └── index.js ├── crypto │ ├── butil.js │ ├── hkdf.js │ ├── pbkdf2.js │ ├── random.js │ └── scrypt.js ├── customs.js ├── db.js ├── devices.js ├── email │ ├── bounce.js │ ├── delivery.js │ ├── notifications.js │ └── utils.js ├── error.js ├── features.js ├── geodb.js ├── ip_profiling.js ├── log.js ├── mailer_locales.js ├── metrics │ ├── amplitude.js │ ├── context.js │ └── events.js ├── mock-sns.js ├── notifier.js ├── oauthdb.js ├── oauthdb │ ├── check-refresh-token.js │ ├── create-authorization-code.js │ ├── grant-tokens-from-authorization-code.js │ ├── grant-tokens-from-refresh-token.js │ ├── grant-tokens-from-session-token.js │ └── revoke-refresh-token.js ├── password.js ├── pool.js ├── profile │ └── updates.js ├── push.js ├── pushbox.js ├── redis.js ├── routes │ ├── account.js │ ├── devices-and-sessions.js │ ├── emails.js │ ├── oauth.js │ ├── password.js │ ├── recovery-codes.js │ ├── recovery-keys.js │ ├── request_helper.js │ ├── session.js │ ├── sign.js │ ├── signin-codes.js │ ├── sms.js │ ├── token-codes.js │ ├── totp.js │ ├── unblock-codes.js │ ├── utils │ │ ├── oauth.js │ │ └── signin.js │ └── validators.js ├── safe-url.js ├── scheme-refresh-token.js ├── senders │ ├── email.js │ ├── email_service.js │ ├── index.js │ ├── oauth_client_info.js │ ├── sms.js │ ├── templates.js │ └── translator.js ├── sentry.js ├── server.js ├── time.js ├── tokens │ ├── account_reset_token.js │ ├── forgot_password_token.js │ ├── key_fetch_token.js │ ├── session_token.js │ └── token.js ├── user_agent.js └── verification-reminders.js ├── mail_helper.js ├── mailbox.js ├── mailer_helper.js ├── mock-sns.js ├── mocks.js ├── oauth_helper.js ├── push_helper.js ├── remote ├── account_create_tests.js ├── account_destroy_tests.js ├── account_locale_tests.js ├── account_login_tests.js ├── account_profile_tests.js ├── account_reset_tests.js ├── account_signin_verification_tests.js ├── account_status_tests.js ├── account_unlock_tests.js ├── base_path_tests.js ├── certificate_sign_tests.js ├── concurrent_tests.js ├── db_tests.js ├── device_tests.js ├── device_tests_refresh_tokens.js ├── email_validity_tests.js ├── flow_tests.js ├── misc_tests.js ├── oauth_tests.js ├── password_change_tests.js ├── password_forgot_tests.js ├── push_db_tests.js ├── recovery_code_tests.js ├── recovery_email_change_email.js ├── recovery_email_emails.js ├── recovery_email_resend_code_tests.js ├── recovery_email_verify_tests.js ├── recovery_key_tests.js ├── redis_tests.js ├── session_tests.js ├── sign_key_tests.js ├── signin_code_tests.js ├── sms_tests.js ├── token_code_tests.js ├── token_expiry_tests.js ├── totp_tests.js └── verifier_upgrade_tests.js ├── routes_helpers.js ├── scripts ├── bulk-mailer.js ├── bulk-mailer │ ├── fixtures │ │ ├── empty-array.json │ │ ├── empty.json │ │ └── good-input.json │ ├── index.js │ ├── nodemailer-mocks │ │ ├── stream-output-mock.js │ │ └── write-to-disk-mock.js │ ├── normalize-user-records.js │ ├── read-user-records.js │ ├── send-email-batch.js │ └── send-email-batches.js ├── dump-users.js ├── email-config.js └── fixtures │ ├── one_email.txt │ ├── one_uid.txt │ ├── two_emails.txt │ └── two_uids.txt ├── test_mailer_server.js └── test_server.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.nsprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/.nsprc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/Dockerfile-build -------------------------------------------------------------------------------- /Dockerfile-oauth-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/Dockerfile-oauth-build -------------------------------------------------------------------------------- /Dockerfile-oauth-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/Dockerfile-oauth-test -------------------------------------------------------------------------------- /Dockerfile-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/Dockerfile-test -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/README.md -------------------------------------------------------------------------------- /bin/email_notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/bin/email_notifications.js -------------------------------------------------------------------------------- /bin/key_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/bin/key_server.js -------------------------------------------------------------------------------- /bin/profile_server_messaging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/bin/profile_server_messaging.js -------------------------------------------------------------------------------- /config/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/config/dev.json -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/config/index.js -------------------------------------------------------------------------------- /config/popular-email-domains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/config/popular-email-domains.js -------------------------------------------------------------------------------- /config/supportedLanguages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/config/supportedLanguages.js -------------------------------------------------------------------------------- /docs/CHANGELOG-mailer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/docs/CHANGELOG-mailer.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/bulk-mail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/docs/bulk-mail.md -------------------------------------------------------------------------------- /docs/device_registration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/docs/device_registration.md -------------------------------------------------------------------------------- /docs/endpoint_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/docs/endpoint_data.md -------------------------------------------------------------------------------- /docs/metrics-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/docs/metrics-events.md -------------------------------------------------------------------------------- /docs/onepw.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/docs/onepw.graffle -------------------------------------------------------------------------------- /docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/docs/overview.md -------------------------------------------------------------------------------- /docs/pushpayloads.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/docs/pushpayloads.schema.json -------------------------------------------------------------------------------- /docs/recovery_keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/docs/recovery_keys.md -------------------------------------------------------------------------------- /docs/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/docs/schema.md -------------------------------------------------------------------------------- /docs/self-host.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/docs/self-host.docker -------------------------------------------------------------------------------- /docs/service_notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/docs/service_notifications.md -------------------------------------------------------------------------------- /fxa-oauth-server/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/.eslintrc -------------------------------------------------------------------------------- /fxa-oauth-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/.gitignore -------------------------------------------------------------------------------- /fxa-oauth-server/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/CHANGELOG.md -------------------------------------------------------------------------------- /fxa-oauth-server/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/CONTRIBUTING.md -------------------------------------------------------------------------------- /fxa-oauth-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/README.md -------------------------------------------------------------------------------- /fxa-oauth-server/bin/purge_expired_tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/bin/purge_expired_tokens.js -------------------------------------------------------------------------------- /fxa-oauth-server/bin/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/bin/server.js -------------------------------------------------------------------------------- /fxa-oauth-server/config/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/config/dev.json -------------------------------------------------------------------------------- /fxa-oauth-server/config/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/config/test.json -------------------------------------------------------------------------------- /fxa-oauth-server/docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/docs/api.md -------------------------------------------------------------------------------- /fxa-oauth-server/docs/clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/docs/clients.md -------------------------------------------------------------------------------- /fxa-oauth-server/docs/pkce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/docs/pkce.md -------------------------------------------------------------------------------- /fxa-oauth-server/docs/scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/docs/scopes.md -------------------------------------------------------------------------------- /fxa-oauth-server/lib/assertion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/assertion.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/auth_bearer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/auth_bearer.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/auth_client_management.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/auth_client_management.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/config.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/helpers.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/index.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/memory.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/index.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patch.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-000-001.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-000-001.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-001-000.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-001-000.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-001-002.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-001-002.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-002-001.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-002-001.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-002-003.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-002-003.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-003-002.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-003-002.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-003-004.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-003-004.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-004-003.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-004-003.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-004-005.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-004-005.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-005-004.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-005-004.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-005-006.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-005-006.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-006-005.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-006-005.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-006-007.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-006-007.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-007-006.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-007-006.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-007-008.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-007-008.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-008-007.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-008-007.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-008-009.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-008-009.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-009-008.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-009-008.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-009-010.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-009-010.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-010-009.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-010-009.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-010-011.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-010-011.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-011-010.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-011-010.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-011-012.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-011-012.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-012-011.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-012-011.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-012-013.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-012-013.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-013-012.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-013-012.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-013-014.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-013-014.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-014-013.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-014-013.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-014-015.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-014-015.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-015-014.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-015-014.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-015-016.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-015-016.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-016-015.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-016-015.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-016-017.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-016-017.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-017-016.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-017-016.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-017-018.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-017-018.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-018-017.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-018-017.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-018-019.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-018-019.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-019-018.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-019-018.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-019-020.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-019-020.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-020-019.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-020-019.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-020-021.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-020-021.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-021-020.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-021-020.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-021-022.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-021-022.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-022-021.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-022-021.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-022-023.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-022-023.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-023-022.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-023-022.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-023-024.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-023-024.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-024-023.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-024-023.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-024-025.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-024-025.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-025-024.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-025-024.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-025-026.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-025-026.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/patches/patch-026-025.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/patches/patch-026-025.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/db/mysql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/db/mysql/schema.sql -------------------------------------------------------------------------------- /fxa-oauth-server/lib/encrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/encrypt.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/env.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/error.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/events.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/grant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/grant.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/logging/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/logging/index.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/logging/summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/logging/summary.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/metrics/amplitude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/metrics/amplitude.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/promise.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routes/authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routes/authorization.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routes/client-tokens/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routes/client-tokens/delete.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routes/client-tokens/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routes/client-tokens/list.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routes/client/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routes/client/delete.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routes/client/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routes/client/get.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routes/client/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routes/client/list.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routes/client/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routes/client/register.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routes/client/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routes/client/update.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routes/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routes/config.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routes/destroy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routes/destroy.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routes/developer/activate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routes/developer/activate.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routes/heartbeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routes/heartbeat.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routes/introspect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routes/introspect.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routes/jwks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routes/jwks.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routes/key_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routes/key_data.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routes/redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routes/redirect.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routes/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routes/root.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routes/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routes/token.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routes/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routes/verify.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/routing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/routing.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/server/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/server/config.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/server/configureSentry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/server/configureSentry.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/server/index.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/token.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/unique.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/unique.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/util.js -------------------------------------------------------------------------------- /fxa-oauth-server/lib/validators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/lib/validators.js -------------------------------------------------------------------------------- /fxa-oauth-server/scripts/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/scripts/.eslintrc -------------------------------------------------------------------------------- /fxa-oauth-server/scripts/create-token-test-rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/scripts/create-token-test-rows.js -------------------------------------------------------------------------------- /fxa-oauth-server/scripts/gen_keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/scripts/gen_keys.js -------------------------------------------------------------------------------- /fxa-oauth-server/scripts/generate-client-for-ops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/scripts/generate-client-for-ops.js -------------------------------------------------------------------------------- /fxa-oauth-server/scripts/mocha-coverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/scripts/mocha-coverage.js -------------------------------------------------------------------------------- /fxa-oauth-server/scripts/rpm-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/scripts/rpm-version.js -------------------------------------------------------------------------------- /fxa-oauth-server/scripts/show-db-encoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/scripts/show-db-encoding.js -------------------------------------------------------------------------------- /fxa-oauth-server/scripts/test-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/scripts/test-local.sh -------------------------------------------------------------------------------- /fxa-oauth-server/test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/.eslintrc -------------------------------------------------------------------------------- /fxa-oauth-server/test/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/api.js -------------------------------------------------------------------------------- /fxa-oauth-server/test/assertion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/assertion.js -------------------------------------------------------------------------------- /fxa-oauth-server/test/auth_bearer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/auth_bearer.js -------------------------------------------------------------------------------- /fxa-oauth-server/test/db/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/db/helpers.js -------------------------------------------------------------------------------- /fxa-oauth-server/test/db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/db/index.js -------------------------------------------------------------------------------- /fxa-oauth-server/test/db/mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/db/mysql.js -------------------------------------------------------------------------------- /fxa-oauth-server/test/db/purgeExpiredTokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/db/purgeExpiredTokens.js -------------------------------------------------------------------------------- /fxa-oauth-server/test/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/events.js -------------------------------------------------------------------------------- /fxa-oauth-server/test/grant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/grant.js -------------------------------------------------------------------------------- /fxa-oauth-server/test/lib/mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/lib/mocks.js -------------------------------------------------------------------------------- /fxa-oauth-server/test/lib/privkey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/lib/privkey.json -------------------------------------------------------------------------------- /fxa-oauth-server/test/lib/pubkey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/lib/pubkey.json -------------------------------------------------------------------------------- /fxa-oauth-server/test/lib/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/lib/server.js -------------------------------------------------------------------------------- /fxa-oauth-server/test/lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/lib/util.js -------------------------------------------------------------------------------- /fxa-oauth-server/test/metrics/amplitude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/metrics/amplitude.js -------------------------------------------------------------------------------- /fxa-oauth-server/test/routes/authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/routes/authorization.js -------------------------------------------------------------------------------- /fxa-oauth-server/test/routes/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/routes/token.js -------------------------------------------------------------------------------- /fxa-oauth-server/test/routes/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/routes/verify.js -------------------------------------------------------------------------------- /fxa-oauth-server/test/sentry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/sentry.js -------------------------------------------------------------------------------- /fxa-oauth-server/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/server.js -------------------------------------------------------------------------------- /fxa-oauth-server/test/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/fxa-oauth-server/test/util.js -------------------------------------------------------------------------------- /grunttasks/bump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/grunttasks/bump.js -------------------------------------------------------------------------------- /grunttasks/changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/grunttasks/changelog.js -------------------------------------------------------------------------------- /grunttasks/copyright.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/grunttasks/copyright.js -------------------------------------------------------------------------------- /grunttasks/eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/grunttasks/eslint.js -------------------------------------------------------------------------------- /grunttasks/l10n-extract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/grunttasks/l10n-extract.js -------------------------------------------------------------------------------- /grunttasks/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/grunttasks/templates.js -------------------------------------------------------------------------------- /grunttasks/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/grunttasks/version.js -------------------------------------------------------------------------------- /lib/authMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/authMethods.js -------------------------------------------------------------------------------- /lib/backendService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/backendService.js -------------------------------------------------------------------------------- /lib/bounces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/bounces.js -------------------------------------------------------------------------------- /lib/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/cache.js -------------------------------------------------------------------------------- /lib/crypto/butil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/crypto/butil.js -------------------------------------------------------------------------------- /lib/crypto/hkdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/crypto/hkdf.js -------------------------------------------------------------------------------- /lib/crypto/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/crypto/password.js -------------------------------------------------------------------------------- /lib/crypto/pbkdf2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/crypto/pbkdf2.js -------------------------------------------------------------------------------- /lib/crypto/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/crypto/random.js -------------------------------------------------------------------------------- /lib/crypto/scrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/crypto/scrypt.js -------------------------------------------------------------------------------- /lib/customs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/customs.js -------------------------------------------------------------------------------- /lib/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/db.js -------------------------------------------------------------------------------- /lib/devices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/devices.js -------------------------------------------------------------------------------- /lib/email/bounces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/email/bounces.js -------------------------------------------------------------------------------- /lib/email/delivery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/email/delivery.js -------------------------------------------------------------------------------- /lib/email/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/email/notifications.js -------------------------------------------------------------------------------- /lib/email/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/email/utils/helpers.js -------------------------------------------------------------------------------- /lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/error.js -------------------------------------------------------------------------------- /lib/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/features.js -------------------------------------------------------------------------------- /lib/geodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/geodb.js -------------------------------------------------------------------------------- /lib/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/log.js -------------------------------------------------------------------------------- /lib/metrics/amplitude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/metrics/amplitude.js -------------------------------------------------------------------------------- /lib/metrics/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/metrics/context.js -------------------------------------------------------------------------------- /lib/metrics/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/metrics/events.js -------------------------------------------------------------------------------- /lib/newrelic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/newrelic.js -------------------------------------------------------------------------------- /lib/notifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/notifier.js -------------------------------------------------------------------------------- /lib/oauthdb/check-access-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/oauthdb/check-access-token.js -------------------------------------------------------------------------------- /lib/oauthdb/check-refresh-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/oauthdb/check-refresh-token.js -------------------------------------------------------------------------------- /lib/oauthdb/client-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/oauthdb/client-info.js -------------------------------------------------------------------------------- /lib/oauthdb/create-authorization-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/oauthdb/create-authorization-code.js -------------------------------------------------------------------------------- /lib/oauthdb/grant-tokens-from-authorization-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/oauthdb/grant-tokens-from-authorization-code.js -------------------------------------------------------------------------------- /lib/oauthdb/grant-tokens-from-credentials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/oauthdb/grant-tokens-from-credentials.js -------------------------------------------------------------------------------- /lib/oauthdb/grant-tokens-from-refresh-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/oauthdb/grant-tokens-from-refresh-token.js -------------------------------------------------------------------------------- /lib/oauthdb/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/oauthdb/index.js -------------------------------------------------------------------------------- /lib/oauthdb/revoke-refresh-token-by-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/oauthdb/revoke-refresh-token-by-id.js -------------------------------------------------------------------------------- /lib/oauthdb/scoped-key-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/oauthdb/scoped-key-data.js -------------------------------------------------------------------------------- /lib/oauthdb/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/oauthdb/utils.js -------------------------------------------------------------------------------- /lib/pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/pool.js -------------------------------------------------------------------------------- /lib/profile/updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/profile/updates.js -------------------------------------------------------------------------------- /lib/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/promise.js -------------------------------------------------------------------------------- /lib/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/push.js -------------------------------------------------------------------------------- /lib/pushbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/pushbox.js -------------------------------------------------------------------------------- /lib/redis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/redis.js -------------------------------------------------------------------------------- /lib/routes/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/account.js -------------------------------------------------------------------------------- /lib/routes/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/defaults.js -------------------------------------------------------------------------------- /lib/routes/devices-and-sessions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/devices-and-sessions.js -------------------------------------------------------------------------------- /lib/routes/emails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/emails.js -------------------------------------------------------------------------------- /lib/routes/idp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/idp.js -------------------------------------------------------------------------------- /lib/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/index.js -------------------------------------------------------------------------------- /lib/routes/oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/oauth.js -------------------------------------------------------------------------------- /lib/routes/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/password.js -------------------------------------------------------------------------------- /lib/routes/recovery-codes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/recovery-codes.js -------------------------------------------------------------------------------- /lib/routes/recovery-key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/recovery-key.js -------------------------------------------------------------------------------- /lib/routes/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/session.js -------------------------------------------------------------------------------- /lib/routes/sign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/sign.js -------------------------------------------------------------------------------- /lib/routes/signin-codes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/signin-codes.js -------------------------------------------------------------------------------- /lib/routes/sms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/sms.js -------------------------------------------------------------------------------- /lib/routes/token-codes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/token-codes.js -------------------------------------------------------------------------------- /lib/routes/totp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/totp.js -------------------------------------------------------------------------------- /lib/routes/unblock-codes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/unblock-codes.js -------------------------------------------------------------------------------- /lib/routes/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/util.js -------------------------------------------------------------------------------- /lib/routes/utils/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/utils/email.js -------------------------------------------------------------------------------- /lib/routes/utils/oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/utils/oauth.js -------------------------------------------------------------------------------- /lib/routes/utils/request_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/utils/request_helper.js -------------------------------------------------------------------------------- /lib/routes/utils/signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/utils/signin.js -------------------------------------------------------------------------------- /lib/routes/utils/totp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/utils/totp.js -------------------------------------------------------------------------------- /lib/routes/validators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/routes/validators.js -------------------------------------------------------------------------------- /lib/safe-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/safe-url.js -------------------------------------------------------------------------------- /lib/scheme-refresh-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/scheme-refresh-token.js -------------------------------------------------------------------------------- /lib/senders/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/email.js -------------------------------------------------------------------------------- /lib/senders/email_service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/email_service.js -------------------------------------------------------------------------------- /lib/senders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/index.js -------------------------------------------------------------------------------- /lib/senders/oauth_client_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/oauth_client_info.js -------------------------------------------------------------------------------- /lib/senders/partials/base/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/base/base.html -------------------------------------------------------------------------------- /lib/senders/partials/base/base_text_only.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/base/base_text_only.html -------------------------------------------------------------------------------- /lib/senders/partials/location/location.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/location/location.html -------------------------------------------------------------------------------- /lib/senders/partials/low_recovery_codes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/low_recovery_codes.html -------------------------------------------------------------------------------- /lib/senders/partials/new_device_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/new_device_login.html -------------------------------------------------------------------------------- /lib/senders/partials/password_changed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/password_changed.html -------------------------------------------------------------------------------- /lib/senders/partials/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/password_reset.html -------------------------------------------------------------------------------- /lib/senders/partials/password_reset_account_recovery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/password_reset_account_recovery.html -------------------------------------------------------------------------------- /lib/senders/partials/post_add_account_recovery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/post_add_account_recovery.html -------------------------------------------------------------------------------- /lib/senders/partials/post_add_two_step_authentication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/post_add_two_step_authentication.html -------------------------------------------------------------------------------- /lib/senders/partials/post_change_primary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/post_change_primary.html -------------------------------------------------------------------------------- /lib/senders/partials/post_consume_recovery_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/post_consume_recovery_code.html -------------------------------------------------------------------------------- /lib/senders/partials/post_new_recovery_codes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/post_new_recovery_codes.html -------------------------------------------------------------------------------- /lib/senders/partials/post_remove_account_recovery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/post_remove_account_recovery.html -------------------------------------------------------------------------------- /lib/senders/partials/post_remove_secondary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/post_remove_secondary.html -------------------------------------------------------------------------------- /lib/senders/partials/post_remove_two_step_authentication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/post_remove_two_step_authentication.html -------------------------------------------------------------------------------- /lib/senders/partials/post_verify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/post_verify.html -------------------------------------------------------------------------------- /lib/senders/partials/post_verify_secondary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/post_verify_secondary.html -------------------------------------------------------------------------------- /lib/senders/partials/recovery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/recovery.html -------------------------------------------------------------------------------- /lib/senders/partials/unblock_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/unblock_code.html -------------------------------------------------------------------------------- /lib/senders/partials/verify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/verify.html -------------------------------------------------------------------------------- /lib/senders/partials/verify_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/verify_login.html -------------------------------------------------------------------------------- /lib/senders/partials/verify_login_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/verify_login_code.html -------------------------------------------------------------------------------- /lib/senders/partials/verify_primary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/verify_primary.html -------------------------------------------------------------------------------- /lib/senders/partials/verify_secondary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/verify_secondary.html -------------------------------------------------------------------------------- /lib/senders/partials/verify_sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/partials/verify_sync.html -------------------------------------------------------------------------------- /lib/senders/sms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/sms.js -------------------------------------------------------------------------------- /lib/senders/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/README.md -------------------------------------------------------------------------------- /lib/senders/templates/_pending.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/_pending.txt -------------------------------------------------------------------------------- /lib/senders/templates/_versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/_versions.json -------------------------------------------------------------------------------- /lib/senders/templates/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/index.js -------------------------------------------------------------------------------- /lib/senders/templates/low_recovery_codes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/low_recovery_codes.html -------------------------------------------------------------------------------- /lib/senders/templates/low_recovery_codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/low_recovery_codes.txt -------------------------------------------------------------------------------- /lib/senders/templates/new_device_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/new_device_login.html -------------------------------------------------------------------------------- /lib/senders/templates/new_device_login.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/new_device_login.txt -------------------------------------------------------------------------------- /lib/senders/templates/password_changed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/password_changed.html -------------------------------------------------------------------------------- /lib/senders/templates/password_changed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/password_changed.txt -------------------------------------------------------------------------------- /lib/senders/templates/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/password_reset.html -------------------------------------------------------------------------------- /lib/senders/templates/password_reset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/password_reset.txt -------------------------------------------------------------------------------- /lib/senders/templates/password_reset_account_recovery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/password_reset_account_recovery.html -------------------------------------------------------------------------------- /lib/senders/templates/password_reset_account_recovery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/password_reset_account_recovery.txt -------------------------------------------------------------------------------- /lib/senders/templates/password_reset_required.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/password_reset_required.html -------------------------------------------------------------------------------- /lib/senders/templates/password_reset_required.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/password_reset_required.txt -------------------------------------------------------------------------------- /lib/senders/templates/post_add_account_recovery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_add_account_recovery.html -------------------------------------------------------------------------------- /lib/senders/templates/post_add_account_recovery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_add_account_recovery.txt -------------------------------------------------------------------------------- /lib/senders/templates/post_add_two_step_authentication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_add_two_step_authentication.html -------------------------------------------------------------------------------- /lib/senders/templates/post_add_two_step_authentication.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_add_two_step_authentication.txt -------------------------------------------------------------------------------- /lib/senders/templates/post_change_primary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_change_primary.html -------------------------------------------------------------------------------- /lib/senders/templates/post_change_primary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_change_primary.txt -------------------------------------------------------------------------------- /lib/senders/templates/post_consume_recovery_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_consume_recovery_code.html -------------------------------------------------------------------------------- /lib/senders/templates/post_consume_recovery_code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_consume_recovery_code.txt -------------------------------------------------------------------------------- /lib/senders/templates/post_new_recovery_codes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_new_recovery_codes.html -------------------------------------------------------------------------------- /lib/senders/templates/post_new_recovery_codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_new_recovery_codes.txt -------------------------------------------------------------------------------- /lib/senders/templates/post_remove_account_recovery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_remove_account_recovery.html -------------------------------------------------------------------------------- /lib/senders/templates/post_remove_account_recovery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_remove_account_recovery.txt -------------------------------------------------------------------------------- /lib/senders/templates/post_remove_secondary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_remove_secondary.html -------------------------------------------------------------------------------- /lib/senders/templates/post_remove_secondary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_remove_secondary.txt -------------------------------------------------------------------------------- /lib/senders/templates/post_remove_two_step_authentication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_remove_two_step_authentication.html -------------------------------------------------------------------------------- /lib/senders/templates/post_remove_two_step_authentication.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_remove_two_step_authentication.txt -------------------------------------------------------------------------------- /lib/senders/templates/post_verify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_verify.html -------------------------------------------------------------------------------- /lib/senders/templates/post_verify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_verify.txt -------------------------------------------------------------------------------- /lib/senders/templates/post_verify_secondary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_verify_secondary.html -------------------------------------------------------------------------------- /lib/senders/templates/post_verify_secondary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/post_verify_secondary.txt -------------------------------------------------------------------------------- /lib/senders/templates/recovery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/recovery.html -------------------------------------------------------------------------------- /lib/senders/templates/recovery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/recovery.txt -------------------------------------------------------------------------------- /lib/senders/templates/sms.installFirefox.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/senders/templates/sms.installFirefox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/sms.installFirefox.txt -------------------------------------------------------------------------------- /lib/senders/templates/unblock_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/unblock_code.html -------------------------------------------------------------------------------- /lib/senders/templates/unblock_code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/unblock_code.txt -------------------------------------------------------------------------------- /lib/senders/templates/verification_reminder_first.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/verification_reminder_first.html -------------------------------------------------------------------------------- /lib/senders/templates/verification_reminder_first.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/verification_reminder_first.txt -------------------------------------------------------------------------------- /lib/senders/templates/verification_reminder_second.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/verification_reminder_second.html -------------------------------------------------------------------------------- /lib/senders/templates/verification_reminder_second.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/verification_reminder_second.txt -------------------------------------------------------------------------------- /lib/senders/templates/verify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/verify.html -------------------------------------------------------------------------------- /lib/senders/templates/verify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/verify.txt -------------------------------------------------------------------------------- /lib/senders/templates/verify_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/verify_login.html -------------------------------------------------------------------------------- /lib/senders/templates/verify_login.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/verify_login.txt -------------------------------------------------------------------------------- /lib/senders/templates/verify_login_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/verify_login_code.html -------------------------------------------------------------------------------- /lib/senders/templates/verify_login_code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/verify_login_code.txt -------------------------------------------------------------------------------- /lib/senders/templates/verify_primary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/verify_primary.html -------------------------------------------------------------------------------- /lib/senders/templates/verify_primary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/verify_primary.txt -------------------------------------------------------------------------------- /lib/senders/templates/verify_secondary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/verify_secondary.html -------------------------------------------------------------------------------- /lib/senders/templates/verify_secondary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/verify_secondary.txt -------------------------------------------------------------------------------- /lib/senders/templates/verify_sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/verify_sync.html -------------------------------------------------------------------------------- /lib/senders/templates/verify_sync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/templates/verify_sync.txt -------------------------------------------------------------------------------- /lib/senders/translator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/senders/translator.js -------------------------------------------------------------------------------- /lib/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/server.js -------------------------------------------------------------------------------- /lib/signer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/signer.js -------------------------------------------------------------------------------- /lib/sqs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/sqs.js -------------------------------------------------------------------------------- /lib/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/time.js -------------------------------------------------------------------------------- /lib/tokens/account_reset_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/tokens/account_reset_token.js -------------------------------------------------------------------------------- /lib/tokens/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/tokens/bundle.js -------------------------------------------------------------------------------- /lib/tokens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/tokens/index.js -------------------------------------------------------------------------------- /lib/tokens/key_fetch_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/tokens/key_fetch_token.js -------------------------------------------------------------------------------- /lib/tokens/password_change_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/tokens/password_change_token.js -------------------------------------------------------------------------------- /lib/tokens/password_forgot_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/tokens/password_forgot_token.js -------------------------------------------------------------------------------- /lib/tokens/session_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/tokens/session_token.js -------------------------------------------------------------------------------- /lib/tokens/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/tokens/token.js -------------------------------------------------------------------------------- /lib/userAgent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/userAgent/index.js -------------------------------------------------------------------------------- /lib/userAgent/safe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/userAgent/safe.js -------------------------------------------------------------------------------- /lib/verification-reminders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/lib/verification-reminders.js -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/package.json -------------------------------------------------------------------------------- /scripts/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/.eslintrc -------------------------------------------------------------------------------- /scripts/api-docs.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/api-docs.handlebars -------------------------------------------------------------------------------- /scripts/bulk-mailer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/bulk-mailer.js -------------------------------------------------------------------------------- /scripts/bulk-mailer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/bulk-mailer/index.js -------------------------------------------------------------------------------- /scripts/bulk-mailer/nodemailer-mocks/nodemailer-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/bulk-mailer/nodemailer-mocks/nodemailer-mock.js -------------------------------------------------------------------------------- /scripts/bulk-mailer/nodemailer-mocks/stream-output-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/bulk-mailer/nodemailer-mocks/stream-output-mock.js -------------------------------------------------------------------------------- /scripts/bulk-mailer/nodemailer-mocks/write-to-disk-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/bulk-mailer/nodemailer-mocks/write-to-disk-mock.js -------------------------------------------------------------------------------- /scripts/bulk-mailer/normalize-user-records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/bulk-mailer/normalize-user-records.js -------------------------------------------------------------------------------- /scripts/bulk-mailer/read-user-records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/bulk-mailer/read-user-records.js -------------------------------------------------------------------------------- /scripts/bulk-mailer/send-email-batch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/bulk-mailer/send-email-batch.js -------------------------------------------------------------------------------- /scripts/bulk-mailer/send-email-batches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/bulk-mailer/send-email-batches.js -------------------------------------------------------------------------------- /scripts/delete-account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/delete-account.js -------------------------------------------------------------------------------- /scripts/download_l10n.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/download_l10n.sh -------------------------------------------------------------------------------- /scripts/dump-users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/dump-users.js -------------------------------------------------------------------------------- /scripts/dump-users/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/dump-users/index.js -------------------------------------------------------------------------------- /scripts/e2e-email/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/e2e-email/index.js -------------------------------------------------------------------------------- /scripts/e2e-email/localeQuirks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/e2e-email/localeQuirks.js -------------------------------------------------------------------------------- /scripts/e2e-email/validate-email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/e2e-email/validate-email.js -------------------------------------------------------------------------------- /scripts/email-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/email-config.js -------------------------------------------------------------------------------- /scripts/gen_keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/gen_keys.js -------------------------------------------------------------------------------- /scripts/gen_vapid_keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/gen_vapid_keys.js -------------------------------------------------------------------------------- /scripts/mocha-coverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/mocha-coverage.js -------------------------------------------------------------------------------- /scripts/must-reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/must-reset.js -------------------------------------------------------------------------------- /scripts/rpm-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/rpm-version.js -------------------------------------------------------------------------------- /scripts/sms/send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/sms/send.js -------------------------------------------------------------------------------- /scripts/start-local-mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/start-local-mysql.sh -------------------------------------------------------------------------------- /scripts/start-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/start-local.sh -------------------------------------------------------------------------------- /scripts/start-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/start-server.sh -------------------------------------------------------------------------------- /scripts/start-travis-auth-db-mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/start-travis-auth-db-mysql.sh -------------------------------------------------------------------------------- /scripts/template-version-bump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/template-version-bump.js -------------------------------------------------------------------------------- /scripts/test-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/test-local.sh -------------------------------------------------------------------------------- /scripts/test-remote-quick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/test-remote-quick.js -------------------------------------------------------------------------------- /scripts/verification-reminders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/verification-reminders.js -------------------------------------------------------------------------------- /scripts/write-emails-to-disk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/scripts/write-emails-to-disk.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/bench/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/bench/bot.js -------------------------------------------------------------------------------- /test/bench/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/bench/index.js -------------------------------------------------------------------------------- /test/client/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/client/api.js -------------------------------------------------------------------------------- /test/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/client/index.js -------------------------------------------------------------------------------- /test/config/mock-vapid-keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/config/mock-vapid-keys.json -------------------------------------------------------------------------------- /test/config/mock_oauth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/config/mock_oauth.json -------------------------------------------------------------------------------- /test/e2e/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/e2e/README.txt -------------------------------------------------------------------------------- /test/e2e/push_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/e2e/push_tests.js -------------------------------------------------------------------------------- /test/key_server_stub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/key_server_stub.js -------------------------------------------------------------------------------- /test/known-ip-location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/known-ip-location.js -------------------------------------------------------------------------------- /test/lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/lib/util.js -------------------------------------------------------------------------------- /test/load/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/load/Makefile -------------------------------------------------------------------------------- /test/load/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/load/README.txt -------------------------------------------------------------------------------- /test/load/config/bench.ini: -------------------------------------------------------------------------------- 1 | [loads] 2 | users = 20 3 | duration = 300 4 | -------------------------------------------------------------------------------- /test/load/config/megabench.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/load/config/megabench.ini -------------------------------------------------------------------------------- /test/load/config/test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/load/config/test.ini -------------------------------------------------------------------------------- /test/load/loadtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/load/loadtests.py -------------------------------------------------------------------------------- /test/local/authMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/authMethods.js -------------------------------------------------------------------------------- /test/local/backendService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/backendService.js -------------------------------------------------------------------------------- /test/local/bounces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/bounces.js -------------------------------------------------------------------------------- /test/local/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/cache.js -------------------------------------------------------------------------------- /test/local/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/config/index.js -------------------------------------------------------------------------------- /test/local/crypto/butil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/crypto/butil.js -------------------------------------------------------------------------------- /test/local/crypto/hkdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/crypto/hkdf.js -------------------------------------------------------------------------------- /test/local/crypto/pbkdf2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/crypto/pbkdf2.js -------------------------------------------------------------------------------- /test/local/crypto/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/crypto/random.js -------------------------------------------------------------------------------- /test/local/crypto/scrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/crypto/scrypt.js -------------------------------------------------------------------------------- /test/local/customs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/customs.js -------------------------------------------------------------------------------- /test/local/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/db.js -------------------------------------------------------------------------------- /test/local/devices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/devices.js -------------------------------------------------------------------------------- /test/local/email/bounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/email/bounce.js -------------------------------------------------------------------------------- /test/local/email/delivery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/email/delivery.js -------------------------------------------------------------------------------- /test/local/email/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/email/notifications.js -------------------------------------------------------------------------------- /test/local/email/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/email/utils.js -------------------------------------------------------------------------------- /test/local/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/error.js -------------------------------------------------------------------------------- /test/local/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/features.js -------------------------------------------------------------------------------- /test/local/geodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/geodb.js -------------------------------------------------------------------------------- /test/local/ip_profiling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/ip_profiling.js -------------------------------------------------------------------------------- /test/local/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/log.js -------------------------------------------------------------------------------- /test/local/mailer_locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/mailer_locales.js -------------------------------------------------------------------------------- /test/local/metrics/amplitude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/metrics/amplitude.js -------------------------------------------------------------------------------- /test/local/metrics/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/metrics/context.js -------------------------------------------------------------------------------- /test/local/metrics/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/metrics/events.js -------------------------------------------------------------------------------- /test/local/mock-sns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/mock-sns.js -------------------------------------------------------------------------------- /test/local/notifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/notifier.js -------------------------------------------------------------------------------- /test/local/oauthdb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/oauthdb.js -------------------------------------------------------------------------------- /test/local/oauthdb/check-refresh-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/oauthdb/check-refresh-token.js -------------------------------------------------------------------------------- /test/local/oauthdb/create-authorization-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/oauthdb/create-authorization-code.js -------------------------------------------------------------------------------- /test/local/oauthdb/grant-tokens-from-authorization-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/oauthdb/grant-tokens-from-authorization-code.js -------------------------------------------------------------------------------- /test/local/oauthdb/grant-tokens-from-refresh-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/oauthdb/grant-tokens-from-refresh-token.js -------------------------------------------------------------------------------- /test/local/oauthdb/grant-tokens-from-session-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/oauthdb/grant-tokens-from-session-token.js -------------------------------------------------------------------------------- /test/local/oauthdb/revoke-refresh-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/oauthdb/revoke-refresh-token.js -------------------------------------------------------------------------------- /test/local/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/password.js -------------------------------------------------------------------------------- /test/local/pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/pool.js -------------------------------------------------------------------------------- /test/local/profile/updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/profile/updates.js -------------------------------------------------------------------------------- /test/local/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/push.js -------------------------------------------------------------------------------- /test/local/pushbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/pushbox.js -------------------------------------------------------------------------------- /test/local/redis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/redis.js -------------------------------------------------------------------------------- /test/local/routes/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/routes/account.js -------------------------------------------------------------------------------- /test/local/routes/devices-and-sessions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/routes/devices-and-sessions.js -------------------------------------------------------------------------------- /test/local/routes/emails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/routes/emails.js -------------------------------------------------------------------------------- /test/local/routes/oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/routes/oauth.js -------------------------------------------------------------------------------- /test/local/routes/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/routes/password.js -------------------------------------------------------------------------------- /test/local/routes/recovery-codes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/routes/recovery-codes.js -------------------------------------------------------------------------------- /test/local/routes/recovery-keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/routes/recovery-keys.js -------------------------------------------------------------------------------- /test/local/routes/request_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/routes/request_helper.js -------------------------------------------------------------------------------- /test/local/routes/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/routes/session.js -------------------------------------------------------------------------------- /test/local/routes/sign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/routes/sign.js -------------------------------------------------------------------------------- /test/local/routes/signin-codes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/routes/signin-codes.js -------------------------------------------------------------------------------- /test/local/routes/sms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/routes/sms.js -------------------------------------------------------------------------------- /test/local/routes/token-codes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/routes/token-codes.js -------------------------------------------------------------------------------- /test/local/routes/totp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/routes/totp.js -------------------------------------------------------------------------------- /test/local/routes/unblock-codes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/routes/unblock-codes.js -------------------------------------------------------------------------------- /test/local/routes/utils/oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/routes/utils/oauth.js -------------------------------------------------------------------------------- /test/local/routes/utils/signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/routes/utils/signin.js -------------------------------------------------------------------------------- /test/local/routes/validators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/routes/validators.js -------------------------------------------------------------------------------- /test/local/safe-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/safe-url.js -------------------------------------------------------------------------------- /test/local/scheme-refresh-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/scheme-refresh-token.js -------------------------------------------------------------------------------- /test/local/senders/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/senders/email.js -------------------------------------------------------------------------------- /test/local/senders/email_service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/senders/email_service.js -------------------------------------------------------------------------------- /test/local/senders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/senders/index.js -------------------------------------------------------------------------------- /test/local/senders/oauth_client_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/senders/oauth_client_info.js -------------------------------------------------------------------------------- /test/local/senders/sms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/senders/sms.js -------------------------------------------------------------------------------- /test/local/senders/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/senders/templates.js -------------------------------------------------------------------------------- /test/local/senders/translator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/senders/translator.js -------------------------------------------------------------------------------- /test/local/sentry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/sentry.js -------------------------------------------------------------------------------- /test/local/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/server.js -------------------------------------------------------------------------------- /test/local/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/time.js -------------------------------------------------------------------------------- /test/local/tokens/account_reset_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/tokens/account_reset_token.js -------------------------------------------------------------------------------- /test/local/tokens/forgot_password_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/tokens/forgot_password_token.js -------------------------------------------------------------------------------- /test/local/tokens/key_fetch_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/tokens/key_fetch_token.js -------------------------------------------------------------------------------- /test/local/tokens/session_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/tokens/session_token.js -------------------------------------------------------------------------------- /test/local/tokens/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/tokens/token.js -------------------------------------------------------------------------------- /test/local/user_agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/user_agent.js -------------------------------------------------------------------------------- /test/local/verification-reminders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/local/verification-reminders.js -------------------------------------------------------------------------------- /test/mail_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/mail_helper.js -------------------------------------------------------------------------------- /test/mailbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/mailbox.js -------------------------------------------------------------------------------- /test/mailer_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/mailer_helper.js -------------------------------------------------------------------------------- /test/mock-sns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/mock-sns.js -------------------------------------------------------------------------------- /test/mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/mocks.js -------------------------------------------------------------------------------- /test/oauth_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/oauth_helper.js -------------------------------------------------------------------------------- /test/push_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/push_helper.js -------------------------------------------------------------------------------- /test/remote/account_create_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/account_create_tests.js -------------------------------------------------------------------------------- /test/remote/account_destroy_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/account_destroy_tests.js -------------------------------------------------------------------------------- /test/remote/account_locale_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/account_locale_tests.js -------------------------------------------------------------------------------- /test/remote/account_login_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/account_login_tests.js -------------------------------------------------------------------------------- /test/remote/account_profile_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/account_profile_tests.js -------------------------------------------------------------------------------- /test/remote/account_reset_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/account_reset_tests.js -------------------------------------------------------------------------------- /test/remote/account_signin_verification_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/account_signin_verification_tests.js -------------------------------------------------------------------------------- /test/remote/account_status_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/account_status_tests.js -------------------------------------------------------------------------------- /test/remote/account_unlock_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/account_unlock_tests.js -------------------------------------------------------------------------------- /test/remote/base_path_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/base_path_tests.js -------------------------------------------------------------------------------- /test/remote/certificate_sign_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/certificate_sign_tests.js -------------------------------------------------------------------------------- /test/remote/concurrent_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/concurrent_tests.js -------------------------------------------------------------------------------- /test/remote/db_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/db_tests.js -------------------------------------------------------------------------------- /test/remote/device_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/device_tests.js -------------------------------------------------------------------------------- /test/remote/device_tests_refresh_tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/device_tests_refresh_tokens.js -------------------------------------------------------------------------------- /test/remote/email_validity_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/email_validity_tests.js -------------------------------------------------------------------------------- /test/remote/flow_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/flow_tests.js -------------------------------------------------------------------------------- /test/remote/misc_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/misc_tests.js -------------------------------------------------------------------------------- /test/remote/oauth_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/oauth_tests.js -------------------------------------------------------------------------------- /test/remote/password_change_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/password_change_tests.js -------------------------------------------------------------------------------- /test/remote/password_forgot_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/password_forgot_tests.js -------------------------------------------------------------------------------- /test/remote/push_db_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/push_db_tests.js -------------------------------------------------------------------------------- /test/remote/recovery_code_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/recovery_code_tests.js -------------------------------------------------------------------------------- /test/remote/recovery_email_change_email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/recovery_email_change_email.js -------------------------------------------------------------------------------- /test/remote/recovery_email_emails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/recovery_email_emails.js -------------------------------------------------------------------------------- /test/remote/recovery_email_resend_code_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/recovery_email_resend_code_tests.js -------------------------------------------------------------------------------- /test/remote/recovery_email_verify_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/recovery_email_verify_tests.js -------------------------------------------------------------------------------- /test/remote/recovery_key_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/recovery_key_tests.js -------------------------------------------------------------------------------- /test/remote/redis_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/redis_tests.js -------------------------------------------------------------------------------- /test/remote/session_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/session_tests.js -------------------------------------------------------------------------------- /test/remote/sign_key_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/sign_key_tests.js -------------------------------------------------------------------------------- /test/remote/signin_code_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/signin_code_tests.js -------------------------------------------------------------------------------- /test/remote/sms_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/sms_tests.js -------------------------------------------------------------------------------- /test/remote/token_code_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/token_code_tests.js -------------------------------------------------------------------------------- /test/remote/token_expiry_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/token_expiry_tests.js -------------------------------------------------------------------------------- /test/remote/totp_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/totp_tests.js -------------------------------------------------------------------------------- /test/remote/verifier_upgrade_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/remote/verifier_upgrade_tests.js -------------------------------------------------------------------------------- /test/routes_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/routes_helpers.js -------------------------------------------------------------------------------- /test/scripts/bulk-mailer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/scripts/bulk-mailer.js -------------------------------------------------------------------------------- /test/scripts/bulk-mailer/fixtures/empty-array.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /test/scripts/bulk-mailer/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/scripts/bulk-mailer/fixtures/good-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/scripts/bulk-mailer/fixtures/good-input.json -------------------------------------------------------------------------------- /test/scripts/bulk-mailer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/scripts/bulk-mailer/index.js -------------------------------------------------------------------------------- /test/scripts/bulk-mailer/nodemailer-mocks/stream-output-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/scripts/bulk-mailer/nodemailer-mocks/stream-output-mock.js -------------------------------------------------------------------------------- /test/scripts/bulk-mailer/nodemailer-mocks/write-to-disk-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/scripts/bulk-mailer/nodemailer-mocks/write-to-disk-mock.js -------------------------------------------------------------------------------- /test/scripts/bulk-mailer/normalize-user-records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/scripts/bulk-mailer/normalize-user-records.js -------------------------------------------------------------------------------- /test/scripts/bulk-mailer/read-user-records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/scripts/bulk-mailer/read-user-records.js -------------------------------------------------------------------------------- /test/scripts/bulk-mailer/send-email-batch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/scripts/bulk-mailer/send-email-batch.js -------------------------------------------------------------------------------- /test/scripts/bulk-mailer/send-email-batches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/scripts/bulk-mailer/send-email-batches.js -------------------------------------------------------------------------------- /test/scripts/dump-users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/scripts/dump-users.js -------------------------------------------------------------------------------- /test/scripts/email-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/scripts/email-config.js -------------------------------------------------------------------------------- /test/scripts/fixtures/one_email.txt: -------------------------------------------------------------------------------- 1 | user1@test.com 2 | -------------------------------------------------------------------------------- /test/scripts/fixtures/one_uid.txt: -------------------------------------------------------------------------------- 1 | f9916686c226415abd06ae550f073cec 2 | -------------------------------------------------------------------------------- /test/scripts/fixtures/two_emails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/scripts/fixtures/two_emails.txt -------------------------------------------------------------------------------- /test/scripts/fixtures/two_uids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/scripts/fixtures/two_uids.txt -------------------------------------------------------------------------------- /test/test_mailer_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/test_mailer_server.js -------------------------------------------------------------------------------- /test/test_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fxa-auth-server/HEAD/test/test_server.js --------------------------------------------------------------------------------