fxa/packages/fxa-shared
Barry Chen 85d94551dd
fix(Glean): use the configured app channel for Glean in Settings
Because:
 - Glean in Settings was initialized with the default "development"
   value

This commit:
 - uses the actual configuration value for the app channel
2024-09-03 17:22:31 -05:00
..
.vscode
auth
cache
configuration
connected-services
db task(event-broker): Update profile-change event payload 2024-07-25 14:00:43 -07:00
dto/auth/payments
email
experiments
express
feature-flags
guards
l10n
lib feat(metrics): populate metric values for content server backend Glean 2024-07-25 20:22:25 -05:00
log
metrics fix(Glean): use the configured app channel for Glean in Settings 2024-09-03 17:22:31 -05:00
monitoring
nestjs
oauth
payments feat(auth): replace cms config 2024-07-31 10:23:48 -04:00
scripts
sentry
speed-trap
subscriptions feat(newsletters): Add back mozilla-accounts slug to SubPlat default 2024-07-31 14:19:04 -05:00
test fix(fxa-shared): failure to injest all unit test results in CI 2024-08-08 14:08:25 -04:00
tracing
.eslintignore
.eslintrc
.nsprc
.prettierignore
README.md
index.ts feat(metrics): populate metric values for content server backend Glean 2024-07-25 20:22:25 -05:00
package.json fix(metrics): DENG-4405 Convert event extras to string 2024-08-26 14:26:36 -05:00
pm2.config.js
tsconfig.base.json
tsconfig.cjs.json
tsconfig.json

README.md

Shared module for FxA repositories

Shared modules

Dual Package

Note that this is a dual package. The impetus for it was Webpack 5 compat. (And we'd want to move to all-ESM eventually.) But CommonJS was kept for backwards compatibility until we can be certain of its removal.

l10n

supportedLanguages.json is the shared list of all supported locales across FxA

oauth

oauth.scopes provides shared logic for validating and checking OAuth scopes.

Detailed documentation on the details of FxA OAuth scope values is available from the fxa-oauth-server. This library provides some convenient APIs for working with them according to the rules described there.

Given a string containing scopes, you can parse it into a ScopeSet object from either a raw space-delimited string:

let s1 = oauth.scopes.fromString('profile:write basket');

Or directly from a url-encoded string:

let s2 = oauth.scopes.fromURLEncodedString('profile%3Aemail+profile%3Adisplay_name+clients');

Once you have a ScopeSet object, you can check whether it is sufficient to wholly imply another set:

  s1.contains('profile:email:write');          // true, implied by 'profile:write'
  s2.contains('profile:email:write');          // false
  s1.contains('profile:email:write clients');  // false, 'clients' is not in `s1`

Or whether it has any scope values in common with another set:

  s1.intersects('profile:email:write clients'); // true, 'profile:email:write' is common
  s2.intersects(s1);                            // true, 'profile:email' is common
  s2.intersects('clients:write basket');        // false, no members in common

You can filter it down to only the scope values implied by another scope:

  let s3 = oauth.scope.fromString('profile:email clients:abcd'));
  s3.filtered(s1); // 'profile:email'
  s3.filtered(s2); // 'profile:email clients:abcd'

Or you can find out what values in the set are not implied by another scope:

  s3.difference(s1); // 'clients:abcd'
  s3.difference(s2); // the empty set
  s2.difference(s3); // 'profile:display_name clients'

You can also combine multiple sets of scopes, either by generating the union as a new set:

  s1.union(s2); // 'profile:write basket clients'

Or by building up the new set in place:

  let allScopes = scopes.fromArray([]);
  allScopes.add(s1);  // now "profile:write basket"
  allScopes.add(s2);  // now "profile:write basket clients"
  allScopes.add(s3);  // now "profile:write basket clients"

tracing

This utility allows for easy configuration of tracing. To use this in a service:

  • Add the config chunk in fxa-shared/tracing/config to your packages's config.

  • Then initialize as follows. This invocation should happen as early as possible in the service's or app's lifecycle. Ideally it's the first thing done, even before importing other modules.

// For services
const config = require('../config');
require('fxa-shared/tracing/node-tracing').initTracing(config.get('tracing'));

To see traces on your local system, set the following environment variables:

# Capture all traces
TRACING_SAMPLE_RATE=1

# Send traces to console (optional, it's nice to see it working but noisy...)
TRACING_CONSOLE_EXPORTER_ENABLED=true

# Send traces to the otel service
TRACING_OTEL_EXPORTER_ENABLED=true

# Enable the otel collector service and instruct it to export traces to jaeger
TRACING_OTEL_COLLECTOR_ENABLED=true
TRACING_OTEL_COLLECTOR_JAEGER_ENABLED=true

The default config for tracing found at fxa-shared/tracing/config.ts will pick up these variables and result in traces showing up in Jaeger which runs locally at localhost:16686.

It's important to note that sentry also supports tracing integration. So we typically let a call to 'initSentry', a function located in the sentry/node.ts module do the work of initializing tracing.

Used by:

Testing

This package uses Mocha to test its code. By default npm test will first lint the code and then test all files ending under test/, and uses esbuild-register so it can process TypeScript files.

Test specific tests with the following commands:

# Test only test/oauth/scopes.js
npx mocha -r esbuild-register test/oauth/scopes.js

# Grep for "invalid scope values"
npx mocha -r esbuild-register -g "invalid scope values" --recursive test

Refer to Mocha's CLI documentation for more advanced test configuration.