Skip to content

bengladwell/inside-story

Repository files navigation

Inside Story

A serverless video hosting app with gated user authentication.

Inside Story uses Gatsby to display the video pages and a bunch of AWS resources, described with CloudFormation, to host, provide SSL, and handle authentication.

This project started out as an attempt to replace a simpler video hosting setup with something "serverless". It ended up being a big experiment with AWS and an opportunity to learn. (Read: this is way more complicated than the volume of my video site requires :) ) I wanted to have some public facing content - the login page, headers on the individual video pages so that previews would appear in social media postings - but also restrict access to videos of my kids. I wanted the restrictions to be real - ie not just hiding stuff with javascript. Finally, I wanted the setup to be self documenting so that there are no obscure settings deep in the AWS console to forget about.

The CloudFormation template has all the details in its 30-odd resources, but keep reading for an overview.

User Auth

Allows for every user to be specifically granted access by the administrator. This is a video hosting site for family videos. I do not want it to be public, nor do I want users to have to remember separate credentials. I want to announce new content on social media and allow those users who have been authorized to immediately have access to that content.

User flow

  1. GET site page. User sees page with "login with Facebook" button.

Screen Shot 2021-05-13 at 8 37 32 AM

  1. Login with Facebook. This redirects the user to a Cognito URL, which again redirects to Facebook login.

  2. After logging in with Facebook, the user agent is redirected back to Cognito. Cognito executes a PreAuth hook, which is a Lambda function that checks for the presence of the user in a DynamoDB table.

3a. If the user has not yet been authorized in the DynamoDB table, they are redirected back to the site with a message explaining that their request will be reviewed. The Lambda function also adds the user to the DynamoDB table, leaving them unauthorized, and uses SES to email the administrator (me!). Screen Shot 2021-05-13 at 8 41 21 AM User flow ends here for these users.

3b. If the user has been authorized in the DynamoDB table, they are redirected back to the site with Cognito tokens as query string params.

  1. An AJAX request is made to an API Gateway Endpoint. The Cognito accessToken is sent as the Authorization header. The API Gateway Endpoint validates the accessToken with Cognito before permitting the request.

  2. If the token is valid, the Lambda function integrated with the Endoint provides signed cookies and the Endpoint returns them in its response. Because the API Gateway is on the same domain as the protected assets, these cookies will be used when requesting the protected assets from their CloudFront Distribution.

  3. Protected assets (videos) are requested from a CloudFront Distribution. This Distribution is configured to required signed cookies. The user can view protected content.

Screen Shot 2021-05-13 at 8 53 13 AM

Resource Dependency Diagram

Blank diagram - Relationship Diagram

For the truly hardcore, some UML sequence diagrams

Blank diagram - Sequence Diagram

Development notes

To start a new feature:

Stack creation requires AWS CLI credentials. Easiest way:

  • brew install awscli
  • aws configure

Segmentation faults

Running gatsby develop sometimes results in a segmentation fault. If this happens, remove the .cache directory.

Dependency management

npm peer dependencies

Recent versions of npm try to install peer dependencies by default. This causes lots of warnings for some gatsby subdependencies. To avoid this, use NPM_CONFIG_LEGACY_PEER_DEPS=true when installing or updating packages.

Sharp

The sharp package required multiple workarounds in one environment (but not another).

  1. It may require python 2 for its build. If necessary, install and use python 2 using pyenv:
  • pyenv install 2.17.18
  • pyenv local 2.17.18
  • npm install
  1. For some reason, it could not find libarchive when building.
  • Find libarchive.pc with brew list libarchive
  • Add its directory to PKG_CONFIG_PATH when npm installing: PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/opt/homebrew/Cellar/libarchive/3.7.2/lib/pkgconfig/" npm i

Updating packages

  • NPM_CONFIG_LEGACY_PEER_DEPS=true npm outdated - to list out of date pacakges
  • NPM_CONFIG_LEGACY_PEER_DEPS=true npm update - to update to allowed semantic versions as defined by package.json
  • For any packages not allowed to get to latest version, specifically install that version with npm.
    • Example, for eslint-config-standard-with-typescript at 40.0.0, but latest is 43.0.0, do NPM_CONFIG_LEGACY_PEER_DEPS=true npm eslint-config-standard-with-typescript@43.0.0

About

Video for a managed audience

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published