user/README.md

137 lines
3.1 KiB
Markdown
Raw Normal View History

2022-12-13 14:27:28 +00:00
# Mobicoop V3 - User Service
2022-12-13 12:31:25 +00:00
2022-12-15 09:37:18 +00:00
User-related data management.
2022-12-13 12:31:25 +00:00
2022-12-22 13:42:47 +00:00
## Requirements
2022-12-13 12:31:25 +00:00
2023-01-04 12:51:23 +00:00
You need [Docker](https://docs.docker.com/engine/) and its [compose](https://docs.docker.com/compose/) plugin.
2022-12-13 12:31:25 +00:00
2023-01-05 15:17:37 +00:00
You also need NodeJS installed locally : we **strongly** advise to install [Node Version Manager](https://github.com/nvm-sh/nvm) 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...).
2022-12-23 15:10:59 +00:00
A RabbitMQ instance is also required to send / receive messages when data has been inserted/updated/deleted.
2022-12-22 13:42:47 +00:00
## Installation
2023-01-05 15:17:37 +00:00
- copy `.env.dist` to `.env` :
2022-12-13 12:31:25 +00:00
2023-01-05 15:17:37 +00:00
```bash
cp .env.dist .env
```
2022-12-15 08:51:08 +00:00
2023-01-05 15:17:37 +00:00
Modify it if needed.
2022-12-13 12:31:25 +00:00
2023-01-05 15:17:37 +00:00
- start the containers :
2022-12-13 12:31:25 +00:00
2023-01-05 15:17:37 +00:00
```bash
docker compose up -d
```
2022-12-13 12:31:25 +00:00
2023-01-05 15:17:37 +00:00
The app runs automatically on the port defined in `SERVICE_PORT` of `.env` file (default : _5001_).
- install the dependencies :
```bash
npm install
```
2022-12-15 08:51:08 +00:00
2022-12-15 09:46:02 +00:00
## Database migration
Before using the app, you need to launch the database migration :
```bash
2022-12-22 13:42:47 +00:00
docker exec v3-user sh -c "npx prisma migrate dev"
2022-12-15 09:46:02 +00:00
```
2022-12-15 09:36:37 +00:00
## Usage
The app exposes the following [gRPC](https://grpc.io/) services :
- **FindByUuid** : find a user by its uuid
```json
{
"uuid": "80126a61-d128-4f96-afdb-92e33c75a3e1"
}
```
- **FindAll** : find all users; you can use pagination with `page` (default:_1_) and `perPage` (default:_10_)
```json
{
"page": 1,
"perPage": 10
}
```
- **Create** : create a user (note that uuid is optional, a uuid will be automatically attributed if it is not provided)
```json
{
"email": "jezabel.doe@email.com",
"firstName": "Jezabel",
2022-12-23 15:16:09 +00:00
"lastName": "Doe",
"phone": "+33611223344"
2022-12-15 09:36:37 +00:00
}
```
- **Update** : update a user
```json
{
"firstName": "Jezabel-Katarina",
"email": "jezabel-katarina.doe@email.com",
"uuid": "30f49838-3f24-42bb-a489-8ffb480173ae"
}
```
- **Delete** : delete a user by its uuid
```json
{
"uuid": "80126a61-d128-4f96-afdb-92e33c75a3e1"
}
```
2022-12-22 13:42:47 +00:00
## Messages
2022-12-23 15:17:35 +00:00
As mentionned earlier, RabbitMQ messages are sent after these events :
2022-12-22 13:42:47 +00:00
- **Create** (message : the created user informations)
- **Update** (message : the updated user informations)
- **Delete** (message : the uuid of the deleted user)
2022-12-23 15:10:59 +00:00
Various messages are also sent for logging purpose.
2023-01-05 15:17:37 +00:00
## Tests
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*).
2022-12-13 12:31:25 +00:00
2022-12-13 12:39:06 +00:00
```bash
2023-01-05 15:17:37 +00:00
# run all tests (unit + integration)
npm run test
```
2022-12-13 12:31:25 +00:00
2023-01-05 15:17:37 +00:00
```bash
# unit tests only
npm run test:unit
2022-12-13 12:39:06 +00:00
```
2022-12-13 12:31:25 +00:00
2023-01-05 15:17:37 +00:00
```bash
# integration tests only
npm run test:integration
```
```bash
# coverage
npm run test:cov
```
2022-12-15 08:51:08 +00:00
2022-12-13 12:31:25 +00:00
## License
2022-12-13 14:27:28 +00:00
Mobicoop V3 - User Service is [AGPL licensed](LICENSE).