Mobicoop V3 authentication and authorization service
Go to file
Sylvain Briat 099b0ed66d update packages 2023-10-31 10:12:59 +01:00
ci lint pretty 2023-03-30 10:32:17 +02:00
opa authorization module 2023-07-12 10:39:55 +02:00
prisma delete authentication, use custom logger 2023-07-05 17:32:21 +02:00
src fix proto 2023-10-18 12:13:59 +02:00
.dockerignore update gitlabci 2023-01-12 14:23:59 +01:00
.editorconfig initial commit 2022-12-15 10:59:45 +01:00
.env.dist complete env file with missing entry 2023-10-18 10:27:41 +02:00
.env.test upgrade repositories 2023-07-13 08:58:58 +02:00
.eslintrc.js lint pretty --check 2023-03-30 10:28:20 +02:00
.gitignore remove pgadmin 2022-12-26 09:42:49 +01:00
.gitlab-ci.yml Update .gitlab-ci.yml file 2023-04-05 10:09:36 +00:00
.prettierignore lint pretty --check 2023-03-30 10:28:20 +02:00
.prettierrc.json lint pretty --check 2023-03-30 10:28:20 +02:00
Dockerfile fix prisma error fail on build 2023-05-05 16:03:01 +02:00
LICENSE initial commit 2022-12-15 10:59:45 +01:00
README.md update readme 2023-07-13 10:17:38 +02:00
docker-compose.ci.service.yml clean compose 2023-02-28 10:46:03 +01:00
docker-compose.ci.tools.yml simplify test ci --check 2023-03-17 11:25:25 +01:00
docker-compose.yml add health check rest service 2023-04-04 10:14:41 +02:00
nest-cli.json initial commit 2022-12-15 10:59:45 +01:00
package-lock.json update packages 2023-10-31 10:12:59 +01:00
package.json update packages 2023-10-31 10:12:59 +01:00
tsconfig.build.json initial commit 2022-12-15 10:59:45 +01:00
tsconfig.json update packages, refactor 2023-10-17 14:48:05 +02:00

README.md

Mobicoop V3 - Auth Service

Authentication (AuthN) and Authorization (AuthZ) data management.

Requirements

You need Docker and its compose plugin.

You also need NodeJS installed locally : we strongly advise to install Node Version Manager and use the latest LTS version of Node (check that your local version matches with the one used in the Dockerfile).

The API will run inside a docker container, but the install itself is made outside the container, because during development we need tools that need to be available locally (eg. ESLint, Prettier...).

A RabbitMQ instance is also required to send / receive messages when data has been inserted/updated/deleted.

Installation

  • copy .env.dist to .env :

    cp .env.dist .env
    

    Modify it if needed.

  • install the dependencies :

    npm install
    
  • start the containers :

    docker compose up -d
    

    The app runs automatically on port 5002.

Database migration

Before using the app, you need to launch the database migration (it will be launched inside the container) :

npm run migrate

Usage

The app is used for authentication (aka AuthN) and authorization (aka AuthZ).

AuthN

AuthN consists in verifying a username / password couple. A user can have multiple usernames (representing multiple identifiers), all of them sharing the same password. In the app, all the authentication information about a user is called an auth. As of 2022/10/23, the possible identifiers are :

  • an email
  • a phone number

Note that all usernames are unique in the system : many users can't have the same email or phone number.

For AuthN, the app exposes the following gRPC services :

  • Create : create an auth with usernames and a password

    {
        "userId": "30f49838-3f24-42bb-a489-8ffb480173ae",
        "usernames": [
            {
                "name": "john.doe@email.com",
                "type": "EMAIL"
            }
        ],
        "password": "John123"
    }
    
  • AddUsername : add a username to an auth

    {
        "userId": "30f49838-3f24-42bb-a489-8ffb480173ae",
        "name": "+33611223344",
        "type": "PHONE"
    }
    
  • UpdateUsername : update a username

    {
        "userId": "30f49838-3f24-42bb-a489-8ffb480173ae",
        "name": "johnny.doe@email.com",
        "type": "EMAIL"
    }
    
  • DeleteUsername : delete a username (an error is thrown if it's the only username of an auth, as an auth must have at least one associated username)

    {
        "name": "+33611223344"
    }
    
  • UpdatePassword : update the password of an auth

    {
        "userId": "30f49838-3f24-42bb-a489-8ffb480173ae",
        "password": "Johnny123"
    }
    
  • Validate : validate an auth (= authentication with name/password)

    {
        "name": "john.doe@email.com",
        "password": "Johnny123"
    }
    
  • Delete : delete an auth and its associated usernames

    {
        "userId": "30f49838-3f24-42bb-a489-8ffb480173ae"
    }
    

AuthZ

AuthZ consists in verifying if a given user has the right permission to execute a given action within a given domain. Some context-dependant information can be given as well.

For AuthZ, the app exposes the following gRPC services :

  • Decide : asks the authorization service if a user has the right permission

    {
        "userId": "96d99d44-e0a6-458e-a656-de2a400d60a9",
        "domain": "USER",
        "action": "READ",
        "context": [
            {
                "name": "owner",
                "value": "96d99d44-e0a6-458e-a656-de2a400d60a8"
            },
            {
                "name": "role",
                "value": "admin"
            }
        ]
    }
    

    In return, the service gives an authorization response :

    {
        "allow": true
    }
    

Messages

Various RabbitMQ messages are sent for logging purpose.

Tests / ESLint / Prettier

Tests are run outside the container for ease of use (switching between different environments inside containers using prisma is complicated and error prone). The integration tests use a dedicated database (see db-test section of docker-compose.yml).

# run all tests (unit + integration)
npm run test

# unit tests only
npm run test:unit

# integration tests only
npm run test:integration

# coverage
npm run test:cov

# ESLint
npm run lint

# Prettier
npm run pretty

License

Mobicoop V3 - Auth Service is AGPL licensed.