The easiest way to do good every day. Join in
This repo contains the latest web app. See gladly-team/tab for most backend services.
git clone [email protected]:gladly-team/tab-web.git
cd tab-web
yarn
- Set up local secret environment varables
- Copy
.env.local.info
to.env.local
- Set
FIREBASE_PRIVATE_KEY
to the staging environment key - Set cookie secrets to sufficiently long, random strings
- Copy
- Create a user (by default, this repo relies on a cloud backend)
- Visit this staging environment
- Sign up with username and email, not 3rd-party auth
yarn go
- Visit
http://localhost:3001
and sign in with the user you created above
Tests for our pages are in the src/__tests__
directory. Currently, Next.js doesn't support non-page files in the pages
directory (see issue).
We use Firebase JS SDK authentication as the source of truth for user authentication, using next-firebase-auth
. When the Firebase auth state changes, we call an endpoint to set client-side cookies that Next.js uses for server-side rendering. We do not store any session state on the server side.
Our app needs cookies set to SameSite=None
because it may load in an iframe in the context of a browser extension new tab page.
With this approach:
- We should use cookies as authentication only for server-side rendering of pages. This reduces the surface area for CSRF attacks and simplifies cross-platform development.
- Endpoints for pages must not change state. These requests might be made by other sites, and session cookies will be included in those requests.
- All API endpoints should rely on custom headers. This provides basic protection against CSRF, given our requirement for
SameSite=None
cookies. Most API endpoints should use theAuthorization
header to get and validate the user's token. However, if an endpoint doesn't require authentication, it should verify that some other custom header is set, such asX-Gladly-Requested-By'
.
On the /api/logout
endpoint, we do not require the user to be authenticated, because if the user's Firebase credentials are invalidated or removed, the user would not be able to unset their session cookies and would continue to receive authed content until the session cookie expires. For basic CSRF protection, the logout endpoint verifies that the custom header X-Gladly-Requested-By
is set.
In the future, we can consider adding session-based CSRF tokens for defense in depth.
- Production: set in the Vercel console for preview and production deployments.
- For reference, we add non-secret env values to
.env.preview.info
and.env.production.info
.
- For reference, we add non-secret env values to
- Local development: set in
.env.development
(public) and.env.local
(secrets). - See .env for more documentation.
Vercel runs unit tests and deploys
- Our Vercel project, tab-web, builds on commit push
- The "dev" Git branch is mapped to our "dev" environment
GitHub Action runs unit tests and logs code coverage
- A GitHub Action runs tests and logs code coverage to Codecov