description | status |
---|---|
latest commit | |
development release | |
production release |
The auth0-custom-lock
repo contains the code behind the Mozilla New Login Experience (NLX) which is the single sign on (SSO) web interface that users log into to access Mozilla properties.
The original customized Auth0 lock, which can be found in mozilla-iam/auth0-deploy
from 2016 to 2017, was succeeded by NLX, also tracked in mozilla-iam/auth0-deploy
until NLX was moved to this repo in 2018. This repository currently relies on the IAM API to check whether or not a user is in LDAP.
This project uses Gulp to run a number of automated tasks, including one that grabs our source files (HTML, Sass, JS) and compiles them into a single JS file which is deployed to a CDN and referenced by the hosted HTML page in Auth0.
When the project was built successfully, you should get a dist
folder, with the generated HTML.
To develop with a local webserver and automatic page refresh, simply run:
npm run watch
If you simply want to build the files, you can run:
npm run build
These both run with the settings in config/local.json
, although in the rare circumstance that you want to build
development or production directly, simply run NODE_ENV=development npm run build
or
NODE_ENV=production npm run build
.
To build for development or production, simply tag the repo with _version_-pre
or _version_-prod
tags, and GitHub
should build and deploy. You can also build directly with NODE_ENV=development npm run build
or
NODE_ENV=production npm run build
, although this should generally not be necessary.
The long-term plan is to have both development and production code deployed automatically via GitHub Actions. The
process for that will be to tag the master
branch with either a version-pre or version-prod tag. However,
this currently only works for development. Until GitHub Actions have completed evaluation, deployments to production
must be done manually via the process below.
It shouldn't be necessary to deploy development code manually, as you can tag a commit with a _version_-pre
tag
to rebuild.
If you do need to deploy manually (as is currently required for production), you can install
act on a local machine, and run:
act --secret-file config/secrets -j dev-build-and-deploy
or
act --secret-file config/secrets -j prod-build-and-deploy
.
Note that to run act
, you may need to add the following to your ~/.actrc
for the build to properly function:
-P ubuntu-latest=nektos/act-environments-ubuntu:18.04
.
You'll also need to set your secrets file to contain the following environmental variables:
# these are needed to invoke `act --secret-file config/secrets -j dev-build-and-deploy`
DEVELOPMENT_AWS_ACCESS_KEY_ID=...
DEVELOPMENT_AWS_SECRET_ACCESS_KEY=...
DEVELOPMENT_AWS_CDN_BUCKET_NAME=...
DEVELOPMENT_AUTH0_CLIENT_ID=...
DEVELOPMENT_AUTH0_CLIENT_SECRET=...
# these are needed to invoke `act --secret-file config/secrets -j prod-build-and-deploy`
PRODUCTION_AWS_ACCESS_KEY_ID=...
PRODUCTION_AWS_SECRET_ACCESS_KEY=...
PRODUCTION_AWS_CDN_BUCKET_NAME=...
PRODUCTION_AUTH0_CLIENT_ID=...
PRODUCTION_AUTH0_CLIENT_SECRET=...
Contact a member of the IT Web SRE team for a copy of these credentials, or push to the repo and create a release to deploy to development. These credentials are currently kept in the IT Web SRE 1Password vault.
This project contains config files for the editor, ESLint and SCSS-Lint.
Throughout the project, we have some variables that are environment specific, for example the URL that Auth0 connects
to. They are set in the config
folder, following environment-name.json
as a naming pattern. Note that these are no
"shell environment variable".
We can then use them anywhere in the codebase, as index.html
is ran through Mustache, which will replace the variables
with the values the environment needs.
All variables are assigned to the global NLX
object in main.js and are be used throughout the JavaScript as
NLX.variable
.
Because only in strings the Mustache syntax can produce valid JavaScript, we save booleans as strings ('true'
and
'false'
). They can then easily be turned into booleans:
NLX.variable === 'true' // true or false
Add new variables in three places:
- in any
config
you use, by default that isconfig/local.json
,config/development.json
, andconfig/production.json
- in
index.html
, all the way at the bottom of the file. We print the variable values there, so that we can merge them into one settings file with the settings Auth0 provides through@@config@@
.
NLX comes with a maintenance banner that can be triggered by setting the features.maintenance_mode
to "true"
. If you
need a maintenance banner, build NLX again with that variable set to "true"
, or, even quicker, set the variable to
"true"
in the already built HTML file.
When you call NLX with one of the following parameters, the standard interactive screen is not shown, instead you will get a special screen.
Auto-login Settings screen. Allows user to enable or disable auto-login.
This is a specific parameter that is set when the log in screen is used for account verification.
First, run the CloudFormation template in AWS. Currently, this is done in the infosec-dev
and infosec-prod
AWS accounts.
This will generate the environment_AWS_ACCESS_KEY_ID
and environment_AWS_SECRET_ACCESS_KEY
values needed to run act
or
invoke the GitHub Action.
Secondly, create an Application in Auth0 with the correct scopes to the Auth0 Management API:
application name: github.com/mozilla-iam/auth0-custom-lock
application type: Machine to Machine
description: Owner: Mozilla-IAM (Your Name)
apis: Auth0 Management API
scopes: read:clients
, update:clients
, read:client_keys
, update:client_keys
, update:tenant_settings
This will generate the environment_AUTH0_CLIENT_ID
and environment_AUTH0_CLIENT_SECRET
needed to run a0deploy
inside
the GitHub action.
The Auth0 Custom Lock (NLX) reports analytics about how users type their passwords in order to differentiate between users who hand type passwords and users who machine enter passwords (either with a password manager or via copy/paste) as a signal about the prevalence of password manager use.
The data can be viewed in Google Analytics in the Mozilla Corporation
parent
under the Mozilla (ParSys Websites)
account under the NLX (aka Auth0 Lock)
(UA-84301250-4
) property in the
Auth0 Lock All Web Site Data
view. Within this view navigate to Behavior
...
Events
and filter by Event Category
of Password entry
. Look for the
Event Action
of either Machine
or Human
indicating which type of password
entry was performed.