Skip to content

Commit 5788313

Browse files
committedJan 11, 2023
Magic login and TOTP features
- New feature: magic (email-based) login, with password fallback - New feature: Time-based One-Time Password (TOTP) authentication - Security enhancements to improve consistency, safety and reliability of the authentication process (see full description in the frontend app) - Refactoring of `login` APIs - Requires one new `frontend` dependency: [QRcode.vue](https://github.com/scopewu/qrcode.vue)
1 parent a60a256 commit 5788313

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+1596
-485
lines changed
 

‎README.md

+31-9
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Generate a backend and frontend stack using Python, including interactive API do
1616
- [Local development](#local-development)
1717
- [Starting Jupyter Lab](#starting-jupyter-lab)
1818
- [How to deploy](#how-to-deploy)
19+
- [Authentication with magic and TOTP](#authentication-with-magic-and-totp)
1920
- [More details](#more-details)
2021
- [Release notes](#release-notes)
2122
- [License](#license)
@@ -24,38 +25,37 @@ Generate a backend and frontend stack using Python, including interactive API do
2425

2526
### App landing page
2627

27-
[![API docs](img/landing.png)](https://github.com/whythawk/full-stack-fastapi-postgresql)
28+
[![Landing page](img/landing.png)](https://github.com/whythawk/full-stack-fastapi-postgresql)
2829

2930
### Dashboard Login
3031

31-
[![API docs](img/login.png)](https://github.com/whythawk/full-stack-fastapi-postgresql)
32+
[![Magic-link login](img/login.png)](https://github.com/whythawk/full-stack-fastapi-postgresql)
3233

3334
### Dashboard User Management
3435

35-
[![API docs](img/dashboard.png)](https://github.com/whythawk/full-stack-fastapi-postgresql)
36+
[![Moderator user management](img/dashboard.png)](https://github.com/whythawk/full-stack-fastapi-postgresql)
3637

3738
### Interactive API documentation
3839

39-
[![API docs](img/docs.png)](https://github.com/whythawk/full-stack-fastapi-postgresql)
40+
[![Interactive API docs](img/redoc.png)](https://github.com/whythawk/full-stack-fastapi-postgresql)
4041

41-
### Alternative API documentation
42+
### Enabling two-factor security (TOTP)
4243

43-
[![API docs](img/redoc.png)](https://github.com/whythawk/full-stack-fastapi-postgresql)
44+
[![Enabling TOTP](img/totp.png)](https://github.com/whythawk/full-stack-fastapi-postgresql)
4445

4546

4647
## Key features
4748

4849
- **Docker Compose** integration and optimization for local development.
50+
- **Authentication** user management schemas, models, crud and apis already built, with OAuth2 JWT token support & default hashing. Offers _magic link_ authentication, with password fallback, with cookie management, including `access` and `refresh` tokens.
4951
- [**FastAPI**](https://github.com/tiangolo/fastapi) backend with [Inboard](https://inboard.bws.bio/) one-repo Docker images:
50-
- **Authentication** user management schemas, models, crud and apis already built, with OAuth2 JWT token support & default hashing.
5152
- **SQLAlchemy** version 1.4 support for models.
5253
- **MJML** templates for common email transactions.
5354
- **Metadata Schema** based on [Dublin Core](https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#section-3) for inheritance.
5455
- **Common CRUD** support via generic inheritance.
5556
- **Standards-based**: Based on (and fully compatible with) the open standards for APIs: [OpenAPI](https://github.com/OAI/OpenAPI-Specification) and [JSON Schema](http://json-schema.org/).
5657
- [**Many other features**]("https://fastapi.tiangolo.com/features/"): including automatic validation, serialization, interactive documentation, etc.
5758
- [**Nuxt/Vue 3**](https://nuxt.com/) frontend:
58-
- **Authentication** with JWT and cookie management, including `access` and `refresh` tokens,
5959
- **Authorisation** via middleware for page access, including logged in or superuser.
6060
- **Model blog** project, with [Nuxt Content](https://content.nuxtjs.org/) for writing Markdown pages.
6161
- **Form validation** with [Vee-Validate 4](https://vee-validate.logaretm.com/v4/).
@@ -108,6 +108,7 @@ The input variables, with their default values (some auto generated) are:
108108
- `docker_swarm_stack_name_staging`: The name of the stack while deploying to Docker in Swarm mode for staging. By default, based on the domain.
109109

110110
- `secret_key`: Backend server secret key. Use the method above to generate it.
111+
- `totp_secret_key`: Two-factor security (TOTP) server secret key.
111112
- `first_superuser`: The first superuser generated, with it you will be able to create more users, etc. By default, based on the domain.
112113
- `first_superuser_password`: First superuser password. Use the method above to generate it.
113114
- `backend_cors_origins`: Origins (domains, more or less) that are enabled for CORS (Cross Origin Resource Sharing). This allows a frontend in one domain (e.g. `https://dashboard.example.com`) to communicate with this backend, that could be living in another domain (e.g. `https://api.example.com`). It can also be used to allow your local frontend (with a custom `hosts` domain mapping, as described in the project's `README.md`) that could be living in `http://dev.example.com:8080` to communicate with the backend at `https://stag.example.com`. Notice the `http` vs `https` and the `dev.` prefix for local development vs the "staging" `stag.` prefix. By default, it includes origins for production, staging and development, with ports commonly used during local development by several popular frontend frameworks (Vue with `:8080`, React, Angular).
@@ -197,13 +198,34 @@ This stack can be adjusted and used with several deployment options that are com
197198

198199
Please refer to <a href="https://dockerswarm.rocks" target="_blank">DockerSwarm.rocks</a> to see how to deploy such a cluster in 20 minutes.
199200

201+
## Authentication with magic and TOTP
202+
203+
> Any custodial changes to user-controlled information must be treated as requiring full authentication. Do **not** assume that a logged-in user is the authorised account holder.
204+
205+
Most web applications permit account recovery through requesting a password reset via email. This has process has been hardened using dual JWT tokens, and is offered as a primary authentication method, with password fallback.
206+
207+
Time-based One-Time Password (TOTP) authentication extends the login process to include a challenge-response component where the user needs to enter a time-based token after their preferred login method.
208+
209+
For development, you may prefer to use login and password.
210+
200211
## More details
201212

202213
After using this generator, your new project (the directory created) will contain an extensive `README.md` with instructions for development, deployment, etc. You can pre-read [the project `README.md` template here too](./{{cookiecutter.project_slug}}/README.md).
203214

204215
## Release Notes
205216

206-
### Latest Changes
217+
### 0.7.0
218+
219+
- New feature: magic (email-based) login, with password fallback
220+
- New feature: Time-based One-Time Password (TOTP) authentication
221+
- Security enhancements to improve consistency, safety and reliability of the authentication process (see full description in the frontend app)
222+
- Requires one new `frontend` dependency: [QRcode.vue](https://github.com/scopewu/qrcode.vue)
223+
224+
### 0.6.1
225+
226+
- Corrected error in variable name `ACCESS_TOKEN_EXPIRE_SECONDS`
227+
228+
### 0.6.0
207229

208230
- Inboard 0.10.4 -> 0.37.0, including FastAPI 0.88
209231
- SQLAlchemy 1.3 -> 1.4

‎cookiecutter.json

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"docker_swarm_stack_name_staging": "{{cookiecutter.domain_staging|replace('.', '-')}}",
1111

1212
"secret_key": "changethis",
13+
"totp_secret_key": "changethis",
1314
"first_superuser": "admin@{{cookiecutter.domain_main}}",
1415
"first_superuser_password": "changethis",
1516
"backend_cors_origins": "[\"http://localhost\", \"http://localhost:4200\", \"http://localhost:3000\", \"http://localhost:8080\", \"https://localhost\", \"https://localhost:4200\", \"https://localhost:3000\", \"https://localhost:8080\", \"http://dev.{{cookiecutter.domain_main}}\", \"https://{{cookiecutter.domain_staging}}\", \"https://{{cookiecutter.domain_main}}\", \"http://local.dockertoolbox.tiangolo.com\", \"http://localhost.tiangolo.com\"]",

0 commit comments

Comments
 (0)
Please sign in to comment.